libxml-ruby 0.5.2.0 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (131) hide show
  1. data/CHANGES +122 -0
  2. data/LICENSE +2 -1
  3. data/MANIFEST +138 -0
  4. data/NOTES +9 -0
  5. data/README +1 -1
  6. data/Rakefile +27 -205
  7. data/TODO +0 -2
  8. data/VERSION +1 -0
  9. data/ext/{xml → libxml}/cbg.c +0 -0
  10. data/ext/libxml/extconf.rb +309 -0
  11. data/ext/{xml → libxml}/libxml.c +1 -1
  12. data/ext/{xml → libxml}/libxml.h +7 -4
  13. data/ext/{xml → libxml}/ruby_xml_attr.c +1 -1
  14. data/ext/{xml → libxml}/ruby_xml_attr.h +1 -1
  15. data/ext/{xml → libxml}/ruby_xml_document.c +16 -8
  16. data/ext/{xml → libxml}/ruby_xml_document.h +1 -1
  17. data/ext/{xml → libxml}/ruby_xml_dtd.c +0 -0
  18. data/ext/{xml → libxml}/ruby_xml_dtd.h +0 -0
  19. data/ext/{xml → libxml}/ruby_xml_html_parser.c +1 -1
  20. data/ext/{xml → libxml}/ruby_xml_html_parser.h +1 -1
  21. data/ext/{xml → libxml}/ruby_xml_input_cbg.c +0 -0
  22. data/ext/{xml → libxml}/ruby_xml_input_cbg.h +0 -0
  23. data/ext/{xml → libxml}/ruby_xml_node.c +47 -6
  24. data/ext/{xml → libxml}/ruby_xml_node.h +1 -1
  25. data/ext/{xml → libxml}/ruby_xml_node_set.c +1 -1
  26. data/ext/{xml → libxml}/ruby_xml_node_set.h +1 -1
  27. data/ext/{xml → libxml}/ruby_xml_ns.c +1 -1
  28. data/ext/{xml → libxml}/ruby_xml_ns.h +1 -1
  29. data/ext/{xml → libxml}/ruby_xml_parser.c +6 -4
  30. data/ext/{xml → libxml}/ruby_xml_parser.h +1 -1
  31. data/ext/{xml → libxml}/ruby_xml_parser_context.c +1 -1
  32. data/ext/{xml → libxml}/ruby_xml_parser_context.h +1 -1
  33. data/ext/{xml → libxml}/ruby_xml_reader.c +3 -0
  34. data/ext/{xml → libxml}/ruby_xml_reader.h +0 -0
  35. data/ext/{xml → libxml}/ruby_xml_sax_parser.c +1 -1
  36. data/ext/{xml → libxml}/ruby_xml_sax_parser.h +1 -1
  37. data/ext/{xml → libxml}/ruby_xml_schema.c +0 -0
  38. data/ext/{xml → libxml}/ruby_xml_schema.h +0 -0
  39. data/ext/{xml → libxml}/ruby_xml_state.c +0 -0
  40. data/ext/{xml → libxml}/ruby_xml_state.h +0 -0
  41. data/ext/{xml → libxml}/ruby_xml_tree.c +1 -1
  42. data/ext/{xml → libxml}/ruby_xml_tree.h +1 -1
  43. data/ext/{xml → libxml}/ruby_xml_xinclude.c +1 -1
  44. data/ext/{xml → libxml}/ruby_xml_xinclude.h +1 -1
  45. data/ext/{xml → libxml}/ruby_xml_xpath.c +7 -4
  46. data/ext/{xml → libxml}/ruby_xml_xpath.h +1 -1
  47. data/ext/{xml → libxml}/ruby_xml_xpath_context.c +1 -1
  48. data/ext/{xml → libxml}/ruby_xml_xpath_context.h +1 -1
  49. data/ext/{xml → libxml}/ruby_xml_xpath_object.c +65 -32
  50. data/ext/{xml → libxml}/ruby_xml_xpath_object.h +0 -0
  51. data/ext/{xml → libxml}/ruby_xml_xpointer.c +1 -1
  52. data/ext/{xml → libxml}/ruby_xml_xpointer.h +1 -1
  53. data/ext/{xml → libxml}/ruby_xml_xpointer_context.c +1 -1
  54. data/ext/{xml → libxml}/ruby_xml_xpointer_context.h +1 -1
  55. data/ext/{xml → libxml}/sax_parser_callbacks.inc +1 -1
  56. data/ext/libxml/version.h +9 -0
  57. data/{ext/xml → lib}/libxml.rb +7 -2
  58. data/lib/xml/libxml.rb +5 -0
  59. data/{ChangeLog → log/Changelog-0.txt} +0 -0
  60. data/log/Changelog.txt +435 -0
  61. data/meta/project.yaml +27 -0
  62. data/meta/unixname +1 -0
  63. data/setup.rb +1469 -0
  64. data/site/css/normal.css +182 -0
  65. data/site/img/raze-tiny.png +0 -0
  66. data/site/img/red-cube.jpg +0 -0
  67. data/site/img/xml-ruby.png +0 -0
  68. data/site/index.xml +43 -0
  69. data/site/install.xml +77 -0
  70. data/site/layout.rhtml +38 -0
  71. data/site/layout.xsl +67 -0
  72. data/site/license.xml +32 -0
  73. data/site/log/changelog.xml +1324 -0
  74. data/site/log/changelog.xsl +42 -0
  75. data/{tests → test}/dtd-test.rb +2 -2
  76. data/test/etc_doc_to_s.rb +21 -0
  77. data/test/ets_copy_bug.rb +21 -0
  78. data/test/ets_copy_bug2.rb +32 -0
  79. data/test/ets_doc_file.rb +14 -0
  80. data/test/ets_doc_to_s.rb +21 -0
  81. data/test/ets_gpx.rb +26 -0
  82. data/test/ets_node_gc.rb +21 -0
  83. data/test/ets_test.xml +2 -0
  84. data/test/ets_tsr.rb +9 -0
  85. data/{tests → test}/merge_bug.rb +4 -5
  86. data/{tests → test}/model/default_validation_bug.rb +0 -0
  87. data/{tests → test}/model/merge_bug_data.xml +0 -0
  88. data/{tests → test}/model/rubynet.xml +0 -0
  89. data/{tests → test}/model/rubynet_project +1 -1
  90. data/{tests → test}/model/saxtest.xml +0 -0
  91. data/{tests → test}/model/simple.xml +0 -0
  92. data/{tests → test}/model/xinclude.xml +0 -0
  93. data/{tests → test}/schema-test.rb +2 -2
  94. data/{tests → test}/tc_xml_document.rb +2 -2
  95. data/{tests → test}/tc_xml_document_write.rb +1 -2
  96. data/{tests → test}/tc_xml_document_write2.rb +1 -2
  97. data/{tests → test}/tc_xml_document_write3.rb +1 -2
  98. data/{tests → test}/tc_xml_html_parser.rb +7 -8
  99. data/{tests → test}/tc_xml_node.rb +1 -2
  100. data/{tests → test}/tc_xml_node2.rb +1 -2
  101. data/{tests → test}/tc_xml_node3.rb +2 -3
  102. data/{tests → test}/tc_xml_node4.rb +19 -20
  103. data/{tests → test}/tc_xml_node5.rb +8 -9
  104. data/{tests → test}/tc_xml_node6.rb +1 -2
  105. data/{tests → test}/tc_xml_node7.rb +5 -6
  106. data/{tests → test}/tc_xml_node8.rb +5 -5
  107. data/{tests → test}/tc_xml_node9.rb +5 -5
  108. data/test/tc_xml_node_copy.rb +40 -0
  109. data/{tests → test}/tc_xml_node_set.rb +2 -3
  110. data/{tests → test}/tc_xml_node_set2.rb +4 -5
  111. data/test/tc_xml_node_text.rb +17 -0
  112. data/{tests → test}/tc_xml_node_xlink.rb +2 -2
  113. data/{tests → test}/tc_xml_parser.rb +5 -6
  114. data/{tests → test}/tc_xml_parser2.rb +2 -2
  115. data/{tests → test}/tc_xml_parser3.rb +2 -2
  116. data/{tests → test}/tc_xml_parser4.rb +2 -2
  117. data/{tests → test}/tc_xml_parser5.rb +2 -2
  118. data/{tests → test}/tc_xml_parser6.rb +3 -3
  119. data/{tests → test}/tc_xml_parser7.rb +3 -3
  120. data/{tests → test}/tc_xml_parser8.rb +13 -13
  121. data/{tests → test}/tc_xml_parser_context.rb +1 -2
  122. data/{tests → test}/tc_xml_reader.rb +22 -14
  123. data/{tests → test}/tc_xml_sax_parser.rb +21 -22
  124. data/{tests → test}/tc_xml_xinclude.rb +4 -4
  125. data/{tests → test}/tc_xml_xpath.rb +17 -3
  126. data/{tests → test}/tc_xml_xpointer.rb +4 -5
  127. metadata +231 -158
  128. data/CHANGELOG_to200701 +0 -82
  129. data/ext/xml/extconf.rb +0 -98
  130. data/tests/libxml_test.rb +0 -3
  131. data/tests/runner.rb +0 -11
@@ -0,0 +1,182 @@
1
+ /*
2
+ * Uncopyrighted 2005 Ross Bamford.
3
+ *
4
+ * rosco at roscopeco dot co dot uk
5
+ */
6
+ body {
7
+ background: #ffffff;
8
+ color: #000000;
9
+ font-family: Microsoft sans-serif, sans-serif, arial, helvetica;
10
+ font-size: 12px;
11
+ padding: 0px;
12
+ margin: 0px 0px 0px 0px;
13
+ }
14
+
15
+ .container {
16
+ width: 800px;
17
+ margin: 0 auto;
18
+ }
19
+
20
+ /* ** links ** */
21
+ a {
22
+ color: red;
23
+ text-decoration: none;
24
+ }
25
+
26
+ a:hover {
27
+ color: red;
28
+ text-decoration: underline;
29
+ }
30
+
31
+ a:active {
32
+ color: red;
33
+ text-decoration: underline;
34
+ }
35
+
36
+ .navlinks a {
37
+ color: red;
38
+ text-decoration: none;
39
+ font-weight: bold;
40
+ }
41
+
42
+ .navlinks a:hover {
43
+ color: red;
44
+ text-decoration: underline;
45
+ font-weight: bold;
46
+ }
47
+
48
+ .navlinks {
49
+ padding: 10px;
50
+ background: white;
51
+ white-space: nowrap
52
+ }
53
+
54
+ div.copyright {
55
+ /* Copyright bit on pages */
56
+ color: #909090;
57
+ position: relative;
58
+ top: 5em;
59
+ right: 2%;
60
+ text-align: right;
61
+ font-size: 8pt;
62
+ }
63
+
64
+ /* * page styles *** */
65
+
66
+ h1.title {
67
+ font-size: 48px;
68
+ padding-left: 0;
69
+ }
70
+
71
+ h1 {
72
+ padding: 10px;
73
+ }
74
+
75
+ h2 {
76
+ border-bottom: thin #959595 solid;
77
+ }
78
+
79
+ h3 {
80
+ border-bottom: thin #b8c8c8 solid;
81
+ }
82
+
83
+ h5 {
84
+ border-bottom: thin #c0c0d8 solid;
85
+ }
86
+
87
+ div.note {
88
+ background: #e8e8fa;
89
+ border: thin dashed #3e5972;
90
+ position: relative;
91
+ width: 90%;
92
+ left: 5%;
93
+ right: 5%;
94
+ text-align: right;
95
+ font-size: 10pt;
96
+ padding: 5px;
97
+ margin-bottom: 5px;
98
+ }
99
+
100
+ /* * syntax ******** */
101
+ pre.ruby {
102
+ background: #f5f5f5;
103
+ border: thin dashed #3e5972;
104
+ padding: 10px;
105
+ margin-left: 2em;
106
+ }
107
+
108
+ pre.ruby span.normal {
109
+ color: #000000;
110
+ }
111
+
112
+ pre.ruby span.comment {
113
+ color: #789a86;
114
+ text-decoration: oblique;
115
+ }
116
+
117
+ pre.ruby span.ident {
118
+ color: #0b0202;
119
+ }
120
+
121
+ pre.ruby span.punct {
122
+ color: #8a7070;
123
+ }
124
+
125
+ pre.ruby span.symbol {
126
+ color: #aa1010;
127
+ font-weight: bold;
128
+ }
129
+
130
+ pre.ruby span.keyword {
131
+ color: #903030;
132
+ font-weight: bold;
133
+ }
134
+
135
+ pre.ruby span.constant {
136
+ color: #3e5972;
137
+ font-weight: bold;
138
+ }
139
+
140
+ pre.ruby span.string {
141
+ color: #2020f0;
142
+ }
143
+
144
+ pre.ruby span.char {
145
+ color: #2020f0;
146
+ font-weight: bold;
147
+ }
148
+
149
+ pre.ruby span.number {
150
+ color: #aa1010;
151
+ }
152
+
153
+ pre.ruby span.regex {
154
+ color: #552090;
155
+ }
156
+
157
+ pre.ruby span.expr {
158
+ color: #101080;
159
+ font-weight: bold;
160
+ }
161
+
162
+ pre.ruby span.global {
163
+ color: #557462;
164
+ }
165
+
166
+ pre.ruby span.class {
167
+ color: #3e5972;
168
+ font-weight: bold;
169
+ }
170
+
171
+ pre.ruby span.method {
172
+ color: #aa1010;
173
+ }
174
+
175
+ pre.ruby span.attribute {
176
+ color: #3e5972;
177
+ }
178
+
179
+ pre.ruby span.escape {
180
+ color: #2020f0;
181
+ font-weight: bold;
182
+ }
Binary file
Binary file
Binary file
data/site/index.xml ADDED
@@ -0,0 +1,43 @@
1
+ <?xml version="1.0" encoding="ISO-8859-1" ?>
2
+ <?xml-stylesheet href="layout.xsl" type="text/xsl" ?>
3
+
4
+ <content>
5
+
6
+ <h2> Welcome to LibXml Ruby </h2>
7
+
8
+ <p>The <span style="color: red;">Libxml-Ruby</span> project provides Ruby
9
+ language bindings for the <a href="http://xmlsoft.org">GNOME Libxml2 XML toolkit</a>.
10
+ It is free software, released under the <a href="license.xml">MIT License</a>.</p>
11
+
12
+ <p>Libxml-ruby's primary advantage over REXML is performance - if speed is your need,
13
+ these are good libraries to consider, as demonstrated by the informal benchmark below.</p>
14
+
15
+ <table border="1" style="border: 1px solid red; margin: 30px;">
16
+ <tr><td colspan="3"><b>Speed Comparison libxml vs. rexml</b></td></tr>
17
+ <tr><th> in seconds </th><th> libxml </th><th> rexml </th></tr>
18
+ <tr><td> opening </td><td> 0.003954 </td><td> 0.104750 </td></tr>
19
+ <tr><td> attribute_add </td><td> 0.001895 </td><td> 0.011114 </td></tr>
20
+ <tr><td> subelems </td><td> 0.000585 </td><td> 0.004729 </td></tr>
21
+ <tr><td> xpath </td><td> 0.013269 </td><td> 2.981499 </td></tr>
22
+ </table>
23
+
24
+ <h2>Download</h2>
25
+
26
+ <p>You can find the latest release at:</p>
27
+
28
+ <pre>
29
+ <a href="http://rubyforge.org/frs/?group_id=494">http://rubyforge.org/frs/?group_id=494</a>
30
+ </pre>
31
+
32
+ <p>Libxml-Ruby is also available for installation via <a href="http://rubygems.rubyforge.org">Rubygems</a>
33
+ -- see the <a href="install.xml">installation page</a> for details.</p>
34
+
35
+ <h2> Project Status </h2>
36
+
37
+ <p>The code has now been updated to work with Ruby 1.8, and is compiling cleanly
38
+ and working well with GCC 4.x. We still have a number of open bugs to address,
39
+ which is being done as we work toward a 0.4.0 release and the library is
40
+ generally fairly stable in use.</p>
41
+
42
+ </content>
43
+
data/site/install.xml ADDED
@@ -0,0 +1,77 @@
1
+ <?xml version="1.0" encoding="ISO-8859-1" ?>
2
+ <?xml-stylesheet href="layout.xsl" type="text/xsl" ?>
3
+
4
+ <content>
5
+
6
+ <h2> Installation </h2>
7
+
8
+ <p>Libxml-Ruby supports installation via both the standard Ruby extconf install and
9
+ "Rubygems":http://rubygems.rubyforge.org/ . In either case the requirements are
10
+ the same - only the installation process differs.</p>
11
+
12
+ <h3> Prerequisites </h3>
13
+
14
+ <p>libxml requires a few other libraries to be installed in order to build and
15
+ function properly.</p>
16
+
17
+ <pre>
18
+ * libm (math routines: very standard)
19
+ * libz (zlib)
20
+ * libiconv
21
+ * libxml2
22
+ </pre>
23
+
24
+ <p>We recommend GCC 4 be used for the build.</p>
25
+
26
+ <h3> Installing with gems </h3>
27
+
28
+ <p>Installation via Gems is very simple - just issue the appropriate command,
29
+ e.g:</p>
30
+
31
+ <pre>
32
+ gem install -r libxml-ruby
33
+ </pre>
34
+
35
+ <p>Note that depending on your setup you may need to run this as root:</p>
36
+
37
+ <pre>
38
+ su -c 'gem install -r libxml-ruby'
39
+ </pre>
40
+
41
+ <p>During installation Gems should build and install the extension to the correct
42
+ location. If there are errors at this stage, Gem will report them and offer you
43
+ the option to delete the extension.</p>
44
+
45
+ <h3> Installing from the tarball </h3>
46
+
47
+ <p>Installation from the source tarball is only slightly more complex. Untar the
48
+ archive somewhere appropriate, and change to the new directory this creates.
49
+ If your environment requires no special configuration, you can simply type:</p>
50
+
51
+ <pre>
52
+ $ rake install
53
+ </pre>
54
+
55
+ <p>to build, test, and install the extension.</p>
56
+
57
+ <p>If you do need to pass options to extconf (to support a non-standard libxml2
58
+ install location, for example) you will need to use make manually instead:</p>
59
+
60
+ <pre>
61
+ $ cd ext/xml
62
+ $ ruby extconf.rb [your-options]
63
+ $ make
64
+ $ [su -c ']make install[']
65
+ </pre>
66
+
67
+ <p>Once the makefile is generated, the rest of the Rake tasks will function as
68
+ intended, so you could run 'rake test' prior to installing, for example.</p>
69
+
70
+ <h3> Installation problems </h3>
71
+
72
+ <p>If you experience problems during your build, please report them to the
73
+ "mailing list":http://rubyforge.org/mail/?group_id=494 after searching the
74
+ "archive":http://rubyforge.org/pipermail/libxml-devel/ .</p>
75
+
76
+ </content>
77
+
data/site/layout.rhtml ADDED
@@ -0,0 +1,38 @@
1
+ <html>
2
+ <head>
3
+ <title>Libxml</title>
4
+ <link rel='stylesheet' href='<%= link_rel 'styles/normal.css' %>'/>
5
+ <link REL='SHORTCUT ICON' HREF='<%= link_rel 'img/xml-ruby.png' %>'/>
6
+ </head>
7
+ <body>
8
+ <table>
9
+ <tr valign="top">
10
+ <td class='navlinks'>
11
+ <strong>Navigation</strong><br/>
12
+ <li><a class='nav' href="<%= link_rel 'index.html' %>">Home</a></li>
13
+ <li><a class='nav' href="<%= link_rel 'install.html' %>">Installation</a></li>
14
+ <li><a class='nav' href="<%= link_rel 'rdoc/' %>">Documentation</a></li>
15
+ <li><a class='nav' href="http://rubyforge.org/projects/libxml">Project Page</a></li>
16
+ <li><a class='nav' href="<%= link_rel 'license.html' %>">License</a></li>
17
+ <br/>
18
+ <strong>External</strong><br/>
19
+ <li><a class='nav' href="http://xmlsoft.org/">Libxml2 project</a></li>
20
+ </td>
21
+ <td style="padding: 10px;">
22
+ <h1><span style="color: #901414">Libxml</span>-Ruby Project</h1>
23
+ <%= part :body %>
24
+ </td>
25
+ </tr>
26
+ </table>
27
+
28
+
29
+
30
+ <div class='copyright'>
31
+ Copyright &copy; 2001-2006 Libxml-Ruby project contributors.<br/>
32
+ Website managed with<br/>
33
+ <a href='http://proutils.rubyforge.org/' target='_blank'>
34
+ <img src='<%= link_rel 'img/raze-tiny.png' %>' border="0" alt='Raze'/>
35
+ </a>
36
+ </p>
37
+ </body>
38
+ </html>
data/site/layout.xsl ADDED
@@ -0,0 +1,67 @@
1
+ <?xml version="1.0" encoding="ISO-8859-1"?>
2
+ <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
+
4
+ <xsl:output cdata-section-elements="script"/>
5
+
6
+ <xsl:template match="/">
7
+
8
+ <html>
9
+ <head>
10
+ <title>Libxml</title>
11
+ <link rel="stylesheet" href="css/normal.css" />
12
+ <link REL='SHORTCUT ICON' HREF="img/xml-ruby.png" />
13
+ </head>
14
+ <body>
15
+ <div class="container">
16
+
17
+ <table>
18
+ <tr valign="top">
19
+ <td class='navlinks'>
20
+ <img src="img/red-cube.jpg" align="top" style="margin-left: -100px;"/>
21
+
22
+ <br/><br/>
23
+
24
+ <strong>Navigation</strong><br/>
25
+ <li><a href="index.xml">Home</a></li>
26
+ <li><a href="install.xml">Installation</a></li>
27
+ <li><a href="license.xml">License</a></li>
28
+ <li><a href="rdoc/index.html">API Docs</a></li>
29
+ <br/>
30
+ <strong>Development</strong><br/>
31
+ <li><a href="http://rubyforge.org/projects/libxml">Rubyforge</a></li>
32
+ <li><a href="http://rubyforge.org/tracker/?group_id=494">Tickets</a></li>
33
+ <li><a href="http://rubyforge.org/mail/?group_id=494">Mail Lists</a></li>
34
+ <li><a href="http://rubyforge.org/forum/?group_id=494">Forums</a></li>
35
+ <li><a href="http://rubyforge.org/news/?group_id=494">News</a></li>
36
+ <li><a href="http://rubyforge.org/scm/?group_id=494">Source</a></li>
37
+ <li><a href="http://rubyforge.org/frs/?group_id=494">Files</a></li>
38
+ <br/>
39
+ <strong>External</strong><br/>
40
+ <li><a href="http://groups.google.com/group/libxml-devel">List on Google</a></li>
41
+ <li><a href="http://xmlsoft.org/">Libxml2 project</a></li>
42
+ </td>
43
+ <td style="padding: 10px;">
44
+ <h1 class="title"><span style="color: red;">LibXml</span> Ruby Project</h1>
45
+
46
+ <xsl:apply-templates />
47
+ </td>
48
+ </tr>
49
+ </table>
50
+
51
+ <div class='copyright'>
52
+ Copyright &#x00A9; 2001-2006 Libxml-Ruby project contributors.<br/>
53
+ Website is, yea baby!, pure XML/XSLT<br/>
54
+ </div>
55
+
56
+ </div>
57
+ </body>
58
+ </html>
59
+
60
+ </xsl:template>
61
+
62
+ <xsl:template match="content">
63
+ <xsl:copy-of select="."/>
64
+ </xsl:template>
65
+
66
+ </xsl:stylesheet>
67
+
data/site/license.xml ADDED
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="ISO-8859-1" ?>
2
+ <?xml-stylesheet href="layout.xsl" type="text/xsl" ?>
3
+
4
+ <content>
5
+
6
+ <pre><code>
7
+ Copyright (c) 2007 Dan Janowski
8
+ Copyright (c) 2006 Ross Bramford
9
+ Copyright (c) 2002,2003,2004,2005 Sean Chittenden &lt;sean@chittenden.org&gt;
10
+ Copyright (c) 2001 Wai-Sun "Squidster" Chia &lt;waisun.chia@compaq.com&gt;
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
13
+ this software and associated documentation files (the "Software"), to deal in
14
+ the Software without restriction, including without limitation the rights to
15
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
16
+ of the Software, and to permit persons to whom the Software is furnished to do
17
+ so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in all
20
+ copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ SOFTWARE.
29
+ </code></pre>
30
+
31
+ </content>
32
+