nokogiri 1.16.7-aarch64-linux → 1.18.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (208) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +11 -21
  3. data/LICENSE-DEPENDENCIES.md +6 -6
  4. data/README.md +8 -5
  5. data/dependencies.yml +6 -6
  6. data/ext/nokogiri/extconf.rb +188 -142
  7. data/ext/nokogiri/gumbo.c +69 -53
  8. data/ext/nokogiri/html4_document.c +10 -4
  9. data/ext/nokogiri/html4_element_description.c +18 -18
  10. data/ext/nokogiri/html4_sax_parser.c +40 -0
  11. data/ext/nokogiri/html4_sax_parser_context.c +48 -58
  12. data/ext/nokogiri/html4_sax_push_parser.c +25 -24
  13. data/ext/nokogiri/libxml2_polyfill.c +114 -0
  14. data/ext/nokogiri/nokogiri.c +9 -2
  15. data/ext/nokogiri/nokogiri.h +18 -33
  16. data/ext/nokogiri/xml_attr.c +1 -1
  17. data/ext/nokogiri/xml_cdata.c +2 -10
  18. data/ext/nokogiri/xml_comment.c +3 -8
  19. data/ext/nokogiri/xml_document.c +163 -156
  20. data/ext/nokogiri/xml_document_fragment.c +10 -25
  21. data/ext/nokogiri/xml_dtd.c +1 -1
  22. data/ext/nokogiri/xml_element_content.c +9 -9
  23. data/ext/nokogiri/xml_encoding_handler.c +4 -4
  24. data/ext/nokogiri/xml_namespace.c +6 -6
  25. data/ext/nokogiri/xml_node.c +141 -104
  26. data/ext/nokogiri/xml_node_set.c +46 -44
  27. data/ext/nokogiri/xml_reader.c +54 -58
  28. data/ext/nokogiri/xml_relax_ng.c +35 -56
  29. data/ext/nokogiri/xml_sax_parser.c +156 -88
  30. data/ext/nokogiri/xml_sax_parser_context.c +219 -131
  31. data/ext/nokogiri/xml_sax_push_parser.c +68 -49
  32. data/ext/nokogiri/xml_schema.c +50 -85
  33. data/ext/nokogiri/xml_syntax_error.c +19 -11
  34. data/ext/nokogiri/xml_text.c +2 -4
  35. data/ext/nokogiri/xml_xpath_context.c +103 -100
  36. data/ext/nokogiri/xslt_stylesheet.c +8 -8
  37. data/gumbo-parser/src/Makefile +34 -0
  38. data/gumbo-parser/src/README.md +41 -0
  39. data/gumbo-parser/src/ascii.c +75 -0
  40. data/gumbo-parser/src/ascii.h +115 -0
  41. data/gumbo-parser/src/attribute.c +42 -0
  42. data/gumbo-parser/src/attribute.h +17 -0
  43. data/gumbo-parser/src/char_ref.c +22225 -0
  44. data/gumbo-parser/src/char_ref.h +29 -0
  45. data/gumbo-parser/src/char_ref.rl +2154 -0
  46. data/gumbo-parser/src/error.c +658 -0
  47. data/gumbo-parser/src/error.h +152 -0
  48. data/gumbo-parser/src/foreign_attrs.c +103 -0
  49. data/gumbo-parser/src/foreign_attrs.gperf +27 -0
  50. data/gumbo-parser/src/insertion_mode.h +33 -0
  51. data/gumbo-parser/src/macros.h +91 -0
  52. data/gumbo-parser/src/nokogiri_gumbo.h +953 -0
  53. data/gumbo-parser/src/parser.c +4932 -0
  54. data/gumbo-parser/src/parser.h +41 -0
  55. data/gumbo-parser/src/replacement.h +33 -0
  56. data/gumbo-parser/src/string_buffer.c +103 -0
  57. data/gumbo-parser/src/string_buffer.h +68 -0
  58. data/gumbo-parser/src/string_piece.c +48 -0
  59. data/gumbo-parser/src/svg_attrs.c +174 -0
  60. data/gumbo-parser/src/svg_attrs.gperf +77 -0
  61. data/gumbo-parser/src/svg_tags.c +137 -0
  62. data/gumbo-parser/src/svg_tags.gperf +55 -0
  63. data/gumbo-parser/src/tag.c +223 -0
  64. data/gumbo-parser/src/tag_lookup.c +382 -0
  65. data/gumbo-parser/src/tag_lookup.gperf +170 -0
  66. data/gumbo-parser/src/tag_lookup.h +13 -0
  67. data/gumbo-parser/src/token_buffer.c +79 -0
  68. data/gumbo-parser/src/token_buffer.h +71 -0
  69. data/gumbo-parser/src/token_type.h +17 -0
  70. data/gumbo-parser/src/tokenizer.c +3464 -0
  71. data/gumbo-parser/src/tokenizer.h +112 -0
  72. data/gumbo-parser/src/tokenizer_states.h +339 -0
  73. data/gumbo-parser/src/utf8.c +245 -0
  74. data/gumbo-parser/src/utf8.h +164 -0
  75. data/gumbo-parser/src/util.c +66 -0
  76. data/gumbo-parser/src/util.h +34 -0
  77. data/gumbo-parser/src/vector.c +111 -0
  78. data/gumbo-parser/src/vector.h +45 -0
  79. data/lib/nokogiri/class_resolver.rb +1 -1
  80. data/lib/nokogiri/css/node.rb +6 -2
  81. data/lib/nokogiri/css/parser.rb +6 -4
  82. data/lib/nokogiri/css/parser.y +2 -2
  83. data/lib/nokogiri/css/parser_extras.rb +6 -66
  84. data/lib/nokogiri/css/selector_cache.rb +38 -0
  85. data/lib/nokogiri/css/tokenizer.rb +4 -4
  86. data/lib/nokogiri/css/tokenizer.rex +9 -8
  87. data/lib/nokogiri/css/xpath_visitor.rb +43 -6
  88. data/lib/nokogiri/css.rb +86 -20
  89. data/lib/nokogiri/decorators/slop.rb +3 -5
  90. data/lib/nokogiri/encoding_handler.rb +2 -2
  91. data/lib/nokogiri/html4/document.rb +44 -23
  92. data/lib/nokogiri/html4/document_fragment.rb +124 -12
  93. data/lib/nokogiri/html4/encoding_reader.rb +1 -1
  94. data/lib/nokogiri/html4/sax/parser.rb +23 -38
  95. data/lib/nokogiri/html4/sax/parser_context.rb +4 -9
  96. data/lib/nokogiri/html4.rb +9 -14
  97. data/lib/nokogiri/html5/builder.rb +40 -0
  98. data/lib/nokogiri/html5/document.rb +61 -30
  99. data/lib/nokogiri/html5/document_fragment.rb +130 -20
  100. data/lib/nokogiri/html5/node.rb +4 -4
  101. data/lib/nokogiri/html5.rb +114 -72
  102. data/lib/nokogiri/version/constant.rb +1 -1
  103. data/lib/nokogiri/xml/builder.rb +8 -1
  104. data/lib/nokogiri/xml/document.rb +70 -26
  105. data/lib/nokogiri/xml/document_fragment.rb +84 -13
  106. data/lib/nokogiri/xml/node.rb +82 -11
  107. data/lib/nokogiri/xml/node_set.rb +9 -7
  108. data/lib/nokogiri/xml/parse_options.rb +1 -1
  109. data/lib/nokogiri/xml/pp/node.rb +6 -1
  110. data/lib/nokogiri/xml/reader.rb +46 -13
  111. data/lib/nokogiri/xml/relax_ng.rb +57 -20
  112. data/lib/nokogiri/xml/sax/document.rb +174 -83
  113. data/lib/nokogiri/xml/sax/parser.rb +115 -41
  114. data/lib/nokogiri/xml/sax/parser_context.rb +116 -8
  115. data/lib/nokogiri/xml/sax/push_parser.rb +3 -0
  116. data/lib/nokogiri/xml/sax.rb +48 -0
  117. data/lib/nokogiri/xml/schema.rb +112 -45
  118. data/lib/nokogiri/xml/searchable.rb +38 -42
  119. data/lib/nokogiri/xml/syntax_error.rb +22 -0
  120. data/lib/nokogiri/xml/xpath_context.rb +14 -3
  121. data/lib/nokogiri/xml.rb +13 -24
  122. data/lib/nokogiri/xslt.rb +3 -9
  123. data/lib/xsd/xmlparser/nokogiri.rb +3 -4
  124. data/patches/libxml2/0001-Remove-script-macro-support.patch +40 -0
  125. data/patches/libxml2/0002-Update-entities-to-remove-handling-of-ssi.patch +44 -0
  126. data/patches/libxml2/0009-allow-wildcard-namespaces.patch +77 -0
  127. data/patches/libxml2/0010-update-config.guess-and-config.sub-for-libxml2.patch +224 -0
  128. data/patches/libxml2/0011-rip-out-libxml2-s-libc_single_threaded-support.patch +30 -0
  129. data/patches/libxml2/0019-xpath-Use-separate-static-hash-table-for-standard-fu.patch +244 -0
  130. data/patches/libxslt/0001-update-config.guess-and-config.sub-for-libxslt.patch +224 -0
  131. data/ports/archives/libxml2-2.13.6.tar.xz +0 -0
  132. data/ports/archives/libxslt-1.1.42.tar.xz +0 -0
  133. metadata +78 -89
  134. data/ext/nokogiri/include/libexslt/exslt.h +0 -108
  135. data/ext/nokogiri/include/libexslt/exsltconfig.h +0 -70
  136. data/ext/nokogiri/include/libexslt/exsltexports.h +0 -63
  137. data/ext/nokogiri/include/libxml2/libxml/HTMLparser.h +0 -343
  138. data/ext/nokogiri/include/libxml2/libxml/HTMLtree.h +0 -147
  139. data/ext/nokogiri/include/libxml2/libxml/SAX.h +0 -202
  140. data/ext/nokogiri/include/libxml2/libxml/SAX2.h +0 -171
  141. data/ext/nokogiri/include/libxml2/libxml/c14n.h +0 -126
  142. data/ext/nokogiri/include/libxml2/libxml/catalog.h +0 -182
  143. data/ext/nokogiri/include/libxml2/libxml/chvalid.h +0 -230
  144. data/ext/nokogiri/include/libxml2/libxml/debugXML.h +0 -217
  145. data/ext/nokogiri/include/libxml2/libxml/dict.h +0 -82
  146. data/ext/nokogiri/include/libxml2/libxml/encoding.h +0 -235
  147. data/ext/nokogiri/include/libxml2/libxml/entities.h +0 -155
  148. data/ext/nokogiri/include/libxml2/libxml/globals.h +0 -41
  149. data/ext/nokogiri/include/libxml2/libxml/hash.h +0 -232
  150. data/ext/nokogiri/include/libxml2/libxml/list.h +0 -137
  151. data/ext/nokogiri/include/libxml2/libxml/nanoftp.h +0 -186
  152. data/ext/nokogiri/include/libxml2/libxml/nanohttp.h +0 -81
  153. data/ext/nokogiri/include/libxml2/libxml/parser.h +0 -1384
  154. data/ext/nokogiri/include/libxml2/libxml/parserInternals.h +0 -663
  155. data/ext/nokogiri/include/libxml2/libxml/pattern.h +0 -100
  156. data/ext/nokogiri/include/libxml2/libxml/relaxng.h +0 -219
  157. data/ext/nokogiri/include/libxml2/libxml/schemasInternals.h +0 -959
  158. data/ext/nokogiri/include/libxml2/libxml/schematron.h +0 -143
  159. data/ext/nokogiri/include/libxml2/libxml/threads.h +0 -87
  160. data/ext/nokogiri/include/libxml2/libxml/tree.h +0 -1362
  161. data/ext/nokogiri/include/libxml2/libxml/uri.h +0 -95
  162. data/ext/nokogiri/include/libxml2/libxml/valid.h +0 -450
  163. data/ext/nokogiri/include/libxml2/libxml/xinclude.h +0 -129
  164. data/ext/nokogiri/include/libxml2/libxml/xlink.h +0 -189
  165. data/ext/nokogiri/include/libxml2/libxml/xmlIO.h +0 -421
  166. data/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +0 -146
  167. data/ext/nokogiri/include/libxml2/libxml/xmlerror.h +0 -948
  168. data/ext/nokogiri/include/libxml2/libxml/xmlexports.h +0 -50
  169. data/ext/nokogiri/include/libxml2/libxml/xmlmemory.h +0 -225
  170. data/ext/nokogiri/include/libxml2/libxml/xmlmodule.h +0 -57
  171. data/ext/nokogiri/include/libxml2/libxml/xmlreader.h +0 -434
  172. data/ext/nokogiri/include/libxml2/libxml/xmlregexp.h +0 -215
  173. data/ext/nokogiri/include/libxml2/libxml/xmlsave.h +0 -97
  174. data/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +0 -249
  175. data/ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h +0 -152
  176. data/ext/nokogiri/include/libxml2/libxml/xmlstring.h +0 -140
  177. data/ext/nokogiri/include/libxml2/libxml/xmlunicode.h +0 -202
  178. data/ext/nokogiri/include/libxml2/libxml/xmlversion.h +0 -511
  179. data/ext/nokogiri/include/libxml2/libxml/xmlwriter.h +0 -488
  180. data/ext/nokogiri/include/libxml2/libxml/xpath.h +0 -575
  181. data/ext/nokogiri/include/libxml2/libxml/xpathInternals.h +0 -633
  182. data/ext/nokogiri/include/libxml2/libxml/xpointer.h +0 -138
  183. data/ext/nokogiri/include/libxslt/attributes.h +0 -39
  184. data/ext/nokogiri/include/libxslt/documents.h +0 -93
  185. data/ext/nokogiri/include/libxslt/extensions.h +0 -262
  186. data/ext/nokogiri/include/libxslt/extra.h +0 -72
  187. data/ext/nokogiri/include/libxslt/functions.h +0 -78
  188. data/ext/nokogiri/include/libxslt/imports.h +0 -75
  189. data/ext/nokogiri/include/libxslt/keys.h +0 -53
  190. data/ext/nokogiri/include/libxslt/namespaces.h +0 -68
  191. data/ext/nokogiri/include/libxslt/numbersInternals.h +0 -73
  192. data/ext/nokogiri/include/libxslt/pattern.h +0 -84
  193. data/ext/nokogiri/include/libxslt/preproc.h +0 -43
  194. data/ext/nokogiri/include/libxslt/security.h +0 -104
  195. data/ext/nokogiri/include/libxslt/templates.h +0 -77
  196. data/ext/nokogiri/include/libxslt/transform.h +0 -207
  197. data/ext/nokogiri/include/libxslt/variables.h +0 -118
  198. data/ext/nokogiri/include/libxslt/xslt.h +0 -110
  199. data/ext/nokogiri/include/libxslt/xsltInternals.h +0 -1992
  200. data/ext/nokogiri/include/libxslt/xsltconfig.h +0 -179
  201. data/ext/nokogiri/include/libxslt/xsltexports.h +0 -64
  202. data/ext/nokogiri/include/libxslt/xsltlocale.h +0 -44
  203. data/ext/nokogiri/include/libxslt/xsltutils.h +0 -343
  204. data/ext/nokogiri/libxml2_backwards_compat.c +0 -121
  205. data/lib/nokogiri/3.0/nokogiri.so +0 -0
  206. data/lib/nokogiri/3.1/nokogiri.so +0 -0
  207. data/lib/nokogiri/3.2/nokogiri.so +0 -0
  208. data/lib/nokogiri/3.3/nokogiri.so +0 -0
@@ -1,230 +0,0 @@
1
- /*
2
- * Summary: Unicode character range checking
3
- * Description: this module exports interfaces for the character
4
- * range validation APIs
5
- *
6
- * This file is automatically generated from the cvs source
7
- * definition files using the genChRanges.py Python script
8
- *
9
- * Generation date: Mon Mar 27 11:09:48 2006
10
- * Sources: chvalid.def
11
- * Author: William Brack <wbrack@mmm.com.hk>
12
- */
13
-
14
- #ifndef __XML_CHVALID_H__
15
- #define __XML_CHVALID_H__
16
-
17
- #include <libxml/xmlversion.h>
18
- #include <libxml/xmlstring.h>
19
-
20
- #ifdef __cplusplus
21
- extern "C" {
22
- #endif
23
-
24
- /*
25
- * Define our typedefs and structures
26
- *
27
- */
28
- typedef struct _xmlChSRange xmlChSRange;
29
- typedef xmlChSRange *xmlChSRangePtr;
30
- struct _xmlChSRange {
31
- unsigned short low;
32
- unsigned short high;
33
- };
34
-
35
- typedef struct _xmlChLRange xmlChLRange;
36
- typedef xmlChLRange *xmlChLRangePtr;
37
- struct _xmlChLRange {
38
- unsigned int low;
39
- unsigned int high;
40
- };
41
-
42
- typedef struct _xmlChRangeGroup xmlChRangeGroup;
43
- typedef xmlChRangeGroup *xmlChRangeGroupPtr;
44
- struct _xmlChRangeGroup {
45
- int nbShortRange;
46
- int nbLongRange;
47
- const xmlChSRange *shortRange; /* points to an array of ranges */
48
- const xmlChLRange *longRange;
49
- };
50
-
51
- /**
52
- * Range checking routine
53
- */
54
- XMLPUBFUN int
55
- xmlCharInRange(unsigned int val, const xmlChRangeGroup *group);
56
-
57
-
58
- /**
59
- * xmlIsBaseChar_ch:
60
- * @c: char to validate
61
- *
62
- * Automatically generated by genChRanges.py
63
- */
64
- #define xmlIsBaseChar_ch(c) (((0x41 <= (c)) && ((c) <= 0x5a)) || \
65
- ((0x61 <= (c)) && ((c) <= 0x7a)) || \
66
- ((0xc0 <= (c)) && ((c) <= 0xd6)) || \
67
- ((0xd8 <= (c)) && ((c) <= 0xf6)) || \
68
- (0xf8 <= (c)))
69
-
70
- /**
71
- * xmlIsBaseCharQ:
72
- * @c: char to validate
73
- *
74
- * Automatically generated by genChRanges.py
75
- */
76
- #define xmlIsBaseCharQ(c) (((c) < 0x100) ? \
77
- xmlIsBaseChar_ch((c)) : \
78
- xmlCharInRange((c), &xmlIsBaseCharGroup))
79
-
80
- XMLPUBVAR const xmlChRangeGroup xmlIsBaseCharGroup;
81
-
82
- /**
83
- * xmlIsBlank_ch:
84
- * @c: char to validate
85
- *
86
- * Automatically generated by genChRanges.py
87
- */
88
- #define xmlIsBlank_ch(c) (((c) == 0x20) || \
89
- ((0x9 <= (c)) && ((c) <= 0xa)) || \
90
- ((c) == 0xd))
91
-
92
- /**
93
- * xmlIsBlankQ:
94
- * @c: char to validate
95
- *
96
- * Automatically generated by genChRanges.py
97
- */
98
- #define xmlIsBlankQ(c) (((c) < 0x100) ? \
99
- xmlIsBlank_ch((c)) : 0)
100
-
101
-
102
- /**
103
- * xmlIsChar_ch:
104
- * @c: char to validate
105
- *
106
- * Automatically generated by genChRanges.py
107
- */
108
- #define xmlIsChar_ch(c) (((0x9 <= (c)) && ((c) <= 0xa)) || \
109
- ((c) == 0xd) || \
110
- (0x20 <= (c)))
111
-
112
- /**
113
- * xmlIsCharQ:
114
- * @c: char to validate
115
- *
116
- * Automatically generated by genChRanges.py
117
- */
118
- #define xmlIsCharQ(c) (((c) < 0x100) ? \
119
- xmlIsChar_ch((c)) :\
120
- (((0x100 <= (c)) && ((c) <= 0xd7ff)) || \
121
- ((0xe000 <= (c)) && ((c) <= 0xfffd)) || \
122
- ((0x10000 <= (c)) && ((c) <= 0x10ffff))))
123
-
124
- XMLPUBVAR const xmlChRangeGroup xmlIsCharGroup;
125
-
126
- /**
127
- * xmlIsCombiningQ:
128
- * @c: char to validate
129
- *
130
- * Automatically generated by genChRanges.py
131
- */
132
- #define xmlIsCombiningQ(c) (((c) < 0x100) ? \
133
- 0 : \
134
- xmlCharInRange((c), &xmlIsCombiningGroup))
135
-
136
- XMLPUBVAR const xmlChRangeGroup xmlIsCombiningGroup;
137
-
138
- /**
139
- * xmlIsDigit_ch:
140
- * @c: char to validate
141
- *
142
- * Automatically generated by genChRanges.py
143
- */
144
- #define xmlIsDigit_ch(c) (((0x30 <= (c)) && ((c) <= 0x39)))
145
-
146
- /**
147
- * xmlIsDigitQ:
148
- * @c: char to validate
149
- *
150
- * Automatically generated by genChRanges.py
151
- */
152
- #define xmlIsDigitQ(c) (((c) < 0x100) ? \
153
- xmlIsDigit_ch((c)) : \
154
- xmlCharInRange((c), &xmlIsDigitGroup))
155
-
156
- XMLPUBVAR const xmlChRangeGroup xmlIsDigitGroup;
157
-
158
- /**
159
- * xmlIsExtender_ch:
160
- * @c: char to validate
161
- *
162
- * Automatically generated by genChRanges.py
163
- */
164
- #define xmlIsExtender_ch(c) (((c) == 0xb7))
165
-
166
- /**
167
- * xmlIsExtenderQ:
168
- * @c: char to validate
169
- *
170
- * Automatically generated by genChRanges.py
171
- */
172
- #define xmlIsExtenderQ(c) (((c) < 0x100) ? \
173
- xmlIsExtender_ch((c)) : \
174
- xmlCharInRange((c), &xmlIsExtenderGroup))
175
-
176
- XMLPUBVAR const xmlChRangeGroup xmlIsExtenderGroup;
177
-
178
- /**
179
- * xmlIsIdeographicQ:
180
- * @c: char to validate
181
- *
182
- * Automatically generated by genChRanges.py
183
- */
184
- #define xmlIsIdeographicQ(c) (((c) < 0x100) ? \
185
- 0 :\
186
- (((0x4e00 <= (c)) && ((c) <= 0x9fa5)) || \
187
- ((c) == 0x3007) || \
188
- ((0x3021 <= (c)) && ((c) <= 0x3029))))
189
-
190
- XMLPUBVAR const xmlChRangeGroup xmlIsIdeographicGroup;
191
- XMLPUBVAR const unsigned char xmlIsPubidChar_tab[256];
192
-
193
- /**
194
- * xmlIsPubidChar_ch:
195
- * @c: char to validate
196
- *
197
- * Automatically generated by genChRanges.py
198
- */
199
- #define xmlIsPubidChar_ch(c) (xmlIsPubidChar_tab[(c)])
200
-
201
- /**
202
- * xmlIsPubidCharQ:
203
- * @c: char to validate
204
- *
205
- * Automatically generated by genChRanges.py
206
- */
207
- #define xmlIsPubidCharQ(c) (((c) < 0x100) ? \
208
- xmlIsPubidChar_ch((c)) : 0)
209
-
210
- XMLPUBFUN int
211
- xmlIsBaseChar(unsigned int ch);
212
- XMLPUBFUN int
213
- xmlIsBlank(unsigned int ch);
214
- XMLPUBFUN int
215
- xmlIsChar(unsigned int ch);
216
- XMLPUBFUN int
217
- xmlIsCombining(unsigned int ch);
218
- XMLPUBFUN int
219
- xmlIsDigit(unsigned int ch);
220
- XMLPUBFUN int
221
- xmlIsExtender(unsigned int ch);
222
- XMLPUBFUN int
223
- xmlIsIdeographic(unsigned int ch);
224
- XMLPUBFUN int
225
- xmlIsPubidChar(unsigned int ch);
226
-
227
- #ifdef __cplusplus
228
- }
229
- #endif
230
- #endif /* __XML_CHVALID_H__ */
@@ -1,217 +0,0 @@
1
- /*
2
- * Summary: Tree debugging APIs
3
- * Description: Interfaces to a set of routines used for debugging the tree
4
- * produced by the XML parser.
5
- *
6
- * Copy: See Copyright for the status of this software.
7
- *
8
- * Author: Daniel Veillard
9
- */
10
-
11
- #ifndef __DEBUG_XML__
12
- #define __DEBUG_XML__
13
- #include <stdio.h>
14
- #include <libxml/xmlversion.h>
15
- #include <libxml/tree.h>
16
-
17
- #ifdef LIBXML_DEBUG_ENABLED
18
-
19
- #include <libxml/xpath.h>
20
-
21
- #ifdef __cplusplus
22
- extern "C" {
23
- #endif
24
-
25
- /*
26
- * The standard Dump routines.
27
- */
28
- XMLPUBFUN void
29
- xmlDebugDumpString (FILE *output,
30
- const xmlChar *str);
31
- XMLPUBFUN void
32
- xmlDebugDumpAttr (FILE *output,
33
- xmlAttrPtr attr,
34
- int depth);
35
- XMLPUBFUN void
36
- xmlDebugDumpAttrList (FILE *output,
37
- xmlAttrPtr attr,
38
- int depth);
39
- XMLPUBFUN void
40
- xmlDebugDumpOneNode (FILE *output,
41
- xmlNodePtr node,
42
- int depth);
43
- XMLPUBFUN void
44
- xmlDebugDumpNode (FILE *output,
45
- xmlNodePtr node,
46
- int depth);
47
- XMLPUBFUN void
48
- xmlDebugDumpNodeList (FILE *output,
49
- xmlNodePtr node,
50
- int depth);
51
- XMLPUBFUN void
52
- xmlDebugDumpDocumentHead(FILE *output,
53
- xmlDocPtr doc);
54
- XMLPUBFUN void
55
- xmlDebugDumpDocument (FILE *output,
56
- xmlDocPtr doc);
57
- XMLPUBFUN void
58
- xmlDebugDumpDTD (FILE *output,
59
- xmlDtdPtr dtd);
60
- XMLPUBFUN void
61
- xmlDebugDumpEntities (FILE *output,
62
- xmlDocPtr doc);
63
-
64
- /****************************************************************
65
- * *
66
- * Checking routines *
67
- * *
68
- ****************************************************************/
69
-
70
- XMLPUBFUN int
71
- xmlDebugCheckDocument (FILE * output,
72
- xmlDocPtr doc);
73
-
74
- /****************************************************************
75
- * *
76
- * XML shell helpers *
77
- * *
78
- ****************************************************************/
79
-
80
- XMLPUBFUN void
81
- xmlLsOneNode (FILE *output, xmlNodePtr node);
82
- XMLPUBFUN int
83
- xmlLsCountNode (xmlNodePtr node);
84
-
85
- XMLPUBFUN const char *
86
- xmlBoolToText (int boolval);
87
-
88
- /****************************************************************
89
- * *
90
- * The XML shell related structures and functions *
91
- * *
92
- ****************************************************************/
93
-
94
- #ifdef LIBXML_XPATH_ENABLED
95
- /**
96
- * xmlShellReadlineFunc:
97
- * @prompt: a string prompt
98
- *
99
- * This is a generic signature for the XML shell input function.
100
- *
101
- * Returns a string which will be freed by the Shell.
102
- */
103
- typedef char * (* xmlShellReadlineFunc)(char *prompt);
104
-
105
- /**
106
- * xmlShellCtxt:
107
- *
108
- * A debugging shell context.
109
- * TODO: add the defined function tables.
110
- */
111
- typedef struct _xmlShellCtxt xmlShellCtxt;
112
- typedef xmlShellCtxt *xmlShellCtxtPtr;
113
- struct _xmlShellCtxt {
114
- char *filename;
115
- xmlDocPtr doc;
116
- xmlNodePtr node;
117
- xmlXPathContextPtr pctxt;
118
- int loaded;
119
- FILE *output;
120
- xmlShellReadlineFunc input;
121
- };
122
-
123
- /**
124
- * xmlShellCmd:
125
- * @ctxt: a shell context
126
- * @arg: a string argument
127
- * @node: a first node
128
- * @node2: a second node
129
- *
130
- * This is a generic signature for the XML shell functions.
131
- *
132
- * Returns an int, negative returns indicating errors.
133
- */
134
- typedef int (* xmlShellCmd) (xmlShellCtxtPtr ctxt,
135
- char *arg,
136
- xmlNodePtr node,
137
- xmlNodePtr node2);
138
-
139
- XMLPUBFUN void
140
- xmlShellPrintXPathError (int errorType,
141
- const char *arg);
142
- XMLPUBFUN void
143
- xmlShellPrintXPathResult(xmlXPathObjectPtr list);
144
- XMLPUBFUN int
145
- xmlShellList (xmlShellCtxtPtr ctxt,
146
- char *arg,
147
- xmlNodePtr node,
148
- xmlNodePtr node2);
149
- XMLPUBFUN int
150
- xmlShellBase (xmlShellCtxtPtr ctxt,
151
- char *arg,
152
- xmlNodePtr node,
153
- xmlNodePtr node2);
154
- XMLPUBFUN int
155
- xmlShellDir (xmlShellCtxtPtr ctxt,
156
- char *arg,
157
- xmlNodePtr node,
158
- xmlNodePtr node2);
159
- XMLPUBFUN int
160
- xmlShellLoad (xmlShellCtxtPtr ctxt,
161
- char *filename,
162
- xmlNodePtr node,
163
- xmlNodePtr node2);
164
- #ifdef LIBXML_OUTPUT_ENABLED
165
- XMLPUBFUN void
166
- xmlShellPrintNode (xmlNodePtr node);
167
- XMLPUBFUN int
168
- xmlShellCat (xmlShellCtxtPtr ctxt,
169
- char *arg,
170
- xmlNodePtr node,
171
- xmlNodePtr node2);
172
- XMLPUBFUN int
173
- xmlShellWrite (xmlShellCtxtPtr ctxt,
174
- char *filename,
175
- xmlNodePtr node,
176
- xmlNodePtr node2);
177
- XMLPUBFUN int
178
- xmlShellSave (xmlShellCtxtPtr ctxt,
179
- char *filename,
180
- xmlNodePtr node,
181
- xmlNodePtr node2);
182
- #endif /* LIBXML_OUTPUT_ENABLED */
183
- #ifdef LIBXML_VALID_ENABLED
184
- XMLPUBFUN int
185
- xmlShellValidate (xmlShellCtxtPtr ctxt,
186
- char *dtd,
187
- xmlNodePtr node,
188
- xmlNodePtr node2);
189
- #endif /* LIBXML_VALID_ENABLED */
190
- XMLPUBFUN int
191
- xmlShellDu (xmlShellCtxtPtr ctxt,
192
- char *arg,
193
- xmlNodePtr tree,
194
- xmlNodePtr node2);
195
- XMLPUBFUN int
196
- xmlShellPwd (xmlShellCtxtPtr ctxt,
197
- char *buffer,
198
- xmlNodePtr node,
199
- xmlNodePtr node2);
200
-
201
- /*
202
- * The Shell interface.
203
- */
204
- XMLPUBFUN void
205
- xmlShell (xmlDocPtr doc,
206
- char *filename,
207
- xmlShellReadlineFunc input,
208
- FILE *output);
209
-
210
- #endif /* LIBXML_XPATH_ENABLED */
211
-
212
- #ifdef __cplusplus
213
- }
214
- #endif
215
-
216
- #endif /* LIBXML_DEBUG_ENABLED */
217
- #endif /* __DEBUG_XML__ */
@@ -1,82 +0,0 @@
1
- /*
2
- * Summary: string dictionary
3
- * Description: dictionary of reusable strings, just used to avoid allocation
4
- * and freeing operations.
5
- *
6
- * Copy: See Copyright for the status of this software.
7
- *
8
- * Author: Daniel Veillard
9
- */
10
-
11
- #ifndef __XML_DICT_H__
12
- #define __XML_DICT_H__
13
-
14
- #include <stddef.h>
15
- #include <libxml/xmlversion.h>
16
- #include <libxml/xmlstring.h>
17
-
18
- #ifdef __cplusplus
19
- extern "C" {
20
- #endif
21
-
22
- /*
23
- * The dictionary.
24
- */
25
- typedef struct _xmlDict xmlDict;
26
- typedef xmlDict *xmlDictPtr;
27
-
28
- /*
29
- * Initializer
30
- */
31
- XML_DEPRECATED
32
- XMLPUBFUN int xmlInitializeDict(void);
33
-
34
- /*
35
- * Constructor and destructor.
36
- */
37
- XMLPUBFUN xmlDictPtr
38
- xmlDictCreate (void);
39
- XMLPUBFUN size_t
40
- xmlDictSetLimit (xmlDictPtr dict,
41
- size_t limit);
42
- XMLPUBFUN size_t
43
- xmlDictGetUsage (xmlDictPtr dict);
44
- XMLPUBFUN xmlDictPtr
45
- xmlDictCreateSub(xmlDictPtr sub);
46
- XMLPUBFUN int
47
- xmlDictReference(xmlDictPtr dict);
48
- XMLPUBFUN void
49
- xmlDictFree (xmlDictPtr dict);
50
-
51
- /*
52
- * Lookup of entry in the dictionary.
53
- */
54
- XMLPUBFUN const xmlChar *
55
- xmlDictLookup (xmlDictPtr dict,
56
- const xmlChar *name,
57
- int len);
58
- XMLPUBFUN const xmlChar *
59
- xmlDictExists (xmlDictPtr dict,
60
- const xmlChar *name,
61
- int len);
62
- XMLPUBFUN const xmlChar *
63
- xmlDictQLookup (xmlDictPtr dict,
64
- const xmlChar *prefix,
65
- const xmlChar *name);
66
- XMLPUBFUN int
67
- xmlDictOwns (xmlDictPtr dict,
68
- const xmlChar *str);
69
- XMLPUBFUN int
70
- xmlDictSize (xmlDictPtr dict);
71
-
72
- /*
73
- * Cleanup function
74
- */
75
- XML_DEPRECATED
76
- XMLPUBFUN void
77
- xmlDictCleanup (void);
78
-
79
- #ifdef __cplusplus
80
- }
81
- #endif
82
- #endif /* ! __XML_DICT_H__ */