libxml-ruby 1.1.4 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (146) hide show
  1. data/{CHANGES → HISTORY} +35 -0
  2. data/LICENSE +1 -0
  3. data/MANIFEST +165 -0
  4. data/{README → README.rdoc} +2 -2
  5. data/Rakefile +47 -147
  6. data/ext/libxml/libxml.c +17 -1
  7. data/ext/libxml/ruby_libxml.h +9 -1
  8. data/ext/libxml/ruby_xml_attr.c +3 -3
  9. data/ext/libxml/ruby_xml_attr_decl.c +32 -32
  10. data/ext/libxml/ruby_xml_attributes.c +1 -1
  11. data/ext/libxml/ruby_xml_cbg.c +1 -2
  12. data/ext/libxml/ruby_xml_document.c +26 -4
  13. data/ext/libxml/ruby_xml_dtd.c +3 -3
  14. data/ext/libxml/ruby_xml_encoding.c +92 -5
  15. data/ext/libxml/ruby_xml_encoding.h +4 -0
  16. data/ext/libxml/ruby_xml_namespace.c +2 -2
  17. data/ext/libxml/ruby_xml_node.c +14 -14
  18. data/ext/libxml/ruby_xml_parser_context.c +8 -8
  19. data/ext/libxml/ruby_xml_reader.c +98 -43
  20. data/ext/libxml/ruby_xml_sax2_handler.c +13 -1
  21. data/ext/libxml/ruby_xml_sax_parser.c +4 -5
  22. data/ext/libxml/ruby_xml_version.h +5 -5
  23. data/ext/libxml/ruby_xml_xpath_context.c +9 -6
  24. data/ext/libxml/ruby_xml_xpath_object.c +1 -1
  25. data/ext/vc/libxml_ruby.sln +4 -4
  26. data/lib/libxml.rb +29 -29
  27. data/lib/libxml/attr.rb +112 -110
  28. data/lib/libxml/attr_decl.rb +2 -0
  29. data/lib/libxml/attributes.rb +13 -11
  30. data/lib/libxml/document.rb +192 -190
  31. data/lib/libxml/error.rb +89 -87
  32. data/lib/libxml/hpricot.rb +77 -75
  33. data/lib/libxml/html_parser.rb +96 -94
  34. data/lib/libxml/namespace.rb +61 -59
  35. data/lib/libxml/namespaces.rb +37 -35
  36. data/lib/libxml/node.rb +398 -384
  37. data/lib/libxml/ns.rb +21 -19
  38. data/lib/libxml/parser.rb +366 -364
  39. data/lib/libxml/properties.rb +22 -20
  40. data/lib/libxml/reader.rb +2 -0
  41. data/lib/libxml/sax_callbacks.rb +179 -177
  42. data/lib/libxml/sax_parser.rb +57 -55
  43. data/lib/libxml/tree.rb +28 -26
  44. data/lib/libxml/xpath_object.rb +15 -13
  45. data/lib/xml.rb +16 -14
  46. data/lib/xml/libxml.rb +10 -8
  47. data/libxml-ruby.gemspec +50 -0
  48. data/script/benchmark/depixelate +634 -0
  49. data/script/benchmark/hamlet.xml +9055 -0
  50. data/script/benchmark/parsecount +170 -0
  51. data/script/benchmark/sock_entries.xml +507 -0
  52. data/script/benchmark/throughput +41 -0
  53. data/script/test +6 -0
  54. data/test/etc_doc_to_s.rb +21 -19
  55. data/test/ets_doc_file.rb +17 -15
  56. data/test/ets_doc_to_s.rb +23 -21
  57. data/test/ets_gpx.rb +28 -26
  58. data/test/ets_node_gc.rb +23 -21
  59. data/test/ets_tsr.rb +11 -9
  60. data/test/model/bands.iso-8859-1.xml +5 -0
  61. data/test/model/bands.utf-8.xml +5 -0
  62. data/test/rb-magic-comment.rb +33 -0
  63. data/test/tc_attr.rb +181 -170
  64. data/test/tc_attr_decl.rb +3 -1
  65. data/test/tc_attributes.rb +134 -132
  66. data/test/tc_deprecated_require.rb +13 -11
  67. data/test/tc_document.rb +119 -113
  68. data/test/tc_document_write.rb +186 -117
  69. data/test/tc_dtd.rb +125 -123
  70. data/test/tc_error.rb +3 -1
  71. data/test/tc_html_parser.rb +139 -137
  72. data/test/tc_namespace.rb +61 -58
  73. data/test/tc_namespaces.rb +176 -173
  74. data/test/tc_node.rb +257 -180
  75. data/test/tc_node_cdata.rb +51 -49
  76. data/test/tc_node_comment.rb +33 -30
  77. data/test/tc_node_copy.rb +42 -40
  78. data/test/tc_node_edit.rb +159 -157
  79. data/test/tc_node_text.rb +71 -69
  80. data/test/tc_node_write.rb +41 -16
  81. data/test/tc_node_xlink.rb +29 -26
  82. data/test/tc_parser.rb +335 -329
  83. data/test/tc_parser_context.rb +188 -185
  84. data/test/tc_properties.rb +39 -36
  85. data/test/tc_reader.rb +297 -283
  86. data/test/tc_relaxng.rb +54 -51
  87. data/test/tc_sax_parser.rb +275 -273
  88. data/test/tc_schema.rb +53 -51
  89. data/test/tc_traversal.rb +222 -220
  90. data/test/tc_xinclude.rb +21 -19
  91. data/test/tc_xml.rb +3 -1
  92. data/test/tc_xpath.rb +195 -193
  93. data/test/tc_xpath_context.rb +80 -78
  94. data/test/tc_xpath_expression.rb +38 -35
  95. data/test/tc_xpointer.rb +74 -72
  96. data/test/test_helper.rb +14 -0
  97. data/test/test_suite.rb +39 -33
  98. metadata +65 -105
  99. data/doc/css/normal.css +0 -182
  100. data/doc/img/raze-tiny.png +0 -0
  101. data/doc/img/red-cube.jpg +0 -0
  102. data/doc/img/xml-ruby.png +0 -0
  103. data/doc/index.xml +0 -43
  104. data/doc/install.xml +0 -77
  105. data/doc/layout.rhtml +0 -38
  106. data/doc/layout.xsl +0 -67
  107. data/doc/license.xml +0 -32
  108. data/doc/log/changelog.xml +0 -1324
  109. data/doc/log/changelog.xsl +0 -42
  110. data/ext/libxml/Makefile +0 -156
  111. data/ext/libxml/extconf.h +0 -5
  112. data/ext/libxml/libxml-ruby.so.a +0 -0
  113. data/ext/libxml/libxml.o +0 -0
  114. data/ext/libxml/libxml_ruby.so +0 -0
  115. data/ext/libxml/mkmf.log +0 -129
  116. data/ext/libxml/ruby_xml.o +0 -0
  117. data/ext/libxml/ruby_xml_attr.o +0 -0
  118. data/ext/libxml/ruby_xml_attr_decl.o +0 -0
  119. data/ext/libxml/ruby_xml_attributes.o +0 -0
  120. data/ext/libxml/ruby_xml_cbg.o +0 -0
  121. data/ext/libxml/ruby_xml_document.o +0 -0
  122. data/ext/libxml/ruby_xml_dtd.o +0 -0
  123. data/ext/libxml/ruby_xml_encoding.o +0 -0
  124. data/ext/libxml/ruby_xml_error.o +0 -0
  125. data/ext/libxml/ruby_xml_html_parser.o +0 -0
  126. data/ext/libxml/ruby_xml_html_parser_context.o +0 -0
  127. data/ext/libxml/ruby_xml_html_parser_options.o +0 -0
  128. data/ext/libxml/ruby_xml_input_cbg.o +0 -0
  129. data/ext/libxml/ruby_xml_io.o +0 -0
  130. data/ext/libxml/ruby_xml_namespace.o +0 -0
  131. data/ext/libxml/ruby_xml_namespaces.o +0 -0
  132. data/ext/libxml/ruby_xml_node.o +0 -0
  133. data/ext/libxml/ruby_xml_parser.o +0 -0
  134. data/ext/libxml/ruby_xml_parser_context.o +0 -0
  135. data/ext/libxml/ruby_xml_parser_options.o +0 -0
  136. data/ext/libxml/ruby_xml_reader.o +0 -0
  137. data/ext/libxml/ruby_xml_relaxng.o +0 -0
  138. data/ext/libxml/ruby_xml_sax2_handler.o +0 -0
  139. data/ext/libxml/ruby_xml_sax_parser.o +0 -0
  140. data/ext/libxml/ruby_xml_schema.o +0 -0
  141. data/ext/libxml/ruby_xml_xinclude.o +0 -0
  142. data/ext/libxml/ruby_xml_xpath.o +0 -0
  143. data/ext/libxml/ruby_xml_xpath_context.o +0 -0
  144. data/ext/libxml/ruby_xml_xpath_expression.o +0 -0
  145. data/ext/libxml/ruby_xml_xpath_object.o +0 -0
  146. data/ext/libxml/ruby_xml_xpointer.o +0 -0
data/doc/css/normal.css DELETED
@@ -1,182 +0,0 @@
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
data/doc/img/red-cube.jpg DELETED
Binary file
data/doc/img/xml-ruby.png DELETED
Binary file
data/doc/index.xml DELETED
@@ -1,43 +0,0 @@
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/doc/install.xml DELETED
@@ -1,77 +0,0 @@
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/doc/layout.rhtml DELETED
@@ -1,38 +0,0 @@
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/doc/layout.xsl DELETED
@@ -1,67 +0,0 @@
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/doc/license.xml DELETED
@@ -1,32 +0,0 @@
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
-