nokogiri 1.14.0-arm-linux

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of nokogiri might be problematic. Click here for more details.

Files changed (200) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +38 -0
  3. data/LICENSE-DEPENDENCIES.md +2224 -0
  4. data/LICENSE.md +9 -0
  5. data/README.md +287 -0
  6. data/bin/nokogiri +131 -0
  7. data/dependencies.yml +41 -0
  8. data/ext/nokogiri/depend +38 -0
  9. data/ext/nokogiri/extconf.rb +1082 -0
  10. data/ext/nokogiri/gumbo.c +594 -0
  11. data/ext/nokogiri/html4_document.c +166 -0
  12. data/ext/nokogiri/html4_element_description.c +294 -0
  13. data/ext/nokogiri/html4_entity_lookup.c +37 -0
  14. data/ext/nokogiri/html4_sax_parser_context.c +114 -0
  15. data/ext/nokogiri/html4_sax_push_parser.c +95 -0
  16. data/ext/nokogiri/include/libexslt/exslt.h +108 -0
  17. data/ext/nokogiri/include/libexslt/exsltconfig.h +70 -0
  18. data/ext/nokogiri/include/libexslt/exsltexports.h +63 -0
  19. data/ext/nokogiri/include/libxml2/libxml/HTMLparser.h +306 -0
  20. data/ext/nokogiri/include/libxml2/libxml/HTMLtree.h +147 -0
  21. data/ext/nokogiri/include/libxml2/libxml/SAX.h +204 -0
  22. data/ext/nokogiri/include/libxml2/libxml/SAX2.h +172 -0
  23. data/ext/nokogiri/include/libxml2/libxml/c14n.h +128 -0
  24. data/ext/nokogiri/include/libxml2/libxml/catalog.h +182 -0
  25. data/ext/nokogiri/include/libxml2/libxml/chvalid.h +230 -0
  26. data/ext/nokogiri/include/libxml2/libxml/debugXML.h +217 -0
  27. data/ext/nokogiri/include/libxml2/libxml/dict.h +81 -0
  28. data/ext/nokogiri/include/libxml2/libxml/encoding.h +232 -0
  29. data/ext/nokogiri/include/libxml2/libxml/entities.h +153 -0
  30. data/ext/nokogiri/include/libxml2/libxml/globals.h +499 -0
  31. data/ext/nokogiri/include/libxml2/libxml/hash.h +236 -0
  32. data/ext/nokogiri/include/libxml2/libxml/list.h +137 -0
  33. data/ext/nokogiri/include/libxml2/libxml/nanoftp.h +186 -0
  34. data/ext/nokogiri/include/libxml2/libxml/nanohttp.h +81 -0
  35. data/ext/nokogiri/include/libxml2/libxml/parser.h +1244 -0
  36. data/ext/nokogiri/include/libxml2/libxml/parserInternals.h +656 -0
  37. data/ext/nokogiri/include/libxml2/libxml/pattern.h +100 -0
  38. data/ext/nokogiri/include/libxml2/libxml/relaxng.h +218 -0
  39. data/ext/nokogiri/include/libxml2/libxml/schemasInternals.h +958 -0
  40. data/ext/nokogiri/include/libxml2/libxml/schematron.h +142 -0
  41. data/ext/nokogiri/include/libxml2/libxml/threads.h +91 -0
  42. data/ext/nokogiri/include/libxml2/libxml/tree.h +1312 -0
  43. data/ext/nokogiri/include/libxml2/libxml/uri.h +94 -0
  44. data/ext/nokogiri/include/libxml2/libxml/valid.h +463 -0
  45. data/ext/nokogiri/include/libxml2/libxml/xinclude.h +129 -0
  46. data/ext/nokogiri/include/libxml2/libxml/xlink.h +189 -0
  47. data/ext/nokogiri/include/libxml2/libxml/xmlIO.h +368 -0
  48. data/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +146 -0
  49. data/ext/nokogiri/include/libxml2/libxml/xmlerror.h +947 -0
  50. data/ext/nokogiri/include/libxml2/libxml/xmlexports.h +77 -0
  51. data/ext/nokogiri/include/libxml2/libxml/xmlmemory.h +226 -0
  52. data/ext/nokogiri/include/libxml2/libxml/xmlmodule.h +57 -0
  53. data/ext/nokogiri/include/libxml2/libxml/xmlreader.h +428 -0
  54. data/ext/nokogiri/include/libxml2/libxml/xmlregexp.h +222 -0
  55. data/ext/nokogiri/include/libxml2/libxml/xmlsave.h +88 -0
  56. data/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +246 -0
  57. data/ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h +152 -0
  58. data/ext/nokogiri/include/libxml2/libxml/xmlstring.h +140 -0
  59. data/ext/nokogiri/include/libxml2/libxml/xmlunicode.h +202 -0
  60. data/ext/nokogiri/include/libxml2/libxml/xmlversion.h +503 -0
  61. data/ext/nokogiri/include/libxml2/libxml/xmlwriter.h +488 -0
  62. data/ext/nokogiri/include/libxml2/libxml/xpath.h +575 -0
  63. data/ext/nokogiri/include/libxml2/libxml/xpathInternals.h +632 -0
  64. data/ext/nokogiri/include/libxml2/libxml/xpointer.h +137 -0
  65. data/ext/nokogiri/include/libxslt/attributes.h +38 -0
  66. data/ext/nokogiri/include/libxslt/documents.h +93 -0
  67. data/ext/nokogiri/include/libxslt/extensions.h +262 -0
  68. data/ext/nokogiri/include/libxslt/extra.h +72 -0
  69. data/ext/nokogiri/include/libxslt/functions.h +78 -0
  70. data/ext/nokogiri/include/libxslt/imports.h +75 -0
  71. data/ext/nokogiri/include/libxslt/keys.h +53 -0
  72. data/ext/nokogiri/include/libxslt/namespaces.h +68 -0
  73. data/ext/nokogiri/include/libxslt/numbersInternals.h +73 -0
  74. data/ext/nokogiri/include/libxslt/pattern.h +84 -0
  75. data/ext/nokogiri/include/libxslt/preproc.h +43 -0
  76. data/ext/nokogiri/include/libxslt/security.h +104 -0
  77. data/ext/nokogiri/include/libxslt/templates.h +77 -0
  78. data/ext/nokogiri/include/libxslt/transform.h +207 -0
  79. data/ext/nokogiri/include/libxslt/variables.h +118 -0
  80. data/ext/nokogiri/include/libxslt/xslt.h +110 -0
  81. data/ext/nokogiri/include/libxslt/xsltInternals.h +1982 -0
  82. data/ext/nokogiri/include/libxslt/xsltconfig.h +179 -0
  83. data/ext/nokogiri/include/libxslt/xsltexports.h +64 -0
  84. data/ext/nokogiri/include/libxslt/xsltlocale.h +76 -0
  85. data/ext/nokogiri/include/libxslt/xsltutils.h +310 -0
  86. data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
  87. data/ext/nokogiri/nokogiri.c +260 -0
  88. data/ext/nokogiri/nokogiri.h +235 -0
  89. data/ext/nokogiri/test_global_handlers.c +40 -0
  90. data/ext/nokogiri/xml_attr.c +103 -0
  91. data/ext/nokogiri/xml_attribute_decl.c +70 -0
  92. data/ext/nokogiri/xml_cdata.c +57 -0
  93. data/ext/nokogiri/xml_comment.c +62 -0
  94. data/ext/nokogiri/xml_document.c +689 -0
  95. data/ext/nokogiri/xml_document_fragment.c +44 -0
  96. data/ext/nokogiri/xml_dtd.c +208 -0
  97. data/ext/nokogiri/xml_element_content.c +128 -0
  98. data/ext/nokogiri/xml_element_decl.c +69 -0
  99. data/ext/nokogiri/xml_encoding_handler.c +104 -0
  100. data/ext/nokogiri/xml_entity_decl.c +112 -0
  101. data/ext/nokogiri/xml_entity_reference.c +50 -0
  102. data/ext/nokogiri/xml_namespace.c +186 -0
  103. data/ext/nokogiri/xml_node.c +2425 -0
  104. data/ext/nokogiri/xml_node_set.c +496 -0
  105. data/ext/nokogiri/xml_processing_instruction.c +54 -0
  106. data/ext/nokogiri/xml_reader.c +794 -0
  107. data/ext/nokogiri/xml_relax_ng.c +183 -0
  108. data/ext/nokogiri/xml_sax_parser.c +316 -0
  109. data/ext/nokogiri/xml_sax_parser_context.c +283 -0
  110. data/ext/nokogiri/xml_sax_push_parser.c +166 -0
  111. data/ext/nokogiri/xml_schema.c +282 -0
  112. data/ext/nokogiri/xml_syntax_error.c +85 -0
  113. data/ext/nokogiri/xml_text.c +48 -0
  114. data/ext/nokogiri/xml_xpath_context.c +413 -0
  115. data/ext/nokogiri/xslt_stylesheet.c +363 -0
  116. data/gumbo-parser/CHANGES.md +63 -0
  117. data/gumbo-parser/Makefile +111 -0
  118. data/gumbo-parser/THANKS +27 -0
  119. data/lib/nokogiri/2.7/nokogiri.so +0 -0
  120. data/lib/nokogiri/3.0/nokogiri.so +0 -0
  121. data/lib/nokogiri/3.1/nokogiri.so +0 -0
  122. data/lib/nokogiri/3.2/nokogiri.so +0 -0
  123. data/lib/nokogiri/class_resolver.rb +67 -0
  124. data/lib/nokogiri/css/node.rb +54 -0
  125. data/lib/nokogiri/css/parser.rb +770 -0
  126. data/lib/nokogiri/css/parser.y +277 -0
  127. data/lib/nokogiri/css/parser_extras.rb +96 -0
  128. data/lib/nokogiri/css/syntax_error.rb +9 -0
  129. data/lib/nokogiri/css/tokenizer.rb +155 -0
  130. data/lib/nokogiri/css/tokenizer.rex +56 -0
  131. data/lib/nokogiri/css/xpath_visitor.rb +359 -0
  132. data/lib/nokogiri/css.rb +66 -0
  133. data/lib/nokogiri/decorators/slop.rb +44 -0
  134. data/lib/nokogiri/encoding_handler.rb +57 -0
  135. data/lib/nokogiri/extension.rb +32 -0
  136. data/lib/nokogiri/gumbo.rb +15 -0
  137. data/lib/nokogiri/html.rb +48 -0
  138. data/lib/nokogiri/html4/builder.rb +37 -0
  139. data/lib/nokogiri/html4/document.rb +214 -0
  140. data/lib/nokogiri/html4/document_fragment.rb +54 -0
  141. data/lib/nokogiri/html4/element_description.rb +25 -0
  142. data/lib/nokogiri/html4/element_description_defaults.rb +572 -0
  143. data/lib/nokogiri/html4/encoding_reader.rb +121 -0
  144. data/lib/nokogiri/html4/entity_lookup.rb +15 -0
  145. data/lib/nokogiri/html4/sax/parser.rb +63 -0
  146. data/lib/nokogiri/html4/sax/parser_context.rb +20 -0
  147. data/lib/nokogiri/html4/sax/push_parser.rb +37 -0
  148. data/lib/nokogiri/html4.rb +47 -0
  149. data/lib/nokogiri/html5/document.rb +168 -0
  150. data/lib/nokogiri/html5/document_fragment.rb +90 -0
  151. data/lib/nokogiri/html5/node.rb +98 -0
  152. data/lib/nokogiri/html5.rb +389 -0
  153. data/lib/nokogiri/jruby/dependencies.rb +3 -0
  154. data/lib/nokogiri/jruby/nokogiri_jars.rb +43 -0
  155. data/lib/nokogiri/syntax_error.rb +6 -0
  156. data/lib/nokogiri/version/constant.rb +6 -0
  157. data/lib/nokogiri/version/info.rb +223 -0
  158. data/lib/nokogiri/version.rb +4 -0
  159. data/lib/nokogiri/xml/attr.rb +66 -0
  160. data/lib/nokogiri/xml/attribute_decl.rb +20 -0
  161. data/lib/nokogiri/xml/builder.rb +487 -0
  162. data/lib/nokogiri/xml/cdata.rb +13 -0
  163. data/lib/nokogiri/xml/character_data.rb +9 -0
  164. data/lib/nokogiri/xml/document.rb +471 -0
  165. data/lib/nokogiri/xml/document_fragment.rb +205 -0
  166. data/lib/nokogiri/xml/dtd.rb +34 -0
  167. data/lib/nokogiri/xml/element_content.rb +38 -0
  168. data/lib/nokogiri/xml/element_decl.rb +15 -0
  169. data/lib/nokogiri/xml/entity_decl.rb +21 -0
  170. data/lib/nokogiri/xml/entity_reference.rb +20 -0
  171. data/lib/nokogiri/xml/namespace.rb +58 -0
  172. data/lib/nokogiri/xml/node/save_options.rb +68 -0
  173. data/lib/nokogiri/xml/node.rb +1563 -0
  174. data/lib/nokogiri/xml/node_set.rb +446 -0
  175. data/lib/nokogiri/xml/notation.rb +19 -0
  176. data/lib/nokogiri/xml/parse_options.rb +213 -0
  177. data/lib/nokogiri/xml/pp/character_data.rb +21 -0
  178. data/lib/nokogiri/xml/pp/node.rb +57 -0
  179. data/lib/nokogiri/xml/pp.rb +4 -0
  180. data/lib/nokogiri/xml/processing_instruction.rb +11 -0
  181. data/lib/nokogiri/xml/reader.rb +105 -0
  182. data/lib/nokogiri/xml/relax_ng.rb +38 -0
  183. data/lib/nokogiri/xml/sax/document.rb +167 -0
  184. data/lib/nokogiri/xml/sax/parser.rb +125 -0
  185. data/lib/nokogiri/xml/sax/parser_context.rb +21 -0
  186. data/lib/nokogiri/xml/sax/push_parser.rb +61 -0
  187. data/lib/nokogiri/xml/sax.rb +6 -0
  188. data/lib/nokogiri/xml/schema.rb +73 -0
  189. data/lib/nokogiri/xml/searchable.rb +270 -0
  190. data/lib/nokogiri/xml/syntax_error.rb +72 -0
  191. data/lib/nokogiri/xml/text.rb +11 -0
  192. data/lib/nokogiri/xml/xpath/syntax_error.rb +13 -0
  193. data/lib/nokogiri/xml/xpath.rb +21 -0
  194. data/lib/nokogiri/xml/xpath_context.rb +16 -0
  195. data/lib/nokogiri/xml.rb +76 -0
  196. data/lib/nokogiri/xslt/stylesheet.rb +27 -0
  197. data/lib/nokogiri/xslt.rb +65 -0
  198. data/lib/nokogiri.rb +120 -0
  199. data/lib/xsd/xmlparser/nokogiri.rb +106 -0
  200. metadata +317 -0
@@ -0,0 +1,204 @@
1
+ /*
2
+ * Summary: Old SAX version 1 handler, deprecated
3
+ * Description: DEPRECATED set of SAX version 1 interfaces used to
4
+ * build the DOM tree.
5
+ *
6
+ * Copy: See Copyright for the status of this software.
7
+ *
8
+ * Author: Daniel Veillard
9
+ */
10
+
11
+
12
+ #ifndef __XML_SAX_H__
13
+ #define __XML_SAX_H__
14
+
15
+ #include <stdio.h>
16
+ #include <stdlib.h>
17
+ #include <libxml/xmlversion.h>
18
+ #include <libxml/parser.h>
19
+
20
+ #ifdef LIBXML_LEGACY_ENABLED
21
+
22
+ #ifdef __cplusplus
23
+ extern "C" {
24
+ #endif
25
+ XML_DEPRECATED
26
+ XMLPUBFUN const xmlChar * XMLCALL
27
+ getPublicId (void *ctx);
28
+ XML_DEPRECATED
29
+ XMLPUBFUN const xmlChar * XMLCALL
30
+ getSystemId (void *ctx);
31
+ XML_DEPRECATED
32
+ XMLPUBFUN void XMLCALL
33
+ setDocumentLocator (void *ctx,
34
+ xmlSAXLocatorPtr loc);
35
+
36
+ XML_DEPRECATED
37
+ XMLPUBFUN int XMLCALL
38
+ getLineNumber (void *ctx);
39
+ XML_DEPRECATED
40
+ XMLPUBFUN int XMLCALL
41
+ getColumnNumber (void *ctx);
42
+
43
+ XML_DEPRECATED
44
+ XMLPUBFUN int XMLCALL
45
+ isStandalone (void *ctx);
46
+ XML_DEPRECATED
47
+ XMLPUBFUN int XMLCALL
48
+ hasInternalSubset (void *ctx);
49
+ XML_DEPRECATED
50
+ XMLPUBFUN int XMLCALL
51
+ hasExternalSubset (void *ctx);
52
+
53
+ XML_DEPRECATED
54
+ XMLPUBFUN void XMLCALL
55
+ internalSubset (void *ctx,
56
+ const xmlChar *name,
57
+ const xmlChar *ExternalID,
58
+ const xmlChar *SystemID);
59
+ XML_DEPRECATED
60
+ XMLPUBFUN void XMLCALL
61
+ externalSubset (void *ctx,
62
+ const xmlChar *name,
63
+ const xmlChar *ExternalID,
64
+ const xmlChar *SystemID);
65
+ XML_DEPRECATED
66
+ XMLPUBFUN xmlEntityPtr XMLCALL
67
+ getEntity (void *ctx,
68
+ const xmlChar *name);
69
+ XML_DEPRECATED
70
+ XMLPUBFUN xmlEntityPtr XMLCALL
71
+ getParameterEntity (void *ctx,
72
+ const xmlChar *name);
73
+ XML_DEPRECATED
74
+ XMLPUBFUN xmlParserInputPtr XMLCALL
75
+ resolveEntity (void *ctx,
76
+ const xmlChar *publicId,
77
+ const xmlChar *systemId);
78
+
79
+ XML_DEPRECATED
80
+ XMLPUBFUN void XMLCALL
81
+ entityDecl (void *ctx,
82
+ const xmlChar *name,
83
+ int type,
84
+ const xmlChar *publicId,
85
+ const xmlChar *systemId,
86
+ xmlChar *content);
87
+ XML_DEPRECATED
88
+ XMLPUBFUN void XMLCALL
89
+ attributeDecl (void *ctx,
90
+ const xmlChar *elem,
91
+ const xmlChar *fullname,
92
+ int type,
93
+ int def,
94
+ const xmlChar *defaultValue,
95
+ xmlEnumerationPtr tree);
96
+ XML_DEPRECATED
97
+ XMLPUBFUN void XMLCALL
98
+ elementDecl (void *ctx,
99
+ const xmlChar *name,
100
+ int type,
101
+ xmlElementContentPtr content);
102
+ XML_DEPRECATED
103
+ XMLPUBFUN void XMLCALL
104
+ notationDecl (void *ctx,
105
+ const xmlChar *name,
106
+ const xmlChar *publicId,
107
+ const xmlChar *systemId);
108
+ XML_DEPRECATED
109
+ XMLPUBFUN void XMLCALL
110
+ unparsedEntityDecl (void *ctx,
111
+ const xmlChar *name,
112
+ const xmlChar *publicId,
113
+ const xmlChar *systemId,
114
+ const xmlChar *notationName);
115
+
116
+ XML_DEPRECATED
117
+ XMLPUBFUN void XMLCALL
118
+ startDocument (void *ctx);
119
+ XML_DEPRECATED
120
+ XMLPUBFUN void XMLCALL
121
+ endDocument (void *ctx);
122
+ XML_DEPRECATED
123
+ XMLPUBFUN void XMLCALL
124
+ attribute (void *ctx,
125
+ const xmlChar *fullname,
126
+ const xmlChar *value);
127
+ XML_DEPRECATED
128
+ XMLPUBFUN void XMLCALL
129
+ startElement (void *ctx,
130
+ const xmlChar *fullname,
131
+ const xmlChar **atts);
132
+ XML_DEPRECATED
133
+ XMLPUBFUN void XMLCALL
134
+ endElement (void *ctx,
135
+ const xmlChar *name);
136
+ XML_DEPRECATED
137
+ XMLPUBFUN void XMLCALL
138
+ reference (void *ctx,
139
+ const xmlChar *name);
140
+ XML_DEPRECATED
141
+ XMLPUBFUN void XMLCALL
142
+ characters (void *ctx,
143
+ const xmlChar *ch,
144
+ int len);
145
+ XML_DEPRECATED
146
+ XMLPUBFUN void XMLCALL
147
+ ignorableWhitespace (void *ctx,
148
+ const xmlChar *ch,
149
+ int len);
150
+ XML_DEPRECATED
151
+ XMLPUBFUN void XMLCALL
152
+ processingInstruction (void *ctx,
153
+ const xmlChar *target,
154
+ const xmlChar *data);
155
+ XML_DEPRECATED
156
+ XMLPUBFUN void XMLCALL
157
+ globalNamespace (void *ctx,
158
+ const xmlChar *href,
159
+ const xmlChar *prefix);
160
+ XML_DEPRECATED
161
+ XMLPUBFUN void XMLCALL
162
+ setNamespace (void *ctx,
163
+ const xmlChar *name);
164
+ XML_DEPRECATED
165
+ XMLPUBFUN xmlNsPtr XMLCALL
166
+ getNamespace (void *ctx);
167
+ XML_DEPRECATED
168
+ XMLPUBFUN int XMLCALL
169
+ checkNamespace (void *ctx,
170
+ xmlChar *nameSpace);
171
+ XML_DEPRECATED
172
+ XMLPUBFUN void XMLCALL
173
+ namespaceDecl (void *ctx,
174
+ const xmlChar *href,
175
+ const xmlChar *prefix);
176
+ XML_DEPRECATED
177
+ XMLPUBFUN void XMLCALL
178
+ comment (void *ctx,
179
+ const xmlChar *value);
180
+ XML_DEPRECATED
181
+ XMLPUBFUN void XMLCALL
182
+ cdataBlock (void *ctx,
183
+ const xmlChar *value,
184
+ int len);
185
+
186
+ #ifdef LIBXML_SAX1_ENABLED
187
+ XML_DEPRECATED
188
+ XMLPUBFUN void XMLCALL
189
+ initxmlDefaultSAXHandler (xmlSAXHandlerV1 *hdlr,
190
+ int warning);
191
+ #ifdef LIBXML_HTML_ENABLED
192
+ XML_DEPRECATED
193
+ XMLPUBFUN void XMLCALL
194
+ inithtmlDefaultSAXHandler (xmlSAXHandlerV1 *hdlr);
195
+ #endif
196
+ #endif /* LIBXML_SAX1_ENABLED */
197
+
198
+ #ifdef __cplusplus
199
+ }
200
+ #endif
201
+
202
+ #endif /* LIBXML_LEGACY_ENABLED */
203
+
204
+ #endif /* __XML_SAX_H__ */
@@ -0,0 +1,172 @@
1
+ /*
2
+ * Summary: SAX2 parser interface used to build the DOM tree
3
+ * Description: those are the default SAX2 interfaces used by
4
+ * the library when building DOM tree.
5
+ *
6
+ * Copy: See Copyright for the status of this software.
7
+ *
8
+ * Author: Daniel Veillard
9
+ */
10
+
11
+
12
+ #ifndef __XML_SAX2_H__
13
+ #define __XML_SAX2_H__
14
+
15
+ #include <stdio.h>
16
+ #include <stdlib.h>
17
+ #include <libxml/xmlversion.h>
18
+ #include <libxml/parser.h>
19
+
20
+ #ifdef __cplusplus
21
+ extern "C" {
22
+ #endif
23
+ XMLPUBFUN const xmlChar * XMLCALL
24
+ xmlSAX2GetPublicId (void *ctx);
25
+ XMLPUBFUN const xmlChar * XMLCALL
26
+ xmlSAX2GetSystemId (void *ctx);
27
+ XMLPUBFUN void XMLCALL
28
+ xmlSAX2SetDocumentLocator (void *ctx,
29
+ xmlSAXLocatorPtr loc);
30
+
31
+ XMLPUBFUN int XMLCALL
32
+ xmlSAX2GetLineNumber (void *ctx);
33
+ XMLPUBFUN int XMLCALL
34
+ xmlSAX2GetColumnNumber (void *ctx);
35
+
36
+ XMLPUBFUN int XMLCALL
37
+ xmlSAX2IsStandalone (void *ctx);
38
+ XMLPUBFUN int XMLCALL
39
+ xmlSAX2HasInternalSubset (void *ctx);
40
+ XMLPUBFUN int XMLCALL
41
+ xmlSAX2HasExternalSubset (void *ctx);
42
+
43
+ XMLPUBFUN void XMLCALL
44
+ xmlSAX2InternalSubset (void *ctx,
45
+ const xmlChar *name,
46
+ const xmlChar *ExternalID,
47
+ const xmlChar *SystemID);
48
+ XMLPUBFUN void XMLCALL
49
+ xmlSAX2ExternalSubset (void *ctx,
50
+ const xmlChar *name,
51
+ const xmlChar *ExternalID,
52
+ const xmlChar *SystemID);
53
+ XMLPUBFUN xmlEntityPtr XMLCALL
54
+ xmlSAX2GetEntity (void *ctx,
55
+ const xmlChar *name);
56
+ XMLPUBFUN xmlEntityPtr XMLCALL
57
+ xmlSAX2GetParameterEntity (void *ctx,
58
+ const xmlChar *name);
59
+ XMLPUBFUN xmlParserInputPtr XMLCALL
60
+ xmlSAX2ResolveEntity (void *ctx,
61
+ const xmlChar *publicId,
62
+ const xmlChar *systemId);
63
+
64
+ XMLPUBFUN void XMLCALL
65
+ xmlSAX2EntityDecl (void *ctx,
66
+ const xmlChar *name,
67
+ int type,
68
+ const xmlChar *publicId,
69
+ const xmlChar *systemId,
70
+ xmlChar *content);
71
+ XMLPUBFUN void XMLCALL
72
+ xmlSAX2AttributeDecl (void *ctx,
73
+ const xmlChar *elem,
74
+ const xmlChar *fullname,
75
+ int type,
76
+ int def,
77
+ const xmlChar *defaultValue,
78
+ xmlEnumerationPtr tree);
79
+ XMLPUBFUN void XMLCALL
80
+ xmlSAX2ElementDecl (void *ctx,
81
+ const xmlChar *name,
82
+ int type,
83
+ xmlElementContentPtr content);
84
+ XMLPUBFUN void XMLCALL
85
+ xmlSAX2NotationDecl (void *ctx,
86
+ const xmlChar *name,
87
+ const xmlChar *publicId,
88
+ const xmlChar *systemId);
89
+ XMLPUBFUN void XMLCALL
90
+ xmlSAX2UnparsedEntityDecl (void *ctx,
91
+ const xmlChar *name,
92
+ const xmlChar *publicId,
93
+ const xmlChar *systemId,
94
+ const xmlChar *notationName);
95
+
96
+ XMLPUBFUN void XMLCALL
97
+ xmlSAX2StartDocument (void *ctx);
98
+ XMLPUBFUN void XMLCALL
99
+ xmlSAX2EndDocument (void *ctx);
100
+ #if defined(LIBXML_SAX1_ENABLED) || defined(LIBXML_HTML_ENABLED) || \
101
+ defined(LIBXML_WRITER_ENABLED) || defined(LIBXML_LEGACY_ENABLED)
102
+ XMLPUBFUN void XMLCALL
103
+ xmlSAX2StartElement (void *ctx,
104
+ const xmlChar *fullname,
105
+ const xmlChar **atts);
106
+ XMLPUBFUN void XMLCALL
107
+ xmlSAX2EndElement (void *ctx,
108
+ const xmlChar *name);
109
+ #endif /* LIBXML_SAX1_ENABLED or LIBXML_HTML_ENABLED or LIBXML_LEGACY_ENABLED */
110
+ XMLPUBFUN void XMLCALL
111
+ xmlSAX2StartElementNs (void *ctx,
112
+ const xmlChar *localname,
113
+ const xmlChar *prefix,
114
+ const xmlChar *URI,
115
+ int nb_namespaces,
116
+ const xmlChar **namespaces,
117
+ int nb_attributes,
118
+ int nb_defaulted,
119
+ const xmlChar **attributes);
120
+ XMLPUBFUN void XMLCALL
121
+ xmlSAX2EndElementNs (void *ctx,
122
+ const xmlChar *localname,
123
+ const xmlChar *prefix,
124
+ const xmlChar *URI);
125
+ XMLPUBFUN void XMLCALL
126
+ xmlSAX2Reference (void *ctx,
127
+ const xmlChar *name);
128
+ XMLPUBFUN void XMLCALL
129
+ xmlSAX2Characters (void *ctx,
130
+ const xmlChar *ch,
131
+ int len);
132
+ XMLPUBFUN void XMLCALL
133
+ xmlSAX2IgnorableWhitespace (void *ctx,
134
+ const xmlChar *ch,
135
+ int len);
136
+ XMLPUBFUN void XMLCALL
137
+ xmlSAX2ProcessingInstruction (void *ctx,
138
+ const xmlChar *target,
139
+ const xmlChar *data);
140
+ XMLPUBFUN void XMLCALL
141
+ xmlSAX2Comment (void *ctx,
142
+ const xmlChar *value);
143
+ XMLPUBFUN void XMLCALL
144
+ xmlSAX2CDataBlock (void *ctx,
145
+ const xmlChar *value,
146
+ int len);
147
+
148
+ #ifdef LIBXML_SAX1_ENABLED
149
+ XMLPUBFUN int XMLCALL
150
+ xmlSAXDefaultVersion (int version);
151
+ #endif /* LIBXML_SAX1_ENABLED */
152
+
153
+ XMLPUBFUN int XMLCALL
154
+ xmlSAXVersion (xmlSAXHandler *hdlr,
155
+ int version);
156
+ XMLPUBFUN void XMLCALL
157
+ xmlSAX2InitDefaultSAXHandler (xmlSAXHandler *hdlr,
158
+ int warning);
159
+ #ifdef LIBXML_HTML_ENABLED
160
+ XMLPUBFUN void XMLCALL
161
+ xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr);
162
+ XML_DEPRECATED
163
+ XMLPUBFUN void XMLCALL
164
+ htmlDefaultSAXHandlerInit (void);
165
+ #endif
166
+ XML_DEPRECATED
167
+ XMLPUBFUN void XMLCALL
168
+ xmlDefaultSAXHandlerInit (void);
169
+ #ifdef __cplusplus
170
+ }
171
+ #endif
172
+ #endif /* __XML_SAX2_H__ */
@@ -0,0 +1,128 @@
1
+ /*
2
+ * Summary: Provide Canonical XML and Exclusive XML Canonicalization
3
+ * Description: the c14n modules provides a
4
+ *
5
+ * "Canonical XML" implementation
6
+ * http://www.w3.org/TR/xml-c14n
7
+ *
8
+ * and an
9
+ *
10
+ * "Exclusive XML Canonicalization" implementation
11
+ * http://www.w3.org/TR/xml-exc-c14n
12
+
13
+ * Copy: See Copyright for the status of this software.
14
+ *
15
+ * Author: Aleksey Sanin <aleksey@aleksey.com>
16
+ */
17
+ #ifndef __XML_C14N_H__
18
+ #define __XML_C14N_H__
19
+
20
+ #include <libxml/xmlversion.h>
21
+
22
+ #ifdef LIBXML_C14N_ENABLED
23
+ #ifdef LIBXML_OUTPUT_ENABLED
24
+
25
+ #include <libxml/tree.h>
26
+ #include <libxml/xpath.h>
27
+
28
+ #ifdef __cplusplus
29
+ extern "C" {
30
+ #endif /* __cplusplus */
31
+
32
+ /*
33
+ * XML Canonicalization
34
+ * http://www.w3.org/TR/xml-c14n
35
+ *
36
+ * Exclusive XML Canonicalization
37
+ * http://www.w3.org/TR/xml-exc-c14n
38
+ *
39
+ * Canonical form of an XML document could be created if and only if
40
+ * a) default attributes (if any) are added to all nodes
41
+ * b) all character and parsed entity references are resolved
42
+ * In order to achieve this in libxml2 the document MUST be loaded with
43
+ * following global settings:
44
+ *
45
+ * xmlLoadExtDtdDefaultValue = XML_DETECT_IDS | XML_COMPLETE_ATTRS;
46
+ * xmlSubstituteEntitiesDefault(1);
47
+ *
48
+ * or corresponding parser context setting:
49
+ * xmlParserCtxtPtr ctxt;
50
+ *
51
+ * ...
52
+ * ctxt->loadsubset = XML_DETECT_IDS | XML_COMPLETE_ATTRS;
53
+ * ctxt->replaceEntities = 1;
54
+ * ...
55
+ */
56
+
57
+ /*
58
+ * xmlC14NMode:
59
+ *
60
+ * Predefined values for C14N modes
61
+ *
62
+ */
63
+ typedef enum {
64
+ XML_C14N_1_0 = 0, /* Original C14N 1.0 spec */
65
+ XML_C14N_EXCLUSIVE_1_0 = 1, /* Exclusive C14N 1.0 spec */
66
+ XML_C14N_1_1 = 2 /* C14N 1.1 spec */
67
+ } xmlC14NMode;
68
+
69
+ XMLPUBFUN int XMLCALL
70
+ xmlC14NDocSaveTo (xmlDocPtr doc,
71
+ xmlNodeSetPtr nodes,
72
+ int mode, /* a xmlC14NMode */
73
+ xmlChar **inclusive_ns_prefixes,
74
+ int with_comments,
75
+ xmlOutputBufferPtr buf);
76
+
77
+ XMLPUBFUN int XMLCALL
78
+ xmlC14NDocDumpMemory (xmlDocPtr doc,
79
+ xmlNodeSetPtr nodes,
80
+ int mode, /* a xmlC14NMode */
81
+ xmlChar **inclusive_ns_prefixes,
82
+ int with_comments,
83
+ xmlChar **doc_txt_ptr);
84
+
85
+ XMLPUBFUN int XMLCALL
86
+ xmlC14NDocSave (xmlDocPtr doc,
87
+ xmlNodeSetPtr nodes,
88
+ int mode, /* a xmlC14NMode */
89
+ xmlChar **inclusive_ns_prefixes,
90
+ int with_comments,
91
+ const char* filename,
92
+ int compression);
93
+
94
+
95
+ /**
96
+ * This is the core C14N function
97
+ */
98
+ /**
99
+ * xmlC14NIsVisibleCallback:
100
+ * @user_data: user data
101
+ * @node: the current node
102
+ * @parent: the parent node
103
+ *
104
+ * Signature for a C14N callback on visible nodes
105
+ *
106
+ * Returns 1 if the node should be included
107
+ */
108
+ typedef int (*xmlC14NIsVisibleCallback) (void* user_data,
109
+ xmlNodePtr node,
110
+ xmlNodePtr parent);
111
+
112
+ XMLPUBFUN int XMLCALL
113
+ xmlC14NExecute (xmlDocPtr doc,
114
+ xmlC14NIsVisibleCallback is_visible_callback,
115
+ void* user_data,
116
+ int mode, /* a xmlC14NMode */
117
+ xmlChar **inclusive_ns_prefixes,
118
+ int with_comments,
119
+ xmlOutputBufferPtr buf);
120
+
121
+ #ifdef __cplusplus
122
+ }
123
+ #endif /* __cplusplus */
124
+
125
+ #endif /* LIBXML_OUTPUT_ENABLED */
126
+ #endif /* LIBXML_C14N_ENABLED */
127
+ #endif /* __XML_C14N_H__ */
128
+
@@ -0,0 +1,182 @@
1
+ /**
2
+ * Summary: interfaces to the Catalog handling system
3
+ * Description: the catalog module implements the support for
4
+ * XML Catalogs and SGML catalogs
5
+ *
6
+ * SGML Open Technical Resolution TR9401:1997.
7
+ * http://www.jclark.com/sp/catalog.htm
8
+ *
9
+ * XML Catalogs Working Draft 06 August 2001
10
+ * http://www.oasis-open.org/committees/entity/spec-2001-08-06.html
11
+ *
12
+ * Copy: See Copyright for the status of this software.
13
+ *
14
+ * Author: Daniel Veillard
15
+ */
16
+
17
+ #ifndef __XML_CATALOG_H__
18
+ #define __XML_CATALOG_H__
19
+
20
+ #include <stdio.h>
21
+
22
+ #include <libxml/xmlversion.h>
23
+ #include <libxml/xmlstring.h>
24
+ #include <libxml/tree.h>
25
+
26
+ #ifdef LIBXML_CATALOG_ENABLED
27
+
28
+ #ifdef __cplusplus
29
+ extern "C" {
30
+ #endif
31
+
32
+ /**
33
+ * XML_CATALOGS_NAMESPACE:
34
+ *
35
+ * The namespace for the XML Catalogs elements.
36
+ */
37
+ #define XML_CATALOGS_NAMESPACE \
38
+ (const xmlChar *) "urn:oasis:names:tc:entity:xmlns:xml:catalog"
39
+ /**
40
+ * XML_CATALOG_PI:
41
+ *
42
+ * The specific XML Catalog Processing Instruction name.
43
+ */
44
+ #define XML_CATALOG_PI \
45
+ (const xmlChar *) "oasis-xml-catalog"
46
+
47
+ /*
48
+ * The API is voluntarily limited to general cataloging.
49
+ */
50
+ typedef enum {
51
+ XML_CATA_PREFER_NONE = 0,
52
+ XML_CATA_PREFER_PUBLIC = 1,
53
+ XML_CATA_PREFER_SYSTEM
54
+ } xmlCatalogPrefer;
55
+
56
+ typedef enum {
57
+ XML_CATA_ALLOW_NONE = 0,
58
+ XML_CATA_ALLOW_GLOBAL = 1,
59
+ XML_CATA_ALLOW_DOCUMENT = 2,
60
+ XML_CATA_ALLOW_ALL = 3
61
+ } xmlCatalogAllow;
62
+
63
+ typedef struct _xmlCatalog xmlCatalog;
64
+ typedef xmlCatalog *xmlCatalogPtr;
65
+
66
+ /*
67
+ * Operations on a given catalog.
68
+ */
69
+ XMLPUBFUN xmlCatalogPtr XMLCALL
70
+ xmlNewCatalog (int sgml);
71
+ XMLPUBFUN xmlCatalogPtr XMLCALL
72
+ xmlLoadACatalog (const char *filename);
73
+ XMLPUBFUN xmlCatalogPtr XMLCALL
74
+ xmlLoadSGMLSuperCatalog (const char *filename);
75
+ XMLPUBFUN int XMLCALL
76
+ xmlConvertSGMLCatalog (xmlCatalogPtr catal);
77
+ XMLPUBFUN int XMLCALL
78
+ xmlACatalogAdd (xmlCatalogPtr catal,
79
+ const xmlChar *type,
80
+ const xmlChar *orig,
81
+ const xmlChar *replace);
82
+ XMLPUBFUN int XMLCALL
83
+ xmlACatalogRemove (xmlCatalogPtr catal,
84
+ const xmlChar *value);
85
+ XMLPUBFUN xmlChar * XMLCALL
86
+ xmlACatalogResolve (xmlCatalogPtr catal,
87
+ const xmlChar *pubID,
88
+ const xmlChar *sysID);
89
+ XMLPUBFUN xmlChar * XMLCALL
90
+ xmlACatalogResolveSystem(xmlCatalogPtr catal,
91
+ const xmlChar *sysID);
92
+ XMLPUBFUN xmlChar * XMLCALL
93
+ xmlACatalogResolvePublic(xmlCatalogPtr catal,
94
+ const xmlChar *pubID);
95
+ XMLPUBFUN xmlChar * XMLCALL
96
+ xmlACatalogResolveURI (xmlCatalogPtr catal,
97
+ const xmlChar *URI);
98
+ #ifdef LIBXML_OUTPUT_ENABLED
99
+ XMLPUBFUN void XMLCALL
100
+ xmlACatalogDump (xmlCatalogPtr catal,
101
+ FILE *out);
102
+ #endif /* LIBXML_OUTPUT_ENABLED */
103
+ XMLPUBFUN void XMLCALL
104
+ xmlFreeCatalog (xmlCatalogPtr catal);
105
+ XMLPUBFUN int XMLCALL
106
+ xmlCatalogIsEmpty (xmlCatalogPtr catal);
107
+
108
+ /*
109
+ * Global operations.
110
+ */
111
+ XMLPUBFUN void XMLCALL
112
+ xmlInitializeCatalog (void);
113
+ XMLPUBFUN int XMLCALL
114
+ xmlLoadCatalog (const char *filename);
115
+ XMLPUBFUN void XMLCALL
116
+ xmlLoadCatalogs (const char *paths);
117
+ XMLPUBFUN void XMLCALL
118
+ xmlCatalogCleanup (void);
119
+ #ifdef LIBXML_OUTPUT_ENABLED
120
+ XMLPUBFUN void XMLCALL
121
+ xmlCatalogDump (FILE *out);
122
+ #endif /* LIBXML_OUTPUT_ENABLED */
123
+ XMLPUBFUN xmlChar * XMLCALL
124
+ xmlCatalogResolve (const xmlChar *pubID,
125
+ const xmlChar *sysID);
126
+ XMLPUBFUN xmlChar * XMLCALL
127
+ xmlCatalogResolveSystem (const xmlChar *sysID);
128
+ XMLPUBFUN xmlChar * XMLCALL
129
+ xmlCatalogResolvePublic (const xmlChar *pubID);
130
+ XMLPUBFUN xmlChar * XMLCALL
131
+ xmlCatalogResolveURI (const xmlChar *URI);
132
+ XMLPUBFUN int XMLCALL
133
+ xmlCatalogAdd (const xmlChar *type,
134
+ const xmlChar *orig,
135
+ const xmlChar *replace);
136
+ XMLPUBFUN int XMLCALL
137
+ xmlCatalogRemove (const xmlChar *value);
138
+ XMLPUBFUN xmlDocPtr XMLCALL
139
+ xmlParseCatalogFile (const char *filename);
140
+ XMLPUBFUN int XMLCALL
141
+ xmlCatalogConvert (void);
142
+
143
+ /*
144
+ * Strictly minimal interfaces for per-document catalogs used
145
+ * by the parser.
146
+ */
147
+ XMLPUBFUN void XMLCALL
148
+ xmlCatalogFreeLocal (void *catalogs);
149
+ XMLPUBFUN void * XMLCALL
150
+ xmlCatalogAddLocal (void *catalogs,
151
+ const xmlChar *URL);
152
+ XMLPUBFUN xmlChar * XMLCALL
153
+ xmlCatalogLocalResolve (void *catalogs,
154
+ const xmlChar *pubID,
155
+ const xmlChar *sysID);
156
+ XMLPUBFUN xmlChar * XMLCALL
157
+ xmlCatalogLocalResolveURI(void *catalogs,
158
+ const xmlChar *URI);
159
+ /*
160
+ * Preference settings.
161
+ */
162
+ XMLPUBFUN int XMLCALL
163
+ xmlCatalogSetDebug (int level);
164
+ XMLPUBFUN xmlCatalogPrefer XMLCALL
165
+ xmlCatalogSetDefaultPrefer(xmlCatalogPrefer prefer);
166
+ XMLPUBFUN void XMLCALL
167
+ xmlCatalogSetDefaults (xmlCatalogAllow allow);
168
+ XMLPUBFUN xmlCatalogAllow XMLCALL
169
+ xmlCatalogGetDefaults (void);
170
+
171
+
172
+ /* DEPRECATED interfaces */
173
+ XMLPUBFUN const xmlChar * XMLCALL
174
+ xmlCatalogGetSystem (const xmlChar *sysID);
175
+ XMLPUBFUN const xmlChar * XMLCALL
176
+ xmlCatalogGetPublic (const xmlChar *pubID);
177
+
178
+ #ifdef __cplusplus
179
+ }
180
+ #endif
181
+ #endif /* LIBXML_CATALOG_ENABLED */
182
+ #endif /* __XML_CATALOG_H__ */