@img/sharp-libvips-dev 1.2.2-rc.2 → 1.2.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.
- package/include/expat.h +37 -24
- package/include/expat_config.h +9 -9
- package/include/expat_external.h +62 -61
- package/include/libxml2/libxml/HTMLparser.h +159 -101
- package/include/libxml2/libxml/HTMLtree.h +49 -74
- package/include/libxml2/libxml/SAX.h +8 -5
- package/include/libxml2/libxml/SAX2.h +18 -15
- package/include/libxml2/libxml/c14n.h +30 -29
- package/include/libxml2/libxml/catalog.h +47 -22
- package/include/libxml2/libxml/chvalid.h +52 -64
- package/include/libxml2/libxml/debugXML.h +18 -15
- package/include/libxml2/libxml/dict.h +22 -19
- package/include/libxml2/libxml/encoding.h +144 -111
- package/include/libxml2/libxml/entities.h +95 -75
- package/include/libxml2/libxml/globals.h +7 -4
- package/include/libxml2/libxml/hash.h +61 -64
- package/include/libxml2/libxml/list.h +59 -51
- package/include/libxml2/libxml/nanoftp.h +7 -4
- package/include/libxml2/libxml/nanohttp.h +10 -7
- package/include/libxml2/libxml/parser.h +1091 -563
- package/include/libxml2/libxml/parserInternals.h +167 -214
- package/include/libxml2/libxml/pattern.h +29 -31
- package/include/libxml2/libxml/relaxng.h +59 -58
- package/include/libxml2/libxml/schemasInternals.h +114 -268
- package/include/libxml2/libxml/schematron.h +59 -51
- package/include/libxml2/libxml/threads.h +19 -20
- package/include/libxml2/libxml/tree.h +873 -623
- package/include/libxml2/libxml/uri.h +21 -22
- package/include/libxml2/libxml/valid.h +170 -199
- package/include/libxml2/libxml/xinclude.h +24 -43
- package/include/libxml2/libxml/xlink.h +55 -51
- package/include/libxml2/libxml/xmlIO.h +133 -151
- package/include/libxml2/libxml/xmlautomata.h +66 -65
- package/include/libxml2/libxml/xmlerror.h +197 -94
- package/include/libxml2/libxml/xmlexports.h +17 -19
- package/include/libxml2/libxml/xmlmemory.h +44 -29
- package/include/libxml2/libxml/xmlmodule.h +14 -15
- package/include/libxml2/libxml/xmlreader.h +137 -131
- package/include/libxml2/libxml/xmlregexp.h +28 -31
- package/include/libxml2/libxml/xmlsave.h +81 -36
- package/include/libxml2/libxml/xmlschemas.h +61 -67
- package/include/libxml2/libxml/xmlschemastypes.h +60 -54
- package/include/libxml2/libxml/xmlstring.h +8 -9
- package/include/libxml2/libxml/xmlunicode.h +6 -3
- package/include/libxml2/libxml/xmlversion.h +44 -121
- package/include/libxml2/libxml/xmlwriter.h +97 -97
- package/include/libxml2/libxml/xpath.h +235 -232
- package/include/libxml2/libxml/xpathInternals.h +247 -277
- package/include/libxml2/libxml/xpointer.h +21 -17
- package/package.json +1 -1
- package/versions.json +2 -2
|
@@ -1,181 +1,172 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
*
|
|
1
|
+
/**
|
|
2
|
+
* @file
|
|
3
|
+
*
|
|
4
|
+
* @brief I/O interfaces used by the parser
|
|
5
|
+
*
|
|
6
|
+
* Functions and datatypes for parser input and output.
|
|
4
7
|
*
|
|
5
|
-
*
|
|
8
|
+
* @copyright See Copyright for the status of this software.
|
|
6
9
|
*
|
|
7
|
-
*
|
|
10
|
+
* @author Daniel Veillard
|
|
8
11
|
*/
|
|
9
12
|
|
|
10
13
|
#ifndef __XML_IO_H__
|
|
11
14
|
#define __XML_IO_H__
|
|
12
15
|
|
|
13
|
-
/** DOC_DISABLE */
|
|
14
16
|
#include <stdio.h>
|
|
15
17
|
#include <libxml/xmlversion.h>
|
|
16
18
|
#include <libxml/encoding.h>
|
|
17
19
|
#define XML_TREE_INTERNALS
|
|
18
20
|
#include <libxml/tree.h>
|
|
19
21
|
#undef XML_TREE_INTERNALS
|
|
20
|
-
/** DOC_ENABLE */
|
|
21
22
|
|
|
22
23
|
#ifdef __cplusplus
|
|
23
24
|
extern "C" {
|
|
24
25
|
#endif
|
|
25
26
|
|
|
26
|
-
/*
|
|
27
|
-
* Those are the functions and datatypes for the parser input
|
|
28
|
-
* I/O structures.
|
|
29
|
-
*/
|
|
30
|
-
|
|
31
27
|
/**
|
|
32
|
-
* xmlInputMatchCallback:
|
|
33
|
-
* @filename: the filename or URI
|
|
34
|
-
*
|
|
35
28
|
* Callback used in the I/O Input API to detect if the current handler
|
|
36
29
|
* can provide input functionality for this resource.
|
|
37
30
|
*
|
|
38
|
-
*
|
|
31
|
+
* @param filename the filename or URI
|
|
32
|
+
* @returns 1 if yes and 0 if another Input module should be used
|
|
39
33
|
*/
|
|
40
|
-
typedef int (*xmlInputMatchCallback) (char
|
|
34
|
+
typedef int (*xmlInputMatchCallback) (const char *filename);
|
|
41
35
|
/**
|
|
42
|
-
* xmlInputOpenCallback:
|
|
43
|
-
* @filename: the filename or URI
|
|
44
|
-
*
|
|
45
36
|
* Callback used in the I/O Input API to open the resource
|
|
46
37
|
*
|
|
47
|
-
*
|
|
38
|
+
* @param filename the filename or URI
|
|
39
|
+
* @returns an Input context or NULL in case or error
|
|
48
40
|
*/
|
|
49
|
-
typedef void * (*xmlInputOpenCallback) (char
|
|
41
|
+
typedef void * (*xmlInputOpenCallback) (const char *filename);
|
|
50
42
|
/**
|
|
51
|
-
* xmlInputReadCallback:
|
|
52
|
-
* @context: an Input context
|
|
53
|
-
* @buffer: the buffer to store data read
|
|
54
|
-
* @len: the length of the buffer in bytes
|
|
55
|
-
*
|
|
56
43
|
* Callback used in the I/O Input API to read the resource
|
|
57
44
|
*
|
|
58
|
-
*
|
|
45
|
+
* @param context an Input context
|
|
46
|
+
* @param buffer the buffer to store data read
|
|
47
|
+
* @param len the length of the buffer in bytes
|
|
48
|
+
* @returns the number of bytes read or -1 in case of error
|
|
59
49
|
*/
|
|
60
50
|
typedef int (*xmlInputReadCallback) (void * context, char * buffer, int len);
|
|
61
51
|
/**
|
|
62
|
-
* xmlInputCloseCallback:
|
|
63
|
-
* @context: an Input context
|
|
64
|
-
*
|
|
65
52
|
* Callback used in the I/O Input API to close the resource
|
|
66
53
|
*
|
|
67
|
-
*
|
|
54
|
+
* @param context an Input context
|
|
55
|
+
* @returns 0 or -1 in case of error
|
|
68
56
|
*/
|
|
69
57
|
typedef int (*xmlInputCloseCallback) (void * context);
|
|
70
58
|
|
|
71
59
|
#ifdef LIBXML_OUTPUT_ENABLED
|
|
72
|
-
/*
|
|
73
|
-
* Those are the functions and datatypes for the library output
|
|
74
|
-
* I/O structures.
|
|
75
|
-
*/
|
|
76
|
-
|
|
77
60
|
/**
|
|
78
|
-
* xmlOutputMatchCallback:
|
|
79
|
-
* @filename: the filename or URI
|
|
80
|
-
*
|
|
81
61
|
* Callback used in the I/O Output API to detect if the current handler
|
|
82
62
|
* can provide output functionality for this resource.
|
|
83
63
|
*
|
|
84
|
-
*
|
|
64
|
+
* @param filename the filename or URI
|
|
65
|
+
* @returns 1 if yes and 0 if another Output module should be used
|
|
85
66
|
*/
|
|
86
|
-
typedef int (*xmlOutputMatchCallback) (char
|
|
67
|
+
typedef int (*xmlOutputMatchCallback) (const char *filename);
|
|
87
68
|
/**
|
|
88
|
-
* xmlOutputOpenCallback:
|
|
89
|
-
* @filename: the filename or URI
|
|
90
|
-
*
|
|
91
69
|
* Callback used in the I/O Output API to open the resource
|
|
92
70
|
*
|
|
93
|
-
*
|
|
71
|
+
* @param filename the filename or URI
|
|
72
|
+
* @returns an Output context or NULL in case or error
|
|
94
73
|
*/
|
|
95
|
-
typedef void * (*xmlOutputOpenCallback) (char
|
|
74
|
+
typedef void * (*xmlOutputOpenCallback) (const char *filename);
|
|
96
75
|
/**
|
|
97
|
-
* xmlOutputWriteCallback:
|
|
98
|
-
* @context: an Output context
|
|
99
|
-
* @buffer: the buffer of data to write
|
|
100
|
-
* @len: the length of the buffer in bytes
|
|
101
|
-
*
|
|
102
76
|
* Callback used in the I/O Output API to write to the resource
|
|
103
77
|
*
|
|
104
|
-
*
|
|
78
|
+
* @param context an Output context
|
|
79
|
+
* @param buffer the buffer of data to write
|
|
80
|
+
* @param len the length of the buffer in bytes
|
|
81
|
+
* @returns the number of bytes written or -1 in case of error
|
|
105
82
|
*/
|
|
106
83
|
typedef int (*xmlOutputWriteCallback) (void * context, const char * buffer,
|
|
107
84
|
int len);
|
|
108
85
|
/**
|
|
109
|
-
* xmlOutputCloseCallback:
|
|
110
|
-
* @context: an Output context
|
|
111
|
-
*
|
|
112
86
|
* Callback used in the I/O Output API to close the resource
|
|
113
87
|
*
|
|
114
|
-
*
|
|
88
|
+
* @param context an Output context
|
|
89
|
+
* @returns 0 or -1 in case of error
|
|
115
90
|
*/
|
|
116
91
|
typedef int (*xmlOutputCloseCallback) (void * context);
|
|
117
92
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
|
118
93
|
|
|
119
94
|
/**
|
|
120
|
-
* xmlParserInputBufferCreateFilenameFunc:
|
|
121
|
-
* @URI: the URI to read from
|
|
122
|
-
* @enc: the requested source encoding
|
|
123
|
-
*
|
|
124
95
|
* Signature for the function doing the lookup for a suitable input method
|
|
125
96
|
* corresponding to an URI.
|
|
126
97
|
*
|
|
127
|
-
*
|
|
98
|
+
* @param URI the URI to read from
|
|
99
|
+
* @param enc the requested source encoding
|
|
100
|
+
* @returns the new xmlParserInputBuffer in case of success or NULL if no
|
|
128
101
|
* method was found.
|
|
129
102
|
*/
|
|
130
|
-
typedef
|
|
103
|
+
typedef xmlParserInputBuffer *
|
|
131
104
|
(*xmlParserInputBufferCreateFilenameFunc)(const char *URI, xmlCharEncoding enc);
|
|
132
105
|
|
|
133
106
|
/**
|
|
134
|
-
* xmlOutputBufferCreateFilenameFunc:
|
|
135
|
-
* @URI: the URI to write to
|
|
136
|
-
* @enc: the requested target encoding
|
|
137
|
-
*
|
|
138
107
|
* Signature for the function doing the lookup for a suitable output method
|
|
139
108
|
* corresponding to an URI.
|
|
140
109
|
*
|
|
141
|
-
*
|
|
110
|
+
* @param URI the URI to write to
|
|
111
|
+
* @param encoder the requested target encoding
|
|
112
|
+
* @param compression compression level
|
|
113
|
+
* @returns the new xmlOutputBuffer in case of success or NULL if no
|
|
142
114
|
* method was found.
|
|
143
115
|
*/
|
|
144
|
-
typedef
|
|
116
|
+
typedef xmlOutputBuffer *
|
|
145
117
|
(*xmlOutputBufferCreateFilenameFunc)(const char *URI,
|
|
146
|
-
|
|
118
|
+
xmlCharEncodingHandler *encoder, int compression);
|
|
147
119
|
|
|
120
|
+
/**
|
|
121
|
+
* Parser input buffer
|
|
122
|
+
*
|
|
123
|
+
* This struct and all related functions should ultimately
|
|
124
|
+
* be removed from the public interface.
|
|
125
|
+
*/
|
|
148
126
|
struct _xmlParserInputBuffer {
|
|
149
|
-
void* context;
|
|
150
|
-
xmlInputReadCallback readcallback;
|
|
151
|
-
xmlInputCloseCallback closecallback;
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
127
|
+
void* context XML_DEPRECATED_MEMBER;
|
|
128
|
+
xmlInputReadCallback readcallback XML_DEPRECATED_MEMBER;
|
|
129
|
+
xmlInputCloseCallback closecallback XML_DEPRECATED_MEMBER;
|
|
130
|
+
|
|
131
|
+
/* I18N conversions to UTF-8 */
|
|
132
|
+
xmlCharEncodingHandler *encoder XML_DEPRECATED_MEMBER;
|
|
133
|
+
|
|
134
|
+
/* Local buffer encoded in UTF-8 */
|
|
135
|
+
xmlBuf *buffer XML_DEPRECATED_MEMBER;
|
|
136
|
+
/* if encoder != NULL buffer for raw input */
|
|
137
|
+
xmlBuf *raw XML_DEPRECATED_MEMBER;
|
|
138
|
+
/* -1=unknown, 0=not compressed, 1=compressed */
|
|
139
|
+
int compressed XML_DEPRECATED_MEMBER;
|
|
140
|
+
int error XML_DEPRECATED_MEMBER;
|
|
141
|
+
/* amount consumed from raw */
|
|
142
|
+
unsigned long rawconsumed XML_DEPRECATED_MEMBER;
|
|
160
143
|
};
|
|
161
144
|
|
|
162
145
|
|
|
163
146
|
#ifdef LIBXML_OUTPUT_ENABLED
|
|
147
|
+
/**
|
|
148
|
+
* Output buffer
|
|
149
|
+
*/
|
|
164
150
|
struct _xmlOutputBuffer {
|
|
165
|
-
void* context;
|
|
166
|
-
xmlOutputWriteCallback writecallback;
|
|
167
|
-
xmlOutputCloseCallback closecallback;
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
151
|
+
void* context XML_DEPRECATED_MEMBER;
|
|
152
|
+
xmlOutputWriteCallback writecallback XML_DEPRECATED_MEMBER;
|
|
153
|
+
xmlOutputCloseCallback closecallback XML_DEPRECATED_MEMBER;
|
|
154
|
+
|
|
155
|
+
/* I18N conversions to UTF-8 */
|
|
156
|
+
xmlCharEncodingHandler *encoder XML_DEPRECATED_MEMBER;
|
|
157
|
+
|
|
158
|
+
/* Local buffer encoded in UTF-8 or ISOLatin */
|
|
159
|
+
xmlBuf *buffer XML_DEPRECATED_MEMBER;
|
|
160
|
+
/* if encoder != NULL buffer for output */
|
|
161
|
+
xmlBuf *conv XML_DEPRECATED_MEMBER;
|
|
162
|
+
/* total number of byte written */
|
|
163
|
+
int written XML_DEPRECATED_MEMBER;
|
|
164
|
+
int error XML_DEPRECATED_MEMBER;
|
|
175
165
|
};
|
|
176
166
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
|
177
167
|
|
|
178
|
-
/**
|
|
168
|
+
/** @cond ignore */
|
|
169
|
+
|
|
179
170
|
XML_DEPRECATED
|
|
180
171
|
XMLPUBFUN xmlParserInputBufferCreateFilenameFunc *
|
|
181
172
|
__xmlParserInputBufferCreateFilenameValue(void);
|
|
@@ -189,7 +180,8 @@ __xmlOutputBufferCreateFilenameValue(void);
|
|
|
189
180
|
#define xmlOutputBufferCreateFilenameValue \
|
|
190
181
|
(*__xmlOutputBufferCreateFilenameValue())
|
|
191
182
|
#endif
|
|
192
|
-
|
|
183
|
+
|
|
184
|
+
/** @endcond */
|
|
193
185
|
|
|
194
186
|
/*
|
|
195
187
|
* Interfaces for input
|
|
@@ -202,45 +194,45 @@ XMLPUBFUN int
|
|
|
202
194
|
|
|
203
195
|
XMLPUBFUN void
|
|
204
196
|
xmlRegisterDefaultInputCallbacks (void);
|
|
205
|
-
XMLPUBFUN
|
|
197
|
+
XMLPUBFUN xmlParserInputBuffer *
|
|
206
198
|
xmlAllocParserInputBuffer (xmlCharEncoding enc);
|
|
207
199
|
|
|
208
|
-
XMLPUBFUN
|
|
200
|
+
XMLPUBFUN xmlParserInputBuffer *
|
|
209
201
|
xmlParserInputBufferCreateFilename (const char *URI,
|
|
210
202
|
xmlCharEncoding enc);
|
|
211
203
|
XML_DEPRECATED
|
|
212
|
-
XMLPUBFUN
|
|
204
|
+
XMLPUBFUN xmlParserInputBuffer *
|
|
213
205
|
xmlParserInputBufferCreateFile (FILE *file,
|
|
214
206
|
xmlCharEncoding enc);
|
|
215
|
-
XMLPUBFUN
|
|
207
|
+
XMLPUBFUN xmlParserInputBuffer *
|
|
216
208
|
xmlParserInputBufferCreateFd (int fd,
|
|
217
209
|
xmlCharEncoding enc);
|
|
218
|
-
XMLPUBFUN
|
|
210
|
+
XMLPUBFUN xmlParserInputBuffer *
|
|
219
211
|
xmlParserInputBufferCreateMem (const char *mem, int size,
|
|
220
212
|
xmlCharEncoding enc);
|
|
221
|
-
XMLPUBFUN
|
|
213
|
+
XMLPUBFUN xmlParserInputBuffer *
|
|
222
214
|
xmlParserInputBufferCreateStatic (const char *mem, int size,
|
|
223
215
|
xmlCharEncoding enc);
|
|
224
|
-
XMLPUBFUN
|
|
216
|
+
XMLPUBFUN xmlParserInputBuffer *
|
|
225
217
|
xmlParserInputBufferCreateIO (xmlInputReadCallback ioread,
|
|
226
218
|
xmlInputCloseCallback ioclose,
|
|
227
219
|
void *ioctx,
|
|
228
220
|
xmlCharEncoding enc);
|
|
229
221
|
XML_DEPRECATED
|
|
230
222
|
XMLPUBFUN int
|
|
231
|
-
xmlParserInputBufferRead (
|
|
223
|
+
xmlParserInputBufferRead (xmlParserInputBuffer *in,
|
|
232
224
|
int len);
|
|
233
225
|
XML_DEPRECATED
|
|
234
226
|
XMLPUBFUN int
|
|
235
|
-
xmlParserInputBufferGrow (
|
|
227
|
+
xmlParserInputBufferGrow (xmlParserInputBuffer *in,
|
|
236
228
|
int len);
|
|
237
229
|
XML_DEPRECATED
|
|
238
230
|
XMLPUBFUN int
|
|
239
|
-
xmlParserInputBufferPush (
|
|
231
|
+
xmlParserInputBufferPush (xmlParserInputBuffer *in,
|
|
240
232
|
int len,
|
|
241
233
|
const char *buf);
|
|
242
234
|
XMLPUBFUN void
|
|
243
|
-
xmlFreeParserInputBuffer (
|
|
235
|
+
xmlFreeParserInputBuffer (xmlParserInputBuffer *in);
|
|
244
236
|
XMLPUBFUN char *
|
|
245
237
|
xmlParserGetDirectory (const char *filename);
|
|
246
238
|
|
|
@@ -250,7 +242,7 @@ XMLPUBFUN int
|
|
|
250
242
|
xmlInputReadCallback readFunc,
|
|
251
243
|
xmlInputCloseCallback closeFunc);
|
|
252
244
|
|
|
253
|
-
XMLPUBFUN
|
|
245
|
+
XMLPUBFUN xmlParserInputBuffer *
|
|
254
246
|
__xmlParserInputBufferCreateFilename(const char *URI,
|
|
255
247
|
xmlCharEncoding enc);
|
|
256
248
|
|
|
@@ -264,54 +256,54 @@ XMLPUBFUN int
|
|
|
264
256
|
xmlPopOutputCallbacks (void);
|
|
265
257
|
XMLPUBFUN void
|
|
266
258
|
xmlRegisterDefaultOutputCallbacks(void);
|
|
267
|
-
XMLPUBFUN
|
|
268
|
-
xmlAllocOutputBuffer (
|
|
259
|
+
XMLPUBFUN xmlOutputBuffer *
|
|
260
|
+
xmlAllocOutputBuffer (xmlCharEncodingHandler *encoder);
|
|
269
261
|
|
|
270
|
-
XMLPUBFUN
|
|
262
|
+
XMLPUBFUN xmlOutputBuffer *
|
|
271
263
|
xmlOutputBufferCreateFilename (const char *URI,
|
|
272
|
-
|
|
264
|
+
xmlCharEncodingHandler *encoder,
|
|
273
265
|
int compression);
|
|
274
266
|
|
|
275
|
-
XMLPUBFUN
|
|
267
|
+
XMLPUBFUN xmlOutputBuffer *
|
|
276
268
|
xmlOutputBufferCreateFile (FILE *file,
|
|
277
|
-
|
|
269
|
+
xmlCharEncodingHandler *encoder);
|
|
278
270
|
|
|
279
|
-
XMLPUBFUN
|
|
280
|
-
xmlOutputBufferCreateBuffer (
|
|
281
|
-
|
|
271
|
+
XMLPUBFUN xmlOutputBuffer *
|
|
272
|
+
xmlOutputBufferCreateBuffer (xmlBuffer *buffer,
|
|
273
|
+
xmlCharEncodingHandler *encoder);
|
|
282
274
|
|
|
283
|
-
XMLPUBFUN
|
|
275
|
+
XMLPUBFUN xmlOutputBuffer *
|
|
284
276
|
xmlOutputBufferCreateFd (int fd,
|
|
285
|
-
|
|
277
|
+
xmlCharEncodingHandler *encoder);
|
|
286
278
|
|
|
287
|
-
XMLPUBFUN
|
|
279
|
+
XMLPUBFUN xmlOutputBuffer *
|
|
288
280
|
xmlOutputBufferCreateIO (xmlOutputWriteCallback iowrite,
|
|
289
281
|
xmlOutputCloseCallback ioclose,
|
|
290
282
|
void *ioctx,
|
|
291
|
-
|
|
283
|
+
xmlCharEncodingHandler *encoder);
|
|
292
284
|
|
|
293
285
|
/* Couple of APIs to get the output without digging into the buffers */
|
|
294
286
|
XMLPUBFUN const xmlChar *
|
|
295
|
-
xmlOutputBufferGetContent (
|
|
287
|
+
xmlOutputBufferGetContent (xmlOutputBuffer *out);
|
|
296
288
|
XMLPUBFUN size_t
|
|
297
|
-
xmlOutputBufferGetSize (
|
|
289
|
+
xmlOutputBufferGetSize (xmlOutputBuffer *out);
|
|
298
290
|
|
|
299
291
|
XMLPUBFUN int
|
|
300
|
-
xmlOutputBufferWrite (
|
|
292
|
+
xmlOutputBufferWrite (xmlOutputBuffer *out,
|
|
301
293
|
int len,
|
|
302
294
|
const char *buf);
|
|
303
295
|
XMLPUBFUN int
|
|
304
|
-
xmlOutputBufferWriteString (
|
|
296
|
+
xmlOutputBufferWriteString (xmlOutputBuffer *out,
|
|
305
297
|
const char *str);
|
|
306
298
|
XMLPUBFUN int
|
|
307
|
-
xmlOutputBufferWriteEscape (
|
|
299
|
+
xmlOutputBufferWriteEscape (xmlOutputBuffer *out,
|
|
308
300
|
const xmlChar *str,
|
|
309
301
|
xmlCharEncodingOutputFunc escaping);
|
|
310
302
|
|
|
311
303
|
XMLPUBFUN int
|
|
312
|
-
xmlOutputBufferFlush (
|
|
304
|
+
xmlOutputBufferFlush (xmlOutputBuffer *out);
|
|
313
305
|
XMLPUBFUN int
|
|
314
|
-
xmlOutputBufferClose (
|
|
306
|
+
xmlOutputBufferClose (xmlOutputBuffer *out);
|
|
315
307
|
|
|
316
308
|
XMLPUBFUN int
|
|
317
309
|
xmlRegisterOutputCallbacks (xmlOutputMatchCallback matchFunc,
|
|
@@ -319,32 +311,22 @@ XMLPUBFUN int
|
|
|
319
311
|
xmlOutputWriteCallback writeFunc,
|
|
320
312
|
xmlOutputCloseCallback closeFunc);
|
|
321
313
|
|
|
322
|
-
XMLPUBFUN
|
|
314
|
+
XMLPUBFUN xmlOutputBuffer *
|
|
323
315
|
__xmlOutputBufferCreateFilename(const char *URI,
|
|
324
|
-
|
|
316
|
+
xmlCharEncodingHandler *encoder,
|
|
325
317
|
int compression);
|
|
326
|
-
|
|
327
|
-
#ifdef LIBXML_HTTP_ENABLED
|
|
328
|
-
/* This function only exists if HTTP support built into the library */
|
|
329
|
-
XML_DEPRECATED
|
|
330
|
-
XMLPUBFUN void
|
|
331
|
-
xmlRegisterHTTPPostCallbacks (void );
|
|
332
|
-
#endif /* LIBXML_HTTP_ENABLED */
|
|
333
|
-
|
|
334
318
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
|
335
319
|
|
|
336
320
|
XML_DEPRECATED
|
|
337
|
-
XMLPUBFUN
|
|
338
|
-
xmlCheckHTTPInput (
|
|
339
|
-
|
|
321
|
+
XMLPUBFUN xmlParserInput *
|
|
322
|
+
xmlCheckHTTPInput (xmlParserCtxt *ctxt,
|
|
323
|
+
xmlParserInput *ret);
|
|
340
324
|
|
|
341
|
-
|
|
342
|
-
*
|
|
343
|
-
*/
|
|
344
|
-
XMLPUBFUN xmlParserInputPtr
|
|
325
|
+
XML_DEPRECATED
|
|
326
|
+
XMLPUBFUN xmlParserInput *
|
|
345
327
|
xmlNoNetExternalEntityLoader (const char *URL,
|
|
346
328
|
const char *ID,
|
|
347
|
-
|
|
329
|
+
xmlParserCtxt *ctxt);
|
|
348
330
|
|
|
349
331
|
XML_DEPRECATED
|
|
350
332
|
XMLPUBFUN xmlChar *
|
|
@@ -353,9 +335,7 @@ XMLPUBFUN xmlChar *
|
|
|
353
335
|
XML_DEPRECATED
|
|
354
336
|
XMLPUBFUN int
|
|
355
337
|
xmlCheckFilename (const char *path);
|
|
356
|
-
|
|
357
|
-
* Default 'file://' protocol callbacks
|
|
358
|
-
*/
|
|
338
|
+
|
|
359
339
|
XML_DEPRECATED
|
|
360
340
|
XMLPUBFUN int
|
|
361
341
|
xmlFileMatch (const char *filename);
|
|
@@ -371,10 +351,8 @@ XML_DEPRECATED
|
|
|
371
351
|
XMLPUBFUN int
|
|
372
352
|
xmlFileClose (void * context);
|
|
373
353
|
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
*/
|
|
377
|
-
#ifdef LIBXML_HTTP_ENABLED
|
|
354
|
+
#ifdef LIBXML_HTTP_STUBS_ENABLED
|
|
355
|
+
/** @cond IGNORE */
|
|
378
356
|
XML_DEPRECATED
|
|
379
357
|
XMLPUBFUN int
|
|
380
358
|
xmlIOHTTPMatch (const char *filename);
|
|
@@ -383,6 +361,9 @@ XMLPUBFUN void *
|
|
|
383
361
|
xmlIOHTTPOpen (const char *filename);
|
|
384
362
|
#ifdef LIBXML_OUTPUT_ENABLED
|
|
385
363
|
XML_DEPRECATED
|
|
364
|
+
XMLPUBFUN void
|
|
365
|
+
xmlRegisterHTTPPostCallbacks (void );
|
|
366
|
+
XML_DEPRECATED
|
|
386
367
|
XMLPUBFUN void *
|
|
387
368
|
xmlIOHTTPOpenW (const char * post_uri,
|
|
388
369
|
int compression );
|
|
@@ -395,7 +376,8 @@ XMLPUBFUN int
|
|
|
395
376
|
XML_DEPRECATED
|
|
396
377
|
XMLPUBFUN int
|
|
397
378
|
xmlIOHTTPClose (void * context);
|
|
398
|
-
|
|
379
|
+
/** @endcond */
|
|
380
|
+
#endif /* LIBXML_HTTP_STUBS_ENABLED */
|
|
399
381
|
|
|
400
382
|
XMLPUBFUN xmlParserInputBufferCreateFilenameFunc
|
|
401
383
|
xmlParserInputBufferCreateFilenameDefault(
|