lxml 6.0.0__cp39-cp39-win_arm64.whl

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 (177) hide show
  1. lxml/ElementInclude.py +244 -0
  2. lxml/__init__.py +22 -0
  3. lxml/_elementpath.cp39-win_arm64.pyd +0 -0
  4. lxml/_elementpath.py +343 -0
  5. lxml/apihelpers.pxi +1801 -0
  6. lxml/builder.cp39-win_arm64.pyd +0 -0
  7. lxml/builder.py +243 -0
  8. lxml/classlookup.pxi +580 -0
  9. lxml/cleanup.pxi +215 -0
  10. lxml/cssselect.py +101 -0
  11. lxml/debug.pxi +36 -0
  12. lxml/docloader.pxi +178 -0
  13. lxml/doctestcompare.py +488 -0
  14. lxml/dtd.pxi +479 -0
  15. lxml/etree.cp39-win_arm64.pyd +0 -0
  16. lxml/etree.h +244 -0
  17. lxml/etree.pyx +3853 -0
  18. lxml/etree_api.h +204 -0
  19. lxml/extensions.pxi +830 -0
  20. lxml/html/ElementSoup.py +10 -0
  21. lxml/html/__init__.py +1927 -0
  22. lxml/html/_diffcommand.py +86 -0
  23. lxml/html/_difflib.cp39-win_arm64.pyd +0 -0
  24. lxml/html/_difflib.py +2106 -0
  25. lxml/html/_html5builder.py +100 -0
  26. lxml/html/_setmixin.py +56 -0
  27. lxml/html/builder.py +173 -0
  28. lxml/html/clean.py +21 -0
  29. lxml/html/defs.py +135 -0
  30. lxml/html/diff.cp39-win_arm64.pyd +0 -0
  31. lxml/html/diff.py +972 -0
  32. lxml/html/formfill.py +299 -0
  33. lxml/html/html5parser.py +260 -0
  34. lxml/html/soupparser.py +314 -0
  35. lxml/html/usedoctest.py +13 -0
  36. lxml/includes/__init__.pxd +0 -0
  37. lxml/includes/__init__.py +0 -0
  38. lxml/includes/c14n.pxd +25 -0
  39. lxml/includes/config.pxd +3 -0
  40. lxml/includes/dtdvalid.pxd +18 -0
  41. lxml/includes/etree_defs.h +379 -0
  42. lxml/includes/etreepublic.pxd +237 -0
  43. lxml/includes/extlibs/__init__.py +0 -0
  44. lxml/includes/extlibs/zconf.h +543 -0
  45. lxml/includes/extlibs/zlib.h +1938 -0
  46. lxml/includes/htmlparser.pxd +56 -0
  47. lxml/includes/libexslt/__init__.py +0 -0
  48. lxml/includes/libexslt/exslt.h +108 -0
  49. lxml/includes/libexslt/exsltconfig.h +70 -0
  50. lxml/includes/libexslt/exsltexports.h +63 -0
  51. lxml/includes/libexslt/libexslt.h +29 -0
  52. lxml/includes/libxml/HTMLparser.h +320 -0
  53. lxml/includes/libxml/HTMLtree.h +147 -0
  54. lxml/includes/libxml/SAX.h +204 -0
  55. lxml/includes/libxml/SAX2.h +173 -0
  56. lxml/includes/libxml/__init__.py +0 -0
  57. lxml/includes/libxml/c14n.h +128 -0
  58. lxml/includes/libxml/catalog.h +182 -0
  59. lxml/includes/libxml/chvalid.h +230 -0
  60. lxml/includes/libxml/debugXML.h +217 -0
  61. lxml/includes/libxml/dict.h +81 -0
  62. lxml/includes/libxml/encoding.h +233 -0
  63. lxml/includes/libxml/entities.h +151 -0
  64. lxml/includes/libxml/globals.h +529 -0
  65. lxml/includes/libxml/hash.h +236 -0
  66. lxml/includes/libxml/list.h +137 -0
  67. lxml/includes/libxml/nanoftp.h +186 -0
  68. lxml/includes/libxml/nanohttp.h +81 -0
  69. lxml/includes/libxml/parser.h +1265 -0
  70. lxml/includes/libxml/parserInternals.h +662 -0
  71. lxml/includes/libxml/pattern.h +100 -0
  72. lxml/includes/libxml/relaxng.h +218 -0
  73. lxml/includes/libxml/schemasInternals.h +958 -0
  74. lxml/includes/libxml/schematron.h +142 -0
  75. lxml/includes/libxml/threads.h +94 -0
  76. lxml/includes/libxml/tree.h +1314 -0
  77. lxml/includes/libxml/uri.h +94 -0
  78. lxml/includes/libxml/valid.h +448 -0
  79. lxml/includes/libxml/xinclude.h +129 -0
  80. lxml/includes/libxml/xlink.h +189 -0
  81. lxml/includes/libxml/xmlIO.h +369 -0
  82. lxml/includes/libxml/xmlautomata.h +146 -0
  83. lxml/includes/libxml/xmlerror.h +919 -0
  84. lxml/includes/libxml/xmlexports.h +50 -0
  85. lxml/includes/libxml/xmlmemory.h +228 -0
  86. lxml/includes/libxml/xmlmodule.h +57 -0
  87. lxml/includes/libxml/xmlreader.h +428 -0
  88. lxml/includes/libxml/xmlregexp.h +222 -0
  89. lxml/includes/libxml/xmlsave.h +88 -0
  90. lxml/includes/libxml/xmlschemas.h +246 -0
  91. lxml/includes/libxml/xmlschemastypes.h +152 -0
  92. lxml/includes/libxml/xmlstring.h +140 -0
  93. lxml/includes/libxml/xmlunicode.h +202 -0
  94. lxml/includes/libxml/xmlversion.h +526 -0
  95. lxml/includes/libxml/xmlwriter.h +488 -0
  96. lxml/includes/libxml/xpath.h +575 -0
  97. lxml/includes/libxml/xpathInternals.h +632 -0
  98. lxml/includes/libxml/xpointer.h +137 -0
  99. lxml/includes/libxslt/__init__.py +0 -0
  100. lxml/includes/libxslt/attributes.h +39 -0
  101. lxml/includes/libxslt/documents.h +93 -0
  102. lxml/includes/libxslt/extensions.h +262 -0
  103. lxml/includes/libxslt/extra.h +72 -0
  104. lxml/includes/libxslt/functions.h +78 -0
  105. lxml/includes/libxslt/imports.h +75 -0
  106. lxml/includes/libxslt/keys.h +53 -0
  107. lxml/includes/libxslt/libxslt.h +36 -0
  108. lxml/includes/libxslt/namespaces.h +68 -0
  109. lxml/includes/libxslt/numbersInternals.h +73 -0
  110. lxml/includes/libxslt/preproc.h +43 -0
  111. lxml/includes/libxslt/security.h +104 -0
  112. lxml/includes/libxslt/templates.h +77 -0
  113. lxml/includes/libxslt/transform.h +207 -0
  114. lxml/includes/libxslt/trio.h +216 -0
  115. lxml/includes/libxslt/triodef.h +220 -0
  116. lxml/includes/libxslt/variables.h +118 -0
  117. lxml/includes/libxslt/win32config.h +51 -0
  118. lxml/includes/libxslt/xslt.h +110 -0
  119. lxml/includes/libxslt/xsltInternals.h +1992 -0
  120. lxml/includes/libxslt/xsltconfig.h +179 -0
  121. lxml/includes/libxslt/xsltexports.h +64 -0
  122. lxml/includes/libxslt/xsltlocale.h +44 -0
  123. lxml/includes/libxslt/xsltutils.h +343 -0
  124. lxml/includes/lxml-version.h +3 -0
  125. lxml/includes/relaxng.pxd +64 -0
  126. lxml/includes/schematron.pxd +34 -0
  127. lxml/includes/tree.pxd +492 -0
  128. lxml/includes/uri.pxd +5 -0
  129. lxml/includes/xinclude.pxd +22 -0
  130. lxml/includes/xmlerror.pxd +852 -0
  131. lxml/includes/xmlparser.pxd +303 -0
  132. lxml/includes/xmlschema.pxd +35 -0
  133. lxml/includes/xpath.pxd +136 -0
  134. lxml/includes/xslt.pxd +190 -0
  135. lxml/isoschematron/__init__.py +348 -0
  136. lxml/isoschematron/resources/rng/iso-schematron.rng +709 -0
  137. lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl +75 -0
  138. lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl +77 -0
  139. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl +313 -0
  140. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl +1160 -0
  141. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl +55 -0
  142. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl +1796 -0
  143. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl +588 -0
  144. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt +84 -0
  145. lxml/iterparse.pxi +438 -0
  146. lxml/lxml.etree.h +244 -0
  147. lxml/lxml.etree_api.h +204 -0
  148. lxml/nsclasses.pxi +281 -0
  149. lxml/objectify.cp39-win_arm64.pyd +0 -0
  150. lxml/objectify.pyx +2149 -0
  151. lxml/objectpath.pxi +332 -0
  152. lxml/parser.pxi +2059 -0
  153. lxml/parsertarget.pxi +180 -0
  154. lxml/proxy.pxi +619 -0
  155. lxml/public-api.pxi +178 -0
  156. lxml/pyclasslookup.py +3 -0
  157. lxml/readonlytree.pxi +565 -0
  158. lxml/relaxng.pxi +165 -0
  159. lxml/sax.cp39-win_arm64.pyd +0 -0
  160. lxml/sax.py +286 -0
  161. lxml/saxparser.pxi +875 -0
  162. lxml/schematron.pxi +173 -0
  163. lxml/serializer.pxi +1849 -0
  164. lxml/usedoctest.py +13 -0
  165. lxml/xinclude.pxi +67 -0
  166. lxml/xmlerror.pxi +1654 -0
  167. lxml/xmlid.pxi +179 -0
  168. lxml/xmlschema.pxi +215 -0
  169. lxml/xpath.pxi +487 -0
  170. lxml/xslt.pxi +957 -0
  171. lxml/xsltext.pxi +242 -0
  172. lxml-6.0.0.dist-info/METADATA +163 -0
  173. lxml-6.0.0.dist-info/RECORD +177 -0
  174. lxml-6.0.0.dist-info/WHEEL +5 -0
  175. lxml-6.0.0.dist-info/licenses/LICENSE.txt +31 -0
  176. lxml-6.0.0.dist-info/licenses/LICENSES.txt +29 -0
  177. lxml-6.0.0.dist-info/top_level.txt +1 -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.39"
24
+
25
+ /**
26
+ * LIBXSLT_VERSION:
27
+ *
28
+ * the version number: 1.2.3 value is 10203
29
+ */
30
+ #define LIBXSLT_VERSION 10139
31
+
32
+ /**
33
+ * LIBXSLT_VERSION_STRING:
34
+ *
35
+ * the version number string, 1.2.3 value is "10203"
36
+ */
37
+ #define LIBXSLT_VERSION_STRING "10139"
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() "NULL"
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,44 @@
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 __cplusplus
18
+ extern "C" {
19
+ #endif
20
+
21
+ XSLTPUBFUN void * XSLTCALL
22
+ xsltNewLocale (const xmlChar *langName,
23
+ int lowerFirst);
24
+ XSLTPUBFUN void XSLTCALL
25
+ xsltFreeLocale (void *locale);
26
+ XSLTPUBFUN xmlChar * XSLTCALL
27
+ xsltStrxfrm (void *locale,
28
+ const xmlChar *string);
29
+ XSLTPUBFUN void XSLTCALL
30
+ xsltFreeLocales (void);
31
+
32
+ /* Backward compatibility */
33
+ typedef void *xsltLocale;
34
+ typedef xmlChar xsltLocaleChar;
35
+ XSLTPUBFUN int XSLTCALL
36
+ xsltLocaleStrcmp (void *locale,
37
+ const xmlChar *str1,
38
+ const xmlChar *str2);
39
+
40
+ #ifdef __cplusplus
41
+ }
42
+ #endif
43
+
44
+ #endif /* __XML_XSLTLOCALE_H__ */
@@ -0,0 +1,343 @@
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
+ #ifdef IN_LIBXSLT
95
+ /** DOC_DISABLE */
96
+ XSLTPUBFUN int XSLTCALL
97
+ xsltGetUTF8CharZ (const unsigned char *utf,
98
+ int *len);
99
+ /** DOC_ENABLE */
100
+ #endif
101
+
102
+ /*
103
+ * XSLT Debug Tracing Tracing Types
104
+ */
105
+ typedef enum {
106
+ XSLT_TRACE_ALL = -1,
107
+ XSLT_TRACE_NONE = 0,
108
+ XSLT_TRACE_COPY_TEXT = 1<<0,
109
+ XSLT_TRACE_PROCESS_NODE = 1<<1,
110
+ XSLT_TRACE_APPLY_TEMPLATE = 1<<2,
111
+ XSLT_TRACE_COPY = 1<<3,
112
+ XSLT_TRACE_COMMENT = 1<<4,
113
+ XSLT_TRACE_PI = 1<<5,
114
+ XSLT_TRACE_COPY_OF = 1<<6,
115
+ XSLT_TRACE_VALUE_OF = 1<<7,
116
+ XSLT_TRACE_CALL_TEMPLATE = 1<<8,
117
+ XSLT_TRACE_APPLY_TEMPLATES = 1<<9,
118
+ XSLT_TRACE_CHOOSE = 1<<10,
119
+ XSLT_TRACE_IF = 1<<11,
120
+ XSLT_TRACE_FOR_EACH = 1<<12,
121
+ XSLT_TRACE_STRIP_SPACES = 1<<13,
122
+ XSLT_TRACE_TEMPLATES = 1<<14,
123
+ XSLT_TRACE_KEYS = 1<<15,
124
+ XSLT_TRACE_VARIABLES = 1<<16
125
+ } xsltDebugTraceCodes;
126
+
127
+ /**
128
+ * XSLT_TRACE:
129
+ *
130
+ * Control the type of xsl debugtrace messages emitted.
131
+ */
132
+ #define XSLT_TRACE(ctxt,code,call) \
133
+ if (ctxt->traceCode && (*(ctxt->traceCode) & code)) \
134
+ call
135
+
136
+ XSLTPUBFUN void XSLTCALL
137
+ xsltDebugSetDefaultTrace(xsltDebugTraceCodes val);
138
+ XSLTPUBFUN xsltDebugTraceCodes XSLTCALL
139
+ xsltDebugGetDefaultTrace(void);
140
+
141
+ /*
142
+ * XSLT specific error and debug reporting functions.
143
+ */
144
+ XSLTPUBVAR xmlGenericErrorFunc xsltGenericError;
145
+ XSLTPUBVAR void *xsltGenericErrorContext;
146
+ XSLTPUBVAR xmlGenericErrorFunc xsltGenericDebug;
147
+ XSLTPUBVAR void *xsltGenericDebugContext;
148
+
149
+ XSLTPUBFUN void XSLTCALL
150
+ xsltPrintErrorContext (xsltTransformContextPtr ctxt,
151
+ xsltStylesheetPtr style,
152
+ xmlNodePtr node);
153
+ XSLTPUBFUN void XSLTCALL
154
+ xsltMessage (xsltTransformContextPtr ctxt,
155
+ xmlNodePtr node,
156
+ xmlNodePtr inst);
157
+ XSLTPUBFUN void XSLTCALL
158
+ xsltSetGenericErrorFunc (void *ctx,
159
+ xmlGenericErrorFunc handler);
160
+ XSLTPUBFUN void XSLTCALL
161
+ xsltSetGenericDebugFunc (void *ctx,
162
+ xmlGenericErrorFunc handler);
163
+ XSLTPUBFUN void XSLTCALL
164
+ xsltSetTransformErrorFunc (xsltTransformContextPtr ctxt,
165
+ void *ctx,
166
+ xmlGenericErrorFunc handler);
167
+ XSLTPUBFUN void XSLTCALL
168
+ xsltTransformError (xsltTransformContextPtr ctxt,
169
+ xsltStylesheetPtr style,
170
+ xmlNodePtr node,
171
+ const char *msg,
172
+ ...) LIBXSLT_ATTR_FORMAT(4,5);
173
+
174
+ XSLTPUBFUN int XSLTCALL
175
+ xsltSetCtxtParseOptions (xsltTransformContextPtr ctxt,
176
+ int options);
177
+ /*
178
+ * Sorting.
179
+ */
180
+
181
+ XSLTPUBFUN void XSLTCALL
182
+ xsltDocumentSortFunction (xmlNodeSetPtr list);
183
+ XSLTPUBFUN void XSLTCALL
184
+ xsltSetSortFunc (xsltSortFunc handler);
185
+ XSLTPUBFUN void XSLTCALL
186
+ xsltSetCtxtSortFunc (xsltTransformContextPtr ctxt,
187
+ xsltSortFunc handler);
188
+ XSLTPUBFUN void XSLTCALL
189
+ xsltSetCtxtLocaleHandlers (xsltTransformContextPtr ctxt,
190
+ xsltNewLocaleFunc newLocale,
191
+ xsltFreeLocaleFunc freeLocale,
192
+ xsltGenSortKeyFunc genSortKey);
193
+ XSLTPUBFUN void XSLTCALL
194
+ xsltDefaultSortFunction (xsltTransformContextPtr ctxt,
195
+ xmlNodePtr *sorts,
196
+ int nbsorts);
197
+ XSLTPUBFUN void XSLTCALL
198
+ xsltDoSortFunction (xsltTransformContextPtr ctxt,
199
+ xmlNodePtr * sorts,
200
+ int nbsorts);
201
+ XSLTPUBFUN xmlXPathObjectPtr * XSLTCALL
202
+ xsltComputeSortResult (xsltTransformContextPtr ctxt,
203
+ xmlNodePtr sort);
204
+
205
+ /*
206
+ * QNames handling.
207
+ */
208
+
209
+ XSLTPUBFUN const xmlChar * XSLTCALL
210
+ xsltSplitQName (xmlDictPtr dict,
211
+ const xmlChar *name,
212
+ const xmlChar **prefix);
213
+ XSLTPUBFUN const xmlChar * XSLTCALL
214
+ xsltGetQNameURI (xmlNodePtr node,
215
+ xmlChar **name);
216
+
217
+ XSLTPUBFUN const xmlChar * XSLTCALL
218
+ xsltGetQNameURI2 (xsltStylesheetPtr style,
219
+ xmlNodePtr node,
220
+ const xmlChar **name);
221
+
222
+ /*
223
+ * Output, reuse libxml I/O buffers.
224
+ */
225
+ XSLTPUBFUN int XSLTCALL
226
+ xsltSaveResultTo (xmlOutputBufferPtr buf,
227
+ xmlDocPtr result,
228
+ xsltStylesheetPtr style);
229
+ XSLTPUBFUN int XSLTCALL
230
+ xsltSaveResultToFilename (const char *URI,
231
+ xmlDocPtr result,
232
+ xsltStylesheetPtr style,
233
+ int compression);
234
+ XSLTPUBFUN int XSLTCALL
235
+ xsltSaveResultToFile (FILE *file,
236
+ xmlDocPtr result,
237
+ xsltStylesheetPtr style);
238
+ XSLTPUBFUN int XSLTCALL
239
+ xsltSaveResultToFd (int fd,
240
+ xmlDocPtr result,
241
+ xsltStylesheetPtr style);
242
+ XSLTPUBFUN int XSLTCALL
243
+ xsltSaveResultToString (xmlChar **doc_txt_ptr,
244
+ int * doc_txt_len,
245
+ xmlDocPtr result,
246
+ xsltStylesheetPtr style);
247
+
248
+ /*
249
+ * XPath interface
250
+ */
251
+ XSLTPUBFUN xmlXPathCompExprPtr XSLTCALL
252
+ xsltXPathCompile (xsltStylesheetPtr style,
253
+ const xmlChar *str);
254
+ XSLTPUBFUN xmlXPathCompExprPtr XSLTCALL
255
+ xsltXPathCompileFlags (xsltStylesheetPtr style,
256
+ const xmlChar *str,
257
+ int flags);
258
+
259
+ #ifdef IN_LIBXSLT
260
+ /** DOC_DISABLE */
261
+ #define XSLT_SOURCE_NODE_MASK 15u
262
+ #define XSLT_SOURCE_NODE_HAS_KEY 1u
263
+ #define XSLT_SOURCE_NODE_HAS_ID 2u
264
+ int
265
+ xsltGetSourceNodeFlags(xmlNodePtr node);
266
+ int
267
+ xsltSetSourceNodeFlags(xsltTransformContextPtr ctxt, xmlNodePtr node,
268
+ int flags);
269
+ int
270
+ xsltClearSourceNodeFlags(xmlNodePtr node, int flags);
271
+ void **
272
+ xsltGetPSVIPtr(xmlNodePtr cur);
273
+ /** DOC_ENABLE */
274
+ #endif
275
+
276
+ #ifdef WITH_PROFILER
277
+ /*
278
+ * Profiling.
279
+ */
280
+ XSLTPUBFUN void XSLTCALL
281
+ xsltSaveProfiling (xsltTransformContextPtr ctxt,
282
+ FILE *output);
283
+ XSLTPUBFUN xmlDocPtr XSLTCALL
284
+ xsltGetProfileInformation (xsltTransformContextPtr ctxt);
285
+
286
+ XSLTPUBFUN long XSLTCALL
287
+ xsltTimestamp (void);
288
+ XSLTPUBFUN void XSLTCALL
289
+ xsltCalibrateAdjust (long delta);
290
+ #endif
291
+
292
+ /**
293
+ * XSLT_TIMESTAMP_TICS_PER_SEC:
294
+ *
295
+ * Sampling precision for profiling
296
+ */
297
+ #define XSLT_TIMESTAMP_TICS_PER_SEC 100000l
298
+
299
+ /*
300
+ * Hooks for the debugger.
301
+ */
302
+
303
+ typedef enum {
304
+ XSLT_DEBUG_NONE = 0, /* no debugging allowed */
305
+ XSLT_DEBUG_INIT,
306
+ XSLT_DEBUG_STEP,
307
+ XSLT_DEBUG_STEPOUT,
308
+ XSLT_DEBUG_NEXT,
309
+ XSLT_DEBUG_STOP,
310
+ XSLT_DEBUG_CONT,
311
+ XSLT_DEBUG_RUN,
312
+ XSLT_DEBUG_RUN_RESTART,
313
+ XSLT_DEBUG_QUIT
314
+ } xsltDebugStatusCodes;
315
+
316
+ XSLTPUBVAR int xslDebugStatus;
317
+
318
+ typedef void (*xsltHandleDebuggerCallback) (xmlNodePtr cur, xmlNodePtr node,
319
+ xsltTemplatePtr templ, xsltTransformContextPtr ctxt);
320
+ typedef int (*xsltAddCallCallback) (xsltTemplatePtr templ, xmlNodePtr source);
321
+ typedef void (*xsltDropCallCallback) (void);
322
+
323
+ XSLTPUBFUN int XSLTCALL
324
+ xsltGetDebuggerStatus (void);
325
+ #ifdef WITH_DEBUGGER
326
+ XSLTPUBFUN void XSLTCALL
327
+ xsltSetDebuggerStatus (int value);
328
+ XSLTPUBFUN int XSLTCALL
329
+ xsltSetDebuggerCallbacks (int no, void *block);
330
+ XSLTPUBFUN int XSLTCALL
331
+ xslAddCall (xsltTemplatePtr templ,
332
+ xmlNodePtr source);
333
+ XSLTPUBFUN void XSLTCALL
334
+ xslDropCall (void);
335
+ #endif
336
+
337
+ #ifdef __cplusplus
338
+ }
339
+ #endif
340
+
341
+ #endif /* __XML_XSLTUTILS_H__ */
342
+
343
+
@@ -0,0 +1,3 @@
1
+ #ifndef LXML_VERSION_STRING
2
+ #define LXML_VERSION_STRING "6.0.0"
3
+ #endif
@@ -0,0 +1,64 @@
1
+ from lxml.includes.tree cimport xmlDoc
2
+ from lxml.includes.xmlerror cimport xmlStructuredErrorFunc
3
+
4
+ cdef extern from "libxml/relaxng.h" nogil:
5
+ ctypedef struct xmlRelaxNG
6
+ ctypedef struct xmlRelaxNGParserCtxt
7
+
8
+ ctypedef struct xmlRelaxNGValidCtxt
9
+
10
+ ctypedef enum xmlRelaxNGValidErr:
11
+ XML_RELAXNG_OK = 0
12
+ XML_RELAXNG_ERR_MEMORY = 1
13
+ XML_RELAXNG_ERR_TYPE = 2
14
+ XML_RELAXNG_ERR_TYPEVAL = 3
15
+ XML_RELAXNG_ERR_DUPID = 4
16
+ XML_RELAXNG_ERR_TYPECMP = 5
17
+ XML_RELAXNG_ERR_NOSTATE = 6
18
+ XML_RELAXNG_ERR_NODEFINE = 7
19
+ XML_RELAXNG_ERR_LISTEXTRA = 8
20
+ XML_RELAXNG_ERR_LISTEMPTY = 9
21
+ XML_RELAXNG_ERR_INTERNODATA = 10
22
+ XML_RELAXNG_ERR_INTERSEQ = 11
23
+ XML_RELAXNG_ERR_INTEREXTRA = 12
24
+ XML_RELAXNG_ERR_ELEMNAME = 13
25
+ XML_RELAXNG_ERR_ATTRNAME = 14
26
+ XML_RELAXNG_ERR_ELEMNONS = 15
27
+ XML_RELAXNG_ERR_ATTRNONS = 16
28
+ XML_RELAXNG_ERR_ELEMWRONGNS = 17
29
+ XML_RELAXNG_ERR_ATTRWRONGNS = 18
30
+ XML_RELAXNG_ERR_ELEMEXTRANS = 19
31
+ XML_RELAXNG_ERR_ATTREXTRANS = 20
32
+ XML_RELAXNG_ERR_ELEMNOTEMPTY = 21
33
+ XML_RELAXNG_ERR_NOELEM = 22
34
+ XML_RELAXNG_ERR_NOTELEM = 23
35
+ XML_RELAXNG_ERR_ATTRVALID = 24
36
+ XML_RELAXNG_ERR_CONTENTVALID = 25
37
+ XML_RELAXNG_ERR_EXTRACONTENT = 26
38
+ XML_RELAXNG_ERR_INVALIDATTR = 27
39
+ XML_RELAXNG_ERR_DATAELEM = 28
40
+ XML_RELAXNG_ERR_VALELEM = 29
41
+ XML_RELAXNG_ERR_LISTELEM = 30
42
+ XML_RELAXNG_ERR_DATATYPE = 31
43
+ XML_RELAXNG_ERR_VALUE = 32
44
+ XML_RELAXNG_ERR_LIST = 33
45
+ XML_RELAXNG_ERR_NOGRAMMAR = 34
46
+ XML_RELAXNG_ERR_EXTRADATA = 35
47
+ XML_RELAXNG_ERR_LACKDATA = 36
48
+ XML_RELAXNG_ERR_INTERNAL = 37
49
+ XML_RELAXNG_ERR_ELEMWRONG = 38
50
+ XML_RELAXNG_ERR_TEXTWRONG = 39
51
+
52
+ cdef xmlRelaxNGValidCtxt* xmlRelaxNGNewValidCtxt(xmlRelaxNG* schema)
53
+ cdef int xmlRelaxNGValidateDoc(xmlRelaxNGValidCtxt* ctxt, xmlDoc* doc)
54
+ cdef xmlRelaxNG* xmlRelaxNGParse(xmlRelaxNGParserCtxt* ctxt)
55
+ cdef xmlRelaxNGParserCtxt* xmlRelaxNGNewParserCtxt(char* URL)
56
+ cdef xmlRelaxNGParserCtxt* xmlRelaxNGNewDocParserCtxt(xmlDoc* doc)
57
+ cdef void xmlRelaxNGFree(xmlRelaxNG* schema)
58
+ cdef void xmlRelaxNGFreeParserCtxt(xmlRelaxNGParserCtxt* ctxt)
59
+ cdef void xmlRelaxNGFreeValidCtxt(xmlRelaxNGValidCtxt* ctxt)
60
+
61
+ cdef void xmlRelaxNGSetValidStructuredErrors(
62
+ xmlRelaxNGValidCtxt* ctxt, xmlStructuredErrorFunc serror, void *ctx)
63
+ cdef void xmlRelaxNGSetParserStructuredErrors(
64
+ xmlRelaxNGParserCtxt* ctxt, xmlStructuredErrorFunc serror, void *ctx)