nokogiri 1.18.0.rc1-x86_64-linux-musl

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 (203) 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 +293 -0
  6. data/bin/nokogiri +131 -0
  7. data/dependencies.yml +42 -0
  8. data/ext/nokogiri/depend +38 -0
  9. data/ext/nokogiri/extconf.rb +1173 -0
  10. data/ext/nokogiri/gumbo.c +610 -0
  11. data/ext/nokogiri/html4_document.c +171 -0
  12. data/ext/nokogiri/html4_element_description.c +299 -0
  13. data/ext/nokogiri/html4_entity_lookup.c +37 -0
  14. data/ext/nokogiri/html4_sax_parser.c +40 -0
  15. data/ext/nokogiri/html4_sax_parser_context.c +98 -0
  16. data/ext/nokogiri/html4_sax_push_parser.c +96 -0
  17. data/ext/nokogiri/include/libexslt/exslt.h +108 -0
  18. data/ext/nokogiri/include/libexslt/exsltconfig.h +70 -0
  19. data/ext/nokogiri/include/libexslt/exsltexports.h +63 -0
  20. data/ext/nokogiri/include/libxml2/libxml/HTMLparser.h +336 -0
  21. data/ext/nokogiri/include/libxml2/libxml/HTMLtree.h +147 -0
  22. data/ext/nokogiri/include/libxml2/libxml/SAX.h +202 -0
  23. data/ext/nokogiri/include/libxml2/libxml/SAX2.h +171 -0
  24. data/ext/nokogiri/include/libxml2/libxml/c14n.h +115 -0
  25. data/ext/nokogiri/include/libxml2/libxml/catalog.h +182 -0
  26. data/ext/nokogiri/include/libxml2/libxml/chvalid.h +230 -0
  27. data/ext/nokogiri/include/libxml2/libxml/debugXML.h +217 -0
  28. data/ext/nokogiri/include/libxml2/libxml/dict.h +82 -0
  29. data/ext/nokogiri/include/libxml2/libxml/encoding.h +244 -0
  30. data/ext/nokogiri/include/libxml2/libxml/entities.h +166 -0
  31. data/ext/nokogiri/include/libxml2/libxml/globals.h +41 -0
  32. data/ext/nokogiri/include/libxml2/libxml/hash.h +251 -0
  33. data/ext/nokogiri/include/libxml2/libxml/list.h +137 -0
  34. data/ext/nokogiri/include/libxml2/libxml/nanoftp.h +186 -0
  35. data/ext/nokogiri/include/libxml2/libxml/nanohttp.h +98 -0
  36. data/ext/nokogiri/include/libxml2/libxml/parser.h +1390 -0
  37. data/ext/nokogiri/include/libxml2/libxml/parserInternals.h +671 -0
  38. data/ext/nokogiri/include/libxml2/libxml/pattern.h +106 -0
  39. data/ext/nokogiri/include/libxml2/libxml/relaxng.h +219 -0
  40. data/ext/nokogiri/include/libxml2/libxml/schemasInternals.h +959 -0
  41. data/ext/nokogiri/include/libxml2/libxml/schematron.h +143 -0
  42. data/ext/nokogiri/include/libxml2/libxml/threads.h +87 -0
  43. data/ext/nokogiri/include/libxml2/libxml/tree.h +1382 -0
  44. data/ext/nokogiri/include/libxml2/libxml/uri.h +106 -0
  45. data/ext/nokogiri/include/libxml2/libxml/valid.h +477 -0
  46. data/ext/nokogiri/include/libxml2/libxml/xinclude.h +136 -0
  47. data/ext/nokogiri/include/libxml2/libxml/xlink.h +189 -0
  48. data/ext/nokogiri/include/libxml2/libxml/xmlIO.h +438 -0
  49. data/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +146 -0
  50. data/ext/nokogiri/include/libxml2/libxml/xmlerror.h +962 -0
  51. data/ext/nokogiri/include/libxml2/libxml/xmlexports.h +146 -0
  52. data/ext/nokogiri/include/libxml2/libxml/xmlmemory.h +188 -0
  53. data/ext/nokogiri/include/libxml2/libxml/xmlmodule.h +57 -0
  54. data/ext/nokogiri/include/libxml2/libxml/xmlreader.h +436 -0
  55. data/ext/nokogiri/include/libxml2/libxml/xmlregexp.h +215 -0
  56. data/ext/nokogiri/include/libxml2/libxml/xmlsave.h +102 -0
  57. data/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +249 -0
  58. data/ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h +152 -0
  59. data/ext/nokogiri/include/libxml2/libxml/xmlstring.h +140 -0
  60. data/ext/nokogiri/include/libxml2/libxml/xmlunicode.h +366 -0
  61. data/ext/nokogiri/include/libxml2/libxml/xmlversion.h +347 -0
  62. data/ext/nokogiri/include/libxml2/libxml/xmlwriter.h +489 -0
  63. data/ext/nokogiri/include/libxml2/libxml/xpath.h +579 -0
  64. data/ext/nokogiri/include/libxml2/libxml/xpathInternals.h +633 -0
  65. data/ext/nokogiri/include/libxml2/libxml/xpointer.h +138 -0
  66. data/ext/nokogiri/include/libxslt/attributes.h +39 -0
  67. data/ext/nokogiri/include/libxslt/documents.h +93 -0
  68. data/ext/nokogiri/include/libxslt/extensions.h +262 -0
  69. data/ext/nokogiri/include/libxslt/extra.h +72 -0
  70. data/ext/nokogiri/include/libxslt/functions.h +78 -0
  71. data/ext/nokogiri/include/libxslt/imports.h +75 -0
  72. data/ext/nokogiri/include/libxslt/keys.h +53 -0
  73. data/ext/nokogiri/include/libxslt/namespaces.h +68 -0
  74. data/ext/nokogiri/include/libxslt/numbersInternals.h +73 -0
  75. data/ext/nokogiri/include/libxslt/pattern.h +84 -0
  76. data/ext/nokogiri/include/libxslt/preproc.h +43 -0
  77. data/ext/nokogiri/include/libxslt/security.h +104 -0
  78. data/ext/nokogiri/include/libxslt/templates.h +77 -0
  79. data/ext/nokogiri/include/libxslt/transform.h +207 -0
  80. data/ext/nokogiri/include/libxslt/variables.h +118 -0
  81. data/ext/nokogiri/include/libxslt/xslt.h +110 -0
  82. data/ext/nokogiri/include/libxslt/xsltInternals.h +1995 -0
  83. data/ext/nokogiri/include/libxslt/xsltconfig.h +146 -0
  84. data/ext/nokogiri/include/libxslt/xsltexports.h +64 -0
  85. data/ext/nokogiri/include/libxslt/xsltlocale.h +44 -0
  86. data/ext/nokogiri/include/libxslt/xsltutils.h +343 -0
  87. data/ext/nokogiri/libxml2_polyfill.c +114 -0
  88. data/ext/nokogiri/nokogiri.c +294 -0
  89. data/ext/nokogiri/nokogiri.h +238 -0
  90. data/ext/nokogiri/test_global_handlers.c +40 -0
  91. data/ext/nokogiri/xml_attr.c +103 -0
  92. data/ext/nokogiri/xml_attribute_decl.c +70 -0
  93. data/ext/nokogiri/xml_cdata.c +62 -0
  94. data/ext/nokogiri/xml_comment.c +57 -0
  95. data/ext/nokogiri/xml_document.c +784 -0
  96. data/ext/nokogiri/xml_document_fragment.c +29 -0
  97. data/ext/nokogiri/xml_dtd.c +208 -0
  98. data/ext/nokogiri/xml_element_content.c +131 -0
  99. data/ext/nokogiri/xml_element_decl.c +69 -0
  100. data/ext/nokogiri/xml_encoding_handler.c +112 -0
  101. data/ext/nokogiri/xml_entity_decl.c +112 -0
  102. data/ext/nokogiri/xml_entity_reference.c +50 -0
  103. data/ext/nokogiri/xml_namespace.c +181 -0
  104. data/ext/nokogiri/xml_node.c +2459 -0
  105. data/ext/nokogiri/xml_node_set.c +518 -0
  106. data/ext/nokogiri/xml_processing_instruction.c +54 -0
  107. data/ext/nokogiri/xml_reader.c +777 -0
  108. data/ext/nokogiri/xml_relax_ng.c +149 -0
  109. data/ext/nokogiri/xml_sax_parser.c +403 -0
  110. data/ext/nokogiri/xml_sax_parser_context.c +390 -0
  111. data/ext/nokogiri/xml_sax_push_parser.c +206 -0
  112. data/ext/nokogiri/xml_schema.c +226 -0
  113. data/ext/nokogiri/xml_syntax_error.c +93 -0
  114. data/ext/nokogiri/xml_text.c +59 -0
  115. data/ext/nokogiri/xml_xpath_context.c +502 -0
  116. data/ext/nokogiri/xslt_stylesheet.c +421 -0
  117. data/gumbo-parser/CHANGES.md +63 -0
  118. data/gumbo-parser/Makefile +129 -0
  119. data/gumbo-parser/THANKS +27 -0
  120. data/lib/nokogiri/3.1/nokogiri.so +0 -0
  121. data/lib/nokogiri/3.2/nokogiri.so +0 -0
  122. data/lib/nokogiri/3.3/nokogiri.so +0 -0
  123. data/lib/nokogiri/3.4/nokogiri.so +0 -0
  124. data/lib/nokogiri/class_resolver.rb +67 -0
  125. data/lib/nokogiri/css/node.rb +58 -0
  126. data/lib/nokogiri/css/parser.rb +772 -0
  127. data/lib/nokogiri/css/parser.y +277 -0
  128. data/lib/nokogiri/css/parser_extras.rb +36 -0
  129. data/lib/nokogiri/css/selector_cache.rb +38 -0
  130. data/lib/nokogiri/css/syntax_error.rb +9 -0
  131. data/lib/nokogiri/css/tokenizer.rb +155 -0
  132. data/lib/nokogiri/css/tokenizer.rex +57 -0
  133. data/lib/nokogiri/css/xpath_visitor.rb +375 -0
  134. data/lib/nokogiri/css.rb +132 -0
  135. data/lib/nokogiri/decorators/slop.rb +42 -0
  136. data/lib/nokogiri/encoding_handler.rb +57 -0
  137. data/lib/nokogiri/extension.rb +32 -0
  138. data/lib/nokogiri/gumbo.rb +15 -0
  139. data/lib/nokogiri/html.rb +48 -0
  140. data/lib/nokogiri/html4/builder.rb +37 -0
  141. data/lib/nokogiri/html4/document.rb +235 -0
  142. data/lib/nokogiri/html4/document_fragment.rb +166 -0
  143. data/lib/nokogiri/html4/element_description.rb +25 -0
  144. data/lib/nokogiri/html4/element_description_defaults.rb +2040 -0
  145. data/lib/nokogiri/html4/encoding_reader.rb +121 -0
  146. data/lib/nokogiri/html4/entity_lookup.rb +15 -0
  147. data/lib/nokogiri/html4/sax/parser.rb +48 -0
  148. data/lib/nokogiri/html4/sax/parser_context.rb +15 -0
  149. data/lib/nokogiri/html4/sax/push_parser.rb +37 -0
  150. data/lib/nokogiri/html4.rb +42 -0
  151. data/lib/nokogiri/html5/builder.rb +40 -0
  152. data/lib/nokogiri/html5/document.rb +199 -0
  153. data/lib/nokogiri/html5/document_fragment.rb +200 -0
  154. data/lib/nokogiri/html5/node.rb +103 -0
  155. data/lib/nokogiri/html5.rb +368 -0
  156. data/lib/nokogiri/jruby/dependencies.rb +3 -0
  157. data/lib/nokogiri/jruby/nokogiri_jars.rb +43 -0
  158. data/lib/nokogiri/syntax_error.rb +6 -0
  159. data/lib/nokogiri/version/constant.rb +6 -0
  160. data/lib/nokogiri/version/info.rb +224 -0
  161. data/lib/nokogiri/version.rb +4 -0
  162. data/lib/nokogiri/xml/attr.rb +66 -0
  163. data/lib/nokogiri/xml/attribute_decl.rb +22 -0
  164. data/lib/nokogiri/xml/builder.rb +494 -0
  165. data/lib/nokogiri/xml/cdata.rb +13 -0
  166. data/lib/nokogiri/xml/character_data.rb +9 -0
  167. data/lib/nokogiri/xml/document.rb +514 -0
  168. data/lib/nokogiri/xml/document_fragment.rb +276 -0
  169. data/lib/nokogiri/xml/dtd.rb +34 -0
  170. data/lib/nokogiri/xml/element_content.rb +46 -0
  171. data/lib/nokogiri/xml/element_decl.rb +17 -0
  172. data/lib/nokogiri/xml/entity_decl.rb +23 -0
  173. data/lib/nokogiri/xml/entity_reference.rb +20 -0
  174. data/lib/nokogiri/xml/namespace.rb +57 -0
  175. data/lib/nokogiri/xml/node/save_options.rb +76 -0
  176. data/lib/nokogiri/xml/node.rb +1650 -0
  177. data/lib/nokogiri/xml/node_set.rb +449 -0
  178. data/lib/nokogiri/xml/notation.rb +19 -0
  179. data/lib/nokogiri/xml/parse_options.rb +213 -0
  180. data/lib/nokogiri/xml/pp/character_data.rb +21 -0
  181. data/lib/nokogiri/xml/pp/node.rb +73 -0
  182. data/lib/nokogiri/xml/pp.rb +4 -0
  183. data/lib/nokogiri/xml/processing_instruction.rb +11 -0
  184. data/lib/nokogiri/xml/reader.rb +139 -0
  185. data/lib/nokogiri/xml/relax_ng.rb +75 -0
  186. data/lib/nokogiri/xml/sax/document.rb +258 -0
  187. data/lib/nokogiri/xml/sax/parser.rb +199 -0
  188. data/lib/nokogiri/xml/sax/parser_context.rb +129 -0
  189. data/lib/nokogiri/xml/sax/push_parser.rb +64 -0
  190. data/lib/nokogiri/xml/sax.rb +54 -0
  191. data/lib/nokogiri/xml/schema.rb +140 -0
  192. data/lib/nokogiri/xml/searchable.rb +297 -0
  193. data/lib/nokogiri/xml/syntax_error.rb +94 -0
  194. data/lib/nokogiri/xml/text.rb +11 -0
  195. data/lib/nokogiri/xml/xpath/syntax_error.rb +13 -0
  196. data/lib/nokogiri/xml/xpath.rb +21 -0
  197. data/lib/nokogiri/xml/xpath_context.rb +49 -0
  198. data/lib/nokogiri/xml.rb +65 -0
  199. data/lib/nokogiri/xslt/stylesheet.rb +49 -0
  200. data/lib/nokogiri/xslt.rb +129 -0
  201. data/lib/nokogiri.rb +128 -0
  202. data/lib/xsd/xmlparser/nokogiri.rb +105 -0
  203. metadata +324 -0
@@ -0,0 +1,366 @@
1
+ /*
2
+ * Summary: Unicode character APIs
3
+ * Description: API for the Unicode character APIs
4
+ *
5
+ * This file is automatically generated from the
6
+ * UCS description files of the Unicode Character Database
7
+ * http://www.unicode.org/Public/4.0-Update1/UCD-4.0.1.html
8
+ * using the genUnicode.py Python script.
9
+ *
10
+ * Generation date: Tue Apr 30 17:30:38 2024
11
+ * Sources: Blocks-4.0.1.txt UnicodeData-4.0.1.txt
12
+ * Author: Daniel Veillard
13
+ */
14
+
15
+ #ifndef __XML_UNICODE_H__
16
+ #define __XML_UNICODE_H__
17
+
18
+ #include <libxml/xmlversion.h>
19
+
20
+ #ifdef LIBXML_UNICODE_ENABLED
21
+
22
+ #ifdef __cplusplus
23
+ extern "C" {
24
+ #endif
25
+
26
+ XML_DEPRECATED
27
+ XMLPUBFUN int xmlUCSIsAegeanNumbers (int code);
28
+ XML_DEPRECATED
29
+ XMLPUBFUN int xmlUCSIsAlphabeticPresentationForms (int code);
30
+ XML_DEPRECATED
31
+ XMLPUBFUN int xmlUCSIsArabic (int code);
32
+ XML_DEPRECATED
33
+ XMLPUBFUN int xmlUCSIsArabicPresentationFormsA (int code);
34
+ XML_DEPRECATED
35
+ XMLPUBFUN int xmlUCSIsArabicPresentationFormsB (int code);
36
+ XML_DEPRECATED
37
+ XMLPUBFUN int xmlUCSIsArmenian (int code);
38
+ XML_DEPRECATED
39
+ XMLPUBFUN int xmlUCSIsArrows (int code);
40
+ XML_DEPRECATED
41
+ XMLPUBFUN int xmlUCSIsBasicLatin (int code);
42
+ XML_DEPRECATED
43
+ XMLPUBFUN int xmlUCSIsBengali (int code);
44
+ XML_DEPRECATED
45
+ XMLPUBFUN int xmlUCSIsBlockElements (int code);
46
+ XML_DEPRECATED
47
+ XMLPUBFUN int xmlUCSIsBopomofo (int code);
48
+ XML_DEPRECATED
49
+ XMLPUBFUN int xmlUCSIsBopomofoExtended (int code);
50
+ XML_DEPRECATED
51
+ XMLPUBFUN int xmlUCSIsBoxDrawing (int code);
52
+ XML_DEPRECATED
53
+ XMLPUBFUN int xmlUCSIsBraillePatterns (int code);
54
+ XML_DEPRECATED
55
+ XMLPUBFUN int xmlUCSIsBuhid (int code);
56
+ XML_DEPRECATED
57
+ XMLPUBFUN int xmlUCSIsByzantineMusicalSymbols (int code);
58
+ XML_DEPRECATED
59
+ XMLPUBFUN int xmlUCSIsCJKCompatibility (int code);
60
+ XML_DEPRECATED
61
+ XMLPUBFUN int xmlUCSIsCJKCompatibilityForms (int code);
62
+ XML_DEPRECATED
63
+ XMLPUBFUN int xmlUCSIsCJKCompatibilityIdeographs (int code);
64
+ XML_DEPRECATED
65
+ XMLPUBFUN int xmlUCSIsCJKCompatibilityIdeographsSupplement (int code);
66
+ XML_DEPRECATED
67
+ XMLPUBFUN int xmlUCSIsCJKRadicalsSupplement (int code);
68
+ XML_DEPRECATED
69
+ XMLPUBFUN int xmlUCSIsCJKSymbolsandPunctuation (int code);
70
+ XML_DEPRECATED
71
+ XMLPUBFUN int xmlUCSIsCJKUnifiedIdeographs (int code);
72
+ XML_DEPRECATED
73
+ XMLPUBFUN int xmlUCSIsCJKUnifiedIdeographsExtensionA (int code);
74
+ XML_DEPRECATED
75
+ XMLPUBFUN int xmlUCSIsCJKUnifiedIdeographsExtensionB (int code);
76
+ XML_DEPRECATED
77
+ XMLPUBFUN int xmlUCSIsCherokee (int code);
78
+ XML_DEPRECATED
79
+ XMLPUBFUN int xmlUCSIsCombiningDiacriticalMarks (int code);
80
+ XML_DEPRECATED
81
+ XMLPUBFUN int xmlUCSIsCombiningDiacriticalMarksforSymbols (int code);
82
+ XML_DEPRECATED
83
+ XMLPUBFUN int xmlUCSIsCombiningHalfMarks (int code);
84
+ XML_DEPRECATED
85
+ XMLPUBFUN int xmlUCSIsCombiningMarksforSymbols (int code);
86
+ XML_DEPRECATED
87
+ XMLPUBFUN int xmlUCSIsControlPictures (int code);
88
+ XML_DEPRECATED
89
+ XMLPUBFUN int xmlUCSIsCurrencySymbols (int code);
90
+ XML_DEPRECATED
91
+ XMLPUBFUN int xmlUCSIsCypriotSyllabary (int code);
92
+ XML_DEPRECATED
93
+ XMLPUBFUN int xmlUCSIsCyrillic (int code);
94
+ XML_DEPRECATED
95
+ XMLPUBFUN int xmlUCSIsCyrillicSupplement (int code);
96
+ XML_DEPRECATED
97
+ XMLPUBFUN int xmlUCSIsDeseret (int code);
98
+ XML_DEPRECATED
99
+ XMLPUBFUN int xmlUCSIsDevanagari (int code);
100
+ XML_DEPRECATED
101
+ XMLPUBFUN int xmlUCSIsDingbats (int code);
102
+ XML_DEPRECATED
103
+ XMLPUBFUN int xmlUCSIsEnclosedAlphanumerics (int code);
104
+ XML_DEPRECATED
105
+ XMLPUBFUN int xmlUCSIsEnclosedCJKLettersandMonths (int code);
106
+ XML_DEPRECATED
107
+ XMLPUBFUN int xmlUCSIsEthiopic (int code);
108
+ XML_DEPRECATED
109
+ XMLPUBFUN int xmlUCSIsGeneralPunctuation (int code);
110
+ XML_DEPRECATED
111
+ XMLPUBFUN int xmlUCSIsGeometricShapes (int code);
112
+ XML_DEPRECATED
113
+ XMLPUBFUN int xmlUCSIsGeorgian (int code);
114
+ XML_DEPRECATED
115
+ XMLPUBFUN int xmlUCSIsGothic (int code);
116
+ XML_DEPRECATED
117
+ XMLPUBFUN int xmlUCSIsGreek (int code);
118
+ XML_DEPRECATED
119
+ XMLPUBFUN int xmlUCSIsGreekExtended (int code);
120
+ XML_DEPRECATED
121
+ XMLPUBFUN int xmlUCSIsGreekandCoptic (int code);
122
+ XML_DEPRECATED
123
+ XMLPUBFUN int xmlUCSIsGujarati (int code);
124
+ XML_DEPRECATED
125
+ XMLPUBFUN int xmlUCSIsGurmukhi (int code);
126
+ XML_DEPRECATED
127
+ XMLPUBFUN int xmlUCSIsHalfwidthandFullwidthForms (int code);
128
+ XML_DEPRECATED
129
+ XMLPUBFUN int xmlUCSIsHangulCompatibilityJamo (int code);
130
+ XML_DEPRECATED
131
+ XMLPUBFUN int xmlUCSIsHangulJamo (int code);
132
+ XML_DEPRECATED
133
+ XMLPUBFUN int xmlUCSIsHangulSyllables (int code);
134
+ XML_DEPRECATED
135
+ XMLPUBFUN int xmlUCSIsHanunoo (int code);
136
+ XML_DEPRECATED
137
+ XMLPUBFUN int xmlUCSIsHebrew (int code);
138
+ XML_DEPRECATED
139
+ XMLPUBFUN int xmlUCSIsHighPrivateUseSurrogates (int code);
140
+ XML_DEPRECATED
141
+ XMLPUBFUN int xmlUCSIsHighSurrogates (int code);
142
+ XML_DEPRECATED
143
+ XMLPUBFUN int xmlUCSIsHiragana (int code);
144
+ XML_DEPRECATED
145
+ XMLPUBFUN int xmlUCSIsIPAExtensions (int code);
146
+ XML_DEPRECATED
147
+ XMLPUBFUN int xmlUCSIsIdeographicDescriptionCharacters (int code);
148
+ XML_DEPRECATED
149
+ XMLPUBFUN int xmlUCSIsKanbun (int code);
150
+ XML_DEPRECATED
151
+ XMLPUBFUN int xmlUCSIsKangxiRadicals (int code);
152
+ XML_DEPRECATED
153
+ XMLPUBFUN int xmlUCSIsKannada (int code);
154
+ XML_DEPRECATED
155
+ XMLPUBFUN int xmlUCSIsKatakana (int code);
156
+ XML_DEPRECATED
157
+ XMLPUBFUN int xmlUCSIsKatakanaPhoneticExtensions (int code);
158
+ XML_DEPRECATED
159
+ XMLPUBFUN int xmlUCSIsKhmer (int code);
160
+ XML_DEPRECATED
161
+ XMLPUBFUN int xmlUCSIsKhmerSymbols (int code);
162
+ XML_DEPRECATED
163
+ XMLPUBFUN int xmlUCSIsLao (int code);
164
+ XML_DEPRECATED
165
+ XMLPUBFUN int xmlUCSIsLatin1Supplement (int code);
166
+ XML_DEPRECATED
167
+ XMLPUBFUN int xmlUCSIsLatinExtendedA (int code);
168
+ XML_DEPRECATED
169
+ XMLPUBFUN int xmlUCSIsLatinExtendedB (int code);
170
+ XML_DEPRECATED
171
+ XMLPUBFUN int xmlUCSIsLatinExtendedAdditional (int code);
172
+ XML_DEPRECATED
173
+ XMLPUBFUN int xmlUCSIsLetterlikeSymbols (int code);
174
+ XML_DEPRECATED
175
+ XMLPUBFUN int xmlUCSIsLimbu (int code);
176
+ XML_DEPRECATED
177
+ XMLPUBFUN int xmlUCSIsLinearBIdeograms (int code);
178
+ XML_DEPRECATED
179
+ XMLPUBFUN int xmlUCSIsLinearBSyllabary (int code);
180
+ XML_DEPRECATED
181
+ XMLPUBFUN int xmlUCSIsLowSurrogates (int code);
182
+ XML_DEPRECATED
183
+ XMLPUBFUN int xmlUCSIsMalayalam (int code);
184
+ XML_DEPRECATED
185
+ XMLPUBFUN int xmlUCSIsMathematicalAlphanumericSymbols (int code);
186
+ XML_DEPRECATED
187
+ XMLPUBFUN int xmlUCSIsMathematicalOperators (int code);
188
+ XML_DEPRECATED
189
+ XMLPUBFUN int xmlUCSIsMiscellaneousMathematicalSymbolsA (int code);
190
+ XML_DEPRECATED
191
+ XMLPUBFUN int xmlUCSIsMiscellaneousMathematicalSymbolsB (int code);
192
+ XML_DEPRECATED
193
+ XMLPUBFUN int xmlUCSIsMiscellaneousSymbols (int code);
194
+ XML_DEPRECATED
195
+ XMLPUBFUN int xmlUCSIsMiscellaneousSymbolsandArrows (int code);
196
+ XML_DEPRECATED
197
+ XMLPUBFUN int xmlUCSIsMiscellaneousTechnical (int code);
198
+ XML_DEPRECATED
199
+ XMLPUBFUN int xmlUCSIsMongolian (int code);
200
+ XML_DEPRECATED
201
+ XMLPUBFUN int xmlUCSIsMusicalSymbols (int code);
202
+ XML_DEPRECATED
203
+ XMLPUBFUN int xmlUCSIsMyanmar (int code);
204
+ XML_DEPRECATED
205
+ XMLPUBFUN int xmlUCSIsNumberForms (int code);
206
+ XML_DEPRECATED
207
+ XMLPUBFUN int xmlUCSIsOgham (int code);
208
+ XML_DEPRECATED
209
+ XMLPUBFUN int xmlUCSIsOldItalic (int code);
210
+ XML_DEPRECATED
211
+ XMLPUBFUN int xmlUCSIsOpticalCharacterRecognition (int code);
212
+ XML_DEPRECATED
213
+ XMLPUBFUN int xmlUCSIsOriya (int code);
214
+ XML_DEPRECATED
215
+ XMLPUBFUN int xmlUCSIsOsmanya (int code);
216
+ XML_DEPRECATED
217
+ XMLPUBFUN int xmlUCSIsPhoneticExtensions (int code);
218
+ XML_DEPRECATED
219
+ XMLPUBFUN int xmlUCSIsPrivateUse (int code);
220
+ XML_DEPRECATED
221
+ XMLPUBFUN int xmlUCSIsPrivateUseArea (int code);
222
+ XML_DEPRECATED
223
+ XMLPUBFUN int xmlUCSIsRunic (int code);
224
+ XML_DEPRECATED
225
+ XMLPUBFUN int xmlUCSIsShavian (int code);
226
+ XML_DEPRECATED
227
+ XMLPUBFUN int xmlUCSIsSinhala (int code);
228
+ XML_DEPRECATED
229
+ XMLPUBFUN int xmlUCSIsSmallFormVariants (int code);
230
+ XML_DEPRECATED
231
+ XMLPUBFUN int xmlUCSIsSpacingModifierLetters (int code);
232
+ XML_DEPRECATED
233
+ XMLPUBFUN int xmlUCSIsSpecials (int code);
234
+ XML_DEPRECATED
235
+ XMLPUBFUN int xmlUCSIsSuperscriptsandSubscripts (int code);
236
+ XML_DEPRECATED
237
+ XMLPUBFUN int xmlUCSIsSupplementalArrowsA (int code);
238
+ XML_DEPRECATED
239
+ XMLPUBFUN int xmlUCSIsSupplementalArrowsB (int code);
240
+ XML_DEPRECATED
241
+ XMLPUBFUN int xmlUCSIsSupplementalMathematicalOperators (int code);
242
+ XML_DEPRECATED
243
+ XMLPUBFUN int xmlUCSIsSupplementaryPrivateUseAreaA (int code);
244
+ XML_DEPRECATED
245
+ XMLPUBFUN int xmlUCSIsSupplementaryPrivateUseAreaB (int code);
246
+ XML_DEPRECATED
247
+ XMLPUBFUN int xmlUCSIsSyriac (int code);
248
+ XML_DEPRECATED
249
+ XMLPUBFUN int xmlUCSIsTagalog (int code);
250
+ XML_DEPRECATED
251
+ XMLPUBFUN int xmlUCSIsTagbanwa (int code);
252
+ XML_DEPRECATED
253
+ XMLPUBFUN int xmlUCSIsTags (int code);
254
+ XML_DEPRECATED
255
+ XMLPUBFUN int xmlUCSIsTaiLe (int code);
256
+ XML_DEPRECATED
257
+ XMLPUBFUN int xmlUCSIsTaiXuanJingSymbols (int code);
258
+ XML_DEPRECATED
259
+ XMLPUBFUN int xmlUCSIsTamil (int code);
260
+ XML_DEPRECATED
261
+ XMLPUBFUN int xmlUCSIsTelugu (int code);
262
+ XML_DEPRECATED
263
+ XMLPUBFUN int xmlUCSIsThaana (int code);
264
+ XML_DEPRECATED
265
+ XMLPUBFUN int xmlUCSIsThai (int code);
266
+ XML_DEPRECATED
267
+ XMLPUBFUN int xmlUCSIsTibetan (int code);
268
+ XML_DEPRECATED
269
+ XMLPUBFUN int xmlUCSIsUgaritic (int code);
270
+ XML_DEPRECATED
271
+ XMLPUBFUN int xmlUCSIsUnifiedCanadianAboriginalSyllabics (int code);
272
+ XML_DEPRECATED
273
+ XMLPUBFUN int xmlUCSIsVariationSelectors (int code);
274
+ XML_DEPRECATED
275
+ XMLPUBFUN int xmlUCSIsVariationSelectorsSupplement (int code);
276
+ XML_DEPRECATED
277
+ XMLPUBFUN int xmlUCSIsYiRadicals (int code);
278
+ XML_DEPRECATED
279
+ XMLPUBFUN int xmlUCSIsYiSyllables (int code);
280
+ XML_DEPRECATED
281
+ XMLPUBFUN int xmlUCSIsYijingHexagramSymbols (int code);
282
+
283
+ XMLPUBFUN int xmlUCSIsBlock (int code, const char *block);
284
+
285
+ XML_DEPRECATED
286
+ XMLPUBFUN int xmlUCSIsCatC (int code);
287
+ XML_DEPRECATED
288
+ XMLPUBFUN int xmlUCSIsCatCc (int code);
289
+ XML_DEPRECATED
290
+ XMLPUBFUN int xmlUCSIsCatCf (int code);
291
+ XML_DEPRECATED
292
+ XMLPUBFUN int xmlUCSIsCatCo (int code);
293
+ XML_DEPRECATED
294
+ XMLPUBFUN int xmlUCSIsCatCs (int code);
295
+ XML_DEPRECATED
296
+ XMLPUBFUN int xmlUCSIsCatL (int code);
297
+ XML_DEPRECATED
298
+ XMLPUBFUN int xmlUCSIsCatLl (int code);
299
+ XML_DEPRECATED
300
+ XMLPUBFUN int xmlUCSIsCatLm (int code);
301
+ XML_DEPRECATED
302
+ XMLPUBFUN int xmlUCSIsCatLo (int code);
303
+ XML_DEPRECATED
304
+ XMLPUBFUN int xmlUCSIsCatLt (int code);
305
+ XML_DEPRECATED
306
+ XMLPUBFUN int xmlUCSIsCatLu (int code);
307
+ XML_DEPRECATED
308
+ XMLPUBFUN int xmlUCSIsCatM (int code);
309
+ XML_DEPRECATED
310
+ XMLPUBFUN int xmlUCSIsCatMc (int code);
311
+ XML_DEPRECATED
312
+ XMLPUBFUN int xmlUCSIsCatMe (int code);
313
+ XML_DEPRECATED
314
+ XMLPUBFUN int xmlUCSIsCatMn (int code);
315
+ XML_DEPRECATED
316
+ XMLPUBFUN int xmlUCSIsCatN (int code);
317
+ XML_DEPRECATED
318
+ XMLPUBFUN int xmlUCSIsCatNd (int code);
319
+ XML_DEPRECATED
320
+ XMLPUBFUN int xmlUCSIsCatNl (int code);
321
+ XML_DEPRECATED
322
+ XMLPUBFUN int xmlUCSIsCatNo (int code);
323
+ XML_DEPRECATED
324
+ XMLPUBFUN int xmlUCSIsCatP (int code);
325
+ XML_DEPRECATED
326
+ XMLPUBFUN int xmlUCSIsCatPc (int code);
327
+ XML_DEPRECATED
328
+ XMLPUBFUN int xmlUCSIsCatPd (int code);
329
+ XML_DEPRECATED
330
+ XMLPUBFUN int xmlUCSIsCatPe (int code);
331
+ XML_DEPRECATED
332
+ XMLPUBFUN int xmlUCSIsCatPf (int code);
333
+ XML_DEPRECATED
334
+ XMLPUBFUN int xmlUCSIsCatPi (int code);
335
+ XML_DEPRECATED
336
+ XMLPUBFUN int xmlUCSIsCatPo (int code);
337
+ XML_DEPRECATED
338
+ XMLPUBFUN int xmlUCSIsCatPs (int code);
339
+ XML_DEPRECATED
340
+ XMLPUBFUN int xmlUCSIsCatS (int code);
341
+ XML_DEPRECATED
342
+ XMLPUBFUN int xmlUCSIsCatSc (int code);
343
+ XML_DEPRECATED
344
+ XMLPUBFUN int xmlUCSIsCatSk (int code);
345
+ XML_DEPRECATED
346
+ XMLPUBFUN int xmlUCSIsCatSm (int code);
347
+ XML_DEPRECATED
348
+ XMLPUBFUN int xmlUCSIsCatSo (int code);
349
+ XML_DEPRECATED
350
+ XMLPUBFUN int xmlUCSIsCatZ (int code);
351
+ XML_DEPRECATED
352
+ XMLPUBFUN int xmlUCSIsCatZl (int code);
353
+ XML_DEPRECATED
354
+ XMLPUBFUN int xmlUCSIsCatZp (int code);
355
+ XML_DEPRECATED
356
+ XMLPUBFUN int xmlUCSIsCatZs (int code);
357
+
358
+ XMLPUBFUN int xmlUCSIsCat (int code, const char *cat);
359
+
360
+ #ifdef __cplusplus
361
+ }
362
+ #endif
363
+
364
+ #endif /* LIBXML_UNICODE_ENABLED */
365
+
366
+ #endif /* __XML_UNICODE_H__ */
@@ -0,0 +1,347 @@
1
+ /*
2
+ * Summary: compile-time version information
3
+ * Description: compile-time version information for the XML library
4
+ *
5
+ * Copy: See Copyright for the status of this software.
6
+ *
7
+ * Author: Daniel Veillard
8
+ */
9
+
10
+ #ifndef __XML_VERSION_H__
11
+ #define __XML_VERSION_H__
12
+
13
+ /**
14
+ * LIBXML_DOTTED_VERSION:
15
+ *
16
+ * the version string like "1.2.3"
17
+ */
18
+ #define LIBXML_DOTTED_VERSION "2.13.5"
19
+
20
+ /**
21
+ * LIBXML_VERSION:
22
+ *
23
+ * the version number: 1.2.3 value is 10203
24
+ */
25
+ #define LIBXML_VERSION 21305
26
+
27
+ /**
28
+ * LIBXML_VERSION_STRING:
29
+ *
30
+ * the version number string, 1.2.3 value is "10203"
31
+ */
32
+ #define LIBXML_VERSION_STRING "21305"
33
+
34
+ /**
35
+ * LIBXML_VERSION_EXTRA:
36
+ *
37
+ * extra version information, used to show a git commit description
38
+ */
39
+ #define LIBXML_VERSION_EXTRA ""
40
+
41
+ /**
42
+ * LIBXML_TEST_VERSION:
43
+ *
44
+ * Macro to check that the libxml version in use is compatible with
45
+ * the version the software has been compiled against
46
+ */
47
+ #define LIBXML_TEST_VERSION xmlCheckVersion(21305);
48
+
49
+ /**
50
+ * LIBXML_THREAD_ENABLED:
51
+ *
52
+ * Whether the thread support is configured in
53
+ */
54
+ #if 1
55
+ #define LIBXML_THREAD_ENABLED
56
+ #endif
57
+
58
+ /**
59
+ * LIBXML_THREAD_ALLOC_ENABLED:
60
+ *
61
+ * Whether the allocation hooks are per-thread
62
+ */
63
+ #if 0
64
+ #define LIBXML_THREAD_ALLOC_ENABLED
65
+ #endif
66
+
67
+ /**
68
+ * LIBXML_TREE_ENABLED:
69
+ *
70
+ * Whether the DOM like tree manipulation API support is configured in
71
+ */
72
+ #if 1
73
+ #define LIBXML_TREE_ENABLED
74
+ #endif
75
+
76
+ /**
77
+ * LIBXML_OUTPUT_ENABLED:
78
+ *
79
+ * Whether the serialization/saving support is configured in
80
+ */
81
+ #if 1
82
+ #define LIBXML_OUTPUT_ENABLED
83
+ #endif
84
+
85
+ /**
86
+ * LIBXML_PUSH_ENABLED:
87
+ *
88
+ * Whether the push parsing interfaces are configured in
89
+ */
90
+ #if 1
91
+ #define LIBXML_PUSH_ENABLED
92
+ #endif
93
+
94
+ /**
95
+ * LIBXML_READER_ENABLED:
96
+ *
97
+ * Whether the xmlReader parsing interface is configured in
98
+ */
99
+ #if 1
100
+ #define LIBXML_READER_ENABLED
101
+ #endif
102
+
103
+ /**
104
+ * LIBXML_PATTERN_ENABLED:
105
+ *
106
+ * Whether the xmlPattern node selection interface is configured in
107
+ */
108
+ #if 1
109
+ #define LIBXML_PATTERN_ENABLED
110
+ #endif
111
+
112
+ /**
113
+ * LIBXML_WRITER_ENABLED:
114
+ *
115
+ * Whether the xmlWriter saving interface is configured in
116
+ */
117
+ #if 1
118
+ #define LIBXML_WRITER_ENABLED
119
+ #endif
120
+
121
+ /**
122
+ * LIBXML_SAX1_ENABLED:
123
+ *
124
+ * Whether the older SAX1 interface is configured in
125
+ */
126
+ #if 1
127
+ #define LIBXML_SAX1_ENABLED
128
+ #endif
129
+
130
+ /**
131
+ * LIBXML_FTP_ENABLED:
132
+ *
133
+ * Whether the FTP support is configured in
134
+ */
135
+ #if 0
136
+ #define LIBXML_FTP_ENABLED
137
+ #endif
138
+
139
+ /**
140
+ * LIBXML_HTTP_ENABLED:
141
+ *
142
+ * Whether the HTTP support is configured in
143
+ */
144
+ #if 1
145
+ #define LIBXML_HTTP_ENABLED
146
+ #endif
147
+
148
+ /**
149
+ * LIBXML_VALID_ENABLED:
150
+ *
151
+ * Whether the DTD validation support is configured in
152
+ */
153
+ #if 1
154
+ #define LIBXML_VALID_ENABLED
155
+ #endif
156
+
157
+ /**
158
+ * LIBXML_HTML_ENABLED:
159
+ *
160
+ * Whether the HTML support is configured in
161
+ */
162
+ #if 1
163
+ #define LIBXML_HTML_ENABLED
164
+ #endif
165
+
166
+ /**
167
+ * LIBXML_LEGACY_ENABLED:
168
+ *
169
+ * Whether the deprecated APIs are compiled in for compatibility
170
+ */
171
+ #if 1
172
+ #define LIBXML_LEGACY_ENABLED
173
+ #endif
174
+
175
+ /**
176
+ * LIBXML_C14N_ENABLED:
177
+ *
178
+ * Whether the Canonicalization support is configured in
179
+ */
180
+ #if 1
181
+ #define LIBXML_C14N_ENABLED
182
+ #endif
183
+
184
+ /**
185
+ * LIBXML_CATALOG_ENABLED:
186
+ *
187
+ * Whether the Catalog support is configured in
188
+ */
189
+ #if 1
190
+ #define LIBXML_CATALOG_ENABLED
191
+ #endif
192
+
193
+ /**
194
+ * LIBXML_XPATH_ENABLED:
195
+ *
196
+ * Whether XPath is configured in
197
+ */
198
+ #if 1
199
+ #define LIBXML_XPATH_ENABLED
200
+ #endif
201
+
202
+ /**
203
+ * LIBXML_XPTR_ENABLED:
204
+ *
205
+ * Whether XPointer is configured in
206
+ */
207
+ #if 1
208
+ #define LIBXML_XPTR_ENABLED
209
+ #endif
210
+
211
+ /**
212
+ * LIBXML_XPTR_LOCS_ENABLED:
213
+ *
214
+ * Whether support for XPointer locations is configured in
215
+ */
216
+ #if 0
217
+ #define LIBXML_XPTR_LOCS_ENABLED
218
+ #endif
219
+
220
+ /**
221
+ * LIBXML_XINCLUDE_ENABLED:
222
+ *
223
+ * Whether XInclude is configured in
224
+ */
225
+ #if 1
226
+ #define LIBXML_XINCLUDE_ENABLED
227
+ #endif
228
+
229
+ /**
230
+ * LIBXML_ICONV_ENABLED:
231
+ *
232
+ * Whether iconv support is available
233
+ */
234
+ #if 1
235
+ #define LIBXML_ICONV_ENABLED
236
+ #endif
237
+
238
+ /**
239
+ * LIBXML_ICU_ENABLED:
240
+ *
241
+ * Whether icu support is available
242
+ */
243
+ #if 0
244
+ #define LIBXML_ICU_ENABLED
245
+ #endif
246
+
247
+ /**
248
+ * LIBXML_ISO8859X_ENABLED:
249
+ *
250
+ * Whether ISO-8859-* support is made available in case iconv is not
251
+ */
252
+ #if 1
253
+ #define LIBXML_ISO8859X_ENABLED
254
+ #endif
255
+
256
+ /**
257
+ * LIBXML_DEBUG_ENABLED:
258
+ *
259
+ * Whether Debugging module is configured in
260
+ */
261
+ #if 1
262
+ #define LIBXML_DEBUG_ENABLED
263
+ #endif
264
+
265
+ /**
266
+ * LIBXML_UNICODE_ENABLED:
267
+ *
268
+ * Whether the Unicode related interfaces are compiled in
269
+ */
270
+ #if 1
271
+ #define LIBXML_UNICODE_ENABLED
272
+ #endif
273
+
274
+ /**
275
+ * LIBXML_REGEXP_ENABLED:
276
+ *
277
+ * Whether the regular expressions interfaces are compiled in
278
+ */
279
+ #if 1
280
+ #define LIBXML_REGEXP_ENABLED
281
+ #endif
282
+
283
+ /**
284
+ * LIBXML_AUTOMATA_ENABLED:
285
+ *
286
+ * Whether the automata interfaces are compiled in
287
+ */
288
+ #if 1
289
+ #define LIBXML_AUTOMATA_ENABLED
290
+ #endif
291
+
292
+ /**
293
+ * LIBXML_SCHEMAS_ENABLED:
294
+ *
295
+ * Whether the Schemas validation interfaces are compiled in
296
+ */
297
+ #if 1
298
+ #define LIBXML_SCHEMAS_ENABLED
299
+ #endif
300
+
301
+ /**
302
+ * LIBXML_SCHEMATRON_ENABLED:
303
+ *
304
+ * Whether the Schematron validation interfaces are compiled in
305
+ */
306
+ #if 1
307
+ #define LIBXML_SCHEMATRON_ENABLED
308
+ #endif
309
+
310
+ /**
311
+ * LIBXML_MODULES_ENABLED:
312
+ *
313
+ * Whether the module interfaces are compiled in
314
+ */
315
+ #if 1
316
+ #define LIBXML_MODULES_ENABLED
317
+ /**
318
+ * LIBXML_MODULE_EXTENSION:
319
+ *
320
+ * the string suffix used by dynamic modules (usually shared libraries)
321
+ */
322
+ #define LIBXML_MODULE_EXTENSION ".so"
323
+ #endif
324
+
325
+ /**
326
+ * LIBXML_ZLIB_ENABLED:
327
+ *
328
+ * Whether the Zlib support is compiled in
329
+ */
330
+ #if 1
331
+ #define LIBXML_ZLIB_ENABLED
332
+ #endif
333
+
334
+ /**
335
+ * LIBXML_LZMA_ENABLED:
336
+ *
337
+ * Whether the Lzma support is compiled in
338
+ */
339
+ #if 0
340
+ #define LIBXML_LZMA_ENABLED
341
+ #endif
342
+
343
+ #include <libxml/xmlexports.h>
344
+
345
+ #endif
346
+
347
+