@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,11 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
2
|
+
* @file
|
|
3
|
+
*
|
|
4
|
+
* @brief library of generic URI related routines
|
|
5
|
+
*
|
|
6
|
+
* library of generic URI related routines
|
|
4
7
|
* Implements RFC 2396
|
|
5
8
|
*
|
|
6
|
-
*
|
|
9
|
+
* @copyright See Copyright for the status of this software.
|
|
7
10
|
*
|
|
8
|
-
*
|
|
11
|
+
* @author Daniel Veillard
|
|
9
12
|
*/
|
|
10
13
|
|
|
11
14
|
#ifndef __XML_URI_H__
|
|
@@ -19,18 +22,19 @@
|
|
|
19
22
|
extern "C" {
|
|
20
23
|
#endif
|
|
21
24
|
|
|
25
|
+
/** Parsed URI */
|
|
26
|
+
typedef struct _xmlURI xmlURI;
|
|
27
|
+
typedef xmlURI *xmlURIPtr;
|
|
22
28
|
/**
|
|
23
|
-
*
|
|
29
|
+
* A parsed URI reference.
|
|
24
30
|
*
|
|
25
|
-
*
|
|
31
|
+
* This is a struct containing the various fields
|
|
26
32
|
* as described in RFC 2396 but separated for further processing.
|
|
27
33
|
*
|
|
28
34
|
* Note: query is a deprecated field which is incorrectly unescaped.
|
|
29
35
|
* query_raw takes precedence over query if the former is set.
|
|
30
|
-
* See: http://mail.gnome.org/archives/xml/2007-April/thread.html
|
|
36
|
+
* See: http://mail.gnome.org/archives/xml/2007-April/thread.html\#00127
|
|
31
37
|
*/
|
|
32
|
-
typedef struct _xmlURI xmlURI;
|
|
33
|
-
typedef xmlURI *xmlURIPtr;
|
|
34
38
|
struct _xmlURI {
|
|
35
39
|
char *scheme; /* the URI scheme */
|
|
36
40
|
char *opaque; /* opaque part */
|
|
@@ -45,12 +49,7 @@ struct _xmlURI {
|
|
|
45
49
|
char *query_raw; /* the query string (as it appears in the URI) */
|
|
46
50
|
};
|
|
47
51
|
|
|
48
|
-
|
|
49
|
-
* This function is in tree.h:
|
|
50
|
-
* xmlChar * xmlNodeGetBase (xmlDocPtr doc,
|
|
51
|
-
* xmlNodePtr cur);
|
|
52
|
-
*/
|
|
53
|
-
XMLPUBFUN xmlURIPtr
|
|
52
|
+
XMLPUBFUN xmlURI *
|
|
54
53
|
xmlCreateURI (void);
|
|
55
54
|
XMLPUBFUN int
|
|
56
55
|
xmlBuildURISafe (const xmlChar *URI,
|
|
@@ -66,22 +65,22 @@ XMLPUBFUN int
|
|
|
66
65
|
XMLPUBFUN xmlChar *
|
|
67
66
|
xmlBuildRelativeURI (const xmlChar *URI,
|
|
68
67
|
const xmlChar *base);
|
|
69
|
-
XMLPUBFUN
|
|
68
|
+
XMLPUBFUN xmlURI *
|
|
70
69
|
xmlParseURI (const char *str);
|
|
71
70
|
XMLPUBFUN int
|
|
72
71
|
xmlParseURISafe (const char *str,
|
|
73
|
-
|
|
74
|
-
XMLPUBFUN
|
|
72
|
+
xmlURI **uri);
|
|
73
|
+
XMLPUBFUN xmlURI *
|
|
75
74
|
xmlParseURIRaw (const char *str,
|
|
76
75
|
int raw);
|
|
77
76
|
XMLPUBFUN int
|
|
78
|
-
xmlParseURIReference (
|
|
77
|
+
xmlParseURIReference (xmlURI *uri,
|
|
79
78
|
const char *str);
|
|
80
79
|
XMLPUBFUN xmlChar *
|
|
81
|
-
xmlSaveUri (
|
|
80
|
+
xmlSaveUri (xmlURI *uri);
|
|
82
81
|
XMLPUBFUN void
|
|
83
82
|
xmlPrintURI (FILE *stream,
|
|
84
|
-
|
|
83
|
+
xmlURI *uri);
|
|
85
84
|
XMLPUBFUN xmlChar *
|
|
86
85
|
xmlURIEscapeStr (const xmlChar *str,
|
|
87
86
|
const xmlChar *list);
|
|
@@ -94,7 +93,7 @@ XMLPUBFUN int
|
|
|
94
93
|
XMLPUBFUN xmlChar *
|
|
95
94
|
xmlURIEscape (const xmlChar *str);
|
|
96
95
|
XMLPUBFUN void
|
|
97
|
-
xmlFreeURI (
|
|
96
|
+
xmlFreeURI (xmlURI *uri);
|
|
98
97
|
XMLPUBFUN xmlChar*
|
|
99
98
|
xmlCanonicPath (const xmlChar *path);
|
|
100
99
|
XMLPUBFUN xmlChar*
|