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,179 @@
1
+ /*
2
+ * Summary: compile-time version information for the XSLT engine
3
+ * Description: compile-time version information for the XSLT engine
4
+ * this module is autogenerated.
5
+ *
6
+ * Copy: See Copyright for the status of this software.
7
+ *
8
+ * Author: Daniel Veillard
9
+ */
10
+
11
+ #ifndef __XML_XSLTCONFIG_H__
12
+ #define __XML_XSLTCONFIG_H__
13
+
14
+ #ifdef __cplusplus
15
+ extern "C" {
16
+ #endif
17
+
18
+ /**
19
+ * LIBXSLT_DOTTED_VERSION:
20
+ *
21
+ * the version string like "1.2.3"
22
+ */
23
+ #define LIBXSLT_DOTTED_VERSION "1.1.37"
24
+
25
+ /**
26
+ * LIBXSLT_VERSION:
27
+ *
28
+ * the version number: 1.2.3 value is 10203
29
+ */
30
+ #define LIBXSLT_VERSION 10137
31
+
32
+ /**
33
+ * LIBXSLT_VERSION_STRING:
34
+ *
35
+ * the version number string, 1.2.3 value is "10203"
36
+ */
37
+ #define LIBXSLT_VERSION_STRING "10137"
38
+
39
+ /**
40
+ * LIBXSLT_VERSION_EXTRA:
41
+ *
42
+ * extra version information, used to show a Git commit description
43
+ */
44
+ #define LIBXSLT_VERSION_EXTRA ""
45
+
46
+ /**
47
+ * WITH_XSLT_DEBUG:
48
+ *
49
+ * Activate the compilation of the debug reporting. Speed penalty
50
+ * is insignifiant and being able to run xsltpoc -v is useful. On
51
+ * by default unless --without-debug is passed to configure
52
+ */
53
+ #if 1
54
+ #define WITH_XSLT_DEBUG
55
+ #endif
56
+
57
+ #if 0
58
+ /**
59
+ * DEBUG_MEMORY:
60
+ *
61
+ * should be activated only when debugging libxslt. It replaces the
62
+ * allocator with a collect and debug shell to the libc allocator.
63
+ * Use configure --with-mem-debug to activate it on both library
64
+ */
65
+ #define DEBUG_MEMORY
66
+
67
+ /**
68
+ * DEBUG_MEMORY_LOCATION:
69
+ *
70
+ * should be activated only when debugging libxslt.
71
+ * DEBUG_MEMORY_LOCATION should be activated only when libxml has
72
+ * been configured with --with-debug-mem too
73
+ */
74
+ #define DEBUG_MEMORY_LOCATION
75
+ #endif
76
+
77
+ /**
78
+ * XSLT_NEED_TRIO:
79
+ *
80
+ * should be activated if the existing libc library lacks some of the
81
+ * string formatting function, in that case reuse the Trio ones already
82
+ * compiled in the libxml2 library.
83
+ */
84
+
85
+ #if 0
86
+ #define XSLT_NEED_TRIO
87
+ #endif
88
+ #ifdef __VMS
89
+ #define HAVE_SYS_STAT_H 1
90
+ #ifndef XSLT_NEED_TRIO
91
+ #define XSLT_NEED_TRIO
92
+ #endif
93
+ #endif
94
+
95
+ #ifdef XSLT_NEED_TRIO
96
+ #define TRIO_REPLACE_STDIO
97
+ #endif
98
+
99
+ /**
100
+ * WITH_XSLT_DEBUGGER:
101
+ *
102
+ * Activate the compilation of the debugger support. Speed penalty
103
+ * is insignifiant.
104
+ * On by default unless --without-debugger is passed to configure
105
+ */
106
+ #if 1
107
+ #ifndef WITH_DEBUGGER
108
+ #define WITH_DEBUGGER
109
+ #endif
110
+ #endif
111
+
112
+ /**
113
+ * WITH_PROFILER:
114
+ *
115
+ * Activate the compilation of the profiler. Speed penalty
116
+ * is insignifiant.
117
+ * On by default unless --without-profiler is passed to configure
118
+ */
119
+ #if 1
120
+ #ifndef WITH_PROFILER
121
+ #define WITH_PROFILER
122
+ #endif
123
+ #endif
124
+
125
+ /**
126
+ * WITH_MODULES:
127
+ *
128
+ * Whether module support is configured into libxslt
129
+ * Note: no default module path for win32 platforms
130
+ */
131
+ #if 0
132
+ #ifndef WITH_MODULES
133
+ #define WITH_MODULES
134
+ #endif
135
+ #define LIBXSLT_DEFAULT_PLUGINS_PATH() "/home/flavorjones/code/oss/nokogiri/ports/arm-linux/libxslt/1.1.37/lib/libxslt-plugins"
136
+ #endif
137
+
138
+ /**
139
+ * ATTRIBUTE_UNUSED:
140
+ *
141
+ * This macro is used to flag unused function parameters to GCC
142
+ */
143
+ #ifdef __GNUC__
144
+ #ifndef ATTRIBUTE_UNUSED
145
+ #define ATTRIBUTE_UNUSED __attribute__((unused))
146
+ #endif
147
+ #else
148
+ #define ATTRIBUTE_UNUSED
149
+ #endif
150
+
151
+ /**
152
+ * LIBXSLT_ATTR_FORMAT:
153
+ *
154
+ * This macro is used to indicate to GCC the parameters are printf-like
155
+ */
156
+ #ifdef __GNUC__
157
+ #define LIBXSLT_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args)))
158
+ #else
159
+ #define LIBXSLT_ATTR_FORMAT(fmt,args)
160
+ #endif
161
+
162
+ /**
163
+ * LIBXSLT_PUBLIC:
164
+ *
165
+ * This macro is used to declare PUBLIC variables for Cygwin and for MSC on Windows
166
+ */
167
+ #if !defined LIBXSLT_PUBLIC
168
+ #if (defined(__CYGWIN__) || defined _MSC_VER) && !defined IN_LIBXSLT && !defined LIBXSLT_STATIC
169
+ #define LIBXSLT_PUBLIC __declspec(dllimport)
170
+ #else
171
+ #define LIBXSLT_PUBLIC
172
+ #endif
173
+ #endif
174
+
175
+ #ifdef __cplusplus
176
+ }
177
+ #endif
178
+
179
+ #endif /* __XML_XSLTCONFIG_H__ */
@@ -0,0 +1,64 @@
1
+ /*
2
+ * Summary: macros for marking symbols as exportable/importable.
3
+ * Description: macros for marking symbols as exportable/importable.
4
+ *
5
+ * Copy: See Copyright for the status of this software.
6
+ */
7
+
8
+ #ifndef __XSLT_EXPORTS_H__
9
+ #define __XSLT_EXPORTS_H__
10
+
11
+ #if defined(_WIN32) || defined(__CYGWIN__)
12
+ /** DOC_DISABLE */
13
+
14
+ #ifdef LIBXSLT_STATIC
15
+ #define XSLTPUBLIC
16
+ #elif defined(IN_LIBXSLT)
17
+ #define XSLTPUBLIC __declspec(dllexport)
18
+ #else
19
+ #define XSLTPUBLIC __declspec(dllimport)
20
+ #endif
21
+
22
+ #define XSLTCALL __cdecl
23
+
24
+ /** DOC_ENABLE */
25
+ #else /* not Windows */
26
+
27
+ /**
28
+ * XSLTPUBLIC:
29
+ *
30
+ * Macro which declares a public symbol
31
+ */
32
+ #define XSLTPUBLIC
33
+
34
+ /**
35
+ * XSLTCALL:
36
+ *
37
+ * Macro which declares the calling convention for exported functions
38
+ */
39
+ #define XSLTCALL
40
+
41
+ #endif /* platform switch */
42
+
43
+ /*
44
+ * XSLTPUBFUN:
45
+ *
46
+ * Macro which declares an exportable function
47
+ */
48
+ #define XSLTPUBFUN XSLTPUBLIC
49
+
50
+ /**
51
+ * XSLTPUBVAR:
52
+ *
53
+ * Macro which declares an exportable variable
54
+ */
55
+ #define XSLTPUBVAR XSLTPUBLIC extern
56
+
57
+ /* Compatibility */
58
+ #if !defined(LIBXSLT_PUBLIC)
59
+ #define LIBXSLT_PUBLIC XSLTPUBVAR
60
+ #endif
61
+
62
+ #endif /* __XSLT_EXPORTS_H__ */
63
+
64
+
@@ -0,0 +1,76 @@
1
+ /*
2
+ * Summary: Locale handling
3
+ * Description: Interfaces for locale handling. Needed for language dependent
4
+ * sorting.
5
+ *
6
+ * Copy: See Copyright for the status of this software.
7
+ *
8
+ * Author: Nick Wellnhofer
9
+ */
10
+
11
+ #ifndef __XML_XSLTLOCALE_H__
12
+ #define __XML_XSLTLOCALE_H__
13
+
14
+ #include <libxml/xmlstring.h>
15
+ #include "xsltexports.h"
16
+
17
+ #ifdef HAVE_STRXFRM_L
18
+
19
+ /*
20
+ * XSLT_LOCALE_POSIX:
21
+ * Macro indicating to use POSIX locale extensions
22
+ */
23
+ #define XSLT_LOCALE_POSIX
24
+
25
+ #ifdef HAVE_LOCALE_H
26
+ #include <locale.h>
27
+ #endif
28
+ #ifdef HAVE_XLOCALE_H
29
+ #include <xlocale.h>
30
+ #endif
31
+
32
+ typedef locale_t xsltLocale;
33
+ typedef xmlChar xsltLocaleChar;
34
+
35
+ #elif defined(_WIN32)
36
+
37
+ /*
38
+ * XSLT_LOCALE_WINAPI:
39
+ * Macro indicating to use WinAPI for extended locale support
40
+ */
41
+ #define XSLT_LOCALE_WINAPI
42
+
43
+ #include <windows.h>
44
+ #include <winnls.h>
45
+
46
+ typedef LCID xsltLocale;
47
+ typedef wchar_t xsltLocaleChar;
48
+
49
+ #else
50
+
51
+ /*
52
+ * XSLT_LOCALE_NONE:
53
+ * Macro indicating that there's no extended locale support
54
+ */
55
+ #define XSLT_LOCALE_NONE
56
+
57
+ typedef void *xsltLocale;
58
+ typedef xmlChar xsltLocaleChar;
59
+
60
+ #endif
61
+
62
+ XSLTPUBFUN xsltLocale XSLTCALL
63
+ xsltNewLocale (const xmlChar *langName);
64
+ XSLTPUBFUN void XSLTCALL
65
+ xsltFreeLocale (xsltLocale locale);
66
+ XSLTPUBFUN xsltLocaleChar * XSLTCALL
67
+ xsltStrxfrm (xsltLocale locale,
68
+ const xmlChar *string);
69
+ XSLTPUBFUN int XSLTCALL
70
+ xsltLocaleStrcmp (xsltLocale locale,
71
+ const xsltLocaleChar *str1,
72
+ const xsltLocaleChar *str2);
73
+ XSLTPUBFUN void XSLTCALL
74
+ xsltFreeLocales (void);
75
+
76
+ #endif /* __XML_XSLTLOCALE_H__ */
@@ -0,0 +1,310 @@
1
+ /*
2
+ * Summary: set of utilities for the XSLT engine
3
+ * Description: interfaces for the utilities module of the XSLT engine.
4
+ * things like message handling, profiling, and other
5
+ * generally useful routines.
6
+ *
7
+ * Copy: See Copyright for the status of this software.
8
+ *
9
+ * Author: Daniel Veillard
10
+ */
11
+
12
+ #ifndef __XML_XSLTUTILS_H__
13
+ #define __XML_XSLTUTILS_H__
14
+
15
+ #include <libxslt/xsltconfig.h>
16
+ #include <libxml/xpath.h>
17
+ #include <libxml/dict.h>
18
+ #include <libxml/xmlerror.h>
19
+ #include "xsltexports.h"
20
+ #include "xsltInternals.h"
21
+
22
+ #ifdef __cplusplus
23
+ extern "C" {
24
+ #endif
25
+
26
+ /**
27
+ * XSLT_TODO:
28
+ *
29
+ * Macro to flag unimplemented blocks.
30
+ */
31
+ #define XSLT_TODO \
32
+ xsltGenericError(xsltGenericErrorContext, \
33
+ "Unimplemented block at %s:%d\n", \
34
+ __FILE__, __LINE__);
35
+
36
+ /**
37
+ * XSLT_STRANGE:
38
+ *
39
+ * Macro to flag that a problem was detected internally.
40
+ */
41
+ #define XSLT_STRANGE \
42
+ xsltGenericError(xsltGenericErrorContext, \
43
+ "Internal error at %s:%d\n", \
44
+ __FILE__, __LINE__);
45
+
46
+ /**
47
+ * IS_XSLT_ELEM:
48
+ *
49
+ * Checks that the element pertains to XSLT namespace.
50
+ */
51
+ #define IS_XSLT_ELEM(n) \
52
+ (((n) != NULL) && ((n)->type == XML_ELEMENT_NODE) && \
53
+ ((n)->ns != NULL) && (xmlStrEqual((n)->ns->href, XSLT_NAMESPACE)))
54
+
55
+ /**
56
+ * IS_XSLT_NAME:
57
+ *
58
+ * Checks the value of an element in XSLT namespace.
59
+ */
60
+ #define IS_XSLT_NAME(n, val) \
61
+ (xmlStrEqual((n)->name, (const xmlChar *) (val)))
62
+
63
+ /**
64
+ * IS_XSLT_REAL_NODE:
65
+ *
66
+ * Check that a node is a 'real' one: document, element, text or attribute.
67
+ */
68
+ #define IS_XSLT_REAL_NODE(n) \
69
+ (((n) != NULL) && \
70
+ (((n)->type == XML_ELEMENT_NODE) || \
71
+ ((n)->type == XML_TEXT_NODE) || \
72
+ ((n)->type == XML_CDATA_SECTION_NODE) || \
73
+ ((n)->type == XML_ATTRIBUTE_NODE) || \
74
+ ((n)->type == XML_DOCUMENT_NODE) || \
75
+ ((n)->type == XML_HTML_DOCUMENT_NODE) || \
76
+ ((n)->type == XML_COMMENT_NODE) || \
77
+ ((n)->type == XML_PI_NODE)))
78
+
79
+ /*
80
+ * Our own version of namespaced attributes lookup.
81
+ */
82
+ XSLTPUBFUN xmlChar * XSLTCALL
83
+ xsltGetNsProp (xmlNodePtr node,
84
+ const xmlChar *name,
85
+ const xmlChar *nameSpace);
86
+ XSLTPUBFUN const xmlChar * XSLTCALL
87
+ xsltGetCNsProp (xsltStylesheetPtr style,
88
+ xmlNodePtr node,
89
+ const xmlChar *name,
90
+ const xmlChar *nameSpace);
91
+ XSLTPUBFUN int XSLTCALL
92
+ xsltGetUTF8Char (const unsigned char *utf,
93
+ int *len);
94
+
95
+ /*
96
+ * XSLT Debug Tracing Tracing Types
97
+ */
98
+ typedef enum {
99
+ XSLT_TRACE_ALL = -1,
100
+ XSLT_TRACE_NONE = 0,
101
+ XSLT_TRACE_COPY_TEXT = 1<<0,
102
+ XSLT_TRACE_PROCESS_NODE = 1<<1,
103
+ XSLT_TRACE_APPLY_TEMPLATE = 1<<2,
104
+ XSLT_TRACE_COPY = 1<<3,
105
+ XSLT_TRACE_COMMENT = 1<<4,
106
+ XSLT_TRACE_PI = 1<<5,
107
+ XSLT_TRACE_COPY_OF = 1<<6,
108
+ XSLT_TRACE_VALUE_OF = 1<<7,
109
+ XSLT_TRACE_CALL_TEMPLATE = 1<<8,
110
+ XSLT_TRACE_APPLY_TEMPLATES = 1<<9,
111
+ XSLT_TRACE_CHOOSE = 1<<10,
112
+ XSLT_TRACE_IF = 1<<11,
113
+ XSLT_TRACE_FOR_EACH = 1<<12,
114
+ XSLT_TRACE_STRIP_SPACES = 1<<13,
115
+ XSLT_TRACE_TEMPLATES = 1<<14,
116
+ XSLT_TRACE_KEYS = 1<<15,
117
+ XSLT_TRACE_VARIABLES = 1<<16
118
+ } xsltDebugTraceCodes;
119
+
120
+ /**
121
+ * XSLT_TRACE:
122
+ *
123
+ * Control the type of xsl debugtrace messages emitted.
124
+ */
125
+ #define XSLT_TRACE(ctxt,code,call) \
126
+ if (ctxt->traceCode && (*(ctxt->traceCode) & code)) \
127
+ call
128
+
129
+ XSLTPUBFUN void XSLTCALL
130
+ xsltDebugSetDefaultTrace(xsltDebugTraceCodes val);
131
+ XSLTPUBFUN xsltDebugTraceCodes XSLTCALL
132
+ xsltDebugGetDefaultTrace(void);
133
+
134
+ /*
135
+ * XSLT specific error and debug reporting functions.
136
+ */
137
+ XSLTPUBVAR xmlGenericErrorFunc xsltGenericError;
138
+ XSLTPUBVAR void *xsltGenericErrorContext;
139
+ XSLTPUBVAR xmlGenericErrorFunc xsltGenericDebug;
140
+ XSLTPUBVAR void *xsltGenericDebugContext;
141
+
142
+ XSLTPUBFUN void XSLTCALL
143
+ xsltPrintErrorContext (xsltTransformContextPtr ctxt,
144
+ xsltStylesheetPtr style,
145
+ xmlNodePtr node);
146
+ XSLTPUBFUN void XSLTCALL
147
+ xsltMessage (xsltTransformContextPtr ctxt,
148
+ xmlNodePtr node,
149
+ xmlNodePtr inst);
150
+ XSLTPUBFUN void XSLTCALL
151
+ xsltSetGenericErrorFunc (void *ctx,
152
+ xmlGenericErrorFunc handler);
153
+ XSLTPUBFUN void XSLTCALL
154
+ xsltSetGenericDebugFunc (void *ctx,
155
+ xmlGenericErrorFunc handler);
156
+ XSLTPUBFUN void XSLTCALL
157
+ xsltSetTransformErrorFunc (xsltTransformContextPtr ctxt,
158
+ void *ctx,
159
+ xmlGenericErrorFunc handler);
160
+ XSLTPUBFUN void XSLTCALL
161
+ xsltTransformError (xsltTransformContextPtr ctxt,
162
+ xsltStylesheetPtr style,
163
+ xmlNodePtr node,
164
+ const char *msg,
165
+ ...) LIBXSLT_ATTR_FORMAT(4,5);
166
+
167
+ XSLTPUBFUN int XSLTCALL
168
+ xsltSetCtxtParseOptions (xsltTransformContextPtr ctxt,
169
+ int options);
170
+ /*
171
+ * Sorting.
172
+ */
173
+
174
+ XSLTPUBFUN void XSLTCALL
175
+ xsltDocumentSortFunction (xmlNodeSetPtr list);
176
+ XSLTPUBFUN void XSLTCALL
177
+ xsltSetSortFunc (xsltSortFunc handler);
178
+ XSLTPUBFUN void XSLTCALL
179
+ xsltSetCtxtSortFunc (xsltTransformContextPtr ctxt,
180
+ xsltSortFunc handler);
181
+ XSLTPUBFUN void XSLTCALL
182
+ xsltDefaultSortFunction (xsltTransformContextPtr ctxt,
183
+ xmlNodePtr *sorts,
184
+ int nbsorts);
185
+ XSLTPUBFUN void XSLTCALL
186
+ xsltDoSortFunction (xsltTransformContextPtr ctxt,
187
+ xmlNodePtr * sorts,
188
+ int nbsorts);
189
+ XSLTPUBFUN xmlXPathObjectPtr * XSLTCALL
190
+ xsltComputeSortResult (xsltTransformContextPtr ctxt,
191
+ xmlNodePtr sort);
192
+
193
+ /*
194
+ * QNames handling.
195
+ */
196
+
197
+ XSLTPUBFUN const xmlChar * XSLTCALL
198
+ xsltSplitQName (xmlDictPtr dict,
199
+ const xmlChar *name,
200
+ const xmlChar **prefix);
201
+ XSLTPUBFUN const xmlChar * XSLTCALL
202
+ xsltGetQNameURI (xmlNodePtr node,
203
+ xmlChar **name);
204
+
205
+ XSLTPUBFUN const xmlChar * XSLTCALL
206
+ xsltGetQNameURI2 (xsltStylesheetPtr style,
207
+ xmlNodePtr node,
208
+ const xmlChar **name);
209
+
210
+ /*
211
+ * Output, reuse libxml I/O buffers.
212
+ */
213
+ XSLTPUBFUN int XSLTCALL
214
+ xsltSaveResultTo (xmlOutputBufferPtr buf,
215
+ xmlDocPtr result,
216
+ xsltStylesheetPtr style);
217
+ XSLTPUBFUN int XSLTCALL
218
+ xsltSaveResultToFilename (const char *URI,
219
+ xmlDocPtr result,
220
+ xsltStylesheetPtr style,
221
+ int compression);
222
+ XSLTPUBFUN int XSLTCALL
223
+ xsltSaveResultToFile (FILE *file,
224
+ xmlDocPtr result,
225
+ xsltStylesheetPtr style);
226
+ XSLTPUBFUN int XSLTCALL
227
+ xsltSaveResultToFd (int fd,
228
+ xmlDocPtr result,
229
+ xsltStylesheetPtr style);
230
+ XSLTPUBFUN int XSLTCALL
231
+ xsltSaveResultToString (xmlChar **doc_txt_ptr,
232
+ int * doc_txt_len,
233
+ xmlDocPtr result,
234
+ xsltStylesheetPtr style);
235
+
236
+ /*
237
+ * XPath interface
238
+ */
239
+ XSLTPUBFUN xmlXPathCompExprPtr XSLTCALL
240
+ xsltXPathCompile (xsltStylesheetPtr style,
241
+ const xmlChar *str);
242
+ XSLTPUBFUN xmlXPathCompExprPtr XSLTCALL
243
+ xsltXPathCompileFlags (xsltStylesheetPtr style,
244
+ const xmlChar *str,
245
+ int flags);
246
+
247
+ /*
248
+ * Profiling.
249
+ */
250
+ XSLTPUBFUN void XSLTCALL
251
+ xsltSaveProfiling (xsltTransformContextPtr ctxt,
252
+ FILE *output);
253
+ XSLTPUBFUN xmlDocPtr XSLTCALL
254
+ xsltGetProfileInformation (xsltTransformContextPtr ctxt);
255
+
256
+ XSLTPUBFUN long XSLTCALL
257
+ xsltTimestamp (void);
258
+ XSLTPUBFUN void XSLTCALL
259
+ xsltCalibrateAdjust (long delta);
260
+
261
+ /**
262
+ * XSLT_TIMESTAMP_TICS_PER_SEC:
263
+ *
264
+ * Sampling precision for profiling
265
+ */
266
+ #define XSLT_TIMESTAMP_TICS_PER_SEC 100000l
267
+
268
+ /*
269
+ * Hooks for the debugger.
270
+ */
271
+
272
+ typedef enum {
273
+ XSLT_DEBUG_NONE = 0, /* no debugging allowed */
274
+ XSLT_DEBUG_INIT,
275
+ XSLT_DEBUG_STEP,
276
+ XSLT_DEBUG_STEPOUT,
277
+ XSLT_DEBUG_NEXT,
278
+ XSLT_DEBUG_STOP,
279
+ XSLT_DEBUG_CONT,
280
+ XSLT_DEBUG_RUN,
281
+ XSLT_DEBUG_RUN_RESTART,
282
+ XSLT_DEBUG_QUIT
283
+ } xsltDebugStatusCodes;
284
+
285
+ XSLTPUBVAR int xslDebugStatus;
286
+
287
+ typedef void (*xsltHandleDebuggerCallback) (xmlNodePtr cur, xmlNodePtr node,
288
+ xsltTemplatePtr templ, xsltTransformContextPtr ctxt);
289
+ typedef int (*xsltAddCallCallback) (xsltTemplatePtr templ, xmlNodePtr source);
290
+ typedef void (*xsltDropCallCallback) (void);
291
+
292
+ XSLTPUBFUN void XSLTCALL
293
+ xsltSetDebuggerStatus (int value);
294
+ XSLTPUBFUN int XSLTCALL
295
+ xsltGetDebuggerStatus (void);
296
+ XSLTPUBFUN int XSLTCALL
297
+ xsltSetDebuggerCallbacks (int no, void *block);
298
+ XSLTPUBFUN int XSLTCALL
299
+ xslAddCall (xsltTemplatePtr templ,
300
+ xmlNodePtr source);
301
+ XSLTPUBFUN void XSLTCALL
302
+ xslDropCall (void);
303
+
304
+ #ifdef __cplusplus
305
+ }
306
+ #endif
307
+
308
+ #endif /* __XML_XSLTUTILS_H__ */
309
+
310
+