diff --git a/doc/devhelp/libxml2-HTMLparser.html b/doc/devhelp/libxml2-HTMLparser.html index 5b7865ff..22942a88 100644 --- a/doc/devhelp/libxml2-HTMLparser.html +++ b/doc/devhelp/libxml2-HTMLparser.html @@ -45,6 +45,7 @@ int htmlAutoCloseTag (htmlParserCtxtPtr htmlCreateFileParserCtxt (const char * filename,
const char * encoding); htmlParserCtxtPtr htmlCreateMemoryParserCtxt (const char * buffer,
int size); htmlParserCtxtPtr htmlCreatePushParserCtxt (htmlSAXHandlerPtr sax,
void * user_data,
const char * chunk,
int size,
const char * filename,
xmlCharEncoding enc); +htmlDocPtr htmlCtxtParseDocument (htmlParserCtxtPtr ctxt,
xmlParserInputPtr input); htmlDocPtr htmlCtxtReadDoc (htmlParserCtxtPtr ctxt,
const xmlChar * str,
const char * URL,
const char * encoding,
int options); htmlDocPtr htmlCtxtReadFd (htmlParserCtxtPtr ctxt,
int fd,
const char * URL,
const char * encoding,
int options); htmlDocPtr htmlCtxtReadFile (htmlParserCtxtPtr ctxt,
const char * filename,
const char * encoding,
int options); @@ -64,7 +65,7 @@ int htmlIsAutoClosed (htmlIsScriptAttribute (const xmlChar * name); htmlParserCtxtPtr htmlNewParserCtxt (void); htmlParserCtxtPtr htmlNewSAXParserCtxt (const htmlSAXHandler * sax,
void * userData); -htmlStatus htmlNodeStatus (const htmlNodePtr node,
int legacy); +htmlStatus htmlNodeStatus (htmlNodePtr node,
int legacy); int htmlParseCharRef (htmlParserCtxtPtr ctxt); int htmlParseChunk (htmlParserCtxtPtr ctxt,
const char * chunk,
int size,
int terminate); htmlDocPtr htmlParseDoc (const xmlChar * cur,
const char * encoding); @@ -72,11 +73,11 @@ int htmlParseDocument (htmlParseElement (htmlParserCtxtPtr ctxt); const htmlEntityDesc * htmlParseEntityRef (htmlParserCtxtPtr ctxt,
const xmlChar ** str); htmlDocPtr htmlParseFile (const char * filename,
const char * encoding); -htmlDocPtr htmlReadDoc (const xmlChar * cur,
const char * URL,
const char * encoding,
int options); -htmlDocPtr htmlReadFd (int fd,
const char * URL,
const char * encoding,
int options); +htmlDocPtr htmlReadDoc (const xmlChar * str,
const char * url,
const char * encoding,
int options); +htmlDocPtr htmlReadFd (int fd,
const char * url,
const char * encoding,
int options); htmlDocPtr htmlReadFile (const char * filename,
const char * encoding,
int options); -htmlDocPtr htmlReadIO (xmlInputReadCallback ioread,
xmlInputCloseCallback ioclose,
void * ioctx,
const char * URL,
const char * encoding,
int options); -htmlDocPtr htmlReadMemory (const char * buffer,
int size,
const char * URL,
const char * encoding,
int options); +htmlDocPtr htmlReadIO (xmlInputReadCallback ioread,
xmlInputCloseCallback ioclose,
void * ioctx,
const char * url,
const char * encoding,
int options); +htmlDocPtr htmlReadMemory (const char * buffer,
int size,
const char * url,
const char * encoding,
int options); htmlDocPtr htmlSAXParseDoc (const xmlChar * cur,
const char * encoding,
htmlSAXHandlerPtr sax,
void * userData); htmlDocPtr htmlSAXParseFile (const char * filename,
const char * encoding,
htmlSAXHandlerPtr sax,
void * userData); const htmlElemDesc * htmlTagLookup (const xmlChar * tag); @@ -295,6 +296,14 @@ const htmlElemDesc *

+Variable htmlDefaultSAXHandler

+
const xmlSAXHandlerV1 htmlDefaultSAXHandler;
+
+

DEPRECATED: This handler is unused and will be removed from future versions. Default old SAX v1 handler for HTML, builds the DOM tree

+
+
+
+

UTF8ToHtml ()

int	UTF8ToHtml			(unsigned char * out, 
int * outlen,
const unsigned char * in,
int * inlen)
@@ -391,7 +400,7 @@ const htmlElemDesc * htmlCreateFileParserCtxt ()
htmlParserCtxtPtr	htmlCreateFileParserCtxt	(const char * filename, 
const char * encoding)
-

Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.

+

DEPRECATED: Use htmlNewParserCtxt and htmlCtxtReadFile. Create a parser context to read from a file. A non-NULL encoding overrides encoding declarations in the document. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.

@@ -401,11 +410,11 @@ const htmlElemDesc * - + - +
encoding:a free form C string describing the HTML document encoding, or NULLoptional encoding
Returns:the new parser context or NULLthe new parser context or NULL if a memory allocation failed.
@@ -416,7 +425,7 @@ const htmlElemDesc * htmlCreateMemoryParserCtxt ()
htmlParserCtxtPtr	htmlCreateMemoryParserCtxt	(const char * buffer, 
int size)
-

Create a parser context for an HTML in-memory document.

+

DEPRECATED: Use htmlNewParserCtxt and htmlCtxtReadMemory. Create a parser context for an HTML in-memory document. The input buffer must not contain any terminating null bytes.

@@ -441,21 +450,21 @@ const htmlElemDesc * htmlCreatePushParserCtxt ()
htmlParserCtxtPtr	htmlCreatePushParserCtxt	(htmlSAXHandlerPtr sax, 
void * user_data,
const char * chunk,
int size,
const char * filename,
xmlCharEncoding enc)
-

Create a parser context for using the HTML parser in push mode The value of @filename is used for fetching external entities and error/warning reports.

+

Create a parser context for using the HTML parser in push mode.

- + - + - + @@ -463,15 +472,40 @@ const htmlElemDesc * - + - + - + + + +
sax:a SAX handlera SAX handler (optional)
user_data:The user data returned on SAX callbacksThe user data returned on SAX callbacks (optional)
chunk:a pointer to an array of charsa pointer to an array of chars (optional)
size:
filename:an optional file name or URIonly used for error reporting (optional)
enc:an optional encodingencoding (deprecated, pass XML_CHAR_ENCODING_NONE)
Returns:the new parser context or NULLthe new parser context or NULL if a memory allocation failed.
+
+
+
+

+htmlCtxtParseDocument ()

+
htmlDocPtr	htmlCtxtParseDocument	(htmlParserCtxtPtr ctxt, 
xmlParserInputPtr input)
+
+

Parse an HTML document and return the resulting document tree. Available since 2.13.0.

+
++ + + + + + + + + + + +
ctxt:an HTML parser context
input:parser input
Returns:the resulting document tree or NULL
@@ -482,7 +516,7 @@ const htmlElemDesc * htmlCtxtReadDoc ()
htmlDocPtr	htmlCtxtReadDoc		(htmlParserCtxtPtr ctxt, 
const xmlChar * str,
const char * URL,
const char * encoding,
int options)
-

parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context

+

Parse an HTML in-memory document and build a tree. See htmlCtxtUseOptions for details.

@@ -496,15 +530,15 @@ const htmlElemDesc * - + - + - + @@ -519,7 +553,7 @@ const htmlElemDesc * htmlCtxtReadFd ()
htmlDocPtr	htmlCtxtReadFd		(htmlParserCtxtPtr ctxt, 
int fd,
const char * URL,
const char * encoding,
int options)
-

parse an XML from a file descriptor and build a tree. This reuses the existing @ctxt parser context

+

Parse an HTML from a file descriptor and build a tree. See htmlCtxtUseOptions for details. NOTE that the file descriptor will not be closed when the context is freed or reset.

URL:the base URL to use for the documentonly used for error reporting (optional)
encoding:the document encoding, or NULLthe document encoding (optional)
options:a combination of htmlParserOption(s)a combination of htmlParserOptions
Returns:
@@ -533,15 +567,15 @@ const htmlElemDesc * - + - + - + @@ -556,7 +590,7 @@ const htmlElemDesc * htmlCtxtReadFile ()
htmlDocPtr	htmlCtxtReadFile	(htmlParserCtxtPtr ctxt, 
const char * filename,
const char * encoding,
int options)
-

parse an XML file from the filesystem or the network. This reuses the existing @ctxt parser context

+

Parse an HTML file from the filesystem, the network or a user-defined resource loader. See xmlNewInputURL and htmlCtxtUseOptions for details.

URL:the base URL to use for the documentonly used for error reporting (optional)
encoding:the document encoding, or NULLthe document encoding (optinal)
options:a combination of htmlParserOption(s)a combination of htmlParserOptions
Returns:
@@ -570,11 +604,11 @@ const htmlElemDesc * - + - + @@ -589,7 +623,7 @@ const htmlElemDesc * htmlCtxtReadIO ()
htmlDocPtr	htmlCtxtReadIO		(htmlParserCtxtPtr ctxt, 
xmlInputReadCallback ioread,
xmlInputCloseCallback ioclose,
void * ioctx,
const char * URL,
const char * encoding,
int options)
-

parse an HTML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context

+

Parse an HTML document from I/O functions and source and build a tree. See xmlNewInputIO and htmlCtxtUseOptions for details.

encoding:the document encoding, or NULLthe document encoding (optional)
options:a combination of htmlParserOption(s)a combination of htmlParserOptions
Returns:
@@ -634,7 +668,7 @@ const htmlElemDesc * htmlCtxtReadMemory ()
htmlDocPtr	htmlCtxtReadMemory	(htmlParserCtxtPtr ctxt, 
const char * buffer,
int size,
const char * URL,
const char * encoding,
int options)
-

parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context

+

Parse an HTML in-memory document and build a tree. The input buffer must not contain any terminating null bytes. See htmlCtxtUseOptions for details.

@@ -652,15 +686,15 @@ const htmlElemDesc * - + - + - + @@ -860,7 +894,7 @@ const htmlElemDesc * htmlHandleOmittedElem ()
int	htmlHandleOmittedElem		(int val)
-

Set and return the previous value for handling HTML omitted tags.

+

DEPRECATED: Use HTML_PARSE_NOIMPLIED Set and return the previous value for handling HTML omitted tags.

URL:the base URL to use for the documentonly used for error reporting (optional)
encoding:the document encoding, or NULLthe document encoding (optinal)
options:a combination of htmlParserOption(s)a combination of htmlParserOptions
Returns:
@@ -935,7 +969,7 @@ const htmlElemDesc * htmlNewParserCtxt ()
htmlParserCtxtPtr	htmlNewParserCtxt	(void)
-

Allocate and initialize a new parser context.

+

Allocate and initialize a new HTML parser context. This can be used to parse HTML documents into DOM trees with functions like xmlCtxtReadFile or xmlCtxtReadMemory. See htmlCtxtUseOptions for parser options. See xmlCtxtSetErrorHandler for advanced error handling. See xmlNewInputURL, xmlNewInputMemory, xmlNewInputIO and similar functions for advanced input control. See htmlNewSAXParserCtxt for custom SAX parsers.

@@ -950,7 +984,7 @@ const htmlElemDesc * htmlNewSAXParserCtxt ()
htmlParserCtxtPtr	htmlNewSAXParserCtxt	(const htmlSAXHandler * sax, 
void * userData)
-

Allocate and initialize a new SAX parser context. If userData is NULL, the parser context will be passed as user data.

+

Allocate and initialize a new HTML SAX parser context. If userData is NULL, the parser context will be passed as user data. Available since 2.11.0. If you want support older versions, it's best to invoke htmlNewParserCtxt and set ctxt->sax with struct assignment. Also see htmlNewParserCtxt.

@@ -973,7 +1007,7 @@ const htmlElemDesc *

htmlNodeStatus ()

-
htmlStatus	htmlNodeStatus		(const htmlNodePtr node, 
int legacy)
+
htmlStatus	htmlNodeStatus		(htmlNodePtr node, 
int legacy)

Checks whether the tree node is valid. Experimental (the author only uses the HTML enhancements in a SAX parser)

@@ -1021,7 +1055,7 @@ const htmlElemDesc * htmlParseChunk ()
int	htmlParseChunk			(htmlParserCtxtPtr ctxt, 
const char * chunk,
int size,
int terminate)
-

Parse a Chunk of memory

+

Parse a chunk of memory in push parser mode. Assumes that the parser context was initialized with htmlCreatePushParserCtxt. The last chunk, which will often be empty, must be marked with the @terminate flag. With the default SAX callbacks, the resulting document will be available in ctxt->myDoc. This pointer will not be freed by the library. If the document isn't well-formed, ctxt->myDoc is set to NULL.

@@ -1031,11 +1065,11 @@ const htmlElemDesc * - + - + @@ -1043,7 +1077,7 @@ const htmlElemDesc * - +
chunk:an char arraychunk of memory
size:the size in byte of the chunksize of chunk in bytes
terminate:
Returns:zero if no error, the xmlParserErrors otherwise.an xmlParserErrors code (0 on success).
@@ -1054,7 +1088,7 @@ const htmlElemDesc * htmlParseDoc ()
htmlDocPtr	htmlParseDoc		(const xmlChar * cur, 
const char * encoding)
-

parse an HTML in-memory document and build a tree.

+

DEPRECATED: Use htmlReadDoc. Parse an HTML in-memory document and build a tree. This function uses deprecated global parser options.

@@ -1065,7 +1099,7 @@ const htmlElemDesc * - + @@ -1080,7 +1114,7 @@ const htmlElemDesc * htmlParseDocument ()
int	htmlParseDocument		(htmlParserCtxtPtr ctxt)
-

parse an HTML document (and build a tree if using the standard SAX interface).

+

Parse an HTML document and invoke the SAX handlers. This is useful if you're only interested in custom SAX callbacks. If you want a document tree, use htmlCtxtParseDocument.

encoding:a free form C string describing the HTML document encoding, or NULLthe encoding (optional)
Returns:
@@ -1090,7 +1124,7 @@ const htmlElemDesc * - +
Returns:0, -1 in case of error. the parser context is augmented as a result of the parsing.0, -1 in case of error.
@@ -1141,7 +1175,7 @@ const htmlElemDesc * htmlParseFile ()
htmlDocPtr	htmlParseFile		(const char * filename, 
const char * encoding)
-

parse an HTML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.

+

Parse an HTML file and build a tree. See xmlNewInputURL for details.

@@ -1151,7 +1185,7 @@ const htmlElemDesc * - + @@ -1164,31 +1198,31 @@ const htmlElemDesc *

htmlReadDoc ()

-
htmlDocPtr	htmlReadDoc		(const xmlChar * cur, 
const char * URL,
const char * encoding,
int options)
+
htmlDocPtr	htmlReadDoc		(const xmlChar * str, 
const char * url,
const char * encoding,
int options)
-

parse an XML in-memory document and build a tree.

+

Convenience function to parse an HTML document from a zero-terminated string. See htmlCtxtReadDoc for details.

encoding:a free form C string describing the HTML document encoding, or NULLencoding (optional)
Returns:
- + - - + + - + - + - +
cur:str: a pointer to a zero terminated string
URL:the base URL to use for the documenturl:only used for error reporting (optoinal)
encoding:the document encoding, or NULLthe document encoding (optional)
options:a combination of htmlParserOption(s)a combination of htmlParserOptions
Returns:the resulting document treethe resulting document tree.
@@ -1197,9 +1231,9 @@ const htmlElemDesc *

htmlReadFd ()

-
htmlDocPtr	htmlReadFd		(int fd, 
const char * URL,
const char * encoding,
int options)
+
htmlDocPtr	htmlReadFd		(int fd, 
const char * url,
const char * encoding,
int options)
-

parse an HTML from a file descriptor and build a tree. NOTE that the file descriptor will not be closed when the reader is closed or reset.

+

Convenience function to parse an HTML document from a file descriptor. NOTE that the file descriptor will not be closed when the context is freed or reset. See htmlCtxtReadFd for details.

@@ -1208,8 +1242,8 @@ const htmlElemDesc * an open file descriptor - - + + @@ -1217,7 +1251,7 @@ const htmlElemDesc * - + @@ -1232,7 +1266,7 @@ const htmlElemDesc * htmlReadFile ()
htmlDocPtr	htmlReadFile		(const char * filename, 
const char * encoding,
int options)
-

parse an XML file from the filesystem or the network.

+

Convenience function to parse an HTML file from the filesystem, the network or a global user-defined resource loader. See htmlCtxtReadFile for details.

URL:the base URL to use for the documenturl:only used for error reporting (optional)
encoding:
options:a combination of htmlParserOption(s)a combination of htmlParserOptions
Returns:
@@ -1242,15 +1276,15 @@ const htmlElemDesc * - + - + - +
encoding:the document encoding, or NULLthe document encoding (optional)
options:a combination of htmlParserOption(s)a combination of htmlParserOptions
Returns:the resulting document treethe resulting document tree.
@@ -1259,9 +1293,9 @@ const htmlElemDesc *

htmlReadIO ()

-
htmlDocPtr	htmlReadIO		(xmlInputReadCallback ioread, 
xmlInputCloseCallback ioclose,
void * ioctx,
const char * URL,
const char * encoding,
int options)
+
htmlDocPtr	htmlReadIO		(xmlInputReadCallback ioread, 
xmlInputCloseCallback ioclose,
void * ioctx,
const char * url,
const char * encoding,
int options)
-

parse an HTML document from I/O functions and source and build a tree.

+

Convenience function to parse an HTML document from I/O functions and context. See htmlCtxtReadIO for details.

@@ -1271,19 +1305,19 @@ const htmlElemDesc * - + - - + + - + @@ -1300,9 +1334,9 @@ const htmlElemDesc *

htmlReadMemory ()

-
htmlDocPtr	htmlReadMemory		(const char * buffer, 
int size,
const char * URL,
const char * encoding,
int options)
+
htmlDocPtr	htmlReadMemory		(const char * buffer, 
int size,
const char * url,
const char * encoding,
int options)
-

parse an XML in-memory document and build a tree.

+

Convenience function to parse an HTML document from memory. The input buffer must not contain any terminating null bytes. See htmlCtxtReadMemory for details.

ioclose:an I/O close functionan I/O close function (optional)
ioctx: an I/O handler
URL:the base URL to use for the documenturl:only used for error reporting (optional)
encoding:the document encoding, or NULLthe document encoding (optional)
options:
@@ -1315,8 +1349,8 @@ const htmlElemDesc * the size of the array - - + + @@ -1383,7 +1417,7 @@ const htmlElemDesc * - + diff --git a/doc/devhelp/libxml2-SAX.html b/doc/devhelp/libxml2-SAX.html index 632836c2..612ab4e8 100644 --- a/doc/devhelp/libxml2-SAX.html +++ b/doc/devhelp/libxml2-SAX.html @@ -827,7 +827,7 @@ void unparsedEntityDecl (void * ctx,
setDocumentLocator ()
void	setDocumentLocator		(void * ctx, 
xmlSAXLocatorPtr loc)
-

Receive the document locator at startup, actually xmlDefaultSAXLocator Everything is available on the context, so this is useless in our case. DEPRECATED

+

Receive the document locator at startup, actually xmlDefaultSAXLocator Everything is available on the context, so this is useless in our case. DEPRECATED

URL:the base URL to use for the documenturl:only used for error reporting (optional)
encoding:
encoding:a free form C string describing the HTML document encoding, or NULLencoding (optional)
sax:
diff --git a/doc/devhelp/libxml2-SAX2.html b/doc/devhelp/libxml2-SAX2.html index 9d4e2c60..410229ce 100644 --- a/doc/devhelp/libxml2-SAX2.html +++ b/doc/devhelp/libxml2-SAX2.html @@ -750,7 +750,7 @@ int xmlSAXVersion (xmlSAX2SetDocumentLocator ()
void	xmlSAX2SetDocumentLocator	(void * ctx, 
xmlSAXLocatorPtr loc)
-

Receive the document locator at startup, actually xmlDefaultSAXLocator Everything is available on the context, so this is useless in our case.

+

Receive the document locator at startup, actually xmlDefaultSAXLocator Everything is available on the context, so this is useless in our case.

diff --git a/doc/devhelp/libxml2-debugXML.html b/doc/devhelp/libxml2-debugXML.html index e5939a6b..ec134dc1 100644 --- a/doc/devhelp/libxml2-debugXML.html +++ b/doc/devhelp/libxml2-debugXML.html @@ -38,7 +38,7 @@ void xmlDebugDumpOneNode (FILE * output,
xmlDebugDumpString (FILE * output,
const xmlChar * str); int xmlLsCountNode (xmlNodePtr node); void xmlLsOneNode (FILE * output,
xmlNodePtr node); -void xmlShell (xmlDocPtr doc,
char * filename,
xmlShellReadlineFunc input,
FILE * output); +void xmlShell (xmlDocPtr doc,
const char * filename,
xmlShellReadlineFunc input,
FILE * output); int xmlShellBase (xmlShellCtxtPtr ctxt,
char * arg,
xmlNodePtr node,
xmlNodePtr node2); int xmlShellCat (xmlShellCtxtPtr ctxt,
char * arg,
xmlNodePtr node,
xmlNodePtr node2); typedef int xmlShellCmd (xmlShellCtxtPtr ctxt,
char * arg,
xmlNodePtr node,
xmlNodePtr node2); @@ -460,7 +460,7 @@ int xmlShellWrite (

xmlShell ()

-
void	xmlShell			(xmlDocPtr doc, 
char * filename,
xmlShellReadlineFunc input,
FILE * output)
+
void	xmlShell			(xmlDocPtr doc, 
const char * filename,
xmlShellReadlineFunc input,
FILE * output)

Implements the XML shell This allow to load, validate, view, modify and save a document using a environment similar to a UNIX commandline.

diff --git a/doc/devhelp/libxml2-encoding.html b/doc/devhelp/libxml2-encoding.html index 39782478..f656c169 100644 --- a/doc/devhelp/libxml2-encoding.html +++ b/doc/devhelp/libxml2-encoding.html @@ -44,7 +44,9 @@ int xmlDelEncodingAlias (const char * alias) const char * xmlGetCharEncodingName (xmlCharEncoding enc); const char * xmlGetEncodingAlias (const char * alias); void xmlInitCharEncodingHandlers (void); +int xmlLookupCharEncodingHandler (xmlCharEncoding enc,
xmlCharEncodingHandler ** out); xmlCharEncodingHandlerPtrxmlNewCharEncodingHandler (const char * name,
xmlCharEncodingInputFunc input,
xmlCharEncodingOutputFunc output); +int xmlOpenCharEncodingHandler (const char * name,
int output,
xmlCharEncodingHandler ** out); xmlCharEncodingxmlParseCharEncoding (const char * name); void xmlRegisterCharEncodingHandler (xmlCharEncodingHandlerPtr handler); @@ -457,7 +459,7 @@ void xmlRegisterCharEncodingHandlerxmlFindCharEncodingHandler ()
xmlCharEncodingHandlerPtr	xmlFindCharEncodingHandler	(const char * name)
-

Search in the registered set the handler able to read/write that encoding or create a new one.

+

DEPRECATED: Use xmlOpenCharEncodingHandler which has better error reporting.

@@ -467,7 +469,7 @@ void xmlRegisterCharEncodingHandler - +
Returns:the handler or NULL if not foundthe handler or NULL if no handler was found or an error occurred.
@@ -478,7 +480,7 @@ void xmlRegisterCharEncodingHandlerxmlGetCharEncodingHandler ()
xmlCharEncodingHandlerPtr	xmlGetCharEncodingHandler	(xmlCharEncoding enc)
-

Search in the registered set the handler able to read/write that encoding.

+

DEPRECATED: Use xmlLookupCharEncodingHandler which has better error reporting.

@@ -488,7 +490,7 @@ void xmlRegisterCharEncodingHandler - +
Returns:the handler or NULL if not foundthe handler or NULL if no handler was found or an error occurred.
@@ -546,6 +548,31 @@ void xmlRegisterCharEncodingHandler

+xmlLookupCharEncodingHandler ()

+
int	xmlLookupCharEncodingHandler	(xmlCharEncoding enc, 
xmlCharEncodingHandler ** out)
+
+

Find or create a handler matching the encoding. If no default or registered handler could be found, try to create a handler using iconv or ICU if supported. The handler must be closed with xmlCharEncCloseFunc. Available since 2.13.0.

+
++ + + + + + + + + + + + + + +
enc:an xmlCharEncoding value.
out:pointer to result
Returns:an xmlParserErrors error code.
+
+
+
+

xmlNewCharEncodingHandler ()

xmlCharEncodingHandlerPtr	xmlNewCharEncodingHandler	(const char * name, 
xmlCharEncodingInputFunc input,
xmlCharEncodingOutputFunc output)
@@ -575,6 +602,35 @@ void xmlRegisterCharEncodingHandler

+xmlOpenCharEncodingHandler ()

+
int	xmlOpenCharEncodingHandler	(const char * name, 
int output,
xmlCharEncodingHandler ** out)
+
+

Find or create a handler matching the encoding. If no default or registered handler could be found, try to create a handler using iconv or ICU if supported. The handler must be closed with xmlCharEncCloseFunc. Available since 2.13.0.

+
++ + + + + + + + + + + + + + + + + + +
name:a string describing the char encoding.
output:boolean, use handler for output
out:pointer to result
Returns:an xmlParserErrors error code.
+
+
+
+

xmlParseCharEncoding ()

xmlCharEncoding	xmlParseCharEncoding	(const char * name)
diff --git a/doc/devhelp/libxml2-entities.html b/doc/devhelp/libxml2-entities.html index e21cbcf6..243f3544 100644 --- a/doc/devhelp/libxml2-entities.html +++ b/doc/devhelp/libxml2-entities.html @@ -27,6 +27,7 @@ typedef xmlEntitiesTable * typedef enum xmlEntityType; xmlEntityPtr xmlAddDocEntity (xmlDocPtr doc,
const xmlChar * name,
int type,
const xmlChar * ExternalID,
const xmlChar * SystemID,
const xmlChar * content); xmlEntityPtr xmlAddDtdEntity (xmlDocPtr doc,
const xmlChar * name,
int type,
const xmlChar * ExternalID,
const xmlChar * SystemID,
const xmlChar * content); +int xmlAddEntity (xmlDocPtr doc,
int extSubset,
const xmlChar * name,
int type,
const xmlChar * ExternalID,
const xmlChar * SystemID,
const xmlChar * content,
xmlEntityPtr * out); void xmlCleanupPredefinedEntities (void); xmlEntitiesTablePtr xmlCopyEntitiesTable (xmlEntitiesTablePtr table); xmlEntitiesTablePtr xmlCreateEntitiesTable (void); @@ -166,6 +167,55 @@ The content of this structure is not made public by the API.

+xmlAddEntity ()

+
int	xmlAddEntity			(xmlDocPtr doc, 
int extSubset,
const xmlChar * name,
int type,
const xmlChar * ExternalID,
const xmlChar * SystemID,
const xmlChar * content,
xmlEntityPtr * out)
+
+

Register a new entity for this document. Available since 2.13.0.

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
doc:the document
extSubset:add to the external or internal subset
name:the entity name
type:the entity type XML_xxx_yyy_ENTITY
ExternalID:the entity external ID if available
SystemID:the entity system ID if available
content:the entity content
out:pointer to resulting entity (optional)
Returns:an xmlParserErrors error code.
+
+
+
+

xmlCleanupPredefinedEntities ()

void	xmlCleanupPredefinedEntities	(void)
@@ -345,12 +395,12 @@ The content of this structure is not made public by the API. xmlFreeEntity ()
void	xmlFreeEntity			(xmlEntityPtr entity)
-

+

Frees the entity.

- +
entity:an entity
diff --git a/doc/devhelp/libxml2-globals.html b/doc/devhelp/libxml2-globals.html index dbd7b3e9..bf8bbd17 100644 --- a/doc/devhelp/libxml2-globals.html +++ b/doc/devhelp/libxml2-globals.html @@ -24,9 +24,7 @@

Synopsis

typedef struct _xmlGlobalState xmlGlobalState;
 typedef xmlGlobalState * xmlGlobalStatePtr;
-void	xmlCleanupGlobals		(void);
 xmlGlobalStatePtr	xmlGetGlobalState	(void);
-void	xmlInitGlobals			(void);
 void	xmlInitializeGlobalState	(xmlGlobalStatePtr gs);
 
@@ -54,14 +52,6 @@ The content of this structure is not made public by the API.

-xmlCleanupGlobals ()

-
void	xmlCleanupGlobals		(void)
-
-

DEPRECATED: This function is a no-op. Call xmlCleanupParser to free global state but see the warnings there. xmlCleanupParser should be only called once at program exit. In most cases, you don't have call cleanup functions at all.

-
-
-
-

xmlGetGlobalState ()

xmlGlobalStatePtr	xmlGetGlobalState	(void)
@@ -77,14 +67,6 @@ The content of this structure is not made public by the API.

-xmlInitGlobals ()

-
void	xmlInitGlobals			(void)
-
-

DEPRECATED: Alias for xmlInitParser.

-
-
-
-

xmlInitializeGlobalState ()

void	xmlInitializeGlobalState	(xmlGlobalStatePtr gs)
diff --git a/doc/devhelp/libxml2-hash.html b/doc/devhelp/libxml2-hash.html index 4452739e..02635651 100644 --- a/doc/devhelp/libxml2-hash.html +++ b/doc/devhelp/libxml2-hash.html @@ -25,11 +25,15 @@
#define XML_CAST_FPTR(fptr);
 typedef struct _xmlHashTable xmlHashTable;
 typedef xmlHashTable * xmlHashTablePtr;
+int	xmlHashAdd			(xmlHashTablePtr hash, 
const xmlChar * key,
void * payload); +int xmlHashAdd2 (xmlHashTablePtr hash,
const xmlChar * key,
const xmlChar * key2,
void * payload); +int xmlHashAdd3 (xmlHashTablePtr hash,
const xmlChar * key,
const xmlChar * key2,
const xmlChar * key3,
void * payload); int xmlHashAddEntry (xmlHashTablePtr hash,
const xmlChar * key,
void * payload); int xmlHashAddEntry2 (xmlHashTablePtr hash,
const xmlChar * key,
const xmlChar * key2,
void * payload); int xmlHashAddEntry3 (xmlHashTablePtr hash,
const xmlChar * key,
const xmlChar * key2,
const xmlChar * key3,
void * payload); typedef void * xmlHashCopier (void * payload,
const xmlChar * name); xmlHashTablePtr xmlHashCopy (xmlHashTablePtr hash,
xmlHashCopier copy); +xmlHashTablePtr xmlHashCopySafe (xmlHashTablePtr hash,
xmlHashCopier copyFunc,
xmlHashDeallocator deallocFunc); xmlHashTablePtr xmlHashCreate (int size); xmlHashTablePtr xmlHashCreateDict (int size,
xmlDictPtr dict); typedef void xmlHashDeallocator (void * payload,
const xmlChar * name); @@ -199,10 +203,109 @@ The content of this structure is not made public by the API.

+xmlHashAdd ()

+
int	xmlHashAdd			(xmlHashTablePtr hash, 
const xmlChar * key,
void * payload)
+
+

Add a hash table entry. If an entry with this key already exists, payload will not be updated and 0 is returned. This return value can't be distinguished from out-of-memory errors, so this function should be used with care. Available since 2.13.0.

+
++ + + + + + + + + + + + + + + + + + +
hash:hash table
key:string key
payload:pointer to the payload
Returns:1 on success, 0 if an entry exists and -1 in case of error.
+
+
+
+

+xmlHashAdd2 ()

+
int	xmlHashAdd2			(xmlHashTablePtr hash, 
const xmlChar * key,
const xmlChar * key2,
void * payload)
+
+

Add a hash table entry with two strings as key. See xmlHashAdd. Available since 2.13.0.

+
++ + + + + + + + + + + + + + + + + + + + + + +
hash:hash table
key:first string key
key2:second string key
payload:pointer to the payload
Returns:1 on success, 0 if an entry exists and -1 in case of error.
+
+
+
+

+xmlHashAdd3 ()

+
int	xmlHashAdd3			(xmlHashTablePtr hash, 
const xmlChar * key,
const xmlChar * key2,
const xmlChar * key3,
void * payload)
+
+

Add a hash table entry with three strings as key. See xmlHashAdd. Available since 2.13.0.

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
hash:hash table
key:first string key
key2:second string key
key3:third string key
payload:pointer to the payload
Returns:1 on success, 0 if an entry exists and -1 in case of error.
+
+
+
+

xmlHashAddEntry ()

int	xmlHashAddEntry			(xmlHashTablePtr hash, 
const xmlChar * key,
void * payload)
-

Add a hash table entry. If an entry with this key already exists, payload will not be updated and -1 is returned. This return value can't be distinguished from out-of-memory errors, so this function should be used with care.

+

Add a hash table entry. If an entry with this key already exists, payload will not be updated and -1 is returned. This return value can't be distinguished from out-of-memory errors, so this function should be used with care. NOTE: This function doesn't allow to distinguish malloc failures from existing entries. Use xmlHashAdd instead.

@@ -301,7 +404,7 @@ The content of this structure is not made public by the API. xmlHashCopy ()
xmlHashTablePtr	xmlHashCopy		(xmlHashTablePtr hash, 
xmlHashCopier copy)
-

Copy the hash @table using @copy to copy payloads.

+

DEPRECATED: Leaks memory in error case. Copy the hash table using @copy to copy payloads.

@@ -323,6 +426,35 @@ The content of this structure is not made public by the API.

+xmlHashCopySafe ()

+
xmlHashTablePtr	xmlHashCopySafe		(xmlHashTablePtr hash, 
xmlHashCopier copyFunc,
xmlHashDeallocator deallocFunc)
+
+

Copy the hash table using @copyFunc to copy payloads. Available since 2.13.0.

+
++ + + + + + + + + + + + + + + + + + +
hash:hash table
copyFunc:copier function for items in the hash
deallocFunc:deallocation function in case of errors
Returns:the new table or NULL if a memory allocation failed.
+
+
+
+

xmlHashCreate ()

xmlHashTablePtr	xmlHashCreate		(int size)
diff --git a/doc/devhelp/libxml2-list.html b/doc/devhelp/libxml2-list.html index 649f97a8..6d188020 100644 --- a/doc/devhelp/libxml2-list.html +++ b/doc/devhelp/libxml2-list.html @@ -29,12 +29,12 @@ typedef xmlList * void * xmlLinkGetData (xmlLinkPtr lk); int xmlListAppend (xmlListPtr l,
void * data); void xmlListClear (xmlListPtr l); -int xmlListCopy (xmlListPtr cur,
const xmlListPtr old); +int xmlListCopy (xmlListPtr cur,
xmlListPtr old); xmlListPtr xmlListCreate (xmlListDeallocator deallocator,
xmlListDataCompare compare); typedef int xmlListDataCompare (const void * data0,
const void * data1); typedef void xmlListDeallocator (xmlLinkPtr lk); void xmlListDelete (xmlListPtr l); -xmlListPtr xmlListDup (const xmlListPtr old); +xmlListPtr xmlListDup (xmlListPtr old); int xmlListEmpty (xmlListPtr l); xmlLinkPtr xmlListEnd (xmlListPtr l); xmlLinkPtr xmlListFront (xmlListPtr l); @@ -226,7 +226,7 @@ The content of this structure is not made public by the API.

xmlListCopy ()

-
int	xmlListCopy			(xmlListPtr cur, 
const xmlListPtr old)
+
int	xmlListCopy			(xmlListPtr cur, 
xmlListPtr old)

Move all the element from the old list in the new list

@@ -291,7 +291,7 @@ The content of this structure is not made public by the API.

xmlListDup ()

-
xmlListPtr	xmlListDup		(const xmlListPtr old)
+
xmlListPtr	xmlListDup		(xmlListPtr old)

Duplicate the list

diff --git a/doc/devhelp/libxml2-parser.html b/doc/devhelp/libxml2-parser.html index f18176f5..5813629c 100644 --- a/doc/devhelp/libxml2-parser.html +++ b/doc/devhelp/libxml2-parser.html @@ -22,11 +22,8 @@

Author(s): Daniel Veillard

Synopsis

-
#define XML_COMPLETE_ATTRS;
-#define XML_DEFAULT_VERSION;
-#define XML_DETECT_IDS;
+
#define XML_DEFAULT_VERSION;
 #define XML_SAX2_MAGIC;
-#define XML_SKIP_IDS;
 typedef struct _xmlAttrHashBucket xmlAttrHashBucket;
 typedef enum xmlFeature;
 typedef enum xmlParserInputState;
@@ -71,12 +68,14 @@ typedef void startElementSAXFunc		(void * ctx
 typedef void unparsedEntityDeclSAXFunc	(void * ctx, 
const xmlChar * name,
const xmlChar * publicId,
const xmlChar * systemId,
const xmlChar * notationName); typedef void warningSAXFunc (void * ctx,
const char * msg,
... ...); long xmlByteConsumed (xmlParserCtxtPtr ctxt); +void xmlCleanupGlobals (void); void xmlCleanupParser (void); void xmlClearNodeInfoSeq (xmlParserNodeInfoSeqPtr seq); void xmlClearParserCtxt (xmlParserCtxtPtr ctxt); xmlParserCtxtPtr xmlCreateDocParserCtxt (const xmlChar * str); xmlParserCtxtPtr xmlCreateIOParserCtxt (xmlSAXHandlerPtr sax,
void * user_data,
xmlInputReadCallback ioread,
xmlInputCloseCallback ioclose,
void * ioctx,
xmlCharEncoding enc); xmlParserCtxtPtr xmlCreatePushParserCtxt (xmlSAXHandlerPtr sax,
void * user_data,
const char * chunk,
int size,
const char * filename); +xmlDocPtr xmlCtxtParseDocument (xmlParserCtxtPtr ctxt,
xmlParserInputPtr input); xmlDocPtr xmlCtxtReadDoc (xmlParserCtxtPtr ctxt,
const xmlChar * str,
const char * URL,
const char * encoding,
int options); xmlDocPtr xmlCtxtReadFd (xmlParserCtxtPtr ctxt,
int fd,
const char * URL,
const char * encoding,
int options); xmlDocPtr xmlCtxtReadFile (xmlParserCtxtPtr ctxt,
const char * filename,
const char * encoding,
int options); @@ -84,7 +83,9 @@ void xmlClearParserCtxt (xmlDocPtr xmlCtxtReadMemory (xmlParserCtxtPtr ctxt,
const char * buffer,
int size,
const char * URL,
const char * encoding,
int options); void xmlCtxtReset (xmlParserCtxtPtr ctxt); int xmlCtxtResetPush (xmlParserCtxtPtr ctxt,
const char * chunk,
int size,
const char * filename,
const char * encoding); +void xmlCtxtSetErrorHandler (xmlParserCtxtPtr ctxt,
xmlStructuredErrorFunc handler,
void * data); void xmlCtxtSetMaxAmplification (xmlParserCtxtPtr ctxt,
unsigned maxAmpl); +int xmlCtxtSetOptions (xmlParserCtxtPtr ctxt,
int options); int xmlCtxtUseOptions (xmlParserCtxtPtr ctxt,
int options); typedef xmlParserInputPtr xmlExternalEntityLoader (const char * URL,
const char * ID,
xmlParserCtxtPtr context); void xmlFreeParserCtxt (xmlParserCtxtPtr ctxt); @@ -93,31 +94,32 @@ int xmlGetFeature (xmlGetFeaturesList (int * len,
const char ** result); int xmlHasFeature (xmlFeature feature); xmlDtdPtr xmlIOParseDTD (xmlSAXHandlerPtr sax,
xmlParserInputBufferPtr input,
xmlCharEncoding enc); +void xmlInitGlobals (void); void xmlInitNodeInfoSeq (xmlParserNodeInfoSeqPtr seq); void xmlInitParser (void); int xmlInitParserCtxt (xmlParserCtxtPtr ctxt); int xmlKeepBlanksDefault (int val); int xmlLineNumbersDefault (int val); xmlParserInputPtr xmlLoadExternalEntity (const char * URL,
const char * ID,
xmlParserCtxtPtr ctxt); -xmlParserInputPtr xmlNewIOInputStream (xmlParserCtxtPtr ctxt,
xmlParserInputBufferPtr input,
xmlCharEncoding enc); +xmlParserInputPtr xmlNewIOInputStream (xmlParserCtxtPtr ctxt,
xmlParserInputBufferPtr buf,
xmlCharEncoding enc); xmlParserCtxtPtr xmlNewParserCtxt (void); xmlParserCtxtPtr xmlNewSAXParserCtxt (const xmlSAXHandler * sax,
void * userData); int xmlParseBalancedChunkMemory (xmlDocPtr doc,
xmlSAXHandlerPtr sax,
void * user_data,
int depth,
const xmlChar * string,
xmlNodePtr * lst); -int xmlParseBalancedChunkMemoryRecover (xmlDocPtr doc,
xmlSAXHandlerPtr sax,
void * user_data,
int depth,
const xmlChar * string,
xmlNodePtr * lst,
int recover); +int xmlParseBalancedChunkMemoryRecover (xmlDocPtr doc,
xmlSAXHandlerPtr sax,
void * user_data,
int depth,
const xmlChar * string,
xmlNodePtr * listOut,
int recover); int xmlParseChunk (xmlParserCtxtPtr ctxt,
const char * chunk,
int size,
int terminate); -int xmlParseCtxtExternalEntity (xmlParserCtxtPtr ctx,
const xmlChar * URL,
const xmlChar * ID,
xmlNodePtr * lst); +int xmlParseCtxtExternalEntity (xmlParserCtxtPtr ctxt,
const xmlChar * URL,
const xmlChar * ID,
xmlNodePtr * listOut); xmlDtdPtr xmlParseDTD (const xmlChar * ExternalID,
const xmlChar * SystemID); xmlDocPtr xmlParseDoc (const xmlChar * cur); int xmlParseDocument (xmlParserCtxtPtr ctxt); xmlDocPtr xmlParseEntity (const char * filename); int xmlParseExtParsedEnt (xmlParserCtxtPtr ctxt); -int xmlParseExternalEntity (xmlDocPtr doc,
xmlSAXHandlerPtr sax,
void * user_data,
int depth,
const xmlChar * URL,
const xmlChar * ID,
xmlNodePtr * lst); +int xmlParseExternalEntity (xmlDocPtr doc,
xmlSAXHandlerPtr sax,
void * user_data,
int depth,
const xmlChar * URL,
const xmlChar * ID,
xmlNodePtr * list); xmlDocPtr xmlParseFile (const char * filename); xmlParserErrors xmlParseInNodeContext (xmlNodePtr node,
const char * data,
int datalen,
int options,
xmlNodePtr * lst); xmlDocPtr xmlParseMemory (const char * buffer,
int size); -void xmlParserAddNodeInfo (xmlParserCtxtPtr ctxt,
const xmlParserNodeInfoPtr info); -const xmlParserNodeInfo * xmlParserFindNodeInfo (const xmlParserCtxtPtr ctx,
const xmlNodePtr node); -unsigned long xmlParserFindNodeInfoIndex (const xmlParserNodeInfoSeqPtr seq,
const xmlNodePtr node); +void xmlParserAddNodeInfo (xmlParserCtxtPtr ctxt,
xmlParserNodeInfoPtr info); +const xmlParserNodeInfo * xmlParserFindNodeInfo (xmlParserCtxtPtr ctx,
xmlNodePtr node); +unsigned long xmlParserFindNodeInfoIndex (xmlParserNodeInfoSeqPtr seq,
xmlNodePtr node); typedef void xmlParserInputDeallocate (xmlChar * str); int xmlParserInputGrow (xmlParserInputPtr in,
int len); int xmlParserInputRead (xmlParserInputPtr in,
int len); @@ -126,7 +128,7 @@ int xmlPedanticParserDefault (int val); xmlDocPtr xmlReadFd (int fd,
const char * URL,
const char * encoding,
int options); xmlDocPtr xmlReadFile (const char * filename,
const char * encoding,
int options); xmlDocPtr xmlReadIO (xmlInputReadCallback ioread,
xmlInputCloseCallback ioclose,
void * ioctx,
const char * URL,
const char * encoding,
int options); -xmlDocPtr xmlReadMemory (const char * buffer,
int size,
const char * URL,
const char * encoding,
int options); +xmlDocPtr xmlReadMemory (const char * buffer,
int size,
const char * url,
const char * encoding,
int options); xmlDocPtr xmlRecoverDoc (const xmlChar * cur); xmlDocPtr xmlRecoverFile (const char * filename); xmlDocPtr xmlRecoverMemory (const char * buffer,
int size); @@ -160,14 +162,6 @@ int xmlThrDefSubstituteEntiti

-Macro XML_COMPLETE_ATTRS

-
#define XML_COMPLETE_ATTRS;
-
-

Bit in the loadsubset context field to tell to do complete the elements attributes lists with the ones defaulted from the DTDs. Use it to initialize xmlLoadExtDtdDefaultValue.

-
-
-
-

Macro XML_DEFAULT_VERSION

#define XML_DEFAULT_VERSION;
 
@@ -176,14 +170,6 @@ int xmlThrDefSubstituteEntiti

-Macro XML_DETECT_IDS

-
#define XML_DETECT_IDS;
-
-

Bit in the loadsubset context field to tell to do ID/REFs lookups. Use it to initialize xmlLoadExtDtdDefaultValue.

-
-
-
-

Macro XML_SAX2_MAGIC

#define XML_SAX2_MAGIC;
 
@@ -192,14 +178,6 @@ int xmlThrDefSubstituteEntiti

-Macro XML_SKIP_IDS

-
#define XML_SKIP_IDS;
-
-

Bit in the loadsubset context field to tell to not do ID/REFs registration. Used to initialize xmlLoadExtDtdDefaultValue in some special cases.

-
-
-
-

Structure xmlAttrHashBucket

struct _xmlAttrHashBucket {
 The content of this structure is not made public by the API.
@@ -241,7 +219,7 @@ The content of this structure is not made public by the API.
     XML_WITH_MODULES = 27
     XML_WITH_DEBUG = 28
     XML_WITH_DEBUG_MEM = 29
-    XML_WITH_DEBUG_RUN = 30
+    XML_WITH_DEBUG_RUN = 30 /* unused */
     XML_WITH_ZLIB = 31
     XML_WITH_ICU = 32
     XML_WITH_LZMA = 33
@@ -372,7 +350,8 @@ The content of this structure is not made public by the API.
     XML_PARSE_HUGE = 524288 /* relax any hardcoded limit from the parser */
     XML_PARSE_OLDSAX = 1048576 /* parse using SAX2 interface before 2.7.0 */
     XML_PARSE_IGNORE_ENC = 2097152 /* ignore internal document encoding hint */
-    XML_PARSE_BIG_LINES = 4194304 /*  Store big lines numbers in text PSVI field */
+    XML_PARSE_BIG_LINES = 4194304 /* Store big lines numbers in text PSVI field */
+    XML_PARSE_NO_XXE = 8388608 /*  disable loading of external content */
 };
 

@@ -1058,7 +1037,7 @@ The content of this structure is not made public by the API. Function type setDocumentLocatorSAXFunc
void	setDocumentLocatorSAXFunc	(void * ctx, 
xmlSAXLocatorPtr loc)
-

Receive the document locator at startup, actually xmlDefaultSAXLocator. Everything is available on the context, so this is useless in our case.

+

Receive the document locator at startup, actually xmlDefaultSAXLocator. Everything is available on the context, so this is useless in our case.

@@ -1267,6 +1246,38 @@ The content of this structure is not made public by the API.

+Variable oldXMLWDcompatibility

+
const int oldXMLWDcompatibility;
+
+

Global setting, DEPRECATED.

+
+
+
+

+Variable xmlDefaultSAXHandler

+
const xmlSAXHandlerV1 xmlDefaultSAXHandler;
+
+

DEPRECATED: This handler is unused and will be removed from future versions. Default SAX version1 handler for XML, builds the DOM tree

+
+
+
+

+Variable xmlDefaultSAXLocator

+
const xmlSAXLocator xmlDefaultSAXLocator;
+
+

DEPRECATED: Don't use The default SAX Locator { getPublicId, getSystemId, getLineNumber, getColumnNumber}

+
+
+
+

+Variable xmlParserDebugEntities

+
const int xmlParserDebugEntities;
+
+

DEPRECATED: Don't use Global setting, asking the parser to print out debugging information. while handling entities. Disabled by default

+
+
+
+

Variable xmlParserVersion

const char * const xmlParserVersion;
 
@@ -1296,6 +1307,14 @@ The content of this structure is not made public by the API.

+xmlCleanupGlobals ()

+
void	xmlCleanupGlobals		(void)
+
+

DEPRECATED: This function is a no-op. Call xmlCleanupParser to free global state but see the warnings there. xmlCleanupParser should be only called once at program exit. In most cases, you don't have call cleanup functions at all.

+
+
+
+

xmlCleanupParser ()

void	xmlCleanupParser		(void)
@@ -1365,11 +1384,11 @@ The content of this structure is not made public by the API.
- + - + @@ -1377,7 +1396,7 @@ The content of this structure is not made public by the API. - + @@ -1385,7 +1404,7 @@ The content of this structure is not made public by the API. - + @@ -1400,33 +1419,58 @@ The content of this structure is not made public by the API. xmlCreatePushParserCtxt ()
xmlParserCtxtPtr	xmlCreatePushParserCtxt	(xmlSAXHandlerPtr sax, 
void * user_data,
const char * chunk,
int size,
const char * filename)
-

Create a parser context for using the XML parser in push mode. If @buffer and @size are non-NULL, the data is used to detect the encoding. The remaining characters will be parsed so they don't need to be fed in again through xmlParseChunk. To allow content encoding detection, @size should be >= 4 The value of @filename is used for fetching external entities and error/warning reports.

+

Create a parser context for using the XML parser in push mode. See xmlParseChunk. Passing an initial chunk is useless and deprecated. @filename is used as base URI to fetch external entities and for error reports.

sax:a SAX handlera SAX handler (optional)
user_data:The user data returned on SAX callbacksuser data for SAX callbacks (optional)
ioread:
ioclose:an I/O close functionan I/O close function (optional)
ioctx:
enc:the charset encoding if knownthe charset encoding if known (deprecated)
Returns:
- + - + - + - + - + - + + + +
sax:a SAX handlera SAX handler (optional)
user_data:The user data returned on SAX callbacksuser data for SAX callbacks (optional)
chunk:a pointer to an array of charsinitial chunk (optional, deprecated)
size:number of chars in the arraysize of initial chunk in bytes
filename:an optional file name or URIfile name or URI (optional)
Returns:the new parser context or NULLthe new parser context or NULL in case of error.
+
+
+
+

+xmlCtxtParseDocument ()

+
xmlDocPtr	xmlCtxtParseDocument	(xmlParserCtxtPtr ctxt, 
xmlParserInputPtr input)
+
+

Parse an XML document and return the resulting document tree. Takes ownership of the input object. Available since 2.13.0.

+
++ + + + + + + + + + + +
ctxt:an XML parser context
input:parser input
Returns:the resulting document tree or NULL
@@ -1437,7 +1481,7 @@ The content of this structure is not made public by the API. xmlCtxtReadDoc ()
xmlDocPtr	xmlCtxtReadDoc		(xmlParserCtxtPtr ctxt, 
const xmlChar * str,
const char * URL,
const char * encoding,
int options)
-

parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context

+

Parse an XML in-memory document and build a tree. @URL is used as base to resolve external entities and for error reporting. See xmlCtxtUseOptions for details.

@@ -1451,11 +1495,11 @@ The content of this structure is not made public by the API. - + - + @@ -1475,7 +1519,7 @@ The content of this structure is not made public by the API. xmlCtxtReadFd ()
xmlDocPtr	xmlCtxtReadFd		(xmlParserCtxtPtr ctxt, 
int fd,
const char * URL,
const char * encoding,
int options)
-

parse an XML from a file descriptor and build a tree. This reuses the existing @ctxt parser context NOTE that the file descriptor will not be closed when the reader is closed or reset.

+

Parse an XML document from a file descriptor and build a tree. NOTE that the file descriptor will not be closed when the context is freed or reset. @URL is used as base to resolve external entities and for error reporting. See xmlCtxtUseOptions for details.

URL:the base URL to use for the documentbase URL (optional)
encoding:the document encoding, or NULLthe document encoding (optional)
options:
@@ -1489,11 +1533,11 @@ The content of this structure is not made public by the API. - + - + @@ -1513,7 +1557,7 @@ The content of this structure is not made public by the API. xmlCtxtReadFile ()
xmlDocPtr	xmlCtxtReadFile		(xmlParserCtxtPtr ctxt, 
const char * filename,
const char * encoding,
int options)
-

parse an XML file from the filesystem or the network. This reuses the existing @ctxt parser context

+

Parse an XML file from the filesystem, the network or a user-defined resource loader. See xmlNewInputURL and xmlCtxtUseOptions for details.

URL:the base URL to use for the documentbase URL (optional)
encoding:the document encoding, or NULLthe document encoding (optional)
options:
@@ -1527,7 +1571,7 @@ The content of this structure is not made public by the API. - + @@ -1547,7 +1591,7 @@ The content of this structure is not made public by the API. xmlCtxtReadIO ()
xmlDocPtr	xmlCtxtReadIO		(xmlParserCtxtPtr ctxt, 
xmlInputReadCallback ioread,
xmlInputCloseCallback ioclose,
void * ioctx,
const char * URL,
const char * encoding,
int options)
-

parse an XML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context

+

parse an XML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context @URL is used as base to resolve external entities and for error reporting. See xmlCtxtUseOptions for details.

encoding:the document encoding, or NULLthe document encoding (optional)
options:
@@ -1593,7 +1637,7 @@ The content of this structure is not made public by the API. xmlCtxtReadMemory ()
xmlDocPtr	xmlCtxtReadMemory	(xmlParserCtxtPtr ctxt, 
const char * buffer,
int size,
const char * URL,
const char * encoding,
int options)
-

parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context

+

Parse an XML in-memory document and build a tree. The input buffer must not contain a terminating null byte. @URL is used as base to resolve external entities and for error reporting. See xmlCtxtUseOptions for details.

@@ -1611,11 +1655,11 @@ The content of this structure is not made public by the API. - + - + @@ -1684,6 +1728,31 @@ The content of this structure is not made public by the API.

+xmlCtxtSetErrorHandler ()

+
void	xmlCtxtSetErrorHandler		(xmlParserCtxtPtr ctxt, 
xmlStructuredErrorFunc handler,
void * data)
+
+

Register a callback function that will be called on errors and warnings. If handler is NULL, the error handler will be deactivated. This is the recommended way to collect errors from the parser and takes precedence over all other error reporting mechanisms. These are (in order of precedence): - per-context structured handler (xmlCtxtSetErrorHandler) - per-context structured "serror" SAX handler - global structured handler (xmlSetStructuredErrorFunc) - per-context generic "error" and "warning" SAX handlers - global generic handler (xmlSetGenericErrorFunc) - print to stderr Available since 2.13.0.

+
URL:the base URL to use for the documentbase URL (optional)
encoding:the document encoding, or NULLthe document encoding (optional)
options:
++ + + + + + + + + + + + + + +
ctxt:an XML parser context
handler:error handler
data:data for error handler
+
+
+
+

xmlCtxtSetMaxAmplification ()

void	xmlCtxtSetMaxAmplification	(xmlParserCtxtPtr ctxt, 
unsigned maxAmpl)
@@ -1705,10 +1774,35 @@ The content of this structure is not made public by the API.

+xmlCtxtSetOptions ()

+
int	xmlCtxtSetOptions		(xmlParserCtxtPtr ctxt, 
int options)
+
+

Applies the options to the parser context. Unset options are cleared. Available since 2.13.0. With older versions, you can use xmlCtxtUseOptions. XML_PARSE_RECOVER Enable "recovery" mode which allows non-wellformed documents. How this mode behaves exactly is unspecified and may change without further notice. Use of this feature is DISCOURAGED. XML_PARSE_NOENT Despite the confusing name, this option enables substitution of entities. The resulting tree won't contain any entity reference nodes. This option also enables loading of external entities (both general and parameter entities) which is dangerous. If you process untrusted data, it's recommended to set the XML_PARSE_NO_XXE option to disable loading of external entities. XML_PARSE_DTDLOAD Enables loading of an external DTD and the loading and substitution of external parameter entities. Has no effect if XML_PARSE_NO_XXE is set. XML_PARSE_DTDATTR Adds default attributes from the DTD to the result document. Implies XML_PARSE_DTDLOAD, but loading of external content can be disabled with XML_PARSE_NO_XXE. XML_PARSE_DTDVALID This option enables DTD validation which requires to load external DTDs and external entities (both general and parameter entities) unless XML_PARSE_NO_XXE was set. XML_PARSE_NO_XXE Disables loading of external DTDs or entities. XML_PARSE_NOERROR Disable error and warning reports to the error handlers. Errors are still accessible with xmlCtxtGetLastError. XML_PARSE_NOWARNING Disable warning reports. XML_PARSE_PEDANTIC Enable some pedantic warnings. XML_PARSE_NOBLANKS Remove some text nodes containing only whitespace from the result document. Which nodes are removed depends on DTD element declarations or a conservative heuristic. The reindenting feature of the serialization code relies on this option to be set when parsing. Use of this option is DISCOURAGED. XML_PARSE_SAX1 Always invoke the deprecated SAX1 startElement and endElement handlers. This option is DEPRECATED. XML_PARSE_NONET Disable network access with the builtin HTTP and FTP clients. XML_PARSE_NODICT Create a document without interned strings, making all strings separate memory allocations. XML_PARSE_NSCLEAN Remove redundant namespace declarations from the result document. XML_PARSE_NOCDATA Output normal text nodes instead of CDATA nodes. XML_PARSE_COMPACT Store small strings directly in the node struct to save memory. XML_PARSE_OLD10 Use old Name productions from before XML 1.0 Fifth Edition. This options is DEPRECATED. XML_PARSE_HUGE Relax some internal limits. Maximum size of text nodes, tags, comments, processing instructions, CDATA sections, entity values normal: 10M huge: 1B Maximum size of names, system literals, pubid literals normal: 50K huge: 10M Maximum nesting depth of elements normal: 256 huge: 2048 Maximum nesting depth of entities normal: 20 huge: 40 XML_PARSE_OLDSAX Enable an unspecified legacy mode for SAX parsers. This option is DEPRECATED. XML_PARSE_IGNORE_ENC Ignore the encoding in the XML declaration. This option is mostly unneeded these days. The only effect is to enforce UTF-8 decoding of ASCII-like data. XML_PARSE_BIG_LINES Enable reporting of line numbers larger than 65535.

+
++ + + + + + + + + + + + + + +
ctxt:an XML parser context
options:a bitmask of xmlParserOption values
Returns:0 in case of success, the set of unknown or unimplemented options in case of error.
+
+
+
+

xmlCtxtUseOptions ()

int	xmlCtxtUseOptions		(xmlParserCtxtPtr ctxt, 
int options)
-

Applies the options to the parser context

+

DEPRECATED: Use xmlCtxtSetOptions. Applies the options to the parser context. The following options are never cleared and can only be enabled: XML_PARSE_NOERROR XML_PARSE_NOWARNING XML_PARSE_NONET XML_PARSE_NSCLEAN XML_PARSE_NOCDATA XML_PARSE_COMPACT XML_PARSE_OLD10 XML_PARSE_HUGE XML_PARSE_OLDSAX XML_PARSE_IGNORE_ENC XML_PARSE_BIG_LINES

@@ -1865,6 +1959,14 @@ The content of this structure is not made public by the API.

+xmlInitGlobals ()

+
void	xmlInitGlobals			(void)
+
+

DEPRECATED: Alias for xmlInitParser.

+
+
+
+

xmlInitNodeInfoSeq ()

void	xmlInitNodeInfoSeq		(xmlParserNodeInfoSeqPtr seq)
@@ -1954,7 +2056,7 @@ The content of this structure is not made public by the API. xmlLoadExternalEntity ()
xmlParserInputPtr	xmlLoadExternalEntity	(const char * URL, 
const char * ID,
xmlParserCtxtPtr ctxt)
-

Load an external entity, note that the use of this function for unparsed entities may generate problems

+

@@ -1981,7 +2083,7 @@ The content of this structure is not made public by the API.

xmlNewIOInputStream ()

-
xmlParserInputPtr	xmlNewIOInputStream	(xmlParserCtxtPtr ctxt, 
xmlParserInputBufferPtr input,
xmlCharEncoding enc)
+
xmlParserInputPtr	xmlNewIOInputStream	(xmlParserCtxtPtr ctxt, 
xmlParserInputBufferPtr buf,
xmlCharEncoding enc)

Create a new input stream structure encapsulating the @input into a stream suitable for the parser.

@@ -1992,8 +2094,8 @@ The content of this structure is not made public by the API. - - + + @@ -2027,7 +2129,7 @@ The content of this structure is not made public by the API. xmlNewSAXParserCtxt ()
xmlParserCtxtPtr	xmlNewSAXParserCtxt	(const xmlSAXHandler * sax, 
void * userData)
-

Allocate and initialize a new SAX parser context. If userData is NULL, the parser context will be passed as user data.

+

Allocate and initialize a new SAX parser context. If userData is NULL, the parser context will be passed as user data. Available since 2.11.0. If you want support older versions, it's best to invoke xmlNewParserCtxt and set ctxt->sax with struct assignment.

an XML parser context
input:an I/O Inputbuf:an input buffer
enc:
@@ -2091,9 +2193,9 @@ The content of this structure is not made public by the API.

xmlParseBalancedChunkMemoryRecover ()

-
int	xmlParseBalancedChunkMemoryRecover	(xmlDocPtr doc, 
xmlSAXHandlerPtr sax,
void * user_data,
int depth,
const xmlChar * string,
xmlNodePtr * lst,
int recover)
+
int	xmlParseBalancedChunkMemoryRecover	(xmlDocPtr doc, 
xmlSAXHandlerPtr sax,
void * user_data,
int depth,
const xmlChar * string,
xmlNodePtr * listOut,
int recover)
-

Parse a well-balanced chunk of an XML document called by the parser The allowed sequence for the Well Balanced Chunk is the one defined by the content production in the XML grammar: [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*

+

Parse a well-balanced chunk of an XML document The allowed sequence for the Well Balanced Chunk is the one defined by the content production in the XML grammar: [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*

@@ -2118,7 +2220,7 @@ The content of this structure is not made public by the API. - + @@ -2127,7 +2229,7 @@ The content of this structure is not made public by the API. - +
the input string in UTF8 or ISO-Latin (zero terminated)
lst:listOut: the return value for the set of parsed nodes
Returns:0 if the chunk is well balanced, -1 in case of args problem and the parser error code otherwise In case recover is set to 1, the nodelist will not be empty even if the parsed chunk is not well balanced, assuming the parsing succeeded to some extent.0 if the chunk is well balanced, or thehe parser error code otherwise. In case recover is set to 1, the nodelist will not be empty even if the parsed chunk is not well balanced, assuming the parsing succeeded to some extent.
@@ -2138,7 +2240,7 @@ The content of this structure is not made public by the API. xmlParseChunk ()
int	xmlParseChunk			(xmlParserCtxtPtr ctxt, 
const char * chunk,
int size,
int terminate)
-

Parse a Chunk of memory

+

Parse a chunk of memory in push parser mode. Assumes that the parser context was initialized with xmlCreatePushParserCtxt. The last chunk, which will often be empty, must be marked with the @terminate flag. With the default SAX callbacks, the resulting document will be available in ctxt->myDoc. This pointer will not be freed by the library. If the document isn't well-formed, ctxt->myDoc is set to NULL. The push parser doesn't support recovery mode.

@@ -2148,11 +2250,11 @@ The content of this structure is not made public by the API. - + - + @@ -2160,7 +2262,7 @@ The content of this structure is not made public by the API. - +
chunk:an char arraychunk of memory
size:the size in byte of the chunksize of chunk in bytes
terminate:
Returns:zero if no error, the xmlParserErrors otherwise.an xmlParserErrors code (0 on success).
@@ -2169,14 +2271,14 @@ The content of this structure is not made public by the API.

xmlParseCtxtExternalEntity ()

-
int	xmlParseCtxtExternalEntity	(xmlParserCtxtPtr ctx, 
const xmlChar * URL,
const xmlChar * ID,
xmlNodePtr * lst)
+
int	xmlParseCtxtExternalEntity	(xmlParserCtxtPtr ctxt, 
const xmlChar * URL,
const xmlChar * ID,
xmlNodePtr * listOut)

Parse an external general entity within an existing parsing context An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content

- + @@ -2188,7 +2290,7 @@ The content of this structure is not made public by the API. - + @@ -2251,7 +2353,7 @@ The content of this structure is not made public by the API. xmlParseDocument ()
int	xmlParseDocument		(xmlParserCtxtPtr ctxt)
-

parse an XML document (and build a tree if using the standard SAX interface). [1] document ::= prolog element Misc* [22] prolog ::= XMLDecl? Misc* (doctypedecl Misc*)?

+

Parse an XML document and invoke the SAX handlers. This is useful if you're only interested in custom SAX callbacks. If you want a document tree, use xmlCtxtParseDocument.

ctx:ctxt: the existing parsing context
the System ID for the entity to load
lst:listOut: the return value for the set of parsed nodes
@@ -2261,7 +2363,7 @@ The content of this structure is not made public by the API. - +
Returns:0, -1 in case of error. the parser context is augmented as a result of the parsing.0, -1 in case of error.
@@ -2312,9 +2414,9 @@ The content of this structure is not made public by the API.

xmlParseExternalEntity ()

-
int	xmlParseExternalEntity		(xmlDocPtr doc, 
xmlSAXHandlerPtr sax,
void * user_data,
int depth,
const xmlChar * URL,
const xmlChar * ID,
xmlNodePtr * lst)
+
int	xmlParseExternalEntity		(xmlDocPtr doc, 
xmlSAXHandlerPtr sax,
void * user_data,
int depth,
const xmlChar * URL,
const xmlChar * ID,
xmlNodePtr * list)
-

Parse an external general entity An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content

+

DEPRECATED: Use xmlParseCtxtExternalEntity. Parse an external general entity An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content

@@ -2343,7 +2445,7 @@ The content of this structure is not made public by the API. - + @@ -2442,7 +2544,7 @@ The content of this structure is not made public by the API.

xmlParserAddNodeInfo ()

-
void	xmlParserAddNodeInfo		(xmlParserCtxtPtr ctxt, 
const xmlParserNodeInfoPtr info)
+
void	xmlParserAddNodeInfo		(xmlParserCtxtPtr ctxt, 
xmlParserNodeInfoPtr info)

DEPRECATED: Don't use. Insert node info record into the sorted sequence

the System ID for the entity to load
lst:list: the return value for the set of parsed nodes
@@ -2463,7 +2565,7 @@ The content of this structure is not made public by the API.

xmlParserFindNodeInfo ()

-
const xmlParserNodeInfo *	xmlParserFindNodeInfo	(const xmlParserCtxtPtr ctx, 
const xmlNodePtr node)
+
const xmlParserNodeInfo *	xmlParserFindNodeInfo	(xmlParserCtxtPtr ctx, 
xmlNodePtr node)

DEPRECATED: Don't use. Find the parser node info struct for a given node

@@ -2488,7 +2590,7 @@ The content of this structure is not made public by the API.

xmlParserFindNodeInfoIndex ()

-
unsigned long	xmlParserFindNodeInfoIndex	(const xmlParserNodeInfoSeqPtr seq, 
const xmlNodePtr node)
+
unsigned long	xmlParserFindNodeInfoIndex	(xmlParserNodeInfoSeqPtr seq, 
xmlNodePtr node)

DEPRECATED: Don't use. xmlParserFindNodeInfoIndex : Find the index that the info record for the given node is or should be at in a sorted sequence

@@ -2586,7 +2688,7 @@ The content of this structure is not made public by the API. xmlReadDoc ()
xmlDocPtr	xmlReadDoc		(const xmlChar * cur, 
const char * URL,
const char * encoding,
int options)
-

parse an XML in-memory document and build a tree.

+

Convenience function to parse an XML document from a zero-terminated string. See xmlCtxtReadDoc for details.

@@ -2596,11 +2698,11 @@ The content of this structure is not made public by the API. - + - + @@ -2620,7 +2722,7 @@ The content of this structure is not made public by the API. xmlReadFd ()
xmlDocPtr	xmlReadFd		(int fd, 
const char * URL,
const char * encoding,
int options)
-

parse an XML from a file descriptor and build a tree. NOTE that the file descriptor will not be closed when the reader is closed or reset.

+

Parse an XML from a file descriptor and build a tree. See xmlCtxtReadFd for details. NOTE that the file descriptor will not be closed when the context is freed or reset.

URL:the base URL to use for the documentbase URL (optional)
encoding:the document encoding, or NULLthe document encoding (optional)
options:
@@ -2630,11 +2732,11 @@ The content of this structure is not made public by the API. - + - + @@ -2654,7 +2756,7 @@ The content of this structure is not made public by the API. xmlReadFile ()
xmlDocPtr	xmlReadFile		(const char * filename, 
const char * encoding,
int options)
-

parse an XML file from the filesystem or the network.

+

Convenience function to parse an XML file from the filesystem, the network or a global user-define resource loader. See xmlCtxtReadFile for details.

URL:the base URL to use for the documentbase URL (optional)
encoding:the document encoding, or NULLthe document encoding (optional)
options:
@@ -2664,7 +2766,7 @@ The content of this structure is not made public by the API. - + @@ -2684,7 +2786,7 @@ The content of this structure is not made public by the API. xmlReadIO ()
xmlDocPtr	xmlReadIO		(xmlInputReadCallback ioread, 
xmlInputCloseCallback ioclose,
void * ioctx,
const char * URL,
const char * encoding,
int options)
-

parse an XML document from I/O functions and source and build a tree.

+

Parse an XML document from I/O functions and context and build a tree. See xmlCtxtReadIO for details.

encoding:the document encoding, or NULLthe document encoding (optional)
options:
@@ -2694,7 +2796,7 @@ The content of this structure is not made public by the API. - + @@ -2702,11 +2804,11 @@ The content of this structure is not made public by the API. - + - + @@ -2724,9 +2826,9 @@ The content of this structure is not made public by the API.

xmlReadMemory ()

-
xmlDocPtr	xmlReadMemory		(const char * buffer, 
int size,
const char * URL,
const char * encoding,
int options)
+
xmlDocPtr	xmlReadMemory		(const char * buffer, 
int size,
const char * url,
const char * encoding,
int options)
-

parse an XML in-memory document and build a tree.

+

Parse an XML in-memory document and build a tree. The input buffer must not contain a terminating null byte. See xmlCtxtReadMemory for details.

ioclose:an I/O close functionan I/O close function (optional)
ioctx:
URL:the base URL to use for the documentbase URL (optional)
encoding:the document encoding, or NULLthe document encoding (optional)
options:
@@ -2739,12 +2841,12 @@ The content of this structure is not made public by the API. - - + + - + diff --git a/doc/devhelp/libxml2-parserInternals.html b/doc/devhelp/libxml2-parserInternals.html index 38a46419..13adbc87 100644 --- a/doc/devhelp/libxml2-parserInternals.html +++ b/doc/devhelp/libxml2-parserInternals.html @@ -65,6 +65,7 @@ int xmlCopyCharMultiByte (xmlParserCtxtPtrxmlCreateFileParserCtxt (const char * filename); xmlParserCtxtPtrxmlCreateMemoryParserCtxt (const char * buffer,
int size); xmlParserCtxtPtrxmlCreateURLParserCtxt (const char * filename,
int options); +void xmlCtxtErrMemory (xmlParserCtxtPtr ctxt); int xmlCurrentChar (xmlParserCtxtPtr ctxt,
int * len); xmlChar * xmlDecodeEntities (xmlParserCtxtPtr ctxt,
int len,
int what,
xmlChar end,
xmlChar end2,
xmlChar end3); typedef void xmlEntityReferenceFunc (xmlEntityPtr ent,
xmlNodePtr firstNode,
xmlNodePtr lastNode); @@ -74,7 +75,7 @@ int xmlIsLetter (int c); xmlChar * xmlNamespaceParseNCName (xmlParserCtxtPtr ctxt); xmlChar * xmlNamespaceParseNSDef (xmlParserCtxtPtr ctxt); xmlChar * xmlNamespaceParseQName (xmlParserCtxtPtr ctxt,
xmlChar ** prefix); -xmlParserInputPtrxmlNewEntityInputStream (xmlParserCtxtPtr ctxt,
xmlEntityPtr entity); +xmlParserInputPtrxmlNewEntityInputStream (xmlParserCtxtPtr ctxt,
xmlEntityPtr ent); xmlParserInputPtrxmlNewInputFromFile (xmlParserCtxtPtr ctxt,
const char * filename); xmlParserInputPtrxmlNewInputStream (xmlParserCtxtPtr ctxt); xmlParserInputPtrxmlNewStringInputStream (xmlParserCtxtPtr ctxt,
const xmlChar * buffer); @@ -133,11 +134,12 @@ int xmlPushInput (xmlChar * xmlScanName (xmlParserCtxtPtr ctxt); void xmlSetEntityReferenceFunc (xmlEntityReferenceFunc func); int xmlSkipBlankChars (xmlParserCtxtPtr ctxt); -xmlChar * xmlSplitQName (xmlParserCtxtPtr ctxt,
const xmlChar * name,
xmlChar ** prefix); +xmlChar * xmlSplitQName (xmlParserCtxtPtr ctxt,
const xmlChar * name,
xmlChar ** prefixOut); int xmlStringCurrentChar (xmlParserCtxtPtr ctxt,
const xmlChar * cur,
int * len); xmlChar * xmlStringDecodeEntities (xmlParserCtxtPtr ctxt,
const xmlChar * str,
int what,
xmlChar end,
xmlChar end2,
xmlChar end3); xmlChar * xmlStringLenDecodeEntities (xmlParserCtxtPtr ctxt,
const xmlChar * str,
int len,
int what,
xmlChar end,
xmlChar end2,
xmlChar end3); int xmlSwitchEncoding (xmlParserCtxtPtr ctxt,
xmlCharEncoding enc); +int xmlSwitchEncodingName (xmlParserCtxtPtr ctxt,
const char * encoding); int xmlSwitchInputEncoding (xmlParserCtxtPtr ctxt,
xmlParserInputPtr input,
xmlCharEncodingHandlerPtr handler); int xmlSwitchToEncoding (xmlParserCtxtPtr ctxt,
xmlCharEncodingHandlerPtr handler); @@ -547,7 +549,7 @@ int xmlSwitchToEncoding (

Variable xmlParserMaxDepth

-
unsigned int xmlParserMaxDepth;
+
const unsigned int xmlParserMaxDepth;
 

arbitrary depth limit for the XML documents that we allow to process. This is not a limitation of the parser but a safety boundary feature. It can be disabled with the XML_PARSE_HUGE parser option.

@@ -796,7 +798,7 @@ int xmlSwitchToEncoding (xmlCreateEntityParserCtxt ()
xmlParserCtxtPtr	xmlCreateEntityParserCtxt	(const xmlChar * URL, 
const xmlChar * ID,
const xmlChar * base)
-

Create a parser context for an external entity Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.

+

DEPRECATED: Use xmlNewInputURL. Create a parser context for an external entity Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.

the size of the array
URL:the base URL to use for the documenturl:base URL (optional)
encoding:the document encoding, or NULLthe document encoding (optional)
options:
@@ -825,7 +827,7 @@ int xmlSwitchToEncoding (xmlCreateFileParserCtxt ()
xmlParserCtxtPtr	xmlCreateFileParserCtxt	(const char * filename)
-

Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.

+

DEPRECATED: Use xmlNewParserCtxt and xmlCtxtReadFile. Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.

@@ -846,7 +848,7 @@ int xmlSwitchToEncoding (xmlCreateMemoryParserCtxt ()
xmlParserCtxtPtr	xmlCreateMemoryParserCtxt	(const char * buffer, 
int size)
-

Create a parser context for an XML in-memory document.

+

Create a parser context for an XML in-memory document. The input buffer must not contain a terminating null byte.

@@ -871,7 +873,7 @@ int xmlSwitchToEncoding (xmlCreateURLParserCtxt ()
xmlParserCtxtPtr	xmlCreateURLParserCtxt	(const char * filename, 
int options)
-

Create a parser context for a file or URL content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time and for file accesses

+

DEPRECATED: Use xmlNewParserCtxt and xmlCtxtReadFile. Create a parser context for a file or URL content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time and for file accesses

@@ -894,6 +896,21 @@ int xmlSwitchToEncoding (

+xmlCtxtErrMemory ()

+
void	xmlCtxtErrMemory		(xmlParserCtxtPtr ctxt)
+
+

Handle an out-of-memory error. Available since 2.13.0.

+
++ + + + +
ctxt:an XML parser context
+
+
+
+

xmlCurrentChar ()

int	xmlCurrentChar			(xmlParserCtxtPtr ctxt, 
int * len)
@@ -1087,7 +1104,7 @@ int xmlSwitchToEncoding (

xmlNewEntityInputStream ()

-
xmlParserInputPtr	xmlNewEntityInputStream	(xmlParserCtxtPtr ctxt, 
xmlEntityPtr entity)
+
xmlParserInputPtr	xmlNewEntityInputStream	(xmlParserCtxtPtr ctxt, 
xmlEntityPtr ent)

DEPRECATED: Internal function, do not use. Create a new input stream based on an xmlEntityPtr

@@ -1098,7 +1115,7 @@ int xmlSwitchToEncoding (entity: + @@ -1359,7 +1376,7 @@ int xmlSwitchToEncoding (xmlParseContent ()
void	xmlParseContent			(xmlParserCtxtPtr ctxt)
-

Parse a content sequence. Stops at EOF or '</'. [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*

+

Parse XML element content. This is useful if you're only interested in custom SAX callbacks. If you want a node list, use xmlParseInNodeContext.

ent: an Entity pointer
@@ -1602,7 +1619,7 @@ int xmlSwitchToEncoding (xmlParseEntityRef ()
xmlEntityPtr	xmlParseEntityRef	(xmlParserCtxtPtr ctxt)
-

DEPRECATED: Internal function, don't use. Parse an entitiy reference. Always consumes '&'. [68] EntityRef ::= '&' Name ';' [ WFC: Entity Declared ] In a document without any DTD, a document with only an internal DTD subset which contains no parameter entity references, or a document with "standalone='yes'", the Name given in the entity reference must match that in an entity declaration, except that well-formed documents need not declare any of the following entities: amp, lt, gt, apos, quot. The declaration of a parameter entity must precede any reference to it. Similarly, the declaration of a general entity must precede any reference to it which appears in a default value in an attribute-list declaration. Note that if entities are declared in the external subset or in external parameter entities, a non-validating processor is not obligated to read and process their declarations; for such documents, the rule that an entity must be declared is a well-formedness constraint only if standalone='yes'. [ WFC: Parsed Entity ] An entity reference must not contain the name of an unparsed entity

+

DEPRECATED: Internal function, don't use.

@@ -2182,7 +2199,7 @@ int xmlSwitchToEncoding (xmlPushInput ()
int	xmlPushInput			(xmlParserCtxtPtr ctxt, 
xmlParserInputPtr input)
-

xmlPushInput: switch to a new input stream which is stacked on top of the previous one(s).

+

Push an input stream onto the stack. This makes the parser use an input returned from advanced functions like xmlNewInputURL or xmlNewInputMemory.

@@ -2243,7 +2260,7 @@ int xmlSwitchToEncoding (xmlSkipBlankChars ()
int	xmlSkipBlankChars		(xmlParserCtxtPtr ctxt)
-

DEPRECATED: Internal function, do not use. skip all blanks character found at that point in the input streams. It pops up finished entities in the process if allowable at that point.

+

DEPRECATED: Internal function, do not use. Skip whitespace in the input stream.

@@ -2262,7 +2279,7 @@ int xmlSwitchToEncoding (

xmlSplitQName ()

-
xmlChar *	xmlSplitQName		(xmlParserCtxtPtr ctxt, 
const xmlChar * name,
xmlChar ** prefix)
+
xmlChar *	xmlSplitQName		(xmlParserCtxtPtr ctxt, 
const xmlChar * name,
xmlChar ** prefixOut)

parse an UTF8 encoded XML qualified name string [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName

@@ -2277,7 +2294,7 @@ int xmlSwitchToEncoding (prefix: + @@ -2322,7 +2339,7 @@ int xmlSwitchToEncoding (xmlStringDecodeEntities ()
xmlChar *	xmlStringDecodeEntities	(xmlParserCtxtPtr ctxt, 
const xmlChar * str,
int what,
xmlChar end,
xmlChar end2,
xmlChar end3)
-

DEPRECATED: Internal function, don't use. Takes a entity string content and process to do the adequate substitutions. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';'

+

DEPRECATED: Internal function, don't use.

prefixOut: a xmlChar **
@@ -2364,7 +2381,7 @@ int xmlSwitchToEncoding (xmlStringLenDecodeEntities ()
xmlChar *	xmlStringLenDecodeEntities	(xmlParserCtxtPtr ctxt, 
const xmlChar * str,
int len,
int what,
xmlChar end,
xmlChar end2,
xmlChar end3)
-

DEPRECATED: Internal function, don't use. Takes a entity string content and process to do the adequate substitutions. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';'

+

DEPRECATED: Internal function, don't use.

@@ -2410,7 +2427,7 @@ int xmlSwitchToEncoding (xmlSwitchEncoding ()
int	xmlSwitchEncoding		(xmlParserCtxtPtr ctxt, 
xmlCharEncoding enc)
-

Use encoding specified by enum to decode input data. This function can be used to enforce the encoding of chunks passed to xmlParseChunk.

+

Use encoding specified by enum to decode input data. This overrides the encoding found in the XML declaration. This function can also be used to override the encoding of chunks passed to xmlParseChunk.

@@ -2432,6 +2449,31 @@ int xmlSwitchToEncoding (

+xmlSwitchEncodingName ()

+
int	xmlSwitchEncodingName		(xmlParserCtxtPtr ctxt, 
const char * encoding)
+
+

Use specified encoding to decode input data. This overrides the encoding found in the XML declaration. This function can also be used to override the encoding of chunks passed to xmlParseChunk. Available since 2.13.0.

+
++ + + + + + + + + + + + + + +
ctxt:the parser context
encoding:the encoding name
Returns:0 in case of success, -1 otherwise
+
+
+
+

xmlSwitchInputEncoding ()

int	xmlSwitchInputEncoding		(xmlParserCtxtPtr ctxt, 
xmlParserInputPtr input,
xmlCharEncodingHandlerPtr handler)
@@ -2441,7 +2483,7 @@ int xmlSwitchToEncoding (ctxt: -the parser context +the parser context, only for error reporting input: diff --git a/doc/devhelp/libxml2-pattern.html b/doc/devhelp/libxml2-pattern.html index 72992a6c..332ca7b8 100644 --- a/doc/devhelp/libxml2-pattern.html +++ b/doc/devhelp/libxml2-pattern.html @@ -30,6 +30,7 @@ typedef xmlStreamCtxt * xmlFreePattern (xmlPatternPtr comp); void xmlFreePatternList (xmlPatternPtr comp); void xmlFreeStreamCtxt (xmlStreamCtxtPtr stream); +int xmlPatternCompileSafe (const xmlChar * pattern,
xmlDict * dict,
int flags,
const xmlChar ** namespaces,
xmlPatternPtr * patternOut); int xmlPatternFromRoot (xmlPatternPtr comp); xmlStreamCtxtPtr xmlPatternGetStreamCtxt (xmlPatternPtr comp); int xmlPatternMatch (xmlPatternPtr comp,
xmlNodePtr node); @@ -144,6 +145,44 @@ The content of this structure is not made public by the API.

+xmlPatternCompileSafe ()

+
int	xmlPatternCompileSafe		(const xmlChar * pattern, 
xmlDict * dict,
int flags,
const xmlChar ** namespaces,
xmlPatternPtr * patternOut)
+
+

Compile a pattern. Available since 2.13.0.

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
pattern:the pattern to compile
dict:an optional dictionary for interned strings
flags:compilation flags, see xmlPatternFlags +
namespaces:the prefix definitions, array of [URI, prefix] or NULL
patternOut:output pattern
Returns:0 on success, 1 on error, -1 if a memory allocation failed.
+
+
+
+

xmlPatternFromRoot ()

int	xmlPatternFromRoot		(xmlPatternPtr comp)
diff --git a/doc/devhelp/libxml2-relaxng.html b/doc/devhelp/libxml2-relaxng.html index 72d1b8be..7a01a4d2 100644 --- a/doc/devhelp/libxml2-relaxng.html +++ b/doc/devhelp/libxml2-relaxng.html @@ -517,7 +517,7 @@ The content of this structure is not made public by the API. xmlRelaxNGSetParserErrors ()
void	xmlRelaxNGSetParserErrors	(xmlRelaxNGParserCtxtPtr ctxt, 
xmlRelaxNGValidityErrorFunc err,
xmlRelaxNGValidityWarningFunc warn,
void * ctx)
-

Set the callback functions used to handle errors for a validation context

+

DEPRECATED: Use xmlRelaxNGSetParserStructuredErrors. Set the callback functions used to handle errors for a validation context

@@ -571,7 +571,7 @@ The content of this structure is not made public by the API. xmlRelaxNGSetValidErrors ()
void	xmlRelaxNGSetValidErrors	(xmlRelaxNGValidCtxtPtr ctxt, 
xmlRelaxNGValidityErrorFunc err,
xmlRelaxNGValidityWarningFunc warn,
void * ctx)
-

Set the error and warning callback information

+

DEPRECATED: Use xmlRelaxNGSetValidStructuredErrors. Set the error and warning callback information

diff --git a/doc/devhelp/libxml2-tree.html b/doc/devhelp/libxml2-tree.html index 61d6aa78..814163a4 100644 --- a/doc/devhelp/libxml2-tree.html +++ b/doc/devhelp/libxml2-tree.html @@ -86,9 +86,9 @@ typedef struct _xmlSAXLocator xmlSAXLocator; typedef xmlSAXLocator * xmlSAXLocatorPtr; xmlNodePtrxmlAddChild (xmlNodePtr parent,
xmlNodePtr cur); xmlNodePtrxmlAddChildList (xmlNodePtr parent,
xmlNodePtr cur); -xmlNodePtrxmlAddNextSibling (xmlNodePtr cur,
xmlNodePtr elem); -xmlNodePtrxmlAddPrevSibling (xmlNodePtr cur,
xmlNodePtr elem); -xmlNodePtrxmlAddSibling (xmlNodePtr cur,
xmlNodePtr elem); +xmlNodePtrxmlAddNextSibling (xmlNodePtr prev,
xmlNodePtr cur); +xmlNodePtrxmlAddPrevSibling (xmlNodePtr next,
xmlNodePtr cur); +xmlNodePtrxmlAddSibling (xmlNodePtr node,
xmlNodePtr cur); void xmlAttrSerializeTxtContent (xmlBufferPtr buf,
xmlDocPtr doc,
xmlAttrPtr attr,
const xmlChar * string); xmlChar * xmlBufContent (const xmlBuf * buf); xmlChar * xmlBufEnd (xmlBufPtr buf); @@ -165,6 +165,7 @@ long xmlGetLineNo (const xmlChar * xmlGetNoNsProp (const xmlNode * node,
const xmlChar * name); xmlChar * xmlGetNodePath (const xmlNode * node); xmlNsPtr * xmlGetNsList (const xmlDoc * doc,
const xmlNode * node); +int xmlGetNsListSafe (const xmlDoc * doc,
const xmlNode * node,
xmlNsPtr ** out); xmlChar * xmlGetNsProp (const xmlNode * node,
const xmlChar * name,
const xmlChar * nameSpace); xmlChar * xmlGetProp (const xmlNode * node,
const xmlChar * name); xmlAttrPtrxmlHasNsProp (const xmlNode * node,
const xmlChar * name,
const xmlChar * nameSpace); @@ -200,24 +201,26 @@ int xmlIsXHTML (const xmlNodePtrxmlNewTextChild (xmlNodePtr parent,
xmlNsPtr ns,
const xmlChar * name,
const xmlChar * content); xmlNodePtrxmlNewTextLen (const xmlChar * content,
int len); xmlNodePtrxmlNextElementSibling (xmlNodePtr node); -void xmlNodeAddContent (xmlNodePtr cur,
const xmlChar * content); -void xmlNodeAddContentLen (xmlNodePtr cur,
const xmlChar * content,
int len); +int xmlNodeAddContent (xmlNodePtr cur,
const xmlChar * content); +int xmlNodeAddContentLen (xmlNodePtr cur,
const xmlChar * content,
int len); int xmlNodeBufGetContent (xmlBufferPtr buffer,
const xmlNode * cur); int xmlNodeDump (xmlBufferPtr buf,
xmlDocPtr doc,
xmlNodePtr cur,
int level,
int format); void xmlNodeDumpOutput (xmlOutputBufferPtr buf,
xmlDocPtr doc,
xmlNodePtr cur,
int level,
int format,
const char * encoding); +int xmlNodeGetAttrValue (const xmlNode * node,
const xmlChar * name,
const xmlChar * nsUri,
xmlChar ** out); xmlChar * xmlNodeGetBase (const xmlDoc * doc,
const xmlNode * cur); +int xmlNodeGetBaseSafe (const xmlDoc * doc,
const xmlNode * cur,
xmlChar ** baseOut); xmlChar * xmlNodeGetContent (const xmlNode * cur); xmlChar * xmlNodeGetLang (const xmlNode * cur); int xmlNodeGetSpacePreserve (const xmlNode * cur); int xmlNodeIsText (const xmlNode * node); xmlChar * xmlNodeListGetRawString (const xmlDoc * doc,
const xmlNode * list,
int inLine); xmlChar * xmlNodeListGetString (xmlDocPtr doc,
const xmlNode * list,
int inLine); -void xmlNodeSetBase (xmlNodePtr cur,
const xmlChar * uri); -void xmlNodeSetContent (xmlNodePtr cur,
const xmlChar * content); -void xmlNodeSetContentLen (xmlNodePtr cur,
const xmlChar * content,
int len); -void xmlNodeSetLang (xmlNodePtr cur,
const xmlChar * lang); +int xmlNodeSetBase (xmlNodePtr cur,
const xmlChar * uri); +int xmlNodeSetContent (xmlNodePtr cur,
const xmlChar * content); +int xmlNodeSetContentLen (xmlNodePtr cur,
const xmlChar * content,
int len); +int xmlNodeSetLang (xmlNodePtr cur,
const xmlChar * lang); void xmlNodeSetName (xmlNodePtr cur,
const xmlChar * name); -void xmlNodeSetSpacePreserve (xmlNodePtr cur,
int val); +int xmlNodeSetSpacePreserve (xmlNodePtr cur,
int val); xmlNodePtrxmlPreviousElementSibling (xmlNodePtr node); int xmlReconciliateNs (xmlDocPtr doc,
xmlNodePtr tree); xmlRegisterNodeFuncxmlRegisterNodeDefault (xmlRegisterNodeFunc func); @@ -235,11 +238,11 @@ int xmlSaveFormatFileTo (xmlSetBufferAllocationScheme (xmlBufferAllocationScheme scheme); void xmlSetCompressMode (int mode); void xmlSetDocCompressMode (xmlDocPtr doc,
int mode); -void xmlSetListDoc (xmlNodePtr list,
xmlDocPtr doc); +int xmlSetListDoc (xmlNodePtr list,
xmlDocPtr doc); void xmlSetNs (xmlNodePtr node,
xmlNsPtr ns); xmlAttrPtrxmlSetNsProp (xmlNodePtr node,
xmlNsPtr ns,
const xmlChar * name,
const xmlChar * value); xmlAttrPtrxmlSetProp (xmlNodePtr node,
const xmlChar * name,
const xmlChar * value); -void xmlSetTreeDoc (xmlNodePtr tree,
xmlDocPtr doc); +int xmlSetTreeDoc (xmlNodePtr tree,
xmlDocPtr doc); xmlChar * xmlSplitQName2 (const xmlChar * name,
xmlChar ** prefix); const xmlChar * xmlSplitQName3 (const xmlChar * name,
int * len); xmlNodePtrxmlStringGetNodeList (const xmlDoc * doc,
const xmlChar * value); @@ -351,6 +354,7 @@ int xmlValidateQName (const xmlNs * ns : pointer to the associated namespace xmlAttributeType atype : the attribute type if validating void * psvi : for type/PSVI information + struct _xmlID * id : the ID struct } xmlAttr;

@@ -687,13 +691,13 @@ The content of this structure is not made public by the API. XML_TEXT_NODE = 3 XML_CDATA_SECTION_NODE = 4 XML_ENTITY_REF_NODE = 5 - XML_ENTITY_NODE = 6 + XML_ENTITY_NODE = 6 /* unused */ XML_PI_NODE = 7 XML_COMMENT_NODE = 8 XML_DOCUMENT_NODE = 9 - XML_DOCUMENT_TYPE_NODE = 10 + XML_DOCUMENT_TYPE_NODE = 10 /* unused */ XML_DOCUMENT_FRAG_NODE = 11 - XML_NOTATION_NODE = 12 + XML_NOTATION_NODE = 12 /* unused */ XML_HTML_DOCUMENT_NODE = 13 XML_DTD_NODE = 14 XML_ELEMENT_DECL = 15 @@ -742,7 +746,7 @@ The content of this structure is not made public by the API. const xmlChar * SystemID : URI for a SYSTEM or PUBLIC Entity struct _xmlEntity * nexte : unused const xmlChar * URI : the full URI as computed - int owner : does the entity own the childrens + int owner : unused int flags : various flags unsigned long expandedSize : expanded size } xmlEntity; @@ -935,13 +939,13 @@ The content of this structure is not made public by the API. int errNo : error code int hasExternalSubset : reference and external subset int hasPErefs : the internal subset has PE refs - int external : are we parsing an external entity + int external : unused int valid : is the document valid int validate : shall we try to validate ? xmlValidCtxt vctxt : The validity context - xmlParserInputState instate : current type of input - int token : next char look-ahead - char * directory : the data directory Node name stack + xmlParserInputState instate : push parser state + int token : unused + char * directory : unused Node name stack const xmlChar * name : Current parsed Node int nameNr : Depth of the parsing stack int nameMax : Max depth of the parsing stack @@ -959,7 +963,7 @@ The content of this structure is not made public by the API. int spaceMax : Max depth of the parsing stack int * spaceTab : array of space infos int depth : to prevent entity substitution loops - xmlParserInputPtr entity : used to check entities boundaries + xmlParserInputPtr entity : unused int charset : unused int nodelen : Those two fields are there to int nodemem : Speed up large node parsing @@ -969,7 +973,7 @@ The content of this structure is not made public by the API. int linenumbers : set line number in element content void * catalogs : document's own catalog int recovery : run in recovery mode - int progressive : is this a progressive parsing + int progressive : unused xmlDictPtr dict : dictionary for the parser const xmlChar * * atts : array for the attributes callbacks int maxatts : the size of the array @@ -995,7 +999,7 @@ The content of this structure is not made public by the API. xmlError lastError xmlParserMode parseMode : the parser mode unsigned long nbentities : unused - unsigned long sizeentities : size of parsed entities for use by HTML non-recursive parser + unsigned long sizeentities : size of external entities for use by HTML non-recursive parser xmlParserNodeInfo * nodeInfo : Current NodeInfo int nodeInfoNr : Depth of the parsing stack int nodeInfoMax : Max depth of the parsing stack @@ -1009,6 +1013,8 @@ The content of this structure is not made public by the API. xmlParserNsData * nsdb : namespace database unsigned attrHashMax : allocated size xmlAttrHashBucket * attrHash : atttribute hash table + xmlStructuredErrorFunc errorHandler + void * errorCtxt } xmlParserCtxt;

@@ -1028,11 +1034,11 @@ The content of this structure is not made public by the API.
struct _xmlParserInput {
     xmlParserInputBufferPtr	buf	: UTF-8 encoded buffer
     const char *	filename	: The file analyzed, if any
-    const char *	directory	: the directory/base of the file
+    const char *	directory	: unused
     const xmlChar *	base	: Base of the array to parse
     const xmlChar *	cur	: Current char being parsed
     const xmlChar *	end	: end of the array to parse
-    int	length	: length if known
+    int	length	: unused
     int	line	: Current line
     int	col	: Current column
     unsigned long	consumed	: How many xmlChars already consumed
@@ -1041,7 +1047,7 @@ The content of this structure is not made public by the API.
     const xmlChar *	version	: the version string for entity
     int	flags	: Flags
     int	id	: an unique identifier for the entity
-    unsigned long	parentConsumed	: consumed bytes from parents
+    unsigned long	parentConsumed	: unused
     xmlEntityPtr	entity	: entity, if any
 } xmlParserInput;
 
@@ -1121,7 +1127,7 @@ The content of this structure is not made public by the API. unparsedEntityDeclSAXFunc unparsedEntityDecl setDocumentLocatorSAXFunc setDocumentLocator startDocumentSAXFunc startDocument - endDocumentSAXFunc endDocument + endDocumentSAXFunc endDocument : * `startElement` and `endElement` are only used by the legacy SAX1 * i startElementSAXFunc startElement endElementSAXFunc endElement referenceSAXFunc reference @@ -1134,8 +1140,8 @@ The content of this structure is not made public by the API. fatalErrorSAXFunc fatalError : unused error() get all the errors getParameterEntitySAXFunc getParameterEntity cdataBlockSAXFunc cdataBlock - externalSubsetSAXFunc externalSubset - unsigned int initialized : The following fields are extensions available only on version 2 + externalSubsetSAXFunc externalSubset : * `initialized` should always be set to XML_SAX2_MAGIC to enable the * + unsigned int initialized : * The following members are only used by the SAX2 interface. * void * _private startElementNsSAX2Func startElementNs endElementNsSAX2Func endElementNs @@ -1242,7 +1248,7 @@ The content of this structure is not made public by the API. xmlAddChild ()
xmlNodePtr	xmlAddChild		(xmlNodePtr parent, 
xmlNodePtr cur)
-

Add a new node to @parent, at the end of the child (or property) list merging adjacent TEXT nodes (in which case @cur is freed) If the new node is ATTRIBUTE, it is added into properties instead of children. If there is an attribute with equal name, it is first destroyed. All tree manipulation functions can safely move nodes within a document. But when moving nodes from one document to another, references to namespaces in element or attribute nodes are NOT fixed. In this case, you MUST call xmlReconciliateNs after the move operation to avoid memory errors.

+

Unlink @cur and append it to the children of @parent. If @cur is a text node, it may be merged with an adjacent text node and freed. In this case the text node containing the merged content is returned. If @cur is an attribute node, it is appended to the attributes of @parent. If the attribute list contains an attribute with a name matching @elem, the old attribute is destroyed. General notes: Move operations like xmlAddChild can cause element or attribute nodes to reference namespaces that aren't declared in one of their ancestors. This can lead to use-after-free errors if the elements containing the declarations are freed later, especially when moving nodes from one document to another. You should consider calling xmlReconciliateNs after a move operation to normalize namespaces. Another option is to call xmlDOMWrapAdoptNode with the target parent before moving a node. For the most part, move operations don't check whether the resulting tree structure is valid. Users must make sure that parent nodes only receive children of valid types. Inserted child nodes must never be an ancestor of the parent node to avoid cycles in the tree structure. In general, only document, document fragments, elements and attributes should be used as parent nodes. When moving a node between documents and a memory allocation fails, the node's content will be corrupted and it will be unlinked. In this case, the node must be freed manually. Moving DTDs between documents isn't supported.

@@ -1256,7 +1262,7 @@ The content of this structure is not made public by the API. - +
Returns:the child or NULL in case of error.@elem or a sibling if @elem was merged. Returns NULL if arguments are invalid or a memory allocation failed.
@@ -1267,7 +1273,7 @@ The content of this structure is not made public by the API. xmlAddChildList ()
xmlNodePtr	xmlAddChildList		(xmlNodePtr parent, 
xmlNodePtr cur)
-

Add a list of node at the end of the child list of the parent merging adjacent TEXT nodes (@cur may be freed) See the note regarding namespaces in xmlAddChild.

+

Append a node list to another node. See xmlAddChild.

@@ -1290,23 +1296,23 @@ The content of this structure is not made public by the API.

xmlAddNextSibling ()

-
xmlNodePtr	xmlAddNextSibling	(xmlNodePtr cur, 
xmlNodePtr elem)
+
xmlNodePtr	xmlAddNextSibling	(xmlNodePtr prev, 
xmlNodePtr cur)
-

Add a new node @elem as the next sibling of @cur If the new node was already inserted in a document it is first unlinked from its existing context. As a result of text merging @elem may be freed. If the new node is ATTRIBUTE, it is added into properties instead of children. If there is an attribute with equal name, it is first destroyed. See the note regarding namespaces in xmlAddChild.

+

Unlinks @cur and inserts it as next sibling after @prev. Unlike xmlAddChild this function does not merge text nodes. If @cur is an attribute node, it is inserted after attribute @prev. If the attribute list contains an attribute with a name matching @cur, the old attribute is destroyed. See the notes in xmlAddChild.

- - + + - + - +
cur:the child nodeprev:the target node
elem:cur: the new node
Returns:the new node or NULL in case of error.@cur or a sibling if @cur was merged. Returns NULL if arguments are invalid or a memory allocation failed.
@@ -1315,23 +1321,23 @@ The content of this structure is not made public by the API.

xmlAddPrevSibling ()

-
xmlNodePtr	xmlAddPrevSibling	(xmlNodePtr cur, 
xmlNodePtr elem)
+
xmlNodePtr	xmlAddPrevSibling	(xmlNodePtr next, 
xmlNodePtr cur)
-

Add a new node @elem as the previous sibling of @cur merging adjacent TEXT nodes (@elem may be freed) If the new node was already inserted in a document it is first unlinked from its existing context. If the new node is ATTRIBUTE, it is added into properties instead of children. If there is an attribute with equal name, it is first destroyed. See the note regarding namespaces in xmlAddChild.

+

Unlinks @cur and inserts it as previous sibling before @next. Unlike xmlAddChild this function does not merge text nodes. If @cur is an attribute node, it is inserted before attribute @next. If the attribute list contains an attribute with a name matching @cur, the old attribute is destroyed. See the notes in xmlAddChild.

- - + + - + - +
cur:the child nodenext:the target node
elem:cur: the new node
Returns:the new node or NULL in case of error.@cur or a sibling if @cur was merged. Returns NULL if arguments are invalid or a memory allocation failed.
@@ -1340,23 +1346,23 @@ The content of this structure is not made public by the API.

xmlAddSibling ()

-
xmlNodePtr	xmlAddSibling		(xmlNodePtr cur, 
xmlNodePtr elem)
+
xmlNodePtr	xmlAddSibling		(xmlNodePtr node, 
xmlNodePtr cur)
-

Add a new element @elem to the list of siblings of @cur merging adjacent TEXT nodes (@elem may be freed) If the new element was already inserted in a document it is first unlinked from its existing context. See the note regarding namespaces in xmlAddChild.

+

Unlinks @cur and inserts it as last sibling of @node. If @cur is a text node, it may be merged with an adjacent text node and freed. In this case the text node containing the merged content is returned. If @cur is an attribute node, it is appended to the attribute list containing @node. If the attribute list contains an attribute with a name matching @cur, the old attribute is destroyed. See the notes in xmlAddChild.

- - + + - + - +
cur:the child nodenode:the target node
elem:cur: the new node
Returns:the new element or NULL in case of error.@cur or a sibling if @cur was merged. Returns NULL if arguments are invalid or a memory allocation failed.
@@ -2026,7 +2032,7 @@ The content of this structure is not made public by the API. xmlChildElementCount ()
unsigned long	xmlChildElementCount	(xmlNodePtr parent)
-

Finds the current number of child nodes of that element which are element nodes. Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back reference from entities content to entities references.

+

Count the number of child nodes which are elements. Note that entity references are not expanded.

@@ -2036,7 +2042,7 @@ The content of this structure is not made public by the API. - +
Returns:the count of element child or 0 if not availablethe number of element children or 0 if arguments are invalid.
@@ -2047,7 +2053,7 @@ The content of this structure is not made public by the API. xmlCopyDoc ()
xmlDocPtr	xmlCopyDoc		(xmlDocPtr doc, 
int recursive)
-

Do a copy of the document info. If recursive, the content tree will be copied too as well as DTD, namespaces and entities.

+

Copy a document. If recursive, the content tree will be copied too as well as DTD, namespaces and entities.

@@ -2061,7 +2067,7 @@ The content of this structure is not made public by the API. - +
Returns:a new #xmlDocPtr, or NULL in case of error.the copied document or NULL if a memory allocation failed.
@@ -2072,17 +2078,17 @@ The content of this structure is not made public by the API. xmlCopyDtd ()
xmlDtdPtr	xmlCopyDtd		(xmlDtdPtr dtd)
-

Do a copy of the dtd.

+

Copy a DTD.

- + - +
dtd:the dtdthe DTD
Returns:a new #xmlDtdPtr, or NULL in case of error.the copied DTD or NULL if a memory allocation failed.
@@ -2093,7 +2099,7 @@ The content of this structure is not made public by the API. xmlCopyNamespace ()
xmlNsPtr	xmlCopyNamespace	(xmlNsPtr cur)
-

Do a copy of the namespace.

+

Copy a namespace.

@@ -2103,7 +2109,7 @@ The content of this structure is not made public by the API. - +
Returns:a new #xmlNsPtr, or NULL in case of error.the copied namespace or NULL if a memory allocation failed.
@@ -2114,7 +2120,7 @@ The content of this structure is not made public by the API. xmlCopyNamespaceList ()
xmlNsPtr	xmlCopyNamespaceList	(xmlNsPtr cur)
-

Do a copy of an namespace list.

+

Copy a namespace list.

@@ -2124,7 +2130,7 @@ The content of this structure is not made public by the API. - +
Returns:a new #xmlNsPtr, or NULL in case of error.the head of the copied list or NULL if a memory allocation failed.
@@ -2135,7 +2141,7 @@ The content of this structure is not made public by the API. xmlCopyNode ()
xmlNodePtr	xmlCopyNode		(xmlNodePtr node, 
int extended)
-

Do a copy of the node.

+

Copy a node. Use of this function is DISCOURAGED in favor of xmlDocCopyNode.

@@ -2149,7 +2155,7 @@ The content of this structure is not made public by the API. - +
Returns:a new #xmlNodePtr, or NULL in case of error.the copied node or NULL if a memory allocation failed.
@@ -2160,7 +2166,7 @@ The content of this structure is not made public by the API. xmlCopyNodeList ()
xmlNodePtr	xmlCopyNodeList		(xmlNodePtr node)
-

Do a recursive copy of the node list. Use xmlDocCopyNodeList() if possible to ensure string interning.

+

Copy a node list and all children. Use of this function is DISCOURAGED in favor of xmlDocCopyNodeList.

@@ -2170,7 +2176,7 @@ The content of this structure is not made public by the API. - +
Returns:a new #xmlNodePtr, or NULL in case of error.the head of the copied list or NULL if a memory allocation failed.
@@ -2181,7 +2187,7 @@ The content of this structure is not made public by the API. xmlCopyProp ()
xmlAttrPtr	xmlCopyProp		(xmlNodePtr target, 
xmlAttrPtr cur)
-

Do a copy of the attribute.

+

Create a copy of the attribute. This function sets the parent pointer of the copy to @target but doesn't set the attribute on the target element. Users should consider to set the attribute by calling xmlAddChild afterwards or reset the parent pointer to NULL.

@@ -2196,7 +2202,7 @@ The content of this structure is not made public by the API. - +
Returns:a new #xmlAttrPtr, or NULL in case of error.the copied attribute or NULL if a memory allocation failed.
@@ -2207,7 +2213,7 @@ The content of this structure is not made public by the API. xmlCopyPropList ()
xmlAttrPtr	xmlCopyPropList		(xmlNodePtr target, 
xmlAttrPtr cur)
-

Do a copy of an attribute list.

+

Create a copy of an attribute list. This function sets the parent pointers of the copied attributes to @target but doesn't set the attributes on the target element.

@@ -2222,7 +2228,7 @@ The content of this structure is not made public by the API. - +
Returns:a new #xmlAttrPtr, or NULL in case of error.the head of the copied list or NULL if a memory allocation failed.
@@ -2233,29 +2239,29 @@ The content of this structure is not made public by the API. xmlCreateIntSubset ()
xmlDtdPtr	xmlCreateIntSubset	(xmlDocPtr doc, 
const xmlChar * name,
const xmlChar * ExternalID,
const xmlChar * SystemID)
-

Create the internal subset of a document

+

Create a DTD node. If a document is provided and it already has an internal subset, the existing DTD object is returned without creating a new object. If the document has no internal subset, it will be set to the created DTD.

- + - + - + - + - +
doc:the document pointerthe document pointer (optional)
name:the DTD namethe DTD name (optional)
ExternalID:the external (PUBLIC) IDthe external (PUBLIC) ID (optional)
SystemID:the system IDthe system ID (optional)
Returns:a pointer to the new DTD structurea pointer to the new or existing DTD object or NULL if arguments are invalid or a memory allocation failed.
@@ -2448,7 +2454,7 @@ The content of this structure is not made public by the API. xmlDeregisterNodeDefault ()
xmlDeregisterNodeFunc	xmlDeregisterNodeDefault	(xmlDeregisterNodeFunc func)
-

Registers a callback for node destruction

+

DEPRECATED: don't use Registers a callback for node destruction

@@ -2469,7 +2475,7 @@ The content of this structure is not made public by the API. xmlDocCopyNode ()
xmlNodePtr	xmlDocCopyNode		(xmlNodePtr node, 
xmlDocPtr doc,
int extended)
-

Do a copy of the node to a given document.

+

Copy a node into another document.

@@ -2487,7 +2493,7 @@ The content of this structure is not made public by the API. - +
Returns:a new #xmlNodePtr, or NULL in case of error.the copied node or NULL if a memory allocation failed.
@@ -2498,7 +2504,7 @@ The content of this structure is not made public by the API. xmlDocCopyNodeList ()
xmlNodePtr	xmlDocCopyNodeList	(xmlDocPtr doc, 
xmlNodePtr node)
-

Do a recursive copy of the node list.

+

Copy a node list and all children into a new document.

@@ -2512,7 +2518,7 @@ The content of this structure is not made public by the API. - +
Returns:a new #xmlNodePtr, or NULL in case of error.the head of the copied list or NULL if a memory allocation failed.
@@ -2703,7 +2709,7 @@ The content of this structure is not made public by the API. Returns: -the #xmlNodePtr for the root or NULL +the root element or NULL if no element was found.
@@ -2714,7 +2720,7 @@ The content of this structure is not made public by the API. xmlDocSetRootElement ()
xmlNodePtr	xmlDocSetRootElement	(xmlDocPtr doc, 
xmlNodePtr root)
-

Set the root element of the document (doc->children is a list containing possibly comments, PIs, etc ...).

+

Set the root element of the document (doc->children is a list containing possibly comments, PIs, etc ...). @root must be an element node. It is unlinked before insertion.

@@ -2728,7 +2734,7 @@ The content of this structure is not made public by the API. - +
Returns:the old root element if any was found, NULL if root was NULLthe unlinked old root element or NULL if the document didn't have a root element or a memory allocation failed.
@@ -2764,7 +2770,7 @@ The content of this structure is not made public by the API. xmlFirstElementChild ()
xmlNodePtr	xmlFirstElementChild	(xmlNodePtr parent)
-

Finds the first child node of that element which is a Element node Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back reference from entities content to entities references.

+

Find the first child node which is an element. Note that entity references are not expanded.

@@ -2774,7 +2780,7 @@ The content of this structure is not made public by the API. - +
Returns:the first element child or NULL if not availablethe first element or NULL if parent has no children.
@@ -2785,7 +2791,7 @@ The content of this structure is not made public by the API. xmlFreeDoc ()
void	xmlFreeDoc			(xmlDocPtr cur)
-

Free up all the structures used by a document, tree included.

+

Free a document including all children and associated DTDs.

@@ -2815,7 +2821,7 @@ The content of this structure is not made public by the API. xmlFreeNode ()
void	xmlFreeNode			(xmlNodePtr cur)
-

Free a node, this is a recursive behaviour, all the children are freed too. This doesn't unlink the child from the list, use xmlUnlinkNode() first.

+

Free a node including all the children. This doesn't unlink the node from the tree. Call xmlUnlinkNode first unless @cur is a root node.

@@ -2830,7 +2836,7 @@ The content of this structure is not made public by the API. xmlFreeNodeList ()
void	xmlFreeNodeList			(xmlNodePtr cur)
-

Free a node and all its siblings, this is a recursive behaviour, all the children are freed too.

+

Free a node list including all children.

@@ -2845,7 +2851,7 @@ The content of this structure is not made public by the API. xmlFreeNs ()
void	xmlFreeNs			(xmlNsPtr cur)
-

Free up the structures associated to a namespace

+

Free an xmlNs object.

@@ -2860,7 +2866,7 @@ The content of this structure is not made public by the API. xmlFreeNsList ()
void	xmlFreeNsList			(xmlNsPtr cur)
-

Free up all the structures associated to the chained namespaces.

+

Free a list of xmlNs objects.

@@ -2875,7 +2881,7 @@ The content of this structure is not made public by the API. xmlFreeProp ()
void	xmlFreeProp			(xmlAttrPtr cur)
-

Free one attribute, all the content is freed too

+

Free an attribute including all children.

@@ -2891,12 +2897,12 @@ The content of this structure is not made public by the API. xmlFreePropList ()
void	xmlFreePropList			(xmlAttrPtr cur)
-

Free a property and all its siblings, all the children are freed too.

+

Free an attribute list including all children.

- +
cur:the first property in the listthe first attribute in the list
@@ -2921,7 +2927,7 @@ The content of this structure is not made public by the API. xmlGetCompressMode ()
int	xmlGetCompressMode		(void)
-

get the default compression mode used, ZLIB based.

+

DEPRECATED: Use xmlGetDocCompressMode get the default compression mode used, ZLIB based.

@@ -2957,7 +2963,7 @@ The content of this structure is not made public by the API. xmlGetIntSubset ()
xmlDtdPtr	xmlGetIntSubset		(const xmlDoc * doc)
-

Get the internal subset of a document

+

Get the internal subset of a document.

@@ -2967,7 +2973,7 @@ The content of this structure is not made public by the API. - +
Returns:a pointer to the DTD structure or NULL if not founda pointer to the DTD object or NULL if not found.
@@ -2978,7 +2984,7 @@ The content of this structure is not made public by the API. xmlGetLastChild ()
xmlNodePtr	xmlGetLastChild		(const xmlNode * parent)
-

Search the last child of a node.

+

Find the last child of a node.

@@ -2988,7 +2994,7 @@ The content of this structure is not made public by the API. - +
Returns:the last child or NULL if none.the last child or NULL if parent has no children.
@@ -3020,7 +3026,7 @@ The content of this structure is not made public by the API. xmlGetNoNsProp ()
xmlChar *	xmlGetNoNsProp		(const xmlNode * node, 
const xmlChar * name)
-

Search and get the value of an attribute associated to a node This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values unless DTD use has been turned off. This function is similar to xmlGetProp except it will accept only an attribute in no namespace.

+

Search and get the value of an attribute associated to a node This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values. This function is similar to xmlGetProp except it will accept only an attribute in no namespace. NOTE: This function doesn't allow to distinguish malloc failures from missing attributes. It's more robust to use xmlNodeGetAttrValue.

@@ -3034,7 +3040,7 @@ The content of this structure is not made public by the API. - +
Returns:the attribute value or NULL if not found. It's up to the caller to free the memory with xmlFree().the attribute value or NULL if not found or a memory allocation failed. It's up to the caller to free the memory with xmlFree().
@@ -3066,7 +3072,7 @@ The content of this structure is not made public by the API. xmlGetNsList ()
xmlNsPtr *	xmlGetNsList		(const xmlDoc * doc, 
const xmlNode * node)
-

Search all the namespace applying to a given element.

+

Find all in-scope namespaces of a node. Use xmlGetNsListSafe for better error reporting.

@@ -3080,7 +3086,36 @@ The content of this structure is not made public by the API. - + + + +
Returns:an NULL terminated array of all the #xmlNsPtr found that need to be freed by the caller or NULL if no namespace if defineda NULL terminated array of namespace pointers that must be freed by the caller or NULL if no namespaces were found or a memory allocation failed.
+
+
+
+

+xmlGetNsListSafe ()

+
int	xmlGetNsListSafe		(const xmlDoc * doc, 
const xmlNode * node,
xmlNsPtr ** out)
+
+

Find all in-scope namespaces of a node. @out returns a NULL terminated array of namespace pointers that must be freed by the caller. Available since 2.13.0.

+
++ + + + + + + + + + + + + + + +
doc:the document
node:the current node
out:the returned namespace array
Returns:0 on success, 1 if no namespaces were found, -1 if a memory allocation failed.
@@ -3091,7 +3126,7 @@ The content of this structure is not made public by the API. xmlGetNsProp ()
xmlChar *	xmlGetNsProp		(const xmlNode * node, 
const xmlChar * name,
const xmlChar * nameSpace)
-

Search and get the value of an attribute associated to a node This attribute has to be anchored in the namespace specified. This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values unless DTD use has been turned off.

+

Search and get the value of an attribute associated to a node This attribute has to be anchored in the namespace specified. This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values. NOTE: This function doesn't allow to distinguish malloc failures from missing attributes. It's more robust to use xmlNodeGetAttrValue.

@@ -3109,7 +3144,7 @@ The content of this structure is not made public by the API. - +
Returns:the attribute value or NULL if not found. It's up to the caller to free the memory with xmlFree().the attribute value or NULL if not found or a memory allocation failed. It's up to the caller to free the memory with xmlFree().
@@ -3120,7 +3155,7 @@ The content of this structure is not made public by the API. xmlGetProp ()
xmlChar *	xmlGetProp		(const xmlNode * node, 
const xmlChar * name)
-

Search and get the value of an attribute associated to a node This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values unless DTD use has been turned off. NOTE: this function acts independently of namespaces associated to the attribute. Use xmlGetNsProp() or xmlGetNoNsProp() for namespace aware processing.

+

Search and get the value of an attribute associated to a node This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values. NOTE: This function acts independently of namespaces associated to the attribute. Use xmlGetNsProp() or xmlGetNoNsProp() for namespace aware processing. NOTE: This function doesn't allow to distinguish malloc failures from missing attributes. It's more robust to use xmlNodeGetAttrValue.

@@ -3134,7 +3169,7 @@ The content of this structure is not made public by the API. - +
Returns:the attribute value or NULL if not found. It's up to the caller to free the memory with xmlFree().the attribute value or NULL if not found or a memory allocation failed. It's up to the caller to free the memory with xmlFree().
@@ -3145,7 +3180,7 @@ The content of this structure is not made public by the API. xmlHasNsProp ()
xmlAttrPtr	xmlHasNsProp		(const xmlNode * node, 
const xmlChar * name,
const xmlChar * nameSpace)
-

Search for an attribute associated to a node This attribute has to be anchored in the namespace specified. This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values unless DTD use has been turned off. Note that a namespace of NULL indicates to use the default namespace.

+

Search for an attribute associated to a node This attribute has to be anchored in the namespace specified. This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values. Note that a namespace of NULL indicates to use the default namespace.

@@ -3163,7 +3198,7 @@ The content of this structure is not made public by the API. - +
Returns:the attribute or the attribute declaration or NULL if neither was found.the attribute or the attribute declaration or NULL if neither was found. Also returns NULL if a memory allocation failed making this function unreliable.
@@ -3174,7 +3209,7 @@ The content of this structure is not made public by the API. xmlHasProp ()
xmlAttrPtr	xmlHasProp		(const xmlNode * node, 
const xmlChar * name)
-

Search an attribute associated to a node This function also looks in DTD attribute declaration for #FIXED or default declaration values unless DTD use has been turned off.

+

Search an attribute associated to a node This function also looks in DTD attribute declaration for #FIXED or default declaration values.

@@ -3188,7 +3223,7 @@ The content of this structure is not made public by the API. - +
Returns:the attribute or the attribute declaration or NULL if neither was found.the attribute or the attribute declaration or NULL if neither was found. Also returns NULL if a memory allocation failed making this function unreliable.
@@ -3245,7 +3280,7 @@ The content of this structure is not made public by the API. xmlLastElementChild ()
xmlNodePtr	xmlLastElementChild	(xmlNodePtr parent)
-

Finds the last child node of that element which is a Element node Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back reference from entities content to entities references.

+

Find the last child node which is an element. Note that entity references are not expanded.

@@ -3255,7 +3290,7 @@ The content of this structure is not made public by the API. - +
Returns:the last element child or NULL if not availablethe last element or NULL if parent has no children.
@@ -3266,25 +3301,25 @@ The content of this structure is not made public by the API. xmlNewCDataBlock ()
xmlNodePtr	xmlNewCDataBlock	(xmlDocPtr doc, 
const xmlChar * content,
int len)
-

Creation of a new node containing a CDATA block.

+

Create a CDATA section node.

- + - + - + - +
doc:the documentthe target document (optional)
content:the CDATA block content contentraw text content (optional)
len:the length of the blocksize of text content
Returns:a pointer to the new node object.a pointer to the new node object or NULL if a memory allocation failed.
@@ -3295,21 +3330,21 @@ The content of this structure is not made public by the API. xmlNewCharRef ()
xmlNodePtr	xmlNewCharRef		(xmlDocPtr doc, 
const xmlChar * name)
-

Creation of a new character reference node.

+

This function is MISNAMED. It doesn't create a character reference but an entity reference. Create an empty entity reference node. This function doesn't attempt to look up the entity in @doc. Entity names like '&entity;' are handled as well.

- + - + - +
doc:the documentthe target document (optional)
name:the char ref string, starting with # or "&# ... ;"the entity name
Returns:a pointer to the new node object.a pointer to the new node object or NULL if arguments are invalid or a memory allocation failed.
@@ -3320,7 +3355,7 @@ The content of this structure is not made public by the API. xmlNewChild ()
xmlNodePtr	xmlNewChild		(xmlNodePtr parent, 
xmlNsPtr ns,
const xmlChar * name,
const xmlChar * content)
-

Creation of a new child element, added at the end of @parent children list. @ns and @content parameters are optional (NULL). If @ns is NULL, the newly created element inherits the namespace of @parent. If @content is non NULL, a child list containing the TEXTs and ENTITY_REFs node will be created. NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity references. XML special chars must be escaped first by using xmlEncodeEntitiesReentrant(), or xmlNewTextChild() should be used.

+

Create a new child element and append it to a parent element. If @ns is NULL, the newly created element inherits the namespace of the parent. If provided, @content is expected to be a valid XML attribute value possibly containing character and entity references. Text and entity reference node will be added to the child element, see xmlNewDocNode.

@@ -3330,7 +3365,7 @@ The content of this structure is not made public by the API. - + @@ -3338,11 +3373,11 @@ The content of this structure is not made public by the API. - + - +
ns:a namespace if anya namespace (optional)
name:
content:the XML content of the child if any.text content with XML references (optional)
Returns:a pointer to the new node object.a pointer to the new node object or NULL if arguments are invalid or a memory allocation failed.
@@ -3353,17 +3388,17 @@ The content of this structure is not made public by the API. xmlNewComment ()
xmlNodePtr	xmlNewComment		(const xmlChar * content)
-

Use of this function is DISCOURAGED in favor of xmlNewDocComment. Creation of a new node containing a comment.

+

Use of this function is DISCOURAGED in favor of xmlNewDocComment. Create a comment node.

- + - +
content:the comment contentthe comment content (optional)
Returns:a pointer to the new node object.a pointer to the new node object or NULL if a memory allocation failed.
@@ -3374,18 +3409,17 @@ The content of this structure is not made public by the API. xmlNewDoc ()
xmlDocPtr	xmlNewDoc		(const xmlChar * version)
-

Creates a new XML document

+

Creates a new XML document. If version is NULL, "1.0" is used.

- + - +
version: -xmlChar string giving the version of XML "1.0"XML version string like "1.0" (optional)
Returns:a new documenta new document or NULL if a memory allocation failed.
@@ -3396,7 +3430,7 @@ The content of this structure is not made public by the API. xmlNewDocComment ()
xmlNodePtr	xmlNewDocComment	(xmlDocPtr doc, 
const xmlChar * content)
-

Creation of a new node containing a comment within a document.

+

Create a comment node.

@@ -3410,7 +3444,7 @@ The content of this structure is not made public by the API. - +
Returns:a pointer to the new node object.a pointer to the new node object or NULL if a memory allocation failed.
@@ -3421,17 +3455,17 @@ The content of this structure is not made public by the API. xmlNewDocFragment ()
xmlNodePtr	xmlNewDocFragment	(xmlDocPtr doc)
-

Creation of a new Fragment node.

+

Create a document fragment node.

- + - +
doc:the document owning the fragmentthe target document (optional)
Returns:a pointer to the new node object.a pointer to the new node object or NULL if a memory allocation failed.
@@ -3442,17 +3476,17 @@ The content of this structure is not made public by the API. xmlNewDocNode ()
xmlNodePtr	xmlNewDocNode		(xmlDocPtr doc, 
xmlNsPtr ns,
const xmlChar * name,
const xmlChar * content)
-

Creation of a new node element within a document. @ns and @content are optional (NULL). NOTE: @content is supposed to be a piece of XML CDATA, so it allow entities references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant(). Use xmlNewDocRawNode() if you don't need entities support.

+

Create an element node. If provided, @content is expected to be a valid XML attribute value possibly containing character and entity references. Syntax errors and references to undeclared entities are ignored silently. Only references are handled, nested elements, comments or PIs are not. See xmlNewDocRawNode for an alternative. General notes on object creation: Each node and all its children are associated with the same document. The document should be provided when creating nodes to avoid a performance penalty when adding the node to a document tree. Note that a document only owns nodes reachable from the root node. Unlinked subtrees must be freed manually.

- + - + @@ -3460,11 +3494,11 @@ The content of this structure is not made public by the API. - + - +
doc:the documentthe target document
ns:namespace if anynamespace (optional)
name:
content:the XML text content if anytext content with XML references (optional)
Returns:a pointer to the new node object.a pointer to the new node object or NULL if arguments are invalid or a memory allocation failed.
@@ -3475,17 +3509,17 @@ The content of this structure is not made public by the API. xmlNewDocNodeEatName ()
xmlNodePtr	xmlNewDocNodeEatName	(xmlDocPtr doc, 
xmlNsPtr ns,
xmlChar * name,
const xmlChar * content)
-

Creation of a new node element within a document. @ns and @content are optional (NULL). NOTE: @content is supposed to be a piece of XML CDATA, so it allow entities references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant(). Use xmlNewDocRawNode() if you don't need entities support.

+

Create an element node. Like xmlNewDocNode, but the @name string will be used directly without making a copy. Takes ownership of @name which will also be freed on error.

- + - + @@ -3493,11 +3527,11 @@ The content of this structure is not made public by the API. - + - +
doc:the documentthe target document
ns:namespace if anynamespace (optional)
name:
content:the XML text content if anytext content with XML references (optional)
Returns:a pointer to the new node object.a pointer to the new node object or NULL if arguments are invalid or a memory allocation failed.
@@ -3508,25 +3542,25 @@ The content of this structure is not made public by the API. xmlNewDocPI ()
xmlNodePtr	xmlNewDocPI		(xmlDocPtr doc, 
const xmlChar * name,
const xmlChar * content)
-

Creation of a processing instruction element.

+

Create a processing instruction object.

- + - + - + - +
doc:the target documentthe target document (optional)
name:the processing instruction namethe processing instruction target
content:the PI contentthe PI content (optional)
Returns:a pointer to the new node object.a pointer to the new node object or NULL if arguments are invalid or a memory allocation failed.
@@ -3537,13 +3571,13 @@ The content of this structure is not made public by the API. xmlNewDocProp ()
xmlAttrPtr	xmlNewDocProp		(xmlDocPtr doc, 
const xmlChar * name,
const xmlChar * value)
-

Create a new property carried by a document. NOTE: @value is supposed to be a piece of XML CDATA, so it allows entity references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant(). Use xmlNewProp() if you don't need entities support.

+

Create an attribute object. If provided, @value is expected to be a valid XML attribute value possibly containing character and entity references. Syntax errors and references to undeclared entities are ignored silently. If you want to pass a raw string, see xmlNewProp.

- + @@ -3552,13 +3586,12 @@ The content of this structure is not made public by the API. - + - +
doc:the documentthe target document (optional)
name:
value:the value of the attribute - +attribute value with XML references (optional)
Returns:a pointer to the attribute -a pointer to the attribute or NULL if arguments are invalid or a memory allocation failed.
@@ -3569,17 +3602,17 @@ The content of this structure is not made public by the API. xmlNewDocRawNode ()
xmlNodePtr	xmlNewDocRawNode	(xmlDocPtr doc, 
xmlNsPtr ns,
const xmlChar * name,
const xmlChar * content)
-

Creation of a new node element within a document. @ns and @content are optional (NULL).

+

Create an element node. If provided, @value should be a raw, unescaped string.

- + - + @@ -3587,11 +3620,11 @@ The content of this structure is not made public by the API. - + - +
doc:the documentthe target document
ns:namespace if anynamespace (optional)
name:
content:the text content if anyraw text content (optional)
Returns:a pointer to the new node object.a pointer to the new node object or NULL if arguments are invalid or a memory allocation failed.
@@ -3602,21 +3635,21 @@ The content of this structure is not made public by the API. xmlNewDocText ()
xmlNodePtr	xmlNewDocText		(const xmlDoc * doc, 
const xmlChar * content)
-

Creation of a new text node within a document.

+

Create a new text node.

- + - + - +
doc:the documentthe target document
content:the text contentraw text content (optional)
Returns:a pointer to the new node object.a pointer to the new node object or NULL if a memory allocation failed.
@@ -3627,25 +3660,25 @@ The content of this structure is not made public by the API. xmlNewDocTextLen ()
xmlNodePtr	xmlNewDocTextLen	(xmlDocPtr doc, 
const xmlChar * content,
int len)
-

Creation of a new text node with an extra content length parameter. The text node pertain to a given document.

+

Create a new text node.

- + - + - + - +
doc:the documentthe target document
content:the text contentraw text content (optional)
len:the text len.size of text content
Returns:a pointer to the new node object.a pointer to the new node object or NULL if a memory allocation failed.
@@ -3656,29 +3689,29 @@ The content of this structure is not made public by the API. xmlNewDtd ()
xmlDtdPtr	xmlNewDtd		(xmlDocPtr doc, 
const xmlChar * name,
const xmlChar * ExternalID,
const xmlChar * SystemID)
-

Creation of a new DTD for the external subset. To create an internal subset, use xmlCreateIntSubset().

+

Create a DTD node. If a document is provided, it is an error if it already has an external subset. If the document has no external subset, it will be set to the created DTD. To create an internal subset, use xmlCreateIntSubset().

- + - + - + - + - +
doc:the document pointerthe document pointer (optional)
name:the DTD namethe DTD name (optional)
ExternalID:the external IDthe external ID (optional)
SystemID:the system IDthe system ID (optional)
Returns:a pointer to the new DTD structurea pointer to the new DTD object or NULL if arguments are invalid or a memory allocation failed.
@@ -3718,13 +3751,13 @@ The content of this structure is not made public by the API. xmlNewNode ()
xmlNodePtr	xmlNewNode		(xmlNsPtr ns, 
const xmlChar * name)
-

Creation of a new node element. @ns is optional (NULL). Use of this function is DISCOURAGED in favor of xmlNewDocNode.

+

Create an element node. Use of this function is DISCOURAGED in favor of xmlNewDocNode.

- + @@ -3732,7 +3765,7 @@ The content of this structure is not made public by the API. - +
ns:namespace if anynamespace (optional)
name:
Returns:a pointer to the new node object. Uses xmlStrdup() to make copy of @name.a pointer to the new node object or NULL if arguments are invalid or a memory allocation failed.
@@ -3743,13 +3776,13 @@ The content of this structure is not made public by the API. xmlNewNodeEatName ()
xmlNodePtr	xmlNewNodeEatName	(xmlNsPtr ns, 
xmlChar * name)
-

Creation of a new node element. @ns is optional (NULL). Use of this function is DISCOURAGED in favor of xmlNewDocNodeEatName.

+

Create an element node. Use of this function is DISCOURAGED in favor of xmlNewDocNodeEatName. Like xmlNewNode, but the @name string will be used directly without making a copy. Takes ownership of @name which will also be freed on error.

- + @@ -3757,7 +3790,7 @@ The content of this structure is not made public by the API. - +
ns:namespace if anynamespace (optional)
name:
Returns:a pointer to the new node object, with pointer @name as new node's name. Use xmlNewNode() if a copy of @name string is is needed as new node's name.a pointer to the new node object or NULL if arguments are invalid or a memory allocation failed.
@@ -3768,13 +3801,13 @@ The content of this structure is not made public by the API. xmlNewNs ()
xmlNsPtr	xmlNewNs		(xmlNodePtr node, 
const xmlChar * href,
const xmlChar * prefix)
-

Creation of a new Namespace. This function will refuse to create a namespace with a similar prefix than an existing one present on this node. Note that for a default namespace, @prefix should be NULL. We use href==NULL in the case of an element creation where the namespace was not defined.

+

Create a new namespace. For a default namespace, @prefix should be NULL. The namespace URI in @href is not checked. You should make sure to pass a valid URI. If @node is provided, it must be an element node. The namespace will be appended to the node's namespace declarations. It is an error if the node already has a definition for the prefix or default namespace.

- + @@ -3782,11 +3815,11 @@ The content of this structure is not made public by the API. - + - +
node:the element carrying the namespacethe element carrying the namespace (optional)
href:
prefix:the prefix for the namespacethe prefix for the namespace (optional)
Returns:a new namespace pointer or NULLa new namespace pointer or NULL if arguments are invalid, the prefix is already in use or a memory allocation failed.
@@ -3797,32 +3830,30 @@ The content of this structure is not made public by the API. xmlNewNsProp ()
xmlAttrPtr	xmlNewNsProp		(xmlNodePtr node, 
xmlNsPtr ns,
const xmlChar * name,
const xmlChar * value)
-

Create a new property tagged with a namespace and carried by a node.

+

Create an attribute object. If provided, @value should be a raw, unescaped string. If @node is provided, the created attribute will be appended without checking for duplicate names. It is an error if @node is not an element.

- + - + - - + - +
node:the holding nodethe parent node (optional)
ns:the namespacethe namespace (optional)
name:the name of the attribute +the local name of the attribute
value:the value of the attribute -the value of the attribute (optional)
Returns:a pointer to the attribute -a pointer to the attribute or NULL if arguments are invalid or a memory allocation failed.
@@ -3833,32 +3864,30 @@ The content of this structure is not made public by the API. xmlNewNsPropEatName ()
xmlAttrPtr	xmlNewNsPropEatName	(xmlNodePtr node, 
xmlNsPtr ns,
xmlChar * name,
const xmlChar * value)
-

Create a new property tagged with a namespace and carried by a node.

+

Like xmlNewNsProp, but the @name string will be used directly without making a copy. Takes ownership of @name which will also be freed on error.

- + - + - - + - +
node:the holding nodethe parent node (optional)
ns:the namespacethe namespace (optional)
name:the name of the attribute +the local name of the attribute
value:the value of the attribute -the value of the attribute (optional)
Returns:a pointer to the attribute -a pointer to the attribute or NULL if arguments are invalid or a memory allocation failed.
@@ -3869,21 +3898,21 @@ The content of this structure is not made public by the API. xmlNewPI ()
xmlNodePtr	xmlNewPI		(const xmlChar * name, 
const xmlChar * content)
-

Creation of a processing instruction element. Use of this function is DISCOURAGED in favor of xmlNewDocPI.

+

Create a processing instruction node. Use of this function is DISCOURAGED in favor of xmlNewDocPI.

- + - + - +
name:the processing instruction namethe processing instruction target
content:the PI contentthe PI content (optional)
Returns:a pointer to the new node object.a pointer to the new node object or NULL if arguments are invalid or a memory allocation failed.
@@ -3894,13 +3923,13 @@ The content of this structure is not made public by the API. xmlNewProp ()
xmlAttrPtr	xmlNewProp		(xmlNodePtr node, 
const xmlChar * name,
const xmlChar * value)
-

Create a new property carried by a node.

+

Create an attribute node. If provided, @value should be a raw, unescaped string. If @node is provided, the created attribute will be appended without checking for duplicate names. It is an error if @node is not an element.

- + @@ -3909,13 +3938,11 @@ The content of this structure is not made public by the API. - + - +
node:the holding nodethe parent node (optional)
name:
value:the value of the attribute -the value of the attribute (optional)
Returns:a pointer to the attribute -a pointer to the attribute or NULL if arguments are invalid or a memory allocation failed.
@@ -3926,21 +3953,21 @@ The content of this structure is not made public by the API. xmlNewReference ()
xmlNodePtr	xmlNewReference		(const xmlDoc * doc, 
const xmlChar * name)
-

Creation of a new reference node.

+

Create a new entity reference node, linking the result with the entity in @doc if found. Entity names like '&entity;' are handled as well.

- + - + - +
doc:the documentthe target document (optional)
name:the reference name, or the reference string with & and ;the entity name
Returns:a pointer to the new node object.a pointer to the new node object or NULL if arguments are invalid or a memory allocation failed.
@@ -3951,17 +3978,17 @@ The content of this structure is not made public by the API. xmlNewText ()
xmlNodePtr	xmlNewText		(const xmlChar * content)
-

Creation of a new text node. Use of this function is DISCOURAGED in favor of xmlNewDocText.

+

Create a text node. Use of this function is DISCOURAGED in favor of xmlNewDocText.

- + - +
content:the text contentraw text content (optional)
Returns:a pointer to the new node object.a pointer to the new node object or NULL if a memory allocation failed.
@@ -3972,7 +3999,7 @@ The content of this structure is not made public by the API. xmlNewTextChild ()
xmlNodePtr	xmlNewTextChild		(xmlNodePtr parent, 
xmlNsPtr ns,
const xmlChar * name,
const xmlChar * content)
-

Creation of a new child element, added at the end of @parent children list. @ns and @content parameters are optional (NULL). If @ns is NULL, the newly created element inherits the namespace of @parent. If @content is non NULL, a child TEXT node will be created containing the string @content. NOTE: Use xmlNewChild() if @content will contain entities that need to be preserved. Use this function, xmlNewTextChild(), if you need to ensure that reserved XML chars that might appear in @content, such as the ampersand, greater-than or less-than signs, are automatically replaced by their XML escaped entity representations.

+

Create a new child element and append it to a parent element. If @ns is NULL, the newly created element inherits the namespace of the parent. If @content is provided, a text node will be added to the child element, see xmlNewDocRawNode.

@@ -3982,7 +4009,7 @@ The content of this structure is not made public by the API. - + @@ -3990,11 +4017,11 @@ The content of this structure is not made public by the API. - + - +
ns:a namespace if anya namespace (optional)
name:
content:the text content of the child if any.raw text content of the child (optional)
Returns:a pointer to the new node object.a pointer to the new node object or NULL if arguments are invalid or a memory allocation failed.
@@ -4005,21 +4032,21 @@ The content of this structure is not made public by the API. xmlNewTextLen ()
xmlNodePtr	xmlNewTextLen		(const xmlChar * content, 
int len)
-

Use of this function is DISCOURAGED in favor of xmlNewDocTextLen. Creation of a new text node with an extra parameter for the content's length

+

Use of this function is DISCOURAGED in favor of xmlNewDocTextLen.

- + - + - +
content:the text contentraw text content (optional)
len:the text len.size of text content
Returns:a pointer to the new node object.a pointer to the new node object or NULL if a memory allocation failed.
@@ -4030,7 +4057,7 @@ The content of this structure is not made public by the API. xmlNextElementSibling ()
xmlNodePtr	xmlNextElementSibling	(xmlNodePtr node)
-

Finds the first closest next sibling of the node which is an element node. Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back reference from entities content to entities references.

+

Find the closest following sibling which is a element. Note that entity references are not expanded.

@@ -4040,7 +4067,7 @@ The content of this structure is not made public by the API. - +
Returns:the next element sibling or NULL if not availablethe sibling or NULL if no sibling was found.
@@ -4049,7 +4076,7 @@ The content of this structure is not made public by the API.

xmlNodeAddContent ()

-
void	xmlNodeAddContent		(xmlNodePtr cur, 
const xmlChar * content)
+
int	xmlNodeAddContent		(xmlNodePtr cur, 
const xmlChar * content)

Append the extra substring to the node content. NOTE: In contrast to xmlNodeSetContent(), @content is supposed to be raw text, so unescaped XML special chars are allowed, entity references are not supported.

@@ -4063,6 +4090,10 @@ The content of this structure is not made public by the API. + + + +
content: extra content
Returns:0 on success, 1 on error, -1 if a memory allocation failed.
@@ -4070,7 +4101,7 @@ The content of this structure is not made public by the API.

xmlNodeAddContentLen ()

-
void	xmlNodeAddContentLen		(xmlNodePtr cur, 
const xmlChar * content,
int len)
+
int	xmlNodeAddContentLen		(xmlNodePtr cur, 
const xmlChar * content,
int len)

Append the extra substring to the node content. NOTE: In contrast to xmlNodeSetContentLen(), @content is supposed to be raw text, so unescaped XML special chars are allowed, entity references are not supported.

@@ -4088,6 +4119,10 @@ The content of this structure is not made public by the API. + + + +
len: the size of @content
Returns:0 on success, 1 on error, -1 if a memory allocation failed.
@@ -4193,10 +4228,43 @@ The content of this structure is not made public by the API.

+xmlNodeGetAttrValue ()

+
int	xmlNodeGetAttrValue		(const xmlNode * node, 
const xmlChar * name,
const xmlChar * nsUri,
xmlChar ** out)
+
+

Search and get the value of an attribute associated to a node This attribute has to be anchored in the namespace specified. This does the entity substitution. The returned value must be freed by the caller. Available since 2.13.0.

+
++ + + + + + + + + + + + + + + + + + + + + + +
node:the node
name:the attribute name
nsUri:the URI of the namespace
out:the returned string
Returns:0 on success, 1 if no attribute was found, -1 if a memory allocation failed.
+
+
+
+

xmlNodeGetBase ()

xmlChar *	xmlNodeGetBase		(const xmlDoc * doc, 
const xmlNode * cur)
-

Searches for the BASE URL. The code should work on both XML and HTML document even if base mechanisms are completely different. It returns the base as defined in RFC 2396 sections 5.1.1. Base URI within Document Content and 5.1.2. Base URI from the Encapsulating Entity However it does not return the document base (5.1.3), use doc->URL in this case

+

See xmlNodeGetBaseSafe. This function doesn't allow to distinguish memory allocation failures from a non-existing base.

@@ -4218,6 +4286,35 @@ The content of this structure is not made public by the API.

+xmlNodeGetBaseSafe ()

+
int	xmlNodeGetBaseSafe		(const xmlDoc * doc, 
const xmlNode * cur,
xmlChar ** baseOut)
+
+

Searches for the BASE URL. The code should work on both XML and HTML document even if base mechanisms are completely different. It returns the base as defined in RFC 2396 sections 5.1.1. Base URI within Document Content and 5.1.2. Base URI from the Encapsulating Entity However it does not return the document base (5.1.3), use doc->URL in this case Available since 2.13.0.

+
++ + + + + + + + + + + + + + + + + + +
doc:the document the node pertains to
cur:the node being checked
baseOut:pointer to base
Returns:0 in case of success, 1 if a URI or argument is invalid, -1 if a memory allocation failed.
+
+
+
+

xmlNodeGetContent ()

xmlChar *	xmlNodeGetContent	(const xmlNode * cur)
@@ -4305,25 +4402,25 @@ The content of this structure is not made public by the API. xmlNodeListGetRawString ()
xmlChar *	xmlNodeListGetRawString	(const xmlDoc * doc, 
const xmlNode * list,
int inLine)
-

Builds the string equivalent to the text contained in the Node list made of TEXTs and ENTITY_REFs, contrary to xmlNodeListGetString() this function doesn't do any character encoding handling.

+

Serializes attribute children (text and entity reference nodes) into a string. An empty list produces an empty string. If @inLine is true, entity references will be substituted. Otherwise, entity references will be kept and special characters like '&' will be escaped.

- + - + - + - +
doc:the documenta document (optional)
list:a Node lista node list of attribute children (optional)
inLine:should we replace entity contents or show their external formwhether entity references are substituted
Returns:a pointer to the string copy, the caller must free it with xmlFree().a string or NULL if a memory allocation failed.
@@ -4334,25 +4431,25 @@ The content of this structure is not made public by the API. xmlNodeListGetString ()
xmlChar *	xmlNodeListGetString	(xmlDocPtr doc, 
const xmlNode * list,
int inLine)
-

Build the string equivalent to the text contained in the Node list made of TEXTs and ENTITY_REFs

+

Serializes attribute children (text and entity reference nodes) into a string. An empty list produces an empty string. If @inLine is true, entity references will be substituted. Otherwise, entity references will be kept and special characters like '&' as well as non-ASCII chars will be escaped. See xmlNodeListGetRawString for an alternative option.

- + - + - + - +
doc:the documenta document (optional)
list:a Node lista node list of attribute children (optional)
inLine:should we replace entity contents or show their external formwhether entity references are substituted
Returns:a pointer to the string copy, the caller must free it with xmlFree().a string or NULL if a memory allocation failed.
@@ -4361,7 +4458,7 @@ The content of this structure is not made public by the API.

xmlNodeSetBase ()

-
void	xmlNodeSetBase			(xmlNodePtr cur, 
const xmlChar * uri)
+
int	xmlNodeSetBase			(xmlNodePtr cur, 
const xmlChar * uri)

Set (or reset) the base URI of a node, i.e. the value of the xml:base attribute.

@@ -4375,6 +4472,10 @@ The content of this structure is not made public by the API. + + + +
uri: the new base URI
Returns:0 on success, -1 on error.
@@ -4382,9 +4483,9 @@ The content of this structure is not made public by the API.

xmlNodeSetContent ()

-
void	xmlNodeSetContent		(xmlNodePtr cur, 
const xmlChar * content)
+
int	xmlNodeSetContent		(xmlNodePtr cur, 
const xmlChar * content)
-

Replace the content of a node. NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant() resp. xmlEncodeSpecialChars().

+

Replace the text content of a node. Sets the raw text content of text, CDATA, comment or PI nodes. For element and attribute nodes, removes all children and replaces them by parsing @content which is expected to be a valid XML attribute value possibly containing character and entity references. Syntax errors and references to undeclared entities are ignored silently. Unfortunately, there isn't an API to pass raw content directly. An inefficient work-around is to escape the content with xmlEncodeSpecialChars before passing it. A better trick is clearing the old content with xmlNodeSetContent(node, NULL) first and then calling xmlNodeAddContent(node, content). Unlike this function, xmlNodeAddContent accepts raw text.

@@ -4396,6 +4497,10 @@ The content of this structure is not made public by the API. + + + +
content: the new value of the content
Returns:0 on success, 1 on error, -1 if a memory allocation failed.
@@ -4403,9 +4508,9 @@ The content of this structure is not made public by the API.

xmlNodeSetContentLen ()

-
void	xmlNodeSetContentLen		(xmlNodePtr cur, 
const xmlChar * content,
int len)
+
int	xmlNodeSetContentLen		(xmlNodePtr cur, 
const xmlChar * content,
int len)
-

Replace the content of a node. NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant() resp. xmlEncodeSpecialChars().

+

See xmlNodeSetContent.

@@ -4421,6 +4526,10 @@ The content of this structure is not made public by the API. + + + +
len: the size of @content
Returns:0 on success, 1 on error, -1 if a memory allocation failed.
@@ -4428,7 +4537,7 @@ The content of this structure is not made public by the API.

xmlNodeSetLang ()

-
void	xmlNodeSetLang			(xmlNodePtr cur, 
const xmlChar * lang)
+
int	xmlNodeSetLang			(xmlNodePtr cur, 
const xmlChar * lang)

Set the language of a node, i.e. the values of the xml:lang attribute.

@@ -4442,6 +4551,10 @@ The content of this structure is not made public by the API. + + + +
lang: the language description
Returns:0 on success, 1 if arguments are invalid, -1 if a memory allocation failed.
@@ -4470,7 +4583,7 @@ The content of this structure is not made public by the API.

xmlNodeSetSpacePreserve ()

-
void	xmlNodeSetSpacePreserve		(xmlNodePtr cur, 
int val)
+
int	xmlNodeSetSpacePreserve		(xmlNodePtr cur, 
int val)

Set (or reset) the space preserving behaviour of a node, i.e. the value of the xml:space attribute.

@@ -4484,6 +4597,10 @@ The content of this structure is not made public by the API. + + + +
val: the xml:space value ("0": default, 1: "preserve")
Returns:0 on success, 1 if arguments are invalid, -1 if a memory allocation failed.
@@ -4493,7 +4610,7 @@ The content of this structure is not made public by the API. xmlPreviousElementSibling ()
xmlNodePtr	xmlPreviousElementSibling	(xmlNodePtr node)
-

Finds the first closest previous sibling of the node which is an element node. Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back reference from entities content to entities references.

+

Find the closest preceding sibling which is a element. Note that entity references are not expanded.

@@ -4503,7 +4620,7 @@ The content of this structure is not made public by the API. - +
Returns:the previous element sibling or NULL if not availablethe sibling or NULL if no sibling was found.
@@ -4528,7 +4645,7 @@ The content of this structure is not made public by the API. Returns: -the number of namespace declarations created or -1 in case of error. +0 on success or -1 in case of error.
@@ -4539,7 +4656,7 @@ The content of this structure is not made public by the API. xmlRegisterNodeDefault ()
xmlRegisterNodeFunc	xmlRegisterNodeDefault	(xmlRegisterNodeFunc func)
-

Registers a callback for node creation

+

DEPRECATED: don't use Registers a callback for node creation

@@ -4560,7 +4677,7 @@ The content of this structure is not made public by the API. xmlRemoveProp ()
int	xmlRemoveProp			(xmlAttrPtr cur)
-

Unlink and free one attribute, all the content is freed too Note this doesn't work for namespace definition attributes

+

Unlink and free an attribute including all children. Note this doesn't work for namespace declarations. The attribute must have a non-NULL parent pointer.

@@ -4571,7 +4688,7 @@ The content of this structure is not made public by the API. - +
Returns:0 if success and -1 in case of error.0 on success or -1 if the attribute was not found or arguments are invalid.
@@ -4582,7 +4699,7 @@ The content of this structure is not made public by the API. xmlReplaceNode ()
xmlNodePtr	xmlReplaceNode		(xmlNodePtr old, 
xmlNodePtr cur)
-

Unlink the old node from its current context, prune the new one at the same place. If @cur was already inserted in a document it is first unlinked from its existing context. See the note regarding namespaces in xmlAddChild.

+

Unlink the old node. If @cur is provided, it is unlinked and inserted in place of @old. It is an error if @old has no parent. Unlike xmlAddChild, this function doesn't merge text nodes or delete duplicate attributes. See the notes in xmlAddChild.

@@ -4592,11 +4709,11 @@ The content of this structure is not made public by the API. - + - +
cur:the nodethe node (optional)
Returns:the @old node@old or NULL if arguments are invalid or a memory allocation failed.
@@ -4803,7 +4920,7 @@ The content of this structure is not made public by the API. Returns: -the namespace pointer or NULL. +the namespace pointer or NULL if no namespace was found or a memory allocation failed. Allocations can only fail if the "xml" namespace is queried.
@@ -4832,7 +4949,7 @@ The content of this structure is not made public by the API. Returns: -the namespace pointer or NULL. +the namespace pointer or NULL if no namespace was found or a memory allocation failed. Allocations can only fail if the "xml" namespace is queried.
@@ -4858,7 +4975,7 @@ The content of this structure is not made public by the API. xmlSetCompressMode ()
void	xmlSetCompressMode		(int mode)
-

set the default compression mode used, ZLIB based Correct values: 0 (uncompressed) to 9 (max compression)

+

DEPRECATED: Use xmlSetDocCompressMode set the default compression mode used, ZLIB based Correct values: 0 (uncompressed) to 9 (max compression)

@@ -4892,19 +5009,23 @@ The content of this structure is not made public by the API.

xmlSetListDoc ()

-
void	xmlSetListDoc			(xmlNodePtr list, 
xmlDocPtr doc)
+
int	xmlSetListDoc			(xmlNodePtr list, 
xmlDocPtr doc)
-

update all nodes in the list to point to the right document

+

Associate all subtrees in @list with a new document. Internal function, see xmlSetTreeDoc.

- + - + + + + +
list:the first elementa node list
doc:the documentnew document
Returns:0 on success. If a memory allocation fails, returns -1. All subtrees will be updated on failure but some strings may be lost.
@@ -4915,7 +5036,7 @@ The content of this structure is not made public by the API. xmlSetNs ()
void	xmlSetNs			(xmlNodePtr node, 
xmlNsPtr ns)
-

Associate a namespace to a node, a posteriori.

+

Set the namespace of an element or attribute node. Passing a NULL namespace unsets the namespace.

@@ -4925,7 +5046,7 @@ The content of this structure is not made public by the API. - +
ns:a namespace pointera namespace pointer (optional)
@@ -4996,19 +5117,23 @@ The content of this structure is not made public by the API.

xmlSetTreeDoc ()

-
void	xmlSetTreeDoc			(xmlNodePtr tree, 
xmlDocPtr doc)
+
int	xmlSetTreeDoc			(xmlNodePtr tree, 
xmlDocPtr doc)
-

update all nodes under the tree to point to the right document

+

This is an internal function which shouldn't be used. It is invoked by functions like xmlAddChild, xmlAddSibling or xmlReplaceNode. @tree must be the root node of an unlinked subtree. Associate all nodes in a tree with a new document. Also copy strings from the old document's dictionary and remove ID attributes from the old ID table.

- + - + + + + +
tree:the top elementroot of a subtree
doc:the documentnew document
Returns:0 on success. If a memory allocation fails, returns -1. The whole tree will be updated on failure but some strings may be lost.
@@ -5019,7 +5144,7 @@ The content of this structure is not made public by the API. xmlSplitQName2 ()
xmlChar *	xmlSplitQName2		(const xmlChar * name, 
xmlChar ** prefix)
-

parse an XML qualified name string [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName

+

DEPRECATED: This function doesn't report malloc failures. parse an XML qualified name string [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName

@@ -5069,22 +5194,21 @@ The content of this structure is not made public by the API. xmlStringGetNodeList ()
xmlNodePtr	xmlStringGetNodeList	(const xmlDoc * doc, 
const xmlChar * value)
-

Parse the value string and build the node list associated. Should produce a flat tree with only TEXTs and ENTITY_REFs.

+

DEPRECATED: Use xmlNodeSetContent. Parse an attribute value and build a node list containing only text and entity reference nodes. The resulting nodes will be associated with the document if provided. The document is also used to look up entities. The input is not validated. Syntax errors or references to undeclared entities will be ignored silently with unspecified results.

- + - + - +
doc:the documenta document (optional)
value:the value of the attribute -an attribute value
Returns:a pointer to the first childa pointer to the first child or NULL if a memory allocation failed.
@@ -5095,25 +5219,25 @@ The content of this structure is not made public by the API. xmlStringLenGetNodeList ()
xmlNodePtr	xmlStringLenGetNodeList	(const xmlDoc * doc, 
const xmlChar * value,
int len)
-

Parse the value string and build the node list associated. Should produce a flat tree with only TEXTs and ENTITY_REFs.

+

DEPRECATED: Use xmlNodeSetContentLen. See xmlStringGetNodeList.

- + - + - + - +
doc:the documenta document (optional)
value:the value of the textan attribute value
len:the length of the string valuemaximum length of the attribute value
Returns:a pointer to the first childa pointer to the first child or NULL if a memory allocation failed.
@@ -5124,7 +5248,7 @@ The content of this structure is not made public by the API. xmlTextConcat ()
int	xmlTextConcat			(xmlNodePtr node, 
const xmlChar * content,
int len)
-

Concat the given string at the end of the existing node content

+

Concat the given string at the end of the existing node content. If @len is -1, the string length will be calculated.

@@ -5153,7 +5277,7 @@ The content of this structure is not made public by the API. xmlTextMerge ()
xmlNodePtr	xmlTextMerge		(xmlNodePtr first, 
xmlNodePtr second)
-

Merge two text nodes into one

+

Merge the second text node into the first. The second node is unlinked and freed.

@@ -5167,7 +5291,7 @@ The content of this structure is not made public by the API. - +
Returns:the first text node augmentedthe first text node augmented or NULL in case of error.
@@ -5262,7 +5386,7 @@ The content of this structure is not made public by the API. xmlUnlinkNode ()
void	xmlUnlinkNode			(xmlNodePtr cur)
-

Unlink a node from it's current context, the node is not freed If one need to free the node, use xmlFreeNode() routine after the unlink to discard it. Note that namespace nodes can't be unlinked as they do not have pointer to their parent.

+

Unlink a node from its tree. The node is not freed. Unless it is reinserted, it must be managed manually and freed eventually by calling xmlFreeNode.

diff --git a/doc/devhelp/libxml2-uri.html b/doc/devhelp/libxml2-uri.html index de7a0aa4..04f90899 100644 --- a/doc/devhelp/libxml2-uri.html +++ b/doc/devhelp/libxml2-uri.html @@ -25,7 +25,9 @@
typedef struct _xmlURI xmlURI;
 typedef xmlURI * xmlURIPtr;
 xmlChar *	xmlBuildRelativeURI	(const xmlChar * URI, 
const xmlChar * base); +int xmlBuildRelativeURISafe (const xmlChar * URI,
const xmlChar * base,
xmlChar ** valPtr); xmlChar * xmlBuildURI (const xmlChar * URI,
const xmlChar * base); +int xmlBuildURISafe (const xmlChar * URI,
const xmlChar * base,
xmlChar ** valPtr); xmlChar * xmlCanonicPath (const xmlChar * path); xmlURIPtr xmlCreateURI (void); void xmlFreeURI (xmlURIPtr uri); @@ -33,6 +35,7 @@ int xmlNormalizeURIPath (char * path); xmlURIPtr xmlParseURI (const char * str); xmlURIPtr xmlParseURIRaw (const char * str,
int raw); int xmlParseURIReference (xmlURIPtr uri,
const char * str); +int xmlParseURISafe (const char * str,
xmlURIPtr * uriOut); xmlChar * xmlPathToURI (const xmlChar * path); void xmlPrintURI (FILE * stream,
xmlURIPtr uri); xmlChar * xmlSaveUri (xmlURIPtr uri); @@ -78,7 +81,7 @@ char * xmlURIUnescapeString (const char * s xmlBuildRelativeURI ()
xmlChar *	xmlBuildRelativeURI	(const xmlChar * URI, 
const xmlChar * base)
-

Expresses the URI of the reference in terms relative to the base. Some examples of this operation include: base = "http://site1.com/docs/book1.html" URI input URI returned docs/pic1.gif pic1.gif docs/img/pic1.gif img/pic1.gif img/pic1.gif ../img/pic1.gif http://site1.com/docs/pic1.gif pic1.gif http://site2.com/docs/pic1.gif http://site2.com/docs/pic1.gif base = "docs/book1.html" URI input URI returned docs/pic1.gif pic1.gif docs/img/pic1.gif img/pic1.gif img/pic1.gif ../img/pic1.gif http://site1.com/docs/pic1.gif http://site1.com/docs/pic1.gif Note: if the URI reference is really weird or complicated, it may be worthwhile to first convert it into a "nice" one by calling xmlBuildURI (using 'base') before calling this routine, since this routine (for reasonable efficiency) assumes URI has already been through some validation.

+

See xmlBuildRelativeURISafe.

@@ -100,6 +103,35 @@ char * xmlURIUnescapeString (const char * s

+xmlBuildRelativeURISafe ()

+
int	xmlBuildRelativeURISafe		(const xmlChar * URI, 
const xmlChar * base,
xmlChar ** valPtr)
+
+

Expresses the URI of the reference in terms relative to the base. Some examples of this operation include: base = "http://site1.com/docs/book1.html" URI input URI returned docs/pic1.gif pic1.gif docs/img/pic1.gif img/pic1.gif img/pic1.gif ../img/pic1.gif http://site1.com/docs/pic1.gif pic1.gif http://site2.com/docs/pic1.gif http://site2.com/docs/pic1.gif base = "docs/book1.html" URI input URI returned docs/pic1.gif pic1.gif docs/img/pic1.gif img/pic1.gif img/pic1.gif ../img/pic1.gif http://site1.com/docs/pic1.gif http://site1.com/docs/pic1.gif Note: if the URI reference is really weird or complicated, it may be worthwhile to first convert it into a "nice" one by calling xmlBuildURI (using 'base') before calling this routine, since this routine (for reasonable efficiency) assumes URI has already been through some validation. Available since 2.13.0.

+
++ + + + + + + + + + + + + + + + + + +
URI:the URI reference under consideration
base:the base value
valPtr:pointer to result URI
Returns:0 on success, -1 if a memory allocation failed or an error code if URI or base are invalid.
+
+
+
+

xmlBuildURI ()

xmlChar *	xmlBuildURI		(const xmlChar * URI, 
const xmlChar * base)
@@ -125,10 +157,39 @@ char * xmlURIUnescapeString (const char * s

+xmlBuildURISafe ()

+
int	xmlBuildURISafe			(const xmlChar * URI, 
const xmlChar * base,
xmlChar ** valPtr)
+
+

Computes he final URI of the reference done by checking that the given URI is valid, and building the final URI using the base URI. This is processed according to section 5.2 of the RFC 2396 5.2. Resolving Relative References to Absolute Form Available since 2.13.0.

+
++ + + + + + + + + + + + + + + + + + +
URI:the URI instance found in the document
base:the base value
valPtr:pointer to result URI
Returns:0 on success, -1 if a memory allocation failed or an error code if URI or base are invalid.
+
+
+
+

xmlCanonicPath ()

xmlChar *	xmlCanonicPath		(const xmlChar * path)
-

Constructs a canonic path from the specified path.

+

Prepares a path. If the path contains the substring "://", it is considered a Legacy Extended IRI. Characters which aren't allowed in URIs are escaped. Otherwise, the path is considered a filesystem path which is copied without modification. The caller is responsible for freeing the memory occupied by the returned string. If there is insufficient memory available, or the argument is NULL, the function returns NULL.

@@ -138,7 +199,7 @@ char * xmlURIUnescapeString (const char * s - +
Returns:a new canonic path, or a duplicate of the path parameter if the construction fails. The caller is responsible for freeing the memory occupied by the returned string. If there is insufficient memory available, or the argument is NULL, the function returns NULL.the escaped path.
@@ -269,6 +330,31 @@ char * xmlURIUnescapeString (const char * s

+xmlParseURISafe ()

+
int	xmlParseURISafe			(const char * str, 
xmlURIPtr * uriOut)
+
+

Parse an URI based on RFC 3986 URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ] Available since 2.13.0.

+
++ + + + + + + + + + + + + + +
str:the URI string to analyze
uriOut:optional pointer to parsed URI
Returns:0 on success, an error code (typically 1) if the URI is invalid or -1 if a memory allocation failed.
+
+
+
+

xmlPathToURI ()

xmlChar *	xmlPathToURI		(const xmlChar * path)
@@ -358,7 +444,7 @@ char * xmlURIUnescapeString (const char * s xmlURIEscapeStr ()
xmlChar *	xmlURIEscapeStr		(const xmlChar * str, 
const xmlChar * list)
-

This routine escapes a string to hex, ignoring reserved characters (a-z, A-Z, 0-9, "@-_.!~*'()") and the characters in the exception list.

+

This routine escapes a string to hex, ignoring unreserved characters a-z, A-Z, 0-9, "-._~", a few sub-delims "!*'()", the gen-delim "@" (why?) and the characters in the exception list.

diff --git a/doc/devhelp/libxml2-valid.html b/doc/devhelp/libxml2-valid.html index 7f488dd7..a66eb8f5 100644 --- a/doc/devhelp/libxml2-valid.html +++ b/doc/devhelp/libxml2-valid.html @@ -39,6 +39,7 @@ typedef xmlValidState * xmlAttributePtrxmlAddAttributeDecl (xmlValidCtxtPtr ctxt,
xmlDtdPtr dtd,
const xmlChar * elem,
const xmlChar * name,
const xmlChar * ns,
xmlAttributeType type,
xmlAttributeDefault def,
const xmlChar * defaultValue,
xmlEnumerationPtr tree); xmlElementPtrxmlAddElementDecl (xmlValidCtxtPtr ctxt,
xmlDtdPtr dtd,
const xmlChar * name,
xmlElementTypeVal type,
xmlElementContentPtr content); xmlIDPtrxmlAddID (xmlValidCtxtPtr ctxt,
xmlDocPtr doc,
const xmlChar * value,
xmlAttrPtr attr); +int xmlAddIDSafe (xmlAttrPtr attr,
const xmlChar * value); xmlNotationPtrxmlAddNotationDecl (xmlValidCtxtPtr ctxt,
xmlDtdPtr dtd,
const xmlChar * name,
const xmlChar * PublicID,
const xmlChar * SystemID); xmlRefPtrxmlAddRef (xmlValidCtxtPtr ctxt,
xmlDocPtr doc,
const xmlChar * value,
xmlAttrPtr attr); xmlAttributeTablePtrxmlCopyAttributeTable (xmlAttributeTablePtr table); @@ -433,6 +434,31 @@ The content of this structure is not made public by the API.

+xmlAddIDSafe ()

+
int	xmlAddIDSafe			(xmlAttrPtr attr, 
const xmlChar * value)
+
+

Register a new id declaration Available since 2.13.0.

+
++ + + + + + + + + + + + + + +
attr:the attribute holding the ID
value:the attribute (ID) value
Returns:1 on success, 0 if the ID already exists, -1 if a memory allocation fails.
+
+
+
+

xmlAddNotationDecl ()

xmlNotationPtr	xmlAddNotationDecl	(xmlValidCtxtPtr ctxt, 
xmlDtdPtr dtd,
const xmlChar * name,
const xmlChar * PublicID,
const xmlChar * SystemID)
@@ -658,7 +684,7 @@ The content of this structure is not made public by the API. xmlDumpAttributeDecl ()
void	xmlDumpAttributeDecl		(xmlBufferPtr buf, 
xmlAttributePtr attr)
-

This will dump the content of the attribute declaration as an XML DTD definition

+

DEPRECATED: Use xmlSaveTree. This will dump the content of the attribute declaration as an XML DTD definition

@@ -679,7 +705,7 @@ The content of this structure is not made public by the API. xmlDumpAttributeTable ()
void	xmlDumpAttributeTable		(xmlBufferPtr buf, 
xmlAttributeTablePtr table)
-

This will dump the content of the attribute table as an XML DTD definition

+

DEPRECATED: Don't use. This will dump the content of the attribute table as an XML DTD definition

@@ -700,7 +726,7 @@ The content of this structure is not made public by the API. xmlDumpElementDecl ()
void	xmlDumpElementDecl		(xmlBufferPtr buf, 
xmlElementPtr elem)
-

This will dump the content of the element declaration as an XML DTD definition

+

DEPRECATED: Use xmlSaveTree. This will dump the content of the element declaration as an XML DTD definition

@@ -721,7 +747,7 @@ The content of this structure is not made public by the API. xmlDumpElementTable ()
void	xmlDumpElementTable		(xmlBufferPtr buf, 
xmlElementTablePtr table)
-

This will dump the content of the element table as an XML DTD definition

+

DEPRECATED: Don't use. This will dump the content of the element table as an XML DTD definition

@@ -742,7 +768,7 @@ The content of this structure is not made public by the API. xmlDumpNotationDecl ()
void	xmlDumpNotationDecl		(xmlBufferPtr buf, 
xmlNotationPtr nota)
-

This will dump the content the notation declaration as an XML DTD definition

+

DEPRECATED: Don't use. This will dump the content the notation declaration as an XML DTD definition

@@ -763,7 +789,7 @@ The content of this structure is not made public by the API. xmlDumpNotationTable ()
void	xmlDumpNotationTable		(xmlBufferPtr buf, 
xmlNotationTablePtr table)
-

This will dump the content of the notation table as an XML DTD definition

+

DEPRECATED: Don't use. This will dump the content of the notation table as an XML DTD definition

@@ -954,7 +980,7 @@ The content of this structure is not made public by the API. xmlGetDtdElementDesc ()
xmlElementPtr	xmlGetDtdElementDesc	(xmlDtdPtr dtd, 
const xmlChar * name)
-

Search the DTD for the description of this element

+

Search the DTD for the description of this element NOTE: A NULL return value can also mean that a memory allocation failed.

@@ -1136,7 +1162,7 @@ The content of this structure is not made public by the API. - +
Returns:0 or 1 depending on the lookup result0 or 1 depending on the lookup result or -1 if a memory allocation failed.
@@ -1378,7 +1404,7 @@ The content of this structure is not made public by the API. xmlValidBuildContentModel ()
int	xmlValidBuildContentModel	(xmlValidCtxtPtr ctxt, 
xmlElementPtr elem)
-

(Re)Build the automata associated to the content model of this element

+

DEPRECATED: Internal function, don't use. (Re)Build the automata associated to the content model of this element

@@ -1403,7 +1429,7 @@ The content of this structure is not made public by the API. xmlValidCtxtNormalizeAttributeValue ()
xmlChar *	xmlValidCtxtNormalizeAttributeValue	(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc,
xmlNodePtr elem,
const xmlChar * name,
const xmlChar * value)
-

Does the validation related extra step of the normalization of attribute values: If the declared value is not CDATA, then the XML processor must further process the normalized attribute value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) characters by single space (#x20) character. Also check VC: Standalone Document Declaration in P32, and update ctxt->valid accordingly

+

DEPRECATED: Internal function, don't use. Does the validation related extra step of the normalization of attribute values: If the declared value is not CDATA, then the XML processor must further process the normalized attribute value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) characters by single space (#x20) character. Also check VC: Standalone Document Declaration in P32, and update ctxt->valid accordingly

@@ -1506,7 +1532,7 @@ The content of this structure is not made public by the API. xmlValidNormalizeAttributeValue ()
xmlChar *	xmlValidNormalizeAttributeValue	(xmlDocPtr doc, 
xmlNodePtr elem,
const xmlChar * name,
const xmlChar * value)
-

Does the validation related extra step of the normalization of attribute values: If the declared value is not CDATA, then the XML processor must further process the normalized attribute value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) characters by single space (#x20) character.

+

DEPRECATED: Internal function, don't use. Does the validation related extra step of the normalization of attribute values: If the declared value is not CDATA, then the XML processor must further process the normalized attribute value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) characters by single space (#x20) character.

@@ -1539,7 +1565,7 @@ The content of this structure is not made public by the API. xmlValidateAttributeDecl ()
int	xmlValidateAttributeDecl	(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc,
xmlAttributePtr attr)
-

Try to validate a single attribute definition basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Default Legal ] - [ VC: Enumeration ] - [ VC: ID Attribute Default ] The ID/IDREF uniqueness and matching are done separately

+

DEPRECATED: Internal function, don't use. Try to validate a single attribute definition basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Default Legal ] - [ VC: Enumeration ] - [ VC: ID Attribute Default ] The ID/IDREF uniqueness and matching are done separately

@@ -1568,7 +1594,7 @@ The content of this structure is not made public by the API. xmlValidateAttributeValue ()
int	xmlValidateAttributeValue	(xmlAttributeType type, 
const xmlChar * value)
-

Validate that the given attribute value match the proper production [ VC: ID ] Values of type ID must match the Name production.... [ VC: IDREF ] Values of type IDREF must match the Name production, and values of type IDREFS must match Names ... [ VC: Entity Name ] Values of type ENTITY must match the Name production, values of type ENTITIES must match Names ... [ VC: Name Token ] Values of type NMTOKEN must match the Nmtoken production; values of type NMTOKENS must match Nmtokens.

+

DEPRECATED: Internal function, don't use. Validate that the given attribute value match the proper production [ VC: ID ] Values of type ID must match the Name production.... [ VC: IDREF ] Values of type IDREF must match the Name production, and values of type IDREFS must match Names ... [ VC: Entity Name ] Values of type ENTITY must match the Name production, values of type ENTITIES must match Names ... [ VC: Name Token ] Values of type NMTOKEN must match the Nmtoken production; values of type NMTOKENS must match Nmtokens.

@@ -1618,7 +1644,7 @@ The content of this structure is not made public by the API. xmlValidateDocumentFinal ()
int	xmlValidateDocumentFinal	(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc)
-

Does the final step for the document validation once all the incremental validation steps have been completed basically it does the following checks described by the XML Rec Check all the IDREF/IDREFS attributes definition for validity

+

DEPRECATED: Internal function, don't use. Does the final step for the document validation once all the incremental validation steps have been completed basically it does the following checks described by the XML Rec Check all the IDREF/IDREFS attributes definition for validity

@@ -1672,7 +1698,7 @@ The content of this structure is not made public by the API. xmlValidateDtdFinal ()
int	xmlValidateDtdFinal		(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc)
-

Does the final step for the dtds validation once all the subsets have been parsed basically it does the following checks described by the XML Rec - check that ENTITY and ENTITIES type attributes default or possible values matches one of the defined entities. - check that NOTATION type attributes default or possible values matches one of the defined notations.

+

DEPRECATED: Internal function, don't use. Does the final step for the dtds validation once all the subsets have been parsed basically it does the following checks described by the XML Rec - check that ENTITY and ENTITIES type attributes default or possible values matches one of the defined entities. - check that NOTATION type attributes default or possible values matches one of the defined notations.

@@ -1726,7 +1752,7 @@ The content of this structure is not made public by the API. xmlValidateElementDecl ()
int	xmlValidateElementDecl		(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc,
xmlElementPtr elem)
-

Try to validate a single element definition basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: One ID per Element Type ] - [ VC: No Duplicate Types ] - [ VC: Unique Element Type Declaration ]

+

DEPRECATED: Internal function, don't use. Try to validate a single element definition basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: One ID per Element Type ] - [ VC: No Duplicate Types ] - [ VC: Unique Element Type Declaration ]

@@ -1839,7 +1865,7 @@ The content of this structure is not made public by the API. xmlValidateNotationDecl ()
int	xmlValidateNotationDecl		(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc,
xmlNotationPtr nota)
-

Try to validate a single notation definition basically it does the following checks as described by the XML-1.0 recommendation: - it seems that no validity constraint exists on notation declarations But this function get called anyway ...

+

DEPRECATED: Internal function, don't use. Try to validate a single notation definition basically it does the following checks as described by the XML-1.0 recommendation: - it seems that no validity constraint exists on notation declarations But this function get called anyway ...

@@ -1868,7 +1894,7 @@ The content of this structure is not made public by the API. xmlValidateNotationUse ()
int	xmlValidateNotationUse		(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc,
const xmlChar * notationName)
-

Validate that the given name match a notation declaration. - [ VC: Notation Declared ]

+

DEPRECATED: Internal function, don't use. Validate that the given name match a notation declaration. - [ VC: Notation Declared ]

@@ -1897,7 +1923,7 @@ The content of this structure is not made public by the API. xmlValidateOneAttribute ()
int	xmlValidateOneAttribute		(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc,
xmlNodePtr elem,
xmlAttrPtr attr,
const xmlChar * value)
-

Try to validate a single attribute for an element basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Value Type ] - [ VC: Fixed Attribute Default ] - [ VC: Entity Name ] - [ VC: Name Token ] - [ VC: ID ] - [ VC: IDREF ] - [ VC: Entity Name ] - [ VC: Notation Attributes ] The ID/IDREF uniqueness and matching are done separately

+

DEPRECATED: Internal function, don't use. Try to validate a single attribute for an element basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Value Type ] - [ VC: Fixed Attribute Default ] - [ VC: Entity Name ] - [ VC: Name Token ] - [ VC: ID ] - [ VC: IDREF ] - [ VC: Entity Name ] - [ VC: Notation Attributes ] The ID/IDREF uniqueness and matching are done separately

@@ -1934,7 +1960,7 @@ The content of this structure is not made public by the API. xmlValidateOneElement ()
int	xmlValidateOneElement		(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc,
xmlNodePtr elem)
-

Try to validate a single element and it's attributes, basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Element Valid ] - [ VC: Required Attribute ] Then call xmlValidateOneAttribute() for each attribute present. The ID/IDREF checkings are done separately

+

DEPRECATED: Internal function, don't use. Try to validate a single element and it's attributes, basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Element Valid ] - [ VC: Required Attribute ] Then call xmlValidateOneAttribute() for each attribute present. The ID/IDREF checkings are done separately

@@ -1963,7 +1989,7 @@ The content of this structure is not made public by the API. xmlValidateOneNamespace ()
int	xmlValidateOneNamespace		(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc,
xmlNodePtr elem,
const xmlChar * prefix,
xmlNsPtr ns,
const xmlChar * value)
-

Try to validate a single namespace declaration for an element basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Value Type ] - [ VC: Fixed Attribute Default ] - [ VC: Entity Name ] - [ VC: Name Token ] - [ VC: ID ] - [ VC: IDREF ] - [ VC: Entity Name ] - [ VC: Notation Attributes ] The ID/IDREF uniqueness and matching are done separately

+

DEPRECATED: Internal function, don't use. Try to validate a single namespace declaration for an element basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Value Type ] - [ VC: Fixed Attribute Default ] - [ VC: Entity Name ] - [ VC: Name Token ] - [ VC: ID ] - [ VC: IDREF ] - [ VC: Entity Name ] - [ VC: Notation Attributes ] The ID/IDREF uniqueness and matching are done separately

@@ -2004,7 +2030,7 @@ The content of this structure is not made public by the API. xmlValidatePopElement ()
int	xmlValidatePopElement		(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc,
xmlNodePtr elem,
const xmlChar * qname)
-

Pop the element end from the validation stack.

+

DEPRECATED: Internal function, don't use. Pop the element end from the validation stack.

@@ -2037,7 +2063,7 @@ The content of this structure is not made public by the API. xmlValidatePushCData ()
int	xmlValidatePushCData		(xmlValidCtxtPtr ctxt, 
const xmlChar * data,
int len)
-

check the CData parsed for validation in the current stack

+

DEPRECATED: Internal function, don't use. check the CData parsed for validation in the current stack

@@ -2066,7 +2092,7 @@ The content of this structure is not made public by the API. xmlValidatePushElement ()
int	xmlValidatePushElement		(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc,
xmlNodePtr elem,
const xmlChar * qname)
-

Push a new element start on the validation stack.

+

DEPRECATED: Internal function, don't use. Push a new element start on the validation stack.

@@ -2099,7 +2125,7 @@ The content of this structure is not made public by the API. xmlValidateRoot ()
int	xmlValidateRoot			(xmlValidCtxtPtr ctxt, 
xmlDocPtr doc)
-

Try to validate a the root element basically it does the following check as described by the XML-1.0 recommendation: - [ VC: Root Element Type ] it doesn't try to recurse or apply other check to the element

+

DEPRECATED: Internal function, don't use. Try to validate a the root element basically it does the following check as described by the XML-1.0 recommendation: - [ VC: Root Element Type ] it doesn't try to recurse or apply other check to the element

diff --git a/doc/devhelp/libxml2-xinclude.html b/doc/devhelp/libxml2-xinclude.html index 6b958266..eba01b74 100644 --- a/doc/devhelp/libxml2-xinclude.html +++ b/doc/devhelp/libxml2-xinclude.html @@ -35,6 +35,7 @@ typedef struct _xmlXIncludeCtxt xmlXIncludeCtxt; typedef xmlXIncludeCtxt * xmlXIncludeCtxtPtr; void xmlXIncludeFreeContext (xmlXIncludeCtxtPtr ctxt); +int xmlXIncludeGetLastError (xmlXIncludeCtxtPtr ctxt); xmlXIncludeCtxtPtrxmlXIncludeNewContext (xmlDocPtr doc); int xmlXIncludeProcess (xmlDocPtr doc); int xmlXIncludeProcessFlags (xmlDocPtr doc,
int flags); @@ -43,6 +44,7 @@ int xmlXIncludeProcessNode (xmlXIncludeProcessTree (xmlNodePtr tree); int xmlXIncludeProcessTreeFlags (xmlNodePtr tree,
int flags); int xmlXIncludeProcessTreeFlagsData (xmlNodePtr tree,
int flags,
void * data); +void xmlXIncludeSetErrorHandler (xmlXIncludeCtxtPtr ctxt,
xmlStructuredErrorFunc handler,
void * data); int xmlXIncludeSetFlags (xmlXIncludeCtxtPtr ctxt,
int flags); @@ -165,6 +167,27 @@ The content of this structure is not made public by the API.

+xmlXIncludeGetLastError ()

+
int	xmlXIncludeGetLastError		(xmlXIncludeCtxtPtr ctxt)
+
+

Available since 2.13.0.

+
++ + + + + + + + + + +
ctxt:an XInclude processing context
Returns:the last error code.
+
+
+
+

xmlXIncludeNewContext ()

xmlXIncludeCtxtPtr	xmlXIncludeNewContext	(xmlDocPtr doc)
@@ -361,6 +384,31 @@ The content of this structure is not made public by the API.

+xmlXIncludeSetErrorHandler ()

+
void	xmlXIncludeSetErrorHandler	(xmlXIncludeCtxtPtr ctxt, 
xmlStructuredErrorFunc handler,
void * data)
+
+

Register a callback function that will be called on errors and warnings. If handler is NULL, the error handler will be deactivated. Available since 2.13.0.

+
++ + + + + + + + + + + + + + +
ctxt:an XInclude processing context
handler:error handler
data:user data which will be passed to the handler
+
+
+
+

xmlXIncludeSetFlags ()

int	xmlXIncludeSetFlags		(xmlXIncludeCtxtPtr ctxt, 
int flags)
diff --git a/doc/devhelp/libxml2-xmlIO.html b/doc/devhelp/libxml2-xmlIO.html index a8cc38c1..cd8424f3 100644 --- a/doc/devhelp/libxml2-xmlIO.html +++ b/doc/devhelp/libxml2-xmlIO.html @@ -357,13 +357,13 @@ int xmlRegisterOutputCallbacks (xmlAllocParserInputBuffer ()
xmlParserInputBufferPtr	xmlAllocParserInputBuffer	(xmlCharEncoding enc)
-

Create a buffered parser input for progressive parsing

+

Create a buffered parser input for progressive parsing. The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on.

- + @@ -378,7 +378,7 @@ int xmlRegisterOutputCallbacks (xmlCheckFilename ()
int	xmlCheckFilename		(const char * path)
-

function checks to see if @path is a valid source (file, socket...) for XML. if stat is not available on the target machine,

+

DEPRECATED: Internal function, don't use. if stat is not available on the target machine,

enc:the charset encoding if knownthe charset encoding if known (deprecated)
Returns:
@@ -399,7 +399,7 @@ int xmlRegisterOutputCallbacks (xmlCheckHTTPInput ()
xmlParserInputPtr	xmlCheckHTTPInput	(xmlParserCtxtPtr ctxt, 
xmlParserInputPtr ret)
-

Check an input in case it was created from an HTTP stream, in that case it will handle encoding and update of the base URL in case of redirection. It also checks for HTTP errors in which case the input is cleanly freed up and an appropriate error is raised in context

+

DEPRECATED: Internal function, don't use. Check an input in case it was created from an HTTP stream, in that case it will handle encoding and update of the base URL in case of redirection. It also checks for HTTP errors in which case the input is cleanly freed up and an appropriate error is raised in context

@@ -440,7 +440,7 @@ int xmlRegisterOutputCallbacks (xmlFileClose ()
int	xmlFileClose			(void * context)
-

Close an I/O channel

+

DEPRECATED: Internal function, don't use.

@@ -450,7 +450,7 @@ int xmlRegisterOutputCallbacks ( - +
Returns:0 or -1 in case of error0 or -1 an error code case of error
@@ -461,7 +461,7 @@ int xmlRegisterOutputCallbacks (xmlFileMatch ()
int	xmlFileMatch			(const char * filename)
-

input from FILE *

+

DEPRECATED: Internal function, don't use.

@@ -482,7 +482,7 @@ int xmlRegisterOutputCallbacks (xmlFileOpen ()
void *	xmlFileOpen			(const char * filename)
-

Wrapper around xmlFileOpen_real that try it with an unescaped version of @filename, if this fails fallback to @filename

+

DEPRECATED: Internal function, don't use.

@@ -492,7 +492,7 @@ int xmlRegisterOutputCallbacks ( - +
Returns:a handler or NULL in case or failurean IO context or NULL in case or failure
@@ -503,7 +503,7 @@ int xmlRegisterOutputCallbacks (xmlFileRead ()
int	xmlFileRead			(void * context, 
char * buffer,
int len)
-

Read @len bytes to @buffer from the I/O channel.

+

DEPRECATED: Internal function, don't use.

@@ -521,7 +521,7 @@ int xmlRegisterOutputCallbacks ( - +
Returns:the number of bytes written or < 0 in case of failurethe number of bytes read or < 0 in case of failure
@@ -547,7 +547,7 @@ int xmlRegisterOutputCallbacks (xmlIOFTPClose ()
int	xmlIOFTPClose			(void * context)
-

Close an FTP I/O channel

+

DEPRECATED: Internal function, don't use. Close an FTP I/O channel

@@ -568,7 +568,7 @@ int xmlRegisterOutputCallbacks (xmlIOFTPMatch ()
int	xmlIOFTPMatch			(const char * filename)
-

check if the URI matches an FTP one

+

DEPRECATED: Internal function, don't use. check if the URI matches an FTP one

@@ -589,7 +589,7 @@ int xmlRegisterOutputCallbacks (xmlIOFTPOpen ()
void *	xmlIOFTPOpen			(const char * filename)
-

open an FTP I/O channel

+

DEPRECATED: Internal function, don't use. open an FTP I/O channel

@@ -610,7 +610,7 @@ int xmlRegisterOutputCallbacks (xmlIOFTPRead ()
int	xmlIOFTPRead			(void * context, 
char * buffer,
int len)
-

Read @len bytes to @buffer from the I/O channel.

+

DEPRECATED: Internal function, don't use. Read @len bytes to @buffer from the I/O channel.

@@ -639,7 +639,7 @@ int xmlRegisterOutputCallbacks (xmlIOHTTPClose ()
int	xmlIOHTTPClose			(void * context)
-

Close an HTTP I/O channel

+

DEPRECATED: Internal function, don't use. Close an HTTP I/O channel

@@ -660,7 +660,7 @@ int xmlRegisterOutputCallbacks (xmlIOHTTPMatch ()
int	xmlIOHTTPMatch			(const char * filename)
-

check if the URI matches an HTTP one

+

DEPRECATED: Internal function, don't use. check if the URI matches an HTTP one

@@ -681,7 +681,7 @@ int xmlRegisterOutputCallbacks (xmlIOHTTPOpen ()
void *	xmlIOHTTPOpen			(const char * filename)
-

open an HTTP I/O channel

+

DEPRECATED: Internal function, don't use. open an HTTP I/O channel

@@ -702,7 +702,7 @@ int xmlRegisterOutputCallbacks (xmlIOHTTPOpenW ()
void *	xmlIOHTTPOpenW			(const char * post_uri, 
int compression)
-

Open a temporary buffer to collect the document for a subsequent HTTP POST request. Non-static as is called from the output buffer creation routine.

+

DEPRECATED: Support for HTTP POST has been removed.

@@ -716,7 +716,7 @@ int xmlRegisterOutputCallbacks ( - +
Returns:an I/O context or NULL in case of error.NULL.
@@ -727,7 +727,7 @@ int xmlRegisterOutputCallbacks (xmlIOHTTPRead ()
int	xmlIOHTTPRead			(void * context, 
char * buffer,
int len)
-

Read @len bytes to @buffer from the I/O channel.

+

DEPRECATED: Internal function, don't use. Read @len bytes to @buffer from the I/O channel.

@@ -785,7 +785,7 @@ int xmlRegisterOutputCallbacks (xmlNormalizeWindowsPath ()
xmlChar *	xmlNormalizeWindowsPath	(const xmlChar * path)
-

This function is obsolete. Please see xmlURIFromPath in uri.c for a better solution.

+

DEPRECATED: This never really worked.

@@ -795,7 +795,7 @@ int xmlRegisterOutputCallbacks ( - +
Returns:a canonicalized version of the patha copy of path.
@@ -816,7 +816,7 @@ int xmlRegisterOutputCallbacks ( Returns: -the number of byte written or -1 in case of error. +the number of byte written or a negative xmlParserErrors code in case of error.
@@ -1155,7 +1155,7 @@ int xmlRegisterOutputCallbacks (xmlParserInputBufferCreateFd ()
xmlParserInputBufferPtr	xmlParserInputBufferCreateFd	(int fd, 
xmlCharEncoding enc)
-

Create a buffered parser input for the progressive parsing for the input from a file descriptor

+

Create a buffered parser input for the progressive parsing for the input from a file descriptor The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on.

@@ -1165,7 +1165,7 @@ int xmlRegisterOutputCallbacks ( - + @@ -1180,7 +1180,7 @@ int xmlRegisterOutputCallbacks (xmlParserInputBufferCreateFile ()
xmlParserInputBufferPtr	xmlParserInputBufferCreateFile	(FILE * file, 
xmlCharEncoding enc)
-

Create a buffered parser input for the progressive parsing of a FILE * buffered C I/O

+

Create a buffered parser input for the progressive parsing of a FILE * buffered C I/O The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on.

enc:the charset encoding if knownthe charset encoding if known (deprecated)
Returns:
@@ -1190,7 +1190,7 @@ int xmlRegisterOutputCallbacks ( - + @@ -1205,7 +1205,7 @@ int xmlRegisterOutputCallbacks (xmlParserInputBufferCreateFilename ()
xmlParserInputBufferPtr	xmlParserInputBufferCreateFilename	(const char * URI, 
xmlCharEncoding enc)
-

Create a buffered parser input for the progressive parsing of a file If filename is "-' then we use stdin as the input. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. Do an encoding check if enc == XML_CHAR_ENCODING_NONE

+

Create a buffered parser input for the progressive parsing of a file Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. Do an encoding check if enc == XML_CHAR_ENCODING_NONE

enc:the charset encoding if knownthe charset encoding if known (deprecated)
Returns:
@@ -1251,7 +1251,7 @@ int xmlRegisterOutputCallbacks (xmlParserInputBufferCreateIO ()
xmlParserInputBufferPtr	xmlParserInputBufferCreateIO	(xmlInputReadCallback ioread, 
xmlInputCloseCallback ioclose,
void * ioctx,
xmlCharEncoding enc)
-

Create a buffered parser input for the progressive parsing for the input from an I/O handler

+

Create a buffered parser input for the progressive parsing for the input from an I/O handler The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on.

@@ -1269,7 +1269,7 @@ int xmlRegisterOutputCallbacks ( - + @@ -1284,7 +1284,7 @@ int xmlRegisterOutputCallbacks (xmlParserInputBufferCreateMem ()
xmlParserInputBufferPtr	xmlParserInputBufferCreateMem	(const char * mem, 
int size,
xmlCharEncoding enc)
-

Create a buffered parser input for the progressive parsing for the input from a memory area.

+

Create a parser input buffer for parsing from a memory area. This function makes a copy of the whole input buffer. If you are sure that the contents of the buffer will remain valid until the document was parsed, you can avoid the copy by using xmlParserInputBufferCreateStatic. The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on.

enc:the charset encoding if knownthe charset encoding if known (deprecated)
Returns:
@@ -1298,11 +1298,11 @@ int xmlRegisterOutputCallbacks ( - + - +
enc:the charset encoding if knownthe charset encoding if known (deprecated)
Returns:the new parser input or NULLthe new parser input or NULL in case of error.
@@ -1313,7 +1313,7 @@ int xmlRegisterOutputCallbacks (xmlParserInputBufferCreateStatic ()
xmlParserInputBufferPtr	xmlParserInputBufferCreateStatic	(const char * mem, 
int size,
xmlCharEncoding enc)
-

DEPRECATED: Use xmlParserInputBufferCreateMem.

+

Create a parser input buffer for parsing from a memory area. This functions assumes that the contents of the input buffer remain valid until the document was parsed. Use xmlParserInputBufferCreateMem otherwise. The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on.

@@ -1331,7 +1331,7 @@ int xmlRegisterOutputCallbacks ( - +
Returns:the new parser input or NULLthe new parser input or NULL in case of error.
@@ -1467,7 +1467,7 @@ int xmlRegisterOutputCallbacks (xmlRegisterHTTPPostCallbacks ()
void	xmlRegisterHTTPPostCallbacks	(void)
-

By default, libxml submits HTTP output requests using the "PUT" method. Calling this method changes the HTTP output method to use the "POST" method instead.

+

DEPRECATED: Support for HTTP POST has been removed.


diff --git a/doc/devhelp/libxml2-xmlerror.html b/doc/devhelp/libxml2-xmlerror.html index 678770f9..173f026c 100644 --- a/doc/devhelp/libxml2-xmlerror.html +++ b/doc/devhelp/libxml2-xmlerror.html @@ -31,6 +31,7 @@ void initGenericErrorDefaultFunc (xmlCopyError (const xmlError * from,
xmlErrorPtr to); const xmlError * xmlCtxtGetLastError (void * ctx); void xmlCtxtResetLastError (void * ctx); +void xmlFormatError (const xmlError * err,
xmlGenericErrorFunc channel,
void * data); typedef void xmlGenericErrorFunc (void * ctx,
const char * msg,
... ...); const xmlError * xmlGetLastError (void); void xmlParserError (void * ctx,
const char * msg,
... ...); @@ -253,6 +254,11 @@ void xmlThrDefSetStructuredErrorFunc< XML_ERR_USER_STOP = 111 /* 111 */ XML_ERR_COMMENT_ABRUPTLY_ENDED = 112 /* 112 */ XML_WAR_ENCODING_MISMATCH = 113 /* 113 */ + XML_ERR_RESOURCE_LIMIT = 114 /* 114 */ + XML_ERR_ARGUMENT = 115 /* 115 */ + XML_ERR_SYSTEM = 116 /* 116 */ + XML_ERR_REDECL_PREDEF_ENTITY = 117 /* 117 */ + XML_ERR_INT_SUBSET_NOT_FINISHED = 118 /* 118 */ XML_NS_ERR_XML_NAMESPACE = 200 XML_NS_ERR_UNDEFINED_NAMESPACE = 201 /* 201 */ XML_NS_ERR_QNAME = 202 /* 202 */ @@ -515,6 +521,7 @@ void xmlThrDefSetStructuredErrorFunc< XML_IO_EADDRINUSE = 1554 /* 1554 */ XML_IO_EALREADY = 1555 /* 1555 */ XML_IO_EAFNOSUPPORT = 1556 /* 1556 */ + XML_IO_UNSUPPORTED_PROTOCOL = 1557 /* 1557 */ XML_XINCLUDE_RECURSION = 1600 XML_XINCLUDE_PARSE_VALUE = 1601 /* 1601 */ XML_XINCLUDE_ENTITY_DEF_MISMATCH = 1602 /* 1602 */ @@ -1005,6 +1012,31 @@ void xmlThrDefSetStructuredErrorFunc<

+xmlFormatError ()

+
void	xmlFormatError			(const xmlError * err, 
xmlGenericErrorFunc channel,
void * data)
+
+

Report a formatted error to a printf-like callback. This can result in a verbose multi-line report including additional information from the parser context. Available since 2.13.0.

+
++ + + + + + + + + + + + + + +
err:the error
channel:callback
data:user data for callback
+
+
+
+

xmlGetLastError ()

const xmlError *	xmlGetLastError	(void)
@@ -1048,7 +1080,7 @@ void xmlThrDefSetStructuredErrorFunc< xmlParserPrintFileContext ()
void	xmlParserPrintFileContext	(xmlParserInputPtr input)
-

Displays current context within the input content for error tracking

+

DEPRECATED: Use xmlFormatError. Displays current context within the input content for error tracking

@@ -1063,7 +1095,7 @@ void xmlThrDefSetStructuredErrorFunc< xmlParserPrintFileInfo ()
void	xmlParserPrintFileInfo		(xmlParserInputPtr input)
-

Displays the associated file and line information for the current input

+

DEPRECATED: Use xmlFormatError. Displays the associated file and line information for the current input

@@ -1176,7 +1208,7 @@ void xmlThrDefSetStructuredErrorFunc< xmlSetGenericErrorFunc ()
void	xmlSetGenericErrorFunc		(void * ctx, 
xmlGenericErrorFunc handler)
-

Function to reset the handler and the error context for out of context error messages. This simply means that @handler will be called for subsequent error messages while not parsing nor validating. And @ctx will be passed as first argument to @handler One can simply force messages to be emitted to another FILE * than stderr by setting @ctx to this file handle and @handler to NULL. For multi-threaded applications, this must be set separately for each thread.

+

DEPRECATED: See xmlSetStructuredErrorFunc for alternatives. Set the global "generic" handler and context for error messages. The generic error handler will only receive fragments of error messages which should be concatenated or printed to a stream. If handler is NULL, use the built-in default handler which prints to stderr. Since this is a global setting, it's a good idea to reset the error handler to its default value after collecting the errors you're interested in. For multi-threaded applications, this must be set separately for each thread.

@@ -1197,7 +1229,7 @@ void xmlThrDefSetStructuredErrorFunc< xmlSetStructuredErrorFunc ()
void	xmlSetStructuredErrorFunc	(void * ctx, 
xmlStructuredErrorFunc handler)
-

Function to reset the handler and the error context for out of context structured error messages. This simply means that @handler will be called for subsequent error messages while not parsing nor validating. And @ctx will be passed as first argument to @handler For multi-threaded applications, this must be set separately for each thread.

+

DEPRECATED: Use a per-context error handler. It's recommended to use the per-context error handlers instead: - xmlCtxtSetErrorHandler (since 2.13.0) - xmlTextReaderSetStructuredErrorHandler - xmlXPathSetErrorHandler (since 2.13.0) - xmlXIncludeSetErrorHandler (since 2.13.0) - xmlSchemaSetParserStructuredErrors - xmlSchemaSetValidStructuredErrors - xmlRelaxNGSetParserStructuredErrors - xmlRelaxNGSetValidStructuredErrors Set the global "structured" handler and context for error messages. If handler is NULL, the error handler is deactivated. The structured error handler takes precedence over "generic" handlers, even per-context generic handlers. Since this is a global setting, it's a good idea to deactivate the error handler after collecting the errors you're interested in. For multi-threaded applications, this must be set separately for each thread.

diff --git a/doc/devhelp/libxml2-xmlexports.html b/doc/devhelp/libxml2-xmlexports.html index 937d7cb9..05b5efea 100644 --- a/doc/devhelp/libxml2-xmlexports.html +++ b/doc/devhelp/libxml2-xmlexports.html @@ -22,31 +22,12 @@

Author(s):

Synopsis

-
#define XMLPUBFUN;
-#define XMLPUBVAR;
-
+

 

Description

Details

-
-
-

-Macro XMLPUBFUN

-
#define XMLPUBFUN;
-
-

Macro which declares an exportable function

-
-
-
-

-Macro XMLPUBVAR

-
#define XMLPUBVAR;
-
-

Macro which declares an exportable variable

-
-
-
+
diff --git a/doc/devhelp/libxml2-xmlmemory.html b/doc/devhelp/libxml2-xmlmemory.html index 0a1198d5..57457aad 100644 --- a/doc/devhelp/libxml2-xmlmemory.html +++ b/doc/devhelp/libxml2-xmlmemory.html @@ -267,7 +267,7 @@ typedef char * xmlStrdupFunc (const char * str); - +
Returns:0.
@@ -277,7 +277,7 @@ typedef char * xmlStrdupFunc (const char * str); xmlMallocAtomicLoc ()
void *	xmlMallocAtomicLoc		(size_t size, 
const char * file,
int line)
-

a malloc() equivalent, with logging of the allocation info.

+

DEPRECATED: don't use

@@ -306,7 +306,7 @@ typedef char * xmlStrdupFunc (const char * str); xmlMallocLoc ()
void *	xmlMallocLoc			(size_t size, 
const char * file,
int line)
-

a malloc() equivalent, with logging of the allocation info.

+

DEPRECATED: don't use

@@ -350,12 +350,12 @@ typedef char * xmlStrdupFunc (const char * str); xmlMemDisplay ()
void	xmlMemDisplay			(FILE * fp)
-

show in-extenso the memory blocks allocated

+

DEPRECATED: This feature was removed.

- +
fp:a FILE descriptor used as the output file, if NULL, the result is written to the file .memorylista FILE descriptor
@@ -365,13 +365,13 @@ typedef char * xmlStrdupFunc (const char * str); xmlMemDisplayLast ()
void	xmlMemDisplayLast		(FILE * fp, 
long nbBytes)
-

the last nbBytes of memory allocated and not freed, useful for dumping the memory left allocated between two places at runtime.

+

DEPRECATED: This feature was removed.

- + @@ -513,13 +513,13 @@ typedef char * xmlStrdupFunc (const char * str); xmlMemShow ()
void	xmlMemShow			(FILE * fp, 
int nr)
-

show a show display of the memory allocated, and dump the @nr last allocated areas which were not freed

+

DEPRECATED: This feature was removed.

fp:a FILE descriptor used as the output file, if NULL, the result is written to the file .memorylista FILE descriptor
nbBytes:
- + @@ -555,7 +555,7 @@ typedef char * xmlStrdupFunc (const char * str); xmlMemStrdupLoc ()
char *	xmlMemStrdupLoc			(const char * str, 
const char * file,
int line)
-

a strdup() equivalent, with logging of the allocation info.

+

DEPRECATED: don't use

fp:a FILE descriptor used as the output filea FILE descriptor
nr:
@@ -599,7 +599,7 @@ typedef char * xmlStrdupFunc (const char * str); xmlMemoryDump ()
void	xmlMemoryDump			(void)
-

Dump in-extenso the memory blocks allocated to the file .memorylist

+

DEPRECATED: This feature was removed.


@@ -628,7 +628,7 @@ typedef char * xmlStrdupFunc (const char * str); xmlReallocLoc ()
void *	xmlReallocLoc			(void * ptr, 
size_t size,
const char * file,
int line)
-

a realloc() equivalent, with logging of the allocation info.

+

DEPRECATED: don't use

diff --git a/doc/devhelp/libxml2-xmlreader.html b/doc/devhelp/libxml2-xmlreader.html index 76b3a72a..e3be7242 100644 --- a/doc/devhelp/libxml2-xmlreader.html +++ b/doc/devhelp/libxml2-xmlreader.html @@ -67,6 +67,7 @@ typedef void xmlTextReaderErrorFunc (void xmlChar * xmlTextReaderGetAttributeNo (xmlTextReaderPtr reader,
int no); xmlChar * xmlTextReaderGetAttributeNs (xmlTextReaderPtr reader,
const xmlChar * localName,
const xmlChar * namespaceURI); void xmlTextReaderGetErrorHandler (xmlTextReaderPtr reader,
xmlTextReaderErrorFunc * f,
void ** arg); +const xmlError * xmlTextReaderGetLastError (xmlTextReaderPtr reader); int xmlTextReaderGetParserColumnNumber (xmlTextReaderPtr reader); int xmlTextReaderGetParserLineNumber (xmlTextReaderPtr reader); int xmlTextReaderGetParserProp (xmlTextReaderPtr reader,
int prop); @@ -1218,6 +1219,27 @@ The content of this structure is not made public by the API.

+xmlTextReaderGetLastError ()

+
const xmlError *	xmlTextReaderGetLastError	(xmlTextReaderPtr reader)
+
+

Available since 2.13.0.

+
++ + + + + + + + + + +
reader:an XML reader
Returns:the last error.
+
+
+
+

xmlTextReaderGetParserColumnNumber ()

int	xmlTextReaderGetParserColumnNumber	(xmlTextReaderPtr reader)
@@ -2142,7 +2164,7 @@ The content of this structure is not made public by the API. xmlTextReaderSetErrorHandler ()
void	xmlTextReaderSetErrorHandler	(xmlTextReaderPtr reader, 
xmlTextReaderErrorFunc f,
void * arg)
-

Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored.

+

DEPRECATED: Use xmlTextReaderSetStructuredErrorHandler. Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored.

diff --git a/doc/devhelp/libxml2-xmlsave.html b/doc/devhelp/libxml2-xmlsave.html index 21262758..083d0be4 100644 --- a/doc/devhelp/libxml2-xmlsave.html +++ b/doc/devhelp/libxml2-xmlsave.html @@ -27,6 +27,7 @@ typedef xmlSaveCtxt * xmlSaveOption; int xmlSaveClose (xmlSaveCtxtPtr ctxt); long xmlSaveDoc (xmlSaveCtxtPtr ctxt,
xmlDocPtr doc); +int xmlSaveFinish (xmlSaveCtxtPtr ctxt); int xmlSaveFlush (xmlSaveCtxtPtr ctxt); int xmlSaveSetAttrEscape (xmlSaveCtxtPtr ctxt,
xmlCharEncodingOutputFunc escape); int xmlSaveSetEscape (xmlSaveCtxtPtr ctxt,
xmlCharEncodingOutputFunc escape); @@ -127,6 +128,27 @@ The content of this structure is not made public by the API.

+xmlSaveFinish ()

+
int	xmlSaveFinish			(xmlSaveCtxtPtr ctxt)
+
+

Close a document saving context, i.e. make sure that all bytes have been output and free the associated data. Available since 2.13.0.

+
++ + + + + + + + + + +
ctxt:a document saving context
Returns:an xmlParserErrors code.
+
+
+
+

xmlSaveFlush ()

int	xmlSaveFlush			(xmlSaveCtxtPtr ctxt)
diff --git a/doc/devhelp/libxml2-xmlschemas.html b/doc/devhelp/libxml2-xmlschemas.html index 6fde7908..77f1cfc7 100644 --- a/doc/devhelp/libxml2-xmlschemas.html +++ b/doc/devhelp/libxml2-xmlschemas.html @@ -603,7 +603,7 @@ The content of this structure is not made public by the API. xmlSchemaSetParserErrors ()
void	xmlSchemaSetParserErrors	(xmlSchemaParserCtxtPtr ctxt, 
xmlSchemaValidityErrorFunc err,
xmlSchemaValidityWarningFunc warn,
void * ctx)
-

Set the callback functions used to handle errors for a validation context

+

DEPRECATED: Use xmlSchemaSetParserStructuredErrors. Set the callback functions used to handle errors for a validation context

@@ -657,7 +657,7 @@ The content of this structure is not made public by the API. xmlSchemaSetValidErrors ()
void	xmlSchemaSetValidErrors		(xmlSchemaValidCtxtPtr ctxt, 
xmlSchemaValidityErrorFunc err,
xmlSchemaValidityWarningFunc warn,
void * ctx)
-

Set the error and warning callback information

+

DEPRECATED: Use xmlSchemaSetValidStructuredErrors. Set the error and warning callback information

diff --git a/doc/devhelp/libxml2-xmlstring.html b/doc/devhelp/libxml2-xmlstring.html index c0ef99b5..1476ed23 100644 --- a/doc/devhelp/libxml2-xmlstring.html +++ b/doc/devhelp/libxml2-xmlstring.html @@ -841,7 +841,7 @@ int xmlUTF8Strsize (const Returns: - +
a pointer to a newly created string or NULL if any problema pointer to a newly created string or NULL if the start index is out of bounds or a memory allocation failed. If len is too large, the result is truncated.
diff --git a/doc/devhelp/libxml2-xmlversion.html b/doc/devhelp/libxml2-xmlversion.html index b7fc9c4b..73a0208a 100644 --- a/doc/devhelp/libxml2-xmlversion.html +++ b/doc/devhelp/libxml2-xmlversion.html @@ -22,14 +22,11 @@

Author(s): Daniel Veillard

Description

@@ -74,14 +68,6 @@ void xmlCheckVersion (int version);

-Macro DEBUG_MEMORY_LOCATION

-
#define DEBUG_MEMORY_LOCATION;
-
-

Whether the memory debugging is configured in

-
-
-
-

Macro LIBXML_AUTOMATA_ENABLED

#define LIBXML_AUTOMATA_ENABLED;
 
@@ -114,14 +100,6 @@ void xmlCheckVersion (int version);

-Macro LIBXML_DEBUG_RUNTIME

-
#define LIBXML_DEBUG_RUNTIME;
-
-

Removed

-
-
-
-

Macro LIBXML_DOTTED_VERSION

#define LIBXML_DOTTED_VERSION;
 
@@ -130,14 +108,6 @@ void xmlCheckVersion (int version);

-Macro LIBXML_EXPR_ENABLED

-
#define LIBXML_EXPR_ENABLED;
-
-

Whether the formal expressions interfaces are compiled in This code is unused and disabled unconditionally for now.

-
-
-
-

Macro LIBXML_FTP_ENABLED

#define LIBXML_FTP_ENABLED;
 
@@ -400,37 +370,6 @@ void xmlCheckVersion (int version);

Whether the Zlib support is compiled in


-
-

-Macro WITHOUT_TRIO

-
#define WITHOUT_TRIO;
-
-

defined if the trio support should not be configured in

-
-
-
-

-Macro WITH_TRIO

-
#define WITH_TRIO;
-
-

defined if the trio support need to be configured in

-
-
-
-

-xmlCheckVersion ()

-
void	xmlCheckVersion			(int version)
-
-

check the compiled lib version against the include one. This can warn or immediately kill the application

-
-- - - - -
version:the include version number
-
-
diff --git a/doc/devhelp/libxml2-xmlwriter.html b/doc/devhelp/libxml2-xmlwriter.html index a274d09f..833c99a7 100644 --- a/doc/devhelp/libxml2-xmlwriter.html +++ b/doc/devhelp/libxml2-xmlwriter.html @@ -33,6 +33,7 @@ void xmlFreeTextWriter (xmlTextWriterPtr xmlNewTextWriterMemory (xmlBufferPtr buf,
int compression); xmlTextWriterPtr xmlNewTextWriterPushParser (xmlParserCtxtPtr ctxt,
int compression); xmlTextWriterPtr xmlNewTextWriterTree (xmlDocPtr doc,
xmlNodePtr node,
int compression); +int xmlTextWriterClose (xmlTextWriterPtr writer); int xmlTextWriterEndAttribute (xmlTextWriterPtr writer); int xmlTextWriterEndCDATA (xmlTextWriterPtr writer); int xmlTextWriterEndComment (xmlTextWriterPtr writer); @@ -317,6 +318,28 @@ The content of this structure is not made public by the API.

+xmlTextWriterClose ()

+
int	xmlTextWriterClose		(xmlTextWriterPtr writer)
+
+

Flushes and closes the output buffer. Available since 2.13.0.

+
++ + + + + + + + + + +
writer:the xmlTextWriterPtr +
Returns:an xmlParserErrors code.
+
+
+
+

xmlTextWriterEndAttribute ()

int	xmlTextWriterEndAttribute	(xmlTextWriterPtr writer)
diff --git a/doc/devhelp/libxml2-xpath.html b/doc/devhelp/libxml2-xpath.html index 59f96535..fcc42734 100644 --- a/doc/devhelp/libxml2-xpath.html +++ b/doc/devhelp/libxml2-xpath.html @@ -92,6 +92,7 @@ int xmlXPathIsNaN (double val); xmlXPathObjectPtr xmlXPathObjectCopy (xmlXPathObjectPtr val); long xmlXPathOrderDocElems (xmlDocPtr doc); int xmlXPathSetContextNode (xmlNodePtr node,
xmlXPathContextPtr ctx); +void xmlXPathSetErrorHandler (xmlXPathContextPtr ctxt,
xmlStructuredErrorFunc handler,
void * data); typedef xmlXPathObjectPtr xmlXPathVariableLookupFunc (void * ctxt,
const xmlChar * name,
const xmlChar * ns_uri);
@@ -1018,7 +1019,7 @@ The content of this structure is not made public by the API. xmlXPathContextSetCache ()
int	xmlXPathContextSetCache		(xmlXPathContextPtr ctxt, 
int active,
int value,
int options)
-

Creates/frees an object cache on the XPath context. If activates XPath objects (xmlXPathObject) will be cached internally to be reused. @options: 0: This will set the XPath object caching: @value: This will set the maximum number of XPath objects to be cached per slot There are 5 slots for: node-set, string, number, boolean, and misc objects. Use <0 for the default number (100). Other values for @options have currently no effect.

+

Creates/frees an object cache on the XPath context. If activates XPath objects (xmlXPathObject) will be cached internally to be reused. @options: 0: This will set the XPath object caching: @value: This will set the maximum number of XPath objects to be cached per slot There are two slots for node-set and misc objects. Use <0 for the default number (100). Other values for @options have currently no effect.

@@ -1472,6 +1473,31 @@ The content of this structure is not made public by the API.

+
+

+xmlXPathSetErrorHandler ()

+
void	xmlXPathSetErrorHandler		(xmlXPathContextPtr ctxt, 
xmlStructuredErrorFunc handler,
void * data)
+
+

Register a callback function that will be called on errors and warnings. If handler is NULL, the error handler will be deactivated. Available since 2.13.0.

+
++ + + + + + + + + + + + + + +
ctxt:the XPath context
handler:error handler
data:user data which will be passed to the handler
+
+
diff --git a/doc/devhelp/libxml2-xpathInternals.html b/doc/devhelp/libxml2-xpathInternals.html index 3a1f3ba7..079f9b5c 100644 --- a/doc/devhelp/libxml2-xpathInternals.html +++ b/doc/devhelp/libxml2-xpathInternals.html @@ -67,7 +67,7 @@ void xmlXPathDebugDumpObject (FILE * out xmlNodeSetPtr xmlXPathDistinctSorted (xmlNodeSetPtr nodes); void xmlXPathDivValues (xmlXPathParserContextPtr ctxt); int xmlXPathEqualValues (xmlXPathParserContextPtr ctxt); -void xmlXPathErr (xmlXPathParserContextPtr ctxt,
int error); +void xmlXPathErr (xmlXPathParserContextPtr ctxt,
int code); void xmlXPathEvalExpr (xmlXPathParserContextPtr ctxt); int xmlXPathEvaluatePredicateResult (xmlXPathParserContextPtr ctxt,
xmlXPathObjectPtr res); void xmlXPathFalseFunction (xmlXPathParserContextPtr ctxt,
int nargs); @@ -961,7 +961,7 @@ void xmlXPatherror (

xmlXPathErr ()

-
void	xmlXPathErr			(xmlXPathParserContextPtr ctxt, 
int error)
+
void	xmlXPathErr			(xmlXPathParserContextPtr ctxt, 
int code)

Handle an XPath error

@@ -972,7 +972,7 @@ void xmlXPatherror (error: + @@ -2867,7 +2867,7 @@ void xmlXPatherror (xmlXPathSubstringAfterFunction ()
void	xmlXPathSubstringAfterFunction	(xmlXPathParserContextPtr ctxt, 
int nargs)
-

Implement the substring-after() XPath function string substring-after(string, string) The substring-after function returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string, or the empty stringi if the first argument string does not contain the second argument string. For example, substring-after("1999/04/01","/") returns 04/01, and substring-after("1999/04/01","19") returns 99/04/01.

+

Implement the substring-after() XPath function string substring-after(string, string) The substring-after function returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string, or the empty string if the first argument string does not contain the second argument string. For example, substring-after("1999/04/01","/") returns 04/01, and substring-after("1999/04/01","19") returns 99/04/01.

code: the error code
diff --git a/doc/devhelp/libxml2.devhelp2 b/doc/devhelp/libxml2.devhelp2 index b32ce27b..4076f965 100644 --- a/doc/devhelp/libxml2.devhelp2 +++ b/doc/devhelp/libxml2.devhelp2 @@ -61,7 +61,6 @@ - @@ -93,9 +92,7 @@ - - @@ -130,8 +127,6 @@ - - @@ -142,14 +137,10 @@ - - - - @@ -242,7 +233,6 @@ - @@ -508,6 +498,7 @@ + @@ -556,6 +547,7 @@ + @@ -594,12 +586,15 @@ + + + @@ -731,6 +726,7 @@ + @@ -788,6 +784,7 @@ + @@ -1894,6 +1891,10 @@ + + + + @@ -1905,6 +1906,7 @@ + @@ -1942,6 +1944,7 @@ + @@ -2040,7 +2043,9 @@ + + @@ -2095,7 +2100,9 @@ + + @@ -2134,11 +2141,10 @@ - - + @@ -2177,7 +2183,9 @@ + + @@ -2186,7 +2194,9 @@ + + @@ -2270,6 +2280,7 @@ + @@ -2329,6 +2340,7 @@ + @@ -2340,10 +2352,14 @@ + + + + @@ -2376,7 +2392,7 @@ - + @@ -2436,6 +2452,7 @@ + @@ -2561,7 +2578,9 @@ + + @@ -2576,6 +2595,7 @@ + @@ -2650,6 +2670,7 @@ + @@ -2679,6 +2700,7 @@ + @@ -2813,6 +2835,7 @@ + @@ -2966,6 +2989,7 @@ + @@ -2992,6 +3016,7 @@ + @@ -3042,6 +3067,7 @@ + @@ -3346,6 +3372,7 @@ + @@ -3354,6 +3381,7 @@ + @@ -3489,6 +3517,7 @@ + diff --git a/doc/libxml2-api.xml b/doc/libxml2-api.xml index 8b2e9379..6ed39fa8 100644 --- a/doc/libxml2-api.xml +++ b/doc/libxml2-api.xml @@ -40,12 +40,14 @@ + + @@ -401,7 +403,6 @@ - @@ -421,7 +422,9 @@ + + @@ -441,6 +444,7 @@ + @@ -463,9 +467,7 @@ Deprecated, don't use - - @@ -475,11 +477,15 @@ + + + + @@ -601,11 +607,8 @@ the core parser module Interfaces, constants and types related to the XML parser Daniel Veillard - - - @@ -642,6 +645,7 @@ + @@ -708,6 +712,10 @@ + + + + @@ -740,12 +748,14 @@ + + @@ -753,7 +763,9 @@ + + @@ -762,6 +774,7 @@ + @@ -873,6 +886,7 @@ + @@ -946,6 +960,7 @@ + @@ -965,6 +980,7 @@ + @@ -1563,6 +1579,7 @@ + @@ -1603,7 +1620,9 @@ + + @@ -1664,7 +1683,9 @@ + + @@ -1672,6 +1693,7 @@ + @@ -1701,6 +1723,7 @@ + @@ -1788,6 +1811,7 @@ + @@ -1796,6 +1820,7 @@ + @@ -2028,6 +2053,7 @@ + @@ -2076,6 +2102,7 @@ + @@ -2114,12 +2141,15 @@ + + + @@ -2238,6 +2268,7 @@ + @@ -2714,11 +2745,11 @@ - + @@ -2738,8 +2769,6 @@ macros for marking symbols as exportable/importable. macros for marking symbols as exportable/importable. - - interface for the memory allocator @@ -2871,6 +2900,7 @@ + @@ -2992,6 +3022,7 @@ + @@ -3332,14 +3363,11 @@ compile-time version information compile-time version information for the XML library Daniel Veillard - - - @@ -3373,9 +3401,6 @@ - - - text writing API for XML @@ -3392,6 +3417,7 @@ + @@ -3588,6 +3614,7 @@ + @@ -3805,9 +3832,6 @@ Macro to check that the value on top of the XPath stack is of a given type. Return(0) in case of failure - - Whether the memory debugging is configured in - Macro. A comment in a HTML document is really implemented the same way as a comment in an XML document. @@ -3920,15 +3944,9 @@ Whether Debugging module is configured in - - Removed - the version string like "1.2.3" - - Whether the formal expressions interfaces are compiled in This code is unused and disabled unconditionally for now. - Whether the FTP support is configured in @@ -4031,12 +4049,6 @@ macro used to provide portability of code to windows sockets - - defined if the trio support should not be configured in - - - defined if the trio support need to be configured in - Macro defining "fallback" @@ -4067,12 +4079,6 @@ Macro defining "xpointer" - - Macro which declares an exportable function - - - Macro which declares an exportable variable - Macro to do a casting from an object pointer to a function pointer without encountering a warning from gcc #define XML_CAST_FPTR(fptr) (*(void **)(&fptr)) This macro violated ISO C aliasing rules (gcc4 on s390 broke) so it is disabled now @@ -4083,15 +4089,9 @@ The specific XML Catalog Processing Instruction name. - - Bit in the loadsubset context field to tell to do complete the elements attributes lists with the ones defaulted from the DTDs. Use it to initialize xmlLoadExtDtdDefaultValue. - The default version of XML used: 1.0 - - Bit in the loadsubset context field to tell to do ID/REFs lookups. Use it to initialize xmlLoadExtDtdDefaultValue. - Macro to extract the content pointer of a node. @@ -4368,9 +4368,6 @@ If the wildcard is complete. - - Bit in the loadsubset context field to tell to not do ID/REFs registration. Used to initialize xmlLoadExtDtdDefaultValue in some special cases. - Both general and parameter entities need to be substituted. @@ -4715,7 +4712,7 @@ - + @@ -4790,8 +4787,9 @@ and not by parsing an instance'/> - + + @@ -4840,6 +4838,7 @@ and not by parsing an instance'/> + @@ -4878,12 +4877,15 @@ and not by parsing an instance'/> + + + @@ -5015,13 +5017,14 @@ and not by parsing an instance'/> + - + @@ -5055,7 +5058,7 @@ and not by parsing an instance'/> - + @@ -5074,6 +5077,7 @@ crash if you try to modify the tree)'/> + @@ -5723,7 +5727,7 @@ crash if you try to modify the tree)'/> - + @@ -5905,6 +5909,7 @@ if necessary or NULL'/> + @@ -6111,7 +6116,7 @@ set at the end of parsing'/> - + @@ -6258,13 +6263,13 @@ set at the end of parsing'/> - + - - - + + + @@ -6282,7 +6287,7 @@ set at the end of parsing'/> - + @@ -6292,7 +6297,7 @@ set at the end of parsing'/> - + @@ -6322,7 +6327,7 @@ set at the end of parsing'/> - + @@ -6336,17 +6341,19 @@ set at the end of parsing'/> + + - + - + @@ -6355,7 +6362,7 @@ set at the end of parsing'/> - + @@ -6880,6 +6887,18 @@ Could we use @subtypes for this?'/> + + DEPRECATED: This handler is unused and will be removed from future versions. Default old SAX v1 handler for HTML, builds the DOM tree + + + Global setting, DEPRECATED. + + + DEPRECATED: This handler is unused and will be removed from future versions. Default SAX version1 handler for XML, builds the DOM tree + + + DEPRECATED: Don't use The default SAX Locator { getPublicId, getSystemId, getLineNumber, getColumnNumber} + @mem: an already allocated block of memory The variable holding the libxml free() implementation @@ -6899,7 +6918,10 @@ Could we use @subtypes for this?'/> @str: a zero terminated string The variable holding the libxml strdup() implementation Returns the copy of the string or NULL in case of error - + + DEPRECATED: Don't use Global setting, asking the parser to print out debugging information. while handling entities. Disabled by default + + arbitrary depth limit for the XML documents that we allow to process. This is not a limitation of the parser but a safety boundary feature. It can be disabled with the XML_PARSE_HUGE parser option. @@ -7250,61 +7272,68 @@ Could we use @subtypes for this?'/> defined(LIBXML_HTML_ENABLED) - Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. - + DEPRECATED: Use htmlNewParserCtxt and htmlCtxtReadFile. Create a parser context to read from a file. A non-NULL encoding overrides encoding declarations in the document. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. + - + defined(LIBXML_HTML_ENABLED) - Create a parser context for an HTML in-memory document. + DEPRECATED: Use htmlNewParserCtxt and htmlCtxtReadMemory. Create a parser context for an HTML in-memory document. The input buffer must not contain any terminating null bytes. defined(LIBXML_HTML_ENABLED) && defined(LIBXML_PUSH_ENABLED) - Create a parser context for using the HTML parser in push mode The value of @filename is used for fetching external entities and error/warning reports. - - - - + Create a parser context for using the HTML parser in push mode. + + + + - - + + + + + defined(LIBXML_HTML_ENABLED) + Parse an HTML document and return the resulting document tree. Available since 2.13.0. + + + defined(LIBXML_HTML_ENABLED) - parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context + Parse an HTML in-memory document and build a tree. See htmlCtxtUseOptions for details. - - - + + + defined(LIBXML_HTML_ENABLED) - parse an XML from a file descriptor and build a tree. This reuses the existing @ctxt parser context + Parse an HTML from a file descriptor and build a tree. See htmlCtxtUseOptions for details. NOTE that the file descriptor will not be closed when the context is freed or reset. - - - + + + defined(LIBXML_HTML_ENABLED) - parse an XML file from the filesystem or the network. This reuses the existing @ctxt parser context + Parse an HTML file from the filesystem, the network or a user-defined resource loader. See xmlNewInputURL and htmlCtxtUseOptions for details. - - + + defined(LIBXML_HTML_ENABLED) - parse an HTML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context + Parse an HTML document from I/O functions and source and build a tree. See xmlNewInputIO and htmlCtxtUseOptions for details. @@ -7316,14 +7345,14 @@ Could we use @subtypes for this?'/> defined(LIBXML_HTML_ENABLED) - parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context + Parse an HTML in-memory document and build a tree. The input buffer must not contain any terminating null bytes. See htmlCtxtUseOptions for details. - - - + + + defined(LIBXML_HTML_ENABLED) @@ -7434,7 +7463,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_HTML_ENABLED) - Set and return the previous value for handling HTML omitted tags. + DEPRECATED: Use HTML_PARSE_NOIMPLIED Set and return the previous value for handling HTML omitted tags. @@ -7478,12 +7507,12 @@ Could we use @subtypes for this?'/> defined(LIBXML_HTML_ENABLED) - Allocate and initialize a new parser context. + Allocate and initialize a new HTML parser context. This can be used to parse HTML documents into DOM trees with functions like xmlCtxtReadFile or xmlCtxtReadMemory. See htmlCtxtUseOptions for parser options. See xmlCtxtSetErrorHandler for advanced error handling. See xmlNewInputURL, xmlNewInputMemory, xmlNewInputIO and similar functions for advanced input control. See htmlNewSAXParserCtxt for custom SAX parsers. defined(LIBXML_HTML_ENABLED) - Allocate and initialize a new SAX parser context. If userData is NULL, the parser context will be passed as user data. + Allocate and initialize a new HTML SAX parser context. If userData is NULL, the parser context will be passed as user data. Available since 2.11.0. If you want support older versions, it's best to invoke htmlNewParserCtxt and set ctxt->sax with struct assignment. Also see htmlNewParserCtxt. @@ -7548,24 +7577,24 @@ Could we use @subtypes for this?'/> defined(LIBXML_HTML_ENABLED) && defined(LIBXML_PUSH_ENABLED) - Parse a Chunk of memory - + Parse a chunk of memory in push parser mode. Assumes that the parser context was initialized with htmlCreatePushParserCtxt. The last chunk, which will often be empty, must be marked with the @terminate flag. With the default SAX callbacks, the resulting document will be available in ctxt->myDoc. This pointer will not be freed by the library. If the document isn't well-formed, ctxt->myDoc is set to NULL. + - - + + defined(LIBXML_HTML_ENABLED) - parse an HTML in-memory document and build a tree. + DEPRECATED: Use htmlReadDoc. Parse an HTML in-memory document and build a tree. This function uses deprecated global parser options. - + defined(LIBXML_HTML_ENABLED) - parse an HTML document (and build a tree if using the standard SAX interface). - + Parse an HTML document and invoke the SAX handlers. This is useful if you're only interested in custom SAX callbacks. If you want a document tree, use htmlCtxtParseDocument. + @@ -7583,55 +7612,55 @@ Could we use @subtypes for this?'/> defined(LIBXML_HTML_ENABLED) - parse an HTML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. + Parse an HTML file and build a tree. See xmlNewInputURL for details. - + defined(LIBXML_HTML_ENABLED) - parse an XML in-memory document and build a tree. - - - - - + Convenience function to parse an HTML document from a zero-terminated string. See htmlCtxtReadDoc for details. + + + + + defined(LIBXML_HTML_ENABLED) - parse an HTML from a file descriptor and build a tree. NOTE that the file descriptor will not be closed when the reader is closed or reset. + Convenience function to parse an HTML document from a file descriptor. NOTE that the file descriptor will not be closed when the context is freed or reset. See htmlCtxtReadFd for details. - + - + defined(LIBXML_HTML_ENABLED) - parse an XML file from the filesystem or the network. - + Convenience function to parse an HTML file from the filesystem, the network or a global user-defined resource loader. See htmlCtxtReadFile for details. + - - + + defined(LIBXML_HTML_ENABLED) - parse an HTML document from I/O functions and source and build a tree. + Convenience function to parse an HTML document from I/O functions and context. See htmlCtxtReadIO for details. - + - - + + defined(LIBXML_HTML_ENABLED) - parse an XML in-memory document and build a tree. + Convenience function to parse an HTML document from memory. The input buffer must not contain any terminating null bytes. See htmlCtxtReadMemory for details. - + @@ -7649,7 +7678,7 @@ Could we use @subtypes for this?'/> DEPRECATED: Use htmlNewSAXParserCtxt and htmlCtxtReadFile. parse an HTML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines. - + @@ -8101,13 +8130,13 @@ Could we use @subtypes for this?'/> - Add a new node to @parent, at the end of the child (or property) list merging adjacent TEXT nodes (in which case @cur is freed) If the new node is ATTRIBUTE, it is added into properties instead of children. If there is an attribute with equal name, it is first destroyed. All tree manipulation functions can safely move nodes within a document. But when moving nodes from one document to another, references to namespaces in element or attribute nodes are NOT fixed. In this case, you MUST call xmlReconciliateNs after the move operation to avoid memory errors. - + Unlink @cur and append it to the children of @parent. If @cur is a text node, it may be merged with an adjacent text node and freed. In this case the text node containing the merged content is returned. If @cur is an attribute node, it is appended to the attributes of @parent. If the attribute list contains an attribute with a name matching @elem, the old attribute is destroyed. General notes: Move operations like xmlAddChild can cause element or attribute nodes to reference namespaces that aren't declared in one of their ancestors. This can lead to use-after-free errors if the elements containing the declarations are freed later, especially when moving nodes from one document to another. You should consider calling xmlReconciliateNs after a move operation to normalize namespaces. Another option is to call xmlDOMWrapAdoptNode with the target parent before moving a node. For the most part, move operations don't check whether the resulting tree structure is valid. Users must make sure that parent nodes only receive children of valid types. Inserted child nodes must never be an ancestor of the parent node to avoid cycles in the tree structure. In general, only document, document fragments, elements and attributes should be used as parent nodes. When moving a node between documents and a memory allocation fails, the node's content will be corrupted and it will be unlinked. In this case, the node must be freed manually. Moving DTDs between documents isn't supported. + - Add a list of node at the end of the child list of the parent merging adjacent TEXT nodes (@cur may be freed) See the note regarding namespaces in xmlAddChild. + Append a node list to another node. See xmlAddChild. @@ -8147,6 +8176,18 @@ Could we use @subtypes for this?'/> + + Register a new entity for this document. Available since 2.13.0. + + + + + + + + + + Register a new id declaration @@ -8155,11 +8196,17 @@ Could we use @subtypes for this?'/> + + Register a new id declaration Available since 2.13.0. + + + + - Add a new node @elem as the next sibling of @cur If the new node was already inserted in a document it is first unlinked from its existing context. As a result of text merging @elem may be freed. If the new node is ATTRIBUTE, it is added into properties instead of children. If there is an attribute with equal name, it is first destroyed. See the note regarding namespaces in xmlAddChild. - - - + Unlinks @cur and inserts it as next sibling after @prev. Unlike xmlAddChild this function does not merge text nodes. If @cur is an attribute node, it is inserted after attribute @prev. If the attribute list contains an attribute with a name matching @cur, the old attribute is destroyed. See the notes in xmlAddChild. + + + Register a new notation declaration @@ -8172,10 +8219,10 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) - Add a new node @elem as the previous sibling of @cur merging adjacent TEXT nodes (@elem may be freed) If the new node was already inserted in a document it is first unlinked from its existing context. If the new node is ATTRIBUTE, it is added into properties instead of children. If there is an attribute with equal name, it is first destroyed. See the note regarding namespaces in xmlAddChild. - - - + Unlinks @cur and inserts it as previous sibling before @next. Unlike xmlAddChild this function does not merge text nodes. If @cur is an attribute node, it is inserted before attribute @next. If the attribute list contains an attribute with a name matching @cur, the old attribute is destroyed. See the notes in xmlAddChild. + + + DEPRECATED, do not use. This function will be removed from the public API. Register a new ref declaration @@ -8186,10 +8233,10 @@ Could we use @subtypes for this?'/> - Add a new element @elem to the list of siblings of @cur merging adjacent TEXT nodes (@elem may be freed) If the new element was already inserted in a document it is first unlinked from its existing context. See the note regarding namespaces in xmlAddChild. - - - + Unlinks @cur and inserts it as last sibling of @node. If @cur is a text node, it may be merged with an adjacent text node and freed. In this case the text node containing the merged content is returned. If @cur is an attribute node, it is appended to the attribute list containing @node. If the attribute list contains an attribute with a name matching @cur, the old attribute is destroyed. See the notes in xmlAddChild. + + + defined(LIBXML_OUTPUT_ENABLED) @@ -8198,9 +8245,9 @@ Could we use @subtypes for this?'/> - Create a buffered parser input for progressive parsing + Create a buffered parser input for progressive parsing. The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on. - + defined(LIBXML_OUTPUT_ENABLED) @@ -8533,17 +8580,31 @@ Could we use @subtypes for this?'/> - Expresses the URI of the reference in terms relative to the base. Some examples of this operation include: base = "http://site1.com/docs/book1.html" URI input URI returned docs/pic1.gif pic1.gif docs/img/pic1.gif img/pic1.gif img/pic1.gif ../img/pic1.gif http://site1.com/docs/pic1.gif pic1.gif http://site2.com/docs/pic1.gif http://site2.com/docs/pic1.gif base = "docs/book1.html" URI input URI returned docs/pic1.gif pic1.gif docs/img/pic1.gif img/pic1.gif img/pic1.gif ../img/pic1.gif http://site1.com/docs/pic1.gif http://site1.com/docs/pic1.gif Note: if the URI reference is really weird or complicated, it may be worthwhile to first convert it into a "nice" one by calling xmlBuildURI (using 'base') before calling this routine, since this routine (for reasonable efficiency) assumes URI has already been through some validation. + See xmlBuildRelativeURISafe. + + Expresses the URI of the reference in terms relative to the base. Some examples of this operation include: base = "http://site1.com/docs/book1.html" URI input URI returned docs/pic1.gif pic1.gif docs/img/pic1.gif img/pic1.gif img/pic1.gif ../img/pic1.gif http://site1.com/docs/pic1.gif pic1.gif http://site2.com/docs/pic1.gif http://site2.com/docs/pic1.gif base = "docs/book1.html" URI input URI returned docs/pic1.gif pic1.gif docs/img/pic1.gif img/pic1.gif img/pic1.gif ../img/pic1.gif http://site1.com/docs/pic1.gif http://site1.com/docs/pic1.gif Note: if the URI reference is really weird or complicated, it may be worthwhile to first convert it into a "nice" one by calling xmlBuildURI (using 'base') before calling this routine, since this routine (for reasonable efficiency) assumes URI has already been through some validation. Available since 2.13.0. + + + + + Computes he final URI of the reference done by checking that the given URI is valid, and building the final URI using the base URI. This is processed according to section 5.2 of the RFC 2396 5.2. Resolving Relative References to Absolute Form + + Computes he final URI of the reference done by checking that the given URI is valid, and building the final URI using the base URI. This is processed according to section 5.2 of the RFC 2396 5.2. Resolving Relative References to Absolute Form Available since 2.13.0. + + + + + This function provides the current index of the parser relative to the start of the current entity. This function is computed in bytes from the beginning starting at zero and finishing at the size in byte of the file if parsing a file. The function is of constant cost if the input is UTF-8 but can be costly if run on non-UTF-8 input. @@ -8604,8 +8665,8 @@ Could we use @subtypes for this?'/> - Constructs a canonic path from the specified path. - + Prepares a path. If the path contains the substring "://", it is considered a Legacy Extended IRI. Characters which aren't allowed in URIs are escaped. Otherwise, the path is considered a filesystem path which is copied without modification. The caller is responsible for freeing the memory occupied by the returned string. If there is insufficient memory available, or the argument is NULL, the function returns NULL. + @@ -8792,12 +8853,12 @@ Could we use @subtypes for this?'/> - function checks to see if @path is a valid source (file, socket...) for XML. if stat is not available on the target machine, + DEPRECATED: Internal function, don't use. if stat is not available on the target machine, - - Check an input in case it was created from an HTTP stream, in that case it will handle encoding and update of the base URL in case of redirection. It also checks for HTTP errors in which case the input is cleanly freed up and an appropriate error is raised in context + + DEPRECATED: Internal function, don't use. Check an input in case it was created from an HTTP stream, in that case it will handle encoding and update of the base URL in case of redirection. It also checks for HTTP errors in which case the input is cleanly freed up and an appropriate error is raised in context @@ -8816,15 +8877,10 @@ Could we use @subtypes for this?'/> - - check the compiled lib version against the include one. This can warn or immediately kill the application - - - defined(LIBXML_TREE_ENABLED) - Finds the current number of child nodes of that element which are element nodes. Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back reference from entities content to entities references. - + Count the number of child nodes which are elements. Note that entity references are not expanded. + @@ -8835,7 +8891,7 @@ Could we use @subtypes for this?'/> Unregisters all aliases - + DEPRECATED: This function is a no-op. Call xmlCleanupParser to free global state but see the warnings there. xmlCleanupParser should be only called once at program exit. In most cases, you don't have call cleanup functions at all. @@ -8902,8 +8958,8 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) - Do a copy of the document info. If recursive, the content tree will be copied too as well as DTD, namespaces and entities. - + Copy a document. If recursive, the content tree will be copied too as well as DTD, namespaces and entities. + @@ -8915,9 +8971,9 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) - Do a copy of the dtd. - - + Copy a DTD. + + Build a copy of an element content description. Deprecated, use xmlCopyDocElementContent instead @@ -8949,24 +9005,24 @@ Could we use @subtypes for this?'/> - Do a copy of the namespace. - + Copy a namespace. + - Do a copy of an namespace list. - + Copy a namespace list. + - Do a copy of the node. - + Copy a node. Use of this function is DISCOURAGED in favor of xmlDocCopyNode. + - Do a recursive copy of the node list. Use xmlDocCopyNodeList() if possible to ensure string interning. - + Copy a node list and all children. Use of this function is DISCOURAGED in favor of xmlDocCopyNodeList. + @@ -8976,14 +9032,14 @@ Could we use @subtypes for this?'/> - Do a copy of the attribute. - + Create a copy of the attribute. This function sets the parent pointer of the copy to @target but doesn't set the attribute on the target element. Users should consider to set the attribute by calling xmlAddChild afterwards or reset the parent pointer to NULL. + - Do a copy of an attribute list. - + Create a copy of an attribute list. This function sets the parent pointers of the copied attributes to @target but doesn't set the attributes on the target element. + @@ -8997,7 +9053,7 @@ Could we use @subtypes for this?'/> - Create a parser context for an external entity Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. + DEPRECATED: Use xmlNewInputURL. Create a parser context for an external entity Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. @@ -9009,87 +9065,98 @@ Could we use @subtypes for this?'/> - Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. + DEPRECATED: Use xmlNewParserCtxt and xmlCtxtReadFile. Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. Create a parser context for using the XML parser with an existing I/O stream - - + + - + - + - Create the internal subset of a document - - - - - + Create a DTD node. If a document is provided and it already has an internal subset, the existing DTD object is returned without creating a new object. If the document has no internal subset, it will be set to the created DTD. + + + + + - Create a parser context for an XML in-memory document. + Create a parser context for an XML in-memory document. The input buffer must not contain a terminating null byte. defined(LIBXML_PUSH_ENABLED) - Create a parser context for using the XML parser in push mode. If @buffer and @size are non-NULL, the data is used to detect the encoding. The remaining characters will be parsed so they don't need to be fed in again through xmlParseChunk. To allow content encoding detection, @size should be >= 4 The value of @filename is used for fetching external entities and error/warning reports. - - - - - - + Create a parser context for using the XML parser in push mode. See xmlParseChunk. Passing an initial chunk is useless and deprecated. @filename is used as base URI to fetch external entities and for error reports. + + + + + + Simply creates an empty xmlURI - Create a parser context for a file or URL content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time and for file accesses + DEPRECATED: Use xmlNewParserCtxt and xmlCtxtReadFile. Create a parser context for a file or URL content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time and for file accesses + + Handle an out-of-memory error. Available since 2.13.0. + + + Get the last parsing error registered. + + Parse an XML document and return the resulting document tree. Takes ownership of the input object. Available since 2.13.0. + + + + - parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context + Parse an XML in-memory document and build a tree. @URL is used as base to resolve external entities and for error reporting. See xmlCtxtUseOptions for details. - - + + - parse an XML from a file descriptor and build a tree. This reuses the existing @ctxt parser context NOTE that the file descriptor will not be closed when the reader is closed or reset. + Parse an XML document from a file descriptor and build a tree. NOTE that the file descriptor will not be closed when the context is freed or reset. @URL is used as base to resolve external entities and for error reporting. See xmlCtxtUseOptions for details. - - + + - parse an XML file from the filesystem or the network. This reuses the existing @ctxt parser context + Parse an XML file from the filesystem, the network or a user-defined resource loader. See xmlNewInputURL and xmlCtxtUseOptions for details. - + - parse an XML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context + parse an XML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context @URL is used as base to resolve external entities and for error reporting. See xmlCtxtUseOptions for details. @@ -9100,13 +9167,13 @@ Could we use @subtypes for this?'/> - parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context + Parse an XML in-memory document and build a tree. The input buffer must not contain a terminating null byte. @URL is used as base to resolve external entities and for error reporting. See xmlCtxtUseOptions for details. - - + + @@ -9128,14 +9195,27 @@ Could we use @subtypes for this?'/> + + Register a callback function that will be called on errors and warnings. If handler is NULL, the error handler will be deactivated. This is the recommended way to collect errors from the parser and takes precedence over all other error reporting mechanisms. These are (in order of precedence): - per-context structured handler (xmlCtxtSetErrorHandler) - per-context structured "serror" SAX handler - global structured handler (xmlSetStructuredErrorFunc) - per-context generic "error" and "warning" SAX handlers - global generic handler (xmlSetGenericErrorFunc) - print to stderr Available since 2.13.0. + + + + + To protect against exponential entity expansion ("billion laughs"), the size of serialized output is (roughly) limited to the input size multiplied by this factor. The default value is 5. When working with documents making heavy use of entity expansion, it can be necessary to increase the value. For security reasons, this should only be considered when processing trusted input. + + Applies the options to the parser context. Unset options are cleared. Available since 2.13.0. With older versions, you can use xmlCtxtUseOptions. XML_PARSE_RECOVER Enable "recovery" mode which allows non-wellformed documents. How this mode behaves exactly is unspecified and may change without further notice. Use of this feature is DISCOURAGED. XML_PARSE_NOENT Despite the confusing name, this option enables substitution of entities. The resulting tree won't contain any entity reference nodes. This option also enables loading of external entities (both general and parameter entities) which is dangerous. If you process untrusted data, it's recommended to set the XML_PARSE_NO_XXE option to disable loading of external entities. XML_PARSE_DTDLOAD Enables loading of an external DTD and the loading and substitution of external parameter entities. Has no effect if XML_PARSE_NO_XXE is set. XML_PARSE_DTDATTR Adds default attributes from the DTD to the result document. Implies XML_PARSE_DTDLOAD, but loading of external content can be disabled with XML_PARSE_NO_XXE. XML_PARSE_DTDVALID This option enables DTD validation which requires to load external DTDs and external entities (both general and parameter entities) unless XML_PARSE_NO_XXE was set. XML_PARSE_NO_XXE Disables loading of external DTDs or entities. XML_PARSE_NOERROR Disable error and warning reports to the error handlers. Errors are still accessible with xmlCtxtGetLastError. XML_PARSE_NOWARNING Disable warning reports. XML_PARSE_PEDANTIC Enable some pedantic warnings. XML_PARSE_NOBLANKS Remove some text nodes containing only whitespace from the result document. Which nodes are removed depends on DTD element declarations or a conservative heuristic. The reindenting feature of the serialization code relies on this option to be set when parsing. Use of this option is DISCOURAGED. XML_PARSE_SAX1 Always invoke the deprecated SAX1 startElement and endElement handlers. This option is DEPRECATED. XML_PARSE_NONET Disable network access with the builtin HTTP and FTP clients. XML_PARSE_NODICT Create a document without interned strings, making all strings separate memory allocations. XML_PARSE_NSCLEAN Remove redundant namespace declarations from the result document. XML_PARSE_NOCDATA Output normal text nodes instead of CDATA nodes. XML_PARSE_COMPACT Store small strings directly in the node struct to save memory. XML_PARSE_OLD10 Use old Name productions from before XML 1.0 Fifth Edition. This options is DEPRECATED. XML_PARSE_HUGE Relax some internal limits. Maximum size of text nodes, tags, comments, processing instructions, CDATA sections, entity values normal: 10M huge: 1B Maximum size of names, system literals, pubid literals normal: 50K huge: 10M Maximum nesting depth of elements normal: 256 huge: 2048 Maximum nesting depth of entities normal: 20 huge: 40 XML_PARSE_OLDSAX Enable an unspecified legacy mode for SAX parsers. This option is DEPRECATED. XML_PARSE_IGNORE_ENC Ignore the encoding in the XML declaration. This option is mostly unneeded these days. The only effect is to enforce UTF-8 decoding of ASCII-like data. XML_PARSE_BIG_LINES Enable reporting of line numbers larger than 65535. + + + + - Applies the options to the parser context + DEPRECATED: Use xmlCtxtSetOptions. Applies the options to the parser context. The following options are never cleared and can only be enabled: XML_PARSE_NOERROR XML_PARSE_NOWARNING XML_PARSE_NONET XML_PARSE_NSCLEAN XML_PARSE_NOCDATA XML_PARSE_COMPACT XML_PARSE_OLD10 XML_PARSE_HUGE XML_PARSE_OLDSAX XML_PARSE_IGNORE_ENC XML_PARSE_BIG_LINES @@ -9303,7 +9383,7 @@ Could we use @subtypes for this?'/> - Registers a callback for node destruction + DEPRECATED: don't use Registers a callback for node destruction @@ -9385,15 +9465,15 @@ Could we use @subtypes for this?'/> - Do a copy of the node to a given document. - + Copy a node into another document. + - Do a recursive copy of the node list. - + Copy a node list and all children into a new document. + @@ -9450,40 +9530,40 @@ Could we use @subtypes for this?'/> Get the root element of the document (doc->children is a list containing possibly comments, PIs, etc ...). - + defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED) - Set the root element of the document (doc->children is a list containing possibly comments, PIs, etc ...). - + Set the root element of the document (doc->children is a list containing possibly comments, PIs, etc ...). @root must be an element node. It is unlinked before insertion. + defined(LIBXML_OUTPUT_ENABLED) - This will dump the content of the attribute declaration as an XML DTD definition + DEPRECATED: Use xmlSaveTree. This will dump the content of the attribute declaration as an XML DTD definition defined(LIBXML_OUTPUT_ENABLED) - This will dump the content of the attribute table as an XML DTD definition + DEPRECATED: Don't use. This will dump the content of the attribute table as an XML DTD definition defined(LIBXML_OUTPUT_ENABLED) - This will dump the content of the element declaration as an XML DTD definition + DEPRECATED: Use xmlSaveTree. This will dump the content of the element declaration as an XML DTD definition defined(LIBXML_OUTPUT_ENABLED) - This will dump the content of the element table as an XML DTD definition + DEPRECATED: Don't use. This will dump the content of the element table as an XML DTD definition @@ -9504,14 +9584,14 @@ Could we use @subtypes for this?'/> defined(LIBXML_OUTPUT_ENABLED) - This will dump the content the notation declaration as an XML DTD definition + DEPRECATED: Don't use. This will dump the content the notation declaration as an XML DTD definition defined(LIBXML_OUTPUT_ENABLED) - This will dump the content of the notation table as an XML DTD definition + DEPRECATED: Don't use. This will dump the content of the notation table as an XML DTD definition @@ -9699,38 +9779,45 @@ Could we use @subtypes for this?'/> - Close an I/O channel - + DEPRECATED: Internal function, don't use. + - input from FILE * + DEPRECATED: Internal function, don't use. - Wrapper around xmlFileOpen_real that try it with an unescaped version of @filename, if this fails fallback to @filename - + DEPRECATED: Internal function, don't use. + - Read @len bytes to @buffer from the I/O channel. - + DEPRECATED: Internal function, don't use. + - Search in the registered set the handler able to read/write that encoding or create a new one. - + DEPRECATED: Use xmlOpenCharEncodingHandler which has better error reporting. + defined(LIBXML_TREE_ENABLED) - Finds the first child node of that element which is a Element node Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back reference from entities content to entities references. - + Find the first child node which is an element. Note that entity references are not expanded. + + + Report a formatted error to a printf-like callback. This can result in a verbose multi-line report including additional information from the parser context. Available since 2.13.0. + + + + + Deallocate the memory used by an entities hash table. @@ -9749,7 +9836,7 @@ Could we use @subtypes for this?'/> - Free up all the structures used by a document, tree included. + Free a document including all children and associated DTDs. @@ -9780,9 +9867,9 @@ Could we use @subtypes for this?'/> - + Frees the entity. - + free an enumeration attribute node (recursive). @@ -9810,12 +9897,12 @@ Could we use @subtypes for this?'/> - Free a node, this is a recursive behaviour, all the children are freed too. This doesn't unlink the child from the list, use xmlUnlinkNode() first. + Free a node including all the children. This doesn't unlink the node from the tree. Call xmlUnlinkNode first unless @cur is a root node. - Free a node and all its siblings, this is a recursive behaviour, all the children are freed too. + Free a node list including all children. @@ -9825,12 +9912,12 @@ Could we use @subtypes for this?'/> - Free up the structures associated to a namespace + Free an xmlNs object. - Free up all the structures associated to the chained namespaces. + Free a list of xmlNs objects. @@ -9857,14 +9944,14 @@ Could we use @subtypes for this?'/> - Free one attribute, all the content is freed too + Free an attribute including all children. - Free a property and all its siblings, all the children are freed too. + Free an attribute list including all children. - + xmlRFreeMutex() is used to reclaim resources associated with a reentrant mutex. @@ -9935,8 +10022,8 @@ Could we use @subtypes for this?'/> - Search in the registered set the handler able to read/write that encoding. - + DEPRECATED: Use xmlLookupCharEncodingHandler which has better error reporting. + @@ -9945,7 +10032,7 @@ Could we use @subtypes for this?'/> - get the default compression mode used, ZLIB based. + DEPRECATED: Use xmlGetDocCompressMode get the default compression mode used, ZLIB based. @@ -9967,7 +10054,7 @@ Could we use @subtypes for this?'/> - Search the DTD for the description of this element + Search the DTD for the description of this element NOTE: A NULL return value can also mean that a memory allocation failed. @@ -10004,7 +10091,7 @@ Could we use @subtypes for this?'/> - + Get the default external entity resolver function for the application @@ -10034,13 +10121,13 @@ Could we use @subtypes for this?'/> - Get the internal subset of a document - + Get the internal subset of a document. + - Search the last child of a node. - + Find the last child of a node. + @@ -10053,8 +10140,8 @@ Could we use @subtypes for this?'/> - Search and get the value of an attribute associated to a node This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values unless DTD use has been turned off. This function is similar to xmlGetProp except it will accept only an attribute in no namespace. - + Search and get the value of an attribute associated to a node This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values. This function is similar to xmlGetProp except it will accept only an attribute in no namespace. NOTE: This function doesn't allow to distinguish malloc failures from missing attributes. It's more robust to use xmlNodeGetAttrValue. + @@ -10066,14 +10153,22 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) - Search all the namespace applying to a given element. - + Find all in-scope namespaces of a node. Use xmlGetNsListSafe for better error reporting. + + + defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) + Find all in-scope namespaces of a node. @out returns a NULL terminated array of namespace pointers that must be freed by the caller. Available since 2.13.0. + + + + + - Search and get the value of an attribute associated to a node This attribute has to be anchored in the namespace specified. This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values unless DTD use has been turned off. - + Search and get the value of an attribute associated to a node This attribute has to be anchored in the namespace specified. This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values. NOTE: This function doesn't allow to distinguish malloc failures from missing attributes. It's more robust to use xmlNodeGetAttrValue. + @@ -10090,8 +10185,8 @@ Could we use @subtypes for this?'/> - Search and get the value of an attribute associated to a node This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values unless DTD use has been turned off. NOTE: this function acts independently of namespaces associated to the attribute. Use xmlGetNsProp() or xmlGetNoNsProp() for namespace aware processing. - + Search and get the value of an attribute associated to a node This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values. NOTE: This function acts independently of namespaces associated to the attribute. Use xmlGetNsProp() or xmlGetNoNsProp() for namespace aware processing. NOTE: This function doesn't allow to distinguish malloc failures from missing attributes. It's more robust to use xmlNodeGetAttrValue. + @@ -10124,20 +10219,44 @@ Could we use @subtypes for this?'/> - Search for an attribute associated to a node This attribute has to be anchored in the namespace specified. This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values unless DTD use has been turned off. Note that a namespace of NULL indicates to use the default namespace. - + Search for an attribute associated to a node This attribute has to be anchored in the namespace specified. This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values. Note that a namespace of NULL indicates to use the default namespace. + - Search an attribute associated to a node This function also looks in DTD attribute declaration for #FIXED or default declaration values unless DTD use has been turned off. - + Search an attribute associated to a node This function also looks in DTD attribute declaration for #FIXED or default declaration values. + + + Add a hash table entry. If an entry with this key already exists, payload will not be updated and 0 is returned. This return value can't be distinguished from out-of-memory errors, so this function should be used with care. Available since 2.13.0. + + + + + + + Add a hash table entry with two strings as key. See xmlHashAdd. Available since 2.13.0. + + + + + + + + Add a hash table entry with three strings as key. See xmlHashAdd. Available since 2.13.0. + + + + + + + - Add a hash table entry. If an entry with this key already exists, payload will not be updated and -1 is returned. This return value can't be distinguished from out-of-memory errors, so this function should be used with care. + Add a hash table entry. If an entry with this key already exists, payload will not be updated and -1 is returned. This return value can't be distinguished from out-of-memory errors, so this function should be used with care. NOTE: This function doesn't allow to distinguish malloc failures from existing entries. Use xmlHashAdd instead. @@ -10167,11 +10286,18 @@ Could we use @subtypes for this?'/> - Copy the hash @table using @copy to copy payloads. + DEPRECATED: Leaks memory in error case. Copy the hash table using @copy to copy payloads. + + Copy the hash table using @copyFunc to copy payloads. Available since 2.13.0. + + + + + Create a new hash table. Set size to zero if the number of entries can't be estimated. @@ -10357,25 +10483,25 @@ Could we use @subtypes for this?'/> defined(LIBXML_FTP_ENABLED) - Close an FTP I/O channel + DEPRECATED: Internal function, don't use. Close an FTP I/O channel defined(LIBXML_FTP_ENABLED) - check if the URI matches an FTP one + DEPRECATED: Internal function, don't use. check if the URI matches an FTP one defined(LIBXML_FTP_ENABLED) - open an FTP I/O channel + DEPRECATED: Internal function, don't use. open an FTP I/O channel defined(LIBXML_FTP_ENABLED) - Read @len bytes to @buffer from the I/O channel. + DEPRECATED: Internal function, don't use. Read @len bytes to @buffer from the I/O channel. @@ -10383,32 +10509,32 @@ Could we use @subtypes for this?'/> defined(LIBXML_HTTP_ENABLED) - Close an HTTP I/O channel + DEPRECATED: Internal function, don't use. Close an HTTP I/O channel defined(LIBXML_HTTP_ENABLED) - check if the URI matches an HTTP one + DEPRECATED: Internal function, don't use. check if the URI matches an HTTP one defined(LIBXML_HTTP_ENABLED) - open an HTTP I/O channel + DEPRECATED: Internal function, don't use. open an HTTP I/O channel defined(LIBXML_HTTP_ENABLED) && defined(LIBXML_OUTPUT_ENABLED) - Open a temporary buffer to collect the document for a subsequent HTTP POST request. Non-static as is called from the output buffer creation routine. - + DEPRECATED: Support for HTTP POST has been removed. + defined(LIBXML_HTTP_ENABLED) - Read @len bytes to @buffer from the I/O channel. + DEPRECATED: Internal function, don't use. Read @len bytes to @buffer from the I/O channel. @@ -10426,13 +10552,13 @@ Could we use @subtypes for this?'/> DEPRECATED: Alias for xmlInitParser. - + DEPRECATED: Alias for xmlInitParser. DEPRECATED: Alias for xmlInitParser. - + DEPRECATED: Don't use. -- Initialize (set to initial state) node info sequence @@ -10530,7 +10656,7 @@ Could we use @subtypes for this?'/> Determine whether an attribute is of type ID. In case we have DTD(s) then this is done if DTD loading has been requested. In the case of HTML documents parsed with the HTML parser, then ID detection is done systematically. - + @@ -10580,8 +10706,8 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) - Finds the last child node of that element which is a Element node Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back reference from entities content to entities references. - + Find the last child node which is an element. Note that entity references are not expanded. + @@ -10770,8 +10896,8 @@ Could we use @subtypes for this?'/> - - Load an external entity, note that the use of this function for unparsed entities may generate problems + + @@ -10787,6 +10913,12 @@ Could we use @subtypes for this?'/> xmlLockLibrary() is used to take out a re-entrant lock on the libxml2 library. + + Find or create a handler matching the encoding. If no default or registered handler could be found, try to create a handler using iconv or ICU if supported. The handler must be closed with xmlCharEncCloseFunc. Available since 2.13.0. + + + + defined(LIBXML_DEBUG_ENABLED) Count the children of @node. @@ -10801,7 +10933,7 @@ Could we use @subtypes for this?'/> - a malloc() equivalent, with logging of the allocation info. + DEPRECATED: don't use @@ -10813,7 +10945,7 @@ Could we use @subtypes for this?'/> - a malloc() equivalent, with logging of the allocation info. + DEPRECATED: don't use @@ -10824,14 +10956,14 @@ Could we use @subtypes for this?'/> - show in-extenso the memory blocks allocated + DEPRECATED: This feature was removed. - + - the last nbBytes of memory allocated and not freed, useful for dumping the memory left allocated between two places at runtime. + DEPRECATED: This feature was removed. - + @@ -10867,9 +10999,9 @@ Could we use @subtypes for this?'/> - show a show display of the memory allocated, and dump the @nr last allocated areas which were not freed + DEPRECATED: This feature was removed. - + @@ -10878,7 +11010,7 @@ Could we use @subtypes for this?'/> - a strdup() equivalent, with logging of the allocation info. + DEPRECATED: don't use @@ -10889,7 +11021,7 @@ Could we use @subtypes for this?'/> - Dump in-extenso the memory blocks allocated to the file .memorylist + DEPRECATED: This feature was removed. @@ -11225,11 +11357,11 @@ Could we use @subtypes for this?'/> - Creation of a new node containing a CDATA block. - - - - + Create a CDATA section node. + + + + defined(LIBXML_CATALOG_ENABLED) @@ -11245,33 +11377,33 @@ Could we use @subtypes for this?'/> - Creation of a new character reference node. - - - + This function is MISNAMED. It doesn't create a character reference but an entity reference. Create an empty entity reference node. This function doesn't attempt to look up the entity in @doc. Entity names like '&entity;' are handled as well. + + + defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) - Creation of a new child element, added at the end of @parent children list. @ns and @content parameters are optional (NULL). If @ns is NULL, the newly created element inherits the namespace of @parent. If @content is non NULL, a child list containing the TEXTs and ENTITY_REFs node will be created. NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity references. XML special chars must be escaped first by using xmlEncodeEntitiesReentrant(), or xmlNewTextChild() should be used. - + Create a new child element and append it to a parent element. If @ns is NULL, the newly created element inherits the namespace of the parent. If provided, @content is expected to be a valid XML attribute value possibly containing character and entity references. Text and entity reference node will be added to the child element, see xmlNewDocNode. + - + - + - Use of this function is DISCOURAGED in favor of xmlNewDocComment. Creation of a new node containing a comment. - - + Use of this function is DISCOURAGED in favor of xmlNewDocComment. Create a comment node. + + - Creates a new XML document - - + Creates a new XML document. If version is NULL, "1.0" is used. + + - Creation of a new node containing a comment within a document. - + Create a comment node. + @@ -11284,69 +11416,69 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) - Creation of a new Fragment node. - - + Create a document fragment node. + + - Creation of a new node element within a document. @ns and @content are optional (NULL). NOTE: @content is supposed to be a piece of XML CDATA, so it allow entities references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant(). Use xmlNewDocRawNode() if you don't need entities support. - - - + Create an element node. If provided, @content is expected to be a valid XML attribute value possibly containing character and entity references. Syntax errors and references to undeclared entities are ignored silently. Only references are handled, nested elements, comments or PIs are not. See xmlNewDocRawNode for an alternative. General notes on object creation: Each node and all its children are associated with the same document. The document should be provided when creating nodes to avoid a performance penalty when adding the node to a document tree. Note that a document only owns nodes reachable from the root node. Unlinked subtrees must be freed manually. + + + - + - Creation of a new node element within a document. @ns and @content are optional (NULL). NOTE: @content is supposed to be a piece of XML CDATA, so it allow entities references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant(). Use xmlNewDocRawNode() if you don't need entities support. - - - + Create an element node. Like xmlNewDocNode, but the @name string will be used directly without making a copy. Takes ownership of @name which will also be freed on error. + + + - + - Creation of a processing instruction element. - - - - + Create a processing instruction object. + + + + - Create a new property carried by a document. NOTE: @value is supposed to be a piece of XML CDATA, so it allows entity references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant(). Use xmlNewProp() if you don't need entities support. - - + Create an attribute object. If provided, @value is expected to be a valid XML attribute value possibly containing character and entity references. Syntax errors and references to undeclared entities are ignored silently. If you want to pass a raw string, see xmlNewProp. + + - + defined(LIBXML_TREE_ENABLED) - Creation of a new node element within a document. @ns and @content are optional (NULL). - - - + Create an element node. If provided, @value should be a raw, unescaped string. + + + - + - Creation of a new text node within a document. - - - + Create a new text node. + + + - Creation of a new text node with an extra content length parameter. The text node pertain to a given document. - - - - + Create a new text node. + + + + - Creation of a new DTD for the external subset. To create an internal subset, use xmlCreateIntSubset(). - - - - - + Create a DTD node. If a document is provided, it is an error if it already has an external subset. If the document has no external subset, it will be set to the created DTD. To create an internal subset, use xmlCreateIntSubset(). + + + + + Allocate an element content structure. Deprecated in favor of xmlNewDocElementContent @@ -11368,7 +11500,7 @@ Could we use @subtypes for this?'/> DEPRECATED: Internal function, do not use. Create a new input stream based on an xmlEntityPtr - + defined(LIBXML_LEGACY_ENABLED) @@ -11382,7 +11514,7 @@ Could we use @subtypes for this?'/> Create a new input stream structure encapsulating the @input into a stream suitable for the parser. - + @@ -11401,45 +11533,45 @@ Could we use @subtypes for this?'/> - Creation of a new node element. @ns is optional (NULL). Use of this function is DISCOURAGED in favor of xmlNewDocNode. - - + Create an element node. Use of this function is DISCOURAGED in favor of xmlNewDocNode. + + - Creation of a new node element. @ns is optional (NULL). Use of this function is DISCOURAGED in favor of xmlNewDocNodeEatName. - - + Create an element node. Use of this function is DISCOURAGED in favor of xmlNewDocNodeEatName. Like xmlNewNode, but the @name string will be used directly without making a copy. Takes ownership of @name which will also be freed on error. + + - Creation of a new Namespace. This function will refuse to create a namespace with a similar prefix than an existing one present on this node. Note that for a default namespace, @prefix should be NULL. We use href==NULL in the case of an element creation where the namespace was not defined. - - + Create a new namespace. For a default namespace, @prefix should be NULL. The namespace URI in @href is not checked. You should make sure to pass a valid URI. If @node is provided, it must be an element node. The namespace will be appended to the node's namespace declarations. It is an error if the node already has a definition for the prefix or default namespace. + + - + - Create a new property tagged with a namespace and carried by a node. - - - - - + Create an attribute object. If provided, @value should be a raw, unescaped string. If @node is provided, the created attribute will be appended without checking for duplicate names. It is an error if @node is not an element. + + + + + - Create a new property tagged with a namespace and carried by a node. - - - - - + Like xmlNewNsProp, but the @name string will be used directly without making a copy. Takes ownership of @name which will also be freed on error. + + + + + - Creation of a processing instruction element. Use of this function is DISCOURAGED in favor of xmlNewDocPI. - - - + Create a processing instruction node. Use of this function is DISCOURAGED in favor of xmlNewDocPI. + + + Allocate and initialize a new parser context. @@ -11447,24 +11579,24 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) - Create a new property carried by a node. - - + Create an attribute node. If provided, @value should be a raw, unescaped string. If @node is provided, the created attribute will be appended without checking for duplicate names. It is an error if @node is not an element. + + - + xmlRNewMutex() is used to allocate a reentrant mutex for use in synchronizing access to data. token_r is a re-entrant lock and thus useful for synchronizing access to data structures that may be manipulated in a recursive fashion. - Creation of a new reference node. - - - + Create a new entity reference node, linking the result with the entity in @doc if found. Entity names like '&entity;' are handled as well. + + + - Allocate and initialize a new SAX parser context. If userData is NULL, the parser context will be passed as user data. + Allocate and initialize a new SAX parser context. If userData is NULL, the parser context will be passed as user data. Available since 2.11.0. If you want support older versions, it's best to invoke xmlNewParserCtxt and set ctxt->sax with struct assignment. @@ -11476,24 +11608,24 @@ Could we use @subtypes for this?'/> - Creation of a new text node. Use of this function is DISCOURAGED in favor of xmlNewDocText. - - + Create a text node. Use of this function is DISCOURAGED in favor of xmlNewDocText. + + defined(LIBXML_TREE_ENABLED) - Creation of a new child element, added at the end of @parent children list. @ns and @content parameters are optional (NULL). If @ns is NULL, the newly created element inherits the namespace of @parent. If @content is non NULL, a child TEXT node will be created containing the string @content. NOTE: Use xmlNewChild() if @content will contain entities that need to be preserved. Use this function, xmlNewTextChild(), if you need to ensure that reserved XML chars that might appear in @content, such as the ampersand, greater-than or less-than signs, are automatically replaced by their XML escaped entity representations. - + Create a new child element and append it to a parent element. If @ns is NULL, the newly created element inherits the namespace of the parent. If @content is provided, a text node will be added to the child element, see xmlNewDocRawNode. + - + - + - Use of this function is DISCOURAGED in favor of xmlNewDocTextLen. Creation of a new text node with an extra parameter for the content's length - - - + Use of this function is DISCOURAGED in favor of xmlNewDocTextLen. + + + defined(LIBXML_READER_ENABLED) @@ -11562,11 +11694,11 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) - Finds the first closest next sibling of the node which is an element node. Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back reference from entities content to entities references. - + Find the closest following sibling which is a element. Note that entity references are not expanded. + - + A specific entity loader disabling network accesses, though still allowing local catalog accesses for resolution. @@ -11575,13 +11707,13 @@ Could we use @subtypes for this?'/> Append the extra substring to the node content. NOTE: In contrast to xmlNodeSetContent(), @content is supposed to be raw text, so unescaped XML special chars are allowed, entity references are not supported. - + Append the extra substring to the node content. NOTE: In contrast to xmlNodeSetContentLen(), @content is supposed to be raw text, so unescaped XML special chars are allowed, entity references are not supported. - + @@ -11613,12 +11745,27 @@ Could we use @subtypes for this?'/> + + Search and get the value of an attribute associated to a node This attribute has to be anchored in the namespace specified. This does the entity substitution. The returned value must be freed by the caller. Available since 2.13.0. + + + + + + - Searches for the BASE URL. The code should work on both XML and HTML document even if base mechanisms are completely different. It returns the base as defined in RFC 2396 sections 5.1.1. Base URI within Document Content and 5.1.2. Base URI from the Encapsulating Entity However it does not return the document base (5.1.3), use doc->URL in this case + See xmlNodeGetBaseSafe. This function doesn't allow to distinguish memory allocation failures from a non-existing base. + + Searches for the BASE URL. The code should work on both XML and HTML document even if base mechanisms are completely different. It returns the base as defined in RFC 2396 sections 5.1.1. Base URI within Document Content and 5.1.2. Base URI from the Encapsulating Entity However it does not return the document base (5.1.3), use doc->URL in this case Available since 2.13.0. + + + + + Read the value of a node, this can be either the text carried directly by this node if it's a TEXT node or the aggregate string of the values carried by this node child's (TEXT and ENTITY_REF). Entity references are substituted. @@ -11641,36 +11788,36 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) - Builds the string equivalent to the text contained in the Node list made of TEXTs and ENTITY_REFs, contrary to xmlNodeListGetString() this function doesn't do any character encoding handling. - - - - + Serializes attribute children (text and entity reference nodes) into a string. An empty list produces an empty string. If @inLine is true, entity references will be substituted. Otherwise, entity references will be kept and special characters like '&' will be escaped. + + + + - Build the string equivalent to the text contained in the Node list made of TEXTs and ENTITY_REFs - - - - + Serializes attribute children (text and entity reference nodes) into a string. An empty list produces an empty string. If @inLine is true, entity references will be substituted. Otherwise, entity references will be kept and special characters like '&' as well as non-ASCII chars will be escaped. See xmlNodeListGetRawString for an alternative option. + + + + defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) Set (or reset) the base URI of a node, i.e. the value of the xml:base attribute. - + - Replace the content of a node. NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant() resp. xmlEncodeSpecialChars(). - + Replace the text content of a node. Sets the raw text content of text, CDATA, comment or PI nodes. For element and attribute nodes, removes all children and replaces them by parsing @content which is expected to be a valid XML attribute value possibly containing character and entity references. Syntax errors and references to undeclared entities are ignored silently. Unfortunately, there isn't an API to pass raw content directly. An inefficient work-around is to escape the content with xmlEncodeSpecialChars before passing it. A better trick is clearing the old content with xmlNodeSetContent(node, NULL) first and then calling xmlNodeAddContent(node, content). Unlike this function, xmlNodeAddContent accepts raw text. + defined(LIBXML_TREE_ENABLED) - Replace the content of a node. NOTE: @content is supposed to be a piece of XML CDATA, so it allows entity references, but XML special chars need to be escaped first by using xmlEncodeEntitiesReentrant() resp. xmlEncodeSpecialChars(). - + See xmlNodeSetContent. + @@ -11678,7 +11825,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) Set the language of a node, i.e. the values of the xml:lang attribute. - + @@ -11692,7 +11839,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) Set (or reset) the space preserving behaviour of a node, i.e. the value of the xml:space attribute. - + @@ -11702,14 +11849,21 @@ Could we use @subtypes for this?'/> - This function is obsolete. Please see xmlURIFromPath in uri.c for a better solution. - + DEPRECATED: This never really worked. + + + Find or create a handler matching the encoding. If no default or registered handler could be found, try to create a handler using iconv or ICU if supported. The handler must be closed with xmlCharEncCloseFunc. Available since 2.13.0. + + + + + defined(LIBXML_OUTPUT_ENABLED) flushes and close the output I/O channel and free up all the associated resources - + @@ -11865,14 +12019,14 @@ Could we use @subtypes for this?'/> defined(LIBXML_SAX1_ENABLED) - Parse a well-balanced chunk of an XML document called by the parser The allowed sequence for the Well Balanced Chunk is the one defined by the content production in the XML grammar: [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)* - + Parse a well-balanced chunk of an XML document The allowed sequence for the Well Balanced Chunk is the one defined by the content production in the XML grammar: [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)* + - + @@ -11904,11 +12058,11 @@ Could we use @subtypes for this?'/> defined(LIBXML_PUSH_ENABLED) - Parse a Chunk of memory - + Parse a chunk of memory in push parser mode. Assumes that the parser context was initialized with xmlCreatePushParserCtxt. The last chunk, which will often be empty, must be marked with the @terminate flag. With the default SAX callbacks, the resulting document will be available in ctxt->myDoc. This pointer will not be freed by the library. If the document isn't well-formed, ctxt->myDoc is set to NULL. The push parser doesn't support recovery mode. + - - + + @@ -11917,17 +12071,17 @@ Could we use @subtypes for this?'/> - Parse a content sequence. Stops at EOF or '</'. [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)* + Parse XML element content. This is useful if you're only interested in custom SAX callbacks. If you want a node list, use xmlParseInNodeContext. Parse an external general entity within an existing parsing context An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content - + - + defined(LIBXML_VALID_ENABLED) @@ -11954,8 +12108,8 @@ Could we use @subtypes for this?'/> - parse an XML document (and build a tree if using the standard SAX interface). [1] document ::= prolog element Misc* [22] prolog ::= XMLDecl? Misc* (doctypedecl Misc*)? - + Parse an XML document and invoke the SAX handlers. This is useful if you're only interested in custom SAX callbacks. If you want a document tree, use xmlCtxtParseDocument. + @@ -12015,7 +12169,7 @@ Could we use @subtypes for this?'/> - DEPRECATED: Internal function, don't use. Parse an entitiy reference. Always consumes '&'. [68] EntityRef ::= '&' Name ';' [ WFC: Entity Declared ] In a document without any DTD, a document with only an internal DTD subset which contains no parameter entity references, or a document with "standalone='yes'", the Name given in the entity reference must match that in an entity declaration, except that well-formed documents need not declare any of the following entities: amp, lt, gt, apos, quot. The declaration of a parameter entity must precede any reference to it. Similarly, the declaration of a general entity must precede any reference to it which appears in a default value in an attribute-list declaration. Note that if entities are declared in the external subset or in external parameter entities, a non-validating processor is not obligated to read and process their declarations; for such documents, the rule that an entity must be declared is a well-formedness constraint only if standalone='yes'. [ WFC: Parsed Entity ] An entity reference must not contain the name of an unparsed entity + DEPRECATED: Internal function, don't use. @@ -12043,7 +12197,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_SAX1_ENABLED) - Parse an external general entity An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content + DEPRECATED: Use xmlParseCtxtExternalEntity. Parse an external general entity An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content @@ -12051,7 +12205,7 @@ Could we use @subtypes for this?'/> - + DEPRECATED: Internal function, don't use. Parse an External ID or a Public ID NOTE: Productions [75] and [83] interact badly since [75] can generate 'PUBLIC' S PubidLiteral S SystemLiteral [75] ExternalID ::= 'SYSTEM' S SystemLiteral | 'PUBLIC' S PubidLiteral S SystemLiteral [83] PublicID ::= 'PUBLIC' S PubidLiteral @@ -12194,6 +12348,12 @@ Could we use @subtypes for this?'/> + + Parse an URI based on RFC 3986 URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ] Available since 2.13.0. + + + + DEPRECATED: Internal function, don't use. parse the XML version. [24] VersionInfo ::= S 'version' Eq (' VersionNum ' | " VersionNum ") [25] Eq ::= S? '=' S? @@ -12251,19 +12411,19 @@ Could we use @subtypes for this?'/> - Create a buffered parser input for the progressive parsing for the input from a file descriptor + Create a buffered parser input for the progressive parsing for the input from a file descriptor The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on. - + - Create a buffered parser input for the progressive parsing of a FILE * buffered C I/O + Create a buffered parser input for the progressive parsing of a FILE * buffered C I/O The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on. - + - Create a buffered parser input for the progressive parsing of a file If filename is "-' then we use stdin as the input. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. Do an encoding check if enc == XML_CHAR_ENCODING_NONE + Create a buffered parser input for the progressive parsing of a file Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. Do an encoding check if enc == XML_CHAR_ENCODING_NONE @@ -12280,23 +12440,23 @@ Could we use @subtypes for this?'/> - Create a buffered parser input for the progressive parsing for the input from an I/O handler + Create a buffered parser input for the progressive parsing for the input from an I/O handler The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on. - + - Create a buffered parser input for the progressive parsing for the input from a memory area. - + Create a parser input buffer for parsing from a memory area. This function makes a copy of the whole input buffer. If you are sure that the contents of the buffer will remain valid until the document was parsed, you can avoid the copy by using xmlParserInputBufferCreateStatic. The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on. + - + - DEPRECATED: Use xmlParserInputBufferCreateMem. - + Create a parser input buffer for parsing from a memory area. This functions assumes that the contents of the input buffer remain valid until the document was parsed. Use xmlParserInputBufferCreateMem otherwise. The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on. + @@ -12343,12 +12503,12 @@ Could we use @subtypes for this?'/> - Displays current context within the input content for error tracking + DEPRECATED: Use xmlFormatError. Displays current context within the input content for error tracking - Displays the associated file and line information for the current input + DEPRECATED: Use xmlFormatError. Displays the associated file and line information for the current input @@ -12378,6 +12538,16 @@ Could we use @subtypes for this?'/> + + defined(LIBXML_PATTERN_ENABLED) + Compile a pattern. Available since 2.13.0. + + + + + + + defined(LIBXML_PATTERN_ENABLED) Check if the pattern must be looked at from the root. @@ -12445,8 +12615,8 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) - Finds the first closest previous sibling of the node which is an element node. Note the handling of entities references is different than in the W3C DOM element traversal spec since we don't have back reference from entities content to entities references. - + Find the closest preceding sibling which is a element. Note that entity references are not expanded. + @@ -12456,7 +12626,7 @@ Could we use @subtypes for this?'/> - xmlPushInput: switch to a new input stream which is stacked on top of the previous one(s). + Push an input stream onto the stack. This makes the parser use an input returned from advanced functions like xmlNewInputURL or xmlNewInputMemory. @@ -12472,45 +12642,45 @@ Could we use @subtypes for this?'/> - parse an XML in-memory document and build a tree. + Convenience function to parse an XML document from a zero-terminated string. See xmlCtxtReadDoc for details. - - + + - parse an XML from a file descriptor and build a tree. NOTE that the file descriptor will not be closed when the reader is closed or reset. + Parse an XML from a file descriptor and build a tree. See xmlCtxtReadFd for details. NOTE that the file descriptor will not be closed when the context is freed or reset. - - + + - parse an XML file from the filesystem or the network. + Convenience function to parse an XML file from the filesystem, the network or a global user-define resource loader. See xmlCtxtReadFile for details. - + - parse an XML document from I/O functions and source and build a tree. + Parse an XML document from I/O functions and context and build a tree. See xmlCtxtReadIO for details. - + - - + + - parse an XML in-memory document and build a tree. + Parse an XML in-memory document and build a tree. The input buffer must not contain a terminating null byte. See xmlCtxtReadMemory for details. - - + + @@ -12632,7 +12802,7 @@ Could we use @subtypes for this?'/> - a realloc() equivalent, with logging of the allocation info. + DEPRECATED: don't use @@ -12642,7 +12812,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) This function checks that all the namespaces declared within the given tree are properly declared. This is needed for example after Copy or Cut and then paste operations. The subtree may still hold pointers to namespace declarations outside the subtree or invalid/masked. As much as possible the function try to reuse the existing namespaces found in the new environment. If not possible the new namespaces are redeclared on @tree at the top of the given subtree. - + @@ -12774,7 +12944,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_OUTPUT_ENABLED) && defined(LIBXML_HTTP_ENABLED) - By default, libxml submits HTTP output requests using the "PUT" method. Calling this method changes the HTTP output method to use the "POST" method instead. + DEPRECATED: Support for HTTP POST has been removed. @@ -12786,7 +12956,7 @@ Could we use @subtypes for this?'/> - Registers a callback for node creation + DEPRECATED: don't use Registers a callback for node creation @@ -12897,7 +13067,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_SCHEMAS_ENABLED) - Set the callback functions used to handle errors for a validation context + DEPRECATED: Use xmlRelaxNGSetParserStructuredErrors. Set the callback functions used to handle errors for a validation context @@ -12914,7 +13084,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_SCHEMAS_ENABLED) - Set the error and warning callback information + DEPRECATED: Use xmlRelaxNGSetValidStructuredErrors. Set the error and warning callback information @@ -12998,8 +13168,8 @@ Could we use @subtypes for this?'/> - Unlink and free one attribute, all the content is freed too Note this doesn't work for namespace definition attributes - + Unlink and free an attribute including all children. Note this doesn't work for namespace declarations. The attribute must have a non-NULL parent pointer. + @@ -13010,10 +13180,10 @@ Could we use @subtypes for this?'/> defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED) - Unlink the old node from its current context, prune the new one at the same place. If @cur was already inserted in a document it is first unlinked from its existing context. See the note regarding namespaces in xmlAddChild. - + Unlink the old node. If @cur is provided, it is unlinked and inserted in place of @old. It is an error if @old has no parent. Unlike xmlAddChild, this function doesn't merge text nodes or delete duplicate attributes. See the notes in xmlAddChild. + - + Cleanup the error. @@ -13368,6 +13538,12 @@ Could we use @subtypes for this?'/> + + defined(LIBXML_OUTPUT_ENABLED) + Close a document saving context, i.e. make sure that all bytes have been output and free the associated data. Available since 2.13.0. + + + defined(LIBXML_OUTPUT_ENABLED) Flush a document saving context, i.e. make sure that all bytes have been output. @@ -13712,7 +13888,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_SCHEMAS_ENABLED) - Set the callback functions used to handle errors for a validation context + DEPRECATED: Use xmlSchemaSetParserStructuredErrors. Set the callback functions used to handle errors for a validation context @@ -13729,7 +13905,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_SCHEMAS_ENABLED) - Set the error and warning callback information + DEPRECATED: Use xmlSchemaSetValidStructuredErrors. Set the error and warning callback information @@ -14024,14 +14200,14 @@ Could we use @subtypes for this?'/> Search a Ns registered under a given name space for a document. recurse on the parents until it finds the defined namespace or return NULL otherwise. @nameSpace can be NULL, this is a search for the default namespace. We don't allow to cross entities boundaries. If you don't declare the namespace within those you will be in troubles !!! A warning is generated to cover this case. - + Search a Ns aliasing a given URI. Recurse on the parents until it finds the defined namespace or return NULL otherwise. - + @@ -14042,7 +14218,7 @@ Could we use @subtypes for this?'/> - set the default compression mode used, ZLIB based Correct values: 0 (uncompressed) to 9 (max compression) + DEPRECATED: Use xmlSetDocCompressMode set the default compression mode used, ZLIB based Correct values: 0 (uncompressed) to 9 (max compression) @@ -14052,13 +14228,13 @@ Could we use @subtypes for this?'/> - + defined(LIBXML_LEGACY_ENABLED) Set the function to call call back when a xml reference has been made - + Changes the defaultexternal entity resolver function for the application @@ -14072,22 +14248,22 @@ Could we use @subtypes for this?'/> - Function to reset the handler and the error context for out of context error messages. This simply means that @handler will be called for subsequent error messages while not parsing nor validating. And @ctx will be passed as first argument to @handler One can simply force messages to be emitted to another FILE * than stderr by setting @ctx to this file handle and @handler to NULL. For multi-threaded applications, this must be set separately for each thread. + DEPRECATED: See xmlSetStructuredErrorFunc for alternatives. Set the global "generic" handler and context for error messages. The generic error handler will only receive fragments of error messages which should be concatenated or printed to a stream. If handler is NULL, use the built-in default handler which prints to stderr. Since this is a global setting, it's a good idea to reset the error handler to its default value after collecting the errors you're interested in. For multi-threaded applications, this must be set separately for each thread. - update all nodes in the list to point to the right document - - - + Associate all subtrees in @list with a new document. Internal function, see xmlSetTreeDoc. + + + - Associate a namespace to a node, a posteriori. + Set the namespace of an element or attribute node. Passing a NULL namespace unsets the namespace. - + defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED) @@ -14107,16 +14283,16 @@ Could we use @subtypes for this?'/> - Function to reset the handler and the error context for out of context structured error messages. This simply means that @handler will be called for subsequent error messages while not parsing nor validating. And @ctx will be passed as first argument to @handler For multi-threaded applications, this must be set separately for each thread. + DEPRECATED: Use a per-context error handler. It's recommended to use the per-context error handlers instead: - xmlCtxtSetErrorHandler (since 2.13.0) - xmlTextReaderSetStructuredErrorHandler - xmlXPathSetErrorHandler (since 2.13.0) - xmlXIncludeSetErrorHandler (since 2.13.0) - xmlSchemaSetParserStructuredErrors - xmlSchemaSetValidStructuredErrors - xmlRelaxNGSetParserStructuredErrors - xmlRelaxNGSetValidStructuredErrors Set the global "structured" handler and context for error messages. If handler is NULL, the error handler is deactivated. The structured error handler takes precedence over "generic" handlers, even per-context generic handlers. Since this is a global setting, it's a good idea to deactivate the error handler after collecting the errors you're interested in. For multi-threaded applications, this must be set separately for each thread. - update all nodes under the tree to point to the right document - - - + This is an internal function which shouldn't be used. It is invoked by functions like xmlAddChild, xmlAddSibling or xmlReplaceNode. @tree must be the root node of an unlinked subtree. Associate all nodes in a tree with a new document. Also copy strings from the old document's dictionary and remove ID attributes from the old ID table. + + + defined(LIBXML_SAX1_ENABLED) @@ -14131,7 +14307,7 @@ Could we use @subtypes for this?'/> Implements the XML shell This allow to load, validate, view, modify and save a document using a environment similar to a UNIX commandline. - + @@ -14260,7 +14436,7 @@ Could we use @subtypes for this?'/> - DEPRECATED: Internal function, do not use. skip all blanks character found at that point in the input streams. It pops up finished entities in the process if allowable at that point. + DEPRECATED: Internal function, do not use. Skip whitespace in the input stream. @@ -14277,10 +14453,10 @@ Could we use @subtypes for this?'/> - + - parse an XML qualified name string [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName + DEPRECATED: This function doesn't report malloc failures. parse an XML qualified name string [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName @@ -14418,7 +14594,7 @@ Could we use @subtypes for this?'/> - DEPRECATED: Internal function, don't use. Takes a entity string content and process to do the adequate substitutions. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';' + DEPRECATED: Internal function, don't use. @@ -14428,13 +14604,13 @@ Could we use @subtypes for this?'/> - Parse the value string and build the node list associated. Should produce a flat tree with only TEXTs and ENTITY_REFs. - - - + DEPRECATED: Use xmlNodeSetContent. Parse an attribute value and build a node list containing only text and entity reference nodes. The resulting nodes will be associated with the document if provided. The document is also used to look up entities. The input is not validated. Syntax errors or references to undeclared entities will be ignored silently with unspecified results. + + + - DEPRECATED: Internal function, don't use. Takes a entity string content and process to do the adequate substitutions. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';' + DEPRECATED: Internal function, don't use. @@ -14445,11 +14621,11 @@ Could we use @subtypes for this?'/> - Parse the value string and build the node list associated. Should produce a flat tree with only TEXTs and ENTITY_REFs. - - - - + DEPRECATED: Use xmlNodeSetContentLen. See xmlStringGetNodeList. + + + + length of a xmlChar's string @@ -14515,15 +14691,21 @@ Could we use @subtypes for this?'/> - Use encoding specified by enum to decode input data. This function can be used to enforce the encoding of chunks passed to xmlParseChunk. + Use encoding specified by enum to decode input data. This overrides the encoding found in the XML declaration. This function can also be used to override the encoding of chunks passed to xmlParseChunk. + + Use specified encoding to decode input data. This overrides the encoding found in the XML declaration. This function can also be used to override the encoding of chunks passed to xmlParseChunk. Available since 2.13.0. + + + + DEPRECATED: Internal function, don't use. Use encoding handler to decode input data. - + @@ -14534,15 +14716,15 @@ Could we use @subtypes for this?'/> - Concat the given string at the end of the existing node content + Concat the given string at the end of the existing node content. If @len is -1, the string length will be calculated. - Merge two text nodes into one - + Merge the second text node into the first. The second node is unlinked and freed. + @@ -14694,6 +14876,12 @@ Could we use @subtypes for this?'/> + + defined(LIBXML_READER_ENABLED) + Available since 2.13.0. + + + defined(LIBXML_READER_ENABLED) Provide the column number of the current parsing point. @@ -14957,7 +15145,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_READER_ENABLED) - Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored. + DEPRECATED: Use xmlTextReaderSetStructuredErrorHandler. Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored. @@ -15021,6 +15209,12 @@ Could we use @subtypes for this?'/> + + defined(LIBXML_WRITER_ENABLED) + Flushes and closes the output buffer. Available since 2.13.0. + + + defined(LIBXML_WRITER_ENABLED) End the current xml element. @@ -15619,101 +15813,101 @@ Could we use @subtypes for this?'/> - + - + - + - + - + - + defined(LIBXML_OUTPUT_ENABLED) - + - + - + - + - + - + - + - + - + defined(LIBXML_OUTPUT_ENABLED) - + - + - + - + defined(LIBXML_OUTPUT_ENABLED) @@ -16723,7 +16917,7 @@ Could we use @subtypes for this?'/> - This routine escapes a string to hex, ignoring reserved characters (a-z, A-Z, 0-9, "@-_.!~*'()") and the characters in the exception list. + This routine escapes a string to hex, ignoring unreserved characters a-z, A-Z, 0-9, "-._~", a few sub-delims "!*'()", the gen-delim "@" (why?) and the characters in the exception list. @@ -16777,13 +16971,13 @@ Could we use @subtypes for this?'/> Create a substring from a given UTF-8 string Note: positions are given in units of UTF-8 chars - + - Unlink a node from it's current context, the node is not freed If one need to free the node, use xmlFreeNode() routine after the unlink to discard it. Note that namespace nodes can't be unlinked as they do not have pointer to their parent. + Unlink a node from its tree. The node is not freed. Unless it is reinserted, it must be managed manually and freed eventually by calling xmlFreeNode. @@ -16808,14 +17002,14 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED) - (Re)Build the automata associated to the content model of this element + DEPRECATED: Internal function, don't use. (Re)Build the automata associated to the content model of this element defined(LIBXML_VALID_ENABLED) - Does the validation related extra step of the normalization of attribute values: If the declared value is not CDATA, then the XML processor must further process the normalized attribute value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) characters by single space (#x20) character. Also check VC: Standalone Document Declaration in P32, and update ctxt->valid accordingly + DEPRECATED: Internal function, don't use. Does the validation related extra step of the normalization of attribute values: If the declared value is not CDATA, then the XML processor must further process the normalized attribute value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) characters by single space (#x20) character. Also check VC: Standalone Document Declaration in P32, and update ctxt->valid accordingly @@ -16843,7 +17037,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) - Does the validation related extra step of the normalization of attribute values: If the declared value is not CDATA, then the XML processor must further process the normalized attribute value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) characters by single space (#x20) character. + DEPRECATED: Internal function, don't use. Does the validation related extra step of the normalization of attribute values: If the declared value is not CDATA, then the XML processor must further process the normalized attribute value by discarding any leading and trailing space (#x20) characters, and by replacing sequences of space (#x20) characters by single space (#x20) character. @@ -16852,7 +17046,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) - Try to validate a single attribute definition basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Default Legal ] - [ VC: Enumeration ] - [ VC: ID Attribute Default ] The ID/IDREF uniqueness and matching are done separately + DEPRECATED: Internal function, don't use. Try to validate a single attribute definition basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Default Legal ] - [ VC: Enumeration ] - [ VC: ID Attribute Default ] The ID/IDREF uniqueness and matching are done separately @@ -16860,7 +17054,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) - Validate that the given attribute value match the proper production [ VC: ID ] Values of type ID must match the Name production.... [ VC: IDREF ] Values of type IDREF must match the Name production, and values of type IDREFS must match Names ... [ VC: Entity Name ] Values of type ENTITY must match the Name production, values of type ENTITIES must match Names ... [ VC: Name Token ] Values of type NMTOKEN must match the Nmtoken production; values of type NMTOKENS must match Nmtokens. + DEPRECATED: Internal function, don't use. Validate that the given attribute value match the proper production [ VC: ID ] Values of type ID must match the Name production.... [ VC: IDREF ] Values of type IDREF must match the Name production, and values of type IDREFS must match Names ... [ VC: Entity Name ] Values of type ENTITY must match the Name production, values of type ENTITIES must match Names ... [ VC: Name Token ] Values of type NMTOKEN must match the Nmtoken production; values of type NMTOKENS must match Nmtokens. @@ -16874,7 +17068,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) - Does the final step for the document validation once all the incremental validation steps have been completed basically it does the following checks described by the XML Rec Check all the IDREF/IDREFS attributes definition for validity + DEPRECATED: Internal function, don't use. Does the final step for the document validation once all the incremental validation steps have been completed basically it does the following checks described by the XML Rec Check all the IDREF/IDREFS attributes definition for validity @@ -16889,7 +17083,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) - Does the final step for the dtds validation once all the subsets have been parsed basically it does the following checks described by the XML Rec - check that ENTITY and ENTITIES type attributes default or possible values matches one of the defined entities. - check that NOTATION type attributes default or possible values matches one of the defined notations. + DEPRECATED: Internal function, don't use. Does the final step for the dtds validation once all the subsets have been parsed basically it does the following checks described by the XML Rec - check that ENTITY and ENTITIES type attributes default or possible values matches one of the defined entities. - check that NOTATION type attributes default or possible values matches one of the defined notations. @@ -16904,7 +17098,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) - Try to validate a single element definition basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: One ID per Element Type ] - [ VC: No Duplicate Types ] - [ VC: Unique Element Type Declaration ] + DEPRECATED: Internal function, don't use. Try to validate a single element definition basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: One ID per Element Type ] - [ VC: No Duplicate Types ] - [ VC: Unique Element Type Declaration ] @@ -16956,7 +17150,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) - Try to validate a single notation definition basically it does the following checks as described by the XML-1.0 recommendation: - it seems that no validity constraint exists on notation declarations But this function get called anyway ... + DEPRECATED: Internal function, don't use. Try to validate a single notation definition basically it does the following checks as described by the XML-1.0 recommendation: - it seems that no validity constraint exists on notation declarations But this function get called anyway ... @@ -16964,7 +17158,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) - Validate that the given name match a notation declaration. - [ VC: Notation Declared ] + DEPRECATED: Internal function, don't use. Validate that the given name match a notation declaration. - [ VC: Notation Declared ] @@ -16972,7 +17166,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) - Try to validate a single attribute for an element basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Value Type ] - [ VC: Fixed Attribute Default ] - [ VC: Entity Name ] - [ VC: Name Token ] - [ VC: ID ] - [ VC: IDREF ] - [ VC: Entity Name ] - [ VC: Notation Attributes ] The ID/IDREF uniqueness and matching are done separately + DEPRECATED: Internal function, don't use. Try to validate a single attribute for an element basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Value Type ] - [ VC: Fixed Attribute Default ] - [ VC: Entity Name ] - [ VC: Name Token ] - [ VC: ID ] - [ VC: IDREF ] - [ VC: Entity Name ] - [ VC: Notation Attributes ] The ID/IDREF uniqueness and matching are done separately @@ -16982,7 +17176,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) - Try to validate a single element and it's attributes, basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Element Valid ] - [ VC: Required Attribute ] Then call xmlValidateOneAttribute() for each attribute present. The ID/IDREF checkings are done separately + DEPRECATED: Internal function, don't use. Try to validate a single element and it's attributes, basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Element Valid ] - [ VC: Required Attribute ] Then call xmlValidateOneAttribute() for each attribute present. The ID/IDREF checkings are done separately @@ -16990,7 +17184,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) - Try to validate a single namespace declaration for an element basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Value Type ] - [ VC: Fixed Attribute Default ] - [ VC: Entity Name ] - [ VC: Name Token ] - [ VC: ID ] - [ VC: IDREF ] - [ VC: Entity Name ] - [ VC: Notation Attributes ] The ID/IDREF uniqueness and matching are done separately + DEPRECATED: Internal function, don't use. Try to validate a single namespace declaration for an element basically it does the following checks as described by the XML-1.0 recommendation: - [ VC: Attribute Value Type ] - [ VC: Fixed Attribute Default ] - [ VC: Entity Name ] - [ VC: Name Token ] - [ VC: ID ] - [ VC: IDREF ] - [ VC: Entity Name ] - [ VC: Notation Attributes ] The ID/IDREF uniqueness and matching are done separately @@ -17001,7 +17195,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED) - Pop the element end from the validation stack. + DEPRECATED: Internal function, don't use. Pop the element end from the validation stack. @@ -17010,7 +17204,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED) - check the CData parsed for validation in the current stack + DEPRECATED: Internal function, don't use. check the CData parsed for validation in the current stack @@ -17018,7 +17212,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED) - Push a new element start on the validation stack. + DEPRECATED: Internal function, don't use. Push a new element start on the validation stack. @@ -17034,7 +17228,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_VALID_ENABLED) - Try to validate a the root element basically it does the following check as described by the XML-1.0 recommendation: - [ VC: Root Element Type ] it doesn't try to recurse or apply other check to the element + DEPRECATED: Internal function, don't use. Try to validate a the root element basically it does the following check as described by the XML-1.0 recommendation: - [ VC: Root Element Type ] it doesn't try to recurse or apply other check to the element @@ -17059,6 +17253,12 @@ Could we use @subtypes for this?'/> + + defined(LIBXML_XINCLUDE_ENABLED) + Available since 2.13.0. + + + defined(LIBXML_XINCLUDE_ENABLED) Creates a new XInclude context @@ -17114,6 +17314,14 @@ Could we use @subtypes for this?'/> + + defined(LIBXML_XINCLUDE_ENABLED) + Register a callback function that will be called on errors and warnings. If handler is NULL, the error handler will be deactivated. Available since 2.13.0. + + + + + defined(LIBXML_XINCLUDE_ENABLED) Set the flags used for further processing of XML resources. @@ -17283,7 +17491,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_XPATH_ENABLED) - Creates/frees an object cache on the XPath context. If activates XPath objects (xmlXPathObject) will be cached internally to be reused. @options: 0: This will set the XPath object caching: @value: This will set the maximum number of XPath objects to be cached per slot There are 5 slots for: node-set, string, number, boolean, and misc objects. Use <0 for the default number (100). Other values for @options have currently no effect. + Creates/frees an object cache on the XPath context. If activates XPath objects (xmlXPathObject) will be cached internally to be reused. @options: 0: This will set the XPath object caching: @value: This will set the maximum number of XPath objects to be cached per slot There are two slots for node-set and misc objects. Use <0 for the default number (100). Other values for @options have currently no effect. @@ -17381,7 +17589,7 @@ Could we use @subtypes for this?'/> Handle an XPath error - + defined(LIBXML_XPATH_ENABLED) @@ -18049,6 +18257,14 @@ Could we use @subtypes for this?'/> + + defined(LIBXML_XPATH_ENABLED) + Register a callback function that will be called on errors and warnings. If handler is NULL, the error handler will be deactivated. Available since 2.13.0. + + + + + defined(LIBXML_XPATH_ENABLED) Implement the starts-with() XPath function boolean starts-with(string, string) The starts-with function returns true if the first argument string starts with the second argument string, and otherwise returns false. @@ -18084,7 +18300,7 @@ Could we use @subtypes for this?'/> defined(LIBXML_XPATH_ENABLED) - Implement the substring-after() XPath function string substring-after(string, string) The substring-after function returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string, or the empty stringi if the first argument string does not contain the second argument string. For example, substring-after("1999/04/01","/") returns 04/01, and substring-after("1999/04/01","19") returns 99/04/01. + Implement the substring-after() XPath function string substring-after(string, string) The substring-after function returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string, or the empty string if the first argument string does not contain the second argument string. For example, substring-after("1999/04/01","/") returns 04/01, and substring-after("1999/04/01","19") returns 99/04/01. diff --git a/doc/xmlcatalog.1 b/doc/xmlcatalog.1 index 0e1c1afe..38270cad 100644 --- a/doc/xmlcatalog.1 +++ b/doc/xmlcatalog.1 @@ -2,12 +2,12 @@ .\" Title: xmlcatalog .\" Author: John Fleck .\" Generator: DocBook XSL Stylesheets vsnapshot -.\" Date: 11/04/2023 +.\" Date: 06/12/2024 .\" Manual: xmlcatalog Manual .\" Source: libxml2 .\" Language: English .\" -.TH "XMLCATALOG" "1" "11/04/2023" "libxml2" "xmlcatalog Manual" +.TH "XMLCATALOG" "1" "06/12/2024" "libxml2" "xmlcatalog Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/doc/xmllint.1 b/doc/xmllint.1 index 538bf4b8..855fef3f 100644 --- a/doc/xmllint.1 +++ b/doc/xmllint.1 @@ -2,12 +2,12 @@ .\" Title: xmllint .\" Author: John Fleck .\" Generator: DocBook XSL Stylesheets vsnapshot -.\" Date: 11/04/2023 +.\" Date: 06/12/2024 .\" Manual: xmllint Manual .\" Source: libxml2 .\" Language: English .\" -.TH "XMLLINT" "1" "11/04/2023" "libxml2" "xmllint Manual" +.TH "XMLLINT" "1" "06/12/2024" "libxml2" "xmllint Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -31,7 +31,7 @@ xmllint \- command line XML tool .SH "SYNOPSIS" .HP \w'\fBxmllint\fR\ 'u -\fBxmllint\fR [\fB\-\-version\fR | \fB\-\-debug\fR | \fB\-\-quiet\fR | \fB\-\-shell\fR | \fB\-\-xpath\ "\fR\fB\fIXPath_expression\fR\fR\fB"\fR | \fB\-\-debugent\fR | \fB\-\-copy\fR | \fB\-\-recover\fR | \fB\-\-nodict\fR | \fB\-\-noent\fR | \fB\-\-noout\fR | \fB\-\-nonet\fR | \fB\-\-path\ "\fR\fB\fIPATH(S)\fR\fR\fB"\fR | \fB\-\-load\-trace\fR | \fB\-\-htmlout\fR | \fB\-\-nowrap\fR | \fB\-\-valid\fR | \fB\-\-postvalid\fR | \fB\-\-dtdvalid\ \fR\fB\fIURL\fR\fR | \fB\-\-dtdvalidfpi\ \fR\fB\fIFPI\fR\fR | \fB\-\-timing\fR | \fB\-\-output\ \fR\fB\fIFILE\fR\fR | \fB\-\-repeat\fR | \fB\-\-insert\fR | \fB\-\-compress\fR | \fB\-\-html\fR | \fB\-\-xmlout\fR | \fB\-\-push\fR | \fB\-\-memory\fR | \fB\-\-max\-ampl\ \fR\fB\fIINTEGER\fR\fR | \fB\-\-maxmem\ \fR\fB\fINBBYTES\fR\fR | \fB\-\-nowarning\fR | \fB\-\-noblanks\fR | \fB\-\-nocdata\fR | \fB\-\-format\fR | \fB\-\-encode\ \fR\fB\fIENCODING\fR\fR | \fB\-\-dropdtd\fR | \fB\-\-nsclean\fR | \fB\-\-testIO\fR | \fB\-\-catalogs\fR | \fB\-\-nocatalogs\fR | \fB\-\-auto\fR | \fB\-\-xinclude\fR | \fB\-\-noxincludenode\fR | \fB\-\-loaddtd\fR | \fB\-\-dtdattr\fR | \fB\-\-stream\fR | \fB\-\-walker\fR | \fB\-\-pattern\ \fR\fB\fIPATTERNVALUE\fR\fR | \fB\-\-chkregister\fR | \fB\-\-relaxng\ \fR\fB\fISCHEMA\fR\fR | \fB\-\-schema\ \fR\fB\fISCHEMA\fR\fR | \fB\-\-c14n\fR | \fB\-\-pedantic\fR] {\fIXML\-FILE(S)\fR... | \-} +\fBxmllint\fR [\fB\-\-version\fR | \fB\-\-debug\fR | \fB\-\-quiet\fR | \fB\-\-shell\fR | \fB\-\-xpath\ "\fR\fB\fIXPath_expression\fR\fR\fB"\fR | \fB\-\-debugent\fR | \fB\-\-copy\fR | \fB\-\-recover\fR | \fB\-\-nodict\fR | \fB\-\-noent\fR | \fB\-\-noout\fR | \fB\-\-nonet\fR | \fB\-\-path\ "\fR\fB\fIPATH(S)\fR\fR\fB"\fR | \fB\-\-load\-trace\fR | \fB\-\-htmlout\fR | \fB\-\-nowrap\fR | \fB\-\-valid\fR | \fB\-\-postvalid\fR | \fB\-\-dtdvalid\ \fR\fB\fIURL\fR\fR | \fB\-\-dtdvalidfpi\ \fR\fB\fIFPI\fR\fR | \fB\-\-timing\fR | \fB\-\-output\ \fR\fB\fIFILE\fR\fR | \fB\-\-repeat\fR | \fB\-\-insert\fR | \fB\-\-compress\fR | \fB\-\-html\fR | \fB\-\-xmlout\fR | \fB\-\-push\fR | \fB\-\-memory\fR | \fB\-\-max\-ampl\ \fR\fB\fIINTEGER\fR\fR | \fB\-\-maxmem\ \fR\fB\fINBBYTES\fR\fR | \fB\-\-nowarning\fR | \fB\-\-noblanks\fR | \fB\-\-nocdata\fR | \fB\-\-format\fR | \fB\-\-encode\ \fR\fB\fIENCODING\fR\fR | \fB\-\-dropdtd\fR | \fB\-\-nsclean\fR | \fB\-\-testIO\fR | \fB\-\-catalogs\fR | \fB\-\-nocatalogs\fR | \fB\-\-auto\fR | \fB\-\-xinclude\fR | \fB\-\-noxincludenode\fR | \fB\-\-loaddtd\fR | \fB\-\-dtdattr\fR | \fB\-\-stream\fR | \fB\-\-walker\fR | \fB\-\-pattern\ \fR\fB\fIPATTERNVALUE\fR\fR | \fB\-\-relaxng\ \fR\fB\fISCHEMA\fR\fR | \fB\-\-schema\ \fR\fB\fISCHEMA\fR\fR | \fB\-\-c14n\fR | \fB\-\-pedantic\fR] {\fIXML\-FILE(S)\fR... | \-} .HP \w'\fBxmllint\fR\ 'u \fBxmllint\fR \fB\-\-help\fR .SH "DESCRIPTION" @@ -77,13 +77,6 @@ ${sysconfdir}/xml/catalog are used by default\&. .RE .PP -\fB\-\-chkregister\fR -.RS 4 -Turn on node registration\&. Useful for developers testing -\fBlibxml\fR(3) -node tracking code\&. -.RE -.PP \fB\-\-compress\fR .RS 4 Turn on @@ -357,7 +350,7 @@ the section called \(lqSHELL COMMANDS\(rq)\&. .PP \fB\-\-xpath "\fR\fB\fIXPath_expression\fR\fR\fB"\fR .RS 4 -Run an XPath expression given as argument and print the result\&. In case of a nodeset result, each node in the node set is serialized in full in the output\&. In case of an empty node set the "XPath set is empty" result will be shown and an error exit code will be returned\&. +Run an XPath expression given as argument and print the result\&. In case of a nodeset result, each node in the node set is serialized in full in the output\&. In case of an empty node set the "XPath set is empty" result will be shown and exit code 11 will be returned\&.\&. This feature is EXPERIMENTAL\&. Implementation details can change without futher notice\&. .RE .PP \fB\-\-stream\fR @@ -477,11 +470,6 @@ Leave the shell\&. Show this help\&. .RE .PP -\fBfree\fR -.RS 4 -Display memory usage\&. -.RE -.PP \fBload \fR\fB\fIFILENAME\fR\fR .RS 4 Load a new document with the given filename\&. @@ -599,13 +587,6 @@ Error in pattern (generated when option is used) .RE .PP -\fB8\fR -.RS 4 -Error in Reader registration (generated when -\fB\-\-chkregister\fR -option is used) -.RE -.PP \fB9\fR .RS 4 Out of memory error @@ -615,6 +596,11 @@ Out of memory error .RS 4 XPath evaluation error .RE +.PP +\fB11\fR +.RS 4 +XPath result is empty +.RE .SH "SEE ALSO" .PP \fBlibxml\fR(3) diff --git a/doc/xmllint.html b/doc/xmllint.html index e128c393..dddbb828 100644 --- a/doc/xmllint.html +++ b/doc/xmllint.html @@ -1,4 +1,4 @@ -xmllint

Name

xmllint — command line XML tool

Synopsis

xmllint [ --version | --debug | --quiet | --shell | --xpath "XPath_expression" | --debugent | --copy | --recover | --nodict | --noent | --noout | --nonet | --path "PATH(S)" | --load-trace | --htmlout | --nowrap | --valid | --postvalid | --dtdvalid URL | --dtdvalidfpi FPI | --timing | --output FILE | --repeat | --insert | --compress | --html | --xmlout | --push | --memory | --max-ampl INTEGER | --maxmem NBBYTES | --nowarning | --noblanks | --nocdata | --format | --encode ENCODING | --dropdtd | --nsclean | --testIO | --catalogs | --nocatalogs | --auto | --xinclude | --noxincludenode | --loaddtd | --dtdattr | --stream | --walker | --pattern PATTERNVALUE | --chkregister | --relaxng SCHEMA | --schema SCHEMA | --c14n | --pedantic ] { XML-FILE(S)... | - }

xmllint --help

DESCRIPTION

+xmllint

Name

xmllint — command line XML tool

Synopsis

xmllint [ --version | --debug | --quiet | --shell | --xpath "XPath_expression" | --debugent | --copy | --recover | --nodict | --noent | --noout | --nonet | --path "PATH(S)" | --load-trace | --htmlout | --nowrap | --valid | --postvalid | --dtdvalid URL | --dtdvalidfpi FPI | --timing | --output FILE | --repeat | --insert | --compress | --html | --xmlout | --push | --memory | --max-ampl INTEGER | --maxmem NBBYTES | --nowarning | --noblanks | --nocdata | --format | --encode ENCODING | --dropdtd | --nsclean | --testIO | --catalogs | --nocatalogs | --auto | --xinclude | --noxincludenode | --loaddtd | --dtdattr | --stream | --walker | --pattern PATTERNVALUE | --relaxng SCHEMA | --schema SCHEMA | --c14n | --pedantic ] { XML-FILE(S)... | - }

xmllint --help

DESCRIPTION

The xmllint program parses one or more XML files, specified on the command line as XML-FILE (or the standard input if the filename provided @@ -13,8 +13,6 @@ Otherwise XML catalogs starting from /etc/xml/catalog or, more specifically, ${sysconfdir}/xml/catalog are used by default. -

--chkregister

- Turn on node registration. Useful for developers testing libxml(3) node tracking code.

--compress

Turn on gzip(1) compression of output.

--copy

Test the internal copy implementation.

--c14n

@@ -97,7 +95,9 @@ result. In case of a nodeset result, each node in the node set is serialized in full in the output. In case of an empty node set the "XPath set is empty" result - will be shown and an error exit code will be returned. + will be shown and exit code 11 will be returned.. + This feature is EXPERIMENTAL. Implementation details can + change without futher notice.

--stream

Use streaming API - useful when used in combination with --relaxng or --valid options @@ -137,7 +137,7 @@ Dumps information about the node (namespace, attributes, content).

du PATH

Show the structure of the subtree under the given path or the current node. -

exit

Leave the shell.

help

Show this help.

free

Display memory usage.

load FILENAME

Load a new document with the given filename.

ls PATH

List contents of the given path or the current directory.

pwd

Display the path to the current node.

quit

Leave the shell.

save FILENAME

+

exit

Leave the shell.

help

Show this help.

load FILENAME

Load a new document with the given filename.

ls PATH

List contents of the given path or the current directory.

pwd

Display the path to the current node.

quit

Leave the shell.

save FILENAME

Save the current document to the given filename or to the original name.

validate

Check the document for errors.

write FILENAME

Write the current node to the given filename.

ENVIRONMENT

SGML_CATALOG_FILES

SGML catalog behavior can be changed by redirecting queries to the user's own set of catalogs. This can be done by setting @@ -159,10 +159,7 @@ calling it from scripts.

0

No error

1

Unclassified

2

Error in DTD

3

Validation error

4

Validation error

5

Error in schema compilation

6

Error writing output

7

Error in pattern (generated when --pattern option is used) -

8

- Error in Reader registration (generated - when --chkregister option is used) -

9

Out of memory error

10

XPath evaluation error

SEE ALSO

libxml(3) +

9

Out of memory error

10

XPath evaluation error

11

XPath result is empty

SEE ALSO

libxml(3)

More information can be found at