nokogiri-backport 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (239) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +3 -0
  3. data/LICENSE-DEPENDENCIES.md +1682 -0
  4. data/LICENSE.md +9 -0
  5. data/README.md +272 -0
  6. data/bin/nokogiri +118 -0
  7. data/dependencies.yml +74 -0
  8. data/ext/java/nokogiri/EncodingHandler.java +124 -0
  9. data/ext/java/nokogiri/HtmlDocument.java +178 -0
  10. data/ext/java/nokogiri/HtmlElementDescription.java +148 -0
  11. data/ext/java/nokogiri/HtmlEntityLookup.java +79 -0
  12. data/ext/java/nokogiri/HtmlSaxParserContext.java +282 -0
  13. data/ext/java/nokogiri/HtmlSaxPushParser.java +222 -0
  14. data/ext/java/nokogiri/NokogiriService.java +597 -0
  15. data/ext/java/nokogiri/XmlAttr.java +162 -0
  16. data/ext/java/nokogiri/XmlAttributeDecl.java +129 -0
  17. data/ext/java/nokogiri/XmlCdata.java +82 -0
  18. data/ext/java/nokogiri/XmlComment.java +97 -0
  19. data/ext/java/nokogiri/XmlDocument.java +633 -0
  20. data/ext/java/nokogiri/XmlDocumentFragment.java +185 -0
  21. data/ext/java/nokogiri/XmlDtd.java +481 -0
  22. data/ext/java/nokogiri/XmlElement.java +68 -0
  23. data/ext/java/nokogiri/XmlElementContent.java +382 -0
  24. data/ext/java/nokogiri/XmlElementDecl.java +147 -0
  25. data/ext/java/nokogiri/XmlEntityDecl.java +157 -0
  26. data/ext/java/nokogiri/XmlEntityReference.java +101 -0
  27. data/ext/java/nokogiri/XmlNamespace.java +199 -0
  28. data/ext/java/nokogiri/XmlNode.java +1684 -0
  29. data/ext/java/nokogiri/XmlNodeSet.java +434 -0
  30. data/ext/java/nokogiri/XmlProcessingInstruction.java +100 -0
  31. data/ext/java/nokogiri/XmlReader.java +531 -0
  32. data/ext/java/nokogiri/XmlRelaxng.java +151 -0
  33. data/ext/java/nokogiri/XmlSaxParserContext.java +374 -0
  34. data/ext/java/nokogiri/XmlSaxPushParser.java +286 -0
  35. data/ext/java/nokogiri/XmlSchema.java +388 -0
  36. data/ext/java/nokogiri/XmlSyntaxError.java +138 -0
  37. data/ext/java/nokogiri/XmlText.java +110 -0
  38. data/ext/java/nokogiri/XmlXpathContext.java +301 -0
  39. data/ext/java/nokogiri/XsltStylesheet.java +347 -0
  40. data/ext/java/nokogiri/internals/ClosedStreamException.java +10 -0
  41. data/ext/java/nokogiri/internals/HtmlDomParserContext.java +252 -0
  42. data/ext/java/nokogiri/internals/IgnoreSchemaErrorsErrorHandler.java +20 -0
  43. data/ext/java/nokogiri/internals/NokogiriBlockingQueueInputStream.java +151 -0
  44. data/ext/java/nokogiri/internals/NokogiriDomParser.java +116 -0
  45. data/ext/java/nokogiri/internals/NokogiriEntityResolver.java +121 -0
  46. data/ext/java/nokogiri/internals/NokogiriErrorHandler.java +69 -0
  47. data/ext/java/nokogiri/internals/NokogiriHandler.java +327 -0
  48. data/ext/java/nokogiri/internals/NokogiriHelpers.java +734 -0
  49. data/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +217 -0
  50. data/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +127 -0
  51. data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +100 -0
  52. data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +121 -0
  53. data/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +78 -0
  54. data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +180 -0
  55. data/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +72 -0
  56. data/ext/java/nokogiri/internals/NokogiriXPathVariableResolver.java +60 -0
  57. data/ext/java/nokogiri/internals/NokogiriXsltErrorListener.java +87 -0
  58. data/ext/java/nokogiri/internals/ParserContext.java +259 -0
  59. data/ext/java/nokogiri/internals/ReaderNode.java +488 -0
  60. data/ext/java/nokogiri/internals/SaveContextVisitor.java +778 -0
  61. data/ext/java/nokogiri/internals/SchemaErrorHandler.java +73 -0
  62. data/ext/java/nokogiri/internals/XalanDTMManagerPatch.java +168 -0
  63. data/ext/java/nokogiri/internals/XmlDeclHandler.java +42 -0
  64. data/ext/java/nokogiri/internals/XmlDomParserContext.java +274 -0
  65. data/ext/java/nokogiri/internals/XmlSaxParser.java +65 -0
  66. data/ext/java/nokogiri/internals/c14n/AttrCompare.java +119 -0
  67. data/ext/java/nokogiri/internals/c14n/C14nHelper.java +159 -0
  68. data/ext/java/nokogiri/internals/c14n/CanonicalFilter.java +37 -0
  69. data/ext/java/nokogiri/internals/c14n/CanonicalizationException.java +93 -0
  70. data/ext/java/nokogiri/internals/c14n/Canonicalizer.java +252 -0
  71. data/ext/java/nokogiri/internals/c14n/Canonicalizer11.java +639 -0
  72. data/ext/java/nokogiri/internals/c14n/Canonicalizer11_OmitComments.java +38 -0
  73. data/ext/java/nokogiri/internals/c14n/Canonicalizer11_WithComments.java +38 -0
  74. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315.java +367 -0
  75. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315Excl.java +295 -0
  76. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclOmitComments.java +40 -0
  77. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclWithComments.java +44 -0
  78. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315OmitComments.java +44 -0
  79. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315WithComments.java +43 -0
  80. data/ext/java/nokogiri/internals/c14n/CanonicalizerBase.java +630 -0
  81. data/ext/java/nokogiri/internals/c14n/CanonicalizerPhysical.java +173 -0
  82. data/ext/java/nokogiri/internals/c14n/CanonicalizerSpi.java +76 -0
  83. data/ext/java/nokogiri/internals/c14n/Constants.java +42 -0
  84. data/ext/java/nokogiri/internals/c14n/ElementProxy.java +293 -0
  85. data/ext/java/nokogiri/internals/c14n/HelperNodeList.java +93 -0
  86. data/ext/java/nokogiri/internals/c14n/IgnoreAllErrorHandler.java +79 -0
  87. data/ext/java/nokogiri/internals/c14n/InclusiveNamespaces.java +166 -0
  88. data/ext/java/nokogiri/internals/c14n/InvalidCanonicalizerException.java +76 -0
  89. data/ext/java/nokogiri/internals/c14n/NameSpaceSymbTable.java +402 -0
  90. data/ext/java/nokogiri/internals/c14n/NodeFilter.java +51 -0
  91. data/ext/java/nokogiri/internals/c14n/UtfHelpper.java +179 -0
  92. data/ext/java/nokogiri/internals/c14n/XMLUtils.java +507 -0
  93. data/ext/java/nokogiri/internals/dom2dtm/DOM2DTM.java +1745 -0
  94. data/ext/java/nokogiri/internals/dom2dtm/DOM2DTMdefaultNamespaceDeclarationNode.java +685 -0
  95. data/ext/nokogiri/depend +477 -0
  96. data/ext/nokogiri/extconf.rb +836 -0
  97. data/ext/nokogiri/html_document.c +171 -0
  98. data/ext/nokogiri/html_document.h +10 -0
  99. data/ext/nokogiri/html_element_description.c +279 -0
  100. data/ext/nokogiri/html_element_description.h +10 -0
  101. data/ext/nokogiri/html_entity_lookup.c +32 -0
  102. data/ext/nokogiri/html_entity_lookup.h +8 -0
  103. data/ext/nokogiri/html_sax_parser_context.c +116 -0
  104. data/ext/nokogiri/html_sax_parser_context.h +11 -0
  105. data/ext/nokogiri/html_sax_push_parser.c +87 -0
  106. data/ext/nokogiri/html_sax_push_parser.h +9 -0
  107. data/ext/nokogiri/nokogiri.c +135 -0
  108. data/ext/nokogiri/nokogiri.h +130 -0
  109. data/ext/nokogiri/xml_attr.c +103 -0
  110. data/ext/nokogiri/xml_attr.h +9 -0
  111. data/ext/nokogiri/xml_attribute_decl.c +70 -0
  112. data/ext/nokogiri/xml_attribute_decl.h +9 -0
  113. data/ext/nokogiri/xml_cdata.c +62 -0
  114. data/ext/nokogiri/xml_cdata.h +9 -0
  115. data/ext/nokogiri/xml_comment.c +69 -0
  116. data/ext/nokogiri/xml_comment.h +9 -0
  117. data/ext/nokogiri/xml_document.c +622 -0
  118. data/ext/nokogiri/xml_document.h +23 -0
  119. data/ext/nokogiri/xml_document_fragment.c +48 -0
  120. data/ext/nokogiri/xml_document_fragment.h +10 -0
  121. data/ext/nokogiri/xml_dtd.c +202 -0
  122. data/ext/nokogiri/xml_dtd.h +10 -0
  123. data/ext/nokogiri/xml_element_content.c +123 -0
  124. data/ext/nokogiri/xml_element_content.h +10 -0
  125. data/ext/nokogiri/xml_element_decl.c +69 -0
  126. data/ext/nokogiri/xml_element_decl.h +9 -0
  127. data/ext/nokogiri/xml_encoding_handler.c +79 -0
  128. data/ext/nokogiri/xml_encoding_handler.h +8 -0
  129. data/ext/nokogiri/xml_entity_decl.c +110 -0
  130. data/ext/nokogiri/xml_entity_decl.h +10 -0
  131. data/ext/nokogiri/xml_entity_reference.c +52 -0
  132. data/ext/nokogiri/xml_entity_reference.h +9 -0
  133. data/ext/nokogiri/xml_io.c +63 -0
  134. data/ext/nokogiri/xml_io.h +11 -0
  135. data/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  136. data/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  137. data/ext/nokogiri/xml_namespace.c +111 -0
  138. data/ext/nokogiri/xml_namespace.h +14 -0
  139. data/ext/nokogiri/xml_node.c +1773 -0
  140. data/ext/nokogiri/xml_node.h +13 -0
  141. data/ext/nokogiri/xml_node_set.c +486 -0
  142. data/ext/nokogiri/xml_node_set.h +12 -0
  143. data/ext/nokogiri/xml_processing_instruction.c +56 -0
  144. data/ext/nokogiri/xml_processing_instruction.h +9 -0
  145. data/ext/nokogiri/xml_reader.c +657 -0
  146. data/ext/nokogiri/xml_reader.h +10 -0
  147. data/ext/nokogiri/xml_relax_ng.c +179 -0
  148. data/ext/nokogiri/xml_relax_ng.h +9 -0
  149. data/ext/nokogiri/xml_sax_parser.c +305 -0
  150. data/ext/nokogiri/xml_sax_parser.h +39 -0
  151. data/ext/nokogiri/xml_sax_parser_context.c +262 -0
  152. data/ext/nokogiri/xml_sax_parser_context.h +10 -0
  153. data/ext/nokogiri/xml_sax_push_parser.c +159 -0
  154. data/ext/nokogiri/xml_sax_push_parser.h +9 -0
  155. data/ext/nokogiri/xml_schema.c +276 -0
  156. data/ext/nokogiri/xml_schema.h +9 -0
  157. data/ext/nokogiri/xml_syntax_error.c +64 -0
  158. data/ext/nokogiri/xml_syntax_error.h +13 -0
  159. data/ext/nokogiri/xml_text.c +52 -0
  160. data/ext/nokogiri/xml_text.h +9 -0
  161. data/ext/nokogiri/xml_xpath_context.c +374 -0
  162. data/ext/nokogiri/xml_xpath_context.h +10 -0
  163. data/ext/nokogiri/xslt_stylesheet.c +263 -0
  164. data/ext/nokogiri/xslt_stylesheet.h +14 -0
  165. data/lib/isorelax.jar +0 -0
  166. data/lib/jing.jar +0 -0
  167. data/lib/nekodtd.jar +0 -0
  168. data/lib/nekohtml.jar +0 -0
  169. data/lib/nokogiri/css/node.rb +53 -0
  170. data/lib/nokogiri/css/parser.rb +751 -0
  171. data/lib/nokogiri/css/parser.y +272 -0
  172. data/lib/nokogiri/css/parser_extras.rb +94 -0
  173. data/lib/nokogiri/css/syntax_error.rb +8 -0
  174. data/lib/nokogiri/css/tokenizer.rb +154 -0
  175. data/lib/nokogiri/css/tokenizer.rex +55 -0
  176. data/lib/nokogiri/css/xpath_visitor.rb +260 -0
  177. data/lib/nokogiri/css.rb +28 -0
  178. data/lib/nokogiri/decorators/slop.rb +43 -0
  179. data/lib/nokogiri/html/builder.rb +36 -0
  180. data/lib/nokogiri/html/document.rb +322 -0
  181. data/lib/nokogiri/html/document_fragment.rb +50 -0
  182. data/lib/nokogiri/html/element_description.rb +24 -0
  183. data/lib/nokogiri/html/element_description_defaults.rb +672 -0
  184. data/lib/nokogiri/html/entity_lookup.rb +14 -0
  185. data/lib/nokogiri/html/sax/parser.rb +63 -0
  186. data/lib/nokogiri/html/sax/parser_context.rb +17 -0
  187. data/lib/nokogiri/html/sax/push_parser.rb +37 -0
  188. data/lib/nokogiri/html.rb +38 -0
  189. data/lib/nokogiri/jruby/dependencies.rb +20 -0
  190. data/lib/nokogiri/syntax_error.rb +5 -0
  191. data/lib/nokogiri/version/constant.rb +5 -0
  192. data/lib/nokogiri/version/info.rb +182 -0
  193. data/lib/nokogiri/version.rb +3 -0
  194. data/lib/nokogiri/xml/attr.rb +15 -0
  195. data/lib/nokogiri/xml/attribute_decl.rb +19 -0
  196. data/lib/nokogiri/xml/builder.rb +447 -0
  197. data/lib/nokogiri/xml/cdata.rb +12 -0
  198. data/lib/nokogiri/xml/character_data.rb +8 -0
  199. data/lib/nokogiri/xml/document.rb +290 -0
  200. data/lib/nokogiri/xml/document_fragment.rb +159 -0
  201. data/lib/nokogiri/xml/dtd.rb +33 -0
  202. data/lib/nokogiri/xml/element_content.rb +37 -0
  203. data/lib/nokogiri/xml/element_decl.rb +14 -0
  204. data/lib/nokogiri/xml/entity_decl.rb +20 -0
  205. data/lib/nokogiri/xml/entity_reference.rb +19 -0
  206. data/lib/nokogiri/xml/namespace.rb +14 -0
  207. data/lib/nokogiri/xml/node/save_options.rb +62 -0
  208. data/lib/nokogiri/xml/node.rb +1240 -0
  209. data/lib/nokogiri/xml/node_set.rb +372 -0
  210. data/lib/nokogiri/xml/notation.rb +7 -0
  211. data/lib/nokogiri/xml/parse_options.rb +127 -0
  212. data/lib/nokogiri/xml/pp/character_data.rb +19 -0
  213. data/lib/nokogiri/xml/pp/node.rb +57 -0
  214. data/lib/nokogiri/xml/pp.rb +3 -0
  215. data/lib/nokogiri/xml/processing_instruction.rb +9 -0
  216. data/lib/nokogiri/xml/reader.rb +116 -0
  217. data/lib/nokogiri/xml/relax_ng.rb +37 -0
  218. data/lib/nokogiri/xml/sax/document.rb +172 -0
  219. data/lib/nokogiri/xml/sax/parser.rb +123 -0
  220. data/lib/nokogiri/xml/sax/parser_context.rb +17 -0
  221. data/lib/nokogiri/xml/sax/push_parser.rb +61 -0
  222. data/lib/nokogiri/xml/sax.rb +5 -0
  223. data/lib/nokogiri/xml/schema.rb +72 -0
  224. data/lib/nokogiri/xml/searchable.rb +239 -0
  225. data/lib/nokogiri/xml/syntax_error.rb +71 -0
  226. data/lib/nokogiri/xml/text.rb +10 -0
  227. data/lib/nokogiri/xml/xpath/syntax_error.rb +12 -0
  228. data/lib/nokogiri/xml/xpath.rb +11 -0
  229. data/lib/nokogiri/xml/xpath_context.rb +17 -0
  230. data/lib/nokogiri/xml.rb +76 -0
  231. data/lib/nokogiri/xslt/stylesheet.rb +26 -0
  232. data/lib/nokogiri/xslt.rb +57 -0
  233. data/lib/nokogiri.rb +144 -0
  234. data/lib/serializer.jar +0 -0
  235. data/lib/xalan.jar +0 -0
  236. data/lib/xercesImpl.jar +0 -0
  237. data/lib/xml-apis.jar +0 -0
  238. data/lib/xsd/xmlparser/nokogiri.rb +103 -0
  239. metadata +531 -0
@@ -0,0 +1,202 @@
1
+ #include <xml_dtd.h>
2
+
3
+ static void notation_copier(void *payload, void *data, const xmlChar *name)
4
+ {
5
+ VALUE hash = (VALUE)data;
6
+ VALUE klass = rb_const_get(mNokogiriXml, rb_intern("Notation"));
7
+
8
+ xmlNotationPtr c_notation = (xmlNotationPtr)payload;
9
+ VALUE notation;
10
+ VALUE argv[3];
11
+ argv[0] = (c_notation->name ? NOKOGIRI_STR_NEW2(c_notation->name) : Qnil);
12
+ argv[1] = (c_notation->PublicID ? NOKOGIRI_STR_NEW2(c_notation->PublicID) : Qnil);
13
+ argv[2] = (c_notation->SystemID ? NOKOGIRI_STR_NEW2(c_notation->SystemID) : Qnil);
14
+
15
+ notation = rb_class_new_instance(3, argv, klass);
16
+
17
+ rb_hash_aset(hash, NOKOGIRI_STR_NEW2(name),notation);
18
+ }
19
+
20
+ static void element_copier(void *_payload, void *data, const xmlChar *name)
21
+ {
22
+ VALUE hash = (VALUE)data;
23
+ xmlNodePtr payload = (xmlNodePtr)_payload;
24
+
25
+ VALUE element = Nokogiri_wrap_xml_node(Qnil, payload);
26
+
27
+ rb_hash_aset(hash, NOKOGIRI_STR_NEW2(name), element);
28
+ }
29
+
30
+ /*
31
+ * call-seq:
32
+ * entities
33
+ *
34
+ * Get a hash of the elements for this DTD.
35
+ */
36
+ static VALUE entities(VALUE self)
37
+ {
38
+ xmlDtdPtr dtd;
39
+ VALUE hash;
40
+
41
+ Data_Get_Struct(self, xmlDtd, dtd);
42
+
43
+ if(!dtd->entities) return Qnil;
44
+
45
+ hash = rb_hash_new();
46
+
47
+ xmlHashScan((xmlHashTablePtr)dtd->entities, element_copier, (void *)hash);
48
+
49
+ return hash;
50
+ }
51
+
52
+ /*
53
+ * call-seq:
54
+ * notations
55
+ *
56
+ * Get a hash of the notations for this DTD.
57
+ */
58
+ static VALUE notations(VALUE self)
59
+ {
60
+ xmlDtdPtr dtd;
61
+ VALUE hash;
62
+
63
+ Data_Get_Struct(self, xmlDtd, dtd);
64
+
65
+ if(!dtd->notations) return Qnil;
66
+
67
+ hash = rb_hash_new();
68
+
69
+ xmlHashScan((xmlHashTablePtr)dtd->notations, notation_copier, (void *)hash);
70
+
71
+ return hash;
72
+ }
73
+
74
+ /*
75
+ * call-seq:
76
+ * attributes
77
+ *
78
+ * Get a hash of the attributes for this DTD.
79
+ */
80
+ static VALUE attributes(VALUE self)
81
+ {
82
+ xmlDtdPtr dtd;
83
+ VALUE hash;
84
+
85
+ Data_Get_Struct(self, xmlDtd, dtd);
86
+
87
+ hash = rb_hash_new();
88
+
89
+ if(!dtd->attributes) return hash;
90
+
91
+ xmlHashScan((xmlHashTablePtr)dtd->attributes, element_copier, (void *)hash);
92
+
93
+ return hash;
94
+ }
95
+
96
+ /*
97
+ * call-seq:
98
+ * elements
99
+ *
100
+ * Get a hash of the elements for this DTD.
101
+ */
102
+ static VALUE elements(VALUE self)
103
+ {
104
+ xmlDtdPtr dtd;
105
+ VALUE hash;
106
+
107
+ Data_Get_Struct(self, xmlDtd, dtd);
108
+
109
+ if(!dtd->elements) return Qnil;
110
+
111
+ hash = rb_hash_new();
112
+
113
+ xmlHashScan((xmlHashTablePtr)dtd->elements, element_copier, (void *)hash);
114
+
115
+ return hash;
116
+ }
117
+
118
+ /*
119
+ * call-seq:
120
+ * validate(document)
121
+ *
122
+ * Validate +document+ returning a list of errors
123
+ */
124
+ static VALUE validate(VALUE self, VALUE document)
125
+ {
126
+ xmlDocPtr doc;
127
+ xmlDtdPtr dtd;
128
+ xmlValidCtxtPtr ctxt;
129
+ VALUE error_list;
130
+
131
+ Data_Get_Struct(self, xmlDtd, dtd);
132
+ Data_Get_Struct(document, xmlDoc, doc);
133
+ error_list = rb_ary_new();
134
+
135
+ ctxt = xmlNewValidCtxt();
136
+
137
+ xmlSetStructuredErrorFunc((void *)error_list, Nokogiri_error_array_pusher);
138
+
139
+ xmlValidateDtd(ctxt, doc, dtd);
140
+
141
+ xmlSetStructuredErrorFunc(NULL, NULL);
142
+
143
+ xmlFreeValidCtxt(ctxt);
144
+
145
+ return error_list;
146
+ }
147
+
148
+ /*
149
+ * call-seq:
150
+ * system_id
151
+ *
152
+ * Get the System ID for this DTD
153
+ */
154
+ static VALUE system_id(VALUE self)
155
+ {
156
+ xmlDtdPtr dtd;
157
+ Data_Get_Struct(self, xmlDtd, dtd);
158
+
159
+ if(!dtd->SystemID) return Qnil;
160
+
161
+ return NOKOGIRI_STR_NEW2(dtd->SystemID);
162
+ }
163
+
164
+ /*
165
+ * call-seq:
166
+ * external_id
167
+ *
168
+ * Get the External ID for this DTD
169
+ */
170
+ static VALUE external_id(VALUE self)
171
+ {
172
+ xmlDtdPtr dtd;
173
+ Data_Get_Struct(self, xmlDtd, dtd);
174
+
175
+ if(!dtd->ExternalID) return Qnil;
176
+
177
+ return NOKOGIRI_STR_NEW2(dtd->ExternalID);
178
+ }
179
+
180
+ VALUE cNokogiriXmlDtd;
181
+
182
+ void init_xml_dtd()
183
+ {
184
+ VALUE nokogiri = rb_define_module("Nokogiri");
185
+ VALUE xml = rb_define_module_under(nokogiri, "XML");
186
+ VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
187
+
188
+ /*
189
+ * Nokogiri::XML::DTD wraps DTD nodes in an XML document
190
+ */
191
+ VALUE klass = rb_define_class_under(xml, "DTD", node);
192
+
193
+ cNokogiriXmlDtd = klass;
194
+
195
+ rb_define_method(klass, "notations", notations, 0);
196
+ rb_define_method(klass, "elements", elements, 0);
197
+ rb_define_method(klass, "entities", entities, 0);
198
+ rb_define_method(klass, "validate", validate, 1);
199
+ rb_define_method(klass, "attributes", attributes, 0);
200
+ rb_define_method(klass, "system_id", system_id, 0);
201
+ rb_define_method(klass, "external_id", external_id, 0);
202
+ }
@@ -0,0 +1,10 @@
1
+ #ifndef NOKOGIRI_XML_DTD
2
+ #define NOKOGIRI_XML_DTD
3
+
4
+ #include <nokogiri.h>
5
+
6
+ extern VALUE cNokogiriXmlDtd;
7
+
8
+ void init_xml_dtd();
9
+
10
+ #endif
@@ -0,0 +1,123 @@
1
+ #include <xml_element_content.h>
2
+
3
+ VALUE cNokogiriXmlElementContent;
4
+
5
+ /*
6
+ * call-seq:
7
+ * name
8
+ *
9
+ * Get the require element +name+
10
+ */
11
+ static VALUE get_name(VALUE self)
12
+ {
13
+ xmlElementContentPtr elem;
14
+ Data_Get_Struct(self, xmlElementContent, elem);
15
+
16
+ if(!elem->name) return Qnil;
17
+ return NOKOGIRI_STR_NEW2(elem->name);
18
+ }
19
+
20
+ /*
21
+ * call-seq:
22
+ * type
23
+ *
24
+ * Get the element content +type+. Possible values are PCDATA, ELEMENT, SEQ,
25
+ * or OR.
26
+ */
27
+ static VALUE get_type(VALUE self)
28
+ {
29
+ xmlElementContentPtr elem;
30
+ Data_Get_Struct(self, xmlElementContent, elem);
31
+
32
+ return INT2NUM((long)elem->type);
33
+ }
34
+
35
+ /*
36
+ * call-seq:
37
+ * c1
38
+ *
39
+ * Get the first child.
40
+ */
41
+ static VALUE get_c1(VALUE self)
42
+ {
43
+ xmlElementContentPtr elem;
44
+ Data_Get_Struct(self, xmlElementContent, elem);
45
+
46
+ if(!elem->c1) return Qnil;
47
+ return Nokogiri_wrap_element_content(rb_iv_get(self, "@document"), elem->c1);
48
+ }
49
+
50
+ /*
51
+ * call-seq:
52
+ * c2
53
+ *
54
+ * Get the first child.
55
+ */
56
+ static VALUE get_c2(VALUE self)
57
+ {
58
+ xmlElementContentPtr elem;
59
+ Data_Get_Struct(self, xmlElementContent, elem);
60
+
61
+ if(!elem->c2) return Qnil;
62
+ return Nokogiri_wrap_element_content(rb_iv_get(self, "@document"), elem->c2);
63
+ }
64
+
65
+ /*
66
+ * call-seq:
67
+ * occur
68
+ *
69
+ * Get the element content +occur+ flag. Possible values are ONCE, OPT, MULT
70
+ * or PLUS.
71
+ */
72
+ static VALUE get_occur(VALUE self)
73
+ {
74
+ xmlElementContentPtr elem;
75
+ Data_Get_Struct(self, xmlElementContent, elem);
76
+
77
+ return INT2NUM((long)elem->ocur);
78
+ }
79
+
80
+ /*
81
+ * call-seq:
82
+ * prefix
83
+ *
84
+ * Get the element content namespace +prefix+.
85
+ */
86
+ static VALUE get_prefix(VALUE self)
87
+ {
88
+ xmlElementContentPtr elem;
89
+ Data_Get_Struct(self, xmlElementContent, elem);
90
+
91
+ if(!elem->prefix) return Qnil;
92
+
93
+ return NOKOGIRI_STR_NEW2(elem->prefix);
94
+ }
95
+
96
+ VALUE Nokogiri_wrap_element_content(VALUE doc, xmlElementContentPtr element)
97
+ {
98
+ VALUE elem = Data_Wrap_Struct(cNokogiriXmlElementContent, 0, 0, element);
99
+
100
+ /* Setting the document is necessary so that this does not get GC'd until */
101
+ /* the document is GC'd */
102
+ rb_iv_set(elem, "@document", doc);
103
+
104
+ return elem;
105
+ }
106
+
107
+ void init_xml_element_content()
108
+ {
109
+ VALUE nokogiri = rb_define_module("Nokogiri");
110
+ VALUE xml = rb_define_module_under(nokogiri, "XML");
111
+
112
+ VALUE klass = rb_define_class_under(xml, "ElementContent", rb_cObject);
113
+
114
+ cNokogiriXmlElementContent = klass;
115
+
116
+ rb_define_method(klass, "name", get_name, 0);
117
+ rb_define_method(klass, "type", get_type, 0);
118
+ rb_define_method(klass, "occur", get_occur, 0);
119
+ rb_define_method(klass, "prefix", get_prefix, 0);
120
+
121
+ rb_define_private_method(klass, "c1", get_c1, 0);
122
+ rb_define_private_method(klass, "c2", get_c2, 0);
123
+ }
@@ -0,0 +1,10 @@
1
+ #ifndef NOKOGIRI_XML_ELEMENT_CONTENT
2
+ #define NOKOGIRI_XML_ELEMENT_CONTENT
3
+
4
+ #include <nokogiri.h>
5
+
6
+
7
+ VALUE Nokogiri_wrap_element_content(VALUE doc, xmlElementContentPtr element);
8
+ void init_xml_element_content();
9
+
10
+ #endif
@@ -0,0 +1,69 @@
1
+ #include <xml_element_decl.h>
2
+
3
+ static ID id_document;
4
+
5
+ /*
6
+ * call-seq:
7
+ * element_type
8
+ *
9
+ * The element_type
10
+ */
11
+ static VALUE element_type(VALUE self)
12
+ {
13
+ xmlElementPtr node;
14
+ Data_Get_Struct(self, xmlElement, node);
15
+ return INT2NUM((long)node->etype);
16
+ }
17
+
18
+ /*
19
+ * call-seq:
20
+ * content
21
+ *
22
+ * The allowed content for this ElementDecl
23
+ */
24
+ static VALUE content(VALUE self)
25
+ {
26
+ xmlElementPtr node;
27
+ Data_Get_Struct(self, xmlElement, node);
28
+
29
+ if(!node->content) return Qnil;
30
+
31
+ return Nokogiri_wrap_element_content(
32
+ rb_funcall(self, id_document, 0),
33
+ node->content
34
+ );
35
+ }
36
+
37
+ /*
38
+ * call-seq:
39
+ * prefix
40
+ *
41
+ * The namespace prefix for this ElementDecl
42
+ */
43
+ static VALUE prefix(VALUE self)
44
+ {
45
+ xmlElementPtr node;
46
+ Data_Get_Struct(self, xmlElement, node);
47
+
48
+ if(!node->prefix) return Qnil;
49
+
50
+ return NOKOGIRI_STR_NEW2(node->prefix);
51
+ }
52
+
53
+ VALUE cNokogiriXmlElementDecl;
54
+
55
+ void init_xml_element_decl()
56
+ {
57
+ VALUE nokogiri = rb_define_module("Nokogiri");
58
+ VALUE xml = rb_define_module_under(nokogiri, "XML");
59
+ VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
60
+ VALUE klass = rb_define_class_under(xml, "ElementDecl", node);
61
+
62
+ cNokogiriXmlElementDecl = klass;
63
+
64
+ rb_define_method(klass, "element_type", element_type, 0);
65
+ rb_define_method(klass, "content", content, 0);
66
+ rb_define_method(klass, "prefix", prefix, 0);
67
+
68
+ id_document = rb_intern("document");
69
+ }
@@ -0,0 +1,9 @@
1
+ #ifndef NOKOGIRI_XML_ELEMENT_DECL
2
+ #define NOKOGIRI_XML_ELEMENT_DECL
3
+
4
+ #include <nokogiri.h>
5
+
6
+ void init_xml_element_decl();
7
+
8
+ extern VALUE cNokogiriXmlElementDecl;
9
+ #endif
@@ -0,0 +1,79 @@
1
+ #include <xml_encoding_handler.h>
2
+
3
+ /*
4
+ * call-seq: Nokogiri::EncodingHandler.[](name)
5
+ *
6
+ * Get the encoding handler for +name+
7
+ */
8
+ static VALUE get(VALUE klass, VALUE key)
9
+ {
10
+ xmlCharEncodingHandlerPtr handler;
11
+
12
+ handler = xmlFindCharEncodingHandler(StringValueCStr(key));
13
+ if(handler)
14
+ return Data_Wrap_Struct(klass, NULL, NULL, handler);
15
+
16
+ return Qnil;
17
+ }
18
+
19
+ /*
20
+ * call-seq: Nokogiri::EncodingHandler.delete(name)
21
+ *
22
+ * Delete the encoding alias named +name+
23
+ */
24
+ static VALUE delete(VALUE klass, VALUE name)
25
+ {
26
+ if(xmlDelEncodingAlias(StringValueCStr(name))) return Qnil;
27
+
28
+ return Qtrue;
29
+ }
30
+
31
+ /*
32
+ * call-seq: Nokogiri::EncodingHandler.alias(from, to)
33
+ *
34
+ * Alias encoding handler with name +from+ to name +to+
35
+ */
36
+ static VALUE alias(VALUE klass, VALUE from, VALUE to)
37
+ {
38
+ xmlAddEncodingAlias(StringValueCStr(from), StringValueCStr(to));
39
+
40
+ return to;
41
+ }
42
+
43
+ /*
44
+ * call-seq: Nokogiri::EncodingHandler.clear_aliases!
45
+ *
46
+ * Remove all encoding aliases.
47
+ */
48
+ static VALUE clear_aliases(VALUE klass)
49
+ {
50
+ xmlCleanupEncodingAliases();
51
+
52
+ return klass;
53
+ }
54
+
55
+ /*
56
+ * call-seq: name
57
+ *
58
+ * Get the name of this EncodingHandler
59
+ */
60
+ static VALUE name(VALUE self)
61
+ {
62
+ xmlCharEncodingHandlerPtr handler;
63
+
64
+ Data_Get_Struct(self, xmlCharEncodingHandler, handler);
65
+
66
+ return NOKOGIRI_STR_NEW2(handler->name);
67
+ }
68
+
69
+ void init_xml_encoding_handler()
70
+ {
71
+ VALUE nokogiri = rb_define_module("Nokogiri");
72
+ VALUE klass = rb_define_class_under(nokogiri, "EncodingHandler", rb_cObject);
73
+
74
+ rb_define_singleton_method(klass, "[]", get, 1);
75
+ rb_define_singleton_method(klass, "delete", delete, 1);
76
+ rb_define_singleton_method(klass, "alias", alias, 2);
77
+ rb_define_singleton_method(klass, "clear_aliases!", clear_aliases, 0);
78
+ rb_define_method(klass, "name", name, 0);
79
+ }
@@ -0,0 +1,8 @@
1
+ #ifndef NOKOGIRI_XML_ENCODING_HANDLER
2
+ #define NOKOGIRI_XML_ENCODING_HANDLER
3
+
4
+ #include <nokogiri.h>
5
+
6
+ void init_xml_encoding_handler();
7
+
8
+ #endif
@@ -0,0 +1,110 @@
1
+ #include <xml_entity_decl.h>
2
+
3
+ /*
4
+ * call-seq:
5
+ * original_content
6
+ *
7
+ * Get the original_content before ref substitution
8
+ */
9
+ static VALUE original_content(VALUE self)
10
+ {
11
+ xmlEntityPtr node;
12
+ Data_Get_Struct(self, xmlEntity, node);
13
+
14
+ if(!node->orig) return Qnil;
15
+
16
+ return NOKOGIRI_STR_NEW2(node->orig);
17
+ }
18
+
19
+ /*
20
+ * call-seq:
21
+ * content
22
+ *
23
+ * Get the content
24
+ */
25
+ static VALUE get_content(VALUE self)
26
+ {
27
+ xmlEntityPtr node;
28
+ Data_Get_Struct(self, xmlEntity, node);
29
+
30
+ if(!node->content) return Qnil;
31
+
32
+ return NOKOGIRI_STR_NEW(node->content, node->length);
33
+ }
34
+
35
+ /*
36
+ * call-seq:
37
+ * entity_type
38
+ *
39
+ * Get the entity type
40
+ */
41
+ static VALUE entity_type(VALUE self)
42
+ {
43
+ xmlEntityPtr node;
44
+ Data_Get_Struct(self, xmlEntity, node);
45
+
46
+ return INT2NUM((int)node->etype);
47
+ }
48
+
49
+ /*
50
+ * call-seq:
51
+ * external_id
52
+ *
53
+ * Get the external identifier for PUBLIC
54
+ */
55
+ static VALUE external_id(VALUE self)
56
+ {
57
+ xmlEntityPtr node;
58
+ Data_Get_Struct(self, xmlEntity, node);
59
+
60
+ if(!node->ExternalID) return Qnil;
61
+
62
+ return NOKOGIRI_STR_NEW2(node->ExternalID);
63
+ }
64
+
65
+ /*
66
+ * call-seq:
67
+ * system_id
68
+ *
69
+ * Get the URI for a SYSTEM or PUBLIC Entity
70
+ */
71
+ static VALUE system_id(VALUE self)
72
+ {
73
+ xmlEntityPtr node;
74
+ Data_Get_Struct(self, xmlEntity, node);
75
+
76
+ if(!node->SystemID) return Qnil;
77
+
78
+ return NOKOGIRI_STR_NEW2(node->SystemID);
79
+ }
80
+
81
+ VALUE cNokogiriXmlEntityDecl;
82
+
83
+ void init_xml_entity_decl()
84
+ {
85
+ VALUE nokogiri = rb_define_module("Nokogiri");
86
+ VALUE xml = rb_define_module_under(nokogiri, "XML");
87
+ VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
88
+ VALUE klass = rb_define_class_under(xml, "EntityDecl", node);
89
+
90
+ cNokogiriXmlEntityDecl = klass;
91
+
92
+ rb_define_method(klass, "original_content", original_content, 0);
93
+ rb_define_method(klass, "content", get_content, 0);
94
+ rb_define_method(klass, "entity_type", entity_type, 0);
95
+ rb_define_method(klass, "external_id", external_id, 0);
96
+ rb_define_method(klass, "system_id", system_id, 0);
97
+
98
+ rb_const_set(cNokogiriXmlEntityDecl, rb_intern("INTERNAL_GENERAL"),
99
+ INT2NUM(XML_INTERNAL_GENERAL_ENTITY));
100
+ rb_const_set(cNokogiriXmlEntityDecl, rb_intern("EXTERNAL_GENERAL_PARSED"),
101
+ INT2NUM(XML_EXTERNAL_GENERAL_PARSED_ENTITY));
102
+ rb_const_set(cNokogiriXmlEntityDecl, rb_intern("EXTERNAL_GENERAL_UNPARSED"),
103
+ INT2NUM(XML_EXTERNAL_GENERAL_UNPARSED_ENTITY));
104
+ rb_const_set(cNokogiriXmlEntityDecl, rb_intern("INTERNAL_PARAMETER"),
105
+ INT2NUM(XML_INTERNAL_PARAMETER_ENTITY));
106
+ rb_const_set(cNokogiriXmlEntityDecl, rb_intern("EXTERNAL_PARAMETER"),
107
+ INT2NUM(XML_EXTERNAL_PARAMETER_ENTITY));
108
+ rb_const_set(cNokogiriXmlEntityDecl, rb_intern("INTERNAL_PREDEFINED"),
109
+ INT2NUM(XML_INTERNAL_PREDEFINED_ENTITY));
110
+ }
@@ -0,0 +1,10 @@
1
+ #ifndef NOKOGIRI_XML_ENTITY_DECL
2
+ #define NOKOGIRI_XML_ENTITY_DECL
3
+
4
+ #include <nokogiri.h>
5
+
6
+ void init_xml_entity_decl();
7
+
8
+ extern VALUE cNokogiriXmlEntityDecl;
9
+ #endif
10
+
@@ -0,0 +1,52 @@
1
+ #include <xml_entity_reference.h>
2
+
3
+ /*
4
+ * call-seq:
5
+ * new(document, content)
6
+ *
7
+ * Create a new EntityReference element on the +document+ with +name+
8
+ */
9
+ static VALUE new(int argc, VALUE *argv, VALUE klass)
10
+ {
11
+ xmlDocPtr xml_doc;
12
+ xmlNodePtr node;
13
+ VALUE document;
14
+ VALUE name;
15
+ VALUE rest;
16
+ VALUE rb_node;
17
+
18
+ rb_scan_args(argc, argv, "2*", &document, &name, &rest);
19
+
20
+ Data_Get_Struct(document, xmlDoc, xml_doc);
21
+
22
+ node = xmlNewReference(
23
+ xml_doc,
24
+ (const xmlChar *)StringValueCStr(name)
25
+ );
26
+
27
+ nokogiri_root_node(node);
28
+
29
+ rb_node = Nokogiri_wrap_xml_node(klass, node);
30
+ rb_obj_call_init(rb_node, argc, argv);
31
+
32
+ if(rb_block_given_p()) rb_yield(rb_node);
33
+
34
+ return rb_node;
35
+ }
36
+
37
+ VALUE cNokogiriXmlEntityReference;
38
+ void init_xml_entity_reference()
39
+ {
40
+ VALUE nokogiri = rb_define_module("Nokogiri");
41
+ VALUE xml = rb_define_module_under(nokogiri, "XML");
42
+ VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
43
+
44
+ /*
45
+ * EntityReference represents an EntityReference node in an xml document.
46
+ */
47
+ VALUE klass = rb_define_class_under(xml, "EntityReference", node);
48
+
49
+ cNokogiriXmlEntityReference = klass;
50
+
51
+ rb_define_singleton_method(klass, "new", new, -1);
52
+ }
@@ -0,0 +1,9 @@
1
+ #ifndef NOKOGIRI_XML_ENTITY_REFERENCE
2
+ #define NOKOGIRI_XML_ENTITY_REFERENCE
3
+
4
+ #include <nokogiri.h>
5
+
6
+ void init_xml_entity_reference();
7
+
8
+ extern VALUE cNokogiriXmlEntityReference;
9
+ #endif