@img/sharp-libvips-dev 1.2.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,17 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
1
|
+
/**
|
|
2
|
+
* @file
|
|
3
|
+
*
|
|
4
|
+
* @brief XPointer framework and schemes
|
|
5
|
+
*
|
|
6
|
+
* API to evaluate XPointer expressions. The following schemes are
|
|
7
|
+
* supported:
|
|
8
|
+
*
|
|
9
|
+
* - element()
|
|
10
|
+
* - xmlns()
|
|
11
|
+
* - xpath1()
|
|
7
12
|
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* http://www.w3.org/TR/2002/PR-xptr-element-20021113/
|
|
13
|
+
* xpointer() is an alias for the xpath1() scheme. The point and
|
|
14
|
+
* range extensions are not supported.
|
|
11
15
|
*
|
|
12
|
-
*
|
|
16
|
+
* @copyright See Copyright for the status of this software.
|
|
13
17
|
*
|
|
14
|
-
*
|
|
18
|
+
* @author Daniel Veillard
|
|
15
19
|
*/
|
|
16
20
|
|
|
17
21
|
#ifndef __XML_XPTR_H__
|
|
@@ -32,13 +36,13 @@ extern "C" {
|
|
|
32
36
|
* Functions.
|
|
33
37
|
*/
|
|
34
38
|
XML_DEPRECATED
|
|
35
|
-
XMLPUBFUN
|
|
36
|
-
xmlXPtrNewContext (
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
XMLPUBFUN
|
|
39
|
+
XMLPUBFUN xmlXPathContext *
|
|
40
|
+
xmlXPtrNewContext (xmlDoc *doc,
|
|
41
|
+
xmlNode *here,
|
|
42
|
+
xmlNode *origin);
|
|
43
|
+
XMLPUBFUN xmlXPathObject *
|
|
40
44
|
xmlXPtrEval (const xmlChar *str,
|
|
41
|
-
|
|
45
|
+
xmlXPathContext *ctx);
|
|
42
46
|
|
|
43
47
|
#ifdef __cplusplus
|
|
44
48
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@img/sharp-libvips-dev",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Header files and C++ sources for libvips and dependencies required when compiling sharp from source",
|
|
5
5
|
"author": "Lovell Fuller <npm@lovell.info>",
|
|
6
6
|
"homepage": "https://sharp.pixelplumbing.com",
|
package/versions.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"cairo": "1.18.4",
|
|
5
5
|
"cgif": "0.5.0",
|
|
6
6
|
"exif": "0.6.25",
|
|
7
|
-
"expat": "2.7.
|
|
7
|
+
"expat": "2.7.2",
|
|
8
8
|
"ffi": "3.5.2",
|
|
9
9
|
"fontconfig": "2.17.1",
|
|
10
10
|
"freetype": "2.14.1",
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"tiff": "4.7.0",
|
|
26
26
|
"vips": "8.17.2",
|
|
27
27
|
"webp": "1.6.0",
|
|
28
|
-
"xml2": "2.
|
|
28
|
+
"xml2": "2.15.0",
|
|
29
29
|
"zlib-ng": "2.2.5"
|
|
30
30
|
}
|