diff options
Diffstat (limited to 'Frameworks/libxml.framework/Versions/2.6.30')
138 files changed, 0 insertions, 68170 deletions
diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/DOCBparser.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/DOCBparser.h deleted file mode 100644 index 461d4ee8..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/DOCBparser.h +++ /dev/null @@ -1,96 +0,0 @@ -/* - * Summary: old DocBook SGML parser - * Description: interface for a DocBook SGML non-verifying parser - * This code is DEPRECATED, and should not be used anymore. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __DOCB_PARSER_H__ -#define __DOCB_PARSER_H__ -#include <libxml/xmlversion.h> - -#ifdef LIBXML_DOCB_ENABLED - -#include <libxml/parser.h> -#include <libxml/parserInternals.h> - -#ifndef IN_LIBXML -#ifdef __GNUC__ -#warning "The DOCBparser module has been deprecated in libxml2-2.6.0" -#endif -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * Most of the back-end structures from XML and SGML are shared. - */ -typedef xmlParserCtxt docbParserCtxt; -typedef xmlParserCtxtPtr docbParserCtxtPtr; -typedef xmlSAXHandler docbSAXHandler; -typedef xmlSAXHandlerPtr docbSAXHandlerPtr; -typedef xmlParserInput docbParserInput; -typedef xmlParserInputPtr docbParserInputPtr; -typedef xmlDocPtr docbDocPtr; - -/* - * There is only few public functions. - */ -XMLPUBFUN int XMLCALL - docbEncodeEntities(unsigned char *out, - int *outlen, - const unsigned char *in, - int *inlen, int quoteChar); - -XMLPUBFUN docbDocPtr XMLCALL - docbSAXParseDoc (xmlChar *cur, - const char *encoding, - docbSAXHandlerPtr sax, - void *userData); -XMLPUBFUN docbDocPtr XMLCALL - docbParseDoc (xmlChar *cur, - const char *encoding); -XMLPUBFUN docbDocPtr XMLCALL - docbSAXParseFile (const char *filename, - const char *encoding, - docbSAXHandlerPtr sax, - void *userData); -XMLPUBFUN docbDocPtr XMLCALL - docbParseFile (const char *filename, - const char *encoding); - -/** - * Interfaces for the Push mode. - */ -XMLPUBFUN void XMLCALL - docbFreeParserCtxt (docbParserCtxtPtr ctxt); -XMLPUBFUN docbParserCtxtPtr XMLCALL - docbCreatePushParserCtxt(docbSAXHandlerPtr sax, - void *user_data, - const char *chunk, - int size, - const char *filename, - xmlCharEncoding enc); -XMLPUBFUN int XMLCALL - docbParseChunk (docbParserCtxtPtr ctxt, - const char *chunk, - int size, - int terminate); -XMLPUBFUN docbParserCtxtPtr XMLCALL - docbCreateFileParserCtxt(const char *filename, - const char *encoding); -XMLPUBFUN int XMLCALL - docbParseDocument (docbParserCtxtPtr ctxt); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_DOCB_ENABLED */ - -#endif /* __DOCB_PARSER_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/HTMLparser.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/HTMLparser.h deleted file mode 100644 index 05905e4b..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/HTMLparser.h +++ /dev/null @@ -1,303 +0,0 @@ -/* - * Summary: interface for an HTML 4.0 non-verifying parser - * Description: this module implements an HTML 4.0 non-verifying parser - * with API compatible with the XML parser ones. It should - * be able to parse "real world" HTML, even if severely - * broken from a specification point of view. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __HTML_PARSER_H__ -#define __HTML_PARSER_H__ -#include <libxml/xmlversion.h> -#include <libxml/parser.h> - -#ifdef LIBXML_HTML_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * Most of the back-end structures from XML and HTML are shared. - */ -typedef xmlParserCtxt htmlParserCtxt; -typedef xmlParserCtxtPtr htmlParserCtxtPtr; -typedef xmlParserNodeInfo htmlParserNodeInfo; -typedef xmlSAXHandler htmlSAXHandler; -typedef xmlSAXHandlerPtr htmlSAXHandlerPtr; -typedef xmlParserInput htmlParserInput; -typedef xmlParserInputPtr htmlParserInputPtr; -typedef xmlDocPtr htmlDocPtr; -typedef xmlNodePtr htmlNodePtr; - -/* - * Internal description of an HTML element, representing HTML 4.01 - * and XHTML 1.0 (which share the same structure). - */ -typedef struct _htmlElemDesc htmlElemDesc; -typedef htmlElemDesc *htmlElemDescPtr; -struct _htmlElemDesc { - const char *name; /* The tag name */ - char startTag; /* Whether the start tag can be implied */ - char endTag; /* Whether the end tag can be implied */ - char saveEndTag; /* Whether the end tag should be saved */ - char empty; /* Is this an empty element ? */ - char depr; /* Is this a deprecated element ? */ - char dtd; /* 1: only in Loose DTD, 2: only Frameset one */ - char isinline; /* is this a block 0 or inline 1 element */ - const char *desc; /* the description */ - -/* NRK Jan.2003 - * New fields encapsulating HTML structure - * - * Bugs: - * This is a very limited representation. It fails to tell us when - * an element *requires* subelements (we only have whether they're - * allowed or not), and it doesn't tell us where CDATA and PCDATA - * are allowed. Some element relationships are not fully represented: - * these are flagged with the word MODIFIER - */ - const char** subelts; /* allowed sub-elements of this element */ - const char* defaultsubelt; /* subelement for suggested auto-repair - if necessary or NULL */ - const char** attrs_opt; /* Optional Attributes */ - const char** attrs_depr; /* Additional deprecated attributes */ - const char** attrs_req; /* Required attributes */ -}; - -/* - * Internal description of an HTML entity. - */ -typedef struct _htmlEntityDesc htmlEntityDesc; -typedef htmlEntityDesc *htmlEntityDescPtr; -struct _htmlEntityDesc { - unsigned int value; /* the UNICODE value for the character */ - const char *name; /* The entity name */ - const char *desc; /* the description */ -}; - -/* - * There is only few public functions. - */ -XMLPUBFUN const htmlElemDesc * XMLCALL - htmlTagLookup (const xmlChar *tag); -XMLPUBFUN const htmlEntityDesc * XMLCALL - htmlEntityLookup(const xmlChar *name); -XMLPUBFUN const htmlEntityDesc * XMLCALL - htmlEntityValueLookup(unsigned int value); - -XMLPUBFUN int XMLCALL - htmlIsAutoClosed(htmlDocPtr doc, - htmlNodePtr elem); -XMLPUBFUN int XMLCALL - htmlAutoCloseTag(htmlDocPtr doc, - const xmlChar *name, - htmlNodePtr elem); -XMLPUBFUN const htmlEntityDesc * XMLCALL - htmlParseEntityRef(htmlParserCtxtPtr ctxt, - const xmlChar **str); -XMLPUBFUN int XMLCALL - htmlParseCharRef(htmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - htmlParseElement(htmlParserCtxtPtr ctxt); - -XMLPUBFUN htmlParserCtxtPtr XMLCALL - htmlNewParserCtxt(void); - -XMLPUBFUN htmlParserCtxtPtr XMLCALL - htmlCreateMemoryParserCtxt(const char *buffer, - int size); - -XMLPUBFUN int XMLCALL - htmlParseDocument(htmlParserCtxtPtr ctxt); -XMLPUBFUN htmlDocPtr XMLCALL - htmlSAXParseDoc (xmlChar *cur, - const char *encoding, - htmlSAXHandlerPtr sax, - void *userData); -XMLPUBFUN htmlDocPtr XMLCALL - htmlParseDoc (xmlChar *cur, - const char *encoding); -XMLPUBFUN htmlDocPtr XMLCALL - htmlSAXParseFile(const char *filename, - const char *encoding, - htmlSAXHandlerPtr sax, - void *userData); -XMLPUBFUN htmlDocPtr XMLCALL - htmlParseFile (const char *filename, - const char *encoding); -XMLPUBFUN int XMLCALL - UTF8ToHtml (unsigned char *out, - int *outlen, - const unsigned char *in, - int *inlen); -XMLPUBFUN int XMLCALL - htmlEncodeEntities(unsigned char *out, - int *outlen, - const unsigned char *in, - int *inlen, int quoteChar); -XMLPUBFUN int XMLCALL - htmlIsScriptAttribute(const xmlChar *name); -XMLPUBFUN int XMLCALL - htmlHandleOmittedElem(int val); - -#ifdef LIBXML_PUSH_ENABLED -/** - * Interfaces for the Push mode. - */ -XMLPUBFUN htmlParserCtxtPtr XMLCALL - htmlCreatePushParserCtxt(htmlSAXHandlerPtr sax, - void *user_data, - const char *chunk, - int size, - const char *filename, - xmlCharEncoding enc); -XMLPUBFUN int XMLCALL - htmlParseChunk (htmlParserCtxtPtr ctxt, - const char *chunk, - int size, - int terminate); -#endif /* LIBXML_PUSH_ENABLED */ - -XMLPUBFUN void XMLCALL - htmlFreeParserCtxt (htmlParserCtxtPtr ctxt); - -/* - * New set of simpler/more flexible APIs - */ -/** - * xmlParserOption: - * - * This is the set of XML parser options that can be passed down - * to the xmlReadDoc() and similar calls. - */ -typedef enum { - HTML_PARSE_RECOVER = 1<<0, /* Relaxed parsing */ - HTML_PARSE_NOERROR = 1<<5, /* suppress error reports */ - HTML_PARSE_NOWARNING= 1<<6, /* suppress warning reports */ - HTML_PARSE_PEDANTIC = 1<<7, /* pedantic error reporting */ - HTML_PARSE_NOBLANKS = 1<<8, /* remove blank nodes */ - HTML_PARSE_NONET = 1<<11,/* Forbid network access */ - HTML_PARSE_COMPACT = 1<<16 /* compact small text nodes */ -} htmlParserOption; - -XMLPUBFUN void XMLCALL - htmlCtxtReset (htmlParserCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - htmlCtxtUseOptions (htmlParserCtxtPtr ctxt, - int options); -XMLPUBFUN htmlDocPtr XMLCALL - htmlReadDoc (const xmlChar *cur, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN htmlDocPtr XMLCALL - htmlReadFile (const char *URL, - const char *encoding, - int options); -XMLPUBFUN htmlDocPtr XMLCALL - htmlReadMemory (const char *buffer, - int size, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN htmlDocPtr XMLCALL - htmlReadFd (int fd, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN htmlDocPtr XMLCALL - htmlReadIO (xmlInputReadCallback ioread, - xmlInputCloseCallback ioclose, - void *ioctx, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN htmlDocPtr XMLCALL - htmlCtxtReadDoc (xmlParserCtxtPtr ctxt, - const xmlChar *cur, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN htmlDocPtr XMLCALL - htmlCtxtReadFile (xmlParserCtxtPtr ctxt, - const char *filename, - const char *encoding, - int options); -XMLPUBFUN htmlDocPtr XMLCALL - htmlCtxtReadMemory (xmlParserCtxtPtr ctxt, - const char *buffer, - int size, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN htmlDocPtr XMLCALL - htmlCtxtReadFd (xmlParserCtxtPtr ctxt, - int fd, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN htmlDocPtr XMLCALL - htmlCtxtReadIO (xmlParserCtxtPtr ctxt, - xmlInputReadCallback ioread, - xmlInputCloseCallback ioclose, - void *ioctx, - const char *URL, - const char *encoding, - int options); - -/* NRK/Jan2003: further knowledge of HTML structure - */ -typedef enum { - HTML_NA = 0 , /* something we don't check at all */ - HTML_INVALID = 0x1 , - HTML_DEPRECATED = 0x2 , - HTML_VALID = 0x4 , - HTML_REQUIRED = 0xc /* VALID bit set so ( & HTML_VALID ) is TRUE */ -} htmlStatus ; - -/* Using htmlElemDesc rather than name here, to emphasise the fact - that otherwise there's a lookup overhead -*/ -XMLPUBFUN htmlStatus XMLCALL htmlAttrAllowed(const htmlElemDesc*, const xmlChar*, int) ; -XMLPUBFUN int XMLCALL htmlElementAllowedHere(const htmlElemDesc*, const xmlChar*) ; -XMLPUBFUN htmlStatus XMLCALL htmlElementStatusHere(const htmlElemDesc*, const htmlElemDesc*) ; -XMLPUBFUN htmlStatus XMLCALL htmlNodeStatus(const htmlNodePtr, int) ; -/** - * htmlDefaultSubelement: - * @elt: HTML element - * - * Returns the default subelement for this element - */ -#define htmlDefaultSubelement(elt) elt->defaultsubelt -/** - * htmlElementAllowedHereDesc: - * @parent: HTML parent element - * @elt: HTML element - * - * Checks whether an HTML element description may be a - * direct child of the specified element. - * - * Returns 1 if allowed; 0 otherwise. - */ -#define htmlElementAllowedHereDesc(parent,elt) \ - htmlElementAllowedHere((parent), (elt)->name) -/** - * htmlRequiredAttrs: - * @elt: HTML element - * - * Returns the attributes required for the specified element. - */ -#define htmlRequiredAttrs(elt) (elt)->attrs_req - - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_HTML_ENABLED */ -#endif /* __HTML_PARSER_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/HTMLtree.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/HTMLtree.h deleted file mode 100644 index 6ea82078..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/HTMLtree.h +++ /dev/null @@ -1,147 +0,0 @@ -/* - * Summary: specific APIs to process HTML tree, especially serialization - * Description: this module implements a few function needed to process - * tree in an HTML specific way. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __HTML_TREE_H__ -#define __HTML_TREE_H__ - -#include <stdio.h> -#include <libxml/xmlversion.h> -#include <libxml/tree.h> -#include <libxml/HTMLparser.h> - -#ifdef LIBXML_HTML_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - - -/** - * HTML_TEXT_NODE: - * - * Macro. A text node in a HTML document is really implemented - * the same way as a text node in an XML document. - */ -#define HTML_TEXT_NODE XML_TEXT_NODE -/** - * HTML_ENTITY_REF_NODE: - * - * Macro. An entity reference in a HTML document is really implemented - * the same way as an entity reference in an XML document. - */ -#define HTML_ENTITY_REF_NODE XML_ENTITY_REF_NODE -/** - * HTML_COMMENT_NODE: - * - * Macro. A comment in a HTML document is really implemented - * the same way as a comment in an XML document. - */ -#define HTML_COMMENT_NODE XML_COMMENT_NODE -/** - * HTML_PRESERVE_NODE: - * - * Macro. A preserved node in a HTML document is really implemented - * the same way as a CDATA section in an XML document. - */ -#define HTML_PRESERVE_NODE XML_CDATA_SECTION_NODE -/** - * HTML_PI_NODE: - * - * Macro. A processing instruction in a HTML document is really implemented - * the same way as a processing instruction in an XML document. - */ -#define HTML_PI_NODE XML_PI_NODE - -XMLPUBFUN htmlDocPtr XMLCALL - htmlNewDoc (const xmlChar *URI, - const xmlChar *ExternalID); -XMLPUBFUN htmlDocPtr XMLCALL - htmlNewDocNoDtD (const xmlChar *URI, - const xmlChar *ExternalID); -XMLPUBFUN const xmlChar * XMLCALL - htmlGetMetaEncoding (htmlDocPtr doc); -XMLPUBFUN int XMLCALL - htmlSetMetaEncoding (htmlDocPtr doc, - const xmlChar *encoding); -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN void XMLCALL - htmlDocDumpMemory (xmlDocPtr cur, - xmlChar **mem, - int *size); -XMLPUBFUN void XMLCALL - htmlDocDumpMemoryFormat (xmlDocPtr cur, - xmlChar **mem, - int *size, - int format); -XMLPUBFUN int XMLCALL - htmlDocDump (FILE *f, - xmlDocPtr cur); -XMLPUBFUN int XMLCALL - htmlSaveFile (const char *filename, - xmlDocPtr cur); -XMLPUBFUN int XMLCALL - htmlNodeDump (xmlBufferPtr buf, - xmlDocPtr doc, - xmlNodePtr cur); -XMLPUBFUN void XMLCALL - htmlNodeDumpFile (FILE *out, - xmlDocPtr doc, - xmlNodePtr cur); -XMLPUBFUN int XMLCALL - htmlNodeDumpFileFormat (FILE *out, - xmlDocPtr doc, - xmlNodePtr cur, - const char *encoding, - int format); -XMLPUBFUN int XMLCALL - htmlSaveFileEnc (const char *filename, - xmlDocPtr cur, - const char *encoding); -XMLPUBFUN int XMLCALL - htmlSaveFileFormat (const char *filename, - xmlDocPtr cur, - const char *encoding, - int format); - -XMLPUBFUN void XMLCALL - htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, - xmlDocPtr doc, - xmlNodePtr cur, - const char *encoding, - int format); -XMLPUBFUN void XMLCALL - htmlDocContentDumpOutput(xmlOutputBufferPtr buf, - xmlDocPtr cur, - const char *encoding); -XMLPUBFUN void XMLCALL - htmlDocContentDumpFormatOutput(xmlOutputBufferPtr buf, - xmlDocPtr cur, - const char *encoding, - int format); -XMLPUBFUN void XMLCALL - htmlNodeDumpOutput (xmlOutputBufferPtr buf, - xmlDocPtr doc, - xmlNodePtr cur, - const char *encoding); - -#endif /* LIBXML_OUTPUT_ENABLED */ - -XMLPUBFUN int XMLCALL - htmlIsBooleanAttr (const xmlChar *name); - - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_HTML_ENABLED */ - -#endif /* __HTML_TREE_H__ */ - diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/SAX.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/SAX.h deleted file mode 100644 index 0ca161b6..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/SAX.h +++ /dev/null @@ -1,173 +0,0 @@ -/* - * Summary: Old SAX version 1 handler, deprecated - * Description: DEPRECATED set of SAX version 1 interfaces used to - * build the DOM tree. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - - -#ifndef __XML_SAX_H__ -#define __XML_SAX_H__ - -#include <stdio.h> -#include <stdlib.h> -#include <libxml/xmlversion.h> -#include <libxml/parser.h> -#include <libxml/xlink.h> - -#ifdef LIBXML_LEGACY_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif -XMLPUBFUN const xmlChar * XMLCALL - getPublicId (void *ctx); -XMLPUBFUN const xmlChar * XMLCALL - getSystemId (void *ctx); -XMLPUBFUN void XMLCALL - setDocumentLocator (void *ctx, - xmlSAXLocatorPtr loc); - -XMLPUBFUN int XMLCALL - getLineNumber (void *ctx); -XMLPUBFUN int XMLCALL - getColumnNumber (void *ctx); - -XMLPUBFUN int XMLCALL - isStandalone (void *ctx); -XMLPUBFUN int XMLCALL - hasInternalSubset (void *ctx); -XMLPUBFUN int XMLCALL - hasExternalSubset (void *ctx); - -XMLPUBFUN void XMLCALL - internalSubset (void *ctx, - const xmlChar *name, - const xmlChar *ExternalID, - const xmlChar *SystemID); -XMLPUBFUN void XMLCALL - externalSubset (void *ctx, - const xmlChar *name, - const xmlChar *ExternalID, - const xmlChar *SystemID); -XMLPUBFUN xmlEntityPtr XMLCALL - getEntity (void *ctx, - const xmlChar *name); -XMLPUBFUN xmlEntityPtr XMLCALL - getParameterEntity (void *ctx, - const xmlChar *name); -XMLPUBFUN xmlParserInputPtr XMLCALL - resolveEntity (void *ctx, - const xmlChar *publicId, - const xmlChar *systemId); - -XMLPUBFUN void XMLCALL - entityDecl (void *ctx, - const xmlChar *name, - int type, - const xmlChar *publicId, - const xmlChar *systemId, - xmlChar *content); -XMLPUBFUN void XMLCALL - attributeDecl (void *ctx, - const xmlChar *elem, - const xmlChar *fullname, - int type, - int def, - const xmlChar *defaultValue, - xmlEnumerationPtr tree); -XMLPUBFUN void XMLCALL - elementDecl (void *ctx, - const xmlChar *name, - int type, - xmlElementContentPtr content); -XMLPUBFUN void XMLCALL - notationDecl (void *ctx, - const xmlChar *name, - const xmlChar *publicId, - const xmlChar *systemId); -XMLPUBFUN void XMLCALL - unparsedEntityDecl (void *ctx, - const xmlChar *name, - const xmlChar *publicId, - const xmlChar *systemId, - const xmlChar *notationName); - -XMLPUBFUN void XMLCALL - startDocument (void *ctx); -XMLPUBFUN void XMLCALL - endDocument (void *ctx); -XMLPUBFUN void XMLCALL - attribute (void *ctx, - const xmlChar *fullname, - const xmlChar *value); -XMLPUBFUN void XMLCALL - startElement (void *ctx, - const xmlChar *fullname, - const xmlChar **atts); -XMLPUBFUN void XMLCALL - endElement (void *ctx, - const xmlChar *name); -XMLPUBFUN void XMLCALL - reference (void *ctx, - const xmlChar *name); -XMLPUBFUN void XMLCALL - characters (void *ctx, - const xmlChar *ch, - int len); -XMLPUBFUN void XMLCALL - ignorableWhitespace (void *ctx, - const xmlChar *ch, - int len); -XMLPUBFUN void XMLCALL - processingInstruction (void *ctx, - const xmlChar *target, - const xmlChar *data); -XMLPUBFUN void XMLCALL - globalNamespace (void *ctx, - const xmlChar *href, - const xmlChar *prefix); -XMLPUBFUN void XMLCALL - setNamespace (void *ctx, - const xmlChar *name); -XMLPUBFUN xmlNsPtr XMLCALL - getNamespace (void *ctx); -XMLPUBFUN int XMLCALL - checkNamespace (void *ctx, - xmlChar *nameSpace); -XMLPUBFUN void XMLCALL - namespaceDecl (void *ctx, - const xmlChar *href, - const xmlChar *prefix); -XMLPUBFUN void XMLCALL - comment (void *ctx, - const xmlChar *value); -XMLPUBFUN void XMLCALL - cdataBlock (void *ctx, - const xmlChar *value, - int len); - -#ifdef LIBXML_SAX1_ENABLED -XMLPUBFUN void XMLCALL - initxmlDefaultSAXHandler (xmlSAXHandlerV1 *hdlr, - int warning); -#ifdef LIBXML_HTML_ENABLED -XMLPUBFUN void XMLCALL - inithtmlDefaultSAXHandler (xmlSAXHandlerV1 *hdlr); -#endif -#ifdef LIBXML_DOCB_ENABLED -XMLPUBFUN void XMLCALL - initdocbDefaultSAXHandler (xmlSAXHandlerV1 *hdlr); -#endif -#endif /* LIBXML_SAX1_ENABLED */ - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_LEGACY_ENABLED */ - -#endif /* __XML_SAX_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/SAX2.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/SAX2.h deleted file mode 100644 index 8d2db02d..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/SAX2.h +++ /dev/null @@ -1,176 +0,0 @@ -/* - * Summary: SAX2 parser interface used to build the DOM tree - * Description: those are the default SAX2 interfaces used by - * the library when building DOM tree. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - - -#ifndef __XML_SAX2_H__ -#define __XML_SAX2_H__ - -#include <stdio.h> -#include <stdlib.h> -#include <libxml/xmlversion.h> -#include <libxml/parser.h> -#include <libxml/xlink.h> - -#ifdef __cplusplus -extern "C" { -#endif -XMLPUBFUN const xmlChar * XMLCALL - xmlSAX2GetPublicId (void *ctx); -XMLPUBFUN const xmlChar * XMLCALL - xmlSAX2GetSystemId (void *ctx); -XMLPUBFUN void XMLCALL - xmlSAX2SetDocumentLocator (void *ctx, - xmlSAXLocatorPtr loc); - -XMLPUBFUN int XMLCALL - xmlSAX2GetLineNumber (void *ctx); -XMLPUBFUN int XMLCALL - xmlSAX2GetColumnNumber (void *ctx); - -XMLPUBFUN int XMLCALL - xmlSAX2IsStandalone (void *ctx); -XMLPUBFUN int XMLCALL - xmlSAX2HasInternalSubset (void *ctx); -XMLPUBFUN int XMLCALL - xmlSAX2HasExternalSubset (void *ctx); - -XMLPUBFUN void XMLCALL - xmlSAX2InternalSubset (void *ctx, - const xmlChar *name, - const xmlChar *ExternalID, - const xmlChar *SystemID); -XMLPUBFUN void XMLCALL - xmlSAX2ExternalSubset (void *ctx, - const xmlChar *name, - const xmlChar *ExternalID, - const xmlChar *SystemID); -XMLPUBFUN xmlEntityPtr XMLCALL - xmlSAX2GetEntity (void *ctx, - const xmlChar *name); -XMLPUBFUN xmlEntityPtr XMLCALL - xmlSAX2GetParameterEntity (void *ctx, - const xmlChar *name); -XMLPUBFUN xmlParserInputPtr XMLCALL - xmlSAX2ResolveEntity (void *ctx, - const xmlChar *publicId, - const xmlChar *systemId); - -XMLPUBFUN void XMLCALL - xmlSAX2EntityDecl (void *ctx, - const xmlChar *name, - int type, - const xmlChar *publicId, - const xmlChar *systemId, - xmlChar *content); -XMLPUBFUN void XMLCALL - xmlSAX2AttributeDecl (void *ctx, - const xmlChar *elem, - const xmlChar *fullname, - int type, - int def, - const xmlChar *defaultValue, - xmlEnumerationPtr tree); -XMLPUBFUN void XMLCALL - xmlSAX2ElementDecl (void *ctx, - const xmlChar *name, - int type, - xmlElementContentPtr content); -XMLPUBFUN void XMLCALL - xmlSAX2NotationDecl (void *ctx, - const xmlChar *name, - const xmlChar *publicId, - const xmlChar *systemId); -XMLPUBFUN void XMLCALL - xmlSAX2UnparsedEntityDecl (void *ctx, - const xmlChar *name, - const xmlChar *publicId, - const xmlChar *systemId, - const xmlChar *notationName); - -XMLPUBFUN void XMLCALL - xmlSAX2StartDocument (void *ctx); -XMLPUBFUN void XMLCALL - xmlSAX2EndDocument (void *ctx); -#if defined(LIBXML_SAX1_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_WRITER_ENABLED) || defined(LIBXML_DOCB_ENABLED) -XMLPUBFUN void XMLCALL - xmlSAX2StartElement (void *ctx, - const xmlChar *fullname, - const xmlChar **atts); -XMLPUBFUN void XMLCALL - xmlSAX2EndElement (void *ctx, - const xmlChar *name); -#endif /* LIBXML_SAX1_ENABLED or LIBXML_HTML_ENABLED */ -XMLPUBFUN void XMLCALL - xmlSAX2StartElementNs (void *ctx, - const xmlChar *localname, - const xmlChar *prefix, - const xmlChar *URI, - int nb_namespaces, - const xmlChar **namespaces, - int nb_attributes, - int nb_defaulted, - const xmlChar **attributes); -XMLPUBFUN void XMLCALL - xmlSAX2EndElementNs (void *ctx, - const xmlChar *localname, - const xmlChar *prefix, - const xmlChar *URI); -XMLPUBFUN void XMLCALL - xmlSAX2Reference (void *ctx, - const xmlChar *name); -XMLPUBFUN void XMLCALL - xmlSAX2Characters (void *ctx, - const xmlChar *ch, - int len); -XMLPUBFUN void XMLCALL - xmlSAX2IgnorableWhitespace (void *ctx, - const xmlChar *ch, - int len); -XMLPUBFUN void XMLCALL - xmlSAX2ProcessingInstruction (void *ctx, - const xmlChar *target, - const xmlChar *data); -XMLPUBFUN void XMLCALL - xmlSAX2Comment (void *ctx, - const xmlChar *value); -XMLPUBFUN void XMLCALL - xmlSAX2CDataBlock (void *ctx, - const xmlChar *value, - int len); - -#ifdef LIBXML_SAX1_ENABLED -XMLPUBFUN int XMLCALL - xmlSAXDefaultVersion (int version); -#endif /* LIBXML_SAX1_ENABLED */ - -XMLPUBFUN int XMLCALL - xmlSAXVersion (xmlSAXHandler *hdlr, - int version); -XMLPUBFUN void XMLCALL - xmlSAX2InitDefaultSAXHandler (xmlSAXHandler *hdlr, - int warning); -#ifdef LIBXML_HTML_ENABLED -XMLPUBFUN void XMLCALL - xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr); -XMLPUBFUN void XMLCALL - htmlDefaultSAXHandlerInit (void); -#endif -#ifdef LIBXML_DOCB_ENABLED -XMLPUBFUN void XMLCALL - xmlSAX2InitDocbDefaultSAXHandler(xmlSAXHandler *hdlr); -XMLPUBFUN void XMLCALL - docbDefaultSAXHandlerInit (void); -#endif -XMLPUBFUN void XMLCALL - xmlDefaultSAXHandlerInit (void); -#ifdef __cplusplus -} -#endif -#endif /* __XML_SAX2_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/c14n.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/c14n.h deleted file mode 100644 index 9f4c6c01..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/c14n.h +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Summary: Provide Canonical XML and Exclusive XML Canonicalization - * Description: the c14n modules provides a - * - * "Canonical XML" implementation - * http://www.w3.org/TR/xml-c14n - * - * and an - * - * "Exclusive XML Canonicalization" implementation - * http://www.w3.org/TR/xml-exc-c14n - - * Copy: See Copyright for the status of this software. - * - * Author: Aleksey Sanin <aleksey@aleksey.com> - */ -#ifndef __XML_C14N_H__ -#define __XML_C14N_H__ -#ifdef LIBXML_C14N_ENABLED -#ifdef LIBXML_OUTPUT_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -#include <libxml/xmlversion.h> -#include <libxml/tree.h> -#include <libxml/xpath.h> - -/* - * XML Canonicazation - * http://www.w3.org/TR/xml-c14n - * - * Exclusive XML Canonicazation - * http://www.w3.org/TR/xml-exc-c14n - * - * Canonical form of an XML document could be created if and only if - * a) default attributes (if any) are added to all nodes - * b) all character and parsed entity references are resolved - * In order to achive this in libxml2 the document MUST be loaded with - * following global setings: - * - * xmlLoadExtDtdDefaultValue = XML_DETECT_IDS | XML_COMPLETE_ATTRS; - * xmlSubstituteEntitiesDefault(1); - * - * or corresponding parser context setting: - * xmlParserCtxtPtr ctxt; - * - * ... - * ctxt->loadsubset = XML_DETECT_IDS | XML_COMPLETE_ATTRS; - * ctxt->replaceEntities = 1; - * ... - */ - - -XMLPUBFUN int XMLCALL - xmlC14NDocSaveTo (xmlDocPtr doc, - xmlNodeSetPtr nodes, - int exclusive, - xmlChar **inclusive_ns_prefixes, - int with_comments, - xmlOutputBufferPtr buf); - -XMLPUBFUN int XMLCALL - xmlC14NDocDumpMemory (xmlDocPtr doc, - xmlNodeSetPtr nodes, - int exclusive, - xmlChar **inclusive_ns_prefixes, - int with_comments, - xmlChar **doc_txt_ptr); - -XMLPUBFUN int XMLCALL - xmlC14NDocSave (xmlDocPtr doc, - xmlNodeSetPtr nodes, - int exclusive, - xmlChar **inclusive_ns_prefixes, - int with_comments, - const char* filename, - int compression); - - -/** - * This is the core C14N function - */ -typedef int (*xmlC14NIsVisibleCallback) (void* user_data, - xmlNodePtr node, - xmlNodePtr parent); - -XMLPUBFUN int XMLCALL - xmlC14NExecute (xmlDocPtr doc, - xmlC14NIsVisibleCallback is_visible_callback, - void* user_data, - int exclusive, - xmlChar **inclusive_ns_prefixes, - int with_comments, - xmlOutputBufferPtr buf); - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - -#endif /* LIBXML_OUTPUT_ENABLED */ -#endif /* LIBXML_C14N_ENABLED */ -#endif /* __XML_C14N_H__ */ - diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/catalog.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/catalog.h deleted file mode 100644 index b4441370..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/catalog.h +++ /dev/null @@ -1,182 +0,0 @@ -/** - * Summary: interfaces to the Catalog handling system - * Description: the catalog module implements the support for - * XML Catalogs and SGML catalogs - * - * SGML Open Technical Resolution TR9401:1997. - * http://www.jclark.com/sp/catalog.htm - * - * XML Catalogs Working Draft 06 August 2001 - * http://www.oasis-open.org/committees/entity/spec-2001-08-06.html - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_CATALOG_H__ -#define __XML_CATALOG_H__ - -#include <stdio.h> - -#include <libxml/xmlversion.h> -#include <libxml/xmlstring.h> -#include <libxml/tree.h> - -#ifdef LIBXML_CATALOG_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * XML_CATALOGS_NAMESPACE: - * - * The namespace for the XML Catalogs elements. - */ -#define XML_CATALOGS_NAMESPACE \ - (const xmlChar *) "urn:oasis:names:tc:entity:xmlns:xml:catalog" -/** - * XML_CATALOG_PI: - * - * The specific XML Catalog Processing Instuction name. - */ -#define XML_CATALOG_PI \ - (const xmlChar *) "oasis-xml-catalog" - -/* - * The API is voluntarily limited to general cataloging. - */ -typedef enum { - XML_CATA_PREFER_NONE = 0, - XML_CATA_PREFER_PUBLIC = 1, - XML_CATA_PREFER_SYSTEM -} xmlCatalogPrefer; - -typedef enum { - XML_CATA_ALLOW_NONE = 0, - XML_CATA_ALLOW_GLOBAL = 1, - XML_CATA_ALLOW_DOCUMENT = 2, - XML_CATA_ALLOW_ALL = 3 -} xmlCatalogAllow; - -typedef struct _xmlCatalog xmlCatalog; -typedef xmlCatalog *xmlCatalogPtr; - -/* - * Operations on a given catalog. - */ -XMLPUBFUN xmlCatalogPtr XMLCALL - xmlNewCatalog (int sgml); -XMLPUBFUN xmlCatalogPtr XMLCALL - xmlLoadACatalog (const char *filename); -XMLPUBFUN xmlCatalogPtr XMLCALL - xmlLoadSGMLSuperCatalog (const char *filename); -XMLPUBFUN int XMLCALL - xmlConvertSGMLCatalog (xmlCatalogPtr catal); -XMLPUBFUN int XMLCALL - xmlACatalogAdd (xmlCatalogPtr catal, - const xmlChar *type, - const xmlChar *orig, - const xmlChar *replace); -XMLPUBFUN int XMLCALL - xmlACatalogRemove (xmlCatalogPtr catal, - const xmlChar *value); -XMLPUBFUN xmlChar * XMLCALL - xmlACatalogResolve (xmlCatalogPtr catal, - const xmlChar *pubID, - const xmlChar *sysID); -XMLPUBFUN xmlChar * XMLCALL - xmlACatalogResolveSystem(xmlCatalogPtr catal, - const xmlChar *sysID); -XMLPUBFUN xmlChar * XMLCALL - xmlACatalogResolvePublic(xmlCatalogPtr catal, - const xmlChar *pubID); -XMLPUBFUN xmlChar * XMLCALL - xmlACatalogResolveURI (xmlCatalogPtr catal, - const xmlChar *URI); -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN void XMLCALL - xmlACatalogDump (xmlCatalogPtr catal, - FILE *out); -#endif /* LIBXML_OUTPUT_ENABLED */ -XMLPUBFUN void XMLCALL - xmlFreeCatalog (xmlCatalogPtr catal); -XMLPUBFUN int XMLCALL - xmlCatalogIsEmpty (xmlCatalogPtr catal); - -/* - * Global operations. - */ -XMLPUBFUN void XMLCALL - xmlInitializeCatalog (void); -XMLPUBFUN int XMLCALL - xmlLoadCatalog (const char *filename); -XMLPUBFUN void XMLCALL - xmlLoadCatalogs (const char *paths); -XMLPUBFUN void XMLCALL - xmlCatalogCleanup (void); -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN void XMLCALL - xmlCatalogDump (FILE *out); -#endif /* LIBXML_OUTPUT_ENABLED */ -XMLPUBFUN xmlChar * XMLCALL - xmlCatalogResolve (const xmlChar *pubID, - const xmlChar *sysID); -XMLPUBFUN xmlChar * XMLCALL - xmlCatalogResolveSystem (const xmlChar *sysID); -XMLPUBFUN xmlChar * XMLCALL - xmlCatalogResolvePublic (const xmlChar *pubID); -XMLPUBFUN xmlChar * XMLCALL - xmlCatalogResolveURI (const xmlChar *URI); -XMLPUBFUN int XMLCALL - xmlCatalogAdd (const xmlChar *type, - const xmlChar *orig, - const xmlChar *replace); -XMLPUBFUN int XMLCALL - xmlCatalogRemove (const xmlChar *value); -XMLPUBFUN xmlDocPtr XMLCALL - xmlParseCatalogFile (const char *filename); -XMLPUBFUN int XMLCALL - xmlCatalogConvert (void); - -/* - * Strictly minimal interfaces for per-document catalogs used - * by the parser. - */ -XMLPUBFUN void XMLCALL - xmlCatalogFreeLocal (void *catalogs); -XMLPUBFUN void * XMLCALL - xmlCatalogAddLocal (void *catalogs, - const xmlChar *URL); -XMLPUBFUN xmlChar * XMLCALL - xmlCatalogLocalResolve (void *catalogs, - const xmlChar *pubID, - const xmlChar *sysID); -XMLPUBFUN xmlChar * XMLCALL - xmlCatalogLocalResolveURI(void *catalogs, - const xmlChar *URI); -/* - * Preference settings. - */ -XMLPUBFUN int XMLCALL - xmlCatalogSetDebug (int level); -XMLPUBFUN xmlCatalogPrefer XMLCALL - xmlCatalogSetDefaultPrefer(xmlCatalogPrefer prefer); -XMLPUBFUN void XMLCALL - xmlCatalogSetDefaults (xmlCatalogAllow allow); -XMLPUBFUN xmlCatalogAllow XMLCALL - xmlCatalogGetDefaults (void); - - -/* DEPRECATED interfaces */ -XMLPUBFUN const xmlChar * XMLCALL - xmlCatalogGetSystem (const xmlChar *sysID); -XMLPUBFUN const xmlChar * XMLCALL - xmlCatalogGetPublic (const xmlChar *pubID); - -#ifdef __cplusplus -} -#endif -#endif /* LIBXML_CATALOG_ENABLED */ -#endif /* __XML_CATALOG_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/chvalid.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/chvalid.h deleted file mode 100644 index fb430169..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/chvalid.h +++ /dev/null @@ -1,230 +0,0 @@ -/* - * Summary: Unicode character range checking - * Description: this module exports interfaces for the character - * range validation APIs - * - * This file is automatically generated from the cvs source - * definition files using the genChRanges.py Python script - * - * Generation date: Mon Mar 27 11:09:48 2006 - * Sources: chvalid.def - * Author: William Brack <wbrack@mmm.com.hk> - */ - -#ifndef __XML_CHVALID_H__ -#define __XML_CHVALID_H__ - -#include <libxml/xmlversion.h> -#include <libxml/xmlstring.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * Define our typedefs and structures - * - */ -typedef struct _xmlChSRange xmlChSRange; -typedef xmlChSRange *xmlChSRangePtr; -struct _xmlChSRange { - unsigned short low; - unsigned short high; -}; - -typedef struct _xmlChLRange xmlChLRange; -typedef xmlChLRange *xmlChLRangePtr; -struct _xmlChLRange { - unsigned int low; - unsigned int high; -}; - -typedef struct _xmlChRangeGroup xmlChRangeGroup; -typedef xmlChRangeGroup *xmlChRangeGroupPtr; -struct _xmlChRangeGroup { - int nbShortRange; - int nbLongRange; - const xmlChSRange *shortRange; /* points to an array of ranges */ - const xmlChLRange *longRange; -}; - -/** - * Range checking routine - */ -XMLPUBFUN int XMLCALL - xmlCharInRange(unsigned int val, const xmlChRangeGroup *group); - - -/** - * xmlIsBaseChar_ch: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsBaseChar_ch(c) (((0x41 <= (c)) && ((c) <= 0x5a)) || \ - ((0x61 <= (c)) && ((c) <= 0x7a)) || \ - ((0xc0 <= (c)) && ((c) <= 0xd6)) || \ - ((0xd8 <= (c)) && ((c) <= 0xf6)) || \ - (0xf8 <= (c))) - -/** - * xmlIsBaseCharQ: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsBaseCharQ(c) (((c) < 0x100) ? \ - xmlIsBaseChar_ch((c)) : \ - xmlCharInRange((c), &xmlIsBaseCharGroup)) - -XMLPUBVAR const xmlChRangeGroup xmlIsBaseCharGroup; - -/** - * xmlIsBlank_ch: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsBlank_ch(c) (((c) == 0x20) || \ - ((0x9 <= (c)) && ((c) <= 0xa)) || \ - ((c) == 0xd)) - -/** - * xmlIsBlankQ: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsBlankQ(c) (((c) < 0x100) ? \ - xmlIsBlank_ch((c)) : 0) - - -/** - * xmlIsChar_ch: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsChar_ch(c) (((0x9 <= (c)) && ((c) <= 0xa)) || \ - ((c) == 0xd) || \ - (0x20 <= (c))) - -/** - * xmlIsCharQ: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsCharQ(c) (((c) < 0x100) ? \ - xmlIsChar_ch((c)) :\ - (((0x100 <= (c)) && ((c) <= 0xd7ff)) || \ - ((0xe000 <= (c)) && ((c) <= 0xfffd)) || \ - ((0x10000 <= (c)) && ((c) <= 0x10ffff)))) - -XMLPUBVAR const xmlChRangeGroup xmlIsCharGroup; - -/** - * xmlIsCombiningQ: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsCombiningQ(c) (((c) < 0x100) ? \ - 0 : \ - xmlCharInRange((c), &xmlIsCombiningGroup)) - -XMLPUBVAR const xmlChRangeGroup xmlIsCombiningGroup; - -/** - * xmlIsDigit_ch: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsDigit_ch(c) (((0x30 <= (c)) && ((c) <= 0x39))) - -/** - * xmlIsDigitQ: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsDigitQ(c) (((c) < 0x100) ? \ - xmlIsDigit_ch((c)) : \ - xmlCharInRange((c), &xmlIsDigitGroup)) - -XMLPUBVAR const xmlChRangeGroup xmlIsDigitGroup; - -/** - * xmlIsExtender_ch: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsExtender_ch(c) (((c) == 0xb7)) - -/** - * xmlIsExtenderQ: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsExtenderQ(c) (((c) < 0x100) ? \ - xmlIsExtender_ch((c)) : \ - xmlCharInRange((c), &xmlIsExtenderGroup)) - -XMLPUBVAR const xmlChRangeGroup xmlIsExtenderGroup; - -/** - * xmlIsIdeographicQ: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsIdeographicQ(c) (((c) < 0x100) ? \ - 0 :\ - (((0x4e00 <= (c)) && ((c) <= 0x9fa5)) || \ - ((c) == 0x3007) || \ - ((0x3021 <= (c)) && ((c) <= 0x3029)))) - -XMLPUBVAR const xmlChRangeGroup xmlIsIdeographicGroup; -XMLPUBVAR const unsigned char xmlIsPubidChar_tab[256]; - -/** - * xmlIsPubidChar_ch: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsPubidChar_ch(c) (xmlIsPubidChar_tab[(c)]) - -/** - * xmlIsPubidCharQ: - * @c: char to validate - * - * Automatically generated by genChRanges.py - */ -#define xmlIsPubidCharQ(c) (((c) < 0x100) ? \ - xmlIsPubidChar_ch((c)) : 0) - -XMLPUBFUN int XMLCALL - xmlIsBaseChar(unsigned int ch); -XMLPUBFUN int XMLCALL - xmlIsBlank(unsigned int ch); -XMLPUBFUN int XMLCALL - xmlIsChar(unsigned int ch); -XMLPUBFUN int XMLCALL - xmlIsCombining(unsigned int ch); -XMLPUBFUN int XMLCALL - xmlIsDigit(unsigned int ch); -XMLPUBFUN int XMLCALL - xmlIsExtender(unsigned int ch); -XMLPUBFUN int XMLCALL - xmlIsIdeographic(unsigned int ch); -XMLPUBFUN int XMLCALL - xmlIsPubidChar(unsigned int ch); - -#ifdef __cplusplus -} -#endif -#endif /* __XML_CHVALID_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/debugXML.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/debugXML.h deleted file mode 100644 index 5a9d20bc..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/debugXML.h +++ /dev/null @@ -1,217 +0,0 @@ -/* - * Summary: Tree debugging APIs - * Description: Interfaces to a set of routines used for debugging the tree - * produced by the XML parser. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __DEBUG_XML__ -#define __DEBUG_XML__ -#include <stdio.h> -#include <libxml/xmlversion.h> -#include <libxml/tree.h> - -#ifdef LIBXML_DEBUG_ENABLED - -#include <libxml/xpath.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * The standard Dump routines. - */ -XMLPUBFUN void XMLCALL - xmlDebugDumpString (FILE *output, - const xmlChar *str); -XMLPUBFUN void XMLCALL - xmlDebugDumpAttr (FILE *output, - xmlAttrPtr attr, - int depth); -XMLPUBFUN void XMLCALL - xmlDebugDumpAttrList (FILE *output, - xmlAttrPtr attr, - int depth); -XMLPUBFUN void XMLCALL - xmlDebugDumpOneNode (FILE *output, - xmlNodePtr node, - int depth); -XMLPUBFUN void XMLCALL - xmlDebugDumpNode (FILE *output, - xmlNodePtr node, - int depth); -XMLPUBFUN void XMLCALL - xmlDebugDumpNodeList (FILE *output, - xmlNodePtr node, - int depth); -XMLPUBFUN void XMLCALL - xmlDebugDumpDocumentHead(FILE *output, - xmlDocPtr doc); -XMLPUBFUN void XMLCALL - xmlDebugDumpDocument (FILE *output, - xmlDocPtr doc); -XMLPUBFUN void XMLCALL - xmlDebugDumpDTD (FILE *output, - xmlDtdPtr dtd); -XMLPUBFUN void XMLCALL - xmlDebugDumpEntities (FILE *output, - xmlDocPtr doc); - -/**************************************************************** - * * - * Checking routines * - * * - ****************************************************************/ - -XMLPUBFUN int XMLCALL - xmlDebugCheckDocument (FILE * output, - xmlDocPtr doc); - -/**************************************************************** - * * - * XML shell helpers * - * * - ****************************************************************/ - -XMLPUBFUN void XMLCALL - xmlLsOneNode (FILE *output, xmlNodePtr node); -XMLPUBFUN int XMLCALL - xmlLsCountNode (xmlNodePtr node); - -XMLPUBFUN const char * XMLCALL - xmlBoolToText (int boolval); - -/**************************************************************** - * * - * The XML shell related structures and functions * - * * - ****************************************************************/ - -#ifdef LIBXML_XPATH_ENABLED -/** - * xmlShellReadlineFunc: - * @prompt: a string prompt - * - * This is a generic signature for the XML shell input function. - * - * Returns a string which will be freed by the Shell. - */ -typedef char * (* xmlShellReadlineFunc)(char *prompt); - -/** - * xmlShellCtxt: - * - * A debugging shell context. - * TODO: add the defined function tables. - */ -typedef struct _xmlShellCtxt xmlShellCtxt; -typedef xmlShellCtxt *xmlShellCtxtPtr; -struct _xmlShellCtxt { - char *filename; - xmlDocPtr doc; - xmlNodePtr node; - xmlXPathContextPtr pctxt; - int loaded; - FILE *output; - xmlShellReadlineFunc input; -}; - -/** - * xmlShellCmd: - * @ctxt: a shell context - * @arg: a string argument - * @node: a first node - * @node2: a second node - * - * This is a generic signature for the XML shell functions. - * - * Returns an int, negative returns indicating errors. - */ -typedef int (* xmlShellCmd) (xmlShellCtxtPtr ctxt, - char *arg, - xmlNodePtr node, - xmlNodePtr node2); - -XMLPUBFUN void XMLCALL - xmlShellPrintXPathError (int errorType, - const char *arg); -XMLPUBFUN void XMLCALL - xmlShellPrintXPathResult(xmlXPathObjectPtr list); -XMLPUBFUN int XMLCALL - xmlShellList (xmlShellCtxtPtr ctxt, - char *arg, - xmlNodePtr node, - xmlNodePtr node2); -XMLPUBFUN int XMLCALL - xmlShellBase (xmlShellCtxtPtr ctxt, - char *arg, - xmlNodePtr node, - xmlNodePtr node2); -XMLPUBFUN int XMLCALL - xmlShellDir (xmlShellCtxtPtr ctxt, - char *arg, - xmlNodePtr node, - xmlNodePtr node2); -XMLPUBFUN int XMLCALL - xmlShellLoad (xmlShellCtxtPtr ctxt, - char *filename, - xmlNodePtr node, - xmlNodePtr node2); -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN void XMLCALL - xmlShellPrintNode (xmlNodePtr node); -XMLPUBFUN int XMLCALL - xmlShellCat (xmlShellCtxtPtr ctxt, - char *arg, - xmlNodePtr node, - xmlNodePtr node2); -XMLPUBFUN int XMLCALL - xmlShellWrite (xmlShellCtxtPtr ctxt, - char *filename, - xmlNodePtr node, - xmlNodePtr node2); -XMLPUBFUN int XMLCALL - xmlShellSave (xmlShellCtxtPtr ctxt, - char *filename, - xmlNodePtr node, - xmlNodePtr node2); -#endif /* LIBXML_OUTPUT_ENABLED */ -#ifdef LIBXML_VALID_ENABLED -XMLPUBFUN int XMLCALL - xmlShellValidate (xmlShellCtxtPtr ctxt, - char *dtd, - xmlNodePtr node, - xmlNodePtr node2); -#endif /* LIBXML_VALID_ENABLED */ -XMLPUBFUN int XMLCALL - xmlShellDu (xmlShellCtxtPtr ctxt, - char *arg, - xmlNodePtr tree, - xmlNodePtr node2); -XMLPUBFUN int XMLCALL - xmlShellPwd (xmlShellCtxtPtr ctxt, - char *buffer, - xmlNodePtr node, - xmlNodePtr node2); - -/* - * The Shell interface. - */ -XMLPUBFUN void XMLCALL - xmlShell (xmlDocPtr doc, - char *filename, - xmlShellReadlineFunc input, - FILE *output); - -#endif /* LIBXML_XPATH_ENABLED */ - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_DEBUG_ENABLED */ -#endif /* __DEBUG_XML__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/dict.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/dict.h deleted file mode 100644 index abb8339c..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/dict.h +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Summary: string dictionnary - * Description: dictionary of reusable strings, just used to avoid allocation - * and freeing operations. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_DICT_H__ -#define __XML_DICT_H__ - -#include <libxml/xmlversion.h> -#include <libxml/tree.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * The dictionnary. - */ -typedef struct _xmlDict xmlDict; -typedef xmlDict *xmlDictPtr; - -/* - * Constructor and destructor. - */ -XMLPUBFUN xmlDictPtr XMLCALL - xmlDictCreate (void); -XMLPUBFUN xmlDictPtr XMLCALL - xmlDictCreateSub(xmlDictPtr sub); -XMLPUBFUN int XMLCALL - xmlDictReference(xmlDictPtr dict); -XMLPUBFUN void XMLCALL - xmlDictFree (xmlDictPtr dict); - -/* - * Lookup of entry in the dictionnary. - */ -XMLPUBFUN const xmlChar * XMLCALL - xmlDictLookup (xmlDictPtr dict, - const xmlChar *name, - int len); -XMLPUBFUN const xmlChar * XMLCALL - xmlDictExists (xmlDictPtr dict, - const xmlChar *name, - int len); -XMLPUBFUN const xmlChar * XMLCALL - xmlDictQLookup (xmlDictPtr dict, - const xmlChar *prefix, - const xmlChar *name); -XMLPUBFUN int XMLCALL - xmlDictOwns (xmlDictPtr dict, - const xmlChar *str); -XMLPUBFUN int XMLCALL - xmlDictSize (xmlDictPtr dict); - -/* - * Cleanup function - */ -XMLPUBFUN void XMLCALL - xmlDictCleanup (void); - -#ifdef __cplusplus -} -#endif -#endif /* ! __XML_DICT_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/encoding.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/encoding.h deleted file mode 100644 index c74b25f3..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/encoding.h +++ /dev/null @@ -1,226 +0,0 @@ -/* - * Summary: interface for the encoding conversion functions - * Description: interface for the encoding conversion functions needed for - * XML basic encoding and iconv() support. - * - * Related specs are - * rfc2044 (UTF-8 and UTF-16) F. Yergeau Alis Technologies - * [ISO-10646] UTF-8 and UTF-16 in Annexes - * [ISO-8859-1] ISO Latin-1 characters codes. - * [UNICODE] The Unicode Consortium, "The Unicode Standard -- - * Worldwide Character Encoding -- Version 1.0", Addison- - * Wesley, Volume 1, 1991, Volume 2, 1992. UTF-8 is - * described in Unicode Technical Report #4. - * [US-ASCII] Coded Character Set--7-bit American Standard Code for - * Information Interchange, ANSI X3.4-1986. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_CHAR_ENCODING_H__ -#define __XML_CHAR_ENCODING_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_ICONV_ENABLED -#include <iconv.h> -#endif -#ifdef __cplusplus -extern "C" { -#endif - -/* - * xmlCharEncoding: - * - * Predefined values for some standard encodings. - * Libxml does not do beforehand translation on UTF8 and ISOLatinX. - * It also supports ASCII, ISO-8859-1, and UTF16 (LE and BE) by default. - * - * Anything else would have to be translated to UTF8 before being - * given to the parser itself. The BOM for UTF16 and the encoding - * declaration are looked at and a converter is looked for at that - * point. If not found the parser stops here as asked by the XML REC. A - * converter can be registered by the user using xmlRegisterCharEncodingHandler - * but the current form doesn't allow stateful transcoding (a serious - * problem agreed !). If iconv has been found it will be used - * automatically and allow stateful transcoding, the simplest is then - * to be sure to enable iconv and to provide iconv libs for the encoding - * support needed. - * - * Note that the generic "UTF-16" is not a predefined value. Instead, only - * the specific UTF-16LE and UTF-16BE are present. - */ -typedef enum { - XML_CHAR_ENCODING_ERROR= -1, /* No char encoding detected */ - XML_CHAR_ENCODING_NONE= 0, /* No char encoding detected */ - XML_CHAR_ENCODING_UTF8= 1, /* UTF-8 */ - XML_CHAR_ENCODING_UTF16LE= 2, /* UTF-16 little endian */ - XML_CHAR_ENCODING_UTF16BE= 3, /* UTF-16 big endian */ - XML_CHAR_ENCODING_UCS4LE= 4, /* UCS-4 little endian */ - XML_CHAR_ENCODING_UCS4BE= 5, /* UCS-4 big endian */ - XML_CHAR_ENCODING_EBCDIC= 6, /* EBCDIC uh! */ - XML_CHAR_ENCODING_UCS4_2143=7, /* UCS-4 unusual ordering */ - XML_CHAR_ENCODING_UCS4_3412=8, /* UCS-4 unusual ordering */ - XML_CHAR_ENCODING_UCS2= 9, /* UCS-2 */ - XML_CHAR_ENCODING_8859_1= 10,/* ISO-8859-1 ISO Latin 1 */ - XML_CHAR_ENCODING_8859_2= 11,/* ISO-8859-2 ISO Latin 2 */ - XML_CHAR_ENCODING_8859_3= 12,/* ISO-8859-3 */ - XML_CHAR_ENCODING_8859_4= 13,/* ISO-8859-4 */ - XML_CHAR_ENCODING_8859_5= 14,/* ISO-8859-5 */ - XML_CHAR_ENCODING_8859_6= 15,/* ISO-8859-6 */ - XML_CHAR_ENCODING_8859_7= 16,/* ISO-8859-7 */ - XML_CHAR_ENCODING_8859_8= 17,/* ISO-8859-8 */ - XML_CHAR_ENCODING_8859_9= 18,/* ISO-8859-9 */ - XML_CHAR_ENCODING_2022_JP= 19,/* ISO-2022-JP */ - XML_CHAR_ENCODING_SHIFT_JIS=20,/* Shift_JIS */ - XML_CHAR_ENCODING_EUC_JP= 21,/* EUC-JP */ - XML_CHAR_ENCODING_ASCII= 22 /* pure ASCII */ -} xmlCharEncoding; - -/** - * xmlCharEncodingInputFunc: - * @out: a pointer to an array of bytes to store the UTF-8 result - * @outlen: the length of @out - * @in: a pointer to an array of chars in the original encoding - * @inlen: the length of @in - * - * Take a block of chars in the original encoding and try to convert - * it to an UTF-8 block of chars out. - * - * Returns the number of bytes written, -1 if lack of space, or -2 - * if the transcoding failed. - * The value of @inlen after return is the number of octets consumed - * if the return value is positive, else unpredictiable. - * The value of @outlen after return is the number of octets consumed. - */ -typedef int (* xmlCharEncodingInputFunc)(unsigned char *out, int *outlen, - const unsigned char *in, int *inlen); - - -/** - * xmlCharEncodingOutputFunc: - * @out: a pointer to an array of bytes to store the result - * @outlen: the length of @out - * @in: a pointer to an array of UTF-8 chars - * @inlen: the length of @in - * - * Take a block of UTF-8 chars in and try to convert it to another - * encoding. - * Note: a first call designed to produce heading info is called with - * in = NULL. If stateful this should also initialize the encoder state. - * - * Returns the number of bytes written, -1 if lack of space, or -2 - * if the transcoding failed. - * The value of @inlen after return is the number of octets consumed - * if the return value is positive, else unpredictiable. - * The value of @outlen after return is the number of octets produced. - */ -typedef int (* xmlCharEncodingOutputFunc)(unsigned char *out, int *outlen, - const unsigned char *in, int *inlen); - - -/* - * Block defining the handlers for non UTF-8 encodings. - * If iconv is supported, there are two extra fields. - */ - -typedef struct _xmlCharEncodingHandler xmlCharEncodingHandler; -typedef xmlCharEncodingHandler *xmlCharEncodingHandlerPtr; -struct _xmlCharEncodingHandler { - char *name; - xmlCharEncodingInputFunc input; - xmlCharEncodingOutputFunc output; -#ifdef LIBXML_ICONV_ENABLED - iconv_t iconv_in; - iconv_t iconv_out; -#endif /* LIBXML_ICONV_ENABLED */ -}; - -#ifdef __cplusplus -} -#endif -#include <libxml/tree.h> -#ifdef __cplusplus -extern "C" { -#endif - -/* - * Interfaces for encoding handlers. - */ -XMLPUBFUN void XMLCALL - xmlInitCharEncodingHandlers (void); -XMLPUBFUN void XMLCALL - xmlCleanupCharEncodingHandlers (void); -XMLPUBFUN void XMLCALL - xmlRegisterCharEncodingHandler (xmlCharEncodingHandlerPtr handler); -XMLPUBFUN xmlCharEncodingHandlerPtr XMLCALL - xmlGetCharEncodingHandler (xmlCharEncoding enc); -XMLPUBFUN xmlCharEncodingHandlerPtr XMLCALL - xmlFindCharEncodingHandler (const char *name); -XMLPUBFUN xmlCharEncodingHandlerPtr XMLCALL - xmlNewCharEncodingHandler (const char *name, - xmlCharEncodingInputFunc input, - xmlCharEncodingOutputFunc output); - -/* - * Interfaces for encoding names and aliases. - */ -XMLPUBFUN int XMLCALL - xmlAddEncodingAlias (const char *name, - const char *alias); -XMLPUBFUN int XMLCALL - xmlDelEncodingAlias (const char *alias); -XMLPUBFUN const char * XMLCALL - xmlGetEncodingAlias (const char *alias); -XMLPUBFUN void XMLCALL - xmlCleanupEncodingAliases (void); -XMLPUBFUN xmlCharEncoding XMLCALL - xmlParseCharEncoding (const char *name); -XMLPUBFUN const char * XMLCALL - xmlGetCharEncodingName (xmlCharEncoding enc); - -/* - * Interfaces directly used by the parsers. - */ -XMLPUBFUN xmlCharEncoding XMLCALL - xmlDetectCharEncoding (const unsigned char *in, - int len); - -XMLPUBFUN int XMLCALL - xmlCharEncOutFunc (xmlCharEncodingHandler *handler, - xmlBufferPtr out, - xmlBufferPtr in); - -XMLPUBFUN int XMLCALL - xmlCharEncInFunc (xmlCharEncodingHandler *handler, - xmlBufferPtr out, - xmlBufferPtr in); -XMLPUBFUN int XMLCALL - xmlCharEncFirstLine (xmlCharEncodingHandler *handler, - xmlBufferPtr out, - xmlBufferPtr in); -XMLPUBFUN int XMLCALL - xmlCharEncCloseFunc (xmlCharEncodingHandler *handler); - -/* - * Export a few useful functions - */ -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN int XMLCALL - UTF8Toisolat1 (unsigned char *out, - int *outlen, - const unsigned char *in, - int *inlen); -#endif /* LIBXML_OUTPUT_ENABLED */ -XMLPUBFUN int XMLCALL - isolat1ToUTF8 (unsigned char *out, - int *outlen, - const unsigned char *in, - int *inlen); -#ifdef __cplusplus -} -#endif - -#endif /* __XML_CHAR_ENCODING_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/entities.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/entities.h deleted file mode 100644 index fdd72225..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/entities.h +++ /dev/null @@ -1,140 +0,0 @@ -/* - * Summary: interface for the XML entities handling - * Description: this module provides some of the entity API needed - * for the parser and applications. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_ENTITIES_H__ -#define __XML_ENTITIES_H__ - -#include <libxml/xmlversion.h> -#include <libxml/tree.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * The different valid entity types. - */ -typedef enum { - XML_INTERNAL_GENERAL_ENTITY = 1, - XML_EXTERNAL_GENERAL_PARSED_ENTITY = 2, - XML_EXTERNAL_GENERAL_UNPARSED_ENTITY = 3, - XML_INTERNAL_PARAMETER_ENTITY = 4, - XML_EXTERNAL_PARAMETER_ENTITY = 5, - XML_INTERNAL_PREDEFINED_ENTITY = 6 -} xmlEntityType; - -/* - * An unit of storage for an entity, contains the string, the value - * and the linkind data needed for the linking in the hash table. - */ - -struct _xmlEntity { - void *_private; /* application data */ - xmlElementType type; /* XML_ENTITY_DECL, must be second ! */ - const xmlChar *name; /* Entity name */ - struct _xmlNode *children; /* First child link */ - struct _xmlNode *last; /* Last child link */ - struct _xmlDtd *parent; /* -> DTD */ - struct _xmlNode *next; /* next sibling link */ - struct _xmlNode *prev; /* previous sibling link */ - struct _xmlDoc *doc; /* the containing document */ - - xmlChar *orig; /* content without ref substitution */ - xmlChar *content; /* content or ndata if unparsed */ - int length; /* the content length */ - xmlEntityType etype; /* The entity type */ - const xmlChar *ExternalID; /* External identifier for PUBLIC */ - 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 checked; /* was the entity content checked */ -}; - -/* - * All entities are stored in an hash table. - * There is 2 separate hash tables for global and parameter entities. - */ - -typedef struct _xmlHashTable xmlEntitiesTable; -typedef xmlEntitiesTable *xmlEntitiesTablePtr; - -/* - * External functions: - */ - -#ifdef LIBXML_LEGACY_ENABLED -XMLPUBFUN void XMLCALL - xmlInitializePredefinedEntities (void); -#endif /* LIBXML_LEGACY_ENABLED */ -XMLPUBFUN xmlEntityPtr XMLCALL - xmlAddDocEntity (xmlDocPtr doc, - const xmlChar *name, - int type, - const xmlChar *ExternalID, - const xmlChar *SystemID, - const xmlChar *content); -XMLPUBFUN xmlEntityPtr XMLCALL - xmlAddDtdEntity (xmlDocPtr doc, - const xmlChar *name, - int type, - const xmlChar *ExternalID, - const xmlChar *SystemID, - const xmlChar *content); -XMLPUBFUN xmlEntityPtr XMLCALL - xmlGetPredefinedEntity (const xmlChar *name); -XMLPUBFUN xmlEntityPtr XMLCALL - xmlGetDocEntity (xmlDocPtr doc, - const xmlChar *name); -XMLPUBFUN xmlEntityPtr XMLCALL - xmlGetDtdEntity (xmlDocPtr doc, - const xmlChar *name); -XMLPUBFUN xmlEntityPtr XMLCALL - xmlGetParameterEntity (xmlDocPtr doc, - const xmlChar *name); -#ifdef LIBXML_LEGACY_ENABLED -XMLPUBFUN const xmlChar * XMLCALL - xmlEncodeEntities (xmlDocPtr doc, - const xmlChar *input); -#endif /* LIBXML_LEGACY_ENABLED */ -XMLPUBFUN xmlChar * XMLCALL - xmlEncodeEntitiesReentrant(xmlDocPtr doc, - const xmlChar *input); -XMLPUBFUN xmlChar * XMLCALL - xmlEncodeSpecialChars (xmlDocPtr doc, - const xmlChar *input); -XMLPUBFUN xmlEntitiesTablePtr XMLCALL - xmlCreateEntitiesTable (void); -#ifdef LIBXML_TREE_ENABLED -XMLPUBFUN xmlEntitiesTablePtr XMLCALL - xmlCopyEntitiesTable (xmlEntitiesTablePtr table); -#endif /* LIBXML_TREE_ENABLED */ -XMLPUBFUN void XMLCALL - xmlFreeEntitiesTable (xmlEntitiesTablePtr table); -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN void XMLCALL - xmlDumpEntitiesTable (xmlBufferPtr buf, - xmlEntitiesTablePtr table); -XMLPUBFUN void XMLCALL - xmlDumpEntityDecl (xmlBufferPtr buf, - xmlEntityPtr ent); -#endif /* LIBXML_OUTPUT_ENABLED */ -#ifdef LIBXML_LEGACY_ENABLED -XMLPUBFUN void XMLCALL - xmlCleanupPredefinedEntities(void); -#endif /* LIBXML_LEGACY_ENABLED */ - - -#ifdef __cplusplus -} -#endif - -# endif /* __XML_ENTITIES_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/globals.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/globals.h deleted file mode 100644 index 1173a8f1..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/globals.h +++ /dev/null @@ -1,455 +0,0 @@ -/* - * Summary: interface for all global variables of the library - * Description: all the global variables and thread handling for - * those variables is handled by this module. - * - * The bottom of this file is automatically generated by build_glob.py - * based on the description file global.data - * - * Copy: See Copyright for the status of this software. - * - * Author: Gary Pennington <Gary.Pennington@uk.sun.com>, Daniel Veillard - */ - -#ifndef __XML_GLOBALS_H -#define __XML_GLOBALS_H - -#include <libxml/xmlversion.h> -#include <libxml/parser.h> -#include <libxml/xmlerror.h> -#include <libxml/SAX.h> -#include <libxml/SAX2.h> -#include <libxml/xmlmemory.h> - -#ifdef __cplusplus -extern "C" { -#endif - -XMLPUBFUN void XMLCALL xmlInitGlobals(void); -XMLPUBFUN void XMLCALL xmlCleanupGlobals(void); - -typedef xmlParserInputBufferPtr (*xmlParserInputBufferCreateFilenameFunc) (const char *URI, xmlCharEncoding enc); -typedef xmlOutputBufferPtr (*xmlOutputBufferCreateFilenameFunc) (const char *URI, xmlCharEncodingHandlerPtr encoder, int compression); -XMLPUBFUN xmlParserInputBufferCreateFilenameFunc -XMLCALL xmlParserInputBufferCreateFilenameDefault (xmlParserInputBufferCreateFilenameFunc func); -XMLPUBFUN xmlOutputBufferCreateFilenameFunc -XMLCALL xmlOutputBufferCreateFilenameDefault (xmlOutputBufferCreateFilenameFunc func); - -/* - * Externally global symbols which need to be protected for backwards - * compatibility support. - */ - -#undef docbDefaultSAXHandler -#undef htmlDefaultSAXHandler -#undef oldXMLWDcompatibility -#undef xmlBufferAllocScheme -#undef xmlDefaultBufferSize -#undef xmlDefaultSAXHandler -#undef xmlDefaultSAXLocator -#undef xmlDoValidityCheckingDefaultValue -#undef xmlFree -#undef xmlGenericError -#undef xmlStructuredError -#undef xmlGenericErrorContext -#undef xmlGetWarningsDefaultValue -#undef xmlIndentTreeOutput -#undef xmlTreeIndentString -#undef xmlKeepBlanksDefaultValue -#undef xmlLineNumbersDefaultValue -#undef xmlLoadExtDtdDefaultValue -#undef xmlMalloc -#undef xmlMallocAtomic -#undef xmlMemStrdup -#undef xmlParserDebugEntities -#undef xmlParserVersion -#undef xmlPedanticParserDefaultValue -#undef xmlRealloc -#undef xmlSaveNoEmptyTags -#undef xmlSubstituteEntitiesDefaultValue -#undef xmlRegisterNodeDefaultValue -#undef xmlDeregisterNodeDefaultValue -#undef xmlLastError -#undef xmlParserInputBufferCreateFilenameValue -#undef xmlOutputBufferCreateFilenameValue - -typedef void (*xmlRegisterNodeFunc) (xmlNodePtr node); -typedef void (*xmlDeregisterNodeFunc) (xmlNodePtr node); - -typedef struct _xmlGlobalState xmlGlobalState; -typedef xmlGlobalState *xmlGlobalStatePtr; -struct _xmlGlobalState -{ - const char *xmlParserVersion; - - xmlSAXLocator xmlDefaultSAXLocator; - xmlSAXHandlerV1 xmlDefaultSAXHandler; - xmlSAXHandlerV1 docbDefaultSAXHandler; - xmlSAXHandlerV1 htmlDefaultSAXHandler; - - xmlFreeFunc xmlFree; - xmlMallocFunc xmlMalloc; - xmlStrdupFunc xmlMemStrdup; - xmlReallocFunc xmlRealloc; - - xmlGenericErrorFunc xmlGenericError; - xmlStructuredErrorFunc xmlStructuredError; - void *xmlGenericErrorContext; - - int oldXMLWDcompatibility; - - xmlBufferAllocationScheme xmlBufferAllocScheme; - int xmlDefaultBufferSize; - - int xmlSubstituteEntitiesDefaultValue; - int xmlDoValidityCheckingDefaultValue; - int xmlGetWarningsDefaultValue; - int xmlKeepBlanksDefaultValue; - int xmlLineNumbersDefaultValue; - int xmlLoadExtDtdDefaultValue; - int xmlParserDebugEntities; - int xmlPedanticParserDefaultValue; - - int xmlSaveNoEmptyTags; - int xmlIndentTreeOutput; - const char *xmlTreeIndentString; - - xmlRegisterNodeFunc xmlRegisterNodeDefaultValue; - xmlDeregisterNodeFunc xmlDeregisterNodeDefaultValue; - - xmlMallocFunc xmlMallocAtomic; - xmlError xmlLastError; - - xmlParserInputBufferCreateFilenameFunc xmlParserInputBufferCreateFilenameValue; - xmlOutputBufferCreateFilenameFunc xmlOutputBufferCreateFilenameValue; -}; - -#ifdef __cplusplus -} -#endif -#include <libxml/threads.h> -#ifdef __cplusplus -extern "C" { -#endif - -XMLPUBFUN void XMLCALL xmlInitializeGlobalState(xmlGlobalStatePtr gs); - -XMLPUBFUN void XMLCALL xmlThrDefSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler); - -XMLPUBFUN void XMLCALL xmlThrDefSetStructuredErrorFunc(void *ctx, xmlStructuredErrorFunc handler); - -XMLPUBFUN xmlRegisterNodeFunc XMLCALL xmlRegisterNodeDefault(xmlRegisterNodeFunc func); -XMLPUBFUN xmlRegisterNodeFunc XMLCALL xmlThrDefRegisterNodeDefault(xmlRegisterNodeFunc func); -XMLPUBFUN xmlDeregisterNodeFunc XMLCALL xmlDeregisterNodeDefault(xmlDeregisterNodeFunc func); -XMLPUBFUN xmlDeregisterNodeFunc XMLCALL xmlThrDefDeregisterNodeDefault(xmlDeregisterNodeFunc func); - -XMLPUBFUN xmlOutputBufferCreateFilenameFunc XMLCALL - xmlThrDefOutputBufferCreateFilenameDefault(xmlOutputBufferCreateFilenameFunc func); -XMLPUBFUN xmlParserInputBufferCreateFilenameFunc XMLCALL - xmlThrDefParserInputBufferCreateFilenameDefault(xmlParserInputBufferCreateFilenameFunc func); - -/** DOC_DISABLE */ -/* - * In general the memory allocation entry points are not kept - * thread specific but this can be overridden by LIBXML_THREAD_ALLOC_ENABLED - * - xmlMalloc - * - xmlMallocAtomic - * - xmlRealloc - * - xmlMemStrdup - * - xmlFree - */ - -#ifdef LIBXML_THREAD_ALLOC_ENABLED -#ifdef LIBXML_THREAD_ENABLED -XMLPUBFUN xmlMallocFunc * XMLCALL __xmlMalloc(void); -#define xmlMalloc \ -(*(__xmlMalloc())) -#else -XMLPUBVAR xmlMallocFunc xmlMalloc; -#endif - -#ifdef LIBXML_THREAD_ENABLED -XMLPUBFUN xmlMallocFunc * XMLCALL __xmlMallocAtomic(void); -#define xmlMallocAtomic \ -(*(__xmlMallocAtomic())) -#else -XMLPUBVAR xmlMallocFunc xmlMallocAtomic; -#endif - -#ifdef LIBXML_THREAD_ENABLED -XMLPUBFUN xmlReallocFunc * XMLCALL __xmlRealloc(void); -#define xmlRealloc \ -(*(__xmlRealloc())) -#else -XMLPUBVAR xmlReallocFunc xmlRealloc; -#endif - -#ifdef LIBXML_THREAD_ENABLED -XMLPUBFUN xmlFreeFunc * XMLCALL __xmlFree(void); -#define xmlFree \ -(*(__xmlFree())) -#else -XMLPUBVAR xmlFreeFunc xmlFree; -#endif - -#ifdef LIBXML_THREAD_ENABLED -XMLPUBFUN xmlStrdupFunc * XMLCALL __xmlMemStrdup(void); -#define xmlMemStrdup \ -(*(__xmlMemStrdup())) -#else -XMLPUBVAR xmlStrdupFunc xmlMemStrdup; -#endif - -#else /* !LIBXML_THREAD_ALLOC_ENABLED */ -XMLPUBVAR xmlMallocFunc xmlMalloc; -XMLPUBVAR xmlMallocFunc xmlMallocAtomic; -XMLPUBVAR xmlReallocFunc xmlRealloc; -XMLPUBVAR xmlFreeFunc xmlFree; -XMLPUBVAR xmlStrdupFunc xmlMemStrdup; -#endif /* LIBXML_THREAD_ALLOC_ENABLED */ - -#ifdef LIBXML_DOCB_ENABLED -XMLPUBFUN xmlSAXHandlerV1 * XMLCALL __docbDefaultSAXHandler(void); -#ifdef LIBXML_THREAD_ENABLED -#define docbDefaultSAXHandler \ -(*(__docbDefaultSAXHandler())) -#else -XMLPUBVAR xmlSAXHandlerV1 docbDefaultSAXHandler; -#endif -#endif - -#ifdef LIBXML_HTML_ENABLED -XMLPUBFUN xmlSAXHandlerV1 * XMLCALL __htmlDefaultSAXHandler(void); -#ifdef LIBXML_THREAD_ENABLED -#define htmlDefaultSAXHandler \ -(*(__htmlDefaultSAXHandler())) -#else -XMLPUBVAR xmlSAXHandlerV1 htmlDefaultSAXHandler; -#endif -#endif - -XMLPUBFUN xmlError * XMLCALL __xmlLastError(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlLastError \ -(*(__xmlLastError())) -#else -XMLPUBVAR xmlError xmlLastError; -#endif - -/* - * Everything starting from the line below is - * Automatically generated by build_glob.py. - * Do not modify the previous line. - */ - - -XMLPUBFUN int * XMLCALL __oldXMLWDcompatibility(void); -#ifdef LIBXML_THREAD_ENABLED -#define oldXMLWDcompatibility \ -(*(__oldXMLWDcompatibility())) -#else -XMLPUBVAR int oldXMLWDcompatibility; -#endif - -XMLPUBFUN xmlBufferAllocationScheme * XMLCALL __xmlBufferAllocScheme(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlBufferAllocScheme \ -(*(__xmlBufferAllocScheme())) -#else -XMLPUBVAR xmlBufferAllocationScheme xmlBufferAllocScheme; -#endif -XMLPUBFUN xmlBufferAllocationScheme XMLCALL xmlThrDefBufferAllocScheme(xmlBufferAllocationScheme v); - -XMLPUBFUN int * XMLCALL __xmlDefaultBufferSize(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlDefaultBufferSize \ -(*(__xmlDefaultBufferSize())) -#else -XMLPUBVAR int xmlDefaultBufferSize; -#endif -XMLPUBFUN int XMLCALL xmlThrDefDefaultBufferSize(int v); - -XMLPUBFUN xmlSAXHandlerV1 * XMLCALL __xmlDefaultSAXHandler(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlDefaultSAXHandler \ -(*(__xmlDefaultSAXHandler())) -#else -XMLPUBVAR xmlSAXHandlerV1 xmlDefaultSAXHandler; -#endif - -XMLPUBFUN xmlSAXLocator * XMLCALL __xmlDefaultSAXLocator(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlDefaultSAXLocator \ -(*(__xmlDefaultSAXLocator())) -#else -XMLPUBVAR xmlSAXLocator xmlDefaultSAXLocator; -#endif - -XMLPUBFUN int * XMLCALL __xmlDoValidityCheckingDefaultValue(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlDoValidityCheckingDefaultValue \ -(*(__xmlDoValidityCheckingDefaultValue())) -#else -XMLPUBVAR int xmlDoValidityCheckingDefaultValue; -#endif -XMLPUBFUN int XMLCALL xmlThrDefDoValidityCheckingDefaultValue(int v); - -XMLPUBFUN xmlGenericErrorFunc * XMLCALL __xmlGenericError(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlGenericError \ -(*(__xmlGenericError())) -#else -XMLPUBVAR xmlGenericErrorFunc xmlGenericError; -#endif - -XMLPUBFUN xmlStructuredErrorFunc * XMLCALL __xmlStructuredError(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlStructuredError \ -(*(__xmlStructuredError())) -#else -XMLPUBVAR xmlStructuredErrorFunc xmlStructuredError; -#endif - -XMLPUBFUN void * * XMLCALL __xmlGenericErrorContext(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlGenericErrorContext \ -(*(__xmlGenericErrorContext())) -#else -XMLPUBVAR void * xmlGenericErrorContext; -#endif - -XMLPUBFUN int * XMLCALL __xmlGetWarningsDefaultValue(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlGetWarningsDefaultValue \ -(*(__xmlGetWarningsDefaultValue())) -#else -XMLPUBVAR int xmlGetWarningsDefaultValue; -#endif -XMLPUBFUN int XMLCALL xmlThrDefGetWarningsDefaultValue(int v); - -XMLPUBFUN int * XMLCALL __xmlIndentTreeOutput(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlIndentTreeOutput \ -(*(__xmlIndentTreeOutput())) -#else -XMLPUBVAR int xmlIndentTreeOutput; -#endif -XMLPUBFUN int XMLCALL xmlThrDefIndentTreeOutput(int v); - -XMLPUBFUN const char * * XMLCALL __xmlTreeIndentString(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlTreeIndentString \ -(*(__xmlTreeIndentString())) -#else -XMLPUBVAR const char * xmlTreeIndentString; -#endif -XMLPUBFUN const char * XMLCALL xmlThrDefTreeIndentString(const char * v); - -XMLPUBFUN int * XMLCALL __xmlKeepBlanksDefaultValue(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlKeepBlanksDefaultValue \ -(*(__xmlKeepBlanksDefaultValue())) -#else -XMLPUBVAR int xmlKeepBlanksDefaultValue; -#endif -XMLPUBFUN int XMLCALL xmlThrDefKeepBlanksDefaultValue(int v); - -XMLPUBFUN int * XMLCALL __xmlLineNumbersDefaultValue(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlLineNumbersDefaultValue \ -(*(__xmlLineNumbersDefaultValue())) -#else -XMLPUBVAR int xmlLineNumbersDefaultValue; -#endif -XMLPUBFUN int XMLCALL xmlThrDefLineNumbersDefaultValue(int v); - -XMLPUBFUN int * XMLCALL __xmlLoadExtDtdDefaultValue(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlLoadExtDtdDefaultValue \ -(*(__xmlLoadExtDtdDefaultValue())) -#else -XMLPUBVAR int xmlLoadExtDtdDefaultValue; -#endif -XMLPUBFUN int XMLCALL xmlThrDefLoadExtDtdDefaultValue(int v); - -XMLPUBFUN int * XMLCALL __xmlParserDebugEntities(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlParserDebugEntities \ -(*(__xmlParserDebugEntities())) -#else -XMLPUBVAR int xmlParserDebugEntities; -#endif -XMLPUBFUN int XMLCALL xmlThrDefParserDebugEntities(int v); - -XMLPUBFUN const char * * XMLCALL __xmlParserVersion(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlParserVersion \ -(*(__xmlParserVersion())) -#else -XMLPUBVAR const char * xmlParserVersion; -#endif - -XMLPUBFUN int * XMLCALL __xmlPedanticParserDefaultValue(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlPedanticParserDefaultValue \ -(*(__xmlPedanticParserDefaultValue())) -#else -XMLPUBVAR int xmlPedanticParserDefaultValue; -#endif -XMLPUBFUN int XMLCALL xmlThrDefPedanticParserDefaultValue(int v); - -XMLPUBFUN int * XMLCALL __xmlSaveNoEmptyTags(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlSaveNoEmptyTags \ -(*(__xmlSaveNoEmptyTags())) -#else -XMLPUBVAR int xmlSaveNoEmptyTags; -#endif -XMLPUBFUN int XMLCALL xmlThrDefSaveNoEmptyTags(int v); - -XMLPUBFUN int * XMLCALL __xmlSubstituteEntitiesDefaultValue(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlSubstituteEntitiesDefaultValue \ -(*(__xmlSubstituteEntitiesDefaultValue())) -#else -XMLPUBVAR int xmlSubstituteEntitiesDefaultValue; -#endif -XMLPUBFUN int XMLCALL xmlThrDefSubstituteEntitiesDefaultValue(int v); - -XMLPUBFUN xmlRegisterNodeFunc * XMLCALL __xmlRegisterNodeDefaultValue(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlRegisterNodeDefaultValue \ -(*(__xmlRegisterNodeDefaultValue())) -#else -XMLPUBVAR xmlRegisterNodeFunc xmlRegisterNodeDefaultValue; -#endif - -XMLPUBFUN xmlDeregisterNodeFunc * XMLCALL __xmlDeregisterNodeDefaultValue(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlDeregisterNodeDefaultValue \ -(*(__xmlDeregisterNodeDefaultValue())) -#else -XMLPUBVAR xmlDeregisterNodeFunc xmlDeregisterNodeDefaultValue; -#endif - -XMLPUBFUN xmlParserInputBufferCreateFilenameFunc * XMLCALL __xmlParserInputBufferCreateFilenameValue(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlParserInputBufferCreateFilenameValue \ -(*(__xmlParserInputBufferCreateFilenameValue())) -#else -XMLPUBVAR xmlParserInputBufferCreateFilenameFunc xmlParserInputBufferCreateFilenameValue; -#endif - -XMLPUBFUN xmlOutputBufferCreateFilenameFunc * XMLCALL __xmlOutputBufferCreateFilenameValue(void); -#ifdef LIBXML_THREAD_ENABLED -#define xmlOutputBufferCreateFilenameValue \ -(*(__xmlOutputBufferCreateFilenameValue())) -#else -XMLPUBVAR xmlOutputBufferCreateFilenameFunc xmlOutputBufferCreateFilenameValue; -#endif - -#ifdef __cplusplus -} -#endif - -#endif /* __XML_GLOBALS_H */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/hash.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/hash.h deleted file mode 100644 index 7fe4be75..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/hash.h +++ /dev/null @@ -1,233 +0,0 @@ -/* - * Summary: Chained hash tables - * Description: This module implements the hash table support used in - * various places in the library. - * - * Copy: See Copyright for the status of this software. - * - * Author: Bjorn Reese <bjorn.reese@systematic.dk> - */ - -#ifndef __XML_HASH_H__ -#define __XML_HASH_H__ - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * The hash table. - */ -typedef struct _xmlHashTable xmlHashTable; -typedef xmlHashTable *xmlHashTablePtr; - -#ifdef __cplusplus -} -#endif - -#include <libxml/xmlversion.h> -#include <libxml/parser.h> -#include <libxml/dict.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * Recent version of gcc produce a warning when a function pointer is assigned - * to an object pointer, or vice versa. The following macro is a dirty hack - * to allow suppression of the warning. If your architecture has function - * pointers which are a different size than a void pointer, there may be some - * serious trouble within the library. - */ -/** - * XML_CAST_FPTR: - * @fptr: pointer to a function - * - * 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 - */ - -#define XML_CAST_FPTR(fptr) fptr - - -/* - * function types: - */ -/** - * xmlHashDeallocator: - * @payload: the data in the hash - * @name: the name associated - * - * Callback to free data from a hash. - */ -typedef void (*xmlHashDeallocator)(void *payload, xmlChar *name); -/** - * xmlHashCopier: - * @payload: the data in the hash - * @name: the name associated - * - * Callback to copy data from a hash. - * - * Returns a copy of the data or NULL in case of error. - */ -typedef void *(*xmlHashCopier)(void *payload, xmlChar *name); -/** - * xmlHashScanner: - * @payload: the data in the hash - * @data: extra scannner data - * @name: the name associated - * - * Callback when scanning data in a hash with the simple scanner. - */ -typedef void (*xmlHashScanner)(void *payload, void *data, xmlChar *name); -/** - * xmlHashScannerFull: - * @payload: the data in the hash - * @data: extra scannner data - * @name: the name associated - * @name2: the second name associated - * @name3: the third name associated - * - * Callback when scanning data in a hash with the full scanner. - */ -typedef void (*xmlHashScannerFull)(void *payload, void *data, - const xmlChar *name, const xmlChar *name2, - const xmlChar *name3); - -/* - * Constructor and destructor. - */ -XMLPUBFUN xmlHashTablePtr XMLCALL - xmlHashCreate (int size); -XMLPUBFUN xmlHashTablePtr XMLCALL - xmlHashCreateDict(int size, - xmlDictPtr dict); -XMLPUBFUN void XMLCALL - xmlHashFree (xmlHashTablePtr table, - xmlHashDeallocator f); - -/* - * Add a new entry to the hash table. - */ -XMLPUBFUN int XMLCALL - xmlHashAddEntry (xmlHashTablePtr table, - const xmlChar *name, - void *userdata); -XMLPUBFUN int XMLCALL - xmlHashUpdateEntry(xmlHashTablePtr table, - const xmlChar *name, - void *userdata, - xmlHashDeallocator f); -XMLPUBFUN int XMLCALL - xmlHashAddEntry2(xmlHashTablePtr table, - const xmlChar *name, - const xmlChar *name2, - void *userdata); -XMLPUBFUN int XMLCALL - xmlHashUpdateEntry2(xmlHashTablePtr table, - const xmlChar *name, - const xmlChar *name2, - void *userdata, - xmlHashDeallocator f); -XMLPUBFUN int XMLCALL - xmlHashAddEntry3(xmlHashTablePtr table, - const xmlChar *name, - const xmlChar *name2, - const xmlChar *name3, - void *userdata); -XMLPUBFUN int XMLCALL - xmlHashUpdateEntry3(xmlHashTablePtr table, - const xmlChar *name, - const xmlChar *name2, - const xmlChar *name3, - void *userdata, - xmlHashDeallocator f); - -/* - * Remove an entry from the hash table. - */ -XMLPUBFUN int XMLCALL - xmlHashRemoveEntry(xmlHashTablePtr table, const xmlChar *name, - xmlHashDeallocator f); -XMLPUBFUN int XMLCALL - xmlHashRemoveEntry2(xmlHashTablePtr table, const xmlChar *name, - const xmlChar *name2, xmlHashDeallocator f); -XMLPUBFUN int XMLCALL - xmlHashRemoveEntry3(xmlHashTablePtr table, const xmlChar *name, - const xmlChar *name2, const xmlChar *name3, - xmlHashDeallocator f); - -/* - * Retrieve the userdata. - */ -XMLPUBFUN void * XMLCALL - xmlHashLookup (xmlHashTablePtr table, - const xmlChar *name); -XMLPUBFUN void * XMLCALL - xmlHashLookup2 (xmlHashTablePtr table, - const xmlChar *name, - const xmlChar *name2); -XMLPUBFUN void * XMLCALL - xmlHashLookup3 (xmlHashTablePtr table, - const xmlChar *name, - const xmlChar *name2, - const xmlChar *name3); -XMLPUBFUN void * XMLCALL - xmlHashQLookup (xmlHashTablePtr table, - const xmlChar *name, - const xmlChar *prefix); -XMLPUBFUN void * XMLCALL - xmlHashQLookup2 (xmlHashTablePtr table, - const xmlChar *name, - const xmlChar *prefix, - const xmlChar *name2, - const xmlChar *prefix2); -XMLPUBFUN void * XMLCALL - xmlHashQLookup3 (xmlHashTablePtr table, - const xmlChar *name, - const xmlChar *prefix, - const xmlChar *name2, - const xmlChar *prefix2, - const xmlChar *name3, - const xmlChar *prefix3); - -/* - * Helpers. - */ -XMLPUBFUN xmlHashTablePtr XMLCALL - xmlHashCopy (xmlHashTablePtr table, - xmlHashCopier f); -XMLPUBFUN int XMLCALL - xmlHashSize (xmlHashTablePtr table); -XMLPUBFUN void XMLCALL - xmlHashScan (xmlHashTablePtr table, - xmlHashScanner f, - void *data); -XMLPUBFUN void XMLCALL - xmlHashScan3 (xmlHashTablePtr table, - const xmlChar *name, - const xmlChar *name2, - const xmlChar *name3, - xmlHashScanner f, - void *data); -XMLPUBFUN void XMLCALL - xmlHashScanFull (xmlHashTablePtr table, - xmlHashScannerFull f, - void *data); -XMLPUBFUN void XMLCALL - xmlHashScanFull3(xmlHashTablePtr table, - const xmlChar *name, - const xmlChar *name2, - const xmlChar *name3, - xmlHashScannerFull f, - void *data); -#ifdef __cplusplus -} -#endif -#endif /* ! __XML_HASH_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/list.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/list.h deleted file mode 100644 index 1d834824..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/list.h +++ /dev/null @@ -1,137 +0,0 @@ -/* - * Summary: lists interfaces - * Description: this module implement the list support used in - * various place in the library. - * - * Copy: See Copyright for the status of this software. - * - * Author: Gary Pennington <Gary.Pennington@uk.sun.com> - */ - -#ifndef __XML_LINK_INCLUDE__ -#define __XML_LINK_INCLUDE__ - -#include <libxml/xmlversion.h> - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct _xmlLink xmlLink; -typedef xmlLink *xmlLinkPtr; - -typedef struct _xmlList xmlList; -typedef xmlList *xmlListPtr; - -/** - * xmlListDeallocator: - * @lk: the data to deallocate - * - * Callback function used to free data from a list. - */ -typedef void (*xmlListDeallocator) (xmlLinkPtr lk); -/** - * xmlListDataCompare: - * @data0: the first data - * @data1: the second data - * - * Callback function used to compare 2 data. - * - * Returns 0 is equality, -1 or 1 otherwise depending on the ordering. - */ -typedef int (*xmlListDataCompare) (const void *data0, const void *data1); -/** - * xmlListWalker: - * @data: the data found in the list - * @user: extra user provided data to the walker - * - * Callback function used when walking a list with xmlListWalk(). - * - * Returns 0 to stop walking the list, 1 otherwise. - */ -typedef int (*xmlListWalker) (const void *data, const void *user); - -/* Creation/Deletion */ -XMLPUBFUN xmlListPtr XMLCALL - xmlListCreate (xmlListDeallocator deallocator, - xmlListDataCompare compare); -XMLPUBFUN void XMLCALL - xmlListDelete (xmlListPtr l); - -/* Basic Operators */ -XMLPUBFUN void * XMLCALL - xmlListSearch (xmlListPtr l, - void *data); -XMLPUBFUN void * XMLCALL - xmlListReverseSearch (xmlListPtr l, - void *data); -XMLPUBFUN int XMLCALL - xmlListInsert (xmlListPtr l, - void *data) ; -XMLPUBFUN int XMLCALL - xmlListAppend (xmlListPtr l, - void *data) ; -XMLPUBFUN int XMLCALL - xmlListRemoveFirst (xmlListPtr l, - void *data); -XMLPUBFUN int XMLCALL - xmlListRemoveLast (xmlListPtr l, - void *data); -XMLPUBFUN int XMLCALL - xmlListRemoveAll (xmlListPtr l, - void *data); -XMLPUBFUN void XMLCALL - xmlListClear (xmlListPtr l); -XMLPUBFUN int XMLCALL - xmlListEmpty (xmlListPtr l); -XMLPUBFUN xmlLinkPtr XMLCALL - xmlListFront (xmlListPtr l); -XMLPUBFUN xmlLinkPtr XMLCALL - xmlListEnd (xmlListPtr l); -XMLPUBFUN int XMLCALL - xmlListSize (xmlListPtr l); - -XMLPUBFUN void XMLCALL - xmlListPopFront (xmlListPtr l); -XMLPUBFUN void XMLCALL - xmlListPopBack (xmlListPtr l); -XMLPUBFUN int XMLCALL - xmlListPushFront (xmlListPtr l, - void *data); -XMLPUBFUN int XMLCALL - xmlListPushBack (xmlListPtr l, - void *data); - -/* Advanced Operators */ -XMLPUBFUN void XMLCALL - xmlListReverse (xmlListPtr l); -XMLPUBFUN void XMLCALL - xmlListSort (xmlListPtr l); -XMLPUBFUN void XMLCALL - xmlListWalk (xmlListPtr l, - xmlListWalker walker, - const void *user); -XMLPUBFUN void XMLCALL - xmlListReverseWalk (xmlListPtr l, - xmlListWalker walker, - const void *user); -XMLPUBFUN void XMLCALL - xmlListMerge (xmlListPtr l1, - xmlListPtr l2); -XMLPUBFUN xmlListPtr XMLCALL - xmlListDup (const xmlListPtr old); -XMLPUBFUN int XMLCALL - xmlListCopy (xmlListPtr cur, - const xmlListPtr old); -/* Link operators */ -XMLPUBFUN void * XMLCALL - xmlLinkGetData (xmlLinkPtr lk); - -/* xmlListUnique() */ -/* xmlListSwap */ - -#ifdef __cplusplus -} -#endif - -#endif /* __XML_LINK_INCLUDE__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/nanoftp.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/nanoftp.h deleted file mode 100644 index e3c28a01..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/nanoftp.h +++ /dev/null @@ -1,143 +0,0 @@ -/* - * Summary: minimal FTP implementation - * Description: minimal FTP implementation allowing to fetch resources - * like external subset. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __NANO_FTP_H__ -#define __NANO_FTP_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_FTP_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * ftpListCallback: - * @userData: user provided data for the callback - * @filename: the file name (including "->" when links are shown) - * @attrib: the attribute string - * @owner: the owner string - * @group: the group string - * @size: the file size - * @links: the link count - * @year: the year - * @month: the month - * @day: the day - * @hour: the hour - * @minute: the minute - * - * A callback for the xmlNanoFTPList command. - * Note that only one of year and day:minute are specified. - */ -typedef void (*ftpListCallback) (void *userData, - const char *filename, const char *attrib, - const char *owner, const char *group, - unsigned long size, int links, int year, - const char *month, int day, int hour, - int minute); -/** - * ftpDataCallback: - * @userData: the user provided context - * @data: the data received - * @len: its size in bytes - * - * A callback for the xmlNanoFTPGet command. - */ -typedef void (*ftpDataCallback) (void *userData, - const char *data, - int len); - -/* - * Init - */ -XMLPUBFUN void XMLCALL - xmlNanoFTPInit (void); -XMLPUBFUN void XMLCALL - xmlNanoFTPCleanup (void); - -/* - * Creating/freeing contexts. - */ -XMLPUBFUN void * XMLCALL - xmlNanoFTPNewCtxt (const char *URL); -XMLPUBFUN void XMLCALL - xmlNanoFTPFreeCtxt (void * ctx); -XMLPUBFUN void * XMLCALL - xmlNanoFTPConnectTo (const char *server, - int port); -/* - * Opening/closing session connections. - */ -XMLPUBFUN void * XMLCALL - xmlNanoFTPOpen (const char *URL); -XMLPUBFUN int XMLCALL - xmlNanoFTPConnect (void *ctx); -XMLPUBFUN int XMLCALL - xmlNanoFTPClose (void *ctx); -XMLPUBFUN int XMLCALL - xmlNanoFTPQuit (void *ctx); -XMLPUBFUN void XMLCALL - xmlNanoFTPScanProxy (const char *URL); -XMLPUBFUN void XMLCALL - xmlNanoFTPProxy (const char *host, - int port, - const char *user, - const char *passwd, - int type); -XMLPUBFUN int XMLCALL - xmlNanoFTPUpdateURL (void *ctx, - const char *URL); - -/* - * Rather internal commands. - */ -XMLPUBFUN int XMLCALL - xmlNanoFTPGetResponse (void *ctx); -XMLPUBFUN int XMLCALL - xmlNanoFTPCheckResponse (void *ctx); - -/* - * CD/DIR/GET handlers. - */ -XMLPUBFUN int XMLCALL - xmlNanoFTPCwd (void *ctx, - const char *directory); -XMLPUBFUN int XMLCALL - xmlNanoFTPDele (void *ctx, - const char *file); - -XMLPUBFUN int XMLCALL - xmlNanoFTPGetConnection (void *ctx); -XMLPUBFUN int XMLCALL - xmlNanoFTPCloseConnection(void *ctx); -XMLPUBFUN int XMLCALL - xmlNanoFTPList (void *ctx, - ftpListCallback callback, - void *userData, - const char *filename); -XMLPUBFUN int XMLCALL - xmlNanoFTPGetSocket (void *ctx, - const char *filename); -XMLPUBFUN int XMLCALL - xmlNanoFTPGet (void *ctx, - ftpDataCallback callback, - void *userData, - const char *filename); -XMLPUBFUN int XMLCALL - xmlNanoFTPRead (void *ctx, - void *dest, - int len); - -#ifdef __cplusplus -} -#endif -#endif /* LIBXML_FTP_ENABLED */ -#endif /* __NANO_FTP_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/nanohttp.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/nanohttp.h deleted file mode 100644 index 1d8ac24b..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/nanohttp.h +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Summary: minimal HTTP implementation - * Description: minimal HTTP implementation allowing to fetch resources - * like external subset. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __NANO_HTTP_H__ -#define __NANO_HTTP_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_HTTP_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif -XMLPUBFUN void XMLCALL - xmlNanoHTTPInit (void); -XMLPUBFUN void XMLCALL - xmlNanoHTTPCleanup (void); -XMLPUBFUN void XMLCALL - xmlNanoHTTPScanProxy (const char *URL); -XMLPUBFUN int XMLCALL - xmlNanoHTTPFetch (const char *URL, - const char *filename, - char **contentType); -XMLPUBFUN void * XMLCALL - xmlNanoHTTPMethod (const char *URL, - const char *method, - const char *input, - char **contentType, - const char *headers, - int ilen); -XMLPUBFUN void * XMLCALL - xmlNanoHTTPMethodRedir (const char *URL, - const char *method, - const char *input, - char **contentType, - char **redir, - const char *headers, - int ilen); -XMLPUBFUN void * XMLCALL - xmlNanoHTTPOpen (const char *URL, - char **contentType); -XMLPUBFUN void * XMLCALL - xmlNanoHTTPOpenRedir (const char *URL, - char **contentType, - char **redir); -XMLPUBFUN int XMLCALL - xmlNanoHTTPReturnCode (void *ctx); -XMLPUBFUN const char * XMLCALL - xmlNanoHTTPAuthHeader (void *ctx); -XMLPUBFUN const char * XMLCALL - xmlNanoHTTPRedir (void *ctx); -XMLPUBFUN int XMLCALL - xmlNanoHTTPContentLength( void * ctx ); -XMLPUBFUN const char * XMLCALL - xmlNanoHTTPEncoding (void *ctx); -XMLPUBFUN const char * XMLCALL - xmlNanoHTTPMimeType (void *ctx); -XMLPUBFUN int XMLCALL - xmlNanoHTTPRead (void *ctx, - void *dest, - int len); -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN int XMLCALL - xmlNanoHTTPSave (void *ctxt, - const char *filename); -#endif /* LIBXML_OUTPUT_ENABLED */ -XMLPUBFUN void XMLCALL - xmlNanoHTTPClose (void *ctx); -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_HTTP_ENABLED */ -#endif /* __NANO_HTTP_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/parser.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/parser.h deleted file mode 100644 index fe63bda5..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/parser.h +++ /dev/null @@ -1,1220 +0,0 @@ -/* - * Summary: the core parser module - * Description: Interfaces, constants and types related to the XML parser - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_PARSER_H__ -#define __XML_PARSER_H__ - -#include <stdarg.h> - -#include <libxml/xmlversion.h> -#include <libxml/tree.h> -#include <libxml/dict.h> -#include <libxml/hash.h> -#include <libxml/valid.h> -#include <libxml/entities.h> -#include <libxml/xmlerror.h> -#include <libxml/xmlstring.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * XML_DEFAULT_VERSION: - * - * The default version of XML used: 1.0 - */ -#define XML_DEFAULT_VERSION "1.0" - -/** - * xmlParserInput: - * - * An xmlParserInput is an input flow for the XML processor. - * Each entity parsed is associated an xmlParserInput (except the - * few predefined ones). This is the case both for internal entities - * - in which case the flow is already completely in memory - or - * external entities - in which case we use the buf structure for - * progressive reading and I18N conversions to the internal UTF-8 format. - */ - -/** - * xmlParserInputDeallocate: - * @str: the string to deallocate - * - * Callback for freeing some parser input allocations. - */ -typedef void (* xmlParserInputDeallocate)(xmlChar *str); - -struct _xmlParserInput { - /* Input buffer */ - xmlParserInputBufferPtr buf; /* UTF-8 encoded buffer */ - - const char *filename; /* The file analyzed, if any */ - const char *directory; /* the directory/base of the file */ - 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 line; /* Current line */ - int col; /* Current column */ - /* - * NOTE: consumed is only tested for equality in the parser code, - * so even if there is an overflow this should not give troubles - * for parsing very large instances. - */ - unsigned long consumed; /* How many xmlChars already consumed */ - xmlParserInputDeallocate free; /* function to deallocate the base */ - const xmlChar *encoding; /* the encoding string for entity */ - const xmlChar *version; /* the version string for entity */ - int standalone; /* Was that entity marked standalone */ - int id; /* an unique identifier for the entity */ -}; - -/** - * xmlParserNodeInfo: - * - * The parser can be asked to collect Node informations, i.e. at what - * place in the file they were detected. - * NOTE: This is off by default and not very well tested. - */ -typedef struct _xmlParserNodeInfo xmlParserNodeInfo; -typedef xmlParserNodeInfo *xmlParserNodeInfoPtr; - -struct _xmlParserNodeInfo { - const struct _xmlNode* node; - /* Position & line # that text that created the node begins & ends on */ - unsigned long begin_pos; - unsigned long begin_line; - unsigned long end_pos; - unsigned long end_line; -}; - -typedef struct _xmlParserNodeInfoSeq xmlParserNodeInfoSeq; -typedef xmlParserNodeInfoSeq *xmlParserNodeInfoSeqPtr; -struct _xmlParserNodeInfoSeq { - unsigned long maximum; - unsigned long length; - xmlParserNodeInfo* buffer; -}; - -/** - * xmlParserInputState: - * - * The parser is now working also as a state based parser. - * The recursive one use the state info for entities processing. - */ -typedef enum { - XML_PARSER_EOF = -1, /* nothing is to be parsed */ - XML_PARSER_START = 0, /* nothing has been parsed */ - XML_PARSER_MISC, /* Misc* before int subset */ - XML_PARSER_PI, /* Within a processing instruction */ - XML_PARSER_DTD, /* within some DTD content */ - XML_PARSER_PROLOG, /* Misc* after internal subset */ - XML_PARSER_COMMENT, /* within a comment */ - XML_PARSER_START_TAG, /* within a start tag */ - XML_PARSER_CONTENT, /* within the content */ - XML_PARSER_CDATA_SECTION, /* within a CDATA section */ - XML_PARSER_END_TAG, /* within a closing tag */ - XML_PARSER_ENTITY_DECL, /* within an entity declaration */ - XML_PARSER_ENTITY_VALUE, /* within an entity value in a decl */ - XML_PARSER_ATTRIBUTE_VALUE, /* within an attribute value */ - XML_PARSER_SYSTEM_LITERAL, /* within a SYSTEM value */ - XML_PARSER_EPILOG, /* the Misc* after the last end tag */ - XML_PARSER_IGNORE, /* within an IGNORED section */ - XML_PARSER_PUBLIC_LITERAL /* within a PUBLIC value */ -} xmlParserInputState; - -/** - * XML_DETECT_IDS: - * - * Bit in the loadsubset context field to tell to do ID/REFs lookups. - * Use it to initialize xmlLoadExtDtdDefaultValue. - */ -#define XML_DETECT_IDS 2 - -/** - * 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. - */ -#define XML_COMPLETE_ATTRS 4 - -/** - * 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. - */ -#define XML_SKIP_IDS 8 - -/** - * xmlParserMode: - * - * A parser can operate in various modes - */ -typedef enum { - XML_PARSE_UNKNOWN = 0, - XML_PARSE_DOM = 1, - XML_PARSE_SAX = 2, - XML_PARSE_PUSH_DOM = 3, - XML_PARSE_PUSH_SAX = 4, - XML_PARSE_READER = 5 -} xmlParserMode; - -/** - * xmlParserCtxt: - * - * The parser context. - * NOTE This doesn't completely define the parser state, the (current ?) - * design of the parser uses recursive function calls since this allow - * and easy mapping from the production rules of the specification - * to the actual code. The drawback is that the actual function call - * also reflect the parser state. However most of the parsing routines - * takes as the only argument the parser context pointer, so migrating - * to a state based parser for progressive parsing shouldn't be too hard. - */ -struct _xmlParserCtxt { - struct _xmlSAXHandler *sax; /* The SAX handler */ - void *userData; /* For SAX interface only, used by DOM build */ - xmlDocPtr myDoc; /* the document being built */ - int wellFormed; /* is the document well formed */ - int replaceEntities; /* shall we replace entities ? */ - const xmlChar *version; /* the XML version string */ - const xmlChar *encoding; /* the declared encoding, if any */ - int standalone; /* standalone document */ - int html; /* an HTML(1)/Docbook(2) document */ - - /* Input stream stack */ - xmlParserInputPtr input; /* Current input stream */ - int inputNr; /* Number of current input streams */ - int inputMax; /* Max number of input streams */ - xmlParserInputPtr *inputTab; /* stack of inputs */ - - /* Node analysis stack only used for DOM building */ - xmlNodePtr node; /* Current parsed Node */ - int nodeNr; /* Depth of the parsing stack */ - int nodeMax; /* Max depth of the parsing stack */ - xmlNodePtr *nodeTab; /* array of nodes */ - - int record_info; /* Whether node info should be kept */ - xmlParserNodeInfoSeq node_seq; /* info about each node parsed */ - - 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 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 */ - const xmlChar *name; /* Current parsed Node */ - int nameNr; /* Depth of the parsing stack */ - int nameMax; /* Max depth of the parsing stack */ - const xmlChar * *nameTab; /* array of nodes */ - - long nbChars; /* number of xmlChar processed */ - long checkIndex; /* used by progressive parsing lookup */ - int keepBlanks; /* ugly but ... */ - int disableSAX; /* SAX callbacks are disabled */ - int inSubset; /* Parsing is in int 1/ext 2 subset */ - const xmlChar * intSubName; /* name of subset */ - xmlChar * extSubURI; /* URI of external subset */ - xmlChar * extSubSystem; /* SYSTEM ID of external subset */ - - /* xml:space values */ - int * space; /* Should the parser preserve spaces */ - int spaceNr; /* Depth of the parsing stack */ - 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 */ - int charset; /* encoding of the in-memory content - actually an xmlCharEncoding */ - int nodelen; /* Those two fields are there to */ - int nodemem; /* Speed up large node parsing */ - int pedantic; /* signal pedantic warnings */ - void *_private; /* For user data, libxml won't touch it */ - - int loadsubset; /* should the external subset be loaded */ - 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 */ - xmlDictPtr dict; /* dictionnary for the parser */ - const xmlChar * *atts; /* array for the attributes callbacks */ - int maxatts; /* the size of the array */ - int docdict; /* use strings from dict to build tree */ - - /* - * pre-interned strings - */ - const xmlChar *str_xml; - const xmlChar *str_xmlns; - const xmlChar *str_xml_ns; - - /* - * Everything below is used only by the new SAX mode - */ - int sax2; /* operating in the new SAX mode */ - int nsNr; /* the number of inherited namespaces */ - int nsMax; /* the size of the arrays */ - const xmlChar * *nsTab; /* the array of prefix/namespace name */ - int *attallocs; /* which attribute were allocated */ - void * *pushTab; /* array of data for push */ - xmlHashTablePtr attsDefault; /* defaulted attributes if any */ - xmlHashTablePtr attsSpecial; /* non-CDATA attributes if any */ - int nsWellFormed; /* is the document XML Nanespace okay */ - int options; /* Extra options */ - - /* - * Those fields are needed only for treaming parsing so far - */ - int dictNames; /* Use dictionary names for the tree */ - int freeElemsNr; /* number of freed element nodes */ - xmlNodePtr freeElems; /* List of freed element nodes */ - int freeAttrsNr; /* number of freed attributes nodes */ - xmlAttrPtr freeAttrs; /* List of freed attributes nodes */ - - /* - * the complete error informations for the last error. - */ - xmlError lastError; - xmlParserMode parseMode; /* the parser mode */ -}; - -/** - * xmlSAXLocator: - * - * A SAX Locator. - */ -struct _xmlSAXLocator { - const xmlChar *(*getPublicId)(void *ctx); - const xmlChar *(*getSystemId)(void *ctx); - int (*getLineNumber)(void *ctx); - int (*getColumnNumber)(void *ctx); -}; - -/** - * xmlSAXHandler: - * - * A SAX handler is bunch of callbacks called by the parser when processing - * of the input generate data or structure informations. - */ - -/** - * resolveEntitySAXFunc: - * @ctx: the user data (XML parser context) - * @publicId: The public ID of the entity - * @systemId: The system ID of the entity - * - * Callback: - * The entity loader, to control the loading of external entities, - * the application can either: - * - override this resolveEntity() callback in the SAX block - * - or better use the xmlSetExternalEntityLoader() function to - * set up it's own entity resolution routine - * - * Returns the xmlParserInputPtr if inlined or NULL for DOM behaviour. - */ -typedef xmlParserInputPtr (*resolveEntitySAXFunc) (void *ctx, - const xmlChar *publicId, - const xmlChar *systemId); -/** - * internalSubsetSAXFunc: - * @ctx: the user data (XML parser context) - * @name: the root element name - * @ExternalID: the external ID - * @SystemID: the SYSTEM ID (e.g. filename or URL) - * - * Callback on internal subset declaration. - */ -typedef void (*internalSubsetSAXFunc) (void *ctx, - const xmlChar *name, - const xmlChar *ExternalID, - const xmlChar *SystemID); -/** - * externalSubsetSAXFunc: - * @ctx: the user data (XML parser context) - * @name: the root element name - * @ExternalID: the external ID - * @SystemID: the SYSTEM ID (e.g. filename or URL) - * - * Callback on external subset declaration. - */ -typedef void (*externalSubsetSAXFunc) (void *ctx, - const xmlChar *name, - const xmlChar *ExternalID, - const xmlChar *SystemID); -/** - * getEntitySAXFunc: - * @ctx: the user data (XML parser context) - * @name: The entity name - * - * Get an entity by name. - * - * Returns the xmlEntityPtr if found. - */ -typedef xmlEntityPtr (*getEntitySAXFunc) (void *ctx, - const xmlChar *name); -/** - * getParameterEntitySAXFunc: - * @ctx: the user data (XML parser context) - * @name: The entity name - * - * Get a parameter entity by name. - * - * Returns the xmlEntityPtr if found. - */ -typedef xmlEntityPtr (*getParameterEntitySAXFunc) (void *ctx, - const xmlChar *name); -/** - * entityDeclSAXFunc: - * @ctx: the user data (XML parser context) - * @name: the entity name - * @type: the entity type - * @publicId: The public ID of the entity - * @systemId: The system ID of the entity - * @content: the entity value (without processing). - * - * An entity definition has been parsed. - */ -typedef void (*entityDeclSAXFunc) (void *ctx, - const xmlChar *name, - int type, - const xmlChar *publicId, - const xmlChar *systemId, - xmlChar *content); -/** - * notationDeclSAXFunc: - * @ctx: the user data (XML parser context) - * @name: The name of the notation - * @publicId: The public ID of the entity - * @systemId: The system ID of the entity - * - * What to do when a notation declaration has been parsed. - */ -typedef void (*notationDeclSAXFunc)(void *ctx, - const xmlChar *name, - const xmlChar *publicId, - const xmlChar *systemId); -/** - * attributeDeclSAXFunc: - * @ctx: the user data (XML parser context) - * @elem: the name of the element - * @fullname: the attribute name - * @type: the attribute type - * @def: the type of default value - * @defaultValue: the attribute default value - * @tree: the tree of enumerated value set - * - * An attribute definition has been parsed. - */ -typedef void (*attributeDeclSAXFunc)(void *ctx, - const xmlChar *elem, - const xmlChar *fullname, - int type, - int def, - const xmlChar *defaultValue, - xmlEnumerationPtr tree); -/** - * elementDeclSAXFunc: - * @ctx: the user data (XML parser context) - * @name: the element name - * @type: the element type - * @content: the element value tree - * - * An element definition has been parsed. - */ -typedef void (*elementDeclSAXFunc)(void *ctx, - const xmlChar *name, - int type, - xmlElementContentPtr content); -/** - * unparsedEntityDeclSAXFunc: - * @ctx: the user data (XML parser context) - * @name: The name of the entity - * @publicId: The public ID of the entity - * @systemId: The system ID of the entity - * @notationName: the name of the notation - * - * What to do when an unparsed entity declaration is parsed. - */ -typedef void (*unparsedEntityDeclSAXFunc)(void *ctx, - const xmlChar *name, - const xmlChar *publicId, - const xmlChar *systemId, - const xmlChar *notationName); -/** - * setDocumentLocatorSAXFunc: - * @ctx: the user data (XML parser context) - * @loc: A SAX Locator - * - * Receive the document locator at startup, actually xmlDefaultSAXLocator. - * Everything is available on the context, so this is useless in our case. - */ -typedef void (*setDocumentLocatorSAXFunc) (void *ctx, - xmlSAXLocatorPtr loc); -/** - * startDocumentSAXFunc: - * @ctx: the user data (XML parser context) - * - * Called when the document start being processed. - */ -typedef void (*startDocumentSAXFunc) (void *ctx); -/** - * endDocumentSAXFunc: - * @ctx: the user data (XML parser context) - * - * Called when the document end has been detected. - */ -typedef void (*endDocumentSAXFunc) (void *ctx); -/** - * startElementSAXFunc: - * @ctx: the user data (XML parser context) - * @name: The element name, including namespace prefix - * @atts: An array of name/value attributes pairs, NULL terminated - * - * Called when an opening tag has been processed. - */ -typedef void (*startElementSAXFunc) (void *ctx, - const xmlChar *name, - const xmlChar **atts); -/** - * endElementSAXFunc: - * @ctx: the user data (XML parser context) - * @name: The element name - * - * Called when the end of an element has been detected. - */ -typedef void (*endElementSAXFunc) (void *ctx, - const xmlChar *name); -/** - * attributeSAXFunc: - * @ctx: the user data (XML parser context) - * @name: The attribute name, including namespace prefix - * @value: The attribute value - * - * Handle an attribute that has been read by the parser. - * The default handling is to convert the attribute into an - * DOM subtree and past it in a new xmlAttr element added to - * the element. - */ -typedef void (*attributeSAXFunc) (void *ctx, - const xmlChar *name, - const xmlChar *value); -/** - * referenceSAXFunc: - * @ctx: the user data (XML parser context) - * @name: The entity name - * - * Called when an entity reference is detected. - */ -typedef void (*referenceSAXFunc) (void *ctx, - const xmlChar *name); -/** - * charactersSAXFunc: - * @ctx: the user data (XML parser context) - * @ch: a xmlChar string - * @len: the number of xmlChar - * - * Receiving some chars from the parser. - */ -typedef void (*charactersSAXFunc) (void *ctx, - const xmlChar *ch, - int len); -/** - * ignorableWhitespaceSAXFunc: - * @ctx: the user data (XML parser context) - * @ch: a xmlChar string - * @len: the number of xmlChar - * - * Receiving some ignorable whitespaces from the parser. - * UNUSED: by default the DOM building will use characters. - */ -typedef void (*ignorableWhitespaceSAXFunc) (void *ctx, - const xmlChar *ch, - int len); -/** - * processingInstructionSAXFunc: - * @ctx: the user data (XML parser context) - * @target: the target name - * @data: the PI data's - * - * A processing instruction has been parsed. - */ -typedef void (*processingInstructionSAXFunc) (void *ctx, - const xmlChar *target, - const xmlChar *data); -/** - * commentSAXFunc: - * @ctx: the user data (XML parser context) - * @value: the comment content - * - * A comment has been parsed. - */ -typedef void (*commentSAXFunc) (void *ctx, - const xmlChar *value); -/** - * cdataBlockSAXFunc: - * @ctx: the user data (XML parser context) - * @value: The pcdata content - * @len: the block length - * - * Called when a pcdata block has been parsed. - */ -typedef void (*cdataBlockSAXFunc) ( - void *ctx, - const xmlChar *value, - int len); -/** - * warningSAXFunc: - * @ctx: an XML parser context - * @msg: the message to display/transmit - * @...: extra parameters for the message display - * - * Display and format a warning messages, callback. - */ -typedef void (XMLCDECL *warningSAXFunc) (void *ctx, - const char *msg, ...); -/** - * errorSAXFunc: - * @ctx: an XML parser context - * @msg: the message to display/transmit - * @...: extra parameters for the message display - * - * Display and format an error messages, callback. - */ -typedef void (XMLCDECL *errorSAXFunc) (void *ctx, - const char *msg, ...); -/** - * fatalErrorSAXFunc: - * @ctx: an XML parser context - * @msg: the message to display/transmit - * @...: extra parameters for the message display - * - * Display and format fatal error messages, callback. - * Note: so far fatalError() SAX callbacks are not used, error() - * get all the callbacks for errors. - */ -typedef void (XMLCDECL *fatalErrorSAXFunc) (void *ctx, - const char *msg, ...); -/** - * isStandaloneSAXFunc: - * @ctx: the user data (XML parser context) - * - * Is this document tagged standalone? - * - * Returns 1 if true - */ -typedef int (*isStandaloneSAXFunc) (void *ctx); -/** - * hasInternalSubsetSAXFunc: - * @ctx: the user data (XML parser context) - * - * Does this document has an internal subset. - * - * Returns 1 if true - */ -typedef int (*hasInternalSubsetSAXFunc) (void *ctx); - -/** - * hasExternalSubsetSAXFunc: - * @ctx: the user data (XML parser context) - * - * Does this document has an external subset? - * - * Returns 1 if true - */ -typedef int (*hasExternalSubsetSAXFunc) (void *ctx); - -/************************************************************************ - * * - * The SAX version 2 API extensions * - * * - ************************************************************************/ -/** - * XML_SAX2_MAGIC: - * - * Special constant found in SAX2 blocks initialized fields - */ -#define XML_SAX2_MAGIC 0xDEEDBEAF - -/** - * startElementNsSAX2Func: - * @ctx: the user data (XML parser context) - * @localname: the local name of the element - * @prefix: the element namespace prefix if available - * @URI: the element namespace name if available - * @nb_namespaces: number of namespace definitions on that node - * @namespaces: pointer to the array of prefix/URI pairs namespace definitions - * @nb_attributes: the number of attributes on that node - * @nb_defaulted: the number of defaulted attributes. The defaulted - * ones are at the end of the array - * @attributes: pointer to the array of (localname/prefix/URI/value/end) - * attribute values. - * - * SAX2 callback when an element start has been detected by the parser. - * It provides the namespace informations for the element, as well as - * the new namespace declarations on the element. - */ - -typedef void (*startElementNsSAX2Func) (void *ctx, - const xmlChar *localname, - const xmlChar *prefix, - const xmlChar *URI, - int nb_namespaces, - const xmlChar **namespaces, - int nb_attributes, - int nb_defaulted, - const xmlChar **attributes); - -/** - * endElementNsSAX2Func: - * @ctx: the user data (XML parser context) - * @localname: the local name of the element - * @prefix: the element namespace prefix if available - * @URI: the element namespace name if available - * - * SAX2 callback when an element end has been detected by the parser. - * It provides the namespace informations for the element. - */ - -typedef void (*endElementNsSAX2Func) (void *ctx, - const xmlChar *localname, - const xmlChar *prefix, - const xmlChar *URI); - - -struct _xmlSAXHandler { - internalSubsetSAXFunc internalSubset; - isStandaloneSAXFunc isStandalone; - hasInternalSubsetSAXFunc hasInternalSubset; - hasExternalSubsetSAXFunc hasExternalSubset; - resolveEntitySAXFunc resolveEntity; - getEntitySAXFunc getEntity; - entityDeclSAXFunc entityDecl; - notationDeclSAXFunc notationDecl; - attributeDeclSAXFunc attributeDecl; - elementDeclSAXFunc elementDecl; - unparsedEntityDeclSAXFunc unparsedEntityDecl; - setDocumentLocatorSAXFunc setDocumentLocator; - startDocumentSAXFunc startDocument; - endDocumentSAXFunc endDocument; - startElementSAXFunc startElement; - endElementSAXFunc endElement; - referenceSAXFunc reference; - charactersSAXFunc characters; - ignorableWhitespaceSAXFunc ignorableWhitespace; - processingInstructionSAXFunc processingInstruction; - commentSAXFunc comment; - warningSAXFunc warning; - errorSAXFunc error; - 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 */ - void *_private; - startElementNsSAX2Func startElementNs; - endElementNsSAX2Func endElementNs; - xmlStructuredErrorFunc serror; -}; - -/* - * SAX Version 1 - */ -typedef struct _xmlSAXHandlerV1 xmlSAXHandlerV1; -typedef xmlSAXHandlerV1 *xmlSAXHandlerV1Ptr; -struct _xmlSAXHandlerV1 { - internalSubsetSAXFunc internalSubset; - isStandaloneSAXFunc isStandalone; - hasInternalSubsetSAXFunc hasInternalSubset; - hasExternalSubsetSAXFunc hasExternalSubset; - resolveEntitySAXFunc resolveEntity; - getEntitySAXFunc getEntity; - entityDeclSAXFunc entityDecl; - notationDeclSAXFunc notationDecl; - attributeDeclSAXFunc attributeDecl; - elementDeclSAXFunc elementDecl; - unparsedEntityDeclSAXFunc unparsedEntityDecl; - setDocumentLocatorSAXFunc setDocumentLocator; - startDocumentSAXFunc startDocument; - endDocumentSAXFunc endDocument; - startElementSAXFunc startElement; - endElementSAXFunc endElement; - referenceSAXFunc reference; - charactersSAXFunc characters; - ignorableWhitespaceSAXFunc ignorableWhitespace; - processingInstructionSAXFunc processingInstruction; - commentSAXFunc comment; - warningSAXFunc warning; - errorSAXFunc error; - fatalErrorSAXFunc fatalError; /* unused error() get all the errors */ - getParameterEntitySAXFunc getParameterEntity; - cdataBlockSAXFunc cdataBlock; - externalSubsetSAXFunc externalSubset; - unsigned int initialized; -}; - - -/** - * xmlExternalEntityLoader: - * @URL: The System ID of the resource requested - * @ID: The Public ID of the resource requested - * @context: the XML parser context - * - * External entity loaders types. - * - * Returns the entity input parser. - */ -typedef xmlParserInputPtr (*xmlExternalEntityLoader) (const char *URL, - const char *ID, - xmlParserCtxtPtr context); - -#ifdef __cplusplus -} -#endif - -#include <libxml/encoding.h> -#include <libxml/xmlIO.h> -#include <libxml/globals.h> - -#ifdef __cplusplus -extern "C" { -#endif - - -/* - * Init/Cleanup - */ -XMLPUBFUN void XMLCALL - xmlInitParser (void); -XMLPUBFUN void XMLCALL - xmlCleanupParser (void); - -/* - * Input functions - */ -XMLPUBFUN int XMLCALL - xmlParserInputRead (xmlParserInputPtr in, - int len); -XMLPUBFUN int XMLCALL - xmlParserInputGrow (xmlParserInputPtr in, - int len); - -/* - * Basic parsing Interfaces - */ -#ifdef LIBXML_SAX1_ENABLED -XMLPUBFUN xmlDocPtr XMLCALL - xmlParseDoc (const xmlChar *cur); -XMLPUBFUN xmlDocPtr XMLCALL - xmlParseFile (const char *filename); -XMLPUBFUN xmlDocPtr XMLCALL - xmlParseMemory (const char *buffer, - int size); -#endif /* LIBXML_SAX1_ENABLED */ -XMLPUBFUN int XMLCALL - xmlSubstituteEntitiesDefault(int val); -XMLPUBFUN int XMLCALL - xmlKeepBlanksDefault (int val); -XMLPUBFUN void XMLCALL - xmlStopParser (xmlParserCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlPedanticParserDefault(int val); -XMLPUBFUN int XMLCALL - xmlLineNumbersDefault (int val); - -#ifdef LIBXML_SAX1_ENABLED -/* - * Recovery mode - */ -XMLPUBFUN xmlDocPtr XMLCALL - xmlRecoverDoc (xmlChar *cur); -XMLPUBFUN xmlDocPtr XMLCALL - xmlRecoverMemory (const char *buffer, - int size); -XMLPUBFUN xmlDocPtr XMLCALL - xmlRecoverFile (const char *filename); -#endif /* LIBXML_SAX1_ENABLED */ - -/* - * Less common routines and SAX interfaces - */ -XMLPUBFUN int XMLCALL - xmlParseDocument (xmlParserCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlParseExtParsedEnt (xmlParserCtxtPtr ctxt); -#ifdef LIBXML_SAX1_ENABLED -XMLPUBFUN int XMLCALL - xmlSAXUserParseFile (xmlSAXHandlerPtr sax, - void *user_data, - const char *filename); -XMLPUBFUN int XMLCALL - xmlSAXUserParseMemory (xmlSAXHandlerPtr sax, - void *user_data, - const char *buffer, - int size); -XMLPUBFUN xmlDocPtr XMLCALL - xmlSAXParseDoc (xmlSAXHandlerPtr sax, - const xmlChar *cur, - int recovery); -XMLPUBFUN xmlDocPtr XMLCALL - xmlSAXParseMemory (xmlSAXHandlerPtr sax, - const char *buffer, - int size, - int recovery); -XMLPUBFUN xmlDocPtr XMLCALL - xmlSAXParseMemoryWithData (xmlSAXHandlerPtr sax, - const char *buffer, - int size, - int recovery, - void *data); -XMLPUBFUN xmlDocPtr XMLCALL - xmlSAXParseFile (xmlSAXHandlerPtr sax, - const char *filename, - int recovery); -XMLPUBFUN xmlDocPtr XMLCALL - xmlSAXParseFileWithData (xmlSAXHandlerPtr sax, - const char *filename, - int recovery, - void *data); -XMLPUBFUN xmlDocPtr XMLCALL - xmlSAXParseEntity (xmlSAXHandlerPtr sax, - const char *filename); -XMLPUBFUN xmlDocPtr XMLCALL - xmlParseEntity (const char *filename); -#endif /* LIBXML_SAX1_ENABLED */ - -#ifdef LIBXML_VALID_ENABLED -XMLPUBFUN xmlDtdPtr XMLCALL - xmlSAXParseDTD (xmlSAXHandlerPtr sax, - const xmlChar *ExternalID, - const xmlChar *SystemID); -XMLPUBFUN xmlDtdPtr XMLCALL - xmlParseDTD (const xmlChar *ExternalID, - const xmlChar *SystemID); -XMLPUBFUN xmlDtdPtr XMLCALL - xmlIOParseDTD (xmlSAXHandlerPtr sax, - xmlParserInputBufferPtr input, - xmlCharEncoding enc); -#endif /* LIBXML_VALID_ENABLE */ -#ifdef LIBXML_SAX1_ENABLED -XMLPUBFUN int XMLCALL - xmlParseBalancedChunkMemory(xmlDocPtr doc, - xmlSAXHandlerPtr sax, - void *user_data, - int depth, - const xmlChar *string, - xmlNodePtr *lst); -#endif /* LIBXML_SAX1_ENABLED */ -XMLPUBFUN xmlParserErrors XMLCALL - xmlParseInNodeContext (xmlNodePtr node, - const char *data, - int datalen, - int options, - xmlNodePtr *lst); -#ifdef LIBXML_SAX1_ENABLED -XMLPUBFUN int XMLCALL - xmlParseBalancedChunkMemoryRecover(xmlDocPtr doc, - xmlSAXHandlerPtr sax, - void *user_data, - int depth, - const xmlChar *string, - xmlNodePtr *lst, - int recover); -XMLPUBFUN int XMLCALL - xmlParseExternalEntity (xmlDocPtr doc, - xmlSAXHandlerPtr sax, - void *user_data, - int depth, - const xmlChar *URL, - const xmlChar *ID, - xmlNodePtr *lst); -#endif /* LIBXML_SAX1_ENABLED */ -XMLPUBFUN int XMLCALL - xmlParseCtxtExternalEntity(xmlParserCtxtPtr ctx, - const xmlChar *URL, - const xmlChar *ID, - xmlNodePtr *lst); - -/* - * Parser contexts handling. - */ -XMLPUBFUN xmlParserCtxtPtr XMLCALL - xmlNewParserCtxt (void); -XMLPUBFUN int XMLCALL - xmlInitParserCtxt (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlClearParserCtxt (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlFreeParserCtxt (xmlParserCtxtPtr ctxt); -#ifdef LIBXML_SAX1_ENABLED -XMLPUBFUN void XMLCALL - xmlSetupParserForBuffer (xmlParserCtxtPtr ctxt, - const xmlChar* buffer, - const char *filename); -#endif /* LIBXML_SAX1_ENABLED */ -XMLPUBFUN xmlParserCtxtPtr XMLCALL - xmlCreateDocParserCtxt (const xmlChar *cur); - -#ifdef LIBXML_LEGACY_ENABLED -/* - * Reading/setting optional parsing features. - */ -XMLPUBFUN int XMLCALL - xmlGetFeaturesList (int *len, - const char **result); -XMLPUBFUN int XMLCALL - xmlGetFeature (xmlParserCtxtPtr ctxt, - const char *name, - void *result); -XMLPUBFUN int XMLCALL - xmlSetFeature (xmlParserCtxtPtr ctxt, - const char *name, - void *value); -#endif /* LIBXML_LEGACY_ENABLED */ - -#ifdef LIBXML_PUSH_ENABLED -/* - * Interfaces for the Push mode. - */ -XMLPUBFUN xmlParserCtxtPtr XMLCALL - xmlCreatePushParserCtxt(xmlSAXHandlerPtr sax, - void *user_data, - const char *chunk, - int size, - const char *filename); -XMLPUBFUN int XMLCALL - xmlParseChunk (xmlParserCtxtPtr ctxt, - const char *chunk, - int size, - int terminate); -#endif /* LIBXML_PUSH_ENABLED */ - -/* - * Special I/O mode. - */ - -XMLPUBFUN xmlParserCtxtPtr XMLCALL - xmlCreateIOParserCtxt (xmlSAXHandlerPtr sax, - void *user_data, - xmlInputReadCallback ioread, - xmlInputCloseCallback ioclose, - void *ioctx, - xmlCharEncoding enc); - -XMLPUBFUN xmlParserInputPtr XMLCALL - xmlNewIOInputStream (xmlParserCtxtPtr ctxt, - xmlParserInputBufferPtr input, - xmlCharEncoding enc); - -/* - * Node infos. - */ -XMLPUBFUN const xmlParserNodeInfo* XMLCALL - xmlParserFindNodeInfo (const xmlParserCtxtPtr ctxt, - const xmlNodePtr node); -XMLPUBFUN void XMLCALL - xmlInitNodeInfoSeq (xmlParserNodeInfoSeqPtr seq); -XMLPUBFUN void XMLCALL - xmlClearNodeInfoSeq (xmlParserNodeInfoSeqPtr seq); -XMLPUBFUN unsigned long XMLCALL - xmlParserFindNodeInfoIndex(const xmlParserNodeInfoSeqPtr seq, - const xmlNodePtr node); -XMLPUBFUN void XMLCALL - xmlParserAddNodeInfo (xmlParserCtxtPtr ctxt, - const xmlParserNodeInfoPtr info); - -/* - * External entities handling actually implemented in xmlIO. - */ - -XMLPUBFUN void XMLCALL - xmlSetExternalEntityLoader(xmlExternalEntityLoader f); -XMLPUBFUN xmlExternalEntityLoader XMLCALL - xmlGetExternalEntityLoader(void); -XMLPUBFUN xmlParserInputPtr XMLCALL - xmlLoadExternalEntity (const char *URL, - const char *ID, - xmlParserCtxtPtr ctxt); - -/* - * Index lookup, actually implemented in the encoding module - */ -XMLPUBFUN long XMLCALL - xmlByteConsumed (xmlParserCtxtPtr ctxt); - -/* - * New set of simpler/more flexible APIs - */ -/** - * xmlParserOption: - * - * This is the set of XML parser options that can be passed down - * to the xmlReadDoc() and similar calls. - */ -typedef enum { - XML_PARSE_RECOVER = 1<<0, /* recover on errors */ - XML_PARSE_NOENT = 1<<1, /* substitute entities */ - XML_PARSE_DTDLOAD = 1<<2, /* load the external subset */ - XML_PARSE_DTDATTR = 1<<3, /* default DTD attributes */ - XML_PARSE_DTDVALID = 1<<4, /* validate with the DTD */ - XML_PARSE_NOERROR = 1<<5, /* suppress error reports */ - XML_PARSE_NOWARNING = 1<<6, /* suppress warning reports */ - XML_PARSE_PEDANTIC = 1<<7, /* pedantic error reporting */ - XML_PARSE_NOBLANKS = 1<<8, /* remove blank nodes */ - XML_PARSE_SAX1 = 1<<9, /* use the SAX1 interface internally */ - XML_PARSE_XINCLUDE = 1<<10,/* Implement XInclude substitition */ - XML_PARSE_NONET = 1<<11,/* Forbid network access */ - XML_PARSE_NODICT = 1<<12,/* Do not reuse the context dictionnary */ - XML_PARSE_NSCLEAN = 1<<13,/* remove redundant namespaces declarations */ - XML_PARSE_NOCDATA = 1<<14,/* merge CDATA as text nodes */ - XML_PARSE_NOXINCNODE= 1<<15,/* do not generate XINCLUDE START/END nodes */ - XML_PARSE_COMPACT = 1<<16 /* compact small text nodes; no modification of - the tree allowed afterwards (will possibly - crash if you try to modify the tree) */ -} xmlParserOption; - -XMLPUBFUN void XMLCALL - xmlCtxtReset (xmlParserCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlCtxtResetPush (xmlParserCtxtPtr ctxt, - const char *chunk, - int size, - const char *filename, - const char *encoding); -XMLPUBFUN int XMLCALL - xmlCtxtUseOptions (xmlParserCtxtPtr ctxt, - int options); -XMLPUBFUN xmlDocPtr XMLCALL - xmlReadDoc (const xmlChar *cur, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN xmlDocPtr XMLCALL - xmlReadFile (const char *URL, - const char *encoding, - int options); -XMLPUBFUN xmlDocPtr XMLCALL - xmlReadMemory (const char *buffer, - int size, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN xmlDocPtr XMLCALL - xmlReadFd (int fd, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN xmlDocPtr XMLCALL - xmlReadIO (xmlInputReadCallback ioread, - xmlInputCloseCallback ioclose, - void *ioctx, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN xmlDocPtr XMLCALL - xmlCtxtReadDoc (xmlParserCtxtPtr ctxt, - const xmlChar *cur, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN xmlDocPtr XMLCALL - xmlCtxtReadFile (xmlParserCtxtPtr ctxt, - const char *filename, - const char *encoding, - int options); -XMLPUBFUN xmlDocPtr XMLCALL - xmlCtxtReadMemory (xmlParserCtxtPtr ctxt, - const char *buffer, - int size, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN xmlDocPtr XMLCALL - xmlCtxtReadFd (xmlParserCtxtPtr ctxt, - int fd, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN xmlDocPtr XMLCALL - xmlCtxtReadIO (xmlParserCtxtPtr ctxt, - xmlInputReadCallback ioread, - xmlInputCloseCallback ioclose, - void *ioctx, - const char *URL, - const char *encoding, - int options); - -/* - * Library wide options - */ -/** - * xmlFeature: - * - * Used to examine the existance of features that can be enabled - * or disabled at compile-time. - * They used to be called XML_FEATURE_xxx but this clashed with Expat - */ -typedef enum { - XML_WITH_THREAD = 1, - XML_WITH_TREE = 2, - XML_WITH_OUTPUT = 3, - XML_WITH_PUSH = 4, - XML_WITH_READER = 5, - XML_WITH_PATTERN = 6, - XML_WITH_WRITER = 7, - XML_WITH_SAX1 = 8, - XML_WITH_FTP = 9, - XML_WITH_HTTP = 10, - XML_WITH_VALID = 11, - XML_WITH_HTML = 12, - XML_WITH_LEGACY = 13, - XML_WITH_C14N = 14, - XML_WITH_CATALOG = 15, - XML_WITH_XPATH = 16, - XML_WITH_XPTR = 17, - XML_WITH_XINCLUDE = 18, - XML_WITH_ICONV = 19, - XML_WITH_ISO8859X = 20, - XML_WITH_UNICODE = 21, - XML_WITH_REGEXP = 22, - XML_WITH_AUTOMATA = 23, - XML_WITH_EXPR = 24, - XML_WITH_SCHEMAS = 25, - XML_WITH_SCHEMATRON = 26, - XML_WITH_MODULES = 27, - XML_WITH_DEBUG = 28, - XML_WITH_DEBUG_MEM = 29, - XML_WITH_DEBUG_RUN = 30, - XML_WITH_ZLIB = 31, - XML_WITH_NONE = 99999 /* just to be sure of allocation size */ -} xmlFeature; - -XMLPUBFUN int XMLCALL - xmlHasFeature (xmlFeature feature); - -#ifdef __cplusplus -} -#endif -#endif /* __XML_PARSER_H__ */ - diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/parserInternals.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/parserInternals.h deleted file mode 100644 index 7ac0ce6e..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/parserInternals.h +++ /dev/null @@ -1,602 +0,0 @@ -/* - * Summary: internals routines exported by the parser. - * Description: this module exports a number of internal parsing routines - * they are not really all intended for applications but - * can prove useful doing low level processing. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_PARSER_INTERNALS_H__ -#define __XML_PARSER_INTERNALS_H__ - -#include <libxml/xmlversion.h> -#include <libxml/parser.h> -#include <libxml/HTMLparser.h> -#include <libxml/chvalid.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * 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. - */ -XMLPUBVAR unsigned int xmlParserMaxDepth; - - /** - * XML_MAX_NAMELEN: - * - * Identifiers can be longer, but this will be more costly - * at runtime. - */ -#define XML_MAX_NAMELEN 100 - -/** - * INPUT_CHUNK: - * - * The parser tries to always have that amount of input ready. - * One of the point is providing context when reporting errors. - */ -#define INPUT_CHUNK 250 - -/************************************************************************ - * * - * UNICODE version of the macros. * - * * - ************************************************************************/ -/** - * IS_BYTE_CHAR: - * @c: an byte value (int) - * - * Macro to check the following production in the XML spec: - * - * [2] Char ::= #x9 | #xA | #xD | [#x20...] - * any byte character in the accepted range - */ -#define IS_BYTE_CHAR(c) xmlIsChar_ch(c) - -/** - * IS_CHAR: - * @c: an UNICODE value (int) - * - * Macro to check the following production in the XML spec: - * - * [2] Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] - * | [#x10000-#x10FFFF] - * any Unicode character, excluding the surrogate blocks, FFFE, and FFFF. - */ -#define IS_CHAR(c) xmlIsCharQ(c) - -/** - * IS_CHAR_CH: - * @c: an xmlChar (usually an unsigned char) - * - * Behaves like IS_CHAR on single-byte value - */ -#define IS_CHAR_CH(c) xmlIsChar_ch(c) - -/** - * IS_BLANK: - * @c: an UNICODE value (int) - * - * Macro to check the following production in the XML spec: - * - * [3] S ::= (#x20 | #x9 | #xD | #xA)+ - */ -#define IS_BLANK(c) xmlIsBlankQ(c) - -/** - * IS_BLANK_CH: - * @c: an xmlChar value (normally unsigned char) - * - * Behaviour same as IS_BLANK - */ -#define IS_BLANK_CH(c) xmlIsBlank_ch(c) - -/** - * IS_BASECHAR: - * @c: an UNICODE value (int) - * - * Macro to check the following production in the XML spec: - * - * [85] BaseChar ::= ... long list see REC ... - */ -#define IS_BASECHAR(c) xmlIsBaseCharQ(c) - -/** - * IS_DIGIT: - * @c: an UNICODE value (int) - * - * Macro to check the following production in the XML spec: - * - * [88] Digit ::= ... long list see REC ... - */ -#define IS_DIGIT(c) xmlIsDigitQ(c) - -/** - * IS_DIGIT_CH: - * @c: an xmlChar value (usually an unsigned char) - * - * Behaves like IS_DIGIT but with a single byte argument - */ -#define IS_DIGIT_CH(c) xmlIsDigit_ch(c) - -/** - * IS_COMBINING: - * @c: an UNICODE value (int) - * - * Macro to check the following production in the XML spec: - * - * [87] CombiningChar ::= ... long list see REC ... - */ -#define IS_COMBINING(c) xmlIsCombiningQ(c) - -/** - * IS_COMBINING_CH: - * @c: an xmlChar (usually an unsigned char) - * - * Always false (all combining chars > 0xff) - */ -#define IS_COMBINING_CH(c) 0 - -/** - * IS_EXTENDER: - * @c: an UNICODE value (int) - * - * Macro to check the following production in the XML spec: - * - * - * [89] Extender ::= #x00B7 | #x02D0 | #x02D1 | #x0387 | #x0640 | - * #x0E46 | #x0EC6 | #x3005 | [#x3031-#x3035] | - * [#x309D-#x309E] | [#x30FC-#x30FE] - */ -#define IS_EXTENDER(c) xmlIsExtenderQ(c) - -/** - * IS_EXTENDER_CH: - * @c: an xmlChar value (usually an unsigned char) - * - * Behaves like IS_EXTENDER but with a single-byte argument - */ -#define IS_EXTENDER_CH(c) xmlIsExtender_ch(c) - -/** - * IS_IDEOGRAPHIC: - * @c: an UNICODE value (int) - * - * Macro to check the following production in the XML spec: - * - * - * [86] Ideographic ::= [#x4E00-#x9FA5] | #x3007 | [#x3021-#x3029] - */ -#define IS_IDEOGRAPHIC(c) xmlIsIdeographicQ(c) - -/** - * IS_LETTER: - * @c: an UNICODE value (int) - * - * Macro to check the following production in the XML spec: - * - * - * [84] Letter ::= BaseChar | Ideographic - */ -#define IS_LETTER(c) (IS_BASECHAR(c) || IS_IDEOGRAPHIC(c)) - -/** - * IS_LETTER_CH: - * @c: an xmlChar value (normally unsigned char) - * - * Macro behaves like IS_LETTER, but only check base chars - * - */ -#define IS_LETTER_CH(c) xmlIsBaseChar_ch(c) - -/** - * IS_ASCII_LETTER: - * @c: an xmlChar value - * - * Macro to check [a-zA-Z] - * - */ -#define IS_ASCII_LETTER(c) (((0x41 <= (c)) && ((c) <= 0x5a)) || \ - ((0x61 <= (c)) && ((c) <= 0x7a))) - -/** - * IS_ASCII_DIGIT: - * @c: an xmlChar value - * - * Macro to check [0-9] - * - */ -#define IS_ASCII_DIGIT(c) ((0x30 <= (c)) && ((c) <= 0x39)) - -/** - * IS_PUBIDCHAR: - * @c: an UNICODE value (int) - * - * Macro to check the following production in the XML spec: - * - * - * [13] PubidChar ::= #x20 | #xD | #xA | [a-zA-Z0-9] | [-'()+,./:=?;!*#@$_%] - */ -#define IS_PUBIDCHAR(c) xmlIsPubidCharQ(c) - -/** - * IS_PUBIDCHAR_CH: - * @c: an xmlChar value (normally unsigned char) - * - * Same as IS_PUBIDCHAR but for single-byte value - */ -#define IS_PUBIDCHAR_CH(c) xmlIsPubidChar_ch(c) - -/** - * SKIP_EOL: - * @p: and UTF8 string pointer - * - * Skips the end of line chars. - */ -#define SKIP_EOL(p) \ - if (*(p) == 0x13) { p++ ; if (*(p) == 0x10) p++; } \ - if (*(p) == 0x10) { p++ ; if (*(p) == 0x13) p++; } - -/** - * MOVETO_ENDTAG: - * @p: and UTF8 string pointer - * - * Skips to the next '>' char. - */ -#define MOVETO_ENDTAG(p) \ - while ((*p) && (*(p) != '>')) (p)++ - -/** - * MOVETO_STARTTAG: - * @p: and UTF8 string pointer - * - * Skips to the next '<' char. - */ -#define MOVETO_STARTTAG(p) \ - while ((*p) && (*(p) != '<')) (p)++ - -/** - * Global variables used for predefined strings. - */ -XMLPUBVAR const xmlChar xmlStringText[]; -XMLPUBVAR const xmlChar xmlStringTextNoenc[]; -XMLPUBVAR const xmlChar xmlStringComment[]; - -/* - * Function to finish the work of the macros where needed. - */ -XMLPUBFUN int XMLCALL xmlIsLetter (int c); - -/** - * Parser context. - */ -XMLPUBFUN xmlParserCtxtPtr XMLCALL - xmlCreateFileParserCtxt (const char *filename); -XMLPUBFUN xmlParserCtxtPtr XMLCALL - xmlCreateURLParserCtxt (const char *filename, - int options); -XMLPUBFUN xmlParserCtxtPtr XMLCALL - xmlCreateMemoryParserCtxt(const char *buffer, - int size); -XMLPUBFUN xmlParserCtxtPtr XMLCALL - xmlCreateEntityParserCtxt(const xmlChar *URL, - const xmlChar *ID, - const xmlChar *base); -XMLPUBFUN int XMLCALL - xmlSwitchEncoding (xmlParserCtxtPtr ctxt, - xmlCharEncoding enc); -XMLPUBFUN int XMLCALL - xmlSwitchToEncoding (xmlParserCtxtPtr ctxt, - xmlCharEncodingHandlerPtr handler); -XMLPUBFUN int XMLCALL - xmlSwitchInputEncoding (xmlParserCtxtPtr ctxt, - xmlParserInputPtr input, - xmlCharEncodingHandlerPtr handler); - -#ifdef IN_LIBXML -/* internal error reporting */ -XMLPUBFUN void XMLCALL - __xmlErrEncoding (xmlParserCtxtPtr ctxt, - xmlParserErrors xmlerr, - const char *msg, - const xmlChar * str1, - const xmlChar * str2); -#endif - -/** - * Input Streams. - */ -XMLPUBFUN xmlParserInputPtr XMLCALL - xmlNewStringInputStream (xmlParserCtxtPtr ctxt, - const xmlChar *buffer); -XMLPUBFUN xmlParserInputPtr XMLCALL - xmlNewEntityInputStream (xmlParserCtxtPtr ctxt, - xmlEntityPtr entity); -XMLPUBFUN void XMLCALL - xmlPushInput (xmlParserCtxtPtr ctxt, - xmlParserInputPtr input); -XMLPUBFUN xmlChar XMLCALL - xmlPopInput (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlFreeInputStream (xmlParserInputPtr input); -XMLPUBFUN xmlParserInputPtr XMLCALL - xmlNewInputFromFile (xmlParserCtxtPtr ctxt, - const char *filename); -XMLPUBFUN xmlParserInputPtr XMLCALL - xmlNewInputStream (xmlParserCtxtPtr ctxt); - -/** - * Namespaces. - */ -XMLPUBFUN xmlChar * XMLCALL - xmlSplitQName (xmlParserCtxtPtr ctxt, - const xmlChar *name, - xmlChar **prefix); - -/** - * Generic production rules. - */ -XMLPUBFUN const xmlChar * XMLCALL - xmlParseName (xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlParseNmtoken (xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlParseEntityValue (xmlParserCtxtPtr ctxt, - xmlChar **orig); -XMLPUBFUN xmlChar * XMLCALL - xmlParseAttValue (xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlParseSystemLiteral (xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlParsePubidLiteral (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseCharData (xmlParserCtxtPtr ctxt, - int cdata); -XMLPUBFUN xmlChar * XMLCALL - xmlParseExternalID (xmlParserCtxtPtr ctxt, - xmlChar **publicID, - int strict); -XMLPUBFUN void XMLCALL - xmlParseComment (xmlParserCtxtPtr ctxt); -XMLPUBFUN const xmlChar * XMLCALL - xmlParsePITarget (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParsePI (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseNotationDecl (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseEntityDecl (xmlParserCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlParseDefaultDecl (xmlParserCtxtPtr ctxt, - xmlChar **value); -XMLPUBFUN xmlEnumerationPtr XMLCALL - xmlParseNotationType (xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlEnumerationPtr XMLCALL - xmlParseEnumerationType (xmlParserCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlParseEnumeratedType (xmlParserCtxtPtr ctxt, - xmlEnumerationPtr *tree); -XMLPUBFUN int XMLCALL - xmlParseAttributeType (xmlParserCtxtPtr ctxt, - xmlEnumerationPtr *tree); -XMLPUBFUN void XMLCALL - xmlParseAttributeListDecl(xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlElementContentPtr XMLCALL - xmlParseElementMixedContentDecl - (xmlParserCtxtPtr ctxt, - int inputchk); -XMLPUBFUN xmlElementContentPtr XMLCALL - xmlParseElementChildrenContentDecl - (xmlParserCtxtPtr ctxt, - int inputchk); -XMLPUBFUN int XMLCALL - xmlParseElementContentDecl(xmlParserCtxtPtr ctxt, - const xmlChar *name, - xmlElementContentPtr *result); -XMLPUBFUN int XMLCALL - xmlParseElementDecl (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseMarkupDecl (xmlParserCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlParseCharRef (xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlEntityPtr XMLCALL - xmlParseEntityRef (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseReference (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParsePEReference (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseDocTypeDecl (xmlParserCtxtPtr ctxt); -#ifdef LIBXML_SAX1_ENABLED -XMLPUBFUN const xmlChar * XMLCALL - xmlParseAttribute (xmlParserCtxtPtr ctxt, - xmlChar **value); -XMLPUBFUN const xmlChar * XMLCALL - xmlParseStartTag (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseEndTag (xmlParserCtxtPtr ctxt); -#endif /* LIBXML_SAX1_ENABLED */ -XMLPUBFUN void XMLCALL - xmlParseCDSect (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseContent (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseElement (xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlParseVersionNum (xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlParseVersionInfo (xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlParseEncName (xmlParserCtxtPtr ctxt); -XMLPUBFUN const xmlChar * XMLCALL - xmlParseEncodingDecl (xmlParserCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlParseSDDecl (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseXMLDecl (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseTextDecl (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseMisc (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseExternalSubset (xmlParserCtxtPtr ctxt, - const xmlChar *ExternalID, - const xmlChar *SystemID); -/** - * XML_SUBSTITUTE_NONE: - * - * If no entities need to be substituted. - */ -#define XML_SUBSTITUTE_NONE 0 -/** - * XML_SUBSTITUTE_REF: - * - * Whether general entities need to be substituted. - */ -#define XML_SUBSTITUTE_REF 1 -/** - * XML_SUBSTITUTE_PEREF: - * - * Whether parameter entities need to be substituted. - */ -#define XML_SUBSTITUTE_PEREF 2 -/** - * XML_SUBSTITUTE_BOTH: - * - * Both general and parameter entities need to be substituted. - */ -#define XML_SUBSTITUTE_BOTH 3 - -XMLPUBFUN xmlChar * XMLCALL - xmlStringDecodeEntities (xmlParserCtxtPtr ctxt, - const xmlChar *str, - int what, - xmlChar end, - xmlChar end2, - xmlChar end3); -XMLPUBFUN xmlChar * XMLCALL - xmlStringLenDecodeEntities (xmlParserCtxtPtr ctxt, - const xmlChar *str, - int len, - int what, - xmlChar end, - xmlChar end2, - xmlChar end3); - -/* - * Generated by MACROS on top of parser.c c.f. PUSH_AND_POP. - */ -XMLPUBFUN int XMLCALL nodePush (xmlParserCtxtPtr ctxt, - xmlNodePtr value); -XMLPUBFUN xmlNodePtr XMLCALL nodePop (xmlParserCtxtPtr ctxt); -XMLPUBFUN int XMLCALL inputPush (xmlParserCtxtPtr ctxt, - xmlParserInputPtr value); -XMLPUBFUN xmlParserInputPtr XMLCALL inputPop (xmlParserCtxtPtr ctxt); -XMLPUBFUN const xmlChar * XMLCALL namePop (xmlParserCtxtPtr ctxt); -XMLPUBFUN int XMLCALL namePush (xmlParserCtxtPtr ctxt, - const xmlChar *value); - -/* - * other commodities shared between parser.c and parserInternals. - */ -XMLPUBFUN int XMLCALL xmlSkipBlankChars (xmlParserCtxtPtr ctxt); -XMLPUBFUN int XMLCALL xmlStringCurrentChar (xmlParserCtxtPtr ctxt, - const xmlChar *cur, - int *len); -XMLPUBFUN void XMLCALL xmlParserHandlePEReference(xmlParserCtxtPtr ctxt); -XMLPUBFUN int XMLCALL xmlCheckLanguageID (const xmlChar *lang); - -/* - * Really core function shared with HTML parser. - */ -XMLPUBFUN int XMLCALL xmlCurrentChar (xmlParserCtxtPtr ctxt, - int *len); -XMLPUBFUN int XMLCALL xmlCopyCharMultiByte (xmlChar *out, - int val); -XMLPUBFUN int XMLCALL xmlCopyChar (int len, - xmlChar *out, - int val); -XMLPUBFUN void XMLCALL xmlNextChar (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL xmlParserInputShrink (xmlParserInputPtr in); - -#ifdef LIBXML_HTML_ENABLED -/* - * Actually comes from the HTML parser but launched from the init stuff. - */ -XMLPUBFUN void XMLCALL htmlInitAutoClose (void); -XMLPUBFUN htmlParserCtxtPtr XMLCALL htmlCreateFileParserCtxt(const char *filename, - const char *encoding); -#endif - -/* - * Specific function to keep track of entities references - * and used by the XSLT debugger. - */ -#ifdef LIBXML_LEGACY_ENABLED -/** - * xmlEntityReferenceFunc: - * @ent: the entity - * @firstNode: the fist node in the chunk - * @lastNode: the last nod in the chunk - * - * Callback function used when one needs to be able to track back the - * provenance of a chunk of nodes inherited from an entity replacement. - */ -typedef void (*xmlEntityReferenceFunc) (xmlEntityPtr ent, - xmlNodePtr firstNode, - xmlNodePtr lastNode); - -XMLPUBFUN void XMLCALL xmlSetEntityReferenceFunc (xmlEntityReferenceFunc func); - -XMLPUBFUN xmlChar * XMLCALL - xmlParseQuotedString (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlParseNamespace (xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlNamespaceParseNSDef (xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlScanName (xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlNamespaceParseNCName (xmlParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL xmlParserHandleReference(xmlParserCtxtPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlNamespaceParseQName (xmlParserCtxtPtr ctxt, - xmlChar **prefix); -/** - * Entities - */ -XMLPUBFUN xmlChar * XMLCALL - xmlDecodeEntities (xmlParserCtxtPtr ctxt, - int len, - int what, - xmlChar end, - xmlChar end2, - xmlChar end3); -XMLPUBFUN void XMLCALL - xmlHandleEntity (xmlParserCtxtPtr ctxt, - xmlEntityPtr entity); - -#endif /* LIBXML_LEGACY_ENABLED */ - -#ifdef IN_LIBXML -/* - * internal only - */ -XMLPUBFUN void XMLCALL - xmlErrMemory (xmlParserCtxtPtr ctxt, - const char *extra); -#endif - -#ifdef __cplusplus -} -#endif -#endif /* __XML_PARSER_INTERNALS_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/pattern.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/pattern.h deleted file mode 100644 index 97d2cd2b..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/pattern.h +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Summary: pattern expression handling - * Description: allows to compile and test pattern expressions for nodes - * either in a tree or based on a parser state. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_PATTERN_H__ -#define __XML_PATTERN_H__ - -#include <libxml/xmlversion.h> -#include <libxml/tree.h> -#include <libxml/dict.h> - -#ifdef LIBXML_PATTERN_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * xmlPattern: - * - * A compiled (XPath based) pattern to select nodes - */ -typedef struct _xmlPattern xmlPattern; -typedef xmlPattern *xmlPatternPtr; - -/** - * xmlPatternFlags: - * - * This is the set of options affecting the behaviour of pattern - * matching with this module - * - */ -typedef enum { - XML_PATTERN_DEFAULT = 0, /* simple pattern match */ - XML_PATTERN_XPATH = 1<<0, /* standard XPath pattern */ - XML_PATTERN_XSSEL = 1<<1, /* XPath subset for schema selector */ - XML_PATTERN_XSFIELD = 1<<2 /* XPath subset for schema field */ -} xmlPatternFlags; - -XMLPUBFUN void XMLCALL - xmlFreePattern (xmlPatternPtr comp); - -XMLPUBFUN void XMLCALL - xmlFreePatternList (xmlPatternPtr comp); - -XMLPUBFUN xmlPatternPtr XMLCALL - xmlPatterncompile (const xmlChar *pattern, - xmlDict *dict, - int flags, - const xmlChar **namespaces); -XMLPUBFUN int XMLCALL - xmlPatternMatch (xmlPatternPtr comp, - xmlNodePtr node); - -/* streaming interfaces */ -typedef struct _xmlStreamCtxt xmlStreamCtxt; -typedef xmlStreamCtxt *xmlStreamCtxtPtr; - -XMLPUBFUN int XMLCALL - xmlPatternStreamable (xmlPatternPtr comp); -XMLPUBFUN int XMLCALL - xmlPatternMaxDepth (xmlPatternPtr comp); -XMLPUBFUN int XMLCALL - xmlPatternMinDepth (xmlPatternPtr comp); -XMLPUBFUN int XMLCALL - xmlPatternFromRoot (xmlPatternPtr comp); -XMLPUBFUN xmlStreamCtxtPtr XMLCALL - xmlPatternGetStreamCtxt (xmlPatternPtr comp); -XMLPUBFUN void XMLCALL - xmlFreeStreamCtxt (xmlStreamCtxtPtr stream); -XMLPUBFUN int XMLCALL - xmlStreamPushNode (xmlStreamCtxtPtr stream, - const xmlChar *name, - const xmlChar *ns, - int nodeType); -XMLPUBFUN int XMLCALL - xmlStreamPush (xmlStreamCtxtPtr stream, - const xmlChar *name, - const xmlChar *ns); -XMLPUBFUN int XMLCALL - xmlStreamPushAttr (xmlStreamCtxtPtr stream, - const xmlChar *name, - const xmlChar *ns); -XMLPUBFUN int XMLCALL - xmlStreamPop (xmlStreamCtxtPtr stream); -XMLPUBFUN int XMLCALL - xmlStreamWantsAnyNode (xmlStreamCtxtPtr stream); -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_PATTERN_ENABLED */ - -#endif /* __XML_PATTERN_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/relaxng.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/relaxng.h deleted file mode 100644 index 6acd4674..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/relaxng.h +++ /dev/null @@ -1,196 +0,0 @@ -/* - * Summary: implementation of the Relax-NG validation - * Description: implementation of the Relax-NG validation - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_RELAX_NG__ -#define __XML_RELAX_NG__ - -#include <libxml/xmlversion.h> -#include <libxml/hash.h> -#include <libxml/xmlstring.h> - -#ifdef LIBXML_SCHEMAS_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct _xmlRelaxNG xmlRelaxNG; -typedef xmlRelaxNG *xmlRelaxNGPtr; - - -/** - * A schemas validation context - */ -typedef void (XMLCDECL *xmlRelaxNGValidityErrorFunc) (void *ctx, const char *msg, ...); -typedef void (XMLCDECL *xmlRelaxNGValidityWarningFunc) (void *ctx, const char *msg, ...); - -typedef struct _xmlRelaxNGParserCtxt xmlRelaxNGParserCtxt; -typedef xmlRelaxNGParserCtxt *xmlRelaxNGParserCtxtPtr; - -typedef struct _xmlRelaxNGValidCtxt xmlRelaxNGValidCtxt; -typedef xmlRelaxNGValidCtxt *xmlRelaxNGValidCtxtPtr; - -/* - * xmlRelaxNGValidErr: - * - * List of possible Relax NG validation errors - */ -typedef enum { - XML_RELAXNG_OK = 0, - XML_RELAXNG_ERR_MEMORY, - XML_RELAXNG_ERR_TYPE, - XML_RELAXNG_ERR_TYPEVAL, - XML_RELAXNG_ERR_DUPID, - XML_RELAXNG_ERR_TYPECMP, - XML_RELAXNG_ERR_NOSTATE, - XML_RELAXNG_ERR_NODEFINE, - XML_RELAXNG_ERR_LISTEXTRA, - XML_RELAXNG_ERR_LISTEMPTY, - XML_RELAXNG_ERR_INTERNODATA, - XML_RELAXNG_ERR_INTERSEQ, - XML_RELAXNG_ERR_INTEREXTRA, - XML_RELAXNG_ERR_ELEMNAME, - XML_RELAXNG_ERR_ATTRNAME, - XML_RELAXNG_ERR_ELEMNONS, - XML_RELAXNG_ERR_ATTRNONS, - XML_RELAXNG_ERR_ELEMWRONGNS, - XML_RELAXNG_ERR_ATTRWRONGNS, - XML_RELAXNG_ERR_ELEMEXTRANS, - XML_RELAXNG_ERR_ATTREXTRANS, - XML_RELAXNG_ERR_ELEMNOTEMPTY, - XML_RELAXNG_ERR_NOELEM, - XML_RELAXNG_ERR_NOTELEM, - XML_RELAXNG_ERR_ATTRVALID, - XML_RELAXNG_ERR_CONTENTVALID, - XML_RELAXNG_ERR_EXTRACONTENT, - XML_RELAXNG_ERR_INVALIDATTR, - XML_RELAXNG_ERR_DATAELEM, - XML_RELAXNG_ERR_VALELEM, - XML_RELAXNG_ERR_LISTELEM, - XML_RELAXNG_ERR_DATATYPE, - XML_RELAXNG_ERR_VALUE, - XML_RELAXNG_ERR_LIST, - XML_RELAXNG_ERR_NOGRAMMAR, - XML_RELAXNG_ERR_EXTRADATA, - XML_RELAXNG_ERR_LACKDATA, - XML_RELAXNG_ERR_INTERNAL, - XML_RELAXNG_ERR_ELEMWRONG, - XML_RELAXNG_ERR_TEXTWRONG -} xmlRelaxNGValidErr; - -/* - * xmlRelaxNGParserFlags: - * - * List of possible Relax NG Parser flags - */ -typedef enum { - XML_RELAXNGP_NONE = 0, - XML_RELAXNGP_FREE_DOC = 1, - XML_RELAXNGP_CRNG = 2 -} xmlRelaxNGParserFlag; - -XMLPUBFUN int XMLCALL - xmlRelaxNGInitTypes (void); -XMLPUBFUN void XMLCALL - xmlRelaxNGCleanupTypes (void); - -/* - * Interfaces for parsing. - */ -XMLPUBFUN xmlRelaxNGParserCtxtPtr XMLCALL - xmlRelaxNGNewParserCtxt (const char *URL); -XMLPUBFUN xmlRelaxNGParserCtxtPtr XMLCALL - xmlRelaxNGNewMemParserCtxt (const char *buffer, - int size); -XMLPUBFUN xmlRelaxNGParserCtxtPtr XMLCALL - xmlRelaxNGNewDocParserCtxt (xmlDocPtr doc); - -XMLPUBFUN int XMLCALL - xmlRelaxParserSetFlag (xmlRelaxNGParserCtxtPtr ctxt, - int flag); - -XMLPUBFUN void XMLCALL - xmlRelaxNGFreeParserCtxt (xmlRelaxNGParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlRelaxNGSetParserErrors(xmlRelaxNGParserCtxtPtr ctxt, - xmlRelaxNGValidityErrorFunc err, - xmlRelaxNGValidityWarningFunc warn, - void *ctx); -XMLPUBFUN int XMLCALL - xmlRelaxNGGetParserErrors(xmlRelaxNGParserCtxtPtr ctxt, - xmlRelaxNGValidityErrorFunc *err, - xmlRelaxNGValidityWarningFunc *warn, - void **ctx); -XMLPUBFUN void XMLCALL - xmlRelaxNGSetParserStructuredErrors( - xmlRelaxNGParserCtxtPtr ctxt, - xmlStructuredErrorFunc serror, - void *ctx); -XMLPUBFUN xmlRelaxNGPtr XMLCALL - xmlRelaxNGParse (xmlRelaxNGParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlRelaxNGFree (xmlRelaxNGPtr schema); -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN void XMLCALL - xmlRelaxNGDump (FILE *output, - xmlRelaxNGPtr schema); -XMLPUBFUN void XMLCALL - xmlRelaxNGDumpTree (FILE * output, - xmlRelaxNGPtr schema); -#endif /* LIBXML_OUTPUT_ENABLED */ -/* - * Interfaces for validating - */ -XMLPUBFUN void XMLCALL - xmlRelaxNGSetValidErrors(xmlRelaxNGValidCtxtPtr ctxt, - xmlRelaxNGValidityErrorFunc err, - xmlRelaxNGValidityWarningFunc warn, - void *ctx); -XMLPUBFUN int XMLCALL - xmlRelaxNGGetValidErrors(xmlRelaxNGValidCtxtPtr ctxt, - xmlRelaxNGValidityErrorFunc *err, - xmlRelaxNGValidityWarningFunc *warn, - void **ctx); -XMLPUBFUN void XMLCALL - xmlRelaxNGSetValidStructuredErrors(xmlRelaxNGValidCtxtPtr ctxt, - xmlStructuredErrorFunc serror, void *ctx); -XMLPUBFUN xmlRelaxNGValidCtxtPtr XMLCALL - xmlRelaxNGNewValidCtxt (xmlRelaxNGPtr schema); -XMLPUBFUN void XMLCALL - xmlRelaxNGFreeValidCtxt (xmlRelaxNGValidCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlRelaxNGValidateDoc (xmlRelaxNGValidCtxtPtr ctxt, - xmlDocPtr doc); -/* - * Interfaces for progressive validation when possible - */ -XMLPUBFUN int XMLCALL - xmlRelaxNGValidatePushElement (xmlRelaxNGValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlNodePtr elem); -XMLPUBFUN int XMLCALL - xmlRelaxNGValidatePushCData (xmlRelaxNGValidCtxtPtr ctxt, - const xmlChar *data, - int len); -XMLPUBFUN int XMLCALL - xmlRelaxNGValidatePopElement (xmlRelaxNGValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlNodePtr elem); -XMLPUBFUN int XMLCALL - xmlRelaxNGValidateFullElement (xmlRelaxNGValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlNodePtr elem); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_SCHEMAS_ENABLED */ - -#endif /* __XML_RELAX_NG__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/schemasInternals.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/schemasInternals.h deleted file mode 100644 index b68a6e12..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/schemasInternals.h +++ /dev/null @@ -1,958 +0,0 @@ -/* - * Summary: internal interfaces for XML Schemas - * Description: internal interfaces for the XML Schemas handling - * and schema validity checking - * The Schemas development is a Work In Progress. - * Some of those interfaces are not garanteed to be API or ABI stable ! - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - - -#ifndef __XML_SCHEMA_INTERNALS_H__ -#define __XML_SCHEMA_INTERNALS_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_SCHEMAS_ENABLED - -#include <libxml/xmlregexp.h> -#include <libxml/hash.h> -#include <libxml/dict.h> - -#ifdef __cplusplus -extern "C" { -#endif - -typedef enum { - XML_SCHEMAS_UNKNOWN = 0, - XML_SCHEMAS_STRING, - XML_SCHEMAS_NORMSTRING, - XML_SCHEMAS_DECIMAL, - XML_SCHEMAS_TIME, - XML_SCHEMAS_GDAY, - XML_SCHEMAS_GMONTH, - XML_SCHEMAS_GMONTHDAY, - XML_SCHEMAS_GYEAR, - XML_SCHEMAS_GYEARMONTH, - XML_SCHEMAS_DATE, - XML_SCHEMAS_DATETIME, - XML_SCHEMAS_DURATION, - XML_SCHEMAS_FLOAT, - XML_SCHEMAS_DOUBLE, - XML_SCHEMAS_BOOLEAN, - XML_SCHEMAS_TOKEN, - XML_SCHEMAS_LANGUAGE, - XML_SCHEMAS_NMTOKEN, - XML_SCHEMAS_NMTOKENS, - XML_SCHEMAS_NAME, - XML_SCHEMAS_QNAME, - XML_SCHEMAS_NCNAME, - XML_SCHEMAS_ID, - XML_SCHEMAS_IDREF, - XML_SCHEMAS_IDREFS, - XML_SCHEMAS_ENTITY, - XML_SCHEMAS_ENTITIES, - XML_SCHEMAS_NOTATION, - XML_SCHEMAS_ANYURI, - XML_SCHEMAS_INTEGER, - XML_SCHEMAS_NPINTEGER, - XML_SCHEMAS_NINTEGER, - XML_SCHEMAS_NNINTEGER, - XML_SCHEMAS_PINTEGER, - XML_SCHEMAS_INT, - XML_SCHEMAS_UINT, - XML_SCHEMAS_LONG, - XML_SCHEMAS_ULONG, - XML_SCHEMAS_SHORT, - XML_SCHEMAS_USHORT, - XML_SCHEMAS_BYTE, - XML_SCHEMAS_UBYTE, - XML_SCHEMAS_HEXBINARY, - XML_SCHEMAS_BASE64BINARY, - XML_SCHEMAS_ANYTYPE, - XML_SCHEMAS_ANYSIMPLETYPE -} xmlSchemaValType; - -/* - * XML Schemas defines multiple type of types. - */ -typedef enum { - XML_SCHEMA_TYPE_BASIC = 1, /* A built-in datatype */ - XML_SCHEMA_TYPE_ANY, - XML_SCHEMA_TYPE_FACET, - XML_SCHEMA_TYPE_SIMPLE, - XML_SCHEMA_TYPE_COMPLEX, - XML_SCHEMA_TYPE_SEQUENCE = 6, - XML_SCHEMA_TYPE_CHOICE, - XML_SCHEMA_TYPE_ALL, - XML_SCHEMA_TYPE_SIMPLE_CONTENT, - XML_SCHEMA_TYPE_COMPLEX_CONTENT, - XML_SCHEMA_TYPE_UR, - XML_SCHEMA_TYPE_RESTRICTION, - XML_SCHEMA_TYPE_EXTENSION, - XML_SCHEMA_TYPE_ELEMENT, - XML_SCHEMA_TYPE_ATTRIBUTE, - XML_SCHEMA_TYPE_ATTRIBUTEGROUP, - XML_SCHEMA_TYPE_GROUP, - XML_SCHEMA_TYPE_NOTATION, - XML_SCHEMA_TYPE_LIST, - XML_SCHEMA_TYPE_UNION, - XML_SCHEMA_TYPE_ANY_ATTRIBUTE, - XML_SCHEMA_TYPE_IDC_UNIQUE, - XML_SCHEMA_TYPE_IDC_KEY, - XML_SCHEMA_TYPE_IDC_KEYREF, - XML_SCHEMA_TYPE_PARTICLE = 25, - XML_SCHEMA_TYPE_ATTRIBUTE_USE, - XML_SCHEMA_FACET_MININCLUSIVE = 1000, - XML_SCHEMA_FACET_MINEXCLUSIVE, - XML_SCHEMA_FACET_MAXINCLUSIVE, - XML_SCHEMA_FACET_MAXEXCLUSIVE, - XML_SCHEMA_FACET_TOTALDIGITS, - XML_SCHEMA_FACET_FRACTIONDIGITS, - XML_SCHEMA_FACET_PATTERN, - XML_SCHEMA_FACET_ENUMERATION, - XML_SCHEMA_FACET_WHITESPACE, - XML_SCHEMA_FACET_LENGTH, - XML_SCHEMA_FACET_MAXLENGTH, - XML_SCHEMA_FACET_MINLENGTH, - XML_SCHEMA_EXTRA_QNAMEREF = 2000, - XML_SCHEMA_EXTRA_ATTR_USE_PROHIB -} xmlSchemaTypeType; - -typedef enum { - XML_SCHEMA_CONTENT_UNKNOWN = 0, - XML_SCHEMA_CONTENT_EMPTY = 1, - XML_SCHEMA_CONTENT_ELEMENTS, - XML_SCHEMA_CONTENT_MIXED, - XML_SCHEMA_CONTENT_SIMPLE, - XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS, /* Obsolete */ - XML_SCHEMA_CONTENT_BASIC, - XML_SCHEMA_CONTENT_ANY -} xmlSchemaContentType; - -typedef struct _xmlSchemaVal xmlSchemaVal; -typedef xmlSchemaVal *xmlSchemaValPtr; - -typedef struct _xmlSchemaType xmlSchemaType; -typedef xmlSchemaType *xmlSchemaTypePtr; - -typedef struct _xmlSchemaFacet xmlSchemaFacet; -typedef xmlSchemaFacet *xmlSchemaFacetPtr; - -/** - * Annotation - */ -typedef struct _xmlSchemaAnnot xmlSchemaAnnot; -typedef xmlSchemaAnnot *xmlSchemaAnnotPtr; -struct _xmlSchemaAnnot { - struct _xmlSchemaAnnot *next; - xmlNodePtr content; /* the annotation */ -}; - -/** - * XML_SCHEMAS_ANYATTR_SKIP: - * - * Skip unknown attribute from validation - * Obsolete, not used anymore. - */ -#define XML_SCHEMAS_ANYATTR_SKIP 1 -/** - * XML_SCHEMAS_ANYATTR_LAX: - * - * Ignore validation non definition on attributes - * Obsolete, not used anymore. - */ -#define XML_SCHEMAS_ANYATTR_LAX 2 -/** - * XML_SCHEMAS_ANYATTR_STRICT: - * - * Apply strict validation rules on attributes - * Obsolete, not used anymore. - */ -#define XML_SCHEMAS_ANYATTR_STRICT 3 -/** - * XML_SCHEMAS_ANY_SKIP: - * - * Skip unknown attribute from validation - */ -#define XML_SCHEMAS_ANY_SKIP 1 -/** - * XML_SCHEMAS_ANY_LAX: - * - * Used by wildcards. - * Validate if type found, don't worry if not found - */ -#define XML_SCHEMAS_ANY_LAX 2 -/** - * XML_SCHEMAS_ANY_STRICT: - * - * Used by wildcards. - * Apply strict validation rules - */ -#define XML_SCHEMAS_ANY_STRICT 3 -/** - * XML_SCHEMAS_ATTR_USE_PROHIBITED: - * - * Used by wildcards. - * The attribute is prohibited. - */ -#define XML_SCHEMAS_ATTR_USE_PROHIBITED 0 -/** - * XML_SCHEMAS_ATTR_USE_REQUIRED: - * - * The attribute is required. - */ -#define XML_SCHEMAS_ATTR_USE_REQUIRED 1 -/** - * XML_SCHEMAS_ATTR_USE_OPTIONAL: - * - * The attribute is optional. - */ -#define XML_SCHEMAS_ATTR_USE_OPTIONAL 2 -/** - * XML_SCHEMAS_ATTR_GLOBAL: - * - * allow elements in no namespace - */ -#define XML_SCHEMAS_ATTR_GLOBAL 1 << 0 -/** - * XML_SCHEMAS_ATTR_NSDEFAULT: - * - * allow elements in no namespace - */ -#define XML_SCHEMAS_ATTR_NSDEFAULT 1 << 7 -/** - * XML_SCHEMAS_ATTR_INTERNAL_RESOLVED: - * - * this is set when the "type" and "ref" references - * have been resolved. - */ -#define XML_SCHEMAS_ATTR_INTERNAL_RESOLVED 1 << 8 -/** - * XML_SCHEMAS_ATTR_FIXED: - * - * the attribute has a fixed value - */ -#define XML_SCHEMAS_ATTR_FIXED 1 << 9 - -/** - * xmlSchemaAttribute: - * An attribute definition. - */ - -typedef struct _xmlSchemaAttribute xmlSchemaAttribute; -typedef xmlSchemaAttribute *xmlSchemaAttributePtr; -struct _xmlSchemaAttribute { - xmlSchemaTypeType type; - struct _xmlSchemaAttribute *next; /* the next attribute (not used?) */ - const xmlChar *name; /* the name of the declaration */ - const xmlChar *id; /* Deprecated; not used */ - const xmlChar *ref; /* Deprecated; not used */ - const xmlChar *refNs; /* Deprecated; not used */ - const xmlChar *typeName; /* the local name of the type definition */ - const xmlChar *typeNs; /* the ns URI of the type definition */ - xmlSchemaAnnotPtr annot; - - xmlSchemaTypePtr base; /* Deprecated; not used */ - int occurs; /* Deprecated; not used */ - const xmlChar *defValue; /* The initial value of the value constraint */ - xmlSchemaTypePtr subtypes; /* the type definition */ - xmlNodePtr node; - const xmlChar *targetNamespace; - int flags; - const xmlChar *refPrefix; /* Deprecated; not used */ - xmlSchemaValPtr defVal; /* The compiled value constraint */ - xmlSchemaAttributePtr refDecl; /* Deprecated; not used */ -}; - -/** - * xmlSchemaAttributeLink: - * Used to build a list of attribute uses on complexType definitions. - * WARNING: Deprecated; not used. - */ -typedef struct _xmlSchemaAttributeLink xmlSchemaAttributeLink; -typedef xmlSchemaAttributeLink *xmlSchemaAttributeLinkPtr; -struct _xmlSchemaAttributeLink { - struct _xmlSchemaAttributeLink *next;/* the next attribute link ... */ - struct _xmlSchemaAttribute *attr;/* the linked attribute */ -}; - -/** - * XML_SCHEMAS_WILDCARD_COMPLETE: - * - * If the wildcard is complete. - */ -#define XML_SCHEMAS_WILDCARD_COMPLETE 1 << 0 - -/** - * xmlSchemaCharValueLink: - * Used to build a list of namespaces on wildcards. - */ -typedef struct _xmlSchemaWildcardNs xmlSchemaWildcardNs; -typedef xmlSchemaWildcardNs *xmlSchemaWildcardNsPtr; -struct _xmlSchemaWildcardNs { - struct _xmlSchemaWildcardNs *next;/* the next constraint link ... */ - const xmlChar *value;/* the value */ -}; - -/** - * xmlSchemaWildcard. - * A wildcard. - */ -typedef struct _xmlSchemaWildcard xmlSchemaWildcard; -typedef xmlSchemaWildcard *xmlSchemaWildcardPtr; -struct _xmlSchemaWildcard { - xmlSchemaTypeType type; /* The kind of type */ - const xmlChar *id; /* Deprecated; not used */ - xmlSchemaAnnotPtr annot; - xmlNodePtr node; - int minOccurs; /* Deprecated; not used */ - int maxOccurs; /* Deprecated; not used */ - int processContents; - int any; /* Indicates if the ns constraint is of ##any */ - xmlSchemaWildcardNsPtr nsSet; /* The list of allowed namespaces */ - xmlSchemaWildcardNsPtr negNsSet; /* The negated namespace */ - int flags; -}; - -/** - * XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED: - * - * The attribute wildcard has been already builded. - */ -#define XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED 1 << 0 -/** - * XML_SCHEMAS_ATTRGROUP_GLOBAL: - * - * The attribute wildcard has been already builded. - */ -#define XML_SCHEMAS_ATTRGROUP_GLOBAL 1 << 1 -/** - * XML_SCHEMAS_ATTRGROUP_MARKED: - * - * Marks the attr group as marked; used for circular checks. - */ -#define XML_SCHEMAS_ATTRGROUP_MARKED 1 << 2 - -/** - * XML_SCHEMAS_ATTRGROUP_REDEFINED: - * - * The attr group was redefined. - */ -#define XML_SCHEMAS_ATTRGROUP_REDEFINED 1 << 3 -/** - * XML_SCHEMAS_ATTRGROUP_HAS_REFS: - * - * Whether this attr. group contains attr. group references. - */ -#define XML_SCHEMAS_ATTRGROUP_HAS_REFS 1 << 4 - -/** - * An attribute group definition. - * - * xmlSchemaAttribute and xmlSchemaAttributeGroup start of structures - * must be kept similar - */ -typedef struct _xmlSchemaAttributeGroup xmlSchemaAttributeGroup; -typedef xmlSchemaAttributeGroup *xmlSchemaAttributeGroupPtr; -struct _xmlSchemaAttributeGroup { - xmlSchemaTypeType type; /* The kind of type */ - struct _xmlSchemaAttribute *next;/* the next attribute if in a group ... */ - const xmlChar *name; - const xmlChar *id; - const xmlChar *ref; /* Deprecated; not used */ - const xmlChar *refNs; /* Deprecated; not used */ - xmlSchemaAnnotPtr annot; - - xmlSchemaAttributePtr attributes; /* Deprecated; not used */ - xmlNodePtr node; - int flags; - xmlSchemaWildcardPtr attributeWildcard; - const xmlChar *refPrefix; /* Deprecated; not used */ - xmlSchemaAttributeGroupPtr refItem; /* Deprecated; not used */ - const xmlChar *targetNamespace; - void *attrUses; -}; - -/** - * xmlSchemaTypeLink: - * Used to build a list of types (e.g. member types of - * simpleType with variety "union"). - */ -typedef struct _xmlSchemaTypeLink xmlSchemaTypeLink; -typedef xmlSchemaTypeLink *xmlSchemaTypeLinkPtr; -struct _xmlSchemaTypeLink { - struct _xmlSchemaTypeLink *next;/* the next type link ... */ - xmlSchemaTypePtr type;/* the linked type */ -}; - -/** - * xmlSchemaFacetLink: - * Used to build a list of facets. - */ -typedef struct _xmlSchemaFacetLink xmlSchemaFacetLink; -typedef xmlSchemaFacetLink *xmlSchemaFacetLinkPtr; -struct _xmlSchemaFacetLink { - struct _xmlSchemaFacetLink *next;/* the next facet link ... */ - xmlSchemaFacetPtr facet;/* the linked facet */ -}; - -/** - * XML_SCHEMAS_TYPE_MIXED: - * - * the element content type is mixed - */ -#define XML_SCHEMAS_TYPE_MIXED 1 << 0 -/** - * XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION: - * - * the simple or complex type has a derivation method of "extension". - */ -#define XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION 1 << 1 -/** - * XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION: - * - * the simple or complex type has a derivation method of "restriction". - */ -#define XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION 1 << 2 -/** - * XML_SCHEMAS_TYPE_GLOBAL: - * - * the type is global - */ -#define XML_SCHEMAS_TYPE_GLOBAL 1 << 3 -/** - * XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD: - * - * the complexType owns an attribute wildcard, i.e. - * it can be freed by the complexType - */ -#define XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD 1 << 4 /* Obsolete. */ -/** - * XML_SCHEMAS_TYPE_VARIETY_ABSENT: - * - * the simpleType has a variety of "absent". - * TODO: Actually not necessary :-/, since if - * none of the variety flags occur then it's - * automatically absent. - */ -#define XML_SCHEMAS_TYPE_VARIETY_ABSENT 1 << 5 -/** - * XML_SCHEMAS_TYPE_VARIETY_LIST: - * - * the simpleType has a variety of "list". - */ -#define XML_SCHEMAS_TYPE_VARIETY_LIST 1 << 6 -/** - * XML_SCHEMAS_TYPE_VARIETY_UNION: - * - * the simpleType has a variety of "union". - */ -#define XML_SCHEMAS_TYPE_VARIETY_UNION 1 << 7 -/** - * XML_SCHEMAS_TYPE_VARIETY_ATOMIC: - * - * the simpleType has a variety of "union". - */ -#define XML_SCHEMAS_TYPE_VARIETY_ATOMIC 1 << 8 -/** - * XML_SCHEMAS_TYPE_FINAL_EXTENSION: - * - * the complexType has a final of "extension". - */ -#define XML_SCHEMAS_TYPE_FINAL_EXTENSION 1 << 9 -/** - * XML_SCHEMAS_TYPE_FINAL_RESTRICTION: - * - * the simpleType/complexType has a final of "restriction". - */ -#define XML_SCHEMAS_TYPE_FINAL_RESTRICTION 1 << 10 -/** - * XML_SCHEMAS_TYPE_FINAL_LIST: - * - * the simpleType has a final of "list". - */ -#define XML_SCHEMAS_TYPE_FINAL_LIST 1 << 11 -/** - * XML_SCHEMAS_TYPE_FINAL_UNION: - * - * the simpleType has a final of "union". - */ -#define XML_SCHEMAS_TYPE_FINAL_UNION 1 << 12 -/** - * XML_SCHEMAS_TYPE_FINAL_DEFAULT: - * - * the simpleType has a final of "default". - */ -#define XML_SCHEMAS_TYPE_FINAL_DEFAULT 1 << 13 -/** - * XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE: - * - * Marks the item as a builtin primitive. - */ -#define XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE 1 << 14 -/** - * XML_SCHEMAS_TYPE_MARKED: - * - * Marks the item as marked; used for circular checks. - */ -#define XML_SCHEMAS_TYPE_MARKED 1 << 16 -/** - * XML_SCHEMAS_TYPE_BLOCK_DEFAULT: - * - * the complexType did not specify 'block' so use the default of the - * <schema> item. - */ -#define XML_SCHEMAS_TYPE_BLOCK_DEFAULT 1 << 17 -/** - * XML_SCHEMAS_TYPE_BLOCK_EXTENSION: - * - * the complexType has a 'block' of "extension". - */ -#define XML_SCHEMAS_TYPE_BLOCK_EXTENSION 1 << 18 -/** - * XML_SCHEMAS_TYPE_BLOCK_RESTRICTION: - * - * the complexType has a 'block' of "restriction". - */ -#define XML_SCHEMAS_TYPE_BLOCK_RESTRICTION 1 << 19 -/** - * XML_SCHEMAS_TYPE_ABSTRACT: - * - * the simple/complexType is abstract. - */ -#define XML_SCHEMAS_TYPE_ABSTRACT 1 << 20 -/** - * XML_SCHEMAS_TYPE_FACETSNEEDVALUE: - * - * indicates if the facets need a computed value - */ -#define XML_SCHEMAS_TYPE_FACETSNEEDVALUE 1 << 21 -/** - * XML_SCHEMAS_TYPE_INTERNAL_RESOLVED: - * - * indicates that the type was typefixed - */ -#define XML_SCHEMAS_TYPE_INTERNAL_RESOLVED 1 << 22 -/** - * XML_SCHEMAS_TYPE_INTERNAL_INVALID: - * - * indicates that the type is invalid - */ -#define XML_SCHEMAS_TYPE_INTERNAL_INVALID 1 << 23 -/** - * XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE: - * - * a whitespace-facet value of "preserve" - */ -#define XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE 1 << 24 -/** - * XML_SCHEMAS_TYPE_WHITESPACE_REPLACE: - * - * a whitespace-facet value of "replace" - */ -#define XML_SCHEMAS_TYPE_WHITESPACE_REPLACE 1 << 25 -/** - * XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE: - * - * a whitespace-facet value of "collapse" - */ -#define XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE 1 << 26 -/** - * XML_SCHEMAS_TYPE_HAS_FACETS: - * - * has facets - */ -#define XML_SCHEMAS_TYPE_HAS_FACETS 1 << 27 -/** - * XML_SCHEMAS_TYPE_NORMVALUENEEDED: - * - * indicates if the facets (pattern) need a normalized value - */ -#define XML_SCHEMAS_TYPE_NORMVALUENEEDED 1 << 28 - -/** - * XML_SCHEMAS_TYPE_FIXUP_1: - * - * First stage of fixup was done. - */ -#define XML_SCHEMAS_TYPE_FIXUP_1 1 << 29 - -/** - * XML_SCHEMAS_TYPE_REDEFINED: - * - * The type was redefined. - */ -#define XML_SCHEMAS_TYPE_REDEFINED 1 << 30 -/** - * XML_SCHEMAS_TYPE_REDEFINING: - * - * The type redefines an other type. - */ -/* #define XML_SCHEMAS_TYPE_REDEFINING 1 << 31 */ - -/** - * _xmlSchemaType: - * - * Schemas type definition. - */ -struct _xmlSchemaType { - xmlSchemaTypeType type; /* The kind of type */ - struct _xmlSchemaType *next; /* the next type if in a sequence ... */ - const xmlChar *name; - const xmlChar *id ; /* Deprecated; not used */ - const xmlChar *ref; /* Deprecated; not used */ - const xmlChar *refNs; /* Deprecated; not used */ - xmlSchemaAnnotPtr annot; - xmlSchemaTypePtr subtypes; - xmlSchemaAttributePtr attributes; /* Deprecated; not used */ - xmlNodePtr node; - int minOccurs; /* Deprecated; not used */ - int maxOccurs; /* Deprecated; not used */ - - int flags; - xmlSchemaContentType contentType; - const xmlChar *base; /* Base type's local name */ - const xmlChar *baseNs; /* Base type's target namespace */ - xmlSchemaTypePtr baseType; /* The base type component */ - xmlSchemaFacetPtr facets; /* Local facets */ - struct _xmlSchemaType *redef; /* Deprecated; not used */ - int recurse; /* Obsolete */ - xmlSchemaAttributeLinkPtr *attributeUses; /* Deprecated; not used */ - xmlSchemaWildcardPtr attributeWildcard; - int builtInType; /* Type of built-in types. */ - xmlSchemaTypeLinkPtr memberTypes; /* member-types if a union type. */ - xmlSchemaFacetLinkPtr facetSet; /* All facets (incl. inherited) */ - const xmlChar *refPrefix; /* Deprecated; not used */ - xmlSchemaTypePtr contentTypeDef; /* Used for the simple content of complex types. - Could we use @subtypes for this? */ - xmlRegexpPtr contModel; /* Holds the automaton of the content model */ - const xmlChar *targetNamespace; - void *attrUses; -}; - -/* - * xmlSchemaElement: - * An element definition. - * - * xmlSchemaType, xmlSchemaFacet and xmlSchemaElement start of - * structures must be kept similar - */ -/** - * XML_SCHEMAS_ELEM_NILLABLE: - * - * the element is nillable - */ -#define XML_SCHEMAS_ELEM_NILLABLE 1 << 0 -/** - * XML_SCHEMAS_ELEM_GLOBAL: - * - * the element is global - */ -#define XML_SCHEMAS_ELEM_GLOBAL 1 << 1 -/** - * XML_SCHEMAS_ELEM_DEFAULT: - * - * the element has a default value - */ -#define XML_SCHEMAS_ELEM_DEFAULT 1 << 2 -/** - * XML_SCHEMAS_ELEM_FIXED: - * - * the element has a fixed value - */ -#define XML_SCHEMAS_ELEM_FIXED 1 << 3 -/** - * XML_SCHEMAS_ELEM_ABSTRACT: - * - * the element is abstract - */ -#define XML_SCHEMAS_ELEM_ABSTRACT 1 << 4 -/** - * XML_SCHEMAS_ELEM_TOPLEVEL: - * - * the element is top level - * obsolete: use XML_SCHEMAS_ELEM_GLOBAL instead - */ -#define XML_SCHEMAS_ELEM_TOPLEVEL 1 << 5 -/** - * XML_SCHEMAS_ELEM_REF: - * - * the element is a reference to a type - */ -#define XML_SCHEMAS_ELEM_REF 1 << 6 -/** - * XML_SCHEMAS_ELEM_NSDEFAULT: - * - * allow elements in no namespace - * Obsolete, not used anymore. - */ -#define XML_SCHEMAS_ELEM_NSDEFAULT 1 << 7 -/** - * XML_SCHEMAS_ELEM_INTERNAL_RESOLVED: - * - * this is set when "type", "ref", "substitutionGroup" - * references have been resolved. - */ -#define XML_SCHEMAS_ELEM_INTERNAL_RESOLVED 1 << 8 - /** - * XML_SCHEMAS_ELEM_CIRCULAR: - * - * a helper flag for the search of circular references. - */ -#define XML_SCHEMAS_ELEM_CIRCULAR 1 << 9 -/** - * XML_SCHEMAS_ELEM_BLOCK_ABSENT: - * - * the "block" attribute is absent - */ -#define XML_SCHEMAS_ELEM_BLOCK_ABSENT 1 << 10 -/** - * XML_SCHEMAS_ELEM_BLOCK_EXTENSION: - * - * disallowed substitutions are absent - */ -#define XML_SCHEMAS_ELEM_BLOCK_EXTENSION 1 << 11 -/** - * XML_SCHEMAS_ELEM_BLOCK_RESTRICTION: - * - * disallowed substitutions: "restriction" - */ -#define XML_SCHEMAS_ELEM_BLOCK_RESTRICTION 1 << 12 -/** - * XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION: - * - * disallowed substitutions: "substituion" - */ -#define XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION 1 << 13 -/** - * XML_SCHEMAS_ELEM_FINAL_ABSENT: - * - * substitution group exclusions are absent - */ -#define XML_SCHEMAS_ELEM_FINAL_ABSENT 1 << 14 -/** - * XML_SCHEMAS_ELEM_FINAL_EXTENSION: - * - * substitution group exclusions: "extension" - */ -#define XML_SCHEMAS_ELEM_FINAL_EXTENSION 1 << 15 -/** - * XML_SCHEMAS_ELEM_FINAL_RESTRICTION: - * - * substitution group exclusions: "restriction" - */ -#define XML_SCHEMAS_ELEM_FINAL_RESTRICTION 1 << 16 -/** - * XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD: - * - * the declaration is a substitution group head - */ -#define XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD 1 << 17 -/** - * XML_SCHEMAS_ELEM_INTERNAL_CHECKED: - * - * this is set when the elem decl has been checked against - * all constraints - */ -#define XML_SCHEMAS_ELEM_INTERNAL_CHECKED 1 << 18 - -typedef struct _xmlSchemaElement xmlSchemaElement; -typedef xmlSchemaElement *xmlSchemaElementPtr; -struct _xmlSchemaElement { - xmlSchemaTypeType type; /* The kind of type */ - struct _xmlSchemaType *next; /* Not used? */ - const xmlChar *name; - const xmlChar *id; /* Deprecated; not used */ - const xmlChar *ref; /* Deprecated; not used */ - const xmlChar *refNs; /* Deprecated; not used */ - xmlSchemaAnnotPtr annot; - xmlSchemaTypePtr subtypes; /* the type definition */ - xmlSchemaAttributePtr attributes; - xmlNodePtr node; - int minOccurs; /* Deprecated; not used */ - int maxOccurs; /* Deprecated; not used */ - - int flags; - const xmlChar *targetNamespace; - const xmlChar *namedType; - const xmlChar *namedTypeNs; - const xmlChar *substGroup; - const xmlChar *substGroupNs; - const xmlChar *scope; - const xmlChar *value; /* The original value of the value constraint. */ - struct _xmlSchemaElement *refDecl; /* This will now be used for the - substitution group affiliation */ - xmlRegexpPtr contModel; /* Obsolete for WXS, maybe used for RelaxNG */ - xmlSchemaContentType contentType; - const xmlChar *refPrefix; /* Deprecated; not used */ - xmlSchemaValPtr defVal; /* The compiled value contraint. */ - void *idcs; /* The identity-constraint defs */ -}; - -/* - * XML_SCHEMAS_FACET_UNKNOWN: - * - * unknown facet handling - */ -#define XML_SCHEMAS_FACET_UNKNOWN 0 -/* - * XML_SCHEMAS_FACET_PRESERVE: - * - * preserve the type of the facet - */ -#define XML_SCHEMAS_FACET_PRESERVE 1 -/* - * XML_SCHEMAS_FACET_REPLACE: - * - * replace the type of the facet - */ -#define XML_SCHEMAS_FACET_REPLACE 2 -/* - * XML_SCHEMAS_FACET_COLLAPSE: - * - * collapse the types of the facet - */ -#define XML_SCHEMAS_FACET_COLLAPSE 3 -/** - * A facet definition. - */ -struct _xmlSchemaFacet { - xmlSchemaTypeType type; /* The kind of type */ - struct _xmlSchemaFacet *next;/* the next type if in a sequence ... */ - const xmlChar *value; /* The original value */ - const xmlChar *id; /* Obsolete */ - xmlSchemaAnnotPtr annot; - xmlNodePtr node; - int fixed; /* XML_SCHEMAS_FACET_PRESERVE, etc. */ - int whitespace; - xmlSchemaValPtr val; /* The compiled value */ - xmlRegexpPtr regexp; /* The regex for patterns */ -}; - -/** - * A notation definition. - */ -typedef struct _xmlSchemaNotation xmlSchemaNotation; -typedef xmlSchemaNotation *xmlSchemaNotationPtr; -struct _xmlSchemaNotation { - xmlSchemaTypeType type; /* The kind of type */ - const xmlChar *name; - xmlSchemaAnnotPtr annot; - const xmlChar *identifier; - const xmlChar *targetNamespace; -}; - -/* -* TODO: Actually all those flags used for the schema should sit -* on the schema parser context, since they are used only -* during parsing an XML schema document, and not available -* on the component level as per spec. -*/ -/** - * XML_SCHEMAS_QUALIF_ELEM: - * - * Reflects elementFormDefault == qualified in - * an XML schema document. - */ -#define XML_SCHEMAS_QUALIF_ELEM 1 << 0 -/** - * XML_SCHEMAS_QUALIF_ATTR: - * - * Reflects attributeFormDefault == qualified in - * an XML schema document. - */ -#define XML_SCHEMAS_QUALIF_ATTR 1 << 1 -/** - * XML_SCHEMAS_FINAL_DEFAULT_EXTENSION: - * - * the schema has "extension" in the set of finalDefault. - */ -#define XML_SCHEMAS_FINAL_DEFAULT_EXTENSION 1 << 2 -/** - * XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION: - * - * the schema has "restriction" in the set of finalDefault. - */ -#define XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION 1 << 3 -/** - * XML_SCHEMAS_FINAL_DEFAULT_LIST: - * - * the cshema has "list" in the set of finalDefault. - */ -#define XML_SCHEMAS_FINAL_DEFAULT_LIST 1 << 4 -/** - * XML_SCHEMAS_FINAL_DEFAULT_UNION: - * - * the schema has "union" in the set of finalDefault. - */ -#define XML_SCHEMAS_FINAL_DEFAULT_UNION 1 << 5 -/** - * XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION: - * - * the schema has "extension" in the set of blockDefault. - */ -#define XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION 1 << 6 -/** - * XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION: - * - * the schema has "restriction" in the set of blockDefault. - */ -#define XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION 1 << 7 -/** - * XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION: - * - * the schema has "substitution" in the set of blockDefault. - */ -#define XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION 1 << 8 -/** - * XML_SCHEMAS_INCLUDING_CONVERT_NS: - * - * the schema is currently including an other schema with - * no target namespace. - */ -#define XML_SCHEMAS_INCLUDING_CONVERT_NS 1 << 9 -/** - * _xmlSchema: - * - * A Schemas definition - */ -struct _xmlSchema { - const xmlChar *name; /* schema name */ - const xmlChar *targetNamespace; /* the target namespace */ - const xmlChar *version; - const xmlChar *id; /* Obsolete */ - xmlDocPtr doc; - xmlSchemaAnnotPtr annot; - int flags; - - xmlHashTablePtr typeDecl; - xmlHashTablePtr attrDecl; - xmlHashTablePtr attrgrpDecl; - xmlHashTablePtr elemDecl; - xmlHashTablePtr notaDecl; - - xmlHashTablePtr schemasImports; - - void *_private; /* unused by the library for users or bindings */ - xmlHashTablePtr groupDecl; - xmlDictPtr dict; - void *includes; /* the includes, this is opaque for now */ - int preserve; /* whether to free the document */ - int counter; /* used to give ononymous components unique names */ - xmlHashTablePtr idcDef; /* All identity-constraint defs. */ - void *volatiles; /* Obsolete */ -}; - -XMLPUBFUN void XMLCALL xmlSchemaFreeType (xmlSchemaTypePtr type); -XMLPUBFUN void XMLCALL xmlSchemaFreeWildcard(xmlSchemaWildcardPtr wildcard); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_SCHEMAS_ENABLED */ -#endif /* __XML_SCHEMA_INTERNALS_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/schematron.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/schematron.h deleted file mode 100644 index 6eaa699a..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/schematron.h +++ /dev/null @@ -1,124 +0,0 @@ -/* - * Summary: XML Schemastron implementation - * Description: interface to the XML Schematron validity checking. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - - -#ifndef __XML_SCHEMATRON_H__ -#define __XML_SCHEMATRON_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_SCHEMATRON_ENABLED - -#include <libxml/tree.h> - -#ifdef __cplusplus -extern "C" { -#endif - -typedef enum { - XML_SCHEMATRON_OUT_QUIET = 1 << 0, /* quiet no report */ - XML_SCHEMATRON_OUT_TEXT = 1 << 1, /* build a textual report */ - XML_SCHEMATRON_OUT_XML = 1 << 2, /* output SVRL */ - XML_SCHEMATRON_OUT_FILE = 1 << 8, /* output to a file descriptor */ - XML_SCHEMATRON_OUT_BUFFER = 1 << 9, /* output to a buffer */ - XML_SCHEMATRON_OUT_IO = 1 << 10 /* output to I/O mechanism */ -} xmlSchematronValidOptions; - -/** - * The schemas related types are kept internal - */ -typedef struct _xmlSchematron xmlSchematron; -typedef xmlSchematron *xmlSchematronPtr; - -/** - * A schemas validation context - */ -typedef void (*xmlSchematronValidityErrorFunc) (void *ctx, const char *msg, ...); -typedef void (*xmlSchematronValidityWarningFunc) (void *ctx, const char *msg, ...); - -typedef struct _xmlSchematronParserCtxt xmlSchematronParserCtxt; -typedef xmlSchematronParserCtxt *xmlSchematronParserCtxtPtr; - -typedef struct _xmlSchematronValidCtxt xmlSchematronValidCtxt; -typedef xmlSchematronValidCtxt *xmlSchematronValidCtxtPtr; - -/* - * Interfaces for parsing. - */ -XMLPUBFUN xmlSchematronParserCtxtPtr XMLCALL - xmlSchematronNewParserCtxt (const char *URL); -XMLPUBFUN xmlSchematronParserCtxtPtr XMLCALL - xmlSchematronNewMemParserCtxt(const char *buffer, - int size); -XMLPUBFUN xmlSchematronParserCtxtPtr XMLCALL - xmlSchematronNewDocParserCtxt(xmlDocPtr doc); -XMLPUBFUN void XMLCALL - xmlSchematronFreeParserCtxt (xmlSchematronParserCtxtPtr ctxt); -/***** -XMLPUBFUN void XMLCALL - xmlSchematronSetParserErrors(xmlSchematronParserCtxtPtr ctxt, - xmlSchematronValidityErrorFunc err, - xmlSchematronValidityWarningFunc warn, - void *ctx); -XMLPUBFUN int XMLCALL - xmlSchematronGetParserErrors(xmlSchematronParserCtxtPtr ctxt, - xmlSchematronValidityErrorFunc * err, - xmlSchematronValidityWarningFunc * warn, - void **ctx); -XMLPUBFUN int XMLCALL - xmlSchematronIsValid (xmlSchematronValidCtxtPtr ctxt); - *****/ -XMLPUBFUN xmlSchematronPtr XMLCALL - xmlSchematronParse (xmlSchematronParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlSchematronFree (xmlSchematronPtr schema); -/* - * Interfaces for validating - */ -/****** -XMLPUBFUN void XMLCALL - xmlSchematronSetValidStructuredErrors( - xmlSchematronValidCtxtPtr ctxt, - xmlStructuredErrorFunc serror, - void *ctx); -XMLPUBFUN void XMLCALL - xmlSchematronSetValidErrors (xmlSchematronValidCtxtPtr ctxt, - xmlSchematronValidityErrorFunc err, - xmlSchematronValidityWarningFunc warn, - void *ctx); -XMLPUBFUN int XMLCALL - xmlSchematronGetValidErrors (xmlSchematronValidCtxtPtr ctxt, - xmlSchematronValidityErrorFunc *err, - xmlSchematronValidityWarningFunc *warn, - void **ctx); -XMLPUBFUN int XMLCALL - xmlSchematronSetValidOptions(xmlSchematronValidCtxtPtr ctxt, - int options); -XMLPUBFUN int XMLCALL - xmlSchematronValidCtxtGetOptions(xmlSchematronValidCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlSchematronValidateOneElement (xmlSchematronValidCtxtPtr ctxt, - xmlNodePtr elem); - *******/ - -XMLPUBFUN xmlSchematronValidCtxtPtr XMLCALL - xmlSchematronNewValidCtxt (xmlSchematronPtr schema, - int options); -XMLPUBFUN void XMLCALL - xmlSchematronFreeValidCtxt (xmlSchematronValidCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlSchematronValidateDoc (xmlSchematronValidCtxtPtr ctxt, - xmlDocPtr instance); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_SCHEMATRON_ENABLED */ -#endif /* __XML_SCHEMATRON_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/threads.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/threads.h deleted file mode 100644 index f81f9824..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/threads.h +++ /dev/null @@ -1,84 +0,0 @@ -/** - * Summary: interfaces for thread handling - * Description: set of generic threading related routines - * should work with pthreads, Windows native or TLS threads - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_THREADS_H__ -#define __XML_THREADS_H__ - -#include <libxml/xmlversion.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * xmlMutex are a simple mutual exception locks. - */ -typedef struct _xmlMutex xmlMutex; -typedef xmlMutex *xmlMutexPtr; - -/* - * xmlRMutex are reentrant mutual exception locks. - */ -typedef struct _xmlRMutex xmlRMutex; -typedef xmlRMutex *xmlRMutexPtr; - -#ifdef __cplusplus -} -#endif -#include <libxml/globals.h> -#ifdef __cplusplus -extern "C" { -#endif -XMLPUBFUN xmlMutexPtr XMLCALL - xmlNewMutex (void); -XMLPUBFUN void XMLCALL - xmlMutexLock (xmlMutexPtr tok); -XMLPUBFUN void XMLCALL - xmlMutexUnlock (xmlMutexPtr tok); -XMLPUBFUN void XMLCALL - xmlFreeMutex (xmlMutexPtr tok); - -XMLPUBFUN xmlRMutexPtr XMLCALL - xmlNewRMutex (void); -XMLPUBFUN void XMLCALL - xmlRMutexLock (xmlRMutexPtr tok); -XMLPUBFUN void XMLCALL - xmlRMutexUnlock (xmlRMutexPtr tok); -XMLPUBFUN void XMLCALL - xmlFreeRMutex (xmlRMutexPtr tok); - -/* - * Library wide APIs. - */ -XMLPUBFUN void XMLCALL - xmlInitThreads (void); -XMLPUBFUN void XMLCALL - xmlLockLibrary (void); -XMLPUBFUN void XMLCALL - xmlUnlockLibrary(void); -XMLPUBFUN int XMLCALL - xmlGetThreadId (void); -XMLPUBFUN int XMLCALL - xmlIsMainThread (void); -XMLPUBFUN void XMLCALL - xmlCleanupThreads(void); -XMLPUBFUN xmlGlobalStatePtr XMLCALL - xmlGetGlobalState(void); - -#if defined(HAVE_WIN32_THREADS) && !defined(HAVE_COMPILER_TLS) && defined(LIBXML_STATIC_FOR_DLL) -int XMLCALL xmlDllMain(void *hinstDLL, unsigned long fdwReason, void *lpvReserved); -#endif - -#ifdef __cplusplus -} -#endif - - -#endif /* __XML_THREADS_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/tree.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/tree.h deleted file mode 100644 index 0e1d47c7..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/tree.h +++ /dev/null @@ -1,1213 +0,0 @@ -/* - * Summary: interfaces for tree manipulation - * Description: this module describes the structures found in an tree resulting - * from an XML or HTML parsing, as well as the API provided for - * various processing on that tree - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_TREE_H__ -#define __XML_TREE_H__ - -#include <stdio.h> -#include <libxml/xmlversion.h> -#include <libxml/xmlstring.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * Some of the basic types pointer to structures: - */ -/* xmlIO.h */ -typedef struct _xmlParserInputBuffer xmlParserInputBuffer; -typedef xmlParserInputBuffer *xmlParserInputBufferPtr; - -typedef struct _xmlOutputBuffer xmlOutputBuffer; -typedef xmlOutputBuffer *xmlOutputBufferPtr; - -/* parser.h */ -typedef struct _xmlParserInput xmlParserInput; -typedef xmlParserInput *xmlParserInputPtr; - -typedef struct _xmlParserCtxt xmlParserCtxt; -typedef xmlParserCtxt *xmlParserCtxtPtr; - -typedef struct _xmlSAXLocator xmlSAXLocator; -typedef xmlSAXLocator *xmlSAXLocatorPtr; - -typedef struct _xmlSAXHandler xmlSAXHandler; -typedef xmlSAXHandler *xmlSAXHandlerPtr; - -/* entities.h */ -typedef struct _xmlEntity xmlEntity; -typedef xmlEntity *xmlEntityPtr; - -/** - * BASE_BUFFER_SIZE: - * - * default buffer size 4000. - */ -#define BASE_BUFFER_SIZE 4096 - -/** - * LIBXML_NAMESPACE_DICT: - * - * Defines experimental behaviour: - * 1) xmlNs gets an additional field @context (a xmlDoc) - * 2) when creating a tree, xmlNs->href is stored in the dict of xmlDoc. - */ -/* #define LIBXML_NAMESPACE_DICT */ - -/** - * xmlBufferAllocationScheme: - * - * A buffer allocation scheme can be defined to either match exactly the - * need or double it's allocated size each time it is found too small. - */ - -typedef enum { - XML_BUFFER_ALLOC_DOUBLEIT, - XML_BUFFER_ALLOC_EXACT, - XML_BUFFER_ALLOC_IMMUTABLE -} xmlBufferAllocationScheme; - -/** - * xmlBuffer: - * - * A buffer structure. - */ -typedef struct _xmlBuffer xmlBuffer; -typedef xmlBuffer *xmlBufferPtr; -struct _xmlBuffer { - xmlChar *content; /* The buffer content UTF8 */ - unsigned int use; /* The buffer size used */ - unsigned int size; /* The buffer size */ - xmlBufferAllocationScheme alloc; /* The realloc method */ -}; - -/** - * XML_XML_NAMESPACE: - * - * This is the namespace for the special xml: prefix predefined in the - * XML Namespace specification. - */ -#define XML_XML_NAMESPACE \ - (const xmlChar *) "http://www.w3.org/XML/1998/namespace" - -/** - * XML_XML_ID: - * - * This is the name for the special xml:id attribute - */ -#define XML_XML_ID (const xmlChar *) "xml:id" - -/* - * The different element types carried by an XML tree. - * - * NOTE: This is synchronized with DOM Level1 values - * See http://www.w3.org/TR/REC-DOM-Level-1/ - * - * Actually this had diverged a bit, and now XML_DOCUMENT_TYPE_NODE should - * be deprecated to use an XML_DTD_NODE. - */ -typedef enum { - XML_ELEMENT_NODE= 1, - XML_ATTRIBUTE_NODE= 2, - XML_TEXT_NODE= 3, - XML_CDATA_SECTION_NODE= 4, - XML_ENTITY_REF_NODE= 5, - XML_ENTITY_NODE= 6, - XML_PI_NODE= 7, - XML_COMMENT_NODE= 8, - XML_DOCUMENT_NODE= 9, - XML_DOCUMENT_TYPE_NODE= 10, - XML_DOCUMENT_FRAG_NODE= 11, - XML_NOTATION_NODE= 12, - XML_HTML_DOCUMENT_NODE= 13, - XML_DTD_NODE= 14, - XML_ELEMENT_DECL= 15, - XML_ATTRIBUTE_DECL= 16, - XML_ENTITY_DECL= 17, - XML_NAMESPACE_DECL= 18, - XML_XINCLUDE_START= 19, - XML_XINCLUDE_END= 20 -#ifdef LIBXML_DOCB_ENABLED - ,XML_DOCB_DOCUMENT_NODE= 21 -#endif -} xmlElementType; - - -/** - * xmlNotation: - * - * A DTD Notation definition. - */ - -typedef struct _xmlNotation xmlNotation; -typedef xmlNotation *xmlNotationPtr; -struct _xmlNotation { - const xmlChar *name; /* Notation name */ - const xmlChar *PublicID; /* Public identifier, if any */ - const xmlChar *SystemID; /* System identifier, if any */ -}; - -/** - * xmlAttributeType: - * - * A DTD Attribute type definition. - */ - -typedef enum { - XML_ATTRIBUTE_CDATA = 1, - XML_ATTRIBUTE_ID, - XML_ATTRIBUTE_IDREF , - XML_ATTRIBUTE_IDREFS, - XML_ATTRIBUTE_ENTITY, - XML_ATTRIBUTE_ENTITIES, - XML_ATTRIBUTE_NMTOKEN, - XML_ATTRIBUTE_NMTOKENS, - XML_ATTRIBUTE_ENUMERATION, - XML_ATTRIBUTE_NOTATION -} xmlAttributeType; - -/** - * xmlAttributeDefault: - * - * A DTD Attribute default definition. - */ - -typedef enum { - XML_ATTRIBUTE_NONE = 1, - XML_ATTRIBUTE_REQUIRED, - XML_ATTRIBUTE_IMPLIED, - XML_ATTRIBUTE_FIXED -} xmlAttributeDefault; - -/** - * xmlEnumeration: - * - * List structure used when there is an enumeration in DTDs. - */ - -typedef struct _xmlEnumeration xmlEnumeration; -typedef xmlEnumeration *xmlEnumerationPtr; -struct _xmlEnumeration { - struct _xmlEnumeration *next; /* next one */ - const xmlChar *name; /* Enumeration name */ -}; - -/** - * xmlAttribute: - * - * An Attribute declaration in a DTD. - */ - -typedef struct _xmlAttribute xmlAttribute; -typedef xmlAttribute *xmlAttributePtr; -struct _xmlAttribute { - void *_private; /* application data */ - xmlElementType type; /* XML_ATTRIBUTE_DECL, must be second ! */ - const xmlChar *name; /* Attribute name */ - struct _xmlNode *children; /* NULL */ - struct _xmlNode *last; /* NULL */ - struct _xmlDtd *parent; /* -> DTD */ - struct _xmlNode *next; /* next sibling link */ - struct _xmlNode *prev; /* previous sibling link */ - struct _xmlDoc *doc; /* the containing document */ - - struct _xmlAttribute *nexth; /* next in hash table */ - xmlAttributeType atype; /* The attribute type */ - xmlAttributeDefault def; /* the default */ - const xmlChar *defaultValue; /* or the default value */ - xmlEnumerationPtr tree; /* or the enumeration tree if any */ - const xmlChar *prefix; /* the namespace prefix if any */ - const xmlChar *elem; /* Element holding the attribute */ -}; - -/** - * xmlElementContentType: - * - * Possible definitions of element content types. - */ -typedef enum { - XML_ELEMENT_CONTENT_PCDATA = 1, - XML_ELEMENT_CONTENT_ELEMENT, - XML_ELEMENT_CONTENT_SEQ, - XML_ELEMENT_CONTENT_OR -} xmlElementContentType; - -/** - * xmlElementContentOccur: - * - * Possible definitions of element content occurrences. - */ -typedef enum { - XML_ELEMENT_CONTENT_ONCE = 1, - XML_ELEMENT_CONTENT_OPT, - XML_ELEMENT_CONTENT_MULT, - XML_ELEMENT_CONTENT_PLUS -} xmlElementContentOccur; - -/** - * xmlElementContent: - * - * An XML Element content as stored after parsing an element definition - * in a DTD. - */ - -typedef struct _xmlElementContent xmlElementContent; -typedef xmlElementContent *xmlElementContentPtr; -struct _xmlElementContent { - xmlElementContentType type; /* PCDATA, ELEMENT, SEQ or OR */ - xmlElementContentOccur ocur; /* ONCE, OPT, MULT or PLUS */ - const xmlChar *name; /* Element name */ - struct _xmlElementContent *c1; /* first child */ - struct _xmlElementContent *c2; /* second child */ - struct _xmlElementContent *parent; /* parent */ - const xmlChar *prefix; /* Namespace prefix */ -}; - -/** - * xmlElementTypeVal: - * - * The different possibilities for an element content type. - */ - -typedef enum { - XML_ELEMENT_TYPE_UNDEFINED = 0, - XML_ELEMENT_TYPE_EMPTY = 1, - XML_ELEMENT_TYPE_ANY, - XML_ELEMENT_TYPE_MIXED, - XML_ELEMENT_TYPE_ELEMENT -} xmlElementTypeVal; - -#ifdef __cplusplus -} -#endif -#include <libxml/xmlregexp.h> -#ifdef __cplusplus -extern "C" { -#endif - -/** - * xmlElement: - * - * An XML Element declaration from a DTD. - */ - -typedef struct _xmlElement xmlElement; -typedef xmlElement *xmlElementPtr; -struct _xmlElement { - void *_private; /* application data */ - xmlElementType type; /* XML_ELEMENT_DECL, must be second ! */ - const xmlChar *name; /* Element name */ - struct _xmlNode *children; /* NULL */ - struct _xmlNode *last; /* NULL */ - struct _xmlDtd *parent; /* -> DTD */ - struct _xmlNode *next; /* next sibling link */ - struct _xmlNode *prev; /* previous sibling link */ - struct _xmlDoc *doc; /* the containing document */ - - xmlElementTypeVal etype; /* The type */ - xmlElementContentPtr content; /* the allowed element content */ - xmlAttributePtr attributes; /* List of the declared attributes */ - const xmlChar *prefix; /* the namespace prefix if any */ -#ifdef LIBXML_REGEXP_ENABLED - xmlRegexpPtr contModel; /* the validating regexp */ -#else - void *contModel; -#endif -}; - - -/** - * XML_LOCAL_NAMESPACE: - * - * A namespace declaration node. - */ -#define XML_LOCAL_NAMESPACE XML_NAMESPACE_DECL -typedef xmlElementType xmlNsType; - -/** - * xmlNs: - * - * An XML namespace. - * Note that prefix == NULL is valid, it defines the default namespace - * within the subtree (until overridden). - * - * xmlNsType is unified with xmlElementType. - */ - -typedef struct _xmlNs xmlNs; -typedef xmlNs *xmlNsPtr; -struct _xmlNs { - struct _xmlNs *next; /* next Ns link for this node */ - xmlNsType type; /* global or local */ - const xmlChar *href; /* URL for the namespace */ - const xmlChar *prefix; /* prefix for the namespace */ - void *_private; /* application data */ - struct _xmlDoc *context; /* normally an xmlDoc */ -}; - -/** - * xmlDtd: - * - * An XML DTD, as defined by <!DOCTYPE ... There is actually one for - * the internal subset and for the external subset. - */ -typedef struct _xmlDtd xmlDtd; -typedef xmlDtd *xmlDtdPtr; -struct _xmlDtd { - void *_private; /* application data */ - xmlElementType type; /* XML_DTD_NODE, must be second ! */ - const xmlChar *name; /* Name of the DTD */ - struct _xmlNode *children; /* the value of the property link */ - struct _xmlNode *last; /* last child link */ - struct _xmlDoc *parent; /* child->parent link */ - struct _xmlNode *next; /* next sibling link */ - struct _xmlNode *prev; /* previous sibling link */ - struct _xmlDoc *doc; /* the containing document */ - - /* End of common part */ - void *notations; /* Hash table for notations if any */ - void *elements; /* Hash table for elements if any */ - void *attributes; /* Hash table for attributes if any */ - void *entities; /* Hash table for entities if any */ - const xmlChar *ExternalID; /* External identifier for PUBLIC DTD */ - const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC DTD */ - void *pentities; /* Hash table for param entities if any */ -}; - -/** - * xmlAttr: - * - * An attribute on an XML node. - */ -typedef struct _xmlAttr xmlAttr; -typedef xmlAttr *xmlAttrPtr; -struct _xmlAttr { - void *_private; /* application data */ - xmlElementType type; /* XML_ATTRIBUTE_NODE, must be second ! */ - const xmlChar *name; /* the name of the property */ - struct _xmlNode *children; /* the value of the property */ - struct _xmlNode *last; /* NULL */ - struct _xmlNode *parent; /* child->parent link */ - struct _xmlAttr *next; /* next sibling link */ - struct _xmlAttr *prev; /* previous sibling link */ - struct _xmlDoc *doc; /* the containing document */ - xmlNs *ns; /* pointer to the associated namespace */ - xmlAttributeType atype; /* the attribute type if validating */ - void *psvi; /* for type/PSVI informations */ -}; - -/** - * xmlID: - * - * An XML ID instance. - */ - -typedef struct _xmlID xmlID; -typedef xmlID *xmlIDPtr; -struct _xmlID { - struct _xmlID *next; /* next ID */ - const xmlChar *value; /* The ID name */ - xmlAttrPtr attr; /* The attribute holding it */ - const xmlChar *name; /* The attribute if attr is not available */ - int lineno; /* The line number if attr is not available */ - struct _xmlDoc *doc; /* The document holding the ID */ -}; - -/** - * xmlRef: - * - * An XML IDREF instance. - */ - -typedef struct _xmlRef xmlRef; -typedef xmlRef *xmlRefPtr; -struct _xmlRef { - struct _xmlRef *next; /* next Ref */ - const xmlChar *value; /* The Ref name */ - xmlAttrPtr attr; /* The attribute holding it */ - const xmlChar *name; /* The attribute if attr is not available */ - int lineno; /* The line number if attr is not available */ -}; - -/** - * xmlNode: - * - * A node in an XML tree. - */ -typedef struct _xmlNode xmlNode; -typedef xmlNode *xmlNodePtr; -struct _xmlNode { - void *_private; /* application data */ - xmlElementType type; /* type number, must be second ! */ - const xmlChar *name; /* the name of the node, or the entity */ - struct _xmlNode *children; /* parent->childs link */ - struct _xmlNode *last; /* last child link */ - struct _xmlNode *parent; /* child->parent link */ - struct _xmlNode *next; /* next sibling link */ - struct _xmlNode *prev; /* previous sibling link */ - struct _xmlDoc *doc; /* the containing document */ - - /* End of common part */ - xmlNs *ns; /* pointer to the associated namespace */ - xmlChar *content; /* the content */ - struct _xmlAttr *properties;/* properties list */ - xmlNs *nsDef; /* namespace definitions on this node */ - void *psvi; /* for type/PSVI informations */ - unsigned short line; /* line number */ - unsigned short extra; /* extra data for XPath/XSLT */ -}; - -/** - * XML_GET_CONTENT: - * - * Macro to extract the content pointer of a node. - */ -#define XML_GET_CONTENT(n) \ - ((n)->type == XML_ELEMENT_NODE ? NULL : (n)->content) - -/** - * XML_GET_LINE: - * - * Macro to extract the line number of an element node. - */ -#define XML_GET_LINE(n) \ - (xmlGetLineNo(n)) - - -/** - * xmlDoc: - * - * An XML document. - */ -typedef struct _xmlDoc xmlDoc; -typedef xmlDoc *xmlDocPtr; -struct _xmlDoc { - void *_private; /* application data */ - xmlElementType type; /* XML_DOCUMENT_NODE, must be second ! */ - char *name; /* name/filename/URI of the document */ - struct _xmlNode *children; /* the document tree */ - struct _xmlNode *last; /* last child link */ - struct _xmlNode *parent; /* child->parent link */ - struct _xmlNode *next; /* next sibling link */ - struct _xmlNode *prev; /* previous sibling link */ - struct _xmlDoc *doc; /* autoreference to itself */ - - /* End of common part */ - int compression;/* level of zlib compression */ - int standalone; /* standalone document (no external refs) - 1 if standalone="yes" - 0 if standalone="no" - -1 if there is no XML declaration - -2 if there is an XML declaration, but no - standalone attribute was specified */ - struct _xmlDtd *intSubset; /* the document internal subset */ - struct _xmlDtd *extSubset; /* the document external subset */ - struct _xmlNs *oldNs; /* Global namespace, the old way */ - const xmlChar *version; /* the XML version string */ - const xmlChar *encoding; /* external initial encoding, if any */ - void *ids; /* Hash table for ID attributes if any */ - void *refs; /* Hash table for IDREFs attributes if any */ - const xmlChar *URL; /* The URI for that document */ - int charset; /* encoding of the in-memory content - actually an xmlCharEncoding */ - struct _xmlDict *dict; /* dict used to allocate names or NULL */ - void *psvi; /* for type/PSVI informations */ -}; - - -typedef struct _xmlDOMWrapCtxt xmlDOMWrapCtxt; -typedef xmlDOMWrapCtxt *xmlDOMWrapCtxtPtr; - -/** - * xmlDOMWrapAcquireNsFunction: - * @ctxt: a DOM wrapper context - * @node: the context node (element or attribute) - * @nsName: the requested namespace name - * @nsPrefix: the requested namespace prefix - * - * A function called to acquire namespaces (xmlNs) from the wrapper. - * - * Returns an xmlNsPtr or NULL in case of an error. - */ -typedef xmlNsPtr (*xmlDOMWrapAcquireNsFunction) (xmlDOMWrapCtxtPtr ctxt, - xmlNodePtr node, - const xmlChar *nsName, - const xmlChar *nsPrefix); - -/** - * xmlDOMWrapCtxt: - * - * Context for DOM wrapper-operations. - */ -struct _xmlDOMWrapCtxt { - void * _private; - /* - * The type of this context, just in case we need specialized - * contexts in the future. - */ - int type; - /* - * Internal namespace map used for various operations. - */ - void * namespaceMap; - /* - * Use this one to acquire an xmlNsPtr intended for node->ns. - * (Note that this is not intended for elem->nsDef). - */ - xmlDOMWrapAcquireNsFunction getNsForNodeFunc; -}; - -/** - * xmlChildrenNode: - * - * Macro for compatibility naming layer with libxml1. Maps - * to "children." - */ -#ifndef xmlChildrenNode -#define xmlChildrenNode children -#endif - -/** - * xmlRootNode: - * - * Macro for compatibility naming layer with libxml1. Maps - * to "children". - */ -#ifndef xmlRootNode -#define xmlRootNode children -#endif - -/* - * Variables. - */ - -/* - * Some helper functions - */ -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) || defined (LIBXML_HTML_ENABLED) || defined(LIBXML_SAX1_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_WRITER_ENABLED) || defined(LIBXML_DOCB_ENABLED) -XMLPUBFUN int XMLCALL - xmlValidateNCName (const xmlChar *value, - int space); -#endif - -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) -XMLPUBFUN int XMLCALL - xmlValidateQName (const xmlChar *value, - int space); -XMLPUBFUN int XMLCALL - xmlValidateName (const xmlChar *value, - int space); -XMLPUBFUN int XMLCALL - xmlValidateNMToken (const xmlChar *value, - int space); -#endif - -XMLPUBFUN xmlChar * XMLCALL - xmlBuildQName (const xmlChar *ncname, - const xmlChar *prefix, - xmlChar *memory, - int len); -XMLPUBFUN xmlChar * XMLCALL - xmlSplitQName2 (const xmlChar *name, - xmlChar **prefix); -XMLPUBFUN const xmlChar * XMLCALL - xmlSplitQName3 (const xmlChar *name, - int *len); - -/* - * Handling Buffers. - */ - -XMLPUBFUN void XMLCALL - xmlSetBufferAllocationScheme(xmlBufferAllocationScheme scheme); -XMLPUBFUN xmlBufferAllocationScheme XMLCALL - xmlGetBufferAllocationScheme(void); - -XMLPUBFUN xmlBufferPtr XMLCALL - xmlBufferCreate (void); -XMLPUBFUN xmlBufferPtr XMLCALL - xmlBufferCreateSize (size_t size); -XMLPUBFUN xmlBufferPtr XMLCALL - xmlBufferCreateStatic (void *mem, - size_t size); -XMLPUBFUN int XMLCALL - xmlBufferResize (xmlBufferPtr buf, - unsigned int size); -XMLPUBFUN void XMLCALL - xmlBufferFree (xmlBufferPtr buf); -XMLPUBFUN int XMLCALL - xmlBufferDump (FILE *file, - xmlBufferPtr buf); -XMLPUBFUN int XMLCALL - xmlBufferAdd (xmlBufferPtr buf, - const xmlChar *str, - int len); -XMLPUBFUN int XMLCALL - xmlBufferAddHead (xmlBufferPtr buf, - const xmlChar *str, - int len); -XMLPUBFUN int XMLCALL - xmlBufferCat (xmlBufferPtr buf, - const xmlChar *str); -XMLPUBFUN int XMLCALL - xmlBufferCCat (xmlBufferPtr buf, - const char *str); -XMLPUBFUN int XMLCALL - xmlBufferShrink (xmlBufferPtr buf, - unsigned int len); -XMLPUBFUN int XMLCALL - xmlBufferGrow (xmlBufferPtr buf, - unsigned int len); -XMLPUBFUN void XMLCALL - xmlBufferEmpty (xmlBufferPtr buf); -XMLPUBFUN const xmlChar* XMLCALL - xmlBufferContent (const xmlBufferPtr buf); -XMLPUBFUN void XMLCALL - xmlBufferSetAllocationScheme(xmlBufferPtr buf, - xmlBufferAllocationScheme scheme); -XMLPUBFUN int XMLCALL - xmlBufferLength (const xmlBufferPtr buf); - -/* - * Creating/freeing new structures. - */ -XMLPUBFUN xmlDtdPtr XMLCALL - xmlCreateIntSubset (xmlDocPtr doc, - const xmlChar *name, - const xmlChar *ExternalID, - const xmlChar *SystemID); -XMLPUBFUN xmlDtdPtr XMLCALL - xmlNewDtd (xmlDocPtr doc, - const xmlChar *name, - const xmlChar *ExternalID, - const xmlChar *SystemID); -XMLPUBFUN xmlDtdPtr XMLCALL - xmlGetIntSubset (xmlDocPtr doc); -XMLPUBFUN void XMLCALL - xmlFreeDtd (xmlDtdPtr cur); -#ifdef LIBXML_LEGACY_ENABLED -XMLPUBFUN xmlNsPtr XMLCALL - xmlNewGlobalNs (xmlDocPtr doc, - const xmlChar *href, - const xmlChar *prefix); -#endif /* LIBXML_LEGACY_ENABLED */ -XMLPUBFUN xmlNsPtr XMLCALL - xmlNewNs (xmlNodePtr node, - const xmlChar *href, - const xmlChar *prefix); -XMLPUBFUN void XMLCALL - xmlFreeNs (xmlNsPtr cur); -XMLPUBFUN void XMLCALL - xmlFreeNsList (xmlNsPtr cur); -XMLPUBFUN xmlDocPtr XMLCALL - xmlNewDoc (const xmlChar *version); -XMLPUBFUN void XMLCALL - xmlFreeDoc (xmlDocPtr cur); -XMLPUBFUN xmlAttrPtr XMLCALL - xmlNewDocProp (xmlDocPtr doc, - const xmlChar *name, - const xmlChar *value); -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || \ - defined(LIBXML_SCHEMAS_ENABLED) -XMLPUBFUN xmlAttrPtr XMLCALL - xmlNewProp (xmlNodePtr node, - const xmlChar *name, - const xmlChar *value); -#endif -XMLPUBFUN xmlAttrPtr XMLCALL - xmlNewNsProp (xmlNodePtr node, - xmlNsPtr ns, - const xmlChar *name, - const xmlChar *value); -XMLPUBFUN xmlAttrPtr XMLCALL - xmlNewNsPropEatName (xmlNodePtr node, - xmlNsPtr ns, - xmlChar *name, - const xmlChar *value); -XMLPUBFUN void XMLCALL - xmlFreePropList (xmlAttrPtr cur); -XMLPUBFUN void XMLCALL - xmlFreeProp (xmlAttrPtr cur); -XMLPUBFUN xmlAttrPtr XMLCALL - xmlCopyProp (xmlNodePtr target, - xmlAttrPtr cur); -XMLPUBFUN xmlAttrPtr XMLCALL - xmlCopyPropList (xmlNodePtr target, - xmlAttrPtr cur); -#ifdef LIBXML_TREE_ENABLED -XMLPUBFUN xmlDtdPtr XMLCALL - xmlCopyDtd (xmlDtdPtr dtd); -#endif /* LIBXML_TREE_ENABLED */ -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) -XMLPUBFUN xmlDocPtr XMLCALL - xmlCopyDoc (xmlDocPtr doc, - int recursive); -#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */ -/* - * Creating new nodes. - */ -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewDocNode (xmlDocPtr doc, - xmlNsPtr ns, - const xmlChar *name, - const xmlChar *content); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewDocNodeEatName (xmlDocPtr doc, - xmlNsPtr ns, - xmlChar *name, - const xmlChar *content); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewNode (xmlNsPtr ns, - const xmlChar *name); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewNodeEatName (xmlNsPtr ns, - xmlChar *name); -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewChild (xmlNodePtr parent, - xmlNsPtr ns, - const xmlChar *name, - const xmlChar *content); -#endif -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewDocText (xmlDocPtr doc, - const xmlChar *content); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewText (const xmlChar *content); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewDocPI (xmlDocPtr doc, - const xmlChar *name, - const xmlChar *content); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewPI (const xmlChar *name, - const xmlChar *content); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewDocTextLen (xmlDocPtr doc, - const xmlChar *content, - int len); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewTextLen (const xmlChar *content, - int len); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewDocComment (xmlDocPtr doc, - const xmlChar *content); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewComment (const xmlChar *content); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewCDataBlock (xmlDocPtr doc, - const xmlChar *content, - int len); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewCharRef (xmlDocPtr doc, - const xmlChar *name); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewReference (xmlDocPtr doc, - const xmlChar *name); -XMLPUBFUN xmlNodePtr XMLCALL - xmlCopyNode (const xmlNodePtr node, - int recursive); -XMLPUBFUN xmlNodePtr XMLCALL - xmlDocCopyNode (const xmlNodePtr node, - xmlDocPtr doc, - int recursive); -XMLPUBFUN xmlNodePtr XMLCALL - xmlDocCopyNodeList (xmlDocPtr doc, - const xmlNodePtr node); -XMLPUBFUN xmlNodePtr XMLCALL - xmlCopyNodeList (const xmlNodePtr node); -#ifdef LIBXML_TREE_ENABLED -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewTextChild (xmlNodePtr parent, - xmlNsPtr ns, - const xmlChar *name, - const xmlChar *content); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewDocRawNode (xmlDocPtr doc, - xmlNsPtr ns, - const xmlChar *name, - const xmlChar *content); -XMLPUBFUN xmlNodePtr XMLCALL - xmlNewDocFragment (xmlDocPtr doc); -#endif /* LIBXML_TREE_ENABLED */ - -/* - * Navigating. - */ -XMLPUBFUN long XMLCALL - xmlGetLineNo (xmlNodePtr node); -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_DEBUG_ENABLED) -XMLPUBFUN xmlChar * XMLCALL - xmlGetNodePath (xmlNodePtr node); -#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_DEBUG_ENABLED) */ -XMLPUBFUN xmlNodePtr XMLCALL - xmlDocGetRootElement (xmlDocPtr doc); -XMLPUBFUN xmlNodePtr XMLCALL - xmlGetLastChild (xmlNodePtr parent); -XMLPUBFUN int XMLCALL - xmlNodeIsText (xmlNodePtr node); -XMLPUBFUN int XMLCALL - xmlIsBlankNode (xmlNodePtr node); - -/* - * Changing the structure. - */ -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED) -XMLPUBFUN xmlNodePtr XMLCALL - xmlDocSetRootElement (xmlDocPtr doc, - xmlNodePtr root); -#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED) */ -#ifdef LIBXML_TREE_ENABLED -XMLPUBFUN void XMLCALL - xmlNodeSetName (xmlNodePtr cur, - const xmlChar *name); -#endif /* LIBXML_TREE_ENABLED */ -XMLPUBFUN xmlNodePtr XMLCALL - xmlAddChild (xmlNodePtr parent, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL - xmlAddChildList (xmlNodePtr parent, - xmlNodePtr cur); -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED) -XMLPUBFUN xmlNodePtr XMLCALL - xmlReplaceNode (xmlNodePtr old, - xmlNodePtr cur); -#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED) */ -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || \ - defined(LIBXML_SCHEMAS_ENABLED) -XMLPUBFUN xmlNodePtr XMLCALL - xmlAddPrevSibling (xmlNodePtr cur, - xmlNodePtr elem); -#endif /* LIBXML_TREE_ENABLED || LIBXML_HTML_ENABLED || LIBXML_SCHEMAS_ENABLED */ -XMLPUBFUN xmlNodePtr XMLCALL - xmlAddSibling (xmlNodePtr cur, - xmlNodePtr elem); -XMLPUBFUN xmlNodePtr XMLCALL - xmlAddNextSibling (xmlNodePtr cur, - xmlNodePtr elem); -XMLPUBFUN void XMLCALL - xmlUnlinkNode (xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL - xmlTextMerge (xmlNodePtr first, - xmlNodePtr second); -XMLPUBFUN int XMLCALL - xmlTextConcat (xmlNodePtr node, - const xmlChar *content, - int len); -XMLPUBFUN void XMLCALL - xmlFreeNodeList (xmlNodePtr cur); -XMLPUBFUN void XMLCALL - xmlFreeNode (xmlNodePtr cur); -XMLPUBFUN void XMLCALL - xmlSetTreeDoc (xmlNodePtr tree, - xmlDocPtr doc); -XMLPUBFUN void XMLCALL - xmlSetListDoc (xmlNodePtr list, - xmlDocPtr doc); -/* - * Namespaces. - */ -XMLPUBFUN xmlNsPtr XMLCALL - xmlSearchNs (xmlDocPtr doc, - xmlNodePtr node, - const xmlChar *nameSpace); -XMLPUBFUN xmlNsPtr XMLCALL - xmlSearchNsByHref (xmlDocPtr doc, - xmlNodePtr node, - const xmlChar *href); -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) -XMLPUBFUN xmlNsPtr * XMLCALL - xmlGetNsList (xmlDocPtr doc, - xmlNodePtr node); -#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) */ - -XMLPUBFUN void XMLCALL - xmlSetNs (xmlNodePtr node, - xmlNsPtr ns); -XMLPUBFUN xmlNsPtr XMLCALL - xmlCopyNamespace (xmlNsPtr cur); -XMLPUBFUN xmlNsPtr XMLCALL - xmlCopyNamespaceList (xmlNsPtr cur); - -/* - * Changing the content. - */ -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED) -XMLPUBFUN xmlAttrPtr XMLCALL - xmlSetProp (xmlNodePtr node, - const xmlChar *name, - const xmlChar *value); -XMLPUBFUN xmlAttrPtr XMLCALL - xmlSetNsProp (xmlNodePtr node, - xmlNsPtr ns, - const xmlChar *name, - const xmlChar *value); -#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED) */ -XMLPUBFUN xmlChar * XMLCALL - xmlGetNoNsProp (xmlNodePtr node, - const xmlChar *name); -XMLPUBFUN xmlChar * XMLCALL - xmlGetProp (xmlNodePtr node, - const xmlChar *name); -XMLPUBFUN xmlAttrPtr XMLCALL - xmlHasProp (xmlNodePtr node, - const xmlChar *name); -XMLPUBFUN xmlAttrPtr XMLCALL - xmlHasNsProp (xmlNodePtr node, - const xmlChar *name, - const xmlChar *nameSpace); -XMLPUBFUN xmlChar * XMLCALL - xmlGetNsProp (xmlNodePtr node, - const xmlChar *name, - const xmlChar *nameSpace); -XMLPUBFUN xmlNodePtr XMLCALL - xmlStringGetNodeList (xmlDocPtr doc, - const xmlChar *value); -XMLPUBFUN xmlNodePtr XMLCALL - xmlStringLenGetNodeList (xmlDocPtr doc, - const xmlChar *value, - int len); -XMLPUBFUN xmlChar * XMLCALL - xmlNodeListGetString (xmlDocPtr doc, - xmlNodePtr list, - int inLine); -#ifdef LIBXML_TREE_ENABLED -XMLPUBFUN xmlChar * XMLCALL - xmlNodeListGetRawString (xmlDocPtr doc, - xmlNodePtr list, - int inLine); -#endif /* LIBXML_TREE_ENABLED */ -XMLPUBFUN void XMLCALL - xmlNodeSetContent (xmlNodePtr cur, - const xmlChar *content); -#ifdef LIBXML_TREE_ENABLED -XMLPUBFUN void XMLCALL - xmlNodeSetContentLen (xmlNodePtr cur, - const xmlChar *content, - int len); -#endif /* LIBXML_TREE_ENABLED */ -XMLPUBFUN void XMLCALL - xmlNodeAddContent (xmlNodePtr cur, - const xmlChar *content); -XMLPUBFUN void XMLCALL - xmlNodeAddContentLen (xmlNodePtr cur, - const xmlChar *content, - int len); -XMLPUBFUN xmlChar * XMLCALL - xmlNodeGetContent (xmlNodePtr cur); -XMLPUBFUN int XMLCALL - xmlNodeBufGetContent (xmlBufferPtr buffer, - xmlNodePtr cur); -XMLPUBFUN xmlChar * XMLCALL - xmlNodeGetLang (xmlNodePtr cur); -XMLPUBFUN int XMLCALL - xmlNodeGetSpacePreserve (xmlNodePtr cur); -#ifdef LIBXML_TREE_ENABLED -XMLPUBFUN void XMLCALL - xmlNodeSetLang (xmlNodePtr cur, - const xmlChar *lang); -XMLPUBFUN void XMLCALL - xmlNodeSetSpacePreserve (xmlNodePtr cur, - int val); -#endif /* LIBXML_TREE_ENABLED */ -XMLPUBFUN xmlChar * XMLCALL - xmlNodeGetBase (xmlDocPtr doc, - xmlNodePtr cur); -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) -XMLPUBFUN void XMLCALL - xmlNodeSetBase (xmlNodePtr cur, - const xmlChar *uri); -#endif - -/* - * Removing content. - */ -XMLPUBFUN int XMLCALL - xmlRemoveProp (xmlAttrPtr cur); -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) -XMLPUBFUN int XMLCALL - xmlUnsetNsProp (xmlNodePtr node, - xmlNsPtr ns, - const xmlChar *name); -XMLPUBFUN int XMLCALL - xmlUnsetProp (xmlNodePtr node, - const xmlChar *name); -#endif /* defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) */ - -/* - * Internal, don't use. - */ -XMLPUBFUN void XMLCALL - xmlBufferWriteCHAR (xmlBufferPtr buf, - const xmlChar *string); -XMLPUBFUN void XMLCALL - xmlBufferWriteChar (xmlBufferPtr buf, - const char *string); -XMLPUBFUN void XMLCALL - xmlBufferWriteQuotedString(xmlBufferPtr buf, - const xmlChar *string); - -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN void xmlAttrSerializeTxtContent(xmlBufferPtr buf, - xmlDocPtr doc, - xmlAttrPtr attr, - const xmlChar *string); -#endif /* LIBXML_OUTPUT_ENABLED */ - -#ifdef LIBXML_TREE_ENABLED -/* - * Namespace handling. - */ -XMLPUBFUN int XMLCALL - xmlReconciliateNs (xmlDocPtr doc, - xmlNodePtr tree); -#endif - -#ifdef LIBXML_OUTPUT_ENABLED -/* - * Saving. - */ -XMLPUBFUN void XMLCALL - xmlDocDumpFormatMemory (xmlDocPtr cur, - xmlChar **mem, - int *size, - int format); -XMLPUBFUN void XMLCALL - xmlDocDumpMemory (xmlDocPtr cur, - xmlChar **mem, - int *size); -XMLPUBFUN void XMLCALL - xmlDocDumpMemoryEnc (xmlDocPtr out_doc, - xmlChar **doc_txt_ptr, - int * doc_txt_len, - const char *txt_encoding); -XMLPUBFUN void XMLCALL - xmlDocDumpFormatMemoryEnc(xmlDocPtr out_doc, - xmlChar **doc_txt_ptr, - int * doc_txt_len, - const char *txt_encoding, - int format); -XMLPUBFUN int XMLCALL - xmlDocFormatDump (FILE *f, - xmlDocPtr cur, - int format); -XMLPUBFUN int XMLCALL - xmlDocDump (FILE *f, - xmlDocPtr cur); -XMLPUBFUN void XMLCALL - xmlElemDump (FILE *f, - xmlDocPtr doc, - xmlNodePtr cur); -XMLPUBFUN int XMLCALL - xmlSaveFile (const char *filename, - xmlDocPtr cur); -XMLPUBFUN int XMLCALL - xmlSaveFormatFile (const char *filename, - xmlDocPtr cur, - int format); -XMLPUBFUN int XMLCALL - xmlNodeDump (xmlBufferPtr buf, - xmlDocPtr doc, - xmlNodePtr cur, - int level, - int format); - -XMLPUBFUN int XMLCALL - xmlSaveFileTo (xmlOutputBufferPtr buf, - xmlDocPtr cur, - const char *encoding); -XMLPUBFUN int XMLCALL - xmlSaveFormatFileTo (xmlOutputBufferPtr buf, - xmlDocPtr cur, - const char *encoding, - int format); -XMLPUBFUN void XMLCALL - xmlNodeDumpOutput (xmlOutputBufferPtr buf, - xmlDocPtr doc, - xmlNodePtr cur, - int level, - int format, - const char *encoding); - -XMLPUBFUN int XMLCALL - xmlSaveFormatFileEnc (const char *filename, - xmlDocPtr cur, - const char *encoding, - int format); - -XMLPUBFUN int XMLCALL - xmlSaveFileEnc (const char *filename, - xmlDocPtr cur, - const char *encoding); - -#endif /* LIBXML_OUTPUT_ENABLED */ -/* - * XHTML - */ -XMLPUBFUN int XMLCALL - xmlIsXHTML (const xmlChar *systemID, - const xmlChar *publicID); - -/* - * Compression. - */ -XMLPUBFUN int XMLCALL - xmlGetDocCompressMode (xmlDocPtr doc); -XMLPUBFUN void XMLCALL - xmlSetDocCompressMode (xmlDocPtr doc, - int mode); -XMLPUBFUN int XMLCALL - xmlGetCompressMode (void); -XMLPUBFUN void XMLCALL - xmlSetCompressMode (int mode); - -/* -* DOM-wrapper helper functions. -*/ -XMLPUBFUN xmlDOMWrapCtxtPtr XMLCALL - xmlDOMWrapNewCtxt (void); -XMLPUBFUN void XMLCALL - xmlDOMWrapFreeCtxt (xmlDOMWrapCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlDOMWrapReconcileNamespaces(xmlDOMWrapCtxtPtr ctxt, - xmlNodePtr elem, - int options); -XMLPUBFUN int XMLCALL - xmlDOMWrapAdoptNode (xmlDOMWrapCtxtPtr ctxt, - xmlDocPtr sourceDoc, - xmlNodePtr node, - xmlDocPtr destDoc, - xmlNodePtr destParent, - int options); -XMLPUBFUN int XMLCALL - xmlDOMWrapRemoveNode (xmlDOMWrapCtxtPtr ctxt, - xmlDocPtr doc, - xmlNodePtr node, - int options); -XMLPUBFUN int XMLCALL - xmlDOMWrapCloneNode (xmlDOMWrapCtxtPtr ctxt, - xmlDocPtr sourceDoc, - xmlNodePtr node, - xmlNodePtr *clonedNode, - xmlDocPtr destDoc, - xmlNodePtr destParent, - int deep, - int options); - -#ifdef __cplusplus -} -#endif -#ifndef __XML_PARSER_H__ -#include <libxml/xmlmemory.h> -#endif - -#endif /* __XML_TREE_H__ */ - diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/trio.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/trio.h deleted file mode 100644 index d998f359..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/trio.h +++ /dev/null @@ -1,216 +0,0 @@ -/************************************************************************* - * - * $Id: trio.h 1886 2003-04-03 15:28:28Z veillard $ - * - * Copyright (C) 1998 Bjorn Reese and Daniel Stenberg. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND - * CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER. - * - ************************************************************************* - * - * http://ctrio.sourceforge.net/ - * - ************************************************************************/ - -#ifndef TRIO_TRIO_H -#define TRIO_TRIO_H - -#if !defined(WITHOUT_TRIO) - -/* - * Use autoconf defines if present. Packages using trio must define - * HAVE_CONFIG_H as a compiler option themselves. - */ -#if defined(HAVE_CONFIG_H) -# include <config.h> -#endif - -#include "triodef.h" - -#include <stdio.h> -#include <stdlib.h> -#if defined(TRIO_COMPILER_ANCIENT) -# include <varargs.h> -#else -# include <stdarg.h> -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * Error codes. - * - * Remember to add a textual description to trio_strerror. - */ -enum { - TRIO_EOF = 1, - TRIO_EINVAL = 2, - TRIO_ETOOMANY = 3, - TRIO_EDBLREF = 4, - TRIO_EGAP = 5, - TRIO_ENOMEM = 6, - TRIO_ERANGE = 7, - TRIO_ERRNO = 8, - TRIO_ECUSTOM = 9 -}; - -/* Error macros */ -#define TRIO_ERROR_CODE(x) ((-(x)) & 0x00FF) -#define TRIO_ERROR_POSITION(x) ((-(x)) >> 8) -#define TRIO_ERROR_NAME(x) trio_strerror(x) - -typedef int (*trio_outstream_t) TRIO_PROTO((trio_pointer_t, int)); -typedef int (*trio_instream_t) TRIO_PROTO((trio_pointer_t)); - -TRIO_CONST char *trio_strerror TRIO_PROTO((int)); - -/************************************************************************* - * Print Functions - */ - -int trio_printf TRIO_PROTO((TRIO_CONST char *format, ...)); -int trio_vprintf TRIO_PROTO((TRIO_CONST char *format, va_list args)); -int trio_printfv TRIO_PROTO((TRIO_CONST char *format, void **args)); - -int trio_fprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, ...)); -int trio_vfprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args)); -int trio_fprintfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args)); - -int trio_dprintf TRIO_PROTO((int fd, TRIO_CONST char *format, ...)); -int trio_vdprintf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args)); -int trio_dprintfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args)); - -int trio_cprintf TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure, - TRIO_CONST char *format, ...)); -int trio_vcprintf TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure, - TRIO_CONST char *format, va_list args)); -int trio_cprintfv TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure, - TRIO_CONST char *format, void **args)); - -int trio_sprintf TRIO_PROTO((char *buffer, TRIO_CONST char *format, ...)); -int trio_vsprintf TRIO_PROTO((char *buffer, TRIO_CONST char *format, va_list args)); -int trio_sprintfv TRIO_PROTO((char *buffer, TRIO_CONST char *format, void **args)); - -int trio_snprintf TRIO_PROTO((char *buffer, size_t max, TRIO_CONST char *format, ...)); -int trio_vsnprintf TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format, - va_list args)); -int trio_snprintfv TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format, - void **args)); - -int trio_snprintfcat TRIO_PROTO((char *buffer, size_t max, TRIO_CONST char *format, ...)); -int trio_vsnprintfcat TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format, - va_list args)); - -char *trio_aprintf TRIO_PROTO((TRIO_CONST char *format, ...)); -char *trio_vaprintf TRIO_PROTO((TRIO_CONST char *format, va_list args)); - -int trio_asprintf TRIO_PROTO((char **ret, TRIO_CONST char *format, ...)); -int trio_vasprintf TRIO_PROTO((char **ret, TRIO_CONST char *format, va_list args)); - -/************************************************************************* - * Scan Functions - */ -int trio_scanf TRIO_PROTO((TRIO_CONST char *format, ...)); -int trio_vscanf TRIO_PROTO((TRIO_CONST char *format, va_list args)); -int trio_scanfv TRIO_PROTO((TRIO_CONST char *format, void **args)); - -int trio_fscanf TRIO_PROTO((FILE *file, TRIO_CONST char *format, ...)); -int trio_vfscanf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args)); -int trio_fscanfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args)); - -int trio_dscanf TRIO_PROTO((int fd, TRIO_CONST char *format, ...)); -int trio_vdscanf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args)); -int trio_dscanfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args)); - -int trio_cscanf TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure, - TRIO_CONST char *format, ...)); -int trio_vcscanf TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure, - TRIO_CONST char *format, va_list args)); -int trio_cscanfv TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure, - TRIO_CONST char *format, void **args)); - -int trio_sscanf TRIO_PROTO((TRIO_CONST char *buffer, TRIO_CONST char *format, ...)); -int trio_vsscanf TRIO_PROTO((TRIO_CONST char *buffer, TRIO_CONST char *format, va_list args)); -int trio_sscanfv TRIO_PROTO((TRIO_CONST char *buffer, TRIO_CONST char *format, void **args)); - -/************************************************************************* - * Locale Functions - */ -void trio_locale_set_decimal_point TRIO_PROTO((char *decimalPoint)); -void trio_locale_set_thousand_separator TRIO_PROTO((char *thousandSeparator)); -void trio_locale_set_grouping TRIO_PROTO((char *grouping)); - -/************************************************************************* - * Renaming - */ -#ifdef TRIO_REPLACE_STDIO -/* Replace the <stdio.h> functions */ -#ifndef HAVE_PRINTF -# define printf trio_printf -#endif -#ifndef HAVE_VPRINTF -# define vprintf trio_vprintf -#endif -#ifndef HAVE_FPRINTF -# define fprintf trio_fprintf -#endif -#ifndef HAVE_VFPRINTF -# define vfprintf trio_vfprintf -#endif -#ifndef HAVE_SPRINTF -# define sprintf trio_sprintf -#endif -#ifndef HAVE_VSPRINTF -# define vsprintf trio_vsprintf -#endif -#ifndef HAVE_SNPRINTF -# define snprintf trio_snprintf -#endif -#ifndef HAVE_VSNPRINTF -# define vsnprintf trio_vsnprintf -#endif -#ifndef HAVE_SCANF -# define scanf trio_scanf -#endif -#ifndef HAVE_VSCANF -# define vscanf trio_vscanf -#endif -#ifndef HAVE_FSCANF -# define fscanf trio_fscanf -#endif -#ifndef HAVE_VFSCANF -# define vfscanf trio_vfscanf -#endif -#ifndef HAVE_SSCANF -# define sscanf trio_sscanf -#endif -#ifndef HAVE_VSSCANF -# define vsscanf trio_vsscanf -#endif -/* These aren't stdio functions, but we make them look similar */ -#define dprintf trio_dprintf -#define vdprintf trio_vdprintf -#define aprintf trio_aprintf -#define vaprintf trio_vaprintf -#define asprintf trio_asprintf -#define vasprintf trio_vasprintf -#define dscanf trio_dscanf -#define vdscanf trio_vdscanf -#endif - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* WITHOUT_TRIO */ - -#endif /* TRIO_TRIO_H */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/triodef.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/triodef.h deleted file mode 100644 index 9ab3af1c..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/triodef.h +++ /dev/null @@ -1,222 +0,0 @@ -/************************************************************************* - * - * $Id: triodef.h 3473 2006-05-31 13:35:28Z veillard $ - * - * Copyright (C) 2001 Bjorn Reese <breese@users.sourceforge.net> - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND - * CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER. - * - ************************************************************************/ - -#ifndef TRIO_TRIODEF_H -#define TRIO_TRIODEF_H - -/************************************************************************* - * Platform and compiler support detection - */ -#if defined(__GNUC__) -# define TRIO_COMPILER_GCC -#elif defined(__SUNPRO_C) -# define TRIO_COMPILER_SUNPRO -#elif defined(__SUNPRO_CC) -# define TRIO_COMPILER_SUNPRO -# define __SUNPRO_C __SUNPRO_CC -#elif defined(__xlC__) || defined(__IBMC__) || defined(__IBMCPP__) -# define TRIO_COMPILER_XLC -#elif defined(_AIX) && !defined(__GNUC__) -# define TRIO_COMPILER_XLC /* Workaround for old xlc */ -#elif defined(__DECC) || defined(__DECCXX) -# define TRIO_COMPILER_DECC -#elif defined(__osf__) && defined(__LANGUAGE_C__) -# define TRIO_COMPILER_DECC /* Workaround for old DEC C compilers */ -#elif defined(_MSC_VER) -# define TRIO_COMPILER_MSVC -#elif defined(__BORLANDC__) -# define TRIO_COMPILER_BCB -#endif - -#if defined(VMS) || defined(__VMS) -/* - * VMS is placed first to avoid identifying the platform as Unix - * based on the DECC compiler later on. - */ -# define TRIO_PLATFORM_VMS -#elif defined(unix) || defined(__unix) || defined(__unix__) -# define TRIO_PLATFORM_UNIX -#elif defined(TRIO_COMPILER_XLC) || defined(_AIX) -# define TRIO_PLATFORM_UNIX -#elif defined(TRIO_COMPILER_DECC) || defined(__osf___) -# define TRIO_PLATFORM_UNIX -#elif defined(__NetBSD__) -# define TRIO_PLATFORM_UNIX -#elif defined(__Lynx__) -# define TRIO_PLATFORM_UNIX -#elif defined(__QNX__) -# define TRIO_PLATFORM_UNIX -# define TRIO_PLATFORM_QNX -#elif defined(__CYGWIN__) -# define TRIO_PLATFORM_UNIX -#elif defined(AMIGA) && defined(TRIO_COMPILER_GCC) -# define TRIO_PLATFORM_UNIX -#elif defined(TRIO_COMPILER_MSVC) || defined(WIN32) || defined(_WIN32) -# define TRIO_PLATFORM_WIN32 -#elif defined(mpeix) || defined(__mpexl) -# define TRIO_PLATFORM_MPEIX -#endif - -#if defined(_AIX) -# define TRIO_PLATFORM_AIX -#elif defined(__hpux) -# define TRIO_PLATFORM_HPUX -#elif defined(sun) || defined(__sun__) -# if defined(__SVR4) || defined(__svr4__) -# define TRIO_PLATFORM_SOLARIS -# else -# define TRIO_PLATFORM_SUNOS -# endif -#endif - -#if defined(__STDC__) || defined(TRIO_COMPILER_MSVC) || defined(TRIO_COMPILER_BCB) -# define TRIO_COMPILER_SUPPORTS_C89 -# if defined(__STDC_VERSION__) -# define TRIO_COMPILER_SUPPORTS_C90 -# if (__STDC_VERSION__ >= 199409L) -# define TRIO_COMPILER_SUPPORTS_C94 -# endif -# if (__STDC_VERSION__ >= 199901L) -# define TRIO_COMPILER_SUPPORTS_C99 -# endif -# elif defined(TRIO_COMPILER_SUNPRO) -# if (__SUNPRO_C >= 0x420) -# define TRIO_COMPILER_SUPPORTS_C94 -# endif -# endif -#endif - -#if defined(_XOPEN_SOURCE) -# if defined(_XOPEN_SOURCE_EXTENDED) -# define TRIO_COMPILER_SUPPORTS_UNIX95 -# endif -# if (_XOPEN_VERSION >= 500) -# define TRIO_COMPILER_SUPPORTS_UNIX98 -# endif -# if (_XOPEN_VERSION >= 600) -# define TRIO_COMPILER_SUPPORTS_UNIX01 -# endif -#endif - -/************************************************************************* - * Generic defines - */ - -#if !defined(TRIO_PUBLIC) -# define TRIO_PUBLIC -#endif -#if !defined(TRIO_PRIVATE) -# define TRIO_PRIVATE static -#endif - -#if !(defined(TRIO_COMPILER_SUPPORTS_C89) || defined(__cplusplus)) -# define TRIO_COMPILER_ANCIENT -#endif - -#if defined(TRIO_COMPILER_ANCIENT) -# define TRIO_CONST -# define TRIO_VOLATILE -# define TRIO_SIGNED -typedef double trio_long_double_t; -typedef char * trio_pointer_t; -# define TRIO_SUFFIX_LONG(x) x -# define TRIO_PROTO(x) () -# define TRIO_NOARGS -# define TRIO_ARGS1(list,a1) list a1; -# define TRIO_ARGS2(list,a1,a2) list a1; a2; -# define TRIO_ARGS3(list,a1,a2,a3) list a1; a2; a3; -# define TRIO_ARGS4(list,a1,a2,a3,a4) list a1; a2; a3; a4; -# define TRIO_ARGS5(list,a1,a2,a3,a4,a5) list a1; a2; a3; a4; a5; -# define TRIO_ARGS6(list,a1,a2,a3,a4,a5,a6) list a1; a2; a3; a4; a5; a6; -# define TRIO_VARGS2(list,a1,a2) list a1; a2 -# define TRIO_VARGS3(list,a1,a2,a3) list a1; a2; a3 -# define TRIO_VARGS4(list,a1,a2,a3,a4) list a1; a2; a3; a4 -# define TRIO_VARGS5(list,a1,a2,a3,a4,a5) list a1; a2; a3; a4; a5 -# define TRIO_VA_DECL va_dcl -# define TRIO_VA_START(x,y) va_start(x) -# define TRIO_VA_END(x) va_end(x) -#else /* ANSI C */ -# define TRIO_CONST const -# define TRIO_VOLATILE volatile -# define TRIO_SIGNED signed -typedef long double trio_long_double_t; -typedef void * trio_pointer_t; -# define TRIO_SUFFIX_LONG(x) x ## L -# define TRIO_PROTO(x) x -# define TRIO_NOARGS void -# define TRIO_ARGS1(list,a1) (a1) -# define TRIO_ARGS2(list,a1,a2) (a1,a2) -# define TRIO_ARGS3(list,a1,a2,a3) (a1,a2,a3) -# define TRIO_ARGS4(list,a1,a2,a3,a4) (a1,a2,a3,a4) -# define TRIO_ARGS5(list,a1,a2,a3,a4,a5) (a1,a2,a3,a4,a5) -# define TRIO_ARGS6(list,a1,a2,a3,a4,a5,a6) (a1,a2,a3,a4,a5,a6) -# define TRIO_VARGS2 TRIO_ARGS2 -# define TRIO_VARGS3 TRIO_ARGS3 -# define TRIO_VARGS4 TRIO_ARGS4 -# define TRIO_VARGS5 TRIO_ARGS5 -# define TRIO_VA_DECL ... -# define TRIO_VA_START(x,y) va_start(x,y) -# define TRIO_VA_END(x) va_end(x) -#endif - -#if defined(TRIO_COMPILER_SUPPORTS_C99) || defined(__cplusplus) -# define TRIO_INLINE inline -#elif defined(TRIO_COMPILER_GCC) -# define TRIO_INLINE __inline__ -#elif defined(TRIO_COMPILER_MSVC) -# define TRIO_INLINE _inline -#elif defined(TRIO_COMPILER_BCB) -# define TRIO_INLINE __inline -#else -# define TRIO_INLINE -#endif - -/************************************************************************* - * Workarounds - */ - -#if defined(TRIO_PLATFORM_VMS) -/* - * Computations done with constants at compile time can trigger these - * even when compiling with IEEE enabled. - */ -# pragma message disable (UNDERFLOW, FLOATOVERFL) - -# if (__CRTL_VER < 80000000) -/* - * Although the compiler supports C99 language constructs, the C - * run-time library does not contain all C99 functions. - * - * This was the case for 70300022. Update the 80000000 value when - * it has been accurately determined what version of the library - * supports C99. - */ -# if defined(TRIO_COMPILER_SUPPORTS_C99) -# undef TRIO_COMPILER_SUPPORTS_C99 -# endif -# endif -#endif - -/* - * Not all preprocessors supports the LL token. - */ -#if defined(TRIO_COMPILER_BCB) -#else -# define TRIO_COMPILER_SUPPORTS_LL -#endif - -#endif /* TRIO_TRIODEF_H */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/trionan.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/trionan.h deleted file mode 100644 index 92de0fd6..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/trionan.h +++ /dev/null @@ -1,84 +0,0 @@ -/************************************************************************* - * - * $Id: trionan.h 2026 2003-08-06 04:43:55Z wbrack $ - * - * Copyright (C) 2001 Bjorn Reese <breese@users.sourceforge.net> - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND - * CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER. - * - ************************************************************************/ - -#ifndef TRIO_NAN_H -#define TRIO_NAN_H - -#include "triodef.h" - -#ifdef __cplusplus -extern "C" { -#endif - -enum { - TRIO_FP_INFINITE, - TRIO_FP_NAN, - TRIO_FP_NORMAL, - TRIO_FP_SUBNORMAL, - TRIO_FP_ZERO -}; - -/* - * Return NaN (Not-a-Number). - */ -TRIO_PUBLIC double trio_nan TRIO_PROTO((void)); - -/* - * Return positive infinity. - */ -TRIO_PUBLIC double trio_pinf TRIO_PROTO((void)); - -/* - * Return negative infinity. - */ -TRIO_PUBLIC double trio_ninf TRIO_PROTO((void)); - -/* - * Return negative zero. - */ -TRIO_PUBLIC double trio_nzero TRIO_PROTO((TRIO_NOARGS)); - -/* - * If number is a NaN return non-zero, otherwise return zero. - */ -TRIO_PUBLIC int trio_isnan TRIO_PROTO((double number)); - -/* - * If number is positive infinity return 1, if number is negative - * infinity return -1, otherwise return 0. - */ -TRIO_PUBLIC int trio_isinf TRIO_PROTO((double number)); - -/* - * If number is finite return non-zero, otherwise return zero. - */ -#if 0 - /* Temporary fix - these 2 routines not used in libxml */ -TRIO_PUBLIC int trio_isfinite TRIO_PROTO((double number)); - -TRIO_PUBLIC int trio_fpclassify TRIO_PROTO((double number)); -#endif - -TRIO_PUBLIC int trio_signbit TRIO_PROTO((double number)); - -TRIO_PUBLIC int trio_fpclassify_and_signbit TRIO_PROTO((double number, int *is_negative)); - -#ifdef __cplusplus -} -#endif - -#endif /* TRIO_NAN_H */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/triop.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/triop.h deleted file mode 100644 index a062c96c..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/triop.h +++ /dev/null @@ -1,150 +0,0 @@ -/************************************************************************* - * - * $Id: triop.h 1886 2003-04-03 15:28:28Z veillard $ - * - * Copyright (C) 2000 Bjorn Reese and Daniel Stenberg. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND - * CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER. - * - ************************************************************************ - * - * Private functions, types, etc. used for callback functions. - * - * The ref pointer is an opaque type and should remain as such. - * Private data must only be accessible through the getter and - * setter functions. - * - ************************************************************************/ - -#ifndef TRIO_TRIOP_H -#define TRIO_TRIOP_H - -#include "triodef.h" - -#include <stdlib.h> -#if defined(TRIO_COMPILER_ANCIENT) -# include <varargs.h> -#else -# include <stdarg.h> -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -#ifndef TRIO_C99 -# define TRIO_C99 1 -#endif -#ifndef TRIO_BSD -# define TRIO_BSD 1 -#endif -#ifndef TRIO_GNU -# define TRIO_GNU 1 -#endif -#ifndef TRIO_MISC -# define TRIO_MISC 1 -#endif -#ifndef TRIO_UNIX98 -# define TRIO_UNIX98 1 -#endif -#ifndef TRIO_MICROSOFT -# define TRIO_MICROSOFT 1 -#endif -#ifndef TRIO_EXTENSION -# define TRIO_EXTENSION 1 -#endif -#ifndef TRIO_WIDECHAR /* Does not work yet. Do not enable */ -# define TRIO_WIDECHAR 0 -#endif -#ifndef TRIO_ERRORS -# define TRIO_ERRORS 1 -#endif - -#ifndef TRIO_MALLOC -# define TRIO_MALLOC(n) malloc(n) -#endif -#ifndef TRIO_REALLOC -# define TRIO_REALLOC(x,n) realloc((x),(n)) -#endif -#ifndef TRIO_FREE -# define TRIO_FREE(x) free(x) -#endif - - -/************************************************************************* - * User-defined specifiers - */ - -typedef int (*trio_callback_t) TRIO_PROTO((trio_pointer_t)); - -trio_pointer_t trio_register TRIO_PROTO((trio_callback_t callback, const char *name)); -void trio_unregister TRIO_PROTO((trio_pointer_t handle)); - -TRIO_CONST char *trio_get_format TRIO_PROTO((trio_pointer_t ref)); -trio_pointer_t trio_get_argument TRIO_PROTO((trio_pointer_t ref)); - -/* Modifiers */ -int trio_get_width TRIO_PROTO((trio_pointer_t ref)); -void trio_set_width TRIO_PROTO((trio_pointer_t ref, int width)); -int trio_get_precision TRIO_PROTO((trio_pointer_t ref)); -void trio_set_precision TRIO_PROTO((trio_pointer_t ref, int precision)); -int trio_get_base TRIO_PROTO((trio_pointer_t ref)); -void trio_set_base TRIO_PROTO((trio_pointer_t ref, int base)); -int trio_get_padding TRIO_PROTO((trio_pointer_t ref)); -void trio_set_padding TRIO_PROTO((trio_pointer_t ref, int is_padding)); -int trio_get_short TRIO_PROTO((trio_pointer_t ref)); /* h */ -void trio_set_shortshort TRIO_PROTO((trio_pointer_t ref, int is_shortshort)); -int trio_get_shortshort TRIO_PROTO((trio_pointer_t ref)); /* hh */ -void trio_set_short TRIO_PROTO((trio_pointer_t ref, int is_short)); -int trio_get_long TRIO_PROTO((trio_pointer_t ref)); /* l */ -void trio_set_long TRIO_PROTO((trio_pointer_t ref, int is_long)); -int trio_get_longlong TRIO_PROTO((trio_pointer_t ref)); /* ll */ -void trio_set_longlong TRIO_PROTO((trio_pointer_t ref, int is_longlong)); -int trio_get_longdouble TRIO_PROTO((trio_pointer_t ref)); /* L */ -void trio_set_longdouble TRIO_PROTO((trio_pointer_t ref, int is_longdouble)); -int trio_get_alternative TRIO_PROTO((trio_pointer_t ref)); /* # */ -void trio_set_alternative TRIO_PROTO((trio_pointer_t ref, int is_alternative)); -int trio_get_alignment TRIO_PROTO((trio_pointer_t ref)); /* - */ -void trio_set_alignment TRIO_PROTO((trio_pointer_t ref, int is_leftaligned)); -int trio_get_spacing TRIO_PROTO((trio_pointer_t ref)); /* TRIO_PROTO((space) */ -void trio_set_spacing TRIO_PROTO((trio_pointer_t ref, int is_space)); -int trio_get_sign TRIO_PROTO((trio_pointer_t ref)); /* + */ -void trio_set_sign TRIO_PROTO((trio_pointer_t ref, int is_showsign)); -int trio_get_quote TRIO_PROTO((trio_pointer_t ref)); /* ' */ -void trio_set_quote TRIO_PROTO((trio_pointer_t ref, int is_quote)); -int trio_get_upper TRIO_PROTO((trio_pointer_t ref)); -void trio_set_upper TRIO_PROTO((trio_pointer_t ref, int is_upper)); -#if TRIO_C99 -int trio_get_largest TRIO_PROTO((trio_pointer_t ref)); /* j */ -void trio_set_largest TRIO_PROTO((trio_pointer_t ref, int is_largest)); -int trio_get_ptrdiff TRIO_PROTO((trio_pointer_t ref)); /* t */ -void trio_set_ptrdiff TRIO_PROTO((trio_pointer_t ref, int is_ptrdiff)); -int trio_get_size TRIO_PROTO((trio_pointer_t ref)); /* z / Z */ -void trio_set_size TRIO_PROTO((trio_pointer_t ref, int is_size)); -#endif - -/* Printing */ -int trio_print_ref TRIO_PROTO((trio_pointer_t ref, const char *format, ...)); -int trio_vprint_ref TRIO_PROTO((trio_pointer_t ref, const char *format, va_list args)); -int trio_printv_ref TRIO_PROTO((trio_pointer_t ref, const char *format, trio_pointer_t *args)); - -void trio_print_int TRIO_PROTO((trio_pointer_t ref, int number)); -void trio_print_uint TRIO_PROTO((trio_pointer_t ref, unsigned int number)); -/* void trio_print_long TRIO_PROTO((trio_pointer_t ref, long number)); */ -/* void trio_print_ulong TRIO_PROTO((trio_pointer_t ref, unsigned long number)); */ -void trio_print_double TRIO_PROTO((trio_pointer_t ref, double number)); -void trio_print_string TRIO_PROTO((trio_pointer_t ref, char *string)); -void trio_print_pointer TRIO_PROTO((trio_pointer_t ref, trio_pointer_t pointer)); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* TRIO_TRIOP_H */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/triostr.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/triostr.h deleted file mode 100644 index 6b8d30f7..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/triostr.h +++ /dev/null @@ -1,144 +0,0 @@ -/************************************************************************* - * - * $Id: triostr.h 3600 2007-04-17 12:44:58Z veillard $ - * - * Copyright (C) 2001 Bjorn Reese and Daniel Stenberg. - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND - * CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER. - * - ************************************************************************/ - -#ifndef TRIO_TRIOSTR_H -#define TRIO_TRIOSTR_H - -#include <assert.h> -#include <stdlib.h> -#include <string.h> -#include <time.h> -#include "triodef.h" -#include "triop.h" - -enum { - TRIO_HASH_NONE = 0, - TRIO_HASH_PLAIN, - TRIO_HASH_TWOSIGNED -}; - -#if !defined(TRIO_STRING_PUBLIC) -# if !defined(TRIO_PUBLIC) -# define TRIO_PUBLIC -# endif -# define TRIO_STRING_PUBLIC TRIO_PUBLIC -#endif - -/************************************************************************* - * String functions - */ - -TRIO_STRING_PUBLIC int trio_copy_max TRIO_PROTO((char *target, size_t max, const char *source)); -TRIO_STRING_PUBLIC char *trio_create TRIO_PROTO((size_t size)); -TRIO_STRING_PUBLIC void trio_destroy TRIO_PROTO((char *string)); -TRIO_STRING_PUBLIC char *trio_duplicate TRIO_PROTO((const char *source)); -TRIO_STRING_PUBLIC int trio_equal TRIO_PROTO((const char *first, const char *second)); -TRIO_STRING_PUBLIC int trio_equal_case TRIO_PROTO((const char *first, const char *second)); -TRIO_STRING_PUBLIC int trio_equal_locale TRIO_PROTO((const char *first, const char *second)); -TRIO_STRING_PUBLIC int trio_equal_max TRIO_PROTO((const char *first, size_t max, const char *second)); -TRIO_STRING_PUBLIC TRIO_CONST char *trio_error TRIO_PROTO((int)); -TRIO_STRING_PUBLIC size_t trio_length TRIO_PROTO((const char *string)); -TRIO_STRING_PUBLIC double trio_to_double TRIO_PROTO((const char *source, char **endp)); -TRIO_STRING_PUBLIC long trio_to_long TRIO_PROTO((const char *source, char **endp, int base)); -TRIO_STRING_PUBLIC trio_long_double_t trio_to_long_double TRIO_PROTO((const char *source, char **endp)); -TRIO_STRING_PUBLIC int trio_to_upper TRIO_PROTO((int source)); - -#if !defined(TRIO_MINIMAL) - -TRIO_STRING_PUBLIC int trio_append TRIO_PROTO((char *target, const char *source)); -TRIO_STRING_PUBLIC int trio_append_max TRIO_PROTO((char *target, size_t max, const char *source)); -TRIO_STRING_PUBLIC int trio_contains TRIO_PROTO((const char *string, const char *substring)); -TRIO_STRING_PUBLIC int trio_copy TRIO_PROTO((char *target, const char *source)); -TRIO_STRING_PUBLIC char *trio_duplicate_max TRIO_PROTO((const char *source, size_t max)); -TRIO_STRING_PUBLIC int trio_equal_case_max TRIO_PROTO((const char *first, size_t max, const char *second)); -#if !defined(_WIN32_WCE) -TRIO_STRING_PUBLIC size_t trio_format_date_max TRIO_PROTO((char *target, size_t max, const char *format, const struct tm *datetime)); -#endif -TRIO_STRING_PUBLIC unsigned long trio_hash TRIO_PROTO((const char *string, int type)); -TRIO_STRING_PUBLIC char *trio_index TRIO_PROTO((const char *string, int character)); -TRIO_STRING_PUBLIC char *trio_index_last TRIO_PROTO((const char *string, int character)); -TRIO_STRING_PUBLIC int trio_lower TRIO_PROTO((char *target)); -TRIO_STRING_PUBLIC int trio_match TRIO_PROTO((const char *string, const char *pattern)); -TRIO_STRING_PUBLIC int trio_match_case TRIO_PROTO((const char *string, const char *pattern)); -TRIO_STRING_PUBLIC size_t trio_span_function TRIO_PROTO((char *target, const char *source, int (*Function) TRIO_PROTO((int)))); -TRIO_STRING_PUBLIC char *trio_substring TRIO_PROTO((const char *string, const char *substring)); -TRIO_STRING_PUBLIC char *trio_substring_max TRIO_PROTO((const char *string, size_t max, const char *substring)); -TRIO_STRING_PUBLIC float trio_to_float TRIO_PROTO((const char *source, char **endp)); -TRIO_STRING_PUBLIC int trio_to_lower TRIO_PROTO((int source)); -TRIO_STRING_PUBLIC unsigned long trio_to_unsigned_long TRIO_PROTO((const char *source, char **endp, int base)); -TRIO_STRING_PUBLIC char *trio_tokenize TRIO_PROTO((char *string, const char *delimiters)); -TRIO_STRING_PUBLIC int trio_upper TRIO_PROTO((char *target)); - -#endif /* !defined(TRIO_MINIMAL) */ - -/************************************************************************* - * Dynamic string functions - */ - -/* - * Opaque type for dynamic strings - */ - -typedef struct _trio_string_t trio_string_t; - -TRIO_STRING_PUBLIC void trio_string_destroy TRIO_PROTO((trio_string_t *self)); -TRIO_STRING_PUBLIC char *trio_string_extract TRIO_PROTO((trio_string_t *self)); -TRIO_STRING_PUBLIC int trio_string_size TRIO_PROTO((trio_string_t *self)); -TRIO_STRING_PUBLIC void trio_string_terminate TRIO_PROTO((trio_string_t *self)); -TRIO_STRING_PUBLIC int trio_xstring_append_char TRIO_PROTO((trio_string_t *self, char character)); -TRIO_STRING_PUBLIC trio_string_t *trio_xstring_duplicate TRIO_PROTO((const char *other)); - -#if !defined(TRIO_MINIMAL) - -TRIO_STRING_PUBLIC trio_string_t *trio_string_create TRIO_PROTO((int initial_size)); -TRIO_STRING_PUBLIC char *trio_string_get TRIO_PROTO((trio_string_t *self, int offset)); -TRIO_STRING_PUBLIC void trio_xstring_set TRIO_PROTO((trio_string_t *self, char *buffer)); - -TRIO_STRING_PUBLIC int trio_string_append TRIO_PROTO((trio_string_t *self, trio_string_t *other)); -TRIO_STRING_PUBLIC int trio_string_contains TRIO_PROTO((trio_string_t *self, trio_string_t *other)); -TRIO_STRING_PUBLIC int trio_string_copy TRIO_PROTO((trio_string_t *self, trio_string_t *other)); -TRIO_STRING_PUBLIC trio_string_t *trio_string_duplicate TRIO_PROTO((trio_string_t *other)); -TRIO_STRING_PUBLIC int trio_string_equal TRIO_PROTO((trio_string_t *self, trio_string_t *other)); -TRIO_STRING_PUBLIC int trio_string_equal_max TRIO_PROTO((trio_string_t *self, size_t max, trio_string_t *second)); -TRIO_STRING_PUBLIC int trio_string_equal_case TRIO_PROTO((trio_string_t *self, trio_string_t *other)); -TRIO_STRING_PUBLIC int trio_string_equal_case_max TRIO_PROTO((trio_string_t *self, size_t max, trio_string_t *other)); -#if !defined(_WIN32_WCE) -TRIO_STRING_PUBLIC size_t trio_string_format_date_max TRIO_PROTO((trio_string_t *self, size_t max, const char *format, const struct tm *datetime)); -#endif -TRIO_STRING_PUBLIC char *trio_string_index TRIO_PROTO((trio_string_t *self, int character)); -TRIO_STRING_PUBLIC char *trio_string_index_last TRIO_PROTO((trio_string_t *self, int character)); -TRIO_STRING_PUBLIC int trio_string_length TRIO_PROTO((trio_string_t *self)); -TRIO_STRING_PUBLIC int trio_string_lower TRIO_PROTO((trio_string_t *self)); -TRIO_STRING_PUBLIC int trio_string_match TRIO_PROTO((trio_string_t *self, trio_string_t *other)); -TRIO_STRING_PUBLIC int trio_string_match_case TRIO_PROTO((trio_string_t *self, trio_string_t *other)); -TRIO_STRING_PUBLIC char *trio_string_substring TRIO_PROTO((trio_string_t *self, trio_string_t *other)); -TRIO_STRING_PUBLIC int trio_string_upper TRIO_PROTO((trio_string_t *self)); - -TRIO_STRING_PUBLIC int trio_xstring_append TRIO_PROTO((trio_string_t *self, const char *other)); -TRIO_STRING_PUBLIC int trio_xstring_contains TRIO_PROTO((trio_string_t *self, const char *other)); -TRIO_STRING_PUBLIC int trio_xstring_copy TRIO_PROTO((trio_string_t *self, const char *other)); -TRIO_STRING_PUBLIC int trio_xstring_equal TRIO_PROTO((trio_string_t *self, const char *other)); -TRIO_STRING_PUBLIC int trio_xstring_equal_max TRIO_PROTO((trio_string_t *self, size_t max, const char *other)); -TRIO_STRING_PUBLIC int trio_xstring_equal_case TRIO_PROTO((trio_string_t *self, const char *other)); -TRIO_STRING_PUBLIC int trio_xstring_equal_case_max TRIO_PROTO((trio_string_t *self, size_t max, const char *other)); -TRIO_STRING_PUBLIC int trio_xstring_match TRIO_PROTO((trio_string_t *self, const char *other)); -TRIO_STRING_PUBLIC int trio_xstring_match_case TRIO_PROTO((trio_string_t *self, const char *other)); -TRIO_STRING_PUBLIC char *trio_xstring_substring TRIO_PROTO((trio_string_t *self, const char *other)); - -#endif /* !defined(TRIO_MINIMAL) */ - -#endif /* TRIO_TRIOSTR_H */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/uri.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/uri.h deleted file mode 100644 index 49ed105e..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/uri.h +++ /dev/null @@ -1,94 +0,0 @@ -/** - * Summary: library of generic URI related routines - * Description: library of generic URI related routines - * Implements RFC 2396 - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_URI_H__ -#define __XML_URI_H__ - -#include <libxml/xmlversion.h> -#include <libxml/tree.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * xmlURI: - * - * A parsed URI reference. This is a struct containing the various fields - * as described in RFC 2396 but separated for further processing. - * - * Note: query is a deprecated field which is incorrectly unescaped. - * query_raw takes precedence over query if the former is set. - * See: http://mail.gnome.org/archives/xml/2007-April/thread.html#00127 - */ -typedef struct _xmlURI xmlURI; -typedef xmlURI *xmlURIPtr; -struct _xmlURI { - char *scheme; /* the URI scheme */ - char *opaque; /* opaque part */ - char *authority; /* the authority part */ - char *server; /* the server part */ - char *user; /* the user part */ - int port; /* the port number */ - char *path; /* the path string */ - char *query; /* the query string (deprecated - use with caution) */ - char *fragment; /* the fragment identifier */ - int cleanup; /* parsing potentially unclean URI */ - char *query_raw; /* the query string (as it appears in the URI) */ -}; - -/* - * This function is in tree.h: - * xmlChar * xmlNodeGetBase (xmlDocPtr doc, - * xmlNodePtr cur); - */ -XMLPUBFUN xmlURIPtr XMLCALL - xmlCreateURI (void); -XMLPUBFUN xmlChar * XMLCALL - xmlBuildURI (const xmlChar *URI, - const xmlChar *base); -XMLPUBFUN xmlChar * XMLCALL - xmlBuildRelativeURI (const xmlChar *URI, - const xmlChar *base); -XMLPUBFUN xmlURIPtr XMLCALL - xmlParseURI (const char *str); -XMLPUBFUN xmlURIPtr XMLCALL - xmlParseURIRaw (const char *str, - int raw); -XMLPUBFUN int XMLCALL - xmlParseURIReference (xmlURIPtr uri, - const char *str); -XMLPUBFUN xmlChar * XMLCALL - xmlSaveUri (xmlURIPtr uri); -XMLPUBFUN void XMLCALL - xmlPrintURI (FILE *stream, - xmlURIPtr uri); -XMLPUBFUN xmlChar * XMLCALL - xmlURIEscapeStr (const xmlChar *str, - const xmlChar *list); -XMLPUBFUN char * XMLCALL - xmlURIUnescapeString (const char *str, - int len, - char *target); -XMLPUBFUN int XMLCALL - xmlNormalizeURIPath (char *path); -XMLPUBFUN xmlChar * XMLCALL - xmlURIEscape (const xmlChar *str); -XMLPUBFUN void XMLCALL - xmlFreeURI (xmlURIPtr uri); -XMLPUBFUN xmlChar* XMLCALL - xmlCanonicPath (const xmlChar *path); -XMLPUBFUN xmlChar* XMLCALL - xmlPathToURI (const xmlChar *path); - -#ifdef __cplusplus -} -#endif -#endif /* __XML_URI_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/valid.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/valid.h deleted file mode 100644 index 7492d28b..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/valid.h +++ /dev/null @@ -1,458 +0,0 @@ -/* - * Summary: The DTD validation - * Description: API for the DTD handling and the validity checking - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - - -#ifndef __XML_VALID_H__ -#define __XML_VALID_H__ - -#include <libxml/xmlversion.h> -#include <libxml/xmlerror.h> -#include <libxml/tree.h> -#include <libxml/list.h> -#include <libxml/xmlautomata.h> -#include <libxml/xmlregexp.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * Validation state added for non-determinist content model. - */ -typedef struct _xmlValidState xmlValidState; -typedef xmlValidState *xmlValidStatePtr; - -/** - * xmlValidityErrorFunc: - * @ctx: usually an xmlValidCtxtPtr to a validity error context, - * but comes from ctxt->userData (which normally contains such - * a pointer); ctxt->userData can be changed by the user. - * @msg: the string to format *printf like vararg - * @...: remaining arguments to the format - * - * Callback called when a validity error is found. This is a message - * oriented function similar to an *printf function. - */ -typedef void (XMLCDECL *xmlValidityErrorFunc) (void *ctx, - const char *msg, - ...); - -/** - * xmlValidityWarningFunc: - * @ctx: usually an xmlValidCtxtPtr to a validity error context, - * but comes from ctxt->userData (which normally contains such - * a pointer); ctxt->userData can be changed by the user. - * @msg: the string to format *printf like vararg - * @...: remaining arguments to the format - * - * Callback called when a validity warning is found. This is a message - * oriented function similar to an *printf function. - */ -typedef void (XMLCDECL *xmlValidityWarningFunc) (void *ctx, - const char *msg, - ...); - -#ifdef IN_LIBXML -/** - * XML_CTXT_FINISH_DTD_0: - * - * Special value for finishDtd field when embedded in an xmlParserCtxt - */ -#define XML_CTXT_FINISH_DTD_0 0xabcd1234 -/** - * XML_CTXT_FINISH_DTD_1: - * - * Special value for finishDtd field when embedded in an xmlParserCtxt - */ -#define XML_CTXT_FINISH_DTD_1 0xabcd1235 -#endif - -/* - * xmlValidCtxt: - * An xmlValidCtxt is used for error reporting when validating. - */ -typedef struct _xmlValidCtxt xmlValidCtxt; -typedef xmlValidCtxt *xmlValidCtxtPtr; -struct _xmlValidCtxt { - void *userData; /* user specific data block */ - xmlValidityErrorFunc error; /* the callback in case of errors */ - xmlValidityWarningFunc warning; /* the callback in case of warning */ - - /* Node analysis stack used when validating within entities */ - xmlNodePtr node; /* Current parsed Node */ - int nodeNr; /* Depth of the parsing stack */ - int nodeMax; /* Max depth of the parsing stack */ - xmlNodePtr *nodeTab; /* array of nodes */ - - unsigned int finishDtd; /* finished validating the Dtd ? */ - xmlDocPtr doc; /* the document */ - int valid; /* temporary validity check result */ - - /* state state used for non-determinist content validation */ - xmlValidState *vstate; /* current state */ - int vstateNr; /* Depth of the validation stack */ - int vstateMax; /* Max depth of the validation stack */ - xmlValidState *vstateTab; /* array of validation states */ - -#ifdef LIBXML_REGEXP_ENABLED - xmlAutomataPtr am; /* the automata */ - xmlAutomataStatePtr state; /* used to build the automata */ -#else - void *am; - void *state; -#endif -}; - -/* - * ALL notation declarations are stored in a table. - * There is one table per DTD. - */ - -typedef struct _xmlHashTable xmlNotationTable; -typedef xmlNotationTable *xmlNotationTablePtr; - -/* - * ALL element declarations are stored in a table. - * There is one table per DTD. - */ - -typedef struct _xmlHashTable xmlElementTable; -typedef xmlElementTable *xmlElementTablePtr; - -/* - * ALL attribute declarations are stored in a table. - * There is one table per DTD. - */ - -typedef struct _xmlHashTable xmlAttributeTable; -typedef xmlAttributeTable *xmlAttributeTablePtr; - -/* - * ALL IDs attributes are stored in a table. - * There is one table per document. - */ - -typedef struct _xmlHashTable xmlIDTable; -typedef xmlIDTable *xmlIDTablePtr; - -/* - * ALL Refs attributes are stored in a table. - * There is one table per document. - */ - -typedef struct _xmlHashTable xmlRefTable; -typedef xmlRefTable *xmlRefTablePtr; - -/* Notation */ -XMLPUBFUN xmlNotationPtr XMLCALL - xmlAddNotationDecl (xmlValidCtxtPtr ctxt, - xmlDtdPtr dtd, - const xmlChar *name, - const xmlChar *PublicID, - const xmlChar *SystemID); -#ifdef LIBXML_TREE_ENABLED -XMLPUBFUN xmlNotationTablePtr XMLCALL - xmlCopyNotationTable (xmlNotationTablePtr table); -#endif /* LIBXML_TREE_ENABLED */ -XMLPUBFUN void XMLCALL - xmlFreeNotationTable (xmlNotationTablePtr table); -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN void XMLCALL - xmlDumpNotationDecl (xmlBufferPtr buf, - xmlNotationPtr nota); -XMLPUBFUN void XMLCALL - xmlDumpNotationTable (xmlBufferPtr buf, - xmlNotationTablePtr table); -#endif /* LIBXML_OUTPUT_ENABLED */ - -/* Element Content */ -/* the non Doc version are being deprecated */ -XMLPUBFUN xmlElementContentPtr XMLCALL - xmlNewElementContent (const xmlChar *name, - xmlElementContentType type); -XMLPUBFUN xmlElementContentPtr XMLCALL - xmlCopyElementContent (xmlElementContentPtr content); -XMLPUBFUN void XMLCALL - xmlFreeElementContent (xmlElementContentPtr cur); -/* the new versions with doc argument */ -XMLPUBFUN xmlElementContentPtr XMLCALL - xmlNewDocElementContent (xmlDocPtr doc, - const xmlChar *name, - xmlElementContentType type); -XMLPUBFUN xmlElementContentPtr XMLCALL - xmlCopyDocElementContent(xmlDocPtr doc, - xmlElementContentPtr content); -XMLPUBFUN void XMLCALL - xmlFreeDocElementContent(xmlDocPtr doc, - xmlElementContentPtr cur); -XMLPUBFUN void XMLCALL - xmlSnprintfElementContent(char *buf, - int size, - xmlElementContentPtr content, - int englob); -#ifdef LIBXML_OUTPUT_ENABLED -/* DEPRECATED */ -XMLPUBFUN void XMLCALL - xmlSprintfElementContent(char *buf, - xmlElementContentPtr content, - int englob); -#endif /* LIBXML_OUTPUT_ENABLED */ -/* DEPRECATED */ - -/* Element */ -XMLPUBFUN xmlElementPtr XMLCALL - xmlAddElementDecl (xmlValidCtxtPtr ctxt, - xmlDtdPtr dtd, - const xmlChar *name, - xmlElementTypeVal type, - xmlElementContentPtr content); -#ifdef LIBXML_TREE_ENABLED -XMLPUBFUN xmlElementTablePtr XMLCALL - xmlCopyElementTable (xmlElementTablePtr table); -#endif /* LIBXML_TREE_ENABLED */ -XMLPUBFUN void XMLCALL - xmlFreeElementTable (xmlElementTablePtr table); -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN void XMLCALL - xmlDumpElementTable (xmlBufferPtr buf, - xmlElementTablePtr table); -XMLPUBFUN void XMLCALL - xmlDumpElementDecl (xmlBufferPtr buf, - xmlElementPtr elem); -#endif /* LIBXML_OUTPUT_ENABLED */ - -/* Enumeration */ -XMLPUBFUN xmlEnumerationPtr XMLCALL - xmlCreateEnumeration (const xmlChar *name); -XMLPUBFUN void XMLCALL - xmlFreeEnumeration (xmlEnumerationPtr cur); -#ifdef LIBXML_TREE_ENABLED -XMLPUBFUN xmlEnumerationPtr XMLCALL - xmlCopyEnumeration (xmlEnumerationPtr cur); -#endif /* LIBXML_TREE_ENABLED */ - -/* Attribute */ -XMLPUBFUN xmlAttributePtr XMLCALL - xmlAddAttributeDecl (xmlValidCtxtPtr ctxt, - xmlDtdPtr dtd, - const xmlChar *elem, - const xmlChar *name, - const xmlChar *ns, - xmlAttributeType type, - xmlAttributeDefault def, - const xmlChar *defaultValue, - xmlEnumerationPtr tree); -#ifdef LIBXML_TREE_ENABLED -XMLPUBFUN xmlAttributeTablePtr XMLCALL - xmlCopyAttributeTable (xmlAttributeTablePtr table); -#endif /* LIBXML_TREE_ENABLED */ -XMLPUBFUN void XMLCALL - xmlFreeAttributeTable (xmlAttributeTablePtr table); -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN void XMLCALL - xmlDumpAttributeTable (xmlBufferPtr buf, - xmlAttributeTablePtr table); -XMLPUBFUN void XMLCALL - xmlDumpAttributeDecl (xmlBufferPtr buf, - xmlAttributePtr attr); -#endif /* LIBXML_OUTPUT_ENABLED */ - -/* IDs */ -XMLPUBFUN xmlIDPtr XMLCALL - xmlAddID (xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - const xmlChar *value, - xmlAttrPtr attr); -XMLPUBFUN void XMLCALL - xmlFreeIDTable (xmlIDTablePtr table); -XMLPUBFUN xmlAttrPtr XMLCALL - xmlGetID (xmlDocPtr doc, - const xmlChar *ID); -XMLPUBFUN int XMLCALL - xmlIsID (xmlDocPtr doc, - xmlNodePtr elem, - xmlAttrPtr attr); -XMLPUBFUN int XMLCALL - xmlRemoveID (xmlDocPtr doc, - xmlAttrPtr attr); - -/* IDREFs */ -XMLPUBFUN xmlRefPtr XMLCALL - xmlAddRef (xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - const xmlChar *value, - xmlAttrPtr attr); -XMLPUBFUN void XMLCALL - xmlFreeRefTable (xmlRefTablePtr table); -XMLPUBFUN int XMLCALL - xmlIsRef (xmlDocPtr doc, - xmlNodePtr elem, - xmlAttrPtr attr); -XMLPUBFUN int XMLCALL - xmlRemoveRef (xmlDocPtr doc, - xmlAttrPtr attr); -XMLPUBFUN xmlListPtr XMLCALL - xmlGetRefs (xmlDocPtr doc, - const xmlChar *ID); - -/** - * The public function calls related to validity checking. - */ -#ifdef LIBXML_VALID_ENABLED -/* Allocate/Release Validation Contexts */ -XMLPUBFUN xmlValidCtxtPtr XMLCALL - xmlNewValidCtxt(void); -XMLPUBFUN void XMLCALL - xmlFreeValidCtxt(xmlValidCtxtPtr); - -XMLPUBFUN int XMLCALL - xmlValidateRoot (xmlValidCtxtPtr ctxt, - xmlDocPtr doc); -XMLPUBFUN int XMLCALL - xmlValidateElementDecl (xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlElementPtr elem); -XMLPUBFUN xmlChar * XMLCALL - xmlValidNormalizeAttributeValue(xmlDocPtr doc, - xmlNodePtr elem, - const xmlChar *name, - const xmlChar *value); -XMLPUBFUN xmlChar * XMLCALL - xmlValidCtxtNormalizeAttributeValue(xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlNodePtr elem, - const xmlChar *name, - const xmlChar *value); -XMLPUBFUN int XMLCALL - xmlValidateAttributeDecl(xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlAttributePtr attr); -XMLPUBFUN int XMLCALL - xmlValidateAttributeValue(xmlAttributeType type, - const xmlChar *value); -XMLPUBFUN int XMLCALL - xmlValidateNotationDecl (xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlNotationPtr nota); -XMLPUBFUN int XMLCALL - xmlValidateDtd (xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlDtdPtr dtd); -XMLPUBFUN int XMLCALL - xmlValidateDtdFinal (xmlValidCtxtPtr ctxt, - xmlDocPtr doc); -XMLPUBFUN int XMLCALL - xmlValidateDocument (xmlValidCtxtPtr ctxt, - xmlDocPtr doc); -XMLPUBFUN int XMLCALL - xmlValidateElement (xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlNodePtr elem); -XMLPUBFUN int XMLCALL - xmlValidateOneElement (xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlNodePtr elem); -XMLPUBFUN int XMLCALL - xmlValidateOneAttribute (xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlNodePtr elem, - xmlAttrPtr attr, - const xmlChar *value); -XMLPUBFUN int XMLCALL - xmlValidateOneNamespace (xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlNodePtr elem, - const xmlChar *prefix, - xmlNsPtr ns, - const xmlChar *value); -XMLPUBFUN int XMLCALL - xmlValidateDocumentFinal(xmlValidCtxtPtr ctxt, - xmlDocPtr doc); -#endif /* LIBXML_VALID_ENABLED */ - -#if defined(LIBXML_VALID_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) -XMLPUBFUN int XMLCALL - xmlValidateNotationUse (xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - const xmlChar *notationName); -#endif /* LIBXML_VALID_ENABLED or LIBXML_SCHEMAS_ENABLED */ - -XMLPUBFUN int XMLCALL - xmlIsMixedElement (xmlDocPtr doc, - const xmlChar *name); -XMLPUBFUN xmlAttributePtr XMLCALL - xmlGetDtdAttrDesc (xmlDtdPtr dtd, - const xmlChar *elem, - const xmlChar *name); -XMLPUBFUN xmlAttributePtr XMLCALL - xmlGetDtdQAttrDesc (xmlDtdPtr dtd, - const xmlChar *elem, - const xmlChar *name, - const xmlChar *prefix); -XMLPUBFUN xmlNotationPtr XMLCALL - xmlGetDtdNotationDesc (xmlDtdPtr dtd, - const xmlChar *name); -XMLPUBFUN xmlElementPtr XMLCALL - xmlGetDtdQElementDesc (xmlDtdPtr dtd, - const xmlChar *name, - const xmlChar *prefix); -XMLPUBFUN xmlElementPtr XMLCALL - xmlGetDtdElementDesc (xmlDtdPtr dtd, - const xmlChar *name); - -#ifdef LIBXML_VALID_ENABLED - -XMLPUBFUN int XMLCALL - xmlValidGetPotentialChildren(xmlElementContent *ctree, - const xmlChar **names, - int *len, - int max); - -XMLPUBFUN int XMLCALL - xmlValidGetValidElements(xmlNode *prev, - xmlNode *next, - const xmlChar **names, - int max); -XMLPUBFUN int XMLCALL - xmlValidateNameValue (const xmlChar *value); -XMLPUBFUN int XMLCALL - xmlValidateNamesValue (const xmlChar *value); -XMLPUBFUN int XMLCALL - xmlValidateNmtokenValue (const xmlChar *value); -XMLPUBFUN int XMLCALL - xmlValidateNmtokensValue(const xmlChar *value); - -#ifdef LIBXML_REGEXP_ENABLED -/* - * Validation based on the regexp support - */ -XMLPUBFUN int XMLCALL - xmlValidBuildContentModel(xmlValidCtxtPtr ctxt, - xmlElementPtr elem); - -XMLPUBFUN int XMLCALL - xmlValidatePushElement (xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlNodePtr elem, - const xmlChar *qname); -XMLPUBFUN int XMLCALL - xmlValidatePushCData (xmlValidCtxtPtr ctxt, - const xmlChar *data, - int len); -XMLPUBFUN int XMLCALL - xmlValidatePopElement (xmlValidCtxtPtr ctxt, - xmlDocPtr doc, - xmlNodePtr elem, - const xmlChar *qname); -#endif /* LIBXML_REGEXP_ENABLED */ -#endif /* LIBXML_VALID_ENABLED */ -#ifdef __cplusplus -} -#endif -#endif /* __XML_VALID_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xinclude.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xinclude.h deleted file mode 100644 index ba9c9b59..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xinclude.h +++ /dev/null @@ -1,125 +0,0 @@ -/* - * Summary: implementation of XInclude - * Description: API to handle XInclude processing, - * implements the - * World Wide Web Consortium Last Call Working Draft 10 November 2003 - * http://www.w3.org/TR/2003/WD-xinclude-20031110 - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_XINCLUDE_H__ -#define __XML_XINCLUDE_H__ - -#include <libxml/xmlversion.h> -#include <libxml/tree.h> - -#ifdef LIBXML_XINCLUDE_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * XINCLUDE_NS: - * - * Macro defining the Xinclude namespace: http://www.w3.org/2003/XInclude - */ -#define XINCLUDE_NS (const xmlChar *) "http://www.w3.org/2003/XInclude" -/** - * XINCLUDE_OLD_NS: - * - * Macro defining the draft Xinclude namespace: http://www.w3.org/2001/XInclude - */ -#define XINCLUDE_OLD_NS (const xmlChar *) "http://www.w3.org/2001/XInclude" -/** - * XINCLUDE_NODE: - * - * Macro defining "include" - */ -#define XINCLUDE_NODE (const xmlChar *) "include" -/** - * XINCLUDE_FALLBACK: - * - * Macro defining "fallback" - */ -#define XINCLUDE_FALLBACK (const xmlChar *) "fallback" -/** - * XINCLUDE_HREF: - * - * Macro defining "href" - */ -#define XINCLUDE_HREF (const xmlChar *) "href" -/** - * XINCLUDE_PARSE: - * - * Macro defining "parse" - */ -#define XINCLUDE_PARSE (const xmlChar *) "parse" -/** - * XINCLUDE_PARSE_XML: - * - * Macro defining "xml" - */ -#define XINCLUDE_PARSE_XML (const xmlChar *) "xml" -/** - * XINCLUDE_PARSE_TEXT: - * - * Macro defining "text" - */ -#define XINCLUDE_PARSE_TEXT (const xmlChar *) "text" -/** - * XINCLUDE_PARSE_ENCODING: - * - * Macro defining "encoding" - */ -#define XINCLUDE_PARSE_ENCODING (const xmlChar *) "encoding" -/** - * XINCLUDE_PARSE_XPOINTER: - * - * Macro defining "xpointer" - */ -#define XINCLUDE_PARSE_XPOINTER (const xmlChar *) "xpointer" - -typedef struct _xmlXIncludeCtxt xmlXIncludeCtxt; -typedef xmlXIncludeCtxt *xmlXIncludeCtxtPtr; - -/* - * standalone processing - */ -XMLPUBFUN int XMLCALL - xmlXIncludeProcess (xmlDocPtr doc); -XMLPUBFUN int XMLCALL - xmlXIncludeProcessFlags (xmlDocPtr doc, - int flags); -XMLPUBFUN int XMLCALL - xmlXIncludeProcessFlagsData(xmlDocPtr doc, - int flags, - void *data); -XMLPUBFUN int XMLCALL - xmlXIncludeProcessTree (xmlNodePtr tree); -XMLPUBFUN int XMLCALL - xmlXIncludeProcessTreeFlags(xmlNodePtr tree, - int flags); -/* - * contextual processing - */ -XMLPUBFUN xmlXIncludeCtxtPtr XMLCALL - xmlXIncludeNewContext (xmlDocPtr doc); -XMLPUBFUN int XMLCALL - xmlXIncludeSetFlags (xmlXIncludeCtxtPtr ctxt, - int flags); -XMLPUBFUN void XMLCALL - xmlXIncludeFreeContext (xmlXIncludeCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlXIncludeProcessNode (xmlXIncludeCtxtPtr ctxt, - xmlNodePtr tree); -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_XINCLUDE_ENABLED */ - -#endif /* __XML_XINCLUDE_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xlink.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xlink.h deleted file mode 100644 index 083c7eda..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xlink.h +++ /dev/null @@ -1,189 +0,0 @@ -/* - * Summary: unfinished XLink detection module - * Description: unfinished XLink detection module - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_XLINK_H__ -#define __XML_XLINK_H__ - -#include <libxml/xmlversion.h> -#include <libxml/tree.h> - -#ifdef LIBXML_XPTR_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Various defines for the various Link properties. - * - * NOTE: the link detection layer will try to resolve QName expansion - * of namespaces. If "foo" is the prefix for "http://foo.com/" - * then the link detection layer will expand role="foo:myrole" - * to "http://foo.com/:myrole". - * NOTE: the link detection layer will expand URI-Refences found on - * href attributes by using the base mechanism if found. - */ -typedef xmlChar *xlinkHRef; -typedef xmlChar *xlinkRole; -typedef xmlChar *xlinkTitle; - -typedef enum { - XLINK_TYPE_NONE = 0, - XLINK_TYPE_SIMPLE, - XLINK_TYPE_EXTENDED, - XLINK_TYPE_EXTENDED_SET -} xlinkType; - -typedef enum { - XLINK_SHOW_NONE = 0, - XLINK_SHOW_NEW, - XLINK_SHOW_EMBED, - XLINK_SHOW_REPLACE -} xlinkShow; - -typedef enum { - XLINK_ACTUATE_NONE = 0, - XLINK_ACTUATE_AUTO, - XLINK_ACTUATE_ONREQUEST -} xlinkActuate; - -/** - * xlinkNodeDetectFunc: - * @ctx: user data pointer - * @node: the node to check - * - * This is the prototype for the link detection routine. - * It calls the default link detection callbacks upon link detection. - */ -typedef void (*xlinkNodeDetectFunc) (void *ctx, xmlNodePtr node); - -/* - * The link detection module interact with the upper layers using - * a set of callback registered at parsing time. - */ - -/** - * xlinkSimpleLinkFunk: - * @ctx: user data pointer - * @node: the node carrying the link - * @href: the target of the link - * @role: the role string - * @title: the link title - * - * This is the prototype for a simple link detection callback. - */ -typedef void -(*xlinkSimpleLinkFunk) (void *ctx, - xmlNodePtr node, - const xlinkHRef href, - const xlinkRole role, - const xlinkTitle title); - -/** - * xlinkExtendedLinkFunk: - * @ctx: user data pointer - * @node: the node carrying the link - * @nbLocators: the number of locators detected on the link - * @hrefs: pointer to the array of locator hrefs - * @roles: pointer to the array of locator roles - * @nbArcs: the number of arcs detected on the link - * @from: pointer to the array of source roles found on the arcs - * @to: pointer to the array of target roles found on the arcs - * @show: array of values for the show attributes found on the arcs - * @actuate: array of values for the actuate attributes found on the arcs - * @nbTitles: the number of titles detected on the link - * @title: array of titles detected on the link - * @langs: array of xml:lang values for the titles - * - * This is the prototype for a extended link detection callback. - */ -typedef void -(*xlinkExtendedLinkFunk)(void *ctx, - xmlNodePtr node, - int nbLocators, - const xlinkHRef *hrefs, - const xlinkRole *roles, - int nbArcs, - const xlinkRole *from, - const xlinkRole *to, - xlinkShow *show, - xlinkActuate *actuate, - int nbTitles, - const xlinkTitle *titles, - const xmlChar **langs); - -/** - * xlinkExtendedLinkSetFunk: - * @ctx: user data pointer - * @node: the node carrying the link - * @nbLocators: the number of locators detected on the link - * @hrefs: pointer to the array of locator hrefs - * @roles: pointer to the array of locator roles - * @nbTitles: the number of titles detected on the link - * @title: array of titles detected on the link - * @langs: array of xml:lang values for the titles - * - * This is the prototype for a extended link set detection callback. - */ -typedef void -(*xlinkExtendedLinkSetFunk) (void *ctx, - xmlNodePtr node, - int nbLocators, - const xlinkHRef *hrefs, - const xlinkRole *roles, - int nbTitles, - const xlinkTitle *titles, - const xmlChar **langs); - -/** - * This is the structure containing a set of Links detection callbacks. - * - * There is no default xlink callbacks, if one want to get link - * recognition activated, those call backs must be provided before parsing. - */ -typedef struct _xlinkHandler xlinkHandler; -typedef xlinkHandler *xlinkHandlerPtr; -struct _xlinkHandler { - xlinkSimpleLinkFunk simple; - xlinkExtendedLinkFunk extended; - xlinkExtendedLinkSetFunk set; -}; - -/* - * The default detection routine, can be overridden, they call the default - * detection callbacks. - */ - -XMLPUBFUN xlinkNodeDetectFunc XMLCALL - xlinkGetDefaultDetect (void); -XMLPUBFUN void XMLCALL - xlinkSetDefaultDetect (xlinkNodeDetectFunc func); - -/* - * Routines to set/get the default handlers. - */ -XMLPUBFUN xlinkHandlerPtr XMLCALL - xlinkGetDefaultHandler (void); -XMLPUBFUN void XMLCALL - xlinkSetDefaultHandler (xlinkHandlerPtr handler); - -/* - * Link detection module itself. - */ -XMLPUBFUN xlinkType XMLCALL - xlinkIsLink (xmlDocPtr doc, - xmlNodePtr node); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_XPTR_ENABLED */ - -#endif /* __XML_XLINK_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlIO.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlIO.h deleted file mode 100644 index eea9ed6c..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlIO.h +++ /dev/null @@ -1,360 +0,0 @@ -/* - * Summary: interface for the I/O interfaces used by the parser - * Description: interface for the I/O interfaces used by the parser - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_IO_H__ -#define __XML_IO_H__ - -#include <stdio.h> -#include <libxml/xmlversion.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * Those are the functions and datatypes for the parser input - * I/O structures. - */ - -/** - * xmlInputMatchCallback: - * @filename: the filename or URI - * - * Callback used in the I/O Input API to detect if the current handler - * can provide input fonctionnalities for this resource. - * - * Returns 1 if yes and 0 if another Input module should be used - */ -typedef int (XMLCALL *xmlInputMatchCallback) (char const *filename); -/** - * xmlInputOpenCallback: - * @filename: the filename or URI - * - * Callback used in the I/O Input API to open the resource - * - * Returns an Input context or NULL in case or error - */ -typedef void * (XMLCALL *xmlInputOpenCallback) (char const *filename); -/** - * xmlInputReadCallback: - * @context: an Input context - * @buffer: the buffer to store data read - * @len: the length of the buffer in bytes - * - * Callback used in the I/O Input API to read the resource - * - * Returns the number of bytes read or -1 in case of error - */ -typedef int (XMLCALL *xmlInputReadCallback) (void * context, char * buffer, int len); -/** - * xmlInputCloseCallback: - * @context: an Input context - * - * Callback used in the I/O Input API to close the resource - * - * Returns 0 or -1 in case of error - */ -typedef int (XMLCALL *xmlInputCloseCallback) (void * context); - -#ifdef LIBXML_OUTPUT_ENABLED -/* - * Those are the functions and datatypes for the library output - * I/O structures. - */ - -/** - * xmlOutputMatchCallback: - * @filename: the filename or URI - * - * Callback used in the I/O Output API to detect if the current handler - * can provide output fonctionnalities for this resource. - * - * Returns 1 if yes and 0 if another Output module should be used - */ -typedef int (XMLCALL *xmlOutputMatchCallback) (char const *filename); -/** - * xmlOutputOpenCallback: - * @filename: the filename or URI - * - * Callback used in the I/O Output API to open the resource - * - * Returns an Output context or NULL in case or error - */ -typedef void * (XMLCALL *xmlOutputOpenCallback) (char const *filename); -/** - * xmlOutputWriteCallback: - * @context: an Output context - * @buffer: the buffer of data to write - * @len: the length of the buffer in bytes - * - * Callback used in the I/O Output API to write to the resource - * - * Returns the number of bytes written or -1 in case of error - */ -typedef int (XMLCALL *xmlOutputWriteCallback) (void * context, const char * buffer, - int len); -/** - * xmlOutputCloseCallback: - * @context: an Output context - * - * Callback used in the I/O Output API to close the resource - * - * Returns 0 or -1 in case of error - */ -typedef int (XMLCALL *xmlOutputCloseCallback) (void * context); -#endif /* LIBXML_OUTPUT_ENABLED */ - -#ifdef __cplusplus -} -#endif - -#include <libxml/globals.h> -#include <libxml/tree.h> -#include <libxml/parser.h> -#include <libxml/encoding.h> - -#ifdef __cplusplus -extern "C" { -#endif -struct _xmlParserInputBuffer { - void* context; - xmlInputReadCallback readcallback; - xmlInputCloseCallback closecallback; - - xmlCharEncodingHandlerPtr encoder; /* I18N conversions to UTF-8 */ - - xmlBufferPtr buffer; /* Local buffer encoded in UTF-8 */ - xmlBufferPtr raw; /* if encoder != NULL buffer for raw input */ - int compressed; /* -1=unknown, 0=not compressed, 1=compressed */ - int error; - unsigned long rawconsumed;/* amount consumed from raw */ -}; - - -#ifdef LIBXML_OUTPUT_ENABLED -struct _xmlOutputBuffer { - void* context; - xmlOutputWriteCallback writecallback; - xmlOutputCloseCallback closecallback; - - xmlCharEncodingHandlerPtr encoder; /* I18N conversions to UTF-8 */ - - xmlBufferPtr buffer; /* Local buffer encoded in UTF-8 or ISOLatin */ - xmlBufferPtr conv; /* if encoder != NULL buffer for output */ - int written; /* total number of byte written */ - int error; -}; -#endif /* LIBXML_OUTPUT_ENABLED */ - -/* - * Interfaces for input - */ -XMLPUBFUN void XMLCALL - xmlCleanupInputCallbacks (void); - -XMLPUBFUN int XMLCALL - xmlPopInputCallbacks (void); - -XMLPUBFUN void XMLCALL - xmlRegisterDefaultInputCallbacks (void); -XMLPUBFUN xmlParserInputBufferPtr XMLCALL - xmlAllocParserInputBuffer (xmlCharEncoding enc); - -XMLPUBFUN xmlParserInputBufferPtr XMLCALL - xmlParserInputBufferCreateFilename (const char *URI, - xmlCharEncoding enc); -XMLPUBFUN xmlParserInputBufferPtr XMLCALL - xmlParserInputBufferCreateFile (FILE *file, - xmlCharEncoding enc); -XMLPUBFUN xmlParserInputBufferPtr XMLCALL - xmlParserInputBufferCreateFd (int fd, - xmlCharEncoding enc); -XMLPUBFUN xmlParserInputBufferPtr XMLCALL - xmlParserInputBufferCreateMem (const char *mem, int size, - xmlCharEncoding enc); -XMLPUBFUN xmlParserInputBufferPtr XMLCALL - xmlParserInputBufferCreateStatic (const char *mem, int size, - xmlCharEncoding enc); -XMLPUBFUN xmlParserInputBufferPtr XMLCALL - xmlParserInputBufferCreateIO (xmlInputReadCallback ioread, - xmlInputCloseCallback ioclose, - void *ioctx, - xmlCharEncoding enc); -XMLPUBFUN int XMLCALL - xmlParserInputBufferRead (xmlParserInputBufferPtr in, - int len); -XMLPUBFUN int XMLCALL - xmlParserInputBufferGrow (xmlParserInputBufferPtr in, - int len); -XMLPUBFUN int XMLCALL - xmlParserInputBufferPush (xmlParserInputBufferPtr in, - int len, - const char *buf); -XMLPUBFUN void XMLCALL - xmlFreeParserInputBuffer (xmlParserInputBufferPtr in); -XMLPUBFUN char * XMLCALL - xmlParserGetDirectory (const char *filename); - -XMLPUBFUN int XMLCALL - xmlRegisterInputCallbacks (xmlInputMatchCallback matchFunc, - xmlInputOpenCallback openFunc, - xmlInputReadCallback readFunc, - xmlInputCloseCallback closeFunc); - -xmlParserInputBufferPtr - __xmlParserInputBufferCreateFilename(const char *URI, - xmlCharEncoding enc); - -#ifdef LIBXML_OUTPUT_ENABLED -/* - * Interfaces for output - */ -XMLPUBFUN void XMLCALL - xmlCleanupOutputCallbacks (void); -XMLPUBFUN void XMLCALL - xmlRegisterDefaultOutputCallbacks(void); -XMLPUBFUN xmlOutputBufferPtr XMLCALL - xmlAllocOutputBuffer (xmlCharEncodingHandlerPtr encoder); - -XMLPUBFUN xmlOutputBufferPtr XMLCALL - xmlOutputBufferCreateFilename (const char *URI, - xmlCharEncodingHandlerPtr encoder, - int compression); - -XMLPUBFUN xmlOutputBufferPtr XMLCALL - xmlOutputBufferCreateFile (FILE *file, - xmlCharEncodingHandlerPtr encoder); - -XMLPUBFUN xmlOutputBufferPtr XMLCALL - xmlOutputBufferCreateBuffer (xmlBufferPtr buffer, - xmlCharEncodingHandlerPtr encoder); - -XMLPUBFUN xmlOutputBufferPtr XMLCALL - xmlOutputBufferCreateFd (int fd, - xmlCharEncodingHandlerPtr encoder); - -XMLPUBFUN xmlOutputBufferPtr XMLCALL - xmlOutputBufferCreateIO (xmlOutputWriteCallback iowrite, - xmlOutputCloseCallback ioclose, - void *ioctx, - xmlCharEncodingHandlerPtr encoder); - -XMLPUBFUN int XMLCALL - xmlOutputBufferWrite (xmlOutputBufferPtr out, - int len, - const char *buf); -XMLPUBFUN int XMLCALL - xmlOutputBufferWriteString (xmlOutputBufferPtr out, - const char *str); -XMLPUBFUN int XMLCALL - xmlOutputBufferWriteEscape (xmlOutputBufferPtr out, - const xmlChar *str, - xmlCharEncodingOutputFunc escaping); - -XMLPUBFUN int XMLCALL - xmlOutputBufferFlush (xmlOutputBufferPtr out); -XMLPUBFUN int XMLCALL - xmlOutputBufferClose (xmlOutputBufferPtr out); - -XMLPUBFUN int XMLCALL - xmlRegisterOutputCallbacks (xmlOutputMatchCallback matchFunc, - xmlOutputOpenCallback openFunc, - xmlOutputWriteCallback writeFunc, - xmlOutputCloseCallback closeFunc); - -xmlOutputBufferPtr - __xmlOutputBufferCreateFilename(const char *URI, - xmlCharEncodingHandlerPtr encoder, - int compression); - -#ifdef LIBXML_HTTP_ENABLED -/* This function only exists if HTTP support built into the library */ -XMLPUBFUN void XMLCALL - xmlRegisterHTTPPostCallbacks (void ); -#endif /* LIBXML_HTTP_ENABLED */ - -#endif /* LIBXML_OUTPUT_ENABLED */ - -XMLPUBFUN xmlParserInputPtr XMLCALL - xmlCheckHTTPInput (xmlParserCtxtPtr ctxt, - xmlParserInputPtr ret); - -/* - * A predefined entity loader disabling network accesses - */ -XMLPUBFUN xmlParserInputPtr XMLCALL - xmlNoNetExternalEntityLoader (const char *URL, - const char *ID, - xmlParserCtxtPtr ctxt); - -/* - * xmlNormalizeWindowsPath is obsolete, don't use it. - * Check xmlCanonicPath in uri.h for a better alternative. - */ -XMLPUBFUN xmlChar * XMLCALL - xmlNormalizeWindowsPath (const xmlChar *path); - -XMLPUBFUN int XMLCALL - xmlCheckFilename (const char *path); -/** - * Default 'file://' protocol callbacks - */ -XMLPUBFUN int XMLCALL - xmlFileMatch (const char *filename); -XMLPUBFUN void * XMLCALL - xmlFileOpen (const char *filename); -XMLPUBFUN int XMLCALL - xmlFileRead (void * context, - char * buffer, - int len); -XMLPUBFUN int XMLCALL - xmlFileClose (void * context); - -/** - * Default 'http://' protocol callbacks - */ -#ifdef LIBXML_HTTP_ENABLED -XMLPUBFUN int XMLCALL - xmlIOHTTPMatch (const char *filename); -XMLPUBFUN void * XMLCALL - xmlIOHTTPOpen (const char *filename); -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN void * XMLCALL - xmlIOHTTPOpenW (const char * post_uri, - int compression ); -#endif /* LIBXML_OUTPUT_ENABLED */ -XMLPUBFUN int XMLCALL - xmlIOHTTPRead (void * context, - char * buffer, - int len); -XMLPUBFUN int XMLCALL - xmlIOHTTPClose (void * context); -#endif /* LIBXML_HTTP_ENABLED */ - -/** - * Default 'ftp://' protocol callbacks - */ -#ifdef LIBXML_FTP_ENABLED -XMLPUBFUN int XMLCALL - xmlIOFTPMatch (const char *filename); -XMLPUBFUN void * XMLCALL - xmlIOFTPOpen (const char *filename); -XMLPUBFUN int XMLCALL - xmlIOFTPRead (void * context, - char * buffer, - int len); -XMLPUBFUN int XMLCALL - xmlIOFTPClose (void * context); -#endif /* LIBXML_FTP_ENABLED */ - -#ifdef __cplusplus -} -#endif - -#endif /* __XML_IO_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlautomata.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlautomata.h deleted file mode 100644 index f98b55e2..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlautomata.h +++ /dev/null @@ -1,146 +0,0 @@ -/* - * Summary: API to build regexp automata - * Description: the API to build regexp automata - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_AUTOMATA_H__ -#define __XML_AUTOMATA_H__ - -#include <libxml/xmlversion.h> -#include <libxml/tree.h> - -#ifdef LIBXML_REGEXP_ENABLED -#ifdef LIBXML_AUTOMATA_ENABLED -#include <libxml/xmlregexp.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * xmlAutomataPtr: - * - * A libxml automata description, It can be compiled into a regexp - */ -typedef struct _xmlAutomata xmlAutomata; -typedef xmlAutomata *xmlAutomataPtr; - -/** - * xmlAutomataStatePtr: - * - * A state int the automata description, - */ -typedef struct _xmlAutomataState xmlAutomataState; -typedef xmlAutomataState *xmlAutomataStatePtr; - -/* - * Building API - */ -XMLPUBFUN xmlAutomataPtr XMLCALL - xmlNewAutomata (void); -XMLPUBFUN void XMLCALL - xmlFreeAutomata (xmlAutomataPtr am); - -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataGetInitState (xmlAutomataPtr am); -XMLPUBFUN int XMLCALL - xmlAutomataSetFinalState (xmlAutomataPtr am, - xmlAutomataStatePtr state); -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataNewState (xmlAutomataPtr am); -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataNewTransition (xmlAutomataPtr am, - xmlAutomataStatePtr from, - xmlAutomataStatePtr to, - const xmlChar *token, - void *data); -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataNewTransition2 (xmlAutomataPtr am, - xmlAutomataStatePtr from, - xmlAutomataStatePtr to, - const xmlChar *token, - const xmlChar *token2, - void *data); -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataNewNegTrans (xmlAutomataPtr am, - xmlAutomataStatePtr from, - xmlAutomataStatePtr to, - const xmlChar *token, - const xmlChar *token2, - void *data); - -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataNewCountTrans (xmlAutomataPtr am, - xmlAutomataStatePtr from, - xmlAutomataStatePtr to, - const xmlChar *token, - int min, - int max, - void *data); -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataNewCountTrans2 (xmlAutomataPtr am, - xmlAutomataStatePtr from, - xmlAutomataStatePtr to, - const xmlChar *token, - const xmlChar *token2, - int min, - int max, - void *data); -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataNewOnceTrans (xmlAutomataPtr am, - xmlAutomataStatePtr from, - xmlAutomataStatePtr to, - const xmlChar *token, - int min, - int max, - void *data); -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataNewOnceTrans2 (xmlAutomataPtr am, - xmlAutomataStatePtr from, - xmlAutomataStatePtr to, - const xmlChar *token, - const xmlChar *token2, - int min, - int max, - void *data); -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataNewAllTrans (xmlAutomataPtr am, - xmlAutomataStatePtr from, - xmlAutomataStatePtr to, - int lax); -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataNewEpsilon (xmlAutomataPtr am, - xmlAutomataStatePtr from, - xmlAutomataStatePtr to); -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataNewCountedTrans (xmlAutomataPtr am, - xmlAutomataStatePtr from, - xmlAutomataStatePtr to, - int counter); -XMLPUBFUN xmlAutomataStatePtr XMLCALL - xmlAutomataNewCounterTrans (xmlAutomataPtr am, - xmlAutomataStatePtr from, - xmlAutomataStatePtr to, - int counter); -XMLPUBFUN int XMLCALL - xmlAutomataNewCounter (xmlAutomataPtr am, - int min, - int max); - -XMLPUBFUN xmlRegexpPtr XMLCALL - xmlAutomataCompile (xmlAutomataPtr am); -XMLPUBFUN int XMLCALL - xmlAutomataIsDeterminist (xmlAutomataPtr am); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_AUTOMATA_ENABLED */ -#endif /* LIBXML_REGEXP_ENABLED */ - -#endif /* __XML_AUTOMATA_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlerror.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlerror.h deleted file mode 100644 index c5f21640..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlerror.h +++ /dev/null @@ -1,936 +0,0 @@ -/* - * Summary: error handling - * Description: the API used to report errors - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#include <libxml/parser.h> - -#ifndef __XML_ERROR_H__ -#define __XML_ERROR_H__ - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * xmlErrorLevel: - * - * Indicates the level of an error - */ -typedef enum { - XML_ERR_NONE = 0, - XML_ERR_WARNING = 1, /* A simple warning */ - XML_ERR_ERROR = 2, /* A recoverable error */ - XML_ERR_FATAL = 3 /* A fatal error */ -} xmlErrorLevel; - -/** - * xmlErrorDomain: - * - * Indicates where an error may have come from - */ -typedef enum { - XML_FROM_NONE = 0, - XML_FROM_PARSER, /* The XML parser */ - XML_FROM_TREE, /* The tree module */ - XML_FROM_NAMESPACE, /* The XML Namespace module */ - XML_FROM_DTD, /* The XML DTD validation with parser context*/ - XML_FROM_HTML, /* The HTML parser */ - XML_FROM_MEMORY, /* The memory allocator */ - XML_FROM_OUTPUT, /* The serialization code */ - XML_FROM_IO, /* The Input/Output stack */ - XML_FROM_FTP, /* The FTP module */ - XML_FROM_HTTP, /* The HTTP module */ - XML_FROM_XINCLUDE, /* The XInclude processing */ - XML_FROM_XPATH, /* The XPath module */ - XML_FROM_XPOINTER, /* The XPointer module */ - XML_FROM_REGEXP, /* The regular expressions module */ - XML_FROM_DATATYPE, /* The W3C XML Schemas Datatype module */ - XML_FROM_SCHEMASP, /* The W3C XML Schemas parser module */ - XML_FROM_SCHEMASV, /* The W3C XML Schemas validation module */ - XML_FROM_RELAXNGP, /* The Relax-NG parser module */ - XML_FROM_RELAXNGV, /* The Relax-NG validator module */ - XML_FROM_CATALOG, /* The Catalog module */ - XML_FROM_C14N, /* The Canonicalization module */ - XML_FROM_XSLT, /* The XSLT engine from libxslt */ - XML_FROM_VALID, /* The XML DTD validation with valid context */ - XML_FROM_CHECK, /* The error checking module */ - XML_FROM_WRITER, /* The xmlwriter module */ - XML_FROM_MODULE, /* The dynamically loaded module module*/ - XML_FROM_I18N /* The module handling character conversion */ -} xmlErrorDomain; - -/** - * xmlError: - * - * An XML Error instance. - */ - -typedef struct _xmlError xmlError; -typedef xmlError *xmlErrorPtr; -struct _xmlError { - int domain; /* What part of the library raised this error */ - int code; /* The error code, e.g. an xmlParserError */ - char *message;/* human-readable informative error message */ - xmlErrorLevel level;/* how consequent is the error */ - char *file; /* the filename */ - int line; /* the line number if available */ - char *str1; /* extra string information */ - char *str2; /* extra string information */ - char *str3; /* extra string information */ - int int1; /* extra number information */ - int int2; /* column number of the error or 0 if N/A (todo: rename this field when we would break ABI) */ - void *ctxt; /* the parser context if available */ - void *node; /* the node in the tree */ -}; - -/** - * xmlParserError: - * - * This is an error that the XML (or HTML) parser can generate - */ -typedef enum { - XML_ERR_OK = 0, - XML_ERR_INTERNAL_ERROR, /* 1 */ - XML_ERR_NO_MEMORY, /* 2 */ - XML_ERR_DOCUMENT_START, /* 3 */ - XML_ERR_DOCUMENT_EMPTY, /* 4 */ - XML_ERR_DOCUMENT_END, /* 5 */ - XML_ERR_INVALID_HEX_CHARREF, /* 6 */ - XML_ERR_INVALID_DEC_CHARREF, /* 7 */ - XML_ERR_INVALID_CHARREF, /* 8 */ - XML_ERR_INVALID_CHAR, /* 9 */ - XML_ERR_CHARREF_AT_EOF, /* 10 */ - XML_ERR_CHARREF_IN_PROLOG, /* 11 */ - XML_ERR_CHARREF_IN_EPILOG, /* 12 */ - XML_ERR_CHARREF_IN_DTD, /* 13 */ - XML_ERR_ENTITYREF_AT_EOF, /* 14 */ - XML_ERR_ENTITYREF_IN_PROLOG, /* 15 */ - XML_ERR_ENTITYREF_IN_EPILOG, /* 16 */ - XML_ERR_ENTITYREF_IN_DTD, /* 17 */ - XML_ERR_PEREF_AT_EOF, /* 18 */ - XML_ERR_PEREF_IN_PROLOG, /* 19 */ - XML_ERR_PEREF_IN_EPILOG, /* 20 */ - XML_ERR_PEREF_IN_INT_SUBSET, /* 21 */ - XML_ERR_ENTITYREF_NO_NAME, /* 22 */ - XML_ERR_ENTITYREF_SEMICOL_MISSING, /* 23 */ - XML_ERR_PEREF_NO_NAME, /* 24 */ - XML_ERR_PEREF_SEMICOL_MISSING, /* 25 */ - XML_ERR_UNDECLARED_ENTITY, /* 26 */ - XML_WAR_UNDECLARED_ENTITY, /* 27 */ - XML_ERR_UNPARSED_ENTITY, /* 28 */ - XML_ERR_ENTITY_IS_EXTERNAL, /* 29 */ - XML_ERR_ENTITY_IS_PARAMETER, /* 30 */ - XML_ERR_UNKNOWN_ENCODING, /* 31 */ - XML_ERR_UNSUPPORTED_ENCODING, /* 32 */ - XML_ERR_STRING_NOT_STARTED, /* 33 */ - XML_ERR_STRING_NOT_CLOSED, /* 34 */ - XML_ERR_NS_DECL_ERROR, /* 35 */ - XML_ERR_ENTITY_NOT_STARTED, /* 36 */ - XML_ERR_ENTITY_NOT_FINISHED, /* 37 */ - XML_ERR_LT_IN_ATTRIBUTE, /* 38 */ - XML_ERR_ATTRIBUTE_NOT_STARTED, /* 39 */ - XML_ERR_ATTRIBUTE_NOT_FINISHED, /* 40 */ - XML_ERR_ATTRIBUTE_WITHOUT_VALUE, /* 41 */ - XML_ERR_ATTRIBUTE_REDEFINED, /* 42 */ - XML_ERR_LITERAL_NOT_STARTED, /* 43 */ - XML_ERR_LITERAL_NOT_FINISHED, /* 44 */ - XML_ERR_COMMENT_NOT_FINISHED, /* 45 */ - XML_ERR_PI_NOT_STARTED, /* 46 */ - XML_ERR_PI_NOT_FINISHED, /* 47 */ - XML_ERR_NOTATION_NOT_STARTED, /* 48 */ - XML_ERR_NOTATION_NOT_FINISHED, /* 49 */ - XML_ERR_ATTLIST_NOT_STARTED, /* 50 */ - XML_ERR_ATTLIST_NOT_FINISHED, /* 51 */ - XML_ERR_MIXED_NOT_STARTED, /* 52 */ - XML_ERR_MIXED_NOT_FINISHED, /* 53 */ - XML_ERR_ELEMCONTENT_NOT_STARTED, /* 54 */ - XML_ERR_ELEMCONTENT_NOT_FINISHED, /* 55 */ - XML_ERR_XMLDECL_NOT_STARTED, /* 56 */ - XML_ERR_XMLDECL_NOT_FINISHED, /* 57 */ - XML_ERR_CONDSEC_NOT_STARTED, /* 58 */ - XML_ERR_CONDSEC_NOT_FINISHED, /* 59 */ - XML_ERR_EXT_SUBSET_NOT_FINISHED, /* 60 */ - XML_ERR_DOCTYPE_NOT_FINISHED, /* 61 */ - XML_ERR_MISPLACED_CDATA_END, /* 62 */ - XML_ERR_CDATA_NOT_FINISHED, /* 63 */ - XML_ERR_RESERVED_XML_NAME, /* 64 */ - XML_ERR_SPACE_REQUIRED, /* 65 */ - XML_ERR_SEPARATOR_REQUIRED, /* 66 */ - XML_ERR_NMTOKEN_REQUIRED, /* 67 */ - XML_ERR_NAME_REQUIRED, /* 68 */ - XML_ERR_PCDATA_REQUIRED, /* 69 */ - XML_ERR_URI_REQUIRED, /* 70 */ - XML_ERR_PUBID_REQUIRED, /* 71 */ - XML_ERR_LT_REQUIRED, /* 72 */ - XML_ERR_GT_REQUIRED, /* 73 */ - XML_ERR_LTSLASH_REQUIRED, /* 74 */ - XML_ERR_EQUAL_REQUIRED, /* 75 */ - XML_ERR_TAG_NAME_MISMATCH, /* 76 */ - XML_ERR_TAG_NOT_FINISHED, /* 77 */ - XML_ERR_STANDALONE_VALUE, /* 78 */ - XML_ERR_ENCODING_NAME, /* 79 */ - XML_ERR_HYPHEN_IN_COMMENT, /* 80 */ - XML_ERR_INVALID_ENCODING, /* 81 */ - XML_ERR_EXT_ENTITY_STANDALONE, /* 82 */ - XML_ERR_CONDSEC_INVALID, /* 83 */ - XML_ERR_VALUE_REQUIRED, /* 84 */ - XML_ERR_NOT_WELL_BALANCED, /* 85 */ - XML_ERR_EXTRA_CONTENT, /* 86 */ - XML_ERR_ENTITY_CHAR_ERROR, /* 87 */ - XML_ERR_ENTITY_PE_INTERNAL, /* 88 */ - XML_ERR_ENTITY_LOOP, /* 89 */ - XML_ERR_ENTITY_BOUNDARY, /* 90 */ - XML_ERR_INVALID_URI, /* 91 */ - XML_ERR_URI_FRAGMENT, /* 92 */ - XML_WAR_CATALOG_PI, /* 93 */ - XML_ERR_NO_DTD, /* 94 */ - XML_ERR_CONDSEC_INVALID_KEYWORD, /* 95 */ - XML_ERR_VERSION_MISSING, /* 96 */ - XML_WAR_UNKNOWN_VERSION, /* 97 */ - XML_WAR_LANG_VALUE, /* 98 */ - XML_WAR_NS_URI, /* 99 */ - XML_WAR_NS_URI_RELATIVE, /* 100 */ - XML_ERR_MISSING_ENCODING, /* 101 */ - XML_WAR_SPACE_VALUE, /* 102 */ - XML_ERR_NOT_STANDALONE, /* 103 */ - XML_ERR_ENTITY_PROCESSING, /* 104 */ - XML_ERR_NOTATION_PROCESSING, /* 105 */ - XML_WAR_NS_COLUMN, /* 106 */ - XML_WAR_ENTITY_REDEFINED, /* 107 */ - XML_NS_ERR_XML_NAMESPACE = 200, - XML_NS_ERR_UNDEFINED_NAMESPACE, /* 201 */ - XML_NS_ERR_QNAME, /* 202 */ - XML_NS_ERR_ATTRIBUTE_REDEFINED, /* 203 */ - XML_NS_ERR_EMPTY, /* 204 */ - XML_DTD_ATTRIBUTE_DEFAULT = 500, - XML_DTD_ATTRIBUTE_REDEFINED, /* 501 */ - XML_DTD_ATTRIBUTE_VALUE, /* 502 */ - XML_DTD_CONTENT_ERROR, /* 503 */ - XML_DTD_CONTENT_MODEL, /* 504 */ - XML_DTD_CONTENT_NOT_DETERMINIST, /* 505 */ - XML_DTD_DIFFERENT_PREFIX, /* 506 */ - XML_DTD_ELEM_DEFAULT_NAMESPACE, /* 507 */ - XML_DTD_ELEM_NAMESPACE, /* 508 */ - XML_DTD_ELEM_REDEFINED, /* 509 */ - XML_DTD_EMPTY_NOTATION, /* 510 */ - XML_DTD_ENTITY_TYPE, /* 511 */ - XML_DTD_ID_FIXED, /* 512 */ - XML_DTD_ID_REDEFINED, /* 513 */ - XML_DTD_ID_SUBSET, /* 514 */ - XML_DTD_INVALID_CHILD, /* 515 */ - XML_DTD_INVALID_DEFAULT, /* 516 */ - XML_DTD_LOAD_ERROR, /* 517 */ - XML_DTD_MISSING_ATTRIBUTE, /* 518 */ - XML_DTD_MIXED_CORRUPT, /* 519 */ - XML_DTD_MULTIPLE_ID, /* 520 */ - XML_DTD_NO_DOC, /* 521 */ - XML_DTD_NO_DTD, /* 522 */ - XML_DTD_NO_ELEM_NAME, /* 523 */ - XML_DTD_NO_PREFIX, /* 524 */ - XML_DTD_NO_ROOT, /* 525 */ - XML_DTD_NOTATION_REDEFINED, /* 526 */ - XML_DTD_NOTATION_VALUE, /* 527 */ - XML_DTD_NOT_EMPTY, /* 528 */ - XML_DTD_NOT_PCDATA, /* 529 */ - XML_DTD_NOT_STANDALONE, /* 530 */ - XML_DTD_ROOT_NAME, /* 531 */ - XML_DTD_STANDALONE_WHITE_SPACE, /* 532 */ - XML_DTD_UNKNOWN_ATTRIBUTE, /* 533 */ - XML_DTD_UNKNOWN_ELEM, /* 534 */ - XML_DTD_UNKNOWN_ENTITY, /* 535 */ - XML_DTD_UNKNOWN_ID, /* 536 */ - XML_DTD_UNKNOWN_NOTATION, /* 537 */ - XML_DTD_STANDALONE_DEFAULTED, /* 538 */ - XML_DTD_XMLID_VALUE, /* 539 */ - XML_DTD_XMLID_TYPE, /* 540 */ - XML_HTML_STRUCURE_ERROR = 800, - XML_HTML_UNKNOWN_TAG, /* 801 */ - XML_RNGP_ANYNAME_ATTR_ANCESTOR = 1000, - XML_RNGP_ATTR_CONFLICT, /* 1001 */ - XML_RNGP_ATTRIBUTE_CHILDREN, /* 1002 */ - XML_RNGP_ATTRIBUTE_CONTENT, /* 1003 */ - XML_RNGP_ATTRIBUTE_EMPTY, /* 1004 */ - XML_RNGP_ATTRIBUTE_NOOP, /* 1005 */ - XML_RNGP_CHOICE_CONTENT, /* 1006 */ - XML_RNGP_CHOICE_EMPTY, /* 1007 */ - XML_RNGP_CREATE_FAILURE, /* 1008 */ - XML_RNGP_DATA_CONTENT, /* 1009 */ - XML_RNGP_DEF_CHOICE_AND_INTERLEAVE, /* 1010 */ - XML_RNGP_DEFINE_CREATE_FAILED, /* 1011 */ - XML_RNGP_DEFINE_EMPTY, /* 1012 */ - XML_RNGP_DEFINE_MISSING, /* 1013 */ - XML_RNGP_DEFINE_NAME_MISSING, /* 1014 */ - XML_RNGP_ELEM_CONTENT_EMPTY, /* 1015 */ - XML_RNGP_ELEM_CONTENT_ERROR, /* 1016 */ - XML_RNGP_ELEMENT_EMPTY, /* 1017 */ - XML_RNGP_ELEMENT_CONTENT, /* 1018 */ - XML_RNGP_ELEMENT_NAME, /* 1019 */ - XML_RNGP_ELEMENT_NO_CONTENT, /* 1020 */ - XML_RNGP_ELEM_TEXT_CONFLICT, /* 1021 */ - XML_RNGP_EMPTY, /* 1022 */ - XML_RNGP_EMPTY_CONSTRUCT, /* 1023 */ - XML_RNGP_EMPTY_CONTENT, /* 1024 */ - XML_RNGP_EMPTY_NOT_EMPTY, /* 1025 */ - XML_RNGP_ERROR_TYPE_LIB, /* 1026 */ - XML_RNGP_EXCEPT_EMPTY, /* 1027 */ - XML_RNGP_EXCEPT_MISSING, /* 1028 */ - XML_RNGP_EXCEPT_MULTIPLE, /* 1029 */ - XML_RNGP_EXCEPT_NO_CONTENT, /* 1030 */ - XML_RNGP_EXTERNALREF_EMTPY, /* 1031 */ - XML_RNGP_EXTERNAL_REF_FAILURE, /* 1032 */ - XML_RNGP_EXTERNALREF_RECURSE, /* 1033 */ - XML_RNGP_FORBIDDEN_ATTRIBUTE, /* 1034 */ - XML_RNGP_FOREIGN_ELEMENT, /* 1035 */ - XML_RNGP_GRAMMAR_CONTENT, /* 1036 */ - XML_RNGP_GRAMMAR_EMPTY, /* 1037 */ - XML_RNGP_GRAMMAR_MISSING, /* 1038 */ - XML_RNGP_GRAMMAR_NO_START, /* 1039 */ - XML_RNGP_GROUP_ATTR_CONFLICT, /* 1040 */ - XML_RNGP_HREF_ERROR, /* 1041 */ - XML_RNGP_INCLUDE_EMPTY, /* 1042 */ - XML_RNGP_INCLUDE_FAILURE, /* 1043 */ - XML_RNGP_INCLUDE_RECURSE, /* 1044 */ - XML_RNGP_INTERLEAVE_ADD, /* 1045 */ - XML_RNGP_INTERLEAVE_CREATE_FAILED, /* 1046 */ - XML_RNGP_INTERLEAVE_EMPTY, /* 1047 */ - XML_RNGP_INTERLEAVE_NO_CONTENT, /* 1048 */ - XML_RNGP_INVALID_DEFINE_NAME, /* 1049 */ - XML_RNGP_INVALID_URI, /* 1050 */ - XML_RNGP_INVALID_VALUE, /* 1051 */ - XML_RNGP_MISSING_HREF, /* 1052 */ - XML_RNGP_NAME_MISSING, /* 1053 */ - XML_RNGP_NEED_COMBINE, /* 1054 */ - XML_RNGP_NOTALLOWED_NOT_EMPTY, /* 1055 */ - XML_RNGP_NSNAME_ATTR_ANCESTOR, /* 1056 */ - XML_RNGP_NSNAME_NO_NS, /* 1057 */ - XML_RNGP_PARAM_FORBIDDEN, /* 1058 */ - XML_RNGP_PARAM_NAME_MISSING, /* 1059 */ - XML_RNGP_PARENTREF_CREATE_FAILED, /* 1060 */ - XML_RNGP_PARENTREF_NAME_INVALID, /* 1061 */ - XML_RNGP_PARENTREF_NO_NAME, /* 1062 */ - XML_RNGP_PARENTREF_NO_PARENT, /* 1063 */ - XML_RNGP_PARENTREF_NOT_EMPTY, /* 1064 */ - XML_RNGP_PARSE_ERROR, /* 1065 */ - XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME, /* 1066 */ - XML_RNGP_PAT_ATTR_ATTR, /* 1067 */ - XML_RNGP_PAT_ATTR_ELEM, /* 1068 */ - XML_RNGP_PAT_DATA_EXCEPT_ATTR, /* 1069 */ - XML_RNGP_PAT_DATA_EXCEPT_ELEM, /* 1070 */ - XML_RNGP_PAT_DATA_EXCEPT_EMPTY, /* 1071 */ - XML_RNGP_PAT_DATA_EXCEPT_GROUP, /* 1072 */ - XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE, /* 1073 */ - XML_RNGP_PAT_DATA_EXCEPT_LIST, /* 1074 */ - XML_RNGP_PAT_DATA_EXCEPT_ONEMORE, /* 1075 */ - XML_RNGP_PAT_DATA_EXCEPT_REF, /* 1076 */ - XML_RNGP_PAT_DATA_EXCEPT_TEXT, /* 1077 */ - XML_RNGP_PAT_LIST_ATTR, /* 1078 */ - XML_RNGP_PAT_LIST_ELEM, /* 1079 */ - XML_RNGP_PAT_LIST_INTERLEAVE, /* 1080 */ - XML_RNGP_PAT_LIST_LIST, /* 1081 */ - XML_RNGP_PAT_LIST_REF, /* 1082 */ - XML_RNGP_PAT_LIST_TEXT, /* 1083 */ - XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME, /* 1084 */ - XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME, /* 1085 */ - XML_RNGP_PAT_ONEMORE_GROUP_ATTR, /* 1086 */ - XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR, /* 1087 */ - XML_RNGP_PAT_START_ATTR, /* 1088 */ - XML_RNGP_PAT_START_DATA, /* 1089 */ - XML_RNGP_PAT_START_EMPTY, /* 1090 */ - XML_RNGP_PAT_START_GROUP, /* 1091 */ - XML_RNGP_PAT_START_INTERLEAVE, /* 1092 */ - XML_RNGP_PAT_START_LIST, /* 1093 */ - XML_RNGP_PAT_START_ONEMORE, /* 1094 */ - XML_RNGP_PAT_START_TEXT, /* 1095 */ - XML_RNGP_PAT_START_VALUE, /* 1096 */ - XML_RNGP_PREFIX_UNDEFINED, /* 1097 */ - XML_RNGP_REF_CREATE_FAILED, /* 1098 */ - XML_RNGP_REF_CYCLE, /* 1099 */ - XML_RNGP_REF_NAME_INVALID, /* 1100 */ - XML_RNGP_REF_NO_DEF, /* 1101 */ - XML_RNGP_REF_NO_NAME, /* 1102 */ - XML_RNGP_REF_NOT_EMPTY, /* 1103 */ - XML_RNGP_START_CHOICE_AND_INTERLEAVE, /* 1104 */ - XML_RNGP_START_CONTENT, /* 1105 */ - XML_RNGP_START_EMPTY, /* 1106 */ - XML_RNGP_START_MISSING, /* 1107 */ - XML_RNGP_TEXT_EXPECTED, /* 1108 */ - XML_RNGP_TEXT_HAS_CHILD, /* 1109 */ - XML_RNGP_TYPE_MISSING, /* 1110 */ - XML_RNGP_TYPE_NOT_FOUND, /* 1111 */ - XML_RNGP_TYPE_VALUE, /* 1112 */ - XML_RNGP_UNKNOWN_ATTRIBUTE, /* 1113 */ - XML_RNGP_UNKNOWN_COMBINE, /* 1114 */ - XML_RNGP_UNKNOWN_CONSTRUCT, /* 1115 */ - XML_RNGP_UNKNOWN_TYPE_LIB, /* 1116 */ - XML_RNGP_URI_FRAGMENT, /* 1117 */ - XML_RNGP_URI_NOT_ABSOLUTE, /* 1118 */ - XML_RNGP_VALUE_EMPTY, /* 1119 */ - XML_RNGP_VALUE_NO_CONTENT, /* 1120 */ - XML_RNGP_XMLNS_NAME, /* 1121 */ - XML_RNGP_XML_NS, /* 1122 */ - XML_XPATH_EXPRESSION_OK = 1200, - XML_XPATH_NUMBER_ERROR, /* 1201 */ - XML_XPATH_UNFINISHED_LITERAL_ERROR, /* 1202 */ - XML_XPATH_START_LITERAL_ERROR, /* 1203 */ - XML_XPATH_VARIABLE_REF_ERROR, /* 1204 */ - XML_XPATH_UNDEF_VARIABLE_ERROR, /* 1205 */ - XML_XPATH_INVALID_PREDICATE_ERROR, /* 1206 */ - XML_XPATH_EXPR_ERROR, /* 1207 */ - XML_XPATH_UNCLOSED_ERROR, /* 1208 */ - XML_XPATH_UNKNOWN_FUNC_ERROR, /* 1209 */ - XML_XPATH_INVALID_OPERAND, /* 1210 */ - XML_XPATH_INVALID_TYPE, /* 1211 */ - XML_XPATH_INVALID_ARITY, /* 1212 */ - XML_XPATH_INVALID_CTXT_SIZE, /* 1213 */ - XML_XPATH_INVALID_CTXT_POSITION, /* 1214 */ - XML_XPATH_MEMORY_ERROR, /* 1215 */ - XML_XPTR_SYNTAX_ERROR, /* 1216 */ - XML_XPTR_RESOURCE_ERROR, /* 1217 */ - XML_XPTR_SUB_RESOURCE_ERROR, /* 1218 */ - XML_XPATH_UNDEF_PREFIX_ERROR, /* 1219 */ - XML_XPATH_ENCODING_ERROR, /* 1220 */ - XML_XPATH_INVALID_CHAR_ERROR, /* 1221 */ - XML_TREE_INVALID_HEX = 1300, - XML_TREE_INVALID_DEC, /* 1301 */ - XML_TREE_UNTERMINATED_ENTITY, /* 1302 */ - XML_SAVE_NOT_UTF8 = 1400, - XML_SAVE_CHAR_INVALID, /* 1401 */ - XML_SAVE_NO_DOCTYPE, /* 1402 */ - XML_SAVE_UNKNOWN_ENCODING, /* 1403 */ - XML_REGEXP_COMPILE_ERROR = 1450, - XML_IO_UNKNOWN = 1500, - XML_IO_EACCES, /* 1501 */ - XML_IO_EAGAIN, /* 1502 */ - XML_IO_EBADF, /* 1503 */ - XML_IO_EBADMSG, /* 1504 */ - XML_IO_EBUSY, /* 1505 */ - XML_IO_ECANCELED, /* 1506 */ - XML_IO_ECHILD, /* 1507 */ - XML_IO_EDEADLK, /* 1508 */ - XML_IO_EDOM, /* 1509 */ - XML_IO_EEXIST, /* 1510 */ - XML_IO_EFAULT, /* 1511 */ - XML_IO_EFBIG, /* 1512 */ - XML_IO_EINPROGRESS, /* 1513 */ - XML_IO_EINTR, /* 1514 */ - XML_IO_EINVAL, /* 1515 */ - XML_IO_EIO, /* 1516 */ - XML_IO_EISDIR, /* 1517 */ - XML_IO_EMFILE, /* 1518 */ - XML_IO_EMLINK, /* 1519 */ - XML_IO_EMSGSIZE, /* 1520 */ - XML_IO_ENAMETOOLONG, /* 1521 */ - XML_IO_ENFILE, /* 1522 */ - XML_IO_ENODEV, /* 1523 */ - XML_IO_ENOENT, /* 1524 */ - XML_IO_ENOEXEC, /* 1525 */ - XML_IO_ENOLCK, /* 1526 */ - XML_IO_ENOMEM, /* 1527 */ - XML_IO_ENOSPC, /* 1528 */ - XML_IO_ENOSYS, /* 1529 */ - XML_IO_ENOTDIR, /* 1530 */ - XML_IO_ENOTEMPTY, /* 1531 */ - XML_IO_ENOTSUP, /* 1532 */ - XML_IO_ENOTTY, /* 1533 */ - XML_IO_ENXIO, /* 1534 */ - XML_IO_EPERM, /* 1535 */ - XML_IO_EPIPE, /* 1536 */ - XML_IO_ERANGE, /* 1537 */ - XML_IO_EROFS, /* 1538 */ - XML_IO_ESPIPE, /* 1539 */ - XML_IO_ESRCH, /* 1540 */ - XML_IO_ETIMEDOUT, /* 1541 */ - XML_IO_EXDEV, /* 1542 */ - XML_IO_NETWORK_ATTEMPT, /* 1543 */ - XML_IO_ENCODER, /* 1544 */ - XML_IO_FLUSH, /* 1545 */ - XML_IO_WRITE, /* 1546 */ - XML_IO_NO_INPUT, /* 1547 */ - XML_IO_BUFFER_FULL, /* 1548 */ - XML_IO_LOAD_ERROR, /* 1549 */ - XML_IO_ENOTSOCK, /* 1550 */ - XML_IO_EISCONN, /* 1551 */ - XML_IO_ECONNREFUSED, /* 1552 */ - XML_IO_ENETUNREACH, /* 1553 */ - XML_IO_EADDRINUSE, /* 1554 */ - XML_IO_EALREADY, /* 1555 */ - XML_IO_EAFNOSUPPORT, /* 1556 */ - XML_XINCLUDE_RECURSION=1600, - XML_XINCLUDE_PARSE_VALUE, /* 1601 */ - XML_XINCLUDE_ENTITY_DEF_MISMATCH, /* 1602 */ - XML_XINCLUDE_NO_HREF, /* 1603 */ - XML_XINCLUDE_NO_FALLBACK, /* 1604 */ - XML_XINCLUDE_HREF_URI, /* 1605 */ - XML_XINCLUDE_TEXT_FRAGMENT, /* 1606 */ - XML_XINCLUDE_TEXT_DOCUMENT, /* 1607 */ - XML_XINCLUDE_INVALID_CHAR, /* 1608 */ - XML_XINCLUDE_BUILD_FAILED, /* 1609 */ - XML_XINCLUDE_UNKNOWN_ENCODING, /* 1610 */ - XML_XINCLUDE_MULTIPLE_ROOT, /* 1611 */ - XML_XINCLUDE_XPTR_FAILED, /* 1612 */ - XML_XINCLUDE_XPTR_RESULT, /* 1613 */ - XML_XINCLUDE_INCLUDE_IN_INCLUDE, /* 1614 */ - XML_XINCLUDE_FALLBACKS_IN_INCLUDE, /* 1615 */ - XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE, /* 1616 */ - XML_XINCLUDE_DEPRECATED_NS, /* 1617 */ - XML_XINCLUDE_FRAGMENT_ID, /* 1618 */ - XML_CATALOG_MISSING_ATTR = 1650, - XML_CATALOG_ENTRY_BROKEN, /* 1651 */ - XML_CATALOG_PREFER_VALUE, /* 1652 */ - XML_CATALOG_NOT_CATALOG, /* 1653 */ - XML_CATALOG_RECURSION, /* 1654 */ - XML_SCHEMAP_PREFIX_UNDEFINED = 1700, - XML_SCHEMAP_ATTRFORMDEFAULT_VALUE, /* 1701 */ - XML_SCHEMAP_ATTRGRP_NONAME_NOREF, /* 1702 */ - XML_SCHEMAP_ATTR_NONAME_NOREF, /* 1703 */ - XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF, /* 1704 */ - XML_SCHEMAP_ELEMFORMDEFAULT_VALUE, /* 1705 */ - XML_SCHEMAP_ELEM_NONAME_NOREF, /* 1706 */ - XML_SCHEMAP_EXTENSION_NO_BASE, /* 1707 */ - XML_SCHEMAP_FACET_NO_VALUE, /* 1708 */ - XML_SCHEMAP_FAILED_BUILD_IMPORT, /* 1709 */ - XML_SCHEMAP_GROUP_NONAME_NOREF, /* 1710 */ - XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI, /* 1711 */ - XML_SCHEMAP_IMPORT_REDEFINE_NSNAME, /* 1712 */ - XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI, /* 1713 */ - XML_SCHEMAP_INVALID_BOOLEAN, /* 1714 */ - XML_SCHEMAP_INVALID_ENUM, /* 1715 */ - XML_SCHEMAP_INVALID_FACET, /* 1716 */ - XML_SCHEMAP_INVALID_FACET_VALUE, /* 1717 */ - XML_SCHEMAP_INVALID_MAXOCCURS, /* 1718 */ - XML_SCHEMAP_INVALID_MINOCCURS, /* 1719 */ - XML_SCHEMAP_INVALID_REF_AND_SUBTYPE, /* 1720 */ - XML_SCHEMAP_INVALID_WHITE_SPACE, /* 1721 */ - XML_SCHEMAP_NOATTR_NOREF, /* 1722 */ - XML_SCHEMAP_NOTATION_NO_NAME, /* 1723 */ - XML_SCHEMAP_NOTYPE_NOREF, /* 1724 */ - XML_SCHEMAP_REF_AND_SUBTYPE, /* 1725 */ - XML_SCHEMAP_RESTRICTION_NONAME_NOREF, /* 1726 */ - XML_SCHEMAP_SIMPLETYPE_NONAME, /* 1727 */ - XML_SCHEMAP_TYPE_AND_SUBTYPE, /* 1728 */ - XML_SCHEMAP_UNKNOWN_ALL_CHILD, /* 1729 */ - XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD, /* 1730 */ - XML_SCHEMAP_UNKNOWN_ATTR_CHILD, /* 1731 */ - XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD, /* 1732 */ - XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP, /* 1733 */ - XML_SCHEMAP_UNKNOWN_BASE_TYPE, /* 1734 */ - XML_SCHEMAP_UNKNOWN_CHOICE_CHILD, /* 1735 */ - XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD, /* 1736 */ - XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD, /* 1737 */ - XML_SCHEMAP_UNKNOWN_ELEM_CHILD, /* 1738 */ - XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD, /* 1739 */ - XML_SCHEMAP_UNKNOWN_FACET_CHILD, /* 1740 */ - XML_SCHEMAP_UNKNOWN_FACET_TYPE, /* 1741 */ - XML_SCHEMAP_UNKNOWN_GROUP_CHILD, /* 1742 */ - XML_SCHEMAP_UNKNOWN_IMPORT_CHILD, /* 1743 */ - XML_SCHEMAP_UNKNOWN_LIST_CHILD, /* 1744 */ - XML_SCHEMAP_UNKNOWN_NOTATION_CHILD, /* 1745 */ - XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD, /* 1746 */ - XML_SCHEMAP_UNKNOWN_REF, /* 1747 */ - XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD, /* 1748 */ - XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD, /* 1749 */ - XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD, /* 1750 */ - XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD, /* 1751 */ - XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD, /* 1752 */ - XML_SCHEMAP_UNKNOWN_TYPE, /* 1753 */ - XML_SCHEMAP_UNKNOWN_UNION_CHILD, /* 1754 */ - XML_SCHEMAP_ELEM_DEFAULT_FIXED, /* 1755 */ - XML_SCHEMAP_REGEXP_INVALID, /* 1756 */ - XML_SCHEMAP_FAILED_LOAD, /* 1757 */ - XML_SCHEMAP_NOTHING_TO_PARSE, /* 1758 */ - XML_SCHEMAP_NOROOT, /* 1759 */ - XML_SCHEMAP_REDEFINED_GROUP, /* 1760 */ - XML_SCHEMAP_REDEFINED_TYPE, /* 1761 */ - XML_SCHEMAP_REDEFINED_ELEMENT, /* 1762 */ - XML_SCHEMAP_REDEFINED_ATTRGROUP, /* 1763 */ - XML_SCHEMAP_REDEFINED_ATTR, /* 1764 */ - XML_SCHEMAP_REDEFINED_NOTATION, /* 1765 */ - XML_SCHEMAP_FAILED_PARSE, /* 1766 */ - XML_SCHEMAP_UNKNOWN_PREFIX, /* 1767 */ - XML_SCHEMAP_DEF_AND_PREFIX, /* 1768 */ - XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD, /* 1769 */ - XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI, /* 1770 */ - XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI, /* 1771 */ - XML_SCHEMAP_NOT_SCHEMA, /* 1772 */ - XML_SCHEMAP_UNKNOWN_MEMBER_TYPE, /* 1773 */ - XML_SCHEMAP_INVALID_ATTR_USE, /* 1774 */ - XML_SCHEMAP_RECURSIVE, /* 1775 */ - XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE, /* 1776 */ - XML_SCHEMAP_INVALID_ATTR_COMBINATION, /* 1777 */ - XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION, /* 1778 */ - XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD, /* 1779 */ - XML_SCHEMAP_INVALID_ATTR_NAME, /* 1780 */ - XML_SCHEMAP_REF_AND_CONTENT, /* 1781 */ - XML_SCHEMAP_CT_PROPS_CORRECT_1, /* 1782 */ - XML_SCHEMAP_CT_PROPS_CORRECT_2, /* 1783 */ - XML_SCHEMAP_CT_PROPS_CORRECT_3, /* 1784 */ - XML_SCHEMAP_CT_PROPS_CORRECT_4, /* 1785 */ - XML_SCHEMAP_CT_PROPS_CORRECT_5, /* 1786 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1, /* 1787 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1, /* 1788 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2, /* 1789 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2, /* 1790 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3, /* 1791 */ - XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER, /* 1792 */ - XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE, /* 1793 */ - XML_SCHEMAP_UNION_NOT_EXPRESSIBLE, /* 1794 */ - XML_SCHEMAP_SRC_IMPORT_3_1, /* 1795 */ - XML_SCHEMAP_SRC_IMPORT_3_2, /* 1796 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1, /* 1797 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2, /* 1798 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3, /* 1799 */ - XML_SCHEMAP_COS_CT_EXTENDS_1_3, /* 1800 */ - XML_SCHEMAV_NOROOT = 1801, - XML_SCHEMAV_UNDECLAREDELEM, /* 1802 */ - XML_SCHEMAV_NOTTOPLEVEL, /* 1803 */ - XML_SCHEMAV_MISSING, /* 1804 */ - XML_SCHEMAV_WRONGELEM, /* 1805 */ - XML_SCHEMAV_NOTYPE, /* 1806 */ - XML_SCHEMAV_NOROLLBACK, /* 1807 */ - XML_SCHEMAV_ISABSTRACT, /* 1808 */ - XML_SCHEMAV_NOTEMPTY, /* 1809 */ - XML_SCHEMAV_ELEMCONT, /* 1810 */ - XML_SCHEMAV_HAVEDEFAULT, /* 1811 */ - XML_SCHEMAV_NOTNILLABLE, /* 1812 */ - XML_SCHEMAV_EXTRACONTENT, /* 1813 */ - XML_SCHEMAV_INVALIDATTR, /* 1814 */ - XML_SCHEMAV_INVALIDELEM, /* 1815 */ - XML_SCHEMAV_NOTDETERMINIST, /* 1816 */ - XML_SCHEMAV_CONSTRUCT, /* 1817 */ - XML_SCHEMAV_INTERNAL, /* 1818 */ - XML_SCHEMAV_NOTSIMPLE, /* 1819 */ - XML_SCHEMAV_ATTRUNKNOWN, /* 1820 */ - XML_SCHEMAV_ATTRINVALID, /* 1821 */ - XML_SCHEMAV_VALUE, /* 1822 */ - XML_SCHEMAV_FACET, /* 1823 */ - XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1, /* 1824 */ - XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2, /* 1825 */ - XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3, /* 1826 */ - XML_SCHEMAV_CVC_TYPE_3_1_1, /* 1827 */ - XML_SCHEMAV_CVC_TYPE_3_1_2, /* 1828 */ - XML_SCHEMAV_CVC_FACET_VALID, /* 1829 */ - XML_SCHEMAV_CVC_LENGTH_VALID, /* 1830 */ - XML_SCHEMAV_CVC_MINLENGTH_VALID, /* 1831 */ - XML_SCHEMAV_CVC_MAXLENGTH_VALID, /* 1832 */ - XML_SCHEMAV_CVC_MININCLUSIVE_VALID, /* 1833 */ - XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID, /* 1834 */ - XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID, /* 1835 */ - XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID, /* 1836 */ - XML_SCHEMAV_CVC_TOTALDIGITS_VALID, /* 1837 */ - XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID, /* 1838 */ - XML_SCHEMAV_CVC_PATTERN_VALID, /* 1839 */ - XML_SCHEMAV_CVC_ENUMERATION_VALID, /* 1840 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1, /* 1841 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2, /* 1842 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3, /* 1843 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4, /* 1844 */ - XML_SCHEMAV_CVC_ELT_1, /* 1845 */ - XML_SCHEMAV_CVC_ELT_2, /* 1846 */ - XML_SCHEMAV_CVC_ELT_3_1, /* 1847 */ - XML_SCHEMAV_CVC_ELT_3_2_1, /* 1848 */ - XML_SCHEMAV_CVC_ELT_3_2_2, /* 1849 */ - XML_SCHEMAV_CVC_ELT_4_1, /* 1850 */ - XML_SCHEMAV_CVC_ELT_4_2, /* 1851 */ - XML_SCHEMAV_CVC_ELT_4_3, /* 1852 */ - XML_SCHEMAV_CVC_ELT_5_1_1, /* 1853 */ - XML_SCHEMAV_CVC_ELT_5_1_2, /* 1854 */ - XML_SCHEMAV_CVC_ELT_5_2_1, /* 1855 */ - XML_SCHEMAV_CVC_ELT_5_2_2_1, /* 1856 */ - XML_SCHEMAV_CVC_ELT_5_2_2_2_1, /* 1857 */ - XML_SCHEMAV_CVC_ELT_5_2_2_2_2, /* 1858 */ - XML_SCHEMAV_CVC_ELT_6, /* 1859 */ - XML_SCHEMAV_CVC_ELT_7, /* 1860 */ - XML_SCHEMAV_CVC_ATTRIBUTE_1, /* 1861 */ - XML_SCHEMAV_CVC_ATTRIBUTE_2, /* 1862 */ - XML_SCHEMAV_CVC_ATTRIBUTE_3, /* 1863 */ - XML_SCHEMAV_CVC_ATTRIBUTE_4, /* 1864 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1, /* 1865 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1, /* 1866 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2, /* 1867 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_4, /* 1868 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1, /* 1869 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2, /* 1870 */ - XML_SCHEMAV_ELEMENT_CONTENT, /* 1871 */ - XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING, /* 1872 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_1, /* 1873 */ - XML_SCHEMAV_CVC_AU, /* 1874 */ - XML_SCHEMAV_CVC_TYPE_1, /* 1875 */ - XML_SCHEMAV_CVC_TYPE_2, /* 1876 */ - XML_SCHEMAV_CVC_IDC, /* 1877 */ - XML_SCHEMAV_CVC_WILDCARD, /* 1878 */ - XML_SCHEMAV_MISC, /* 1879 */ - XML_XPTR_UNKNOWN_SCHEME = 1900, - XML_XPTR_CHILDSEQ_START, /* 1901 */ - XML_XPTR_EVAL_FAILED, /* 1902 */ - XML_XPTR_EXTRA_OBJECTS, /* 1903 */ - XML_C14N_CREATE_CTXT = 1950, - XML_C14N_REQUIRES_UTF8, /* 1951 */ - XML_C14N_CREATE_STACK, /* 1952 */ - XML_C14N_INVALID_NODE, /* 1953 */ - XML_C14N_UNKNOW_NODE, /* 1954 */ - XML_C14N_RELATIVE_NAMESPACE, /* 1955 */ - XML_FTP_PASV_ANSWER = 2000, - XML_FTP_EPSV_ANSWER, /* 2001 */ - XML_FTP_ACCNT, /* 2002 */ - XML_FTP_URL_SYNTAX, /* 2003 */ - XML_HTTP_URL_SYNTAX = 2020, - XML_HTTP_USE_IP, /* 2021 */ - XML_HTTP_UNKNOWN_HOST, /* 2022 */ - XML_SCHEMAP_SRC_SIMPLE_TYPE_1 = 3000, - XML_SCHEMAP_SRC_SIMPLE_TYPE_2, /* 3001 */ - XML_SCHEMAP_SRC_SIMPLE_TYPE_3, /* 3002 */ - XML_SCHEMAP_SRC_SIMPLE_TYPE_4, /* 3003 */ - XML_SCHEMAP_SRC_RESOLVE, /* 3004 */ - XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE, /* 3005 */ - XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE, /* 3006 */ - XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES, /* 3007 */ - XML_SCHEMAP_ST_PROPS_CORRECT_1, /* 3008 */ - XML_SCHEMAP_ST_PROPS_CORRECT_2, /* 3009 */ - XML_SCHEMAP_ST_PROPS_CORRECT_3, /* 3010 */ - XML_SCHEMAP_COS_ST_RESTRICTS_1_1, /* 3011 */ - XML_SCHEMAP_COS_ST_RESTRICTS_1_2, /* 3012 */ - XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1, /* 3013 */ - XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2, /* 3014 */ - XML_SCHEMAP_COS_ST_RESTRICTS_2_1, /* 3015 */ - XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1, /* 3016 */ - XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2, /* 3017 */ - XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1, /* 3018 */ - XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2, /* 3019 */ - XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3, /* 3020 */ - XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4, /* 3021 */ - XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5, /* 3022 */ - XML_SCHEMAP_COS_ST_RESTRICTS_3_1, /* 3023 */ - XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1, /* 3024 */ - XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2, /* 3025 */ - XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2, /* 3026 */ - XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1, /* 3027 */ - XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3, /* 3028 */ - XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4, /* 3029 */ - XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5, /* 3030 */ - XML_SCHEMAP_COS_ST_DERIVED_OK_2_1, /* 3031 */ - XML_SCHEMAP_COS_ST_DERIVED_OK_2_2, /* 3032 */ - XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED, /* 3033 */ - XML_SCHEMAP_S4S_ELEM_MISSING, /* 3034 */ - XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, /* 3035 */ - XML_SCHEMAP_S4S_ATTR_MISSING, /* 3036 */ - XML_SCHEMAP_S4S_ATTR_INVALID_VALUE, /* 3037 */ - XML_SCHEMAP_SRC_ELEMENT_1, /* 3038 */ - XML_SCHEMAP_SRC_ELEMENT_2_1, /* 3039 */ - XML_SCHEMAP_SRC_ELEMENT_2_2, /* 3040 */ - XML_SCHEMAP_SRC_ELEMENT_3, /* 3041 */ - XML_SCHEMAP_P_PROPS_CORRECT_1, /* 3042 */ - XML_SCHEMAP_P_PROPS_CORRECT_2_1, /* 3043 */ - XML_SCHEMAP_P_PROPS_CORRECT_2_2, /* 3044 */ - XML_SCHEMAP_E_PROPS_CORRECT_2, /* 3045 */ - XML_SCHEMAP_E_PROPS_CORRECT_3, /* 3046 */ - XML_SCHEMAP_E_PROPS_CORRECT_4, /* 3047 */ - XML_SCHEMAP_E_PROPS_CORRECT_5, /* 3048 */ - XML_SCHEMAP_E_PROPS_CORRECT_6, /* 3049 */ - XML_SCHEMAP_SRC_INCLUDE, /* 3050 */ - XML_SCHEMAP_SRC_ATTRIBUTE_1, /* 3051 */ - XML_SCHEMAP_SRC_ATTRIBUTE_2, /* 3052 */ - XML_SCHEMAP_SRC_ATTRIBUTE_3_1, /* 3053 */ - XML_SCHEMAP_SRC_ATTRIBUTE_3_2, /* 3054 */ - XML_SCHEMAP_SRC_ATTRIBUTE_4, /* 3055 */ - XML_SCHEMAP_NO_XMLNS, /* 3056 */ - XML_SCHEMAP_NO_XSI, /* 3057 */ - XML_SCHEMAP_COS_VALID_DEFAULT_1, /* 3058 */ - XML_SCHEMAP_COS_VALID_DEFAULT_2_1, /* 3059 */ - XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1, /* 3060 */ - XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2, /* 3061 */ - XML_SCHEMAP_CVC_SIMPLE_TYPE, /* 3062 */ - XML_SCHEMAP_COS_CT_EXTENDS_1_1, /* 3063 */ - XML_SCHEMAP_SRC_IMPORT_1_1, /* 3064 */ - XML_SCHEMAP_SRC_IMPORT_1_2, /* 3065 */ - XML_SCHEMAP_SRC_IMPORT_2, /* 3066 */ - XML_SCHEMAP_SRC_IMPORT_2_1, /* 3067 */ - XML_SCHEMAP_SRC_IMPORT_2_2, /* 3068 */ - XML_SCHEMAP_INTERNAL, /* 3069 non-W3C */ - XML_SCHEMAP_NOT_DETERMINISTIC, /* 3070 non-W3C */ - XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1, /* 3071 */ - XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2, /* 3072 */ - XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3, /* 3073 */ - XML_SCHEMAP_MG_PROPS_CORRECT_1, /* 3074 */ - XML_SCHEMAP_MG_PROPS_CORRECT_2, /* 3075 */ - XML_SCHEMAP_SRC_CT_1, /* 3076 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3, /* 3077 */ - XML_SCHEMAP_AU_PROPS_CORRECT_2, /* 3078 */ - XML_SCHEMAP_A_PROPS_CORRECT_2, /* 3079 */ - XML_SCHEMAP_C_PROPS_CORRECT, /* 3080 */ - XML_SCHEMAP_SRC_REDEFINE, /* 3081 */ - XML_SCHEMAP_SRC_IMPORT, /* 3082 */ - XML_SCHEMAP_WARN_SKIP_SCHEMA, /* 3083 */ - XML_SCHEMAP_WARN_UNLOCATED_SCHEMA, /* 3084 */ - XML_SCHEMAP_WARN_ATTR_REDECL_PROH, /* 3085 */ - XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH, /* 3085 */ - XML_SCHEMAP_AG_PROPS_CORRECT, /* 3086 */ - XML_SCHEMAP_COS_CT_EXTENDS_1_2, /* 3087 */ - XML_SCHEMAP_AU_PROPS_CORRECT, /* 3088 */ - XML_SCHEMAP_A_PROPS_CORRECT_3, /* 3089 */ - XML_SCHEMAP_COS_ALL_LIMITED, /* 3090 */ - XML_MODULE_OPEN = 4900, /* 4900 */ - XML_MODULE_CLOSE, /* 4901 */ - XML_CHECK_FOUND_ELEMENT = 5000, - XML_CHECK_FOUND_ATTRIBUTE, /* 5001 */ - XML_CHECK_FOUND_TEXT, /* 5002 */ - XML_CHECK_FOUND_CDATA, /* 5003 */ - XML_CHECK_FOUND_ENTITYREF, /* 5004 */ - XML_CHECK_FOUND_ENTITY, /* 5005 */ - XML_CHECK_FOUND_PI, /* 5006 */ - XML_CHECK_FOUND_COMMENT, /* 5007 */ - XML_CHECK_FOUND_DOCTYPE, /* 5008 */ - XML_CHECK_FOUND_FRAGMENT, /* 5009 */ - XML_CHECK_FOUND_NOTATION, /* 5010 */ - XML_CHECK_UNKNOWN_NODE, /* 5011 */ - XML_CHECK_ENTITY_TYPE, /* 5012 */ - XML_CHECK_NO_PARENT, /* 5013 */ - XML_CHECK_NO_DOC, /* 5014 */ - XML_CHECK_NO_NAME, /* 5015 */ - XML_CHECK_NO_ELEM, /* 5016 */ - XML_CHECK_WRONG_DOC, /* 5017 */ - XML_CHECK_NO_PREV, /* 5018 */ - XML_CHECK_WRONG_PREV, /* 5019 */ - XML_CHECK_NO_NEXT, /* 5020 */ - XML_CHECK_WRONG_NEXT, /* 5021 */ - XML_CHECK_NOT_DTD, /* 5022 */ - XML_CHECK_NOT_ATTR, /* 5023 */ - XML_CHECK_NOT_ATTR_DECL, /* 5024 */ - XML_CHECK_NOT_ELEM_DECL, /* 5025 */ - XML_CHECK_NOT_ENTITY_DECL, /* 5026 */ - XML_CHECK_NOT_NS_DECL, /* 5027 */ - XML_CHECK_NO_HREF, /* 5028 */ - XML_CHECK_WRONG_PARENT,/* 5029 */ - XML_CHECK_NS_SCOPE, /* 5030 */ - XML_CHECK_NS_ANCESTOR, /* 5031 */ - XML_CHECK_NOT_UTF8, /* 5032 */ - XML_CHECK_NO_DICT, /* 5033 */ - XML_CHECK_NOT_NCNAME, /* 5034 */ - XML_CHECK_OUTSIDE_DICT, /* 5035 */ - XML_CHECK_WRONG_NAME, /* 5036 */ - XML_CHECK_NAME_NOT_NULL, /* 5037 */ - XML_I18N_NO_NAME = 6000, - XML_I18N_NO_HANDLER, /* 6001 */ - XML_I18N_EXCESS_HANDLER, /* 6002 */ - XML_I18N_CONV_FAILED, /* 6003 */ - XML_I18N_NO_OUTPUT /* 6004 */ -#if 0 - XML_CHECK_, /* 5033 */ - XML_CHECK_X /* 503 */ -#endif -} xmlParserErrors; - -/** - * xmlGenericErrorFunc: - * @ctx: a parsing context - * @msg: the message - * @...: the extra arguments of the varags to format the message - * - * Signature of the function to use when there is an error and - * no parsing or validity context available . - */ -typedef void (XMLCDECL *xmlGenericErrorFunc) (void *ctx, - const char *msg, - ...); -/** - * xmlStructuredErrorFunc: - * @userData: user provided data for the error callback - * @error: the error being raised. - * - * Signature of the function to use when there is an error and - * the module handles the new error reporting mechanism. - */ -typedef void (XMLCALL *xmlStructuredErrorFunc) (void *userData, xmlErrorPtr error); - -/* - * Use the following function to reset the two global variables - * xmlGenericError and xmlGenericErrorContext. - */ -XMLPUBFUN void XMLCALL - xmlSetGenericErrorFunc (void *ctx, - xmlGenericErrorFunc handler); -XMLPUBFUN void XMLCALL - initGenericErrorDefaultFunc (xmlGenericErrorFunc *handler); - -XMLPUBFUN void XMLCALL - xmlSetStructuredErrorFunc (void *ctx, - xmlStructuredErrorFunc handler); -/* - * Default message routines used by SAX and Valid context for error - * and warning reporting. - */ -XMLPUBFUN void XMLCDECL - xmlParserError (void *ctx, - const char *msg, - ...); -XMLPUBFUN void XMLCDECL - xmlParserWarning (void *ctx, - const char *msg, - ...); -XMLPUBFUN void XMLCDECL - xmlParserValidityError (void *ctx, - const char *msg, - ...); -XMLPUBFUN void XMLCDECL - xmlParserValidityWarning (void *ctx, - const char *msg, - ...); -XMLPUBFUN void XMLCALL - xmlParserPrintFileInfo (xmlParserInputPtr input); -XMLPUBFUN void XMLCALL - xmlParserPrintFileContext (xmlParserInputPtr input); - -/* - * Extended error information routines - */ -XMLPUBFUN xmlErrorPtr XMLCALL - xmlGetLastError (void); -XMLPUBFUN void XMLCALL - xmlResetLastError (void); -XMLPUBFUN xmlErrorPtr XMLCALL - xmlCtxtGetLastError (void *ctx); -XMLPUBFUN void XMLCALL - xmlCtxtResetLastError (void *ctx); -XMLPUBFUN void XMLCALL - xmlResetError (xmlErrorPtr err); -XMLPUBFUN int XMLCALL - xmlCopyError (xmlErrorPtr from, - xmlErrorPtr to); - -#ifdef IN_LIBXML -/* - * Internal callback reporting routine - */ -XMLPUBFUN void XMLCALL - __xmlRaiseError (xmlStructuredErrorFunc schannel, - xmlGenericErrorFunc channel, - void *data, - void *ctx, - void *node, - int domain, - int code, - xmlErrorLevel level, - const char *file, - int line, - const char *str1, - const char *str2, - const char *str3, - int int1, - int col, - const char *msg, - ...); -XMLPUBFUN void XMLCALL - __xmlSimpleError (int domain, - int code, - xmlNodePtr node, - const char *msg, - const char *extra); -#endif -#ifdef __cplusplus -} -#endif -#endif /* __XML_ERROR_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlexports.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlexports.h deleted file mode 100644 index 29a6f54f..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlexports.h +++ /dev/null @@ -1,157 +0,0 @@ -/* - * Summary: macros for marking symbols as exportable/importable. - * Description: macros for marking symbols as exportable/importable. - * - * Copy: See Copyright for the status of this software. - * - * Author: Igor Zlatovic <igor@zlatkovic.com> - */ - -#ifndef __XML_EXPORTS_H__ -#define __XML_EXPORTS_H__ - -/** - * XMLPUBFUN, XMLPUBVAR, XMLCALL - * - * Macros which declare an exportable function, an exportable variable and - * the calling convention used for functions. - * - * Please use an extra block for every platform/compiler combination when - * modifying this, rather than overlong #ifdef lines. This helps - * readability as well as the fact that different compilers on the same - * platform might need different definitions. - */ - -/** - * XMLPUBFUN: - * - * Macros which declare an exportable function - */ -#define XMLPUBFUN -/** - * XMLPUBVAR: - * - * Macros which declare an exportable variable - */ -#define XMLPUBVAR extern -/** - * XMLCALL: - * - * Macros which declare the called convention for exported functions - */ -#define XMLCALL -/** - * XMLCDECL: - * - * Macro which declares the calling convention for exported functions that - * use '...'. - */ -#define XMLCDECL - -/** DOC_DISABLE */ - -/* Windows platform with MS compiler */ -#if defined(_WIN32) && defined(_MSC_VER) - #undef XMLPUBFUN - #undef XMLPUBVAR - #undef XMLCALL - #undef XMLCDECL - #if defined(IN_LIBXML) && !defined(LIBXML_STATIC) - #define XMLPUBFUN __declspec(dllexport) - #define XMLPUBVAR __declspec(dllexport) - #else - #define XMLPUBFUN - #if !defined(LIBXML_STATIC) - #define XMLPUBVAR __declspec(dllimport) extern - #else - #define XMLPUBVAR extern - #endif - #endif - #if defined(LIBXML_FASTCALL) - #define XMLCALL __fastcall - #else - #define XMLCALL __cdecl - #endif - #define XMLCDECL __cdecl - #if !defined _REENTRANT - #define _REENTRANT - #endif -#endif - -/* Windows platform with Borland compiler */ -#if defined(_WIN32) && defined(__BORLANDC__) - #undef XMLPUBFUN - #undef XMLPUBVAR - #undef XMLCALL - #undef XMLCDECL - #if defined(IN_LIBXML) && !defined(LIBXML_STATIC) - #define XMLPUBFUN __declspec(dllexport) - #define XMLPUBVAR __declspec(dllexport) extern - #else - #define XMLPUBFUN - #if !defined(LIBXML_STATIC) - #define XMLPUBVAR __declspec(dllimport) extern - #else - #define XMLPUBVAR extern - #endif - #endif - #define XMLCALL __cdecl - #define XMLCDECL __cdecl - #if !defined _REENTRANT - #define _REENTRANT - #endif -#endif - -/* Windows platform with GNU compiler (Mingw) */ -#if defined(_WIN32) && defined(__MINGW32__) - #undef XMLPUBFUN - #undef XMLPUBVAR - #undef XMLCALL - #undef XMLCDECL - #if defined(IN_LIBXML) && !defined(LIBXML_STATIC) - #define XMLPUBFUN __declspec(dllexport) - #define XMLPUBVAR __declspec(dllexport) - #else - #define XMLPUBFUN - #if !defined(LIBXML_STATIC) - #define XMLPUBVAR __declspec(dllimport) extern - #else - #define XMLPUBVAR extern - #endif - #endif - #define XMLCALL __cdecl - #define XMLCDECL __cdecl - #if !defined _REENTRANT - #define _REENTRANT - #endif -#endif - -/* Cygwin platform, GNU compiler */ -#if defined(_WIN32) && defined(__CYGWIN__) - #undef XMLPUBFUN - #undef XMLPUBVAR - #undef XMLCALL - #undef XMLCDECL - #if defined(IN_LIBXML) && !defined(LIBXML_STATIC) - #define XMLPUBFUN __declspec(dllexport) - #define XMLPUBVAR __declspec(dllexport) - #else - #define XMLPUBFUN - #if !defined(LIBXML_STATIC) - #define XMLPUBVAR __declspec(dllimport) extern - #else - #define XMLPUBVAR - #endif - #endif - #define XMLCALL __cdecl - #define XMLCDECL __cdecl -#endif - -/* Compatibility */ -#if !defined(LIBXML_DLL_IMPORT) -#define LIBXML_DLL_IMPORT XMLPUBVAR -#endif - -#endif /* __XML_EXPORTS_H__ */ - - diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlmemory.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlmemory.h deleted file mode 100644 index 235721ce..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlmemory.h +++ /dev/null @@ -1,222 +0,0 @@ -/* - * Summary: interface for the memory allocator - * Description: provides interfaces for the memory allocator, - * including debugging capabilities. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - - -#ifndef __DEBUG_MEMORY_ALLOC__ -#define __DEBUG_MEMORY_ALLOC__ - -#include <stdio.h> -#include <libxml/xmlversion.h> - -/** - * DEBUG_MEMORY: - * - * DEBUG_MEMORY replaces the allocator with a collect and debug - * shell to the libc allocator. - * DEBUG_MEMORY should only be activated when debugging - * libxml i.e. if libxml has been configured with --with-debug-mem too. - */ -/* #define DEBUG_MEMORY_FREED */ -/* #define DEBUG_MEMORY_LOCATION */ - -#ifdef DEBUG -#ifndef DEBUG_MEMORY -#define DEBUG_MEMORY -#endif -#endif - -/** - * DEBUG_MEMORY_LOCATION: - * - * DEBUG_MEMORY_LOCATION should be activated only when debugging - * libxml i.e. if libxml has been configured with --with-debug-mem too. - */ -#ifdef DEBUG_MEMORY_LOCATION -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * The XML memory wrapper support 4 basic overloadable functions. - */ -/** - * xmlFreeFunc: - * @mem: an already allocated block of memory - * - * Signature for a free() implementation. - */ -typedef void (XMLCALL *xmlFreeFunc)(void *mem); -/** - * xmlMallocFunc: - * @size: the size requested in bytes - * - * Signature for a malloc() implementation. - * - * Returns a pointer to the newly allocated block or NULL in case of error. - */ -typedef void *(XMLCALL *xmlMallocFunc)(size_t size); - -/** - * xmlReallocFunc: - * @mem: an already allocated block of memory - * @size: the new size requested in bytes - * - * Signature for a realloc() implementation. - * - * Returns a pointer to the newly reallocated block or NULL in case of error. - */ -typedef void *(XMLCALL *xmlReallocFunc)(void *mem, size_t size); - -/** - * xmlStrdupFunc: - * @str: a zero terminated string - * - * Signature for an strdup() implementation. - * - * Returns the copy of the string or NULL in case of error. - */ -typedef char *(XMLCALL *xmlStrdupFunc)(const char *str); - -/* - * The 4 interfaces used for all memory handling within libxml. -LIBXML_DLL_IMPORT extern xmlFreeFunc xmlFree; -LIBXML_DLL_IMPORT extern xmlMallocFunc xmlMalloc; -LIBXML_DLL_IMPORT extern xmlMallocFunc xmlMallocAtomic; -LIBXML_DLL_IMPORT extern xmlReallocFunc xmlRealloc; -LIBXML_DLL_IMPORT extern xmlStrdupFunc xmlMemStrdup; - */ - -/* - * The way to overload the existing functions. - * The xmlGc function have an extra entry for atomic block - * allocations useful for garbage collected memory allocators - */ -XMLPUBFUN int XMLCALL - xmlMemSetup (xmlFreeFunc freeFunc, - xmlMallocFunc mallocFunc, - xmlReallocFunc reallocFunc, - xmlStrdupFunc strdupFunc); -XMLPUBFUN int XMLCALL - xmlMemGet (xmlFreeFunc *freeFunc, - xmlMallocFunc *mallocFunc, - xmlReallocFunc *reallocFunc, - xmlStrdupFunc *strdupFunc); -XMLPUBFUN int XMLCALL - xmlGcMemSetup (xmlFreeFunc freeFunc, - xmlMallocFunc mallocFunc, - xmlMallocFunc mallocAtomicFunc, - xmlReallocFunc reallocFunc, - xmlStrdupFunc strdupFunc); -XMLPUBFUN int XMLCALL - xmlGcMemGet (xmlFreeFunc *freeFunc, - xmlMallocFunc *mallocFunc, - xmlMallocFunc *mallocAtomicFunc, - xmlReallocFunc *reallocFunc, - xmlStrdupFunc *strdupFunc); - -/* - * Initialization of the memory layer. - */ -XMLPUBFUN int XMLCALL - xmlInitMemory (void); - -/* - * Cleanup of the memory layer. - */ -XMLPUBFUN void XMLCALL - xmlCleanupMemory (void); -/* - * These are specific to the XML debug memory wrapper. - */ -XMLPUBFUN int XMLCALL - xmlMemUsed (void); -XMLPUBFUN int XMLCALL - xmlMemBlocks (void); -XMLPUBFUN void XMLCALL - xmlMemDisplay (FILE *fp); -XMLPUBFUN void XMLCALL - xmlMemShow (FILE *fp, int nr); -XMLPUBFUN void XMLCALL - xmlMemoryDump (void); -XMLPUBFUN void * XMLCALL - xmlMemMalloc (size_t size); -XMLPUBFUN void * XMLCALL - xmlMemRealloc (void *ptr,size_t size); -XMLPUBFUN void XMLCALL - xmlMemFree (void *ptr); -XMLPUBFUN char * XMLCALL - xmlMemoryStrdup (const char *str); -XMLPUBFUN void * XMLCALL - xmlMallocLoc (size_t size, const char *file, int line); -XMLPUBFUN void * XMLCALL - xmlReallocLoc (void *ptr, size_t size, const char *file, int line); -XMLPUBFUN void * XMLCALL - xmlMallocAtomicLoc (size_t size, const char *file, int line); -XMLPUBFUN char * XMLCALL - xmlMemStrdupLoc (const char *str, const char *file, int line); - - -#ifdef DEBUG_MEMORY_LOCATION -/** - * xmlMalloc: - * @size: number of bytes to allocate - * - * Wrapper for the malloc() function used in the XML library. - * - * Returns the pointer to the allocated area or NULL in case of error. - */ -#define xmlMalloc(size) xmlMallocLoc((size), __FILE__, __LINE__) -/** - * xmlMallocAtomic: - * @size: number of bytes to allocate - * - * Wrapper for the malloc() function used in the XML library for allocation - * of block not containing pointers to other areas. - * - * Returns the pointer to the allocated area or NULL in case of error. - */ -#define xmlMallocAtomic(size) xmlMallocAtomicLoc((size), __FILE__, __LINE__) -/** - * xmlRealloc: - * @ptr: pointer to the existing allocated area - * @size: number of bytes to allocate - * - * Wrapper for the realloc() function used in the XML library. - * - * Returns the pointer to the allocated area or NULL in case of error. - */ -#define xmlRealloc(ptr, size) xmlReallocLoc((ptr), (size), __FILE__, __LINE__) -/** - * xmlMemStrdup: - * @str: pointer to the existing string - * - * Wrapper for the strdup() function, xmlStrdup() is usually preferred. - * - * Returns the pointer to the allocated area or NULL in case of error. - */ -#define xmlMemStrdup(str) xmlMemStrdupLoc((str), __FILE__, __LINE__) - -#endif /* DEBUG_MEMORY_LOCATION */ - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - -#ifndef __XML_GLOBALS_H -#ifndef __XML_THREADS_H__ -#include <libxml/threads.h> -#include <libxml/globals.h> -#endif -#endif - -#endif /* __DEBUG_MEMORY_ALLOC__ */ - diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlmodule.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlmodule.h deleted file mode 100644 index 8f4a5603..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlmodule.h +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Summary: dynamic module loading - * Description: basic API for dynamic module loading, used by - * libexslt added in 2.6.17 - * - * Copy: See Copyright for the status of this software. - * - * Author: Joel W. Reed - */ - -#ifndef __XML_MODULE_H__ -#define __XML_MODULE_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_MODULES_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * xmlModulePtr: - * - * A handle to a dynamically loaded module - */ -typedef struct _xmlModule xmlModule; -typedef xmlModule *xmlModulePtr; - -/** - * xmlModuleOption: - * - * enumeration of options that can be passed down to xmlModuleOpen() - */ -typedef enum { - XML_MODULE_LAZY = 1, /* lazy binding */ - XML_MODULE_LOCAL= 2 /* local binding */ -} xmlModuleOption; - -XMLPUBFUN xmlModulePtr XMLCALL xmlModuleOpen (const char *filename, - int options); - -XMLPUBFUN int XMLCALL xmlModuleSymbol (xmlModulePtr module, - const char* name, - void **result); - -XMLPUBFUN int XMLCALL xmlModuleClose (xmlModulePtr module); - -XMLPUBFUN int XMLCALL xmlModuleFree (xmlModulePtr module); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_MODULES_ENABLED */ - -#endif /*__XML_MODULE_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlreader.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlreader.h deleted file mode 100644 index dfe51a3b..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlreader.h +++ /dev/null @@ -1,414 +0,0 @@ -/* - * Summary: the XMLReader implementation - * Description: API of the XML streaming API based on C# interfaces. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_XMLREADER_H__ -#define __XML_XMLREADER_H__ - -#include <libxml/xmlversion.h> -#include <libxml/tree.h> -#include <libxml/xmlIO.h> -#ifdef LIBXML_SCHEMAS_ENABLED -#include <libxml/relaxng.h> -#include <libxml/xmlschemas.h> -#endif - -#ifdef LIBXML_READER_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * xmlTextReaderMode: - * - * Internal state values for the reader. - */ -typedef enum { - XML_TEXTREADER_MODE_INITIAL = 0, - XML_TEXTREADER_MODE_INTERACTIVE = 1, - XML_TEXTREADER_MODE_ERROR = 2, - XML_TEXTREADER_MODE_EOF =3, - XML_TEXTREADER_MODE_CLOSED = 4, - XML_TEXTREADER_MODE_READING = 5 -} xmlTextReaderMode; - -/** - * xmlParserProperties: - * - * Some common options to use with xmlTextReaderSetParserProp, but it - * is better to use xmlParserOption and the xmlReaderNewxxx and - * xmlReaderForxxx APIs now. - */ -typedef enum { - XML_PARSER_LOADDTD = 1, - XML_PARSER_DEFAULTATTRS = 2, - XML_PARSER_VALIDATE = 3, - XML_PARSER_SUBST_ENTITIES = 4 -} xmlParserProperties; - -/** - * xmlParserSeverities: - * - * How severe an error callback is when the per-reader error callback API - * is used. - */ -typedef enum { - XML_PARSER_SEVERITY_VALIDITY_WARNING = 1, - XML_PARSER_SEVERITY_VALIDITY_ERROR = 2, - XML_PARSER_SEVERITY_WARNING = 3, - XML_PARSER_SEVERITY_ERROR = 4 -} xmlParserSeverities; - -/** - * xmlReaderTypes: - * - * Predefined constants for the different types of nodes. - */ -typedef enum { - XML_READER_TYPE_NONE = 0, - XML_READER_TYPE_ELEMENT = 1, - XML_READER_TYPE_ATTRIBUTE = 2, - XML_READER_TYPE_TEXT = 3, - XML_READER_TYPE_CDATA = 4, - XML_READER_TYPE_ENTITY_REFERENCE = 5, - XML_READER_TYPE_ENTITY = 6, - XML_READER_TYPE_PROCESSING_INSTRUCTION = 7, - XML_READER_TYPE_COMMENT = 8, - XML_READER_TYPE_DOCUMENT = 9, - XML_READER_TYPE_DOCUMENT_TYPE = 10, - XML_READER_TYPE_DOCUMENT_FRAGMENT = 11, - XML_READER_TYPE_NOTATION = 12, - XML_READER_TYPE_WHITESPACE = 13, - XML_READER_TYPE_SIGNIFICANT_WHITESPACE = 14, - XML_READER_TYPE_END_ELEMENT = 15, - XML_READER_TYPE_END_ENTITY = 16, - XML_READER_TYPE_XML_DECLARATION = 17 -} xmlReaderTypes; - -/** - * xmlTextReader: - * - * Structure for an xmlReader context. - */ -typedef struct _xmlTextReader xmlTextReader; - -/** - * xmlTextReaderPtr: - * - * Pointer to an xmlReader context. - */ -typedef xmlTextReader *xmlTextReaderPtr; - -/* - * Constructors & Destructor - */ -XMLPUBFUN xmlTextReaderPtr XMLCALL - xmlNewTextReader (xmlParserInputBufferPtr input, - const char *URI); -XMLPUBFUN xmlTextReaderPtr XMLCALL - xmlNewTextReaderFilename(const char *URI); - -XMLPUBFUN void XMLCALL - xmlFreeTextReader (xmlTextReaderPtr reader); - -XMLPUBFUN int XMLCALL - xmlTextReaderSetup(xmlTextReaderPtr reader, - xmlParserInputBufferPtr input, const char *URL, - const char *encoding, int options); - -/* - * Iterators - */ -XMLPUBFUN int XMLCALL - xmlTextReaderRead (xmlTextReaderPtr reader); - -#ifdef LIBXML_WRITER_ENABLED -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderReadInnerXml (xmlTextReaderPtr reader); - -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderReadOuterXml (xmlTextReaderPtr reader); -#endif - -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderReadString (xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderReadAttributeValue (xmlTextReaderPtr reader); - -/* - * Attributes of the node - */ -XMLPUBFUN int XMLCALL - xmlTextReaderAttributeCount(xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderDepth (xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderHasAttributes(xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderHasValue(xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderIsDefault (xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderIsEmptyElement(xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderNodeType (xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderQuoteChar (xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderReadState (xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderIsNamespaceDecl(xmlTextReaderPtr reader); - -XMLPUBFUN const xmlChar * XMLCALL - xmlTextReaderConstBaseUri (xmlTextReaderPtr reader); -XMLPUBFUN const xmlChar * XMLCALL - xmlTextReaderConstLocalName (xmlTextReaderPtr reader); -XMLPUBFUN const xmlChar * XMLCALL - xmlTextReaderConstName (xmlTextReaderPtr reader); -XMLPUBFUN const xmlChar * XMLCALL - xmlTextReaderConstNamespaceUri(xmlTextReaderPtr reader); -XMLPUBFUN const xmlChar * XMLCALL - xmlTextReaderConstPrefix (xmlTextReaderPtr reader); -XMLPUBFUN const xmlChar * XMLCALL - xmlTextReaderConstXmlLang (xmlTextReaderPtr reader); -XMLPUBFUN const xmlChar * XMLCALL - xmlTextReaderConstString (xmlTextReaderPtr reader, - const xmlChar *str); -XMLPUBFUN const xmlChar * XMLCALL - xmlTextReaderConstValue (xmlTextReaderPtr reader); - -/* - * use the Const version of the routine for - * better performance and simpler code - */ -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderBaseUri (xmlTextReaderPtr reader); -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderLocalName (xmlTextReaderPtr reader); -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderName (xmlTextReaderPtr reader); -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderNamespaceUri(xmlTextReaderPtr reader); -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderPrefix (xmlTextReaderPtr reader); -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderXmlLang (xmlTextReaderPtr reader); -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderValue (xmlTextReaderPtr reader); - -/* - * Methods of the XmlTextReader - */ -XMLPUBFUN int XMLCALL - xmlTextReaderClose (xmlTextReaderPtr reader); -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderGetAttributeNo (xmlTextReaderPtr reader, - int no); -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderGetAttribute (xmlTextReaderPtr reader, - const xmlChar *name); -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderGetAttributeNs (xmlTextReaderPtr reader, - const xmlChar *localName, - const xmlChar *namespaceURI); -XMLPUBFUN xmlParserInputBufferPtr XMLCALL - xmlTextReaderGetRemainder (xmlTextReaderPtr reader); -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderLookupNamespace(xmlTextReaderPtr reader, - const xmlChar *prefix); -XMLPUBFUN int XMLCALL - xmlTextReaderMoveToAttributeNo(xmlTextReaderPtr reader, - int no); -XMLPUBFUN int XMLCALL - xmlTextReaderMoveToAttribute(xmlTextReaderPtr reader, - const xmlChar *name); -XMLPUBFUN int XMLCALL - xmlTextReaderMoveToAttributeNs(xmlTextReaderPtr reader, - const xmlChar *localName, - const xmlChar *namespaceURI); -XMLPUBFUN int XMLCALL - xmlTextReaderMoveToFirstAttribute(xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderMoveToNextAttribute(xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderMoveToElement (xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderNormalization (xmlTextReaderPtr reader); -XMLPUBFUN const xmlChar * XMLCALL - xmlTextReaderConstEncoding (xmlTextReaderPtr reader); - -/* - * Extensions - */ -XMLPUBFUN int XMLCALL - xmlTextReaderSetParserProp (xmlTextReaderPtr reader, - int prop, - int value); -XMLPUBFUN int XMLCALL - xmlTextReaderGetParserProp (xmlTextReaderPtr reader, - int prop); -XMLPUBFUN xmlNodePtr XMLCALL - xmlTextReaderCurrentNode (xmlTextReaderPtr reader); - -XMLPUBFUN int XMLCALL - xmlTextReaderGetParserLineNumber(xmlTextReaderPtr reader); - -XMLPUBFUN int XMLCALL - xmlTextReaderGetParserColumnNumber(xmlTextReaderPtr reader); - -XMLPUBFUN xmlNodePtr XMLCALL - xmlTextReaderPreserve (xmlTextReaderPtr reader); -#ifdef LIBXML_PATTERN_ENABLED -XMLPUBFUN int XMLCALL - xmlTextReaderPreservePattern(xmlTextReaderPtr reader, - const xmlChar *pattern, - const xmlChar **namespaces); -#endif /* LIBXML_PATTERN_ENABLED */ -XMLPUBFUN xmlDocPtr XMLCALL - xmlTextReaderCurrentDoc (xmlTextReaderPtr reader); -XMLPUBFUN xmlNodePtr XMLCALL - xmlTextReaderExpand (xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderNext (xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderNextSibling (xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderIsValid (xmlTextReaderPtr reader); -#ifdef LIBXML_SCHEMAS_ENABLED -XMLPUBFUN int XMLCALL - xmlTextReaderRelaxNGValidate(xmlTextReaderPtr reader, - const char *rng); -XMLPUBFUN int XMLCALL - xmlTextReaderRelaxNGSetSchema(xmlTextReaderPtr reader, - xmlRelaxNGPtr schema); -XMLPUBFUN int XMLCALL - xmlTextReaderSchemaValidate (xmlTextReaderPtr reader, - const char *xsd); -XMLPUBFUN int XMLCALL - xmlTextReaderSchemaValidateCtxt(xmlTextReaderPtr reader, - xmlSchemaValidCtxtPtr ctxt, - int options); -XMLPUBFUN int XMLCALL - xmlTextReaderSetSchema (xmlTextReaderPtr reader, - xmlSchemaPtr schema); -#endif -XMLPUBFUN const xmlChar * XMLCALL - xmlTextReaderConstXmlVersion(xmlTextReaderPtr reader); -XMLPUBFUN int XMLCALL - xmlTextReaderStandalone (xmlTextReaderPtr reader); - - -/* - * Index lookup - */ -XMLPUBFUN long XMLCALL - xmlTextReaderByteConsumed (xmlTextReaderPtr reader); - -/* - * New more complete APIs for simpler creation and reuse of readers - */ -XMLPUBFUN xmlTextReaderPtr XMLCALL - xmlReaderWalker (xmlDocPtr doc); -XMLPUBFUN xmlTextReaderPtr XMLCALL - xmlReaderForDoc (const xmlChar * cur, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN xmlTextReaderPtr XMLCALL - xmlReaderForFile (const char *filename, - const char *encoding, - int options); -XMLPUBFUN xmlTextReaderPtr XMLCALL - xmlReaderForMemory (const char *buffer, - int size, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN xmlTextReaderPtr XMLCALL - xmlReaderForFd (int fd, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN xmlTextReaderPtr XMLCALL - xmlReaderForIO (xmlInputReadCallback ioread, - xmlInputCloseCallback ioclose, - void *ioctx, - const char *URL, - const char *encoding, - int options); - -XMLPUBFUN int XMLCALL - xmlReaderNewWalker (xmlTextReaderPtr reader, - xmlDocPtr doc); -XMLPUBFUN int XMLCALL - xmlReaderNewDoc (xmlTextReaderPtr reader, - const xmlChar * cur, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN int XMLCALL - xmlReaderNewFile (xmlTextReaderPtr reader, - const char *filename, - const char *encoding, - int options); -XMLPUBFUN int XMLCALL - xmlReaderNewMemory (xmlTextReaderPtr reader, - const char *buffer, - int size, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN int XMLCALL - xmlReaderNewFd (xmlTextReaderPtr reader, - int fd, - const char *URL, - const char *encoding, - int options); -XMLPUBFUN int XMLCALL - xmlReaderNewIO (xmlTextReaderPtr reader, - xmlInputReadCallback ioread, - xmlInputCloseCallback ioclose, - void *ioctx, - const char *URL, - const char *encoding, - int options); -/* - * Error handling extensions - */ -typedef void * xmlTextReaderLocatorPtr; -typedef void (XMLCALL *xmlTextReaderErrorFunc) (void *arg, - const char *msg, - xmlParserSeverities severity, - xmlTextReaderLocatorPtr locator); -XMLPUBFUN int XMLCALL - xmlTextReaderLocatorLineNumber(xmlTextReaderLocatorPtr locator); -/*int xmlTextReaderLocatorLinePosition(xmlTextReaderLocatorPtr locator);*/ -XMLPUBFUN xmlChar * XMLCALL - xmlTextReaderLocatorBaseURI (xmlTextReaderLocatorPtr locator); -XMLPUBFUN void XMLCALL - xmlTextReaderSetErrorHandler(xmlTextReaderPtr reader, - xmlTextReaderErrorFunc f, - void *arg); -XMLPUBFUN void XMLCALL - xmlTextReaderSetStructuredErrorHandler(xmlTextReaderPtr reader, - xmlStructuredErrorFunc f, - void *arg); -XMLPUBFUN void XMLCALL - xmlTextReaderGetErrorHandler(xmlTextReaderPtr reader, - xmlTextReaderErrorFunc *f, - void **arg); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_READER_ENABLED */ - -#endif /* __XML_XMLREADER_H__ */ - diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlregexp.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlregexp.h deleted file mode 100644 index 022cd6a9..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlregexp.h +++ /dev/null @@ -1,216 +0,0 @@ -/* - * Summary: regular expressions handling - * Description: basic API for libxml regular expressions handling used - * for XML Schemas and validation. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_REGEXP_H__ -#define __XML_REGEXP_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_REGEXP_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * xmlRegexpPtr: - * - * A libxml regular expression, they can actually be far more complex - * thank the POSIX regex expressions. - */ -typedef struct _xmlRegexp xmlRegexp; -typedef xmlRegexp *xmlRegexpPtr; - -/** - * xmlRegExecCtxtPtr: - * - * A libxml progressive regular expression evaluation context - */ -typedef struct _xmlRegExecCtxt xmlRegExecCtxt; -typedef xmlRegExecCtxt *xmlRegExecCtxtPtr; - -#ifdef __cplusplus -} -#endif -#include <libxml/tree.h> -#include <libxml/dict.h> -#ifdef __cplusplus -extern "C" { -#endif - -/* - * The POSIX like API - */ -XMLPUBFUN xmlRegexpPtr XMLCALL - xmlRegexpCompile (const xmlChar *regexp); -XMLPUBFUN void XMLCALL xmlRegFreeRegexp(xmlRegexpPtr regexp); -XMLPUBFUN int XMLCALL - xmlRegexpExec (xmlRegexpPtr comp, - const xmlChar *value); -XMLPUBFUN void XMLCALL - xmlRegexpPrint (FILE *output, - xmlRegexpPtr regexp); -XMLPUBFUN int XMLCALL - xmlRegexpIsDeterminist(xmlRegexpPtr comp); - -/* - * Callback function when doing a transition in the automata - */ -typedef void (*xmlRegExecCallbacks) (xmlRegExecCtxtPtr exec, - const xmlChar *token, - void *transdata, - void *inputdata); - -/* - * The progressive API - */ -XMLPUBFUN xmlRegExecCtxtPtr XMLCALL - xmlRegNewExecCtxt (xmlRegexpPtr comp, - xmlRegExecCallbacks callback, - void *data); -XMLPUBFUN void XMLCALL - xmlRegFreeExecCtxt (xmlRegExecCtxtPtr exec); -XMLPUBFUN int XMLCALL - xmlRegExecPushString(xmlRegExecCtxtPtr exec, - const xmlChar *value, - void *data); -XMLPUBFUN int XMLCALL - xmlRegExecPushString2(xmlRegExecCtxtPtr exec, - const xmlChar *value, - const xmlChar *value2, - void *data); - -XMLPUBFUN int XMLCALL - xmlRegExecNextValues(xmlRegExecCtxtPtr exec, - int *nbval, - int *nbneg, - xmlChar **values, - int *terminal); -XMLPUBFUN int XMLCALL - xmlRegExecErrInfo (xmlRegExecCtxtPtr exec, - const xmlChar **string, - int *nbval, - int *nbneg, - xmlChar **values, - int *terminal); -#ifdef LIBXML_EXPR_ENABLED -/* - * Formal regular expression handling - * Its goal is to do some formal work on content models - */ - -/* expressions are used within a context */ -typedef struct _xmlExpCtxt xmlExpCtxt; -typedef xmlExpCtxt *xmlExpCtxtPtr; - -XMLPUBFUN void XMLCALL - xmlExpFreeCtxt (xmlExpCtxtPtr ctxt); -XMLPUBFUN xmlExpCtxtPtr XMLCALL - xmlExpNewCtxt (int maxNodes, - xmlDictPtr dict); - -XMLPUBFUN int XMLCALL - xmlExpCtxtNbNodes(xmlExpCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlExpCtxtNbCons(xmlExpCtxtPtr ctxt); - -/* Expressions are trees but the tree is opaque */ -typedef struct _xmlExpNode xmlExpNode; -typedef xmlExpNode *xmlExpNodePtr; - -typedef enum { - XML_EXP_EMPTY = 0, - XML_EXP_FORBID = 1, - XML_EXP_ATOM = 2, - XML_EXP_SEQ = 3, - XML_EXP_OR = 4, - XML_EXP_COUNT = 5 -} xmlExpNodeType; - -/* - * 2 core expressions shared by all for the empty language set - * and for the set with just the empty token - */ -XMLPUBVAR xmlExpNodePtr forbiddenExp; -XMLPUBVAR xmlExpNodePtr emptyExp; - -/* - * Expressions are reference counted internally - */ -XMLPUBFUN void XMLCALL - xmlExpFree (xmlExpCtxtPtr ctxt, - xmlExpNodePtr expr); -XMLPUBFUN void XMLCALL - xmlExpRef (xmlExpNodePtr expr); - -/* - * constructors can be either manual or from a string - */ -XMLPUBFUN xmlExpNodePtr XMLCALL - xmlExpParse (xmlExpCtxtPtr ctxt, - const char *expr); -XMLPUBFUN xmlExpNodePtr XMLCALL - xmlExpNewAtom (xmlExpCtxtPtr ctxt, - const xmlChar *name, - int len); -XMLPUBFUN xmlExpNodePtr XMLCALL - xmlExpNewOr (xmlExpCtxtPtr ctxt, - xmlExpNodePtr left, - xmlExpNodePtr right); -XMLPUBFUN xmlExpNodePtr XMLCALL - xmlExpNewSeq (xmlExpCtxtPtr ctxt, - xmlExpNodePtr left, - xmlExpNodePtr right); -XMLPUBFUN xmlExpNodePtr XMLCALL - xmlExpNewRange (xmlExpCtxtPtr ctxt, - xmlExpNodePtr subset, - int min, - int max); -/* - * The really interesting APIs - */ -XMLPUBFUN int XMLCALL - xmlExpIsNillable(xmlExpNodePtr expr); -XMLPUBFUN int XMLCALL - xmlExpMaxToken (xmlExpNodePtr expr); -XMLPUBFUN int XMLCALL - xmlExpGetLanguage(xmlExpCtxtPtr ctxt, - xmlExpNodePtr expr, - const xmlChar**langList, - int len); -XMLPUBFUN int XMLCALL - xmlExpGetStart (xmlExpCtxtPtr ctxt, - xmlExpNodePtr expr, - const xmlChar**tokList, - int len); -XMLPUBFUN xmlExpNodePtr XMLCALL - xmlExpStringDerive(xmlExpCtxtPtr ctxt, - xmlExpNodePtr expr, - const xmlChar *str, - int len); -XMLPUBFUN xmlExpNodePtr XMLCALL - xmlExpExpDerive (xmlExpCtxtPtr ctxt, - xmlExpNodePtr expr, - xmlExpNodePtr sub); -XMLPUBFUN int XMLCALL - xmlExpSubsume (xmlExpCtxtPtr ctxt, - xmlExpNodePtr expr, - xmlExpNodePtr sub); -XMLPUBFUN void XMLCALL - xmlExpDump (xmlBufferPtr buf, - xmlExpNodePtr expr); -#endif /* LIBXML_EXPR_ENABLED */ -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_REGEXP_ENABLED */ - -#endif /*__XML_REGEXP_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlsave.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlsave.h deleted file mode 100644 index c71c71a0..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlsave.h +++ /dev/null @@ -1,84 +0,0 @@ -/* - * Summary: the XML document serializer - * Description: API to save document or subtree of document - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_XMLSAVE_H__ -#define __XML_XMLSAVE_H__ - -#include <libxml/xmlversion.h> -#include <libxml/tree.h> -#include <libxml/encoding.h> -#include <libxml/xmlIO.h> - -#ifdef LIBXML_OUTPUT_ENABLED -#ifdef __cplusplus -extern "C" { -#endif - -/** - * xmlSaveOption: - * - * This is the set of XML save options that can be passed down - * to the xmlSaveToFd() and similar calls. - */ -typedef enum { - XML_SAVE_FORMAT = 1<<0, /* format save output */ - XML_SAVE_NO_DECL = 1<<1, /* drop the xml declaration */ - XML_SAVE_NO_EMPTY = 1<<2, /* no empty tags */ - XML_SAVE_NO_XHTML = 1<<3 /* disable XHTML1 specific rules */ -} xmlSaveOption; - - -typedef struct _xmlSaveCtxt xmlSaveCtxt; -typedef xmlSaveCtxt *xmlSaveCtxtPtr; - -XMLPUBFUN xmlSaveCtxtPtr XMLCALL - xmlSaveToFd (int fd, - const char *encoding, - int options); -XMLPUBFUN xmlSaveCtxtPtr XMLCALL - xmlSaveToFilename (const char *filename, - const char *encoding, - int options); - -XMLPUBFUN xmlSaveCtxtPtr XMLCALL - xmlSaveToBuffer (xmlBufferPtr buffer, - const char *encoding, - int options); - -XMLPUBFUN xmlSaveCtxtPtr XMLCALL - xmlSaveToIO (xmlOutputWriteCallback iowrite, - xmlOutputCloseCallback ioclose, - void *ioctx, - const char *encoding, - int options); - -XMLPUBFUN long XMLCALL - xmlSaveDoc (xmlSaveCtxtPtr ctxt, - xmlDocPtr doc); -XMLPUBFUN long XMLCALL - xmlSaveTree (xmlSaveCtxtPtr ctxt, - xmlNodePtr node); - -XMLPUBFUN int XMLCALL - xmlSaveFlush (xmlSaveCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlSaveClose (xmlSaveCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlSaveSetEscape (xmlSaveCtxtPtr ctxt, - xmlCharEncodingOutputFunc escape); -XMLPUBFUN int XMLCALL - xmlSaveSetAttrEscape (xmlSaveCtxtPtr ctxt, - xmlCharEncodingOutputFunc escape); -#ifdef __cplusplus -} -#endif -#endif /* LIBXML_OUTPUT_ENABLED */ -#endif /* __XML_XMLSAVE_H__ */ - - diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlschemas.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlschemas.h deleted file mode 100644 index 15faef58..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlschemas.h +++ /dev/null @@ -1,198 +0,0 @@ -/* - * Summary: incomplete XML Schemas structure implementation - * Description: interface to the XML Schemas handling and schema validity - * checking, it is incomplete right now. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - - -#ifndef __XML_SCHEMA_H__ -#define __XML_SCHEMA_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_SCHEMAS_ENABLED - -#include <libxml/tree.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * This error codes are obsolete; not used any more. - */ -typedef enum { - XML_SCHEMAS_ERR_OK = 0, - XML_SCHEMAS_ERR_NOROOT = 1, - XML_SCHEMAS_ERR_UNDECLAREDELEM, - XML_SCHEMAS_ERR_NOTTOPLEVEL, - XML_SCHEMAS_ERR_MISSING, - XML_SCHEMAS_ERR_WRONGELEM, - XML_SCHEMAS_ERR_NOTYPE, - XML_SCHEMAS_ERR_NOROLLBACK, - XML_SCHEMAS_ERR_ISABSTRACT, - XML_SCHEMAS_ERR_NOTEMPTY, - XML_SCHEMAS_ERR_ELEMCONT, - XML_SCHEMAS_ERR_HAVEDEFAULT, - XML_SCHEMAS_ERR_NOTNILLABLE, - XML_SCHEMAS_ERR_EXTRACONTENT, - XML_SCHEMAS_ERR_INVALIDATTR, - XML_SCHEMAS_ERR_INVALIDELEM, - XML_SCHEMAS_ERR_NOTDETERMINIST, - XML_SCHEMAS_ERR_CONSTRUCT, - XML_SCHEMAS_ERR_INTERNAL, - XML_SCHEMAS_ERR_NOTSIMPLE, - XML_SCHEMAS_ERR_ATTRUNKNOWN, - XML_SCHEMAS_ERR_ATTRINVALID, - XML_SCHEMAS_ERR_VALUE, - XML_SCHEMAS_ERR_FACET, - XML_SCHEMAS_ERR_, - XML_SCHEMAS_ERR_XXX -} xmlSchemaValidError; - -/* -* ATTENTION: Change xmlSchemaSetValidOptions's check -* for invalid values, if adding to the validation -* options below. -*/ -/** - * xmlSchemaValidOption: - * - * This is the set of XML Schema validation options. - */ -typedef enum { - XML_SCHEMA_VAL_VC_I_CREATE = 1<<0 - /* Default/fixed: create an attribute node - * or an element's text node on the instance. - */ -} xmlSchemaValidOption; - -/* - XML_SCHEMA_VAL_XSI_ASSEMBLE = 1<<1, - * assemble schemata using - * xsi:schemaLocation and - * xsi:noNamespaceSchemaLocation -*/ - -/** - * The schemas related types are kept internal - */ -typedef struct _xmlSchema xmlSchema; -typedef xmlSchema *xmlSchemaPtr; - -/** - * A schemas validation context - */ -typedef void (XMLCDECL *xmlSchemaValidityErrorFunc) (void *ctx, const char *msg, ...); -typedef void (XMLCDECL *xmlSchemaValidityWarningFunc) (void *ctx, const char *msg, ...); - -typedef struct _xmlSchemaParserCtxt xmlSchemaParserCtxt; -typedef xmlSchemaParserCtxt *xmlSchemaParserCtxtPtr; - -typedef struct _xmlSchemaValidCtxt xmlSchemaValidCtxt; -typedef xmlSchemaValidCtxt *xmlSchemaValidCtxtPtr; - -/* - * Interfaces for parsing. - */ -XMLPUBFUN xmlSchemaParserCtxtPtr XMLCALL - xmlSchemaNewParserCtxt (const char *URL); -XMLPUBFUN xmlSchemaParserCtxtPtr XMLCALL - xmlSchemaNewMemParserCtxt (const char *buffer, - int size); -XMLPUBFUN xmlSchemaParserCtxtPtr XMLCALL - xmlSchemaNewDocParserCtxt (xmlDocPtr doc); -XMLPUBFUN void XMLCALL - xmlSchemaFreeParserCtxt (xmlSchemaParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlSchemaSetParserErrors (xmlSchemaParserCtxtPtr ctxt, - xmlSchemaValidityErrorFunc err, - xmlSchemaValidityWarningFunc warn, - void *ctx); -XMLPUBFUN void XMLCALL - xmlSchemaSetParserStructuredErrors(xmlSchemaParserCtxtPtr ctxt, - xmlStructuredErrorFunc serror, - void *ctx); -XMLPUBFUN int XMLCALL - xmlSchemaGetParserErrors(xmlSchemaParserCtxtPtr ctxt, - xmlSchemaValidityErrorFunc * err, - xmlSchemaValidityWarningFunc * warn, - void **ctx); -XMLPUBFUN int XMLCALL - xmlSchemaIsValid (xmlSchemaValidCtxtPtr ctxt); - -XMLPUBFUN xmlSchemaPtr XMLCALL - xmlSchemaParse (xmlSchemaParserCtxtPtr ctxt); -XMLPUBFUN void XMLCALL - xmlSchemaFree (xmlSchemaPtr schema); -#ifdef LIBXML_OUTPUT_ENABLED -XMLPUBFUN void XMLCALL - xmlSchemaDump (FILE *output, - xmlSchemaPtr schema); -#endif /* LIBXML_OUTPUT_ENABLED */ -/* - * Interfaces for validating - */ -XMLPUBFUN void XMLCALL - xmlSchemaSetValidErrors (xmlSchemaValidCtxtPtr ctxt, - xmlSchemaValidityErrorFunc err, - xmlSchemaValidityWarningFunc warn, - void *ctx); -XMLPUBFUN void XMLCALL - xmlSchemaSetValidStructuredErrors(xmlSchemaValidCtxtPtr ctxt, - xmlStructuredErrorFunc serror, - void *ctx); -XMLPUBFUN int XMLCALL - xmlSchemaGetValidErrors (xmlSchemaValidCtxtPtr ctxt, - xmlSchemaValidityErrorFunc *err, - xmlSchemaValidityWarningFunc *warn, - void **ctx); -XMLPUBFUN int XMLCALL - xmlSchemaSetValidOptions (xmlSchemaValidCtxtPtr ctxt, - int options); -XMLPUBFUN int XMLCALL - xmlSchemaValidCtxtGetOptions(xmlSchemaValidCtxtPtr ctxt); - -XMLPUBFUN xmlSchemaValidCtxtPtr XMLCALL - xmlSchemaNewValidCtxt (xmlSchemaPtr schema); -XMLPUBFUN void XMLCALL - xmlSchemaFreeValidCtxt (xmlSchemaValidCtxtPtr ctxt); -XMLPUBFUN int XMLCALL - xmlSchemaValidateDoc (xmlSchemaValidCtxtPtr ctxt, - xmlDocPtr instance); -XMLPUBFUN int XMLCALL - xmlSchemaValidateOneElement (xmlSchemaValidCtxtPtr ctxt, - xmlNodePtr elem); -XMLPUBFUN int XMLCALL - xmlSchemaValidateStream (xmlSchemaValidCtxtPtr ctxt, - xmlParserInputBufferPtr input, - xmlCharEncoding enc, - xmlSAXHandlerPtr sax, - void *user_data); -XMLPUBFUN int XMLCALL - xmlSchemaValidateFile (xmlSchemaValidCtxtPtr ctxt, - const char * filename, - int options); - -/* - * Interface to insert Schemas SAX velidation in a SAX stream - */ -typedef struct _xmlSchemaSAXPlug xmlSchemaSAXPlugStruct; -typedef xmlSchemaSAXPlugStruct *xmlSchemaSAXPlugPtr; - -XMLPUBFUN xmlSchemaSAXPlugPtr XMLCALL - xmlSchemaSAXPlug (xmlSchemaValidCtxtPtr ctxt, - xmlSAXHandlerPtr *sax, - void **user_data); -XMLPUBFUN int XMLCALL - xmlSchemaSAXUnplug (xmlSchemaSAXPlugPtr plug); -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_SCHEMAS_ENABLED */ -#endif /* __XML_SCHEMA_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlschemastypes.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlschemastypes.h deleted file mode 100644 index 9a3a7a17..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlschemastypes.h +++ /dev/null @@ -1,151 +0,0 @@ -/* - * Summary: implementation of XML Schema Datatypes - * Description: module providing the XML Schema Datatypes implementation - * both definition and validity checking - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - - -#ifndef __XML_SCHEMA_TYPES_H__ -#define __XML_SCHEMA_TYPES_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_SCHEMAS_ENABLED - -#include <libxml/schemasInternals.h> -#include <libxml/xmlschemas.h> - -#ifdef __cplusplus -extern "C" { -#endif - -typedef enum { - XML_SCHEMA_WHITESPACE_UNKNOWN = 0, - XML_SCHEMA_WHITESPACE_PRESERVE = 1, - XML_SCHEMA_WHITESPACE_REPLACE = 2, - XML_SCHEMA_WHITESPACE_COLLAPSE = 3 -} xmlSchemaWhitespaceValueType; - -XMLPUBFUN void XMLCALL - xmlSchemaInitTypes (void); -XMLPUBFUN void XMLCALL - xmlSchemaCleanupTypes (void); -XMLPUBFUN xmlSchemaTypePtr XMLCALL - xmlSchemaGetPredefinedType (const xmlChar *name, - const xmlChar *ns); -XMLPUBFUN int XMLCALL - xmlSchemaValidatePredefinedType (xmlSchemaTypePtr type, - const xmlChar *value, - xmlSchemaValPtr *val); -XMLPUBFUN int XMLCALL - xmlSchemaValPredefTypeNode (xmlSchemaTypePtr type, - const xmlChar *value, - xmlSchemaValPtr *val, - xmlNodePtr node); -XMLPUBFUN int XMLCALL - xmlSchemaValidateFacet (xmlSchemaTypePtr base, - xmlSchemaFacetPtr facet, - const xmlChar *value, - xmlSchemaValPtr val); -XMLPUBFUN int XMLCALL - xmlSchemaValidateFacetWhtsp (xmlSchemaFacetPtr facet, - xmlSchemaWhitespaceValueType fws, - xmlSchemaValType valType, - const xmlChar *value, - xmlSchemaValPtr val, - xmlSchemaWhitespaceValueType ws); -XMLPUBFUN void XMLCALL - xmlSchemaFreeValue (xmlSchemaValPtr val); -XMLPUBFUN xmlSchemaFacetPtr XMLCALL - xmlSchemaNewFacet (void); -XMLPUBFUN int XMLCALL - xmlSchemaCheckFacet (xmlSchemaFacetPtr facet, - xmlSchemaTypePtr typeDecl, - xmlSchemaParserCtxtPtr ctxt, - const xmlChar *name); -XMLPUBFUN void XMLCALL - xmlSchemaFreeFacet (xmlSchemaFacetPtr facet); -XMLPUBFUN int XMLCALL - xmlSchemaCompareValues (xmlSchemaValPtr x, - xmlSchemaValPtr y); -XMLPUBFUN xmlSchemaTypePtr XMLCALL - xmlSchemaGetBuiltInListSimpleTypeItemType (xmlSchemaTypePtr type); -XMLPUBFUN int XMLCALL - xmlSchemaValidateListSimpleTypeFacet (xmlSchemaFacetPtr facet, - const xmlChar *value, - unsigned long actualLen, - unsigned long *expectedLen); -XMLPUBFUN xmlSchemaTypePtr XMLCALL - xmlSchemaGetBuiltInType (xmlSchemaValType type); -XMLPUBFUN int XMLCALL - xmlSchemaIsBuiltInTypeFacet (xmlSchemaTypePtr type, - int facetType); -XMLPUBFUN xmlChar * XMLCALL - xmlSchemaCollapseString (const xmlChar *value); -XMLPUBFUN xmlChar * XMLCALL - xmlSchemaWhiteSpaceReplace (const xmlChar *value); -XMLPUBFUN unsigned long XMLCALL - xmlSchemaGetFacetValueAsULong (xmlSchemaFacetPtr facet); -XMLPUBFUN int XMLCALL - xmlSchemaValidateLengthFacet (xmlSchemaTypePtr type, - xmlSchemaFacetPtr facet, - const xmlChar *value, - xmlSchemaValPtr val, - unsigned long *length); -XMLPUBFUN int XMLCALL - xmlSchemaValidateLengthFacetWhtsp(xmlSchemaFacetPtr facet, - xmlSchemaValType valType, - const xmlChar *value, - xmlSchemaValPtr val, - unsigned long *length, - xmlSchemaWhitespaceValueType ws); -XMLPUBFUN int XMLCALL - xmlSchemaValPredefTypeNodeNoNorm(xmlSchemaTypePtr type, - const xmlChar *value, - xmlSchemaValPtr *val, - xmlNodePtr node); -XMLPUBFUN int XMLCALL - xmlSchemaGetCanonValue (xmlSchemaValPtr val, - const xmlChar **retValue); -XMLPUBFUN int XMLCALL - xmlSchemaGetCanonValueWhtsp (xmlSchemaValPtr val, - const xmlChar **retValue, - xmlSchemaWhitespaceValueType ws); -XMLPUBFUN int XMLCALL - xmlSchemaValueAppend (xmlSchemaValPtr prev, - xmlSchemaValPtr cur); -XMLPUBFUN xmlSchemaValPtr XMLCALL - xmlSchemaValueGetNext (xmlSchemaValPtr cur); -XMLPUBFUN const xmlChar * XMLCALL - xmlSchemaValueGetAsString (xmlSchemaValPtr val); -XMLPUBFUN int XMLCALL - xmlSchemaValueGetAsBoolean (xmlSchemaValPtr val); -XMLPUBFUN xmlSchemaValPtr XMLCALL - xmlSchemaNewStringValue (xmlSchemaValType type, - const xmlChar *value); -XMLPUBFUN xmlSchemaValPtr XMLCALL - xmlSchemaNewNOTATIONValue (const xmlChar *name, - const xmlChar *ns); -XMLPUBFUN xmlSchemaValPtr XMLCALL - xmlSchemaNewQNameValue (const xmlChar *namespaceName, - const xmlChar *localName); -XMLPUBFUN int XMLCALL - xmlSchemaCompareValuesWhtsp (xmlSchemaValPtr x, - xmlSchemaWhitespaceValueType xws, - xmlSchemaValPtr y, - xmlSchemaWhitespaceValueType yws); -XMLPUBFUN xmlSchemaValPtr XMLCALL - xmlSchemaCopyValue (xmlSchemaValPtr val); -XMLPUBFUN xmlSchemaValType XMLCALL - xmlSchemaGetValType (xmlSchemaValPtr val); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_SCHEMAS_ENABLED */ -#endif /* __XML_SCHEMA_TYPES_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlstring.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlstring.h deleted file mode 100644 index 1dfc5ea0..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlstring.h +++ /dev/null @@ -1,140 +0,0 @@ -/* - * Summary: set of routines to process strings - * Description: type and interfaces needed for the internal string handling - * of the library, especially UTF8 processing. - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_STRING_H__ -#define __XML_STRING_H__ - -#include <stdarg.h> -#include <libxml/xmlversion.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * xmlChar: - * - * This is a basic byte in an UTF-8 encoded string. - * It's unsigned allowing to pinpoint case where char * are assigned - * to xmlChar * (possibly making serialization back impossible). - */ -typedef unsigned char xmlChar; - -/** - * BAD_CAST: - * - * Macro to cast a string to an xmlChar * when one know its safe. - */ -#define BAD_CAST (xmlChar *) - -/* - * xmlChar handling - */ -XMLPUBFUN xmlChar * XMLCALL - xmlStrdup (const xmlChar *cur); -XMLPUBFUN xmlChar * XMLCALL - xmlStrndup (const xmlChar *cur, - int len); -XMLPUBFUN xmlChar * XMLCALL - xmlCharStrndup (const char *cur, - int len); -XMLPUBFUN xmlChar * XMLCALL - xmlCharStrdup (const char *cur); -XMLPUBFUN xmlChar * XMLCALL - xmlStrsub (const xmlChar *str, - int start, - int len); -XMLPUBFUN const xmlChar * XMLCALL - xmlStrchr (const xmlChar *str, - xmlChar val); -XMLPUBFUN const xmlChar * XMLCALL - xmlStrstr (const xmlChar *str, - const xmlChar *val); -XMLPUBFUN const xmlChar * XMLCALL - xmlStrcasestr (const xmlChar *str, - xmlChar *val); -XMLPUBFUN int XMLCALL - xmlStrcmp (const xmlChar *str1, - const xmlChar *str2); -XMLPUBFUN int XMLCALL - xmlStrncmp (const xmlChar *str1, - const xmlChar *str2, - int len); -XMLPUBFUN int XMLCALL - xmlStrcasecmp (const xmlChar *str1, - const xmlChar *str2); -XMLPUBFUN int XMLCALL - xmlStrncasecmp (const xmlChar *str1, - const xmlChar *str2, - int len); -XMLPUBFUN int XMLCALL - xmlStrEqual (const xmlChar *str1, - const xmlChar *str2); -XMLPUBFUN int XMLCALL - xmlStrQEqual (const xmlChar *pref, - const xmlChar *name, - const xmlChar *str); -XMLPUBFUN int XMLCALL - xmlStrlen (const xmlChar *str); -XMLPUBFUN xmlChar * XMLCALL - xmlStrcat (xmlChar *cur, - const xmlChar *add); -XMLPUBFUN xmlChar * XMLCALL - xmlStrncat (xmlChar *cur, - const xmlChar *add, - int len); -XMLPUBFUN xmlChar * XMLCALL - xmlStrncatNew (const xmlChar *str1, - const xmlChar *str2, - int len); -XMLPUBFUN int XMLCALL - xmlStrPrintf (xmlChar *buf, - int len, - const xmlChar *msg, - ...); -XMLPUBFUN int XMLCALL - xmlStrVPrintf (xmlChar *buf, - int len, - const xmlChar *msg, - va_list ap); - -XMLPUBFUN int XMLCALL - xmlGetUTF8Char (const unsigned char *utf, - int *len); -XMLPUBFUN int XMLCALL - xmlCheckUTF8 (const unsigned char *utf); -XMLPUBFUN int XMLCALL - xmlUTF8Strsize (const xmlChar *utf, - int len); -XMLPUBFUN xmlChar * XMLCALL - xmlUTF8Strndup (const xmlChar *utf, - int len); -XMLPUBFUN const xmlChar * XMLCALL - xmlUTF8Strpos (const xmlChar *utf, - int pos); -XMLPUBFUN int XMLCALL - xmlUTF8Strloc (const xmlChar *utf, - const xmlChar *utfchar); -XMLPUBFUN xmlChar * XMLCALL - xmlUTF8Strsub (const xmlChar *utf, - int start, - int len); -XMLPUBFUN int XMLCALL - xmlUTF8Strlen (const xmlChar *utf); -XMLPUBFUN int XMLCALL - xmlUTF8Size (const xmlChar *utf); -XMLPUBFUN int XMLCALL - xmlUTF8Charcmp (const xmlChar *utf1, - const xmlChar *utf2); - -#ifdef __cplusplus -} -#endif -#endif /* __XML_STRING_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlunicode.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlunicode.h deleted file mode 100644 index 01ac8b61..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlunicode.h +++ /dev/null @@ -1,202 +0,0 @@ -/* - * Summary: Unicode character APIs - * Description: API for the Unicode character APIs - * - * This file is automatically generated from the - * UCS description files of the Unicode Character Database - * http://www.unicode.org/Public/4.0-Update1/UCD-4.0.1.html - * using the genUnicode.py Python script. - * - * Generation date: Mon Mar 27 11:09:52 2006 - * Sources: Blocks-4.0.1.txt UnicodeData-4.0.1.txt - * Author: Daniel Veillard - */ - -#ifndef __XML_UNICODE_H__ -#define __XML_UNICODE_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_UNICODE_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - -XMLPUBFUN int XMLCALL xmlUCSIsAegeanNumbers (int code); -XMLPUBFUN int XMLCALL xmlUCSIsAlphabeticPresentationForms (int code); -XMLPUBFUN int XMLCALL xmlUCSIsArabic (int code); -XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsA (int code); -XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsB (int code); -XMLPUBFUN int XMLCALL xmlUCSIsArmenian (int code); -XMLPUBFUN int XMLCALL xmlUCSIsArrows (int code); -XMLPUBFUN int XMLCALL xmlUCSIsBasicLatin (int code); -XMLPUBFUN int XMLCALL xmlUCSIsBengali (int code); -XMLPUBFUN int XMLCALL xmlUCSIsBlockElements (int code); -XMLPUBFUN int XMLCALL xmlUCSIsBopomofo (int code); -XMLPUBFUN int XMLCALL xmlUCSIsBopomofoExtended (int code); -XMLPUBFUN int XMLCALL xmlUCSIsBoxDrawing (int code); -XMLPUBFUN int XMLCALL xmlUCSIsBraillePatterns (int code); -XMLPUBFUN int XMLCALL xmlUCSIsBuhid (int code); -XMLPUBFUN int XMLCALL xmlUCSIsByzantineMusicalSymbols (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCJKCompatibility (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCJKCompatibilityForms (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCJKCompatibilityIdeographs (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCJKCompatibilityIdeographsSupplement (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCJKRadicalsSupplement (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCJKSymbolsandPunctuation (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCJKUnifiedIdeographs (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCJKUnifiedIdeographsExtensionA (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCJKUnifiedIdeographsExtensionB (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCherokee (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCombiningDiacriticalMarks (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCombiningDiacriticalMarksforSymbols (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCombiningHalfMarks (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCombiningMarksforSymbols (int code); -XMLPUBFUN int XMLCALL xmlUCSIsControlPictures (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCurrencySymbols (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCypriotSyllabary (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCyrillic (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCyrillicSupplement (int code); -XMLPUBFUN int XMLCALL xmlUCSIsDeseret (int code); -XMLPUBFUN int XMLCALL xmlUCSIsDevanagari (int code); -XMLPUBFUN int XMLCALL xmlUCSIsDingbats (int code); -XMLPUBFUN int XMLCALL xmlUCSIsEnclosedAlphanumerics (int code); -XMLPUBFUN int XMLCALL xmlUCSIsEnclosedCJKLettersandMonths (int code); -XMLPUBFUN int XMLCALL xmlUCSIsEthiopic (int code); -XMLPUBFUN int XMLCALL xmlUCSIsGeneralPunctuation (int code); -XMLPUBFUN int XMLCALL xmlUCSIsGeometricShapes (int code); -XMLPUBFUN int XMLCALL xmlUCSIsGeorgian (int code); -XMLPUBFUN int XMLCALL xmlUCSIsGothic (int code); -XMLPUBFUN int XMLCALL xmlUCSIsGreek (int code); -XMLPUBFUN int XMLCALL xmlUCSIsGreekExtended (int code); -XMLPUBFUN int XMLCALL xmlUCSIsGreekandCoptic (int code); -XMLPUBFUN int XMLCALL xmlUCSIsGujarati (int code); -XMLPUBFUN int XMLCALL xmlUCSIsGurmukhi (int code); -XMLPUBFUN int XMLCALL xmlUCSIsHalfwidthandFullwidthForms (int code); -XMLPUBFUN int XMLCALL xmlUCSIsHangulCompatibilityJamo (int code); -XMLPUBFUN int XMLCALL xmlUCSIsHangulJamo (int code); -XMLPUBFUN int XMLCALL xmlUCSIsHangulSyllables (int code); -XMLPUBFUN int XMLCALL xmlUCSIsHanunoo (int code); -XMLPUBFUN int XMLCALL xmlUCSIsHebrew (int code); -XMLPUBFUN int XMLCALL xmlUCSIsHighPrivateUseSurrogates (int code); -XMLPUBFUN int XMLCALL xmlUCSIsHighSurrogates (int code); -XMLPUBFUN int XMLCALL xmlUCSIsHiragana (int code); -XMLPUBFUN int XMLCALL xmlUCSIsIPAExtensions (int code); -XMLPUBFUN int XMLCALL xmlUCSIsIdeographicDescriptionCharacters (int code); -XMLPUBFUN int XMLCALL xmlUCSIsKanbun (int code); -XMLPUBFUN int XMLCALL xmlUCSIsKangxiRadicals (int code); -XMLPUBFUN int XMLCALL xmlUCSIsKannada (int code); -XMLPUBFUN int XMLCALL xmlUCSIsKatakana (int code); -XMLPUBFUN int XMLCALL xmlUCSIsKatakanaPhoneticExtensions (int code); -XMLPUBFUN int XMLCALL xmlUCSIsKhmer (int code); -XMLPUBFUN int XMLCALL xmlUCSIsKhmerSymbols (int code); -XMLPUBFUN int XMLCALL xmlUCSIsLao (int code); -XMLPUBFUN int XMLCALL xmlUCSIsLatin1Supplement (int code); -XMLPUBFUN int XMLCALL xmlUCSIsLatinExtendedA (int code); -XMLPUBFUN int XMLCALL xmlUCSIsLatinExtendedB (int code); -XMLPUBFUN int XMLCALL xmlUCSIsLatinExtendedAdditional (int code); -XMLPUBFUN int XMLCALL xmlUCSIsLetterlikeSymbols (int code); -XMLPUBFUN int XMLCALL xmlUCSIsLimbu (int code); -XMLPUBFUN int XMLCALL xmlUCSIsLinearBIdeograms (int code); -XMLPUBFUN int XMLCALL xmlUCSIsLinearBSyllabary (int code); -XMLPUBFUN int XMLCALL xmlUCSIsLowSurrogates (int code); -XMLPUBFUN int XMLCALL xmlUCSIsMalayalam (int code); -XMLPUBFUN int XMLCALL xmlUCSIsMathematicalAlphanumericSymbols (int code); -XMLPUBFUN int XMLCALL xmlUCSIsMathematicalOperators (int code); -XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousMathematicalSymbolsA (int code); -XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousMathematicalSymbolsB (int code); -XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousSymbols (int code); -XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousSymbolsandArrows (int code); -XMLPUBFUN int XMLCALL xmlUCSIsMiscellaneousTechnical (int code); -XMLPUBFUN int XMLCALL xmlUCSIsMongolian (int code); -XMLPUBFUN int XMLCALL xmlUCSIsMusicalSymbols (int code); -XMLPUBFUN int XMLCALL xmlUCSIsMyanmar (int code); -XMLPUBFUN int XMLCALL xmlUCSIsNumberForms (int code); -XMLPUBFUN int XMLCALL xmlUCSIsOgham (int code); -XMLPUBFUN int XMLCALL xmlUCSIsOldItalic (int code); -XMLPUBFUN int XMLCALL xmlUCSIsOpticalCharacterRecognition (int code); -XMLPUBFUN int XMLCALL xmlUCSIsOriya (int code); -XMLPUBFUN int XMLCALL xmlUCSIsOsmanya (int code); -XMLPUBFUN int XMLCALL xmlUCSIsPhoneticExtensions (int code); -XMLPUBFUN int XMLCALL xmlUCSIsPrivateUse (int code); -XMLPUBFUN int XMLCALL xmlUCSIsPrivateUseArea (int code); -XMLPUBFUN int XMLCALL xmlUCSIsRunic (int code); -XMLPUBFUN int XMLCALL xmlUCSIsShavian (int code); -XMLPUBFUN int XMLCALL xmlUCSIsSinhala (int code); -XMLPUBFUN int XMLCALL xmlUCSIsSmallFormVariants (int code); -XMLPUBFUN int XMLCALL xmlUCSIsSpacingModifierLetters (int code); -XMLPUBFUN int XMLCALL xmlUCSIsSpecials (int code); -XMLPUBFUN int XMLCALL xmlUCSIsSuperscriptsandSubscripts (int code); -XMLPUBFUN int XMLCALL xmlUCSIsSupplementalArrowsA (int code); -XMLPUBFUN int XMLCALL xmlUCSIsSupplementalArrowsB (int code); -XMLPUBFUN int XMLCALL xmlUCSIsSupplementalMathematicalOperators (int code); -XMLPUBFUN int XMLCALL xmlUCSIsSupplementaryPrivateUseAreaA (int code); -XMLPUBFUN int XMLCALL xmlUCSIsSupplementaryPrivateUseAreaB (int code); -XMLPUBFUN int XMLCALL xmlUCSIsSyriac (int code); -XMLPUBFUN int XMLCALL xmlUCSIsTagalog (int code); -XMLPUBFUN int XMLCALL xmlUCSIsTagbanwa (int code); -XMLPUBFUN int XMLCALL xmlUCSIsTags (int code); -XMLPUBFUN int XMLCALL xmlUCSIsTaiLe (int code); -XMLPUBFUN int XMLCALL xmlUCSIsTaiXuanJingSymbols (int code); -XMLPUBFUN int XMLCALL xmlUCSIsTamil (int code); -XMLPUBFUN int XMLCALL xmlUCSIsTelugu (int code); -XMLPUBFUN int XMLCALL xmlUCSIsThaana (int code); -XMLPUBFUN int XMLCALL xmlUCSIsThai (int code); -XMLPUBFUN int XMLCALL xmlUCSIsTibetan (int code); -XMLPUBFUN int XMLCALL xmlUCSIsUgaritic (int code); -XMLPUBFUN int XMLCALL xmlUCSIsUnifiedCanadianAboriginalSyllabics (int code); -XMLPUBFUN int XMLCALL xmlUCSIsVariationSelectors (int code); -XMLPUBFUN int XMLCALL xmlUCSIsVariationSelectorsSupplement (int code); -XMLPUBFUN int XMLCALL xmlUCSIsYiRadicals (int code); -XMLPUBFUN int XMLCALL xmlUCSIsYiSyllables (int code); -XMLPUBFUN int XMLCALL xmlUCSIsYijingHexagramSymbols (int code); - -XMLPUBFUN int XMLCALL xmlUCSIsBlock (int code, const char *block); - -XMLPUBFUN int XMLCALL xmlUCSIsCatC (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatCc (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatCf (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatCo (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatCs (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatL (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatLl (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatLm (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatLo (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatLt (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatLu (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatM (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatMc (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatMe (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatMn (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatN (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatNd (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatNl (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatNo (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatP (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatPc (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatPd (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatPe (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatPf (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatPi (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatPo (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatPs (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatS (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatSc (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatSk (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatSm (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatSo (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatZ (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatZl (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatZp (int code); -XMLPUBFUN int XMLCALL xmlUCSIsCatZs (int code); - -XMLPUBFUN int XMLCALL xmlUCSIsCat (int code, const char *cat); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_UNICODE_ENABLED */ - -#endif /* __XML_UNICODE_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlversion.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlversion.h deleted file mode 100644 index 697447bb..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlversion.h +++ /dev/null @@ -1,406 +0,0 @@ -/* - * Summary: compile-time version informations - * Description: compile-time version informations for the XML library - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_VERSION_H__ -#define __XML_VERSION_H__ - -#include <libxml/xmlexports.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * use those to be sure nothing nasty will happen if - * your library and includes mismatch - */ -#ifndef LIBXML2_COMPILING_MSCCDEF -XMLPUBFUN void XMLCALL xmlCheckVersion(int version); -#endif /* LIBXML2_COMPILING_MSCCDEF */ - -/** - * LIBXML_DOTTED_VERSION: - * - * the version string like "1.2.3" - */ -#define LIBXML_DOTTED_VERSION "2.6.30" - -/** - * LIBXML_VERSION: - * - * the version number: 1.2.3 value is 10203 - */ -#define LIBXML_VERSION 20630 - -/** - * LIBXML_VERSION_STRING: - * - * the version number string, 1.2.3 value is "10203" - */ -#define LIBXML_VERSION_STRING "20630" - -/** - * LIBXML_VERSION_EXTRA: - * - * extra version information, used to show a CVS compilation - */ -#define LIBXML_VERSION_EXTRA "" - -/** - * LIBXML_TEST_VERSION: - * - * Macro to check that the libxml version in use is compatible with - * the version the software has been compiled against - */ -#define LIBXML_TEST_VERSION xmlCheckVersion(20630); - -#ifndef VMS -#if 0 -/** - * WITH_TRIO: - * - * defined if the trio support need to be configured in - */ -#define WITH_TRIO -#else -/** - * WITHOUT_TRIO: - * - * defined if the trio support should not be configured in - */ -#define WITHOUT_TRIO -#endif -#else /* VMS */ -/** - * WITH_TRIO: - * - * defined if the trio support need to be configured in - */ -#define WITH_TRIO 1 -#endif /* VMS */ - -/** - * LIBXML_THREAD_ENABLED: - * - * Whether the thread support is configured in - */ -#if 1 -#if defined(_REENTRANT) || defined(__MT__) || \ - (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE - 0 >= 199506L)) -#define LIBXML_THREAD_ENABLED -#endif -#endif - -/** - * LIBXML_TREE_ENABLED: - * - * Whether the DOM like tree manipulation API support is configured in - */ -#if 1 -#define LIBXML_TREE_ENABLED -#endif - -/** - * LIBXML_OUTPUT_ENABLED: - * - * Whether the serialization/saving support is configured in - */ -#if 1 -#define LIBXML_OUTPUT_ENABLED -#endif - -/** - * LIBXML_PUSH_ENABLED: - * - * Whether the push parsing interfaces are configured in - */ -#if 1 -#define LIBXML_PUSH_ENABLED -#endif - -/** - * LIBXML_READER_ENABLED: - * - * Whether the xmlReader parsing interface is configured in - */ -#if 1 -#define LIBXML_READER_ENABLED -#endif - -/** - * LIBXML_PATTERN_ENABLED: - * - * Whether the xmlPattern node selection interface is configured in - */ -#if 1 -#define LIBXML_PATTERN_ENABLED -#endif - -/** - * LIBXML_WRITER_ENABLED: - * - * Whether the xmlWriter saving interface is configured in - */ -#if 1 -#define LIBXML_WRITER_ENABLED -#endif - -/** - * LIBXML_SAX1_ENABLED: - * - * Whether the older SAX1 interface is configured in - */ -#if 1 -#define LIBXML_SAX1_ENABLED -#endif - -/** - * LIBXML_FTP_ENABLED: - * - * Whether the FTP support is configured in - */ -#if 1 -#define LIBXML_FTP_ENABLED -#endif - -/** - * LIBXML_HTTP_ENABLED: - * - * Whether the HTTP support is configured in - */ -#if 1 -#define LIBXML_HTTP_ENABLED -#endif - -/** - * LIBXML_VALID_ENABLED: - * - * Whether the DTD validation support is configured in - */ -#if 1 -#define LIBXML_VALID_ENABLED -#endif - -/** - * LIBXML_HTML_ENABLED: - * - * Whether the HTML support is configured in - */ -#if 1 -#define LIBXML_HTML_ENABLED -#endif - -/** - * LIBXML_LEGACY_ENABLED: - * - * Whether the deprecated APIs are compiled in for compatibility - */ -#if 1 -#define LIBXML_LEGACY_ENABLED -#endif - -/** - * LIBXML_C14N_ENABLED: - * - * Whether the Canonicalization support is configured in - */ -#if 1 -#define LIBXML_C14N_ENABLED -#endif - -/** - * LIBXML_CATALOG_ENABLED: - * - * Whether the Catalog support is configured in - */ -#if 1 -#define LIBXML_CATALOG_ENABLED -#endif - -/** - * LIBXML_DOCB_ENABLED: - * - * Whether the SGML Docbook support is configured in - */ -#if 1 -#define LIBXML_DOCB_ENABLED -#endif - -/** - * LIBXML_XPATH_ENABLED: - * - * Whether XPath is configured in - */ -#if 1 -#define LIBXML_XPATH_ENABLED -#endif - -/** - * LIBXML_XPTR_ENABLED: - * - * Whether XPointer is configured in - */ -#if 1 -#define LIBXML_XPTR_ENABLED -#endif - -/** - * LIBXML_XINCLUDE_ENABLED: - * - * Whether XInclude is configured in - */ -#if 1 -#define LIBXML_XINCLUDE_ENABLED -#endif - -/** - * LIBXML_ICONV_ENABLED: - * - * Whether iconv support is available - */ -#if 1 -#define LIBXML_ICONV_ENABLED -#endif - -/** - * LIBXML_ISO8859X_ENABLED: - * - * Whether ISO-8859-* support is made available in case iconv is not - */ -#if 1 -#define LIBXML_ISO8859X_ENABLED -#endif - -/** - * LIBXML_DEBUG_ENABLED: - * - * Whether Debugging module is configured in - */ -#if 1 -#define LIBXML_DEBUG_ENABLED -#endif - -/** - * DEBUG_MEMORY_LOCATION: - * - * Whether the memory debugging is configured in - */ -#if 0 -#define DEBUG_MEMORY_LOCATION -#endif - -/** - * LIBXML_DEBUG_RUNTIME: - * - * Whether the runtime debugging is configured in - */ -#if 0 -#define LIBXML_DEBUG_RUNTIME -#endif - -/** - * LIBXML_UNICODE_ENABLED: - * - * Whether the Unicode related interfaces are compiled in - */ -#if 1 -#define LIBXML_UNICODE_ENABLED -#endif - -/** - * LIBXML_REGEXP_ENABLED: - * - * Whether the regular expressions interfaces are compiled in - */ -#if 1 -#define LIBXML_REGEXP_ENABLED -#endif - -/** - * LIBXML_AUTOMATA_ENABLED: - * - * Whether the automata interfaces are compiled in - */ -#if 1 -#define LIBXML_AUTOMATA_ENABLED -#endif - -/** - * LIBXML_EXPR_ENABLED: - * - * Whether the formal expressions interfaces are compiled in - */ -#if 1 -#define LIBXML_EXPR_ENABLED -#endif - -/** - * LIBXML_SCHEMAS_ENABLED: - * - * Whether the Schemas validation interfaces are compiled in - */ -#if 1 -#define LIBXML_SCHEMAS_ENABLED -#endif - -/** - * LIBXML_SCHEMATRON_ENABLED: - * - * Whether the Schematron validation interfaces are compiled in - */ -#if 1 -#define LIBXML_SCHEMATRON_ENABLED -#endif - -/** - * LIBXML_MODULES_ENABLED: - * - * Whether the module interfaces are compiled in - */ -#if 1 -#define LIBXML_MODULES_ENABLED -/** - * LIBXML_MODULE_EXTENSION: - * - * the string suffix used by dynamic modules (usually shared libraries) - */ -#define LIBXML_MODULE_EXTENSION ".so" -#endif - -/** - * LIBXML_ZLIB_ENABLED: - * - * Whether the Zlib support is compiled in - */ -#if 1 -#define LIBXML_ZLIB_ENABLED -#endif - -/** - * ATTRIBUTE_UNUSED: - * - * Macro used to signal to GCC unused function parameters - */ -#ifdef __GNUC__ -#ifdef HAVE_ANSIDECL_H -#include <ansidecl.h> -#endif -#ifndef ATTRIBUTE_UNUSED -#define ATTRIBUTE_UNUSED __attribute__((unused)) -#endif -#else -#define ATTRIBUTE_UNUSED -#endif - -#ifdef __cplusplus -} -#endif /* __cplusplus */ -#endif - - diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlwriter.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlwriter.h deleted file mode 100644 index 31ceb5f1..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xmlwriter.h +++ /dev/null @@ -1,459 +0,0 @@ - -/* - * Summary: text writing API for XML - * Description: text writing API for XML - * - * Copy: See Copyright for the status of this software. - * - * Author: Alfred Mickautsch <alfred@mickautsch.de> - */ - -#ifndef __XML_XMLWRITER_H__ -#define __XML_XMLWRITER_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_WRITER_ENABLED - -#include <stdarg.h> -#include <libxml/xmlIO.h> -#include <libxml/list.h> -#include <libxml/xmlstring.h> - -#ifdef __cplusplus -extern "C" { -#endif - - typedef struct _xmlTextWriter xmlTextWriter; - typedef xmlTextWriter *xmlTextWriterPtr; - -/* - * Constructors & Destructor - */ - XMLPUBFUN xmlTextWriterPtr XMLCALL - xmlNewTextWriter(xmlOutputBufferPtr out); - XMLPUBFUN xmlTextWriterPtr XMLCALL - xmlNewTextWriterFilename(const char *uri, int compression); - XMLPUBFUN xmlTextWriterPtr XMLCALL - xmlNewTextWriterMemory(xmlBufferPtr buf, int compression); - XMLPUBFUN xmlTextWriterPtr XMLCALL - xmlNewTextWriterPushParser(xmlParserCtxtPtr ctxt, int compression); - XMLPUBFUN xmlTextWriterPtr XMLCALL - xmlNewTextWriterDoc(xmlDocPtr * doc, int compression); - XMLPUBFUN xmlTextWriterPtr XMLCALL - xmlNewTextWriterTree(xmlDocPtr doc, xmlNodePtr node, - int compression); - XMLPUBFUN void XMLCALL xmlFreeTextWriter(xmlTextWriterPtr writer); - -/* - * Functions - */ - - -/* - * Document - */ - XMLPUBFUN int XMLCALL - xmlTextWriterStartDocument(xmlTextWriterPtr writer, - const char *version, - const char *encoding, - const char *standalone); - XMLPUBFUN int XMLCALL xmlTextWriterEndDocument(xmlTextWriterPtr - writer); - -/* - * Comments - */ - XMLPUBFUN int XMLCALL xmlTextWriterStartComment(xmlTextWriterPtr - writer); - XMLPUBFUN int XMLCALL xmlTextWriterEndComment(xmlTextWriterPtr writer); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteFormatComment(xmlTextWriterPtr writer, - const char *format, ...); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteVFormatComment(xmlTextWriterPtr writer, - const char *format, - va_list argptr); - XMLPUBFUN int XMLCALL xmlTextWriterWriteComment(xmlTextWriterPtr - writer, - const xmlChar * - content); - -/* - * Elements - */ - XMLPUBFUN int XMLCALL - xmlTextWriterStartElement(xmlTextWriterPtr writer, - const xmlChar * name); - XMLPUBFUN int XMLCALL xmlTextWriterStartElementNS(xmlTextWriterPtr - writer, - const xmlChar * - prefix, - const xmlChar * name, - const xmlChar * - namespaceURI); - XMLPUBFUN int XMLCALL xmlTextWriterEndElement(xmlTextWriterPtr writer); - XMLPUBFUN int XMLCALL xmlTextWriterFullEndElement(xmlTextWriterPtr - writer); - -/* - * Elements conveniency functions - */ - XMLPUBFUN int XMLCALL - xmlTextWriterWriteFormatElement(xmlTextWriterPtr writer, - const xmlChar * name, - const char *format, ...); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteVFormatElement(xmlTextWriterPtr writer, - const xmlChar * name, - const char *format, - va_list argptr); - XMLPUBFUN int XMLCALL xmlTextWriterWriteElement(xmlTextWriterPtr - writer, - const xmlChar * name, - const xmlChar * - content); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteFormatElementNS(xmlTextWriterPtr writer, - const xmlChar * prefix, - const xmlChar * name, - const xmlChar * namespaceURI, - const char *format, ...); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteVFormatElementNS(xmlTextWriterPtr writer, - const xmlChar * prefix, - const xmlChar * name, - const xmlChar * namespaceURI, - const char *format, - va_list argptr); - XMLPUBFUN int XMLCALL xmlTextWriterWriteElementNS(xmlTextWriterPtr - writer, - const xmlChar * - prefix, - const xmlChar * name, - const xmlChar * - namespaceURI, - const xmlChar * - content); - -/* - * Text - */ - XMLPUBFUN int XMLCALL - xmlTextWriterWriteFormatRaw(xmlTextWriterPtr writer, - const char *format, ...); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteVFormatRaw(xmlTextWriterPtr writer, - const char *format, va_list argptr); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteRawLen(xmlTextWriterPtr writer, - const xmlChar * content, int len); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteRaw(xmlTextWriterPtr writer, - const xmlChar * content); - XMLPUBFUN int XMLCALL xmlTextWriterWriteFormatString(xmlTextWriterPtr - writer, - const char - *format, ...); - XMLPUBFUN int XMLCALL xmlTextWriterWriteVFormatString(xmlTextWriterPtr - writer, - const char - *format, - va_list argptr); - XMLPUBFUN int XMLCALL xmlTextWriterWriteString(xmlTextWriterPtr writer, - const xmlChar * - content); - XMLPUBFUN int XMLCALL xmlTextWriterWriteBase64(xmlTextWriterPtr writer, - const char *data, - int start, int len); - XMLPUBFUN int XMLCALL xmlTextWriterWriteBinHex(xmlTextWriterPtr writer, - const char *data, - int start, int len); - -/* - * Attributes - */ - XMLPUBFUN int XMLCALL - xmlTextWriterStartAttribute(xmlTextWriterPtr writer, - const xmlChar * name); - XMLPUBFUN int XMLCALL xmlTextWriterStartAttributeNS(xmlTextWriterPtr - writer, - const xmlChar * - prefix, - const xmlChar * - name, - const xmlChar * - namespaceURI); - XMLPUBFUN int XMLCALL xmlTextWriterEndAttribute(xmlTextWriterPtr - writer); - -/* - * Attributes conveniency functions - */ - XMLPUBFUN int XMLCALL - xmlTextWriterWriteFormatAttribute(xmlTextWriterPtr writer, - const xmlChar * name, - const char *format, ...); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteVFormatAttribute(xmlTextWriterPtr writer, - const xmlChar * name, - const char *format, - va_list argptr); - XMLPUBFUN int XMLCALL xmlTextWriterWriteAttribute(xmlTextWriterPtr - writer, - const xmlChar * name, - const xmlChar * - content); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteFormatAttributeNS(xmlTextWriterPtr writer, - const xmlChar * prefix, - const xmlChar * name, - const xmlChar * namespaceURI, - const char *format, ...); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteVFormatAttributeNS(xmlTextWriterPtr writer, - const xmlChar * prefix, - const xmlChar * name, - const xmlChar * namespaceURI, - const char *format, - va_list argptr); - XMLPUBFUN int XMLCALL xmlTextWriterWriteAttributeNS(xmlTextWriterPtr - writer, - const xmlChar * - prefix, - const xmlChar * - name, - const xmlChar * - namespaceURI, - const xmlChar * - content); - -/* - * PI's - */ - XMLPUBFUN int XMLCALL - xmlTextWriterStartPI(xmlTextWriterPtr writer, - const xmlChar * target); - XMLPUBFUN int XMLCALL xmlTextWriterEndPI(xmlTextWriterPtr writer); - -/* - * PI conveniency functions - */ - XMLPUBFUN int XMLCALL - xmlTextWriterWriteFormatPI(xmlTextWriterPtr writer, - const xmlChar * target, - const char *format, ...); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteVFormatPI(xmlTextWriterPtr writer, - const xmlChar * target, - const char *format, va_list argptr); - XMLPUBFUN int XMLCALL - xmlTextWriterWritePI(xmlTextWriterPtr writer, - const xmlChar * target, - const xmlChar * content); - -/** - * xmlTextWriterWriteProcessingInstruction: - * - * This macro maps to xmlTextWriterWritePI - */ -#define xmlTextWriterWriteProcessingInstruction xmlTextWriterWritePI - -/* - * CDATA - */ - XMLPUBFUN int XMLCALL xmlTextWriterStartCDATA(xmlTextWriterPtr writer); - XMLPUBFUN int XMLCALL xmlTextWriterEndCDATA(xmlTextWriterPtr writer); - -/* - * CDATA conveniency functions - */ - XMLPUBFUN int XMLCALL - xmlTextWriterWriteFormatCDATA(xmlTextWriterPtr writer, - const char *format, ...); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteVFormatCDATA(xmlTextWriterPtr writer, - const char *format, va_list argptr); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteCDATA(xmlTextWriterPtr writer, - const xmlChar * content); - -/* - * DTD - */ - XMLPUBFUN int XMLCALL - xmlTextWriterStartDTD(xmlTextWriterPtr writer, - const xmlChar * name, - const xmlChar * pubid, - const xmlChar * sysid); - XMLPUBFUN int XMLCALL xmlTextWriterEndDTD(xmlTextWriterPtr writer); - -/* - * DTD conveniency functions - */ - XMLPUBFUN int XMLCALL - xmlTextWriterWriteFormatDTD(xmlTextWriterPtr writer, - const xmlChar * name, - const xmlChar * pubid, - const xmlChar * sysid, - const char *format, ...); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteVFormatDTD(xmlTextWriterPtr writer, - const xmlChar * name, - const xmlChar * pubid, - const xmlChar * sysid, - const char *format, va_list argptr); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteDTD(xmlTextWriterPtr writer, - const xmlChar * name, - const xmlChar * pubid, - const xmlChar * sysid, - const xmlChar * subset); - -/** - * xmlTextWriterWriteDocType: - * - * this macro maps to xmlTextWriterWriteDTD - */ -#define xmlTextWriterWriteDocType xmlTextWriterWriteDTD - -/* - * DTD element definition - */ - XMLPUBFUN int XMLCALL - xmlTextWriterStartDTDElement(xmlTextWriterPtr writer, - const xmlChar * name); - XMLPUBFUN int XMLCALL xmlTextWriterEndDTDElement(xmlTextWriterPtr - writer); - -/* - * DTD element definition conveniency functions - */ - XMLPUBFUN int XMLCALL - xmlTextWriterWriteFormatDTDElement(xmlTextWriterPtr writer, - const xmlChar * name, - const char *format, ...); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteVFormatDTDElement(xmlTextWriterPtr writer, - const xmlChar * name, - const char *format, - va_list argptr); - XMLPUBFUN int XMLCALL xmlTextWriterWriteDTDElement(xmlTextWriterPtr - writer, - const xmlChar * - name, - const xmlChar * - content); - -/* - * DTD attribute list definition - */ - XMLPUBFUN int XMLCALL - xmlTextWriterStartDTDAttlist(xmlTextWriterPtr writer, - const xmlChar * name); - XMLPUBFUN int XMLCALL xmlTextWriterEndDTDAttlist(xmlTextWriterPtr - writer); - -/* - * DTD attribute list definition conveniency functions - */ - XMLPUBFUN int XMLCALL - xmlTextWriterWriteFormatDTDAttlist(xmlTextWriterPtr writer, - const xmlChar * name, - const char *format, ...); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteVFormatDTDAttlist(xmlTextWriterPtr writer, - const xmlChar * name, - const char *format, - va_list argptr); - XMLPUBFUN int XMLCALL xmlTextWriterWriteDTDAttlist(xmlTextWriterPtr - writer, - const xmlChar * - name, - const xmlChar * - content); - -/* - * DTD entity definition - */ - XMLPUBFUN int XMLCALL - xmlTextWriterStartDTDEntity(xmlTextWriterPtr writer, - int pe, const xmlChar * name); - XMLPUBFUN int XMLCALL xmlTextWriterEndDTDEntity(xmlTextWriterPtr - writer); - -/* - * DTD entity definition conveniency functions - */ - XMLPUBFUN int XMLCALL - xmlTextWriterWriteFormatDTDInternalEntity(xmlTextWriterPtr writer, - int pe, - const xmlChar * name, - const char *format, ...); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteVFormatDTDInternalEntity(xmlTextWriterPtr writer, - int pe, - const xmlChar * name, - const char *format, - va_list argptr); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteDTDInternalEntity(xmlTextWriterPtr writer, - int pe, - const xmlChar * name, - const xmlChar * content); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteDTDExternalEntity(xmlTextWriterPtr writer, - int pe, - const xmlChar * name, - const xmlChar * pubid, - const xmlChar * sysid, - const xmlChar * ndataid); - XMLPUBFUN int XMLCALL - xmlTextWriterWriteDTDExternalEntityContents(xmlTextWriterPtr - writer, - const xmlChar * pubid, - const xmlChar * sysid, - const xmlChar * - ndataid); - XMLPUBFUN int XMLCALL xmlTextWriterWriteDTDEntity(xmlTextWriterPtr - writer, int pe, - const xmlChar * name, - const xmlChar * - pubid, - const xmlChar * - sysid, - const xmlChar * - ndataid, - const xmlChar * - content); - -/* - * DTD notation definition - */ - XMLPUBFUN int XMLCALL - xmlTextWriterWriteDTDNotation(xmlTextWriterPtr writer, - const xmlChar * name, - const xmlChar * pubid, - const xmlChar * sysid); - -/* - * Indentation - */ - XMLPUBFUN int XMLCALL - xmlTextWriterSetIndent(xmlTextWriterPtr writer, int indent); - XMLPUBFUN int XMLCALL - xmlTextWriterSetIndentString(xmlTextWriterPtr writer, - const xmlChar * str); - -/* - * misc - */ - XMLPUBFUN int XMLCALL xmlTextWriterFlush(xmlTextWriterPtr writer); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_WRITER_ENABLED */ - -#endif /* __XML_XMLWRITER_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xpath.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xpath.h deleted file mode 100644 index 725cebe2..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xpath.h +++ /dev/null @@ -1,543 +0,0 @@ -/* - * Summary: XML Path Language implementation - * Description: API for the XML Path Language implementation - * - * XML Path Language implementation - * XPath is a language for addressing parts of an XML document, - * designed to be used by both XSLT and XPointer - * http://www.w3.org/TR/xpath - * - * Implements - * W3C Recommendation 16 November 1999 - * http://www.w3.org/TR/1999/REC-xpath-19991116 - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_XPATH_H__ -#define __XML_XPATH_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_XPATH_ENABLED - -#include <libxml/xmlerror.h> -#include <libxml/tree.h> -#include <libxml/hash.h> -#endif /* LIBXML_XPATH_ENABLED */ - -#if defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) -#ifdef __cplusplus -extern "C" { -#endif -#endif /* LIBXML_XPATH_ENABLED or LIBXML_SCHEMAS_ENABLED */ - -#ifdef LIBXML_XPATH_ENABLED - -typedef struct _xmlXPathContext xmlXPathContext; -typedef xmlXPathContext *xmlXPathContextPtr; -typedef struct _xmlXPathParserContext xmlXPathParserContext; -typedef xmlXPathParserContext *xmlXPathParserContextPtr; - -/** - * The set of XPath error codes. - */ - -typedef enum { - XPATH_EXPRESSION_OK = 0, - XPATH_NUMBER_ERROR, - XPATH_UNFINISHED_LITERAL_ERROR, - XPATH_START_LITERAL_ERROR, - XPATH_VARIABLE_REF_ERROR, - XPATH_UNDEF_VARIABLE_ERROR, - XPATH_INVALID_PREDICATE_ERROR, - XPATH_EXPR_ERROR, - XPATH_UNCLOSED_ERROR, - XPATH_UNKNOWN_FUNC_ERROR, - XPATH_INVALID_OPERAND, - XPATH_INVALID_TYPE, - XPATH_INVALID_ARITY, - XPATH_INVALID_CTXT_SIZE, - XPATH_INVALID_CTXT_POSITION, - XPATH_MEMORY_ERROR, - XPTR_SYNTAX_ERROR, - XPTR_RESOURCE_ERROR, - XPTR_SUB_RESOURCE_ERROR, - XPATH_UNDEF_PREFIX_ERROR, - XPATH_ENCODING_ERROR, - XPATH_INVALID_CHAR_ERROR, - XPATH_INVALID_CTXT -} xmlXPathError; - -/* - * A node-set (an unordered collection of nodes without duplicates). - */ -typedef struct _xmlNodeSet xmlNodeSet; -typedef xmlNodeSet *xmlNodeSetPtr; -struct _xmlNodeSet { - int nodeNr; /* number of nodes in the set */ - int nodeMax; /* size of the array as allocated */ - xmlNodePtr *nodeTab; /* array of nodes in no particular order */ - /* @@ with_ns to check wether namespace nodes should be looked at @@ */ -}; - -/* - * An expression is evaluated to yield an object, which - * has one of the following four basic types: - * - node-set - * - boolean - * - number - * - string - * - * @@ XPointer will add more types ! - */ - -typedef enum { - XPATH_UNDEFINED = 0, - XPATH_NODESET = 1, - XPATH_BOOLEAN = 2, - XPATH_NUMBER = 3, - XPATH_STRING = 4, - XPATH_POINT = 5, - XPATH_RANGE = 6, - XPATH_LOCATIONSET = 7, - XPATH_USERS = 8, - XPATH_XSLT_TREE = 9 /* An XSLT value tree, non modifiable */ -} xmlXPathObjectType; - -typedef struct _xmlXPathObject xmlXPathObject; -typedef xmlXPathObject *xmlXPathObjectPtr; -struct _xmlXPathObject { - xmlXPathObjectType type; - xmlNodeSetPtr nodesetval; - int boolval; - double floatval; - xmlChar *stringval; - void *user; - int index; - void *user2; - int index2; -}; - -/** - * xmlXPathConvertFunc: - * @obj: an XPath object - * @type: the number of the target type - * - * A conversion function is associated to a type and used to cast - * the new type to primitive values. - * - * Returns -1 in case of error, 0 otherwise - */ -typedef int (*xmlXPathConvertFunc) (xmlXPathObjectPtr obj, int type); - -/* - * Extra type: a name and a conversion function. - */ - -typedef struct _xmlXPathType xmlXPathType; -typedef xmlXPathType *xmlXPathTypePtr; -struct _xmlXPathType { - const xmlChar *name; /* the type name */ - xmlXPathConvertFunc func; /* the conversion function */ -}; - -/* - * Extra variable: a name and a value. - */ - -typedef struct _xmlXPathVariable xmlXPathVariable; -typedef xmlXPathVariable *xmlXPathVariablePtr; -struct _xmlXPathVariable { - const xmlChar *name; /* the variable name */ - xmlXPathObjectPtr value; /* the value */ -}; - -/** - * xmlXPathEvalFunc: - * @ctxt: an XPath parser context - * @nargs: the number of arguments passed to the function - * - * An XPath evaluation function, the parameters are on the XPath context stack. - */ - -typedef void (*xmlXPathEvalFunc)(xmlXPathParserContextPtr ctxt, - int nargs); - -/* - * Extra function: a name and a evaluation function. - */ - -typedef struct _xmlXPathFunct xmlXPathFunct; -typedef xmlXPathFunct *xmlXPathFuncPtr; -struct _xmlXPathFunct { - const xmlChar *name; /* the function name */ - xmlXPathEvalFunc func; /* the evaluation function */ -}; - -/** - * xmlXPathAxisFunc: - * @ctxt: the XPath interpreter context - * @cur: the previous node being explored on that axis - * - * An axis traversal function. To traverse an axis, the engine calls - * the first time with cur == NULL and repeat until the function returns - * NULL indicating the end of the axis traversal. - * - * Returns the next node in that axis or NULL if at the end of the axis. - */ - -typedef xmlXPathObjectPtr (*xmlXPathAxisFunc) (xmlXPathParserContextPtr ctxt, - xmlXPathObjectPtr cur); - -/* - * Extra axis: a name and an axis function. - */ - -typedef struct _xmlXPathAxis xmlXPathAxis; -typedef xmlXPathAxis *xmlXPathAxisPtr; -struct _xmlXPathAxis { - const xmlChar *name; /* the axis name */ - xmlXPathAxisFunc func; /* the search function */ -}; - -/** - * xmlXPathFunction: - * @ctxt: the XPath interprestation context - * @nargs: the number of arguments - * - * An XPath function. - * The arguments (if any) are popped out from the context stack - * and the result is pushed on the stack. - */ - -typedef void (*xmlXPathFunction) (xmlXPathParserContextPtr ctxt, int nargs); - -/* - * Function and Variable Lookup. - */ - -/** - * xmlXPathVariableLookupFunc: - * @ctxt: an XPath context - * @name: name of the variable - * @ns_uri: the namespace name hosting this variable - * - * Prototype for callbacks used to plug variable lookup in the XPath - * engine. - * - * Returns the XPath object value or NULL if not found. - */ -typedef xmlXPathObjectPtr (*xmlXPathVariableLookupFunc) (void *ctxt, - const xmlChar *name, - const xmlChar *ns_uri); - -/** - * xmlXPathFuncLookupFunc: - * @ctxt: an XPath context - * @name: name of the function - * @ns_uri: the namespace name hosting this function - * - * Prototype for callbacks used to plug function lookup in the XPath - * engine. - * - * Returns the XPath function or NULL if not found. - */ -typedef xmlXPathFunction (*xmlXPathFuncLookupFunc) (void *ctxt, - const xmlChar *name, - const xmlChar *ns_uri); - -/** - * xmlXPathFlags: - * Flags for XPath engine compilation and runtime - */ -/** - * XML_XPATH_CHECKNS: - * - * check namespaces at compilation - */ -#define XML_XPATH_CHECKNS (1<<0) -/** - * XML_XPATH_NOVAR: - * - * forbid variables in expression - */ -#define XML_XPATH_NOVAR (1<<1) - -/** - * xmlXPathContext: - * - * Expression evaluation occurs with respect to a context. - * he context consists of: - * - a node (the context node) - * - a node list (the context node list) - * - a set of variable bindings - * - a function library - * - the set of namespace declarations in scope for the expression - * Following the switch to hash tables, this need to be trimmed up at - * the next binary incompatible release. - */ - -struct _xmlXPathContext { - xmlDocPtr doc; /* The current document */ - xmlNodePtr node; /* The current node */ - - int nb_variables_unused; /* unused (hash table) */ - int max_variables_unused; /* unused (hash table) */ - xmlHashTablePtr varHash; /* Hash table of defined variables */ - - int nb_types; /* number of defined types */ - int max_types; /* max number of types */ - xmlXPathTypePtr types; /* Array of defined types */ - - int nb_funcs_unused; /* unused (hash table) */ - int max_funcs_unused; /* unused (hash table) */ - xmlHashTablePtr funcHash; /* Hash table of defined funcs */ - - int nb_axis; /* number of defined axis */ - int max_axis; /* max number of axis */ - xmlXPathAxisPtr axis; /* Array of defined axis */ - - /* the namespace nodes of the context node */ - xmlNsPtr *namespaces; /* Array of namespaces */ - int nsNr; /* number of namespace in scope */ - void *user; /* function to free */ - - /* extra variables */ - int contextSize; /* the context size */ - int proximityPosition; /* the proximity position */ - - /* extra stuff for XPointer */ - int xptr; /* is this an XPointer context? */ - xmlNodePtr here; /* for here() */ - xmlNodePtr origin; /* for origin() */ - - /* the set of namespace declarations in scope for the expression */ - xmlHashTablePtr nsHash; /* The namespaces hash table */ - xmlXPathVariableLookupFunc varLookupFunc;/* variable lookup func */ - void *varLookupData; /* variable lookup data */ - - /* Possibility to link in an extra item */ - void *extra; /* needed for XSLT */ - - /* The function name and URI when calling a function */ - const xmlChar *function; - const xmlChar *functionURI; - - /* function lookup function and data */ - xmlXPathFuncLookupFunc funcLookupFunc;/* function lookup func */ - void *funcLookupData; /* function lookup data */ - - /* temporary namespace lists kept for walking the namespace axis */ - xmlNsPtr *tmpNsList; /* Array of namespaces */ - int tmpNsNr; /* number of namespaces in scope */ - - /* error reporting mechanism */ - void *userData; /* user specific data block */ - xmlStructuredErrorFunc error; /* the callback in case of errors */ - xmlError lastError; /* the last error */ - xmlNodePtr debugNode; /* the source node XSLT */ - - /* dictionary */ - xmlDictPtr dict; /* dictionary if any */ - - int flags; /* flags to control compilation */ - - /* Cache for reusal of XPath objects */ - void *cache; -}; - -/* - * The structure of a compiled expression form is not public. - */ - -typedef struct _xmlXPathCompExpr xmlXPathCompExpr; -typedef xmlXPathCompExpr *xmlXPathCompExprPtr; - -/** - * xmlXPathParserContext: - * - * An XPath parser context. It contains pure parsing informations, - * an xmlXPathContext, and the stack of objects. - */ -struct _xmlXPathParserContext { - const xmlChar *cur; /* the current char being parsed */ - const xmlChar *base; /* the full expression */ - - int error; /* error code */ - - xmlXPathContextPtr context; /* the evaluation context */ - xmlXPathObjectPtr value; /* the current value */ - int valueNr; /* number of values stacked */ - int valueMax; /* max number of values stacked */ - xmlXPathObjectPtr *valueTab; /* stack of values */ - - xmlXPathCompExprPtr comp; /* the precompiled expression */ - int xptr; /* it this an XPointer expression */ - xmlNodePtr ancestor; /* used for walking preceding axis */ -}; - -/************************************************************************ - * * - * Public API * - * * - ************************************************************************/ - -/** - * Objects and Nodesets handling - */ - -XMLPUBVAR double xmlXPathNAN; -XMLPUBVAR double xmlXPathPINF; -XMLPUBVAR double xmlXPathNINF; - -/* These macros may later turn into functions */ -/** - * xmlXPathNodeSetGetLength: - * @ns: a node-set - * - * Implement a functionality similar to the DOM NodeList.length. - * - * Returns the number of nodes in the node-set. - */ -#define xmlXPathNodeSetGetLength(ns) ((ns) ? (ns)->nodeNr : 0) -/** - * xmlXPathNodeSetItem: - * @ns: a node-set - * @index: index of a node in the set - * - * Implements a functionality similar to the DOM NodeList.item(). - * - * Returns the xmlNodePtr at the given @index in @ns or NULL if - * @index is out of range (0 to length-1) - */ -#define xmlXPathNodeSetItem(ns, index) \ - ((((ns) != NULL) && \ - ((index) >= 0) && ((index) < (ns)->nodeNr)) ? \ - (ns)->nodeTab[(index)] \ - : NULL) -/** - * xmlXPathNodeSetIsEmpty: - * @ns: a node-set - * - * Checks whether @ns is empty or not. - * - * Returns %TRUE if @ns is an empty node-set. - */ -#define xmlXPathNodeSetIsEmpty(ns) \ - (((ns) == NULL) || ((ns)->nodeNr == 0) || ((ns)->nodeTab == NULL)) - - -XMLPUBFUN void XMLCALL - xmlXPathFreeObject (xmlXPathObjectPtr obj); -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathNodeSetCreate (xmlNodePtr val); -XMLPUBFUN void XMLCALL - xmlXPathFreeNodeSetList (xmlXPathObjectPtr obj); -XMLPUBFUN void XMLCALL - xmlXPathFreeNodeSet (xmlNodeSetPtr obj); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathObjectCopy (xmlXPathObjectPtr val); -XMLPUBFUN int XMLCALL - xmlXPathCmpNodes (xmlNodePtr node1, - xmlNodePtr node2); -/** - * Conversion functions to basic types. - */ -XMLPUBFUN int XMLCALL - xmlXPathCastNumberToBoolean (double val); -XMLPUBFUN int XMLCALL - xmlXPathCastStringToBoolean (const xmlChar * val); -XMLPUBFUN int XMLCALL - xmlXPathCastNodeSetToBoolean(xmlNodeSetPtr ns); -XMLPUBFUN int XMLCALL - xmlXPathCastToBoolean (xmlXPathObjectPtr val); - -XMLPUBFUN double XMLCALL - xmlXPathCastBooleanToNumber (int val); -XMLPUBFUN double XMLCALL - xmlXPathCastStringToNumber (const xmlChar * val); -XMLPUBFUN double XMLCALL - xmlXPathCastNodeToNumber (xmlNodePtr node); -XMLPUBFUN double XMLCALL - xmlXPathCastNodeSetToNumber (xmlNodeSetPtr ns); -XMLPUBFUN double XMLCALL - xmlXPathCastToNumber (xmlXPathObjectPtr val); - -XMLPUBFUN xmlChar * XMLCALL - xmlXPathCastBooleanToString (int val); -XMLPUBFUN xmlChar * XMLCALL - xmlXPathCastNumberToString (double val); -XMLPUBFUN xmlChar * XMLCALL - xmlXPathCastNodeToString (xmlNodePtr node); -XMLPUBFUN xmlChar * XMLCALL - xmlXPathCastNodeSetToString (xmlNodeSetPtr ns); -XMLPUBFUN xmlChar * XMLCALL - xmlXPathCastToString (xmlXPathObjectPtr val); - -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathConvertBoolean (xmlXPathObjectPtr val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathConvertNumber (xmlXPathObjectPtr val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathConvertString (xmlXPathObjectPtr val); - -/** - * Context handling. - */ -XMLPUBFUN xmlXPathContextPtr XMLCALL - xmlXPathNewContext (xmlDocPtr doc); -XMLPUBFUN void XMLCALL - xmlXPathFreeContext (xmlXPathContextPtr ctxt); -XMLPUBFUN int XMLCALL - xmlXPathContextSetCache(xmlXPathContextPtr ctxt, - int active, - int value, - int options); -/** - * Evaluation functions. - */ -XMLPUBFUN long XMLCALL - xmlXPathOrderDocElems (xmlDocPtr doc); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathEval (const xmlChar *str, - xmlXPathContextPtr ctx); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathEvalExpression (const xmlChar *str, - xmlXPathContextPtr ctxt); -XMLPUBFUN int XMLCALL - xmlXPathEvalPredicate (xmlXPathContextPtr ctxt, - xmlXPathObjectPtr res); -/** - * Separate compilation/evaluation entry points. - */ -XMLPUBFUN xmlXPathCompExprPtr XMLCALL - xmlXPathCompile (const xmlChar *str); -XMLPUBFUN xmlXPathCompExprPtr XMLCALL - xmlXPathCtxtCompile (xmlXPathContextPtr ctxt, - const xmlChar *str); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathCompiledEval (xmlXPathCompExprPtr comp, - xmlXPathContextPtr ctx); -XMLPUBFUN int XMLCALL - xmlXPathCompiledEvalToBoolean(xmlXPathCompExprPtr comp, - xmlXPathContextPtr ctxt); -XMLPUBFUN void XMLCALL - xmlXPathFreeCompExpr (xmlXPathCompExprPtr comp); -#endif /* LIBXML_XPATH_ENABLED */ -#if defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) -XMLPUBFUN void XMLCALL - xmlXPathInit (void); -XMLPUBFUN int XMLCALL - xmlXPathIsNaN (double val); -XMLPUBFUN int XMLCALL - xmlXPathIsInf (double val); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_XPATH_ENABLED or LIBXML_SCHEMAS_ENABLED*/ -#endif /* ! __XML_XPATH_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xpathInternals.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xpathInternals.h deleted file mode 100644 index dcd52434..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xpathInternals.h +++ /dev/null @@ -1,630 +0,0 @@ -/* - * Summary: internal interfaces for XML Path Language implementation - * Description: internal interfaces for XML Path Language implementation - * used to build new modules on top of XPath like XPointer and - * XSLT - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_XPATH_INTERNALS_H__ -#define __XML_XPATH_INTERNALS_H__ - -#include <libxml/xmlversion.h> -#include <libxml/xpath.h> - -#ifdef LIBXML_XPATH_ENABLED - -#ifdef __cplusplus -extern "C" { -#endif - -/************************************************************************ - * * - * Helpers * - * * - ************************************************************************/ - -/* - * Many of these macros may later turn into functions. They - * shouldn't be used in #ifdef's preprocessor instructions. - */ -/** - * xmlXPathSetError: - * @ctxt: an XPath parser context - * @err: an xmlXPathError code - * - * Raises an error. - */ -#define xmlXPathSetError(ctxt, err) \ - { xmlXPatherror((ctxt), __FILE__, __LINE__, (err)); \ - if ((ctxt) != NULL) (ctxt)->error = (err); } - -/** - * xmlXPathSetArityError: - * @ctxt: an XPath parser context - * - * Raises an XPATH_INVALID_ARITY error. - */ -#define xmlXPathSetArityError(ctxt) \ - xmlXPathSetError((ctxt), XPATH_INVALID_ARITY) - -/** - * xmlXPathSetTypeError: - * @ctxt: an XPath parser context - * - * Raises an XPATH_INVALID_TYPE error. - */ -#define xmlXPathSetTypeError(ctxt) \ - xmlXPathSetError((ctxt), XPATH_INVALID_TYPE) - -/** - * xmlXPathGetError: - * @ctxt: an XPath parser context - * - * Get the error code of an XPath context. - * - * Returns the context error. - */ -#define xmlXPathGetError(ctxt) ((ctxt)->error) - -/** - * xmlXPathCheckError: - * @ctxt: an XPath parser context - * - * Check if an XPath error was raised. - * - * Returns true if an error has been raised, false otherwise. - */ -#define xmlXPathCheckError(ctxt) ((ctxt)->error != XPATH_EXPRESSION_OK) - -/** - * xmlXPathGetDocument: - * @ctxt: an XPath parser context - * - * Get the document of an XPath context. - * - * Returns the context document. - */ -#define xmlXPathGetDocument(ctxt) ((ctxt)->context->doc) - -/** - * xmlXPathGetContextNode: - * @ctxt: an XPath parser context - * - * Get the context node of an XPath context. - * - * Returns the context node. - */ -#define xmlXPathGetContextNode(ctxt) ((ctxt)->context->node) - -XMLPUBFUN int XMLCALL - xmlXPathPopBoolean (xmlXPathParserContextPtr ctxt); -XMLPUBFUN double XMLCALL - xmlXPathPopNumber (xmlXPathParserContextPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlXPathPopString (xmlXPathParserContextPtr ctxt); -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathPopNodeSet (xmlXPathParserContextPtr ctxt); -XMLPUBFUN void * XMLCALL - xmlXPathPopExternal (xmlXPathParserContextPtr ctxt); - -/** - * xmlXPathReturnBoolean: - * @ctxt: an XPath parser context - * @val: a boolean - * - * Pushes the boolean @val on the context stack. - */ -#define xmlXPathReturnBoolean(ctxt, val) \ - valuePush((ctxt), xmlXPathNewBoolean(val)) - -/** - * xmlXPathReturnTrue: - * @ctxt: an XPath parser context - * - * Pushes true on the context stack. - */ -#define xmlXPathReturnTrue(ctxt) xmlXPathReturnBoolean((ctxt), 1) - -/** - * xmlXPathReturnFalse: - * @ctxt: an XPath parser context - * - * Pushes false on the context stack. - */ -#define xmlXPathReturnFalse(ctxt) xmlXPathReturnBoolean((ctxt), 0) - -/** - * xmlXPathReturnNumber: - * @ctxt: an XPath parser context - * @val: a double - * - * Pushes the double @val on the context stack. - */ -#define xmlXPathReturnNumber(ctxt, val) \ - valuePush((ctxt), xmlXPathNewFloat(val)) - -/** - * xmlXPathReturnString: - * @ctxt: an XPath parser context - * @str: a string - * - * Pushes the string @str on the context stack. - */ -#define xmlXPathReturnString(ctxt, str) \ - valuePush((ctxt), xmlXPathWrapString(str)) - -/** - * xmlXPathReturnEmptyString: - * @ctxt: an XPath parser context - * - * Pushes an empty string on the stack. - */ -#define xmlXPathReturnEmptyString(ctxt) \ - valuePush((ctxt), xmlXPathNewCString("")) - -/** - * xmlXPathReturnNodeSet: - * @ctxt: an XPath parser context - * @ns: a node-set - * - * Pushes the node-set @ns on the context stack. - */ -#define xmlXPathReturnNodeSet(ctxt, ns) \ - valuePush((ctxt), xmlXPathWrapNodeSet(ns)) - -/** - * xmlXPathReturnEmptyNodeSet: - * @ctxt: an XPath parser context - * - * Pushes an empty node-set on the context stack. - */ -#define xmlXPathReturnEmptyNodeSet(ctxt) \ - valuePush((ctxt), xmlXPathNewNodeSet(NULL)) - -/** - * xmlXPathReturnExternal: - * @ctxt: an XPath parser context - * @val: user data - * - * Pushes user data on the context stack. - */ -#define xmlXPathReturnExternal(ctxt, val) \ - valuePush((ctxt), xmlXPathWrapExternal(val)) - -/** - * xmlXPathStackIsNodeSet: - * @ctxt: an XPath parser context - * - * Check if the current value on the XPath stack is a node set or - * an XSLT value tree. - * - * Returns true if the current object on the stack is a node-set. - */ -#define xmlXPathStackIsNodeSet(ctxt) \ - (((ctxt)->value != NULL) \ - && (((ctxt)->value->type == XPATH_NODESET) \ - || ((ctxt)->value->type == XPATH_XSLT_TREE))) - -/** - * xmlXPathStackIsExternal: - * @ctxt: an XPath parser context - * - * Checks if the current value on the XPath stack is an external - * object. - * - * Returns true if the current object on the stack is an external - * object. - */ -#define xmlXPathStackIsExternal(ctxt) \ - ((ctxt->value != NULL) && (ctxt->value->type == XPATH_USERS)) - -/** - * xmlXPathEmptyNodeSet: - * @ns: a node-set - * - * Empties a node-set. - */ -#define xmlXPathEmptyNodeSet(ns) \ - { while ((ns)->nodeNr > 0) (ns)->nodeTab[(ns)->nodeNr--] = NULL; } - -/** - * CHECK_ERROR: - * - * Macro to return from the function if an XPath error was detected. - */ -#define CHECK_ERROR \ - if (ctxt->error != XPATH_EXPRESSION_OK) return - -/** - * CHECK_ERROR0: - * - * Macro to return 0 from the function if an XPath error was detected. - */ -#define CHECK_ERROR0 \ - if (ctxt->error != XPATH_EXPRESSION_OK) return(0) - -/** - * XP_ERROR: - * @X: the error code - * - * Macro to raise an XPath error and return. - */ -#define XP_ERROR(X) \ - { xmlXPathErr(ctxt, X); return; } - -/** - * XP_ERROR0: - * @X: the error code - * - * Macro to raise an XPath error and return 0. - */ -#define XP_ERROR0(X) \ - { xmlXPathErr(ctxt, X); return(0); } - -/** - * CHECK_TYPE: - * @typeval: the XPath type - * - * Macro to check that the value on top of the XPath stack is of a given - * type. - */ -#define CHECK_TYPE(typeval) \ - if ((ctxt->value == NULL) || (ctxt->value->type != typeval)) \ - XP_ERROR(XPATH_INVALID_TYPE) - -/** - * CHECK_TYPE0: - * @typeval: the XPath type - * - * Macro to check that the value on top of the XPath stack is of a given - * type. Return(0) in case of failure - */ -#define CHECK_TYPE0(typeval) \ - if ((ctxt->value == NULL) || (ctxt->value->type != typeval)) \ - XP_ERROR0(XPATH_INVALID_TYPE) - -/** - * CHECK_ARITY: - * @x: the number of expected args - * - * Macro to check that the number of args passed to an XPath function matches. - */ -#define CHECK_ARITY(x) \ - if (ctxt == NULL) return; \ - if (nargs != (x)) \ - XP_ERROR(XPATH_INVALID_ARITY); - -/** - * CAST_TO_STRING: - * - * Macro to try to cast the value on the top of the XPath stack to a string. - */ -#define CAST_TO_STRING \ - if ((ctxt->value != NULL) && (ctxt->value->type != XPATH_STRING)) \ - xmlXPathStringFunction(ctxt, 1); - -/** - * CAST_TO_NUMBER: - * - * Macro to try to cast the value on the top of the XPath stack to a number. - */ -#define CAST_TO_NUMBER \ - if ((ctxt->value != NULL) && (ctxt->value->type != XPATH_NUMBER)) \ - xmlXPathNumberFunction(ctxt, 1); - -/** - * CAST_TO_BOOLEAN: - * - * Macro to try to cast the value on the top of the XPath stack to a boolean. - */ -#define CAST_TO_BOOLEAN \ - if ((ctxt->value != NULL) && (ctxt->value->type != XPATH_BOOLEAN)) \ - xmlXPathBooleanFunction(ctxt, 1); - -/* - * Variable Lookup forwarding. - */ - -XMLPUBFUN void XMLCALL - xmlXPathRegisterVariableLookup (xmlXPathContextPtr ctxt, - xmlXPathVariableLookupFunc f, - void *data); - -/* - * Function Lookup forwarding. - */ - -XMLPUBFUN void XMLCALL - xmlXPathRegisterFuncLookup (xmlXPathContextPtr ctxt, - xmlXPathFuncLookupFunc f, - void *funcCtxt); - -/* - * Error reporting. - */ -XMLPUBFUN void XMLCALL - xmlXPatherror (xmlXPathParserContextPtr ctxt, - const char *file, - int line, - int no); - -XMLPUBFUN void XMLCALL - xmlXPathErr (xmlXPathParserContextPtr ctxt, - int error); - -#ifdef LIBXML_DEBUG_ENABLED -XMLPUBFUN void XMLCALL - xmlXPathDebugDumpObject (FILE *output, - xmlXPathObjectPtr cur, - int depth); -XMLPUBFUN void XMLCALL - xmlXPathDebugDumpCompExpr(FILE *output, - xmlXPathCompExprPtr comp, - int depth); -#endif -/** - * NodeSet handling. - */ -XMLPUBFUN int XMLCALL - xmlXPathNodeSetContains (xmlNodeSetPtr cur, - xmlNodePtr val); -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathDifference (xmlNodeSetPtr nodes1, - xmlNodeSetPtr nodes2); -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathIntersection (xmlNodeSetPtr nodes1, - xmlNodeSetPtr nodes2); - -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathDistinctSorted (xmlNodeSetPtr nodes); -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathDistinct (xmlNodeSetPtr nodes); - -XMLPUBFUN int XMLCALL - xmlXPathHasSameNodes (xmlNodeSetPtr nodes1, - xmlNodeSetPtr nodes2); - -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathNodeLeadingSorted (xmlNodeSetPtr nodes, - xmlNodePtr node); -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathLeadingSorted (xmlNodeSetPtr nodes1, - xmlNodeSetPtr nodes2); -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathNodeLeading (xmlNodeSetPtr nodes, - xmlNodePtr node); -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathLeading (xmlNodeSetPtr nodes1, - xmlNodeSetPtr nodes2); - -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathNodeTrailingSorted (xmlNodeSetPtr nodes, - xmlNodePtr node); -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathTrailingSorted (xmlNodeSetPtr nodes1, - xmlNodeSetPtr nodes2); -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathNodeTrailing (xmlNodeSetPtr nodes, - xmlNodePtr node); -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathTrailing (xmlNodeSetPtr nodes1, - xmlNodeSetPtr nodes2); - - -/** - * Extending a context. - */ - -XMLPUBFUN int XMLCALL - xmlXPathRegisterNs (xmlXPathContextPtr ctxt, - const xmlChar *prefix, - const xmlChar *ns_uri); -XMLPUBFUN const xmlChar * XMLCALL - xmlXPathNsLookup (xmlXPathContextPtr ctxt, - const xmlChar *prefix); -XMLPUBFUN void XMLCALL - xmlXPathRegisteredNsCleanup (xmlXPathContextPtr ctxt); - -XMLPUBFUN int XMLCALL - xmlXPathRegisterFunc (xmlXPathContextPtr ctxt, - const xmlChar *name, - xmlXPathFunction f); -XMLPUBFUN int XMLCALL - xmlXPathRegisterFuncNS (xmlXPathContextPtr ctxt, - const xmlChar *name, - const xmlChar *ns_uri, - xmlXPathFunction f); -XMLPUBFUN int XMLCALL - xmlXPathRegisterVariable (xmlXPathContextPtr ctxt, - const xmlChar *name, - xmlXPathObjectPtr value); -XMLPUBFUN int XMLCALL - xmlXPathRegisterVariableNS (xmlXPathContextPtr ctxt, - const xmlChar *name, - const xmlChar *ns_uri, - xmlXPathObjectPtr value); -XMLPUBFUN xmlXPathFunction XMLCALL - xmlXPathFunctionLookup (xmlXPathContextPtr ctxt, - const xmlChar *name); -XMLPUBFUN xmlXPathFunction XMLCALL - xmlXPathFunctionLookupNS (xmlXPathContextPtr ctxt, - const xmlChar *name, - const xmlChar *ns_uri); -XMLPUBFUN void XMLCALL - xmlXPathRegisteredFuncsCleanup (xmlXPathContextPtr ctxt); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathVariableLookup (xmlXPathContextPtr ctxt, - const xmlChar *name); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathVariableLookupNS (xmlXPathContextPtr ctxt, - const xmlChar *name, - const xmlChar *ns_uri); -XMLPUBFUN void XMLCALL - xmlXPathRegisteredVariablesCleanup(xmlXPathContextPtr ctxt); - -/** - * Utilities to extend XPath. - */ -XMLPUBFUN xmlXPathParserContextPtr XMLCALL - xmlXPathNewParserContext (const xmlChar *str, - xmlXPathContextPtr ctxt); -XMLPUBFUN void XMLCALL - xmlXPathFreeParserContext (xmlXPathParserContextPtr ctxt); - -/* TODO: remap to xmlXPathValuePop and Push. */ -XMLPUBFUN xmlXPathObjectPtr XMLCALL - valuePop (xmlXPathParserContextPtr ctxt); -XMLPUBFUN int XMLCALL - valuePush (xmlXPathParserContextPtr ctxt, - xmlXPathObjectPtr value); - -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathNewString (const xmlChar *val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathNewCString (const char *val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathWrapString (xmlChar *val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathWrapCString (char * val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathNewFloat (double val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathNewBoolean (int val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathNewNodeSet (xmlNodePtr val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathNewValueTree (xmlNodePtr val); -XMLPUBFUN void XMLCALL - xmlXPathNodeSetAdd (xmlNodeSetPtr cur, - xmlNodePtr val); -XMLPUBFUN void XMLCALL - xmlXPathNodeSetAddUnique (xmlNodeSetPtr cur, - xmlNodePtr val); -XMLPUBFUN void XMLCALL - xmlXPathNodeSetAddNs (xmlNodeSetPtr cur, - xmlNodePtr node, - xmlNsPtr ns); -XMLPUBFUN void XMLCALL - xmlXPathNodeSetSort (xmlNodeSetPtr set); - -XMLPUBFUN void XMLCALL - xmlXPathRoot (xmlXPathParserContextPtr ctxt); -XMLPUBFUN void XMLCALL - xmlXPathEvalExpr (xmlXPathParserContextPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlXPathParseName (xmlXPathParserContextPtr ctxt); -XMLPUBFUN xmlChar * XMLCALL - xmlXPathParseNCName (xmlXPathParserContextPtr ctxt); - -/* - * Existing functions. - */ -XMLPUBFUN double XMLCALL - xmlXPathStringEvalNumber (const xmlChar *str); -XMLPUBFUN int XMLCALL - xmlXPathEvaluatePredicateResult (xmlXPathParserContextPtr ctxt, - xmlXPathObjectPtr res); -XMLPUBFUN void XMLCALL - xmlXPathRegisterAllFunctions (xmlXPathContextPtr ctxt); -XMLPUBFUN xmlNodeSetPtr XMLCALL - xmlXPathNodeSetMerge (xmlNodeSetPtr val1, - xmlNodeSetPtr val2); -XMLPUBFUN void XMLCALL - xmlXPathNodeSetDel (xmlNodeSetPtr cur, - xmlNodePtr val); -XMLPUBFUN void XMLCALL - xmlXPathNodeSetRemove (xmlNodeSetPtr cur, - int val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathNewNodeSetList (xmlNodeSetPtr val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathWrapNodeSet (xmlNodeSetPtr val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPathWrapExternal (void *val); - -XMLPUBFUN int XMLCALL xmlXPathEqualValues(xmlXPathParserContextPtr ctxt); -XMLPUBFUN int XMLCALL xmlXPathNotEqualValues(xmlXPathParserContextPtr ctxt); -XMLPUBFUN int XMLCALL xmlXPathCompareValues(xmlXPathParserContextPtr ctxt, int inf, int strict); -XMLPUBFUN void XMLCALL xmlXPathValueFlipSign(xmlXPathParserContextPtr ctxt); -XMLPUBFUN void XMLCALL xmlXPathAddValues(xmlXPathParserContextPtr ctxt); -XMLPUBFUN void XMLCALL xmlXPathSubValues(xmlXPathParserContextPtr ctxt); -XMLPUBFUN void XMLCALL xmlXPathMultValues(xmlXPathParserContextPtr ctxt); -XMLPUBFUN void XMLCALL xmlXPathDivValues(xmlXPathParserContextPtr ctxt); -XMLPUBFUN void XMLCALL xmlXPathModValues(xmlXPathParserContextPtr ctxt); - -XMLPUBFUN int XMLCALL xmlXPathIsNodeType(const xmlChar *name); - -/* - * Some of the axis navigation routines. - */ -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextSelf(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextChild(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextDescendant(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextDescendantOrSelf(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextParent(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextAncestorOrSelf(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextFollowingSibling(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextFollowing(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextNamespace(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextAttribute(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextPreceding(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextAncestor(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -XMLPUBFUN xmlNodePtr XMLCALL xmlXPathNextPrecedingSibling(xmlXPathParserContextPtr ctxt, - xmlNodePtr cur); -/* - * The official core of XPath functions. - */ -XMLPUBFUN void XMLCALL xmlXPathLastFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathPositionFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathCountFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathIdFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathLocalNameFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathNamespaceURIFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathStringFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathStringLengthFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathConcatFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathContainsFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathStartsWithFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathSubstringFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathSubstringBeforeFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathSubstringAfterFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathNormalizeFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathTranslateFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathNotFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathTrueFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathFalseFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathLangFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathNumberFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathSumFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathFloorFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathCeilingFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathRoundFunction(xmlXPathParserContextPtr ctxt, int nargs); -XMLPUBFUN void XMLCALL xmlXPathBooleanFunction(xmlXPathParserContextPtr ctxt, int nargs); - -/** - * Really internal functions - */ -XMLPUBFUN void XMLCALL xmlXPathNodeSetFreeNs(xmlNsPtr ns); - -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_XPATH_ENABLED */ -#endif /* ! __XML_XPATH_INTERNALS_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xpointer.h b/Frameworks/libxml.framework/Versions/2.6.30/Headers/xpointer.h deleted file mode 100644 index dde1dfb3..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Headers/xpointer.h +++ /dev/null @@ -1,114 +0,0 @@ -/* - * Summary: API to handle XML Pointers - * Description: API to handle XML Pointers - * Base implementation was made accordingly to - * W3C Candidate Recommendation 7 June 2000 - * http://www.w3.org/TR/2000/CR-xptr-20000607 - * - * Added support for the element() scheme described in: - * W3C Proposed Recommendation 13 November 2002 - * http://www.w3.org/TR/2002/PR-xptr-element-20021113/ - * - * Copy: See Copyright for the status of this software. - * - * Author: Daniel Veillard - */ - -#ifndef __XML_XPTR_H__ -#define __XML_XPTR_H__ - -#include <libxml/xmlversion.h> - -#ifdef LIBXML_XPTR_ENABLED - -#include <libxml/tree.h> -#include <libxml/xpath.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * A Location Set - */ -typedef struct _xmlLocationSet xmlLocationSet; -typedef xmlLocationSet *xmlLocationSetPtr; -struct _xmlLocationSet { - int locNr; /* number of locations in the set */ - int locMax; /* size of the array as allocated */ - xmlXPathObjectPtr *locTab;/* array of locations */ -}; - -/* - * Handling of location sets. - */ - -XMLPUBFUN xmlLocationSetPtr XMLCALL - xmlXPtrLocationSetCreate (xmlXPathObjectPtr val); -XMLPUBFUN void XMLCALL - xmlXPtrFreeLocationSet (xmlLocationSetPtr obj); -XMLPUBFUN xmlLocationSetPtr XMLCALL - xmlXPtrLocationSetMerge (xmlLocationSetPtr val1, - xmlLocationSetPtr val2); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPtrNewRange (xmlNodePtr start, - int startindex, - xmlNodePtr end, - int endindex); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPtrNewRangePoints (xmlXPathObjectPtr start, - xmlXPathObjectPtr end); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPtrNewRangeNodePoint (xmlNodePtr start, - xmlXPathObjectPtr end); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPtrNewRangePointNode (xmlXPathObjectPtr start, - xmlNodePtr end); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPtrNewRangeNodes (xmlNodePtr start, - xmlNodePtr end); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPtrNewLocationSetNodes (xmlNodePtr start, - xmlNodePtr end); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPtrNewLocationSetNodeSet(xmlNodeSetPtr set); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPtrNewRangeNodeObject (xmlNodePtr start, - xmlXPathObjectPtr end); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPtrNewCollapsedRange (xmlNodePtr start); -XMLPUBFUN void XMLCALL - xmlXPtrLocationSetAdd (xmlLocationSetPtr cur, - xmlXPathObjectPtr val); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPtrWrapLocationSet (xmlLocationSetPtr val); -XMLPUBFUN void XMLCALL - xmlXPtrLocationSetDel (xmlLocationSetPtr cur, - xmlXPathObjectPtr val); -XMLPUBFUN void XMLCALL - xmlXPtrLocationSetRemove (xmlLocationSetPtr cur, - int val); - -/* - * Functions. - */ -XMLPUBFUN xmlXPathContextPtr XMLCALL - xmlXPtrNewContext (xmlDocPtr doc, - xmlNodePtr here, - xmlNodePtr origin); -XMLPUBFUN xmlXPathObjectPtr XMLCALL - xmlXPtrEval (const xmlChar *str, - xmlXPathContextPtr ctx); -XMLPUBFUN void XMLCALL - xmlXPtrRangeToFunction (xmlXPathParserContextPtr ctxt, - int nargs); -XMLPUBFUN xmlNodePtr XMLCALL - xmlXPtrBuildNodeList (xmlXPathObjectPtr obj); -XMLPUBFUN void XMLCALL - xmlXPtrEvalRangePredicate (xmlXPathParserContextPtr ctxt); -#ifdef __cplusplus -} -#endif - -#endif /* LIBXML_XPTR_ENABLED */ -#endif /* __XML_XPTR_H__ */ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/Info.plist b/Frameworks/libxml.framework/Versions/2.6.30/Resources/Info.plist deleted file mode 100644 index 3c73e7ac..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> -<plist version="1.0"> -<dict> - <key>CFBundleDevelopmentRegion</key> - <string>English</string> - <key>CFBundleExecutable</key> - <string>libxml</string> - <key>CFBundleIdentifier</key> - <string>org.xmlsoft.libxml2</string> - <key>CFBundleInfoDictionaryVersion</key> - <string>6.0</string> - <key>CFBundlePackageType</key> - <string>FMWK</string> - <key>CFBundleSignature</key> - <string>????</string> - <key>CFBundleVersion</key> - <string>1.0</string> -</dict> -</plist> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/Scripts/xml2-config b/Frameworks/libxml.framework/Versions/2.6.30/Resources/Scripts/xml2-config deleted file mode 100755 index ff389f6c..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/Scripts/xml2-config +++ /dev/null @@ -1,106 +0,0 @@ -#! /bin/sh - -prefix=/usr/local -exec_prefix=${prefix} -includedir=${prefix}/include -libdir=${exec_prefix}/lib - -usage() -{ - cat <<EOF -Usage: xml2-config [OPTION] - -Known values for OPTION are: - - --prefix=DIR change libxml prefix [default $prefix] - --exec-prefix=DIR change libxml exec prefix [default $exec_prefix] - --libs print library linking information - --cflags print pre-processor and compiler flags - --modules module support enabled - --help display this help and exit - --version output version information -EOF - - exit $1 -} - -if test $# -eq 0; then - usage 1 -fi - -cflags=false -libs=false - -while test $# -gt 0; do - case "$1" in - -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; - *) optarg= ;; - esac - - case "$1" in - --prefix=*) - prefix=$optarg - includedir=$prefix/include - libdir=$prefix/lib - ;; - - --prefix) - echo $prefix - ;; - - --exec-prefix=*) - exec_prefix=$optarg - libdir=$exec_prefix/lib - ;; - - --exec-prefix) - echo $exec_prefix - ;; - - --version) - echo 2.6.30 - exit 0 - ;; - - --help) - usage 0 - ;; - - --cflags) - echo -I${includedir}/libxml2 - ;; - - --libtool-libs) - if [ -r ${libdir}/libxml2.la ] - then - echo ${libdir}/libxml2.la - fi - ;; - - --modules) - echo 1 - ;; - - --libs) - if [ "`uname`" = "Linux" ] - then - if [ "-L${libdir}" = "-L/usr/lib64" ] - then - echo -lxml2 -lz -lpthread -liconv -lm - else - echo -L${libdir} -lxml2 -lz -lpthread -liconv -lm - fi - else - echo -L${libdir} -lxml2 -lz -lpthread -liconv -lm - fi - ;; - - *) - usage - exit 1 - ;; - esac - shift -done - -exit 0 diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk0.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk0.html deleted file mode 100644 index 67841cff..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk0.html +++ /dev/null @@ -1,294 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index A-B for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index A-B for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter A:</h2><dl><dt>A-Z</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>A-Za-z</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEncName">xmlParseEncName</a><br /> -</dd><dt>A-Za-z0-9</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEncName">xmlParseEncName</a><br /> -</dd><dt>ABC</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>ABI</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -</dd><dt>ALL</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -</dd><dt>ANY</dt><dd><a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -</dd><dt>APIs</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_LEGACY_ENABLED">LIBXML_LEGACY_ENABLED</a><br /> -</dd><dt>ARRAY</dt><dd><a href="html/libxml-xmlstring.html#xmlStrlen">xmlStrlen</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsize">xmlUTF8Strsize</a><br /> -</dd><dt>ASCII</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#xmlAddEncodingAlias">xmlAddEncodingAlias</a><br /> -<a href="html/libxml-encoding.html#xmlDelEncodingAlias">xmlDelEncodingAlias</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-encoding.html#xmlGetEncodingAlias">xmlGetEncodingAlias</a><br /> -<a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -</dd><dt>ATTLIST</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDAttlist">xmlTextWriterStartDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDEntity">xmlTextWriterStartDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDAttlist">xmlTextWriterWriteDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDAttlist">xmlTextWriterWriteFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDAttlist">xmlTextWriterWriteVFormatDTDAttlist</a><br /> -</dd><dt>ATTRIBUTE</dt><dd><a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -</dd><dt>Absolute</dt><dd><a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -</dd><dt>Accessor</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetValType">xmlSchemaGetValType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsBoolean">xmlSchemaValueGetAsBoolean</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsString">xmlSchemaValueGetAsString</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetNext">xmlSchemaValueGetNext</a><br /> -</dd><dt>Activation</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -</dd><dt>Actually</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -</dd><dt>Add</dt><dd><a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddChildList">xmlAddChildList</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddSibling">xmlAddSibling</a><br /> -<a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferAddHead">xmlBufferAddHead</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAddLocal">xmlCatalogAddLocal</a><br /> -<a href="html/libxml-dict.html#xmlDictLookup">xmlDictLookup</a><br /> -<a href="html/libxml-dict.html#xmlDictQLookup">xmlDictQLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -</dd><dt>Additional</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-globals.html#xmlCleanupGlobals">xmlCleanupGlobals</a><br /> -<a href="html/libxml-globals.html#xmlInitGlobals">xmlInitGlobals</a><br /> -</dd><dt>AegeanNumbers</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsAegeanNumbers">xmlUCSIsAegeanNumbers</a><br /> -</dd><dt>All</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDocument">xmlTextWriterEndDocument</a><br /> -</dd><dt>Allocate</dt><dd><a href="html/libxml-HTMLparser.html#htmlNewParserCtxt">htmlNewParserCtxt</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPNewCtxt">xmlNanoFTPNewCtxt</a><br /> -<a href="html/libxml-valid.html#xmlNewDocElementContent">xmlNewDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlNewElementContent">xmlNewElementContent</a><br /> -<a href="html/libxml-parser.html#xmlNewParserCtxt">xmlNewParserCtxt</a><br /> -<a href="html/libxml-valid.html#xmlNewValidCtxt">xmlNewValidCtxt</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewFacet">xmlSchemaNewFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewNOTATIONValue">xmlSchemaNewNOTATIONValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewQNameValue">xmlSchemaNewQNameValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -</dd><dt>Allocates</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapNewCtxt">xmlDOMWrapNewCtxt</a><br /> -</dd><dt>Allows</dt><dd><a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -</dd><dt>AlphabeticPresentationForms</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsAlphabeticPresentationForms">xmlUCSIsAlphabeticPresentationForms</a><br /> -</dd><dt>Also</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -</dd><dt>Always</dt><dd><a href="html/libxml-parserInternals.html#IS_COMBINING_CH">IS_COMBINING_CH</a><br /> -</dd><dt>Append</dt><dd><a href="html/libxml-tree.html#xmlBufferCCat">xmlBufferCCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferCat">xmlBufferCat</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -</dd><dt>Appendix</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -</dd><dt>Appends</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaValueAppend">xmlSchemaValueAppend</a><br /> -</dd><dt>Applies</dt><dd><a href="html/libxml-HTMLparser.html#htmlCtxtUseOptions">htmlCtxtUseOptions</a><br /> -<a href="html/libxml-parser.html#xmlCtxtUseOptions">xmlCtxtUseOptions</a><br /> -<a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompiledEvalToBoolean">xmlXPathCompiledEvalToBoolean</a><br /> -</dd><dt>Apply</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a><br /> -</dd><dt>Arabic</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsArabic">xmlUCSIsArabic</a><br /> -</dd><dt>ArabicPresentationForms-A</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsArabicPresentationFormsA">xmlUCSIsArabicPresentationFormsA</a><br /> -</dd><dt>ArabicPresentationForms-B</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsArabicPresentationFormsB">xmlUCSIsArabicPresentationFormsB</a><br /> -</dd><dt>Armenian</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsArmenian">xmlUCSIsArmenian</a><br /> -</dd><dt>Array</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -</dd><dt>Arrows</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsArrows">xmlUCSIsArrows</a><br /> -</dd><dt>Associate</dt><dd><a href="html/libxml-tree.html#xmlSetNs">xmlSetNs</a><br /> -</dd><dt>Att</dt><dd><a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -</dd><dt>AttDef</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeListDecl">xmlParseAttributeListDecl</a><br /> -</dd><dt>AttType</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeListDecl">xmlParseAttributeListDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -</dd><dt>AttValue</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseElement">htmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>AttlistDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeListDecl">xmlParseAttributeListDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>Attribute</dt><dd><a href="html/libxml-tree.html#_xmlAttribute">_xmlAttribute</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseElement">htmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeListDecl">xmlParseAttributeListDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsDefault">xmlTextReaderIsDefault</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToElement">xmlTextReaderMoveToElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -</dd><dt>Attribute-Value</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -</dd><dt>Attributes</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a><br /> -</dd><dt>Automatic</dt><dd><a href="html/libxml-DOCBparser.html#docbCreateFileParserCtxt">docbCreateFileParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseFile">docbParseFile</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-parserInternals.html#htmlCreateFileParserCtxt">htmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseFile">htmlParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateFileParserCtxt">xmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateURLParserCtxt">xmlCreateURLParserCtxt</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-parser.html#xmlParseFile">xmlParseFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-parser.html#xmlRecoverFile">xmlRecoverFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseFile">xmlSAXUserParseFile</a><br /> -</dd><dt>Automatically</dt><dd><a href="html/libxml-chvalid.html#xmlIsBaseCharQ">xmlIsBaseCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseChar_ch">xmlIsBaseChar_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlankQ">xmlIsBlankQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlank_ch">xmlIsBlank_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCharQ">xmlIsCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsChar_ch">xmlIsChar_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombiningQ">xmlIsCombiningQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigitQ">xmlIsDigitQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigit_ch">xmlIsDigit_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtenderQ">xmlIsExtenderQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtender_ch">xmlIsExtender_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographicQ">xmlIsIdeographicQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidCharQ">xmlIsPubidCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar_ch">xmlIsPubidChar_ch</a><br /> -</dd></dl><h2>Letter B:</h2><dl><dt>BASE</dt><dd><a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -</dd><dt>BAr</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>BOM</dt><dd><a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -</dd><dt>Balanced</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseEntity">xmlParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -</dd><dt>Base</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -</dd><dt>BaseChar</dt><dd><a href="html/libxml-parserInternals.html#IS_BASECHAR">IS_BASECHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_LETTER">IS_LETTER</a><br /> -<a href="html/libxml-parserInternals.html#xmlIsLetter">xmlIsLetter</a><br /> -</dd><dt>Based</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -</dd><dt>BasicLatin</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsBasicLatin">xmlUCSIsBasicLatin</a><br /> -</dd><dt>Basically</dt><dd><a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -</dd><dt>Before</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -</dd><dt>Behaves</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR_CH">IS_CHAR_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_DIGIT_CH">IS_DIGIT_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_EXTENDER_CH">IS_EXTENDER_CH</a><br /> -</dd><dt>Behaviour</dt><dd><a href="html/libxml-parserInternals.html#IS_BLANK_CH">IS_BLANK_CH</a><br /> -</dd><dt>Bengali</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsBengali">xmlUCSIsBengali</a><br /> -</dd><dt>Best</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>BinHex</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBinHex">xmlTextWriterWriteBinHex</a><br /> -</dd><dt>Bit</dt><dd><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-parser.html#XML_DETECT_IDS">XML_DETECT_IDS</a><br /> -<a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -</dd><dt>BlockElements</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsBlockElements">xmlUCSIsBlockElements</a><br /> -</dd><dt>Blocks</dt><dd><a href="html/libxml-parser.html#xmlStopParser">xmlStopParser</a><br /> -</dd><dt>Bopomofo</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsBopomofo">xmlUCSIsBopomofo</a><br /> -</dd><dt>BopomofoExtended</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsBopomofoExtended">xmlUCSIsBopomofoExtended</a><br /> -</dd><dt>Both</dt><dd><a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_BOTH">XML_SUBSTITUTE_BOTH</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>BoxDrawing</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsBoxDrawing">xmlUCSIsBoxDrawing</a><br /> -</dd><dt>BraillePatterns</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsBraillePatterns">xmlUCSIsBraillePatterns</a><br /> -</dd><dt>Brzozowski</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpStringDerive">xmlExpStringDerive</a><br /> -</dd><dt>Buffer</dt><dd><a href="html/libxml-parser.html#xmlIOParseDTD">xmlIOParseDTD</a><br /> -</dd><dt>Bugs:</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>Buhid</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsBuhid">xmlUCSIsBuhid</a><br /> -</dd><dt>Build</dt><dd><a href="html/libxml-valid.html#xmlCopyAttributeTable">xmlCopyAttributeTable</a><br /> -<a href="html/libxml-valid.html#xmlCopyDocElementContent">xmlCopyDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlCopyElementContent">xmlCopyElementContent</a><br /> -<a href="html/libxml-valid.html#xmlCopyElementTable">xmlCopyElementTable</a><br /> -<a href="html/libxml-entities.html#xmlCopyEntitiesTable">xmlCopyEntitiesTable</a><br /> -<a href="html/libxml-valid.html#xmlCopyNotationTable">xmlCopyNotationTable</a><br /> -<a href="html/libxml-tree.html#xmlGetNodePath">xmlGetNodePath</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -<a href="html/libxml-valid.html#xmlValidBuildContentModel">xmlValidBuildContentModel</a><br /> -<a href="html/libxml-valid.html#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a><br /> -</dd><dt>Builds</dt><dd><a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -</dd><dt>But</dt><dd><a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -</dd><dt>ByzantineMusicalSymbols</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsByzantineMusicalSymbols">xmlUCSIsByzantineMusicalSymbols</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk1.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk1.html deleted file mode 100644 index 881aedf4..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk1.html +++ /dev/null @@ -1,382 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index C-C for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index C-C for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter C:</h2><dl><dt>C14N</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>CATALOG</dt><dd><a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -</dd><dt>CDATA</dt><dd><a href="html/libxml-HTMLtree.html#HTML_PRESERVE_NODE">HTML_PRESERVE_NODE</a><br /> -<a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-tree.html#xmlNewCDataBlock">xmlNewCDataBlock</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndCDATA">xmlTextWriterEndCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartCDATA">xmlTextWriterStartCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteCDATA">xmlTextWriterWriteCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatCDATA">xmlTextWriterWriteFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatCDATA">xmlTextWriterWriteVFormatCDATA</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -</dd><dt>CDEnd</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -</dd><dt>CDSect</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseContent">xmlParseContent</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -</dd><dt>CDStart</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -</dd><dt>CData</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushCData">xmlRelaxNGValidatePushCData</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushCData">xmlValidatePushCData</a><br /> -</dd><dt>CJKCompatibility</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibility">xmlUCSIsCJKCompatibility</a><br /> -</dd><dt>CJKCompatibilityForms</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibilityForms">xmlUCSIsCJKCompatibilityForms</a><br /> -</dd><dt>CJKCompatibilityIdeographs</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibilityIdeographs">xmlUCSIsCJKCompatibilityIdeographs</a><br /> -</dd><dt>CJKCompatibilityIdeographsSupplement</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibilityIdeographsSupplement">xmlUCSIsCJKCompatibilityIdeographsSupplement</a><br /> -</dd><dt>CJKRadicalsSupplement</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCJKRadicalsSupplement">xmlUCSIsCJKRadicalsSupplement</a><br /> -</dd><dt>CJKSymbolsandPunctuation</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCJKSymbolsandPunctuation">xmlUCSIsCJKSymbolsandPunctuation</a><br /> -</dd><dt>CJKUnifiedIdeographs</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCJKUnifiedIdeographs">xmlUCSIsCJKUnifiedIdeographs</a><br /> -</dd><dt>CJKUnifiedIdeographsExtensionA</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCJKUnifiedIdeographsExtensionA">xmlUCSIsCJKUnifiedIdeographsExtensionA</a><br /> -</dd><dt>CJKUnifiedIdeographsExtensionB</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCJKUnifiedIdeographsExtensionB">xmlUCSIsCJKUnifiedIdeographsExtensionB</a><br /> -</dd><dt>CVS</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_VERSION_EXTRA">LIBXML_VERSION_EXTRA</a><br /> -</dd><dt>CWD</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPCwd">xmlNanoFTPCwd</a><br /> -</dd><dt>Cache</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -</dd><dt>Call</dt><dd><a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -<a href="html/libxml-parser.html#xmlInitParser">xmlInitParser</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>Callback</dt><dd><a href="html/libxml-SAX.html#externalSubset">externalSubset</a><br /> -<a href="html/libxml-parser.html#externalSubsetSAXFunc">externalSubsetSAXFunc</a><br /> -<a href="html/libxml-SAX.html#internalSubset">internalSubset</a><br /> -<a href="html/libxml-parser.html#internalSubsetSAXFunc">internalSubsetSAXFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -<a href="html/libxml-hash.html#xmlHashCopier">xmlHashCopier</a><br /> -<a href="html/libxml-hash.html#xmlHashDeallocator">xmlHashDeallocator</a><br /> -<a href="html/libxml-hash.html#xmlHashScanner">xmlHashScanner</a><br /> -<a href="html/libxml-hash.html#xmlHashScannerFull">xmlHashScannerFull</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a><br /> -<a href="html/libxml-list.html#xmlListDataCompare">xmlListDataCompare</a><br /> -<a href="html/libxml-list.html#xmlListDeallocator">xmlListDeallocator</a><br /> -<a href="html/libxml-list.html#xmlListWalker">xmlListWalker</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a><br /> -<a href="html/libxml-parser.html#xmlParserInputDeallocate">xmlParserInputDeallocate</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ExternalSubset">xmlSAX2ExternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InternalSubset">xmlSAX2InternalSubset</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>Callback:</dt><dd><a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -</dd><dt>Called</dt><dd><a href="html/libxml-parser.html#cdataBlockSAXFunc">cdataBlockSAXFunc</a><br /> -<a href="html/libxml-parser.html#endDocumentSAXFunc">endDocumentSAXFunc</a><br /> -<a href="html/libxml-parser.html#endElementSAXFunc">endElementSAXFunc</a><br /> -<a href="html/libxml-parser.html#referenceSAXFunc">referenceSAXFunc</a><br /> -<a href="html/libxml-parser.html#startDocumentSAXFunc">startDocumentSAXFunc</a><br /> -<a href="html/libxml-parser.html#startElementSAXFunc">startElementSAXFunc</a><br /> -</dd><dt>Calling</dt><dd><a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a><br /> -</dd><dt>Canonical</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>Canonicalization</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_C14N_ENABLED">LIBXML_C14N_ENABLED</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>Carl</dt><dd><a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd><dt>Catalog</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_CATALOG_ENABLED">LIBXML_CATALOG_ENABLED</a><br /> -<a href="html/libxml-catalog.html#XML_CATALOG_PI">XML_CATALOG_PI</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogDump">xmlACatalogDump</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogRemove">xmlACatalogRemove</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolve">xmlACatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolvePublic">xmlACatalogResolvePublic</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveSystem">xmlACatalogResolveSystem</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveURI">xmlACatalogResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -<a href="html/libxml-catalog.html#xmlFreeCatalog">xmlFreeCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-catalog.html#xmlNewCatalog">xmlNewCatalog</a><br /> -</dd><dt>Catalogs</dt><dd><a href="html/libxml-catalog.html#XML_CATALOGS_NAMESPACE">XML_CATALOGS_NAMESPACE</a><br /> -<a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -</dd><dt>Change</dt><dd><a href="html/libxml-parser.html#xmlSetFeature">xmlSetFeature</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -</dd><dt>Changes</dt><dd><a href="html/libxml-parser.html#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a><br /> -</dd><dt>Char</dt><dd><a href="html/libxml-parserInternals.html#IS_BYTE_CHAR">IS_BYTE_CHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePI">xmlParsePI</a><br /> -</dd><dt>CharData</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseContent">xmlParseContent</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -</dd><dt>CharRef</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseCharRef">htmlParseCharRef</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -</dd><dt>Character</dt><dd><a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -</dd><dt>Characters</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -</dd><dt>Checka</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -</dd><dt>Checks</dt><dd><a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHere">htmlElementAllowedHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHereDesc">htmlElementAllowedHereDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementStatusHere">htmlElementStatusHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataIsDeterminist">xmlAutomataIsDeterminist</a><br /> -<a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -<a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-tree.html#xmlIsBlankNode">xmlIsBlankNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetIsEmpty">xmlXPathNodeSetIsEmpty</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStackIsExternal">xmlXPathStackIsExternal</a><br /> -</dd><dt>Cherokee</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCherokee">xmlUCSIsCherokee</a><br /> -</dd><dt>Children</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -</dd><dt>Chunk</dt><dd><a href="html/libxml-DOCBparser.html#docbParseChunk">docbParseChunk</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseChunk">htmlParseChunk</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseChunk">xmlParseChunk</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -</dd><dt>Cleanup</dt><dd><a href="html/libxml-encoding.html#xmlCleanupCharEncodingHandlers">xmlCleanupCharEncodingHandlers</a><br /> -<a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-entities.html#xmlCleanupPredefinedEntities">xmlCleanupPredefinedEntities</a><br /> -<a href="html/libxml-xmlerror.html#xmlCtxtResetLastError">xmlCtxtResetLastError</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCleanup">xmlNanoFTPCleanup</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPCleanup">xmlNanoHTTPCleanup</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGCleanupTypes">xmlRelaxNGCleanupTypes</a><br /> -<a href="html/libxml-xmlerror.html#xmlResetError">xmlResetError</a><br /> -<a href="html/libxml-xmlerror.html#xmlResetLastError">xmlResetLastError</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCleanupTypes">xmlSchemaCleanupTypes</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeValue">xmlSchemaFreeValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredFuncsCleanup">xmlXPathRegisteredFuncsCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredNsCleanup">xmlXPathRegisteredNsCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredVariablesCleanup">xmlXPathRegisteredVariablesCleanup</a><br /> -</dd><dt>Clear</dt><dd><a href="html/libxml-parser.html#xmlClearNodeInfoSeq">xmlClearNodeInfoSeq</a><br /> -<a href="html/libxml-parser.html#xmlClearParserCtxt">xmlClearParserCtxt</a><br /> -<a href="html/libxml-xmlIO.html#xmlPopInputCallbacks">xmlPopInputCallbacks</a><br /> -</dd><dt>Clears</dt><dd><a href="html/libxml-parser.html#xmlSetupParserForBuffer">xmlSetupParserForBuffer</a><br /> -</dd><dt>Close</dt><dd><a href="html/libxml-xmlIO.html#xmlFileClose">xmlFileClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPClose">xmlIOFTPClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPClose">xmlIOHTTPClose</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPClose">xmlNanoFTPClose</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCloseConnection">xmlNanoFTPCloseConnection</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveClose">xmlSaveClose</a><br /> -</dd><dt>Closed</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderClose">xmlTextReaderClose</a><br /> -</dd><dt>CombiningChar</dt><dd><a href="html/libxml-parserInternals.html#IS_COMBINING">IS_COMBINING</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseName">xmlParseName</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseNCName">xmlXPathParseNCName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseName">xmlXPathParseName</a><br /> -</dd><dt>CombiningDiacriticalMarks</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCombiningDiacriticalMarks">xmlUCSIsCombiningDiacriticalMarks</a><br /> -</dd><dt>CombiningDiacriticalMarksforSymbols</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCombiningDiacriticalMarksforSymbols">xmlUCSIsCombiningDiacriticalMarksforSymbols</a><br /> -</dd><dt>CombiningHalfMarks</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCombiningHalfMarks">xmlUCSIsCombiningHalfMarks</a><br /> -</dd><dt>CombiningMarksforSymbols</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCombiningMarksforSymbols">xmlUCSIsCombiningMarksforSymbols</a><br /> -</dd><dt>Comment</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseContent">xmlParseContent</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMisc">xmlParseMisc</a><br /> -</dd><dt>Compare</dt><dd><a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCompareValues">xmlSchemaCompareValues</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCompareValuesWhtsp">xmlSchemaCompareValuesWhtsp</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCmpNodes">xmlXPathCmpNodes</a><br /> -</dd><dt>Compile</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataCompile">xmlAutomataCompile</a><br /> -<a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompile">xmlXPathCompile</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCtxtCompile">xmlXPathCtxtCompile</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -</dd><dt>Compress</dt><dd><a href="html/libxml-DOCBparser.html#docbCreateFileParserCtxt">docbCreateFileParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseFile">docbParseFile</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-parserInternals.html#htmlCreateFileParserCtxt">htmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseFile">htmlParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateFileParserCtxt">xmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateURLParserCtxt">xmlCreateURLParserCtxt</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-parser.html#xmlParseFile">xmlParseFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-parser.html#xmlRecoverFile">xmlRecoverFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseFile">xmlSAXUserParseFile</a><br /> -</dd><dt>Computes</dt><dd><a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -</dd><dt>Concat</dt><dd><a href="html/libxml-tree.html#xmlTextConcat">xmlTextConcat</a><br /> -</dd><dt>Constructs</dt><dd><a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -</dd><dt>Content</dt><dd><a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -</dd><dt>Content-Type</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -</dd><dt>Contrary</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -</dd><dt>ControlPictures</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsControlPictures">xmlUCSIsControlPictures</a><br /> -</dd><dt>Convenient</dt><dd><a href="html/libxml-debugXML.html#xmlBoolToText">xmlBoolToText</a><br /> -</dd><dt>Convert</dt><dd><a href="html/libxml-catalog.html#xmlCatalogConvert">xmlCatalogConvert</a><br /> -<a href="html/libxml-catalog.html#xmlConvertSGMLCatalog">xmlConvertSGMLCatalog</a><br /> -</dd><dt>Converts</dt><dd><a href="html/libxml-xpath.html#xmlXPathCastBooleanToNumber">xmlXPathCastBooleanToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastBooleanToString">xmlXPathCastBooleanToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToBoolean">xmlXPathCastNodeSetToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToNumber">xmlXPathCastNodeSetToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToString">xmlXPathCastNodeSetToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeToNumber">xmlXPathCastNodeToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeToString">xmlXPathCastNodeToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNumberToBoolean">xmlXPathCastNumberToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNumberToString">xmlXPathCastNumberToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastStringToBoolean">xmlXPathCastStringToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastStringToNumber">xmlXPathCastStringToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToBoolean">xmlXPathCastToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToNumber">xmlXPathCastToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToString">xmlXPathCastToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertBoolean">xmlXPathConvertBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertNumber">xmlXPathConvertNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertString">xmlXPathConvertString</a><br /> -</dd><dt>Copies</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaCopyValue">xmlSchemaCopyValue</a><br /> -</dd><dt>Copy</dt><dd><a href="html/libxml-valid.html#xmlCopyEnumeration">xmlCopyEnumeration</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>Correct</dt><dd><a href="html/libxml-tree.html#xmlSetCompressMode">xmlSetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetDocCompressMode">xmlSetDocCompressMode</a><br /> -</dd><dt>Could</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -</dd><dt>Count</dt><dd><a href="html/libxml-debugXML.html#xmlLsCountNode">xmlLsCountNode</a><br /> -</dd><dt>Creates</dt><dd><a href="html/libxml-HTMLtree.html#htmlNewDoc">htmlNewDoc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDocNoDtD">htmlNewDocNoDtD</a><br /> -<a href="html/libxml-parser.html#xmlCreateDocParserCtxt">xmlCreateDocParserCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewCtxt">xmlExpNewCtxt</a><br /> -<a href="html/libxml-tree.html#xmlNewDoc">xmlNewDoc</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeNewContext">xmlXIncludeNewContext</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>Creation</dt><dd><a href="html/libxml-tree.html#xmlNewCDataBlock">xmlNewCDataBlock</a><br /> -<a href="html/libxml-tree.html#xmlNewCharRef">xmlNewCharRef</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewComment">xmlNewComment</a><br /> -<a href="html/libxml-tree.html#xmlNewDocComment">xmlNewDocComment</a><br /> -<a href="html/libxml-tree.html#xmlNewDocFragment">xmlNewDocFragment</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewDocPI">xmlNewDocPI</a><br /> -<a href="html/libxml-tree.html#xmlNewDocRawNode">xmlNewDocRawNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocText">xmlNewDocText</a><br /> -<a href="html/libxml-tree.html#xmlNewDocTextLen">xmlNewDocTextLen</a><br /> -<a href="html/libxml-tree.html#xmlNewDtd">xmlNewDtd</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -<a href="html/libxml-tree.html#xmlNewNode">xmlNewNode</a><br /> -<a href="html/libxml-tree.html#xmlNewNodeEatName">xmlNewNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-tree.html#xmlNewPI">xmlNewPI</a><br /> -<a href="html/libxml-tree.html#xmlNewReference">xmlNewReference</a><br /> -<a href="html/libxml-tree.html#xmlNewText">xmlNewText</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-tree.html#xmlNewTextLen">xmlNewTextLen</a><br /> -</dd><dt>CurrencySymbols</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCurrencySymbols">xmlUCSIsCurrencySymbols</a><br /> -</dd><dt>Current</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -</dd><dt>Currently</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPInit">xmlNanoFTPInit</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPInit">xmlNanoHTTPInit</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -</dd><dt>Cut</dt><dd><a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>CypriotSyllabary</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCypriotSyllabary">xmlUCSIsCypriotSyllabary</a><br /> -</dd><dt>Cyrillic</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCyrillic">xmlUCSIsCyrillic</a><br /> -</dd><dt>CyrillicSupplement</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCyrillicSupplement">xmlUCSIsCyrillicSupplement</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk10.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk10.html deleted file mode 100644 index 49042c0a..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk10.html +++ /dev/null @@ -1,612 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index a-a for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index a-a for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter a:</h2><dl><dt>a-z</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -<a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -</dd><dt>a-zA-Z</dt><dd><a href="html/libxml-parserInternals.html#IS_ASCII_LETTER">IS_ASCII_LETTER</a><br /> -</dd><dt>a-zA-Z0-9</dt><dd><a href="html/libxml-parserInternals.html#IS_PUBIDCHAR">IS_PUBIDCHAR</a><br /> -</dd><dt>a-zA-Z0-9_</dt><dd><a href="html/libxml-parserInternals.html#xmlParseVersionNum">xmlParseVersionNum</a><br /> -</dd><dt>a@b</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -</dd><dt>abc</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>abc-</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>able</dt><dd><a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -<a href="html/libxml-encoding.html#xmlFindCharEncodingHandler">xmlFindCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingHandler">xmlGetCharEncodingHandler</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>about</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpString">xmlDebugDumpString</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDir">xmlShellDir</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRawLen">xmlTextWriterWriteRawLen</a><br /> -</dd><dt>above</dt><dd><a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>absent</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_ABSENT">XML_SCHEMAS_ELEM_BLOCK_ABSENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_EXTENSION">XML_SCHEMAS_ELEM_BLOCK_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -</dd><dt>absoluteURI</dt><dd><a href="html/libxml-uri.html#xmlParseURI">xmlParseURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -<a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> -</dd><dt>abstract</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_ABSTRACT">XML_SCHEMAS_ELEM_ABSTRACT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a><br /> -</dd><dt>accept</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpMaxToken">xmlExpMaxToken</a><br /> -<a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -</dd><dt>acceptable</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -</dd><dt>accepted</dt><dd><a href="html/libxml-parserInternals.html#IS_BYTE_CHAR">IS_BYTE_CHAR</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetDefaults">xmlCatalogGetDefaults</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaults">xmlCatalogSetDefaults</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -</dd><dt>accepting</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -</dd><dt>accepts</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpIsNillable">xmlExpIsNillable</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpSubsume">xmlExpSubsume</a><br /> -</dd><dt>access</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-threads.html#xmlNewMutex">xmlNewMutex</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -</dd><dt>accessed</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -</dd><dt>accesses</dt><dd><a href="html/libxml-parserInternals.html#xmlCreateURLParserCtxt">xmlCreateURLParserCtxt</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -</dd><dt>accexpted</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpSubsume">xmlExpSubsume</a><br /> -</dd><dt>accommodate</dt><dd><a href="html/libxml-tree.html#xmlBufferResize">xmlBufferResize</a><br /> -</dd><dt>according</dt><dd><a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -<a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -<a href="html/libxml-SAX2.html#xmlSAXVersion">xmlSAXVersion</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -</dd><dt>accordingly</dt><dd><a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -</dd><dt>account</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -</dd><dt>acquire</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -</dd><dt>act</dt><dd><a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>action</dt><dd><a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -</dd><dt>activate</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -</dd><dt>activated</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -</dd><dt>activates</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>activation</dt><dd><a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> -</dd><dt>acts</dt><dd><a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -</dd><dt>actual</dt><dd><a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeNodeSet">xmlXPathFreeNodeSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrFreeLocationSet">xmlXPtrFreeLocationSet</a><br /> -</dd><dt>actually</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-encoding.html#xmlAddEncodingAlias">xmlAddEncodingAlias</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-encoding.html#xmlDelEncodingAlias">xmlDelEncodingAlias</a><br /> -<a href="html/libxml-encoding.html#xmlGetEncodingAlias">xmlGetEncodingAlias</a><br /> -<a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringCurrentChar">xmlStringCurrentChar</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>actuate</dt><dd><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -</dd><dt>add</dt><dd><a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferAddHead">xmlBufferAddHead</a><br /> -<a href="html/libxml-tree.html#xmlBufferCat">xmlBufferCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteCHAR">xmlBufferWriteCHAR</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteChar">xmlBufferWriteChar</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-list.html#xmlListPushBack">xmlListPushBack</a><br /> -<a href="html/libxml-list.html#xmlListPushFront">xmlListPushFront</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAdd">xmlXPathNodeSetAdd</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddNs">xmlXPathNodeSetAddNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a><br /> -</dd><dt>added</dt><dd><a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocContentDumpFormatOutput">htmlDocContentDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocContentDumpOutput">htmlDocContentDumpOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemoryFormat">htmlDocDumpMemoryFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDump">htmlNodeDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFile">htmlNodeDumpFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpOutput">htmlNodeDumpOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFileEnc">htmlSaveFileEnc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFileFormat">htmlSaveFileFormat</a><br /> -<a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncat">xmlStrncat</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -</dd><dt>adding</dt><dd><a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -</dd><dt>addition</dt><dd><a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>additional</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -</dd><dt>additionally</dt><dd><a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</dd><dt>address</dt><dd><a href="html/libxml-xmlmodule.html#xmlModuleSymbol">xmlModuleSymbol</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> -</dd><dt>adds</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteCHAR">xmlBufferWriteCHAR</a><br /> -</dd><dt>adequate</dt><dd><a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -</dd><dt>adjacent</dt><dd><a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddChildList">xmlAddChildList</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddSibling">xmlAddSibling</a><br /> -</dd><dt>affect</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -</dd><dt>affiliation</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -</dd><dt>afraid</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -</dd><dt>after</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataCompile">xmlAutomataCompile</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCheckResponse">xmlNanoFTPCheckResponse</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPFreeCtxt">xmlNanoFTPFreeCtxt</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetResponse">xmlNanoFTPGetResponse</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>again</dt><dd><a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -</dd><dt>against</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_TEST_VERSION">LIBXML_TEST_VERSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_CHECKED">XML_SCHEMAS_ELEM_INTERNAL_CHECKED</a><br /> -<a href="html/libxml-SAX.html#checkNamespace">checkNamespace</a><br /> -<a href="html/libxml-xmlversion.html#xmlCheckVersion">xmlCheckVersion</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpExec">xmlRegexpExec</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidateDoc">xmlSchematronValidateDoc</a><br /> -<a href="html/libxml-debugXML.html#xmlShellValidate">xmlShellValidate</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -</dd><dt>aggregate</dt><dd><a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -</dd><dt>algebraic</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -</dd><dt>alias</dt><dd><a href="html/libxml-encoding.html#xmlAddEncodingAlias">xmlAddEncodingAlias</a><br /> -<a href="html/libxml-encoding.html#xmlDelEncodingAlias">xmlDelEncodingAlias</a><br /> -<a href="html/libxml-encoding.html#xmlGetEncodingAlias">xmlGetEncodingAlias</a><br /> -</dd><dt>aliases</dt><dd><a href="html/libxml-encoding.html#xmlCleanupCharEncodingHandlers">xmlCleanupCharEncodingHandlers</a><br /> -<a href="html/libxml-encoding.html#xmlCleanupEncodingAliases">xmlCleanupEncodingAliases</a><br /> -</dd><dt>aliasing</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -<a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -</dd><dt>allocate</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-tree.html#xmlBufferGrow">xmlBufferGrow</a><br /> -<a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-threads.html#xmlNewMutex">xmlNewMutex</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathObjectCopy">xmlXPathObjectCopy</a><br /> -</dd><dt>allocation</dt><dd><a href="html/libxml-HTMLparser.html#htmlNewParserCtxt">htmlNewParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlBufferSetAllocationScheme">xmlBufferSetAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemStrdupLoc">xmlMemStrdupLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryStrdup">xmlMemoryStrdup</a><br /> -<a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>allocations</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-parser.html#xmlParserInputDeallocate">xmlParserInputDeallocate</a><br /> -</dd><dt>allocator</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -</dd><dt>allocators</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -</dd><dt>allow</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_GLOBAL">XML_SCHEMAS_ATTR_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_NSDEFAULT">XML_SCHEMAS_ATTR_NSDEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_NSDEFAULT">XML_SCHEMAS_ELEM_NSDEFAULT</a><br /> -<a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> -<a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> -<a href="html/libxml-tree.html#xmlValidateName">xmlValidateName</a><br /> -<a href="html/libxml-tree.html#xmlValidateQName">xmlValidateQName</a><br /> -</dd><dt>allowable</dt><dd><a href="html/libxml-parserInternals.html#xmlSkipBlankChars">xmlSkipBlankChars</a><br /> -</dd><dt>allowed</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-tree.html#_xmlElement">_xmlElement</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaWildcard">_xmlSchemaWildcard</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHere">htmlElementAllowedHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHereDesc">htmlElementAllowedHereDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-parserInternals.html#xmlIsLetter">xmlIsLetter</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-valid.html#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -</dd><dt>allowing</dt><dd><a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -</dd><dt>allows</dt><dd><a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> -</dd><dt>already</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a><br /> -<a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddSibling">xmlAddSibling</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -<a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a><br /> -<a href="html/libxml-tree.html#xmlReplaceNode">xmlReplaceNode</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a><br /> -</dd><dt>also</dt><dd><a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -</dd><dt>alternative</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTD">xmlTextWriterStartDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTD">xmlTextWriterWriteDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDEntity">xmlTextWriterWriteDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntity">xmlTextWriterWriteDTDExternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntityContents">xmlTextWriterWriteDTDExternalEntityContents</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDNotation">xmlTextWriterWriteDTDNotation</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTD">xmlTextWriterWriteFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTD">xmlTextWriterWriteVFormatDTD</a><br /> -</dd><dt>always</dt><dd><a href="html/libxml-parserInternals.html#INPUT_CHUNK">INPUT_CHUNK</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -</dd><dt>amd</dt><dd><a href="html/libxml-catalog.html#xmlCatalogIsEmpty">xmlCatalogIsEmpty</a><br /> -</dd><dt>amount</dt><dd><a href="html/libxml-parserInternals.html#INPUT_CHUNK">INPUT_CHUNK</a><br /> -<a href="html/libxml-xmlIO.html#_xmlParserInputBuffer">_xmlParserInputBuffer</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemUsed">xmlMemUsed</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -</dd><dt>amp</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -</dd><dt>ampersand</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -</dd><dt>analysis</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -</dd><dt>analyze</dt><dd><a href="html/libxml-uri.html#xmlParseURI">xmlParseURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -<a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> -</dd><dt>analyzed</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -</dd><dt>ancestor</dt><dd><a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -</dd><dt>ancestor-or-self</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -</dd><dt>ancestors</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -</dd><dt>anchored</dt><dd><a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -</dd><dt>angle</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -</dd><dt>annotation</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaAnnot">_xmlSchemaAnnot</a><br /> -</dd><dt>another</dt><dd><a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -</dd><dt>anySimpleType</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -</dd><dt>anyURI</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>anymore</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_LAX">XML_SCHEMAS_ANYATTR_LAX</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_SKIP">XML_SCHEMAS_ANYATTR_SKIP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_NSDEFAULT">XML_SCHEMAS_ELEM_NSDEFAULT</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -</dd><dt>anyway</dt><dd><a href="html/libxml-parser.html#xmlRecoverDoc">xmlRecoverDoc</a><br /> -<a href="html/libxml-parser.html#xmlRecoverFile">xmlRecoverFile</a><br /> -<a href="html/libxml-parser.html#xmlRecoverMemory">xmlRecoverMemory</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -</dd><dt>apart</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>apos</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -</dd><dt>appear</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -</dd><dt>appearing</dt><dd><a href="html/libxml-valid.html#xmlValidatePopElement">xmlValidatePopElement</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushElement">xmlValidatePushElement</a><br /> -</dd><dt>appears</dt><dd><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -</dd><dt>append</dt><dd><a href="html/libxml-parserInternals.html#xmlCopyChar">xmlCopyChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlCopyCharMultiByte">xmlCopyCharMultiByte</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>appended</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueAppend">xmlSchemaValueAppend</a><br /> -</dd><dt>appending</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -</dd><dt>appendix</dt><dd><a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -</dd><dt>applicable</dt><dd><a href="html/libxml-tree.html#xmlCopyNode">xmlCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNode">xmlDocCopyNode</a><br /> -</dd><dt>application</dt><dd><a href="html/libxml-tree.html#_xmlAttr">_xmlAttr</a><br /> -<a href="html/libxml-tree.html#_xmlAttribute">_xmlAttribute</a><br /> -<a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-tree.html#_xmlElement">_xmlElement</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -<a href="html/libxml-tree.html#_xmlNs">_xmlNs</a><br /> -<a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-xmlversion.html#xmlCheckVersion">xmlCheckVersion</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-parser.html#xmlGetExternalEntityLoader">xmlGetExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -<a href="html/libxml-parser.html#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -</dd><dt>applications</dt><dd><a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -</dd><dt>applied</dt><dd><a href="html/libxml-hash.html#xmlHashCopy">xmlHashCopy</a><br /> -<a href="html/libxml-hash.html#xmlHashScan">xmlHashScan</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull">xmlHashScanFull</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -</dd><dt>applies</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -</dd><dt>apply</dt><dd><a href="html/libxml-list.html#xmlListReverseWalk">xmlListReverseWalk</a><br /> -<a href="html/libxml-list.html#xmlListWalk">xmlListWalk</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -</dd><dt>applying</dt><dd><a href="html/libxml-tree.html#xmlGetNsList">xmlGetNsList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -</dd><dt>appropriate</dt><dd><a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> -<a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> -</dd><dt>arcs</dt><dd><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -</dd><dt>area</dt><dd><a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateMem">xmlParserInputBufferCreateMem</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -</dd><dt>areas</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemBlocks">xmlMemBlocks</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemShow">xmlMemShow</a><br /> -</dd><dt>args</dt><dd><a href="html/libxml-xpathInternals.html#CHECK_ARITY">CHECK_ARITY</a><br /> -<a href="">x</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrRangeToFunction">xmlXPtrRangeToFunction</a><br /> -</dd><dt>around</dt><dd><a href="html/libxml-xmlIO.html#xmlFileOpen">xmlFileOpen</a><br /> -</dd><dt>arrays</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>arry</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -</dd><dt>asked</dt><dd><a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -</dd><dt>assume</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -</dd><dt>assumed</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -</dd><dt>assumes</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>assuming</dt><dd><a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -</dd><dt>assure</dt><dd><a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -</dd><dt>atom</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewAtom">xmlExpNewAtom</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -</dd><dt>atomic</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -</dd><dt>attached</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>attr</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_HAS_REFS">XML_SCHEMAS_ATTRGROUP_HAS_REFS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_REDEFINED">XML_SCHEMAS_ATTRGROUP_REDEFINED</a><br /> -<a href="html/libxml-tree.html#_xmlID">_xmlID</a><br /> -<a href="html/libxml-tree.html#_xmlRef">_xmlRef</a><br /> -</dd><dt>attribute-</dt><dd><a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>attribute-list</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -</dd><dt>attribute-node</dt><dd><a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -</dd><dt>attribute-nodes</dt><dd><a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</dd><dt>attributeFormDefault</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_QUALIF_ATTR">XML_SCHEMAS_QUALIF_ATTR</a><br /> -</dd><dt>augmented</dt><dd><a href="html/libxml-DOCBparser.html#docbParseDocument">docbParseDocument</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDocument">htmlParseDocument</a><br /> -<a href="html/libxml-parser.html#xmlParseDocument">xmlParseDocument</a><br /> -<a href="html/libxml-parser.html#xmlParseExtParsedEnt">xmlParseExtParsedEnt</a><br /> -<a href="html/libxml-tree.html#xmlTextMerge">xmlTextMerge</a><br /> -</dd><dt>autark</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>authentication</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a><br /> -</dd><dt>author</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</dd><dt>authority</dt><dd><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -</dd><dt>authorized</dt><dd><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>auto</dt><dd><a href="html/libxml-HTMLparser.html#htmlHandleOmittedElem">htmlHandleOmittedElem</a><br /> -</dd><dt>auto-repair</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>autoclose</dt><dd><a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -</dd><dt>autoclosed</dt><dd><a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -</dd><dt>autogeneration</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -</dd><dt>automatically</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -</dd><dt>automaton</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -</dd><dt>autoreference</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -</dd><dt>avoiding</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNext">xmlTextReaderNext</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -</dd><dt>aware</dt><dd><a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk11.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk11.html deleted file mode 100644 index 342ed298..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk11.html +++ /dev/null @@ -1,307 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index b-b for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index b-b for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter b:</h2><dl><dt>back</dt><dd><a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGDump">xmlRelaxNGDump</a><br /> -<a href="html/libxml-parserInternals.html#xmlSetEntityReferenceFunc">xmlSetEntityReferenceFunc</a><br /> -</dd><dt>badly</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -</dd><dt>bahaviour</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -</dd><dt>balanced</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -</dd><dt>bar</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>base64</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBase64">xmlTextWriterWriteBase64</a><br /> -</dd><dt>based</dt><dd><a href="html/libxml-tree.html#xmlGetCompressMode">xmlGetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlGetDocCompressMode">xmlGetDocCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlGetNodePath">xmlGetNodePath</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewEntityInputStream">xmlNewEntityInputStream</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewInputFromFile">xmlNewInputFromFile</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewStringInputStream">xmlNewStringInputStream</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewValidCtxt">xmlRelaxNGNewValidCtxt</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewValidCtxt">xmlSchematronNewValidCtxt</a><br /> -<a href="html/libxml-tree.html#xmlSetCompressMode">xmlSetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetDocCompressMode">xmlSetDocCompressMode</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrsub">xmlStrsub</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd><dt>basically</dt><dd><a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocument">xmlValidateDocument</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -</dd><dt>basis</dt><dd><a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -</dd><dt>bear</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -</dd><dt>becomes</dt><dd><a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -</dd><dt>before</dt><dd><a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> -<a href="html/libxml-parser.html#xmlInitParser">xmlInitParser</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>beginning</dt><dd><a href="html/libxml-tree.html#xmlBufferAddHead">xmlBufferAddHead</a><br /> -<a href="html/libxml-tree.html#xmlBufferShrink">xmlBufferShrink</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-list.html#xmlListInsert">xmlListInsert</a><br /> -<a href="html/libxml-list.html#xmlListPushFront">xmlListPushFront</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringCurrentChar">xmlStringCurrentChar</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>begins</dt><dd><a href="html/libxml-parser.html#_xmlParserNodeInfo">_xmlParserNodeInfo</a><br /> -</dd><dt>behaves</dt><dd><a href="html/libxml-parserInternals.html#IS_LETTER_CH">IS_LETTER_CH</a><br /> -</dd><dt>behavior</dt><dd><a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -</dd><dt>behaviour</dt><dd><a href="html/libxml-HTMLtree.html#htmlNodeDump">htmlNodeDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFile">htmlNodeDumpFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpOutput">htmlNodeDumpOutput</a><br /> -<a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-tree.html#xmlElemDump">xmlElemDump</a><br /> -<a href="html/libxml-tree.html#xmlFreeNode">xmlFreeNode</a><br /> -<a href="html/libxml-tree.html#xmlFreeNodeList">xmlFreeNodeList</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetSpacePreserve">xmlNodeSetSpacePreserve</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsize">xmlUTF8Strsize</a><br /> -</dd><dt>below</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -</dd><dt>better</dt><dd><a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseMemory">xmlSAXUserParseMemory</a><br /> -</dd><dt>between</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -</dd><dt>beyond</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>binary</dt><dd><a href="html/libxml-chvalid.html#xmlCharInRange">xmlCharInRange</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBase64">xmlTextWriterWriteBase64</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBinHex">xmlTextWriterWriteBinHex</a><br /> -</dd><dt>bindings</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -</dd><dt>bit</dt><dd><a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -</dd><dt>blanks</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlSkipBlankChars">xmlSkipBlankChars</a><br /> -</dd><dt>bloc</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -</dd><dt>blockDefault</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION">XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION">XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION</a><br /> -</dd><dt>blocked</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -</dd><dt>blocking</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPRead">xmlNanoFTPRead</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRead">xmlNanoHTTPRead</a><br /> -</dd><dt>blocks</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -<a href="html/libxml-parser.html#XML_SAX2_MAGIC">XML_SAX2_MAGIC</a><br /> -<a href="html/libxml-SAX.html#initdocbDefaultSAXHandler">initdocbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#inithtmlDefaultSAXHandler">inithtmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemBlocks">xmlMemBlocks</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemDisplay">xmlMemDisplay</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryDump">xmlMemoryDump</a><br /> -</dd><dt>book1</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>bool</dt><dd><a href="html/libxml-debugXML.html#xmlBoolToText">xmlBoolToText</a><br /> -</dd><dt>both</dt><dd><a href="html/libxml-tree.html#xmlBufferFree">xmlBufferFree</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPClose">xmlNanoFTPClose</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -</dd><dt>bound</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -</dd><dt>boundaries</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -</dd><dt>boundary</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -</dd><dt>bracket</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -</dd><dt>branch</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>break</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> -</dd><dt>breaking</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -</dd><dt>breaks</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -</dd><dt>broke</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -</dd><dt>broken</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -</dd><dt>buf</dt><dd><a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -</dd><dt>buffered</dt><dd><a href="html/libxml-xmlIO.html#xmlAllocOutputBuffer">xmlAllocOutputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlAllocParserInputBuffer">xmlAllocParserInputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlFreeParserInputBuffer">xmlFreeParserInputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferClose">xmlOutputBufferClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFd">xmlOutputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFile">xmlOutputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferFlush">xmlOutputBufferFlush</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWrite">xmlOutputBufferWrite</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFd">xmlParserInputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFile">xmlParserInputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateMem">xmlParserInputBufferCreateMem</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>builded</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a><br /> -</dd><dt>building</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> -<a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -</dd><dt>builds</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -</dd><dt>built</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumerationType">xmlParseEnumerationType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-uri.html#xmlParseURI">xmlParseURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -<a href="html/libxml-parser.html#xmlRecoverDoc">xmlRecoverDoc</a><br /> -<a href="html/libxml-parser.html#xmlRecoverFile">xmlRecoverFile</a><br /> -<a href="html/libxml-parser.html#xmlRecoverMemory">xmlRecoverMemory</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParse">xmlRelaxNGParse</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInType">xmlSchemaGetBuiltInType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaParse">xmlSchemaParse</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronParse">xmlSchematronParse</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -</dd><dt>built-in</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInType">xmlSchemaGetBuiltInType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaIsBuiltInTypeFacet">xmlSchemaIsBuiltInTypeFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -</dd><dt>builtin</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a><br /> -<a href="html/libxml-xmlerror.html#initGenericErrorDefaultFunc">initGenericErrorDefaultFunc</a><br /> -</dd><dt>bunch</dt><dd><a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -</dd><dt>bypass</dt><dd><a href="html/libxml-catalog.html#xmlParseCatalogFile">xmlParseCatalogFile</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk12.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk12.html deleted file mode 100644 index d65e7016..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk12.html +++ /dev/null @@ -1,890 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index c-c for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index c-c for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter c:</h2><dl><dt>cache</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>cached</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>caching:</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>calculated</dt><dd><a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -</dd><dt>calculates</dt><dd><a href="html/libxml-xmlstring.html#xmlUTF8Size">xmlUTF8Size</a><br /> -</dd><dt>calling</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -<a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a><br /> -</dd><dt>calls</dt><dd><a href="html/libxml-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -</dd><dt>came</dt><dd><a href="html/libxml-parserInternals.html#xmlPopInput">xmlPopInput</a><br /> -</dd><dt>cannot</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -</dd><dt>canonic</dt><dd><a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -</dd><dt>canonical</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>canonicalization</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>canonicalized</dt><dd><a href="html/libxml-xmlIO.html#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a><br /> -</dd><dt>canonization</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>canonized</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>capable</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -</dd><dt>caracters</dt><dd><a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -</dd><dt>cardinality</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -</dd><dt>carried</dt><dd><a href="html/libxml-tree.html#xmlNewDocProp">xmlNewDocProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsProp">xmlNewNsProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsPropEatName">xmlNewNsPropEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewProp">xmlNewProp</a><br /> -<a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -<a href="html/libxml-tree.html#xmlSetNsProp">xmlSetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -<a href="html/libxml-tree.html#xmlUnsetNsProp">xmlUnsetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlUnsetProp">xmlUnsetProp</a><br /> -</dd><dt>carries</dt><dd><a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -</dd><dt>carrying</dt><dd><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -<a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -<a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -</dd><dt>case-ignoring</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcasestr">xmlStrcasestr</a><br /> -</dd><dt>cases</dt><dd><a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -</dd><dt>cast</dt><dd><a href="html/libxml-xmlstring.html#BAD_CAST">BAD_CAST</a><br /> -<a href="html/libxml-xpathInternals.html#CAST_TO_BOOLEAN">CAST_TO_BOOLEAN</a><br /> -<a href="html/libxml-xpathInternals.html#CAST_TO_NUMBER">CAST_TO_NUMBER</a><br /> -<a href="html/libxml-xpathInternals.html#CAST_TO_STRING">CAST_TO_STRING</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertFunc">xmlXPathConvertFunc</a><br /> -</dd><dt>casting</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -</dd><dt>cat</dt><dd><a href="html/libxml-debugXML.html#xmlShellCat">xmlShellCat</a><br /> -</dd><dt>catalogs</dt><dd><a href="html/libxml-catalog.html#xmlCatalogAddLocal">xmlCatalogAddLocal</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogCleanup">xmlCatalogCleanup</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogFreeLocal">xmlCatalogFreeLocal</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetDefaults">xmlCatalogGetDefaults</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolveURI">xmlCatalogLocalResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDebug">xmlCatalogSetDebug</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaults">xmlCatalogSetDefaults</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -</dd><dt>category</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsCat">xmlUCSIsCat</a><br /> -</dd><dt>cause</dt><dd><a href="html/libxml-debugXML.html#xmlShellPrintXPathError">xmlShellPrintXPathError</a><br /> -</dd><dt>caution</dt><dd><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -</dd><dt>cdata-section-</dt><dd><a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</dd><dt>ceiling</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a><br /> -</dd><dt>certainly</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>chained</dt><dd><a href="html/libxml-tree.html#xmlFreeNsList">xmlFreeNsList</a><br /> -</dd><dt>change</dt><dd><a href="html/libxml-HTMLtree.html#htmlSetMetaEncoding">htmlSetMetaEncoding</a><br /> -<a href="html/libxml-xmlerror.html#xmlCtxtResetLastError">xmlCtxtResetLastError</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCwd">xmlNanoFTPCwd</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-xmlerror.html#xmlResetLastError">xmlResetLastError</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCollapseString">xmlSchemaCollapseString</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaWhiteSpaceReplace">xmlSchemaWhiteSpaceReplace</a><br /> -<a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchEncoding">xmlSwitchEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchInputEncoding">xmlSwitchInputEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchToEncoding">xmlSwitchToEncoding</a><br /> -</dd><dt>changed</dt><dd><a href="html/libxml-tree.html#xmlNodeSetBase">xmlNodeSetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetLang">xmlNodeSetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetName">xmlNodeSetName</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetSpacePreserve">xmlNodeSetSpacePreserve</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>changes</dt><dd><a href="html/libxml-xmlIO.html#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderClose">xmlTextReaderClose</a><br /> -</dd><dt>changing</dt><dd><a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -</dd><dt>channel</dt><dd><a href="html/libxml-xmlIO.html#xmlFileClose">xmlFileClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileRead">xmlFileRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPClose">xmlIOFTPClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPOpen">xmlIOFTPOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPRead">xmlIOFTPRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPClose">xmlIOHTTPClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpen">xmlIOHTTPOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPRead">xmlIOHTTPRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferClose">xmlOutputBufferClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferFlush">xmlOutputBufferFlush</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathError">xmlShellPrintXPathError</a><br /> -</dd><dt>characters</dt><dd><a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrPrintf">xmlStrPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrVPrintf">xmlStrVPrintf</a><br /> -<a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strlen">xmlUTF8Strlen</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsize">xmlUTF8Strsize</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>charencoding</dt><dd><a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -</dd><dt>chars??</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRawLen">xmlTextWriterWriteRawLen</a><br /> -</dd><dt>charset</dt><dd><a href="html/libxml-xmlIO.html#xmlAllocParserInputBuffer">xmlAllocParserInputBuffer</a><br /> -<a href="html/libxml-parser.html#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlIOParseDTD">xmlIOParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlNewIOInputStream">xmlNewIOInputStream</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFd">xmlParserInputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFile">xmlParserInputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateMem">xmlParserInputBufferCreateMem</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -</dd><dt>checked</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_CHECKED">XML_SCHEMAS_ELEM_INTERNAL_CHECKED</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-tree.html#xmlSetNsProp">xmlSetNsProp</a><br /> -</dd><dt>checking</dt><dd><a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -<a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemFree">xmlMemFree</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strlen">xmlUTF8Strlen</a><br /> -</dd><dt>checkings</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -</dd><dt>checks</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> -<a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPInit">xmlNanoFTPInit</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPInit">xmlNanoHTTPInit</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocument">xmlValidateDocument</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetContains">xmlXPathNodeSetContains</a><br /> -</dd><dt>child-</dt><dd><a href="html/libxml-tree.html#_xmlAttr">_xmlAttr</a><br /> -<a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -</dd><dt>childrens</dt><dd><a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -</dd><dt>childs</dt><dd><a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -<a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>choice</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -</dd><dt>choices</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -</dd><dt>choices:</dt><dd><a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -</dd><dt>chunk</dt><dd><a href="html/libxml-DOCBparser.html#docbParseChunk">docbParseChunk</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseChunk">htmlParseChunk</a><br /> -<a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseChunk">xmlParseChunk</a><br /> -<a href="html/libxml-parser.html#xmlParseEntity">xmlParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -</dd><dt>circular</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a><br /> -</dd><dt>cleanly</dt><dd><a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> -</dd><dt>cleans</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -</dd><dt>cleanup</dt><dd><a href="html/libxml-globals.html#xmlCleanupGlobals">xmlCleanupGlobals</a><br /> -<a href="html/libxml-threads.html#xmlCleanupThreads">xmlCleanupThreads</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCleanup">xmlNanoFTPCleanup</a><br /> -</dd><dt>clear</dt><dd><a href="html/libxml-list.html#xmlListMerge">xmlListMerge</a><br /> -</dd><dt>clears</dt><dd><a href="html/libxml-xmlIO.html#xmlCleanupInputCallbacks">xmlCleanupInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlCleanupOutputCallbacks">xmlCleanupOutputCallbacks</a><br /> -</dd><dt>client</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -</dd><dt>clone</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -</dd><dt>cloned</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -</dd><dt>close</dt><dd><a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadIO">htmlCtxtReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadIO">htmlReadIO</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncCloseFunc">xmlCharEncCloseFunc</a><br /> -<a href="html/libxml-parser.html#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadIO">xmlCtxtReadIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleClose">xmlModuleClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferClose">xmlOutputBufferClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a><br /> -<a href="html/libxml-parser.html#xmlReadIO">xmlReadIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForIO">xmlReaderForIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderClose">xmlTextReaderClose</a><br /> -</dd><dt>closed</dt><dd><a href="html/libxml-parser.html#xmlCtxtReadFd">xmlCtxtReadFd</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleClose">xmlModuleClose</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a><br /> -<a href="html/libxml-parser.html#xmlReadFd">xmlReadFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFd">xmlReaderForFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDocument">xmlTextWriterEndDocument</a><br /> -</dd><dt>closes</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPClose">xmlNanoHTTPClose</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPSave">xmlNanoHTTPSave</a><br /> -</dd><dt>closest</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFloorFunction">xmlXPathFloorFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoundFunction">xmlXPathRoundFunction</a><br /> -</dd><dt>closing</dt><dd><a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPFreeCtxt">xmlNanoFTPFreeCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -</dd><dt>cncerning</dt><dd><a href="html/libxml-debugXML.html#xmlDebugDumpDocumentHead">xmlDebugDumpDocumentHead</a><br /> -</dd><dt>coding</dt><dd><a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -</dd><dt>collapse</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_COLLAPSE">XML_SCHEMAS_FACET_COLLAPSE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE">XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE</a><br /> -</dd><dt>collect</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -</dd><dt>collected</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -</dd><dt>colon</dt><dd><a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -</dd><dt>column</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -<a href="html/libxml-SAX.html#getColumnNumber">getColumnNumber</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetColumnNumber">xmlSAX2GetColumnNumber</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserColumnNumber">xmlTextReaderGetParserColumnNumber</a><br /> -</dd><dt>com</dt><dd><a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -</dd><dt>combining</dt><dd><a href="html/libxml-parserInternals.html#IS_COMBINING_CH">IS_COMBINING_CH</a><br /> -</dd><dt>come</dt><dd><a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>coment</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterEndComment">xmlTextWriterEndComment</a><br /> -</dd><dt>comes</dt><dd><a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>coming</dt><dd><a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -</dd><dt>command</dt><dd><a href="html/libxml-nanoftp.html#ftpDataCallback">ftpDataCallback</a><br /> -<a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCheckResponse">xmlNanoFTPCheckResponse</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetResponse">xmlNanoFTPGetResponse</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPQuit">xmlNanoFTPQuit</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -</dd><dt>commandline</dt><dd><a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -</dd><dt>commands</dt><dd><a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -</dd><dt>comment</dt><dd><a href="html/libxml-HTMLtree.html#HTML_COMMENT_NODE">HTML_COMMENT_NODE</a><br /> -<a href="html/libxml-SAX.html#comment">comment</a><br /> -<a href="html/libxml-parser.html#commentSAXFunc">commentSAXFunc</a><br /> -<a href="html/libxml-tree.html#xmlNewComment">xmlNewComment</a><br /> -<a href="html/libxml-tree.html#xmlNewDocComment">xmlNewDocComment</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartComment">xmlTextWriterStartComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteComment">xmlTextWriterWriteComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatComment">xmlTextWriterWriteFormatComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatComment">xmlTextWriterWriteVFormatComment</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIsNodeType">xmlXPathIsNodeType</a><br /> -</dd><dt>comment-</dt><dd><a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</dd><dt>comments</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-tree.html#xmlDocGetRootElement">xmlDocGetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -</dd><dt>commodity</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -</dd><dt>common</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -</dd><dt>comp</dt><dd><a href="html/libxml-pattern.html#xmlFreePattern">xmlFreePattern</a><br /> -<a href="html/libxml-pattern.html#xmlFreePatternList">xmlFreePatternList</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeCompExpr">xmlXPathFreeCompExpr</a><br /> -</dd><dt>compare</dt><dd><a href="html/libxml-list.html#xmlListDataCompare">xmlListDataCompare</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Charcmp">xmlUTF8Charcmp</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -</dd><dt>compared</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -</dd><dt>compares</dt><dd><a href="html/libxml-xmlstring.html#xmlUTF8Charcmp">xmlUTF8Charcmp</a><br /> -</dd><dt>comparing</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -</dd><dt>comparison</dt><dd><a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-list.html#xmlListCreate">xmlListCreate</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcasecmp">xmlStrcasecmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcmp">xmlStrcmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncasecmp">xmlStrncasecmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncmp">xmlStrncmp</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -</dd><dt>comparisons</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>compatibility</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_LEGACY_ENABLED">LIBXML_LEGACY_ENABLED</a><br /> -<a href="html/libxml-tree.html#xmlChildrenNode">xmlChildrenNode</a><br /> -<a href="html/libxml-parserInternals.html#xmlCopyChar">xmlCopyChar</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -<a href="html/libxml-tree.html#xmlRootNode">xmlRootNode</a><br /> -</dd><dt>compatible</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_TEST_VERSION">LIBXML_TEST_VERSION</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -</dd><dt>compilation</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_VERSION_EXTRA">LIBXML_VERSION_EXTRA</a><br /> -<a href="html/libxml-xpath.html#XML_XPATH_CHECKNS">XML_XPATH_CHECKNS</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompile">xmlXPathCompile</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCtxtCompile">xmlXPathCtxtCompile</a><br /> -</dd><dt>compile</dt><dd><a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -</dd><dt>compile-time</dt><dd><a href="html/libxml-DOCBparser.html#docbCreateFileParserCtxt">docbCreateFileParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseFile">docbParseFile</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-parserInternals.html#htmlCreateFileParserCtxt">htmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseFile">htmlParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateFileParserCtxt">xmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateURLParserCtxt">xmlCreateURLParserCtxt</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-parser.html#xmlParseFile">xmlParseFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-parser.html#xmlRecoverFile">xmlRecoverFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -</dd><dt>compiled-in</dt><dd><a href="html/libxml-xmlIO.html#xmlCleanupInputCallbacks">xmlCleanupInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlCleanupOutputCallbacks">xmlCleanupOutputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlPopInputCallbacks">xmlPopInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterDefaultInputCallbacks">xmlRegisterDefaultInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterDefaultOutputCallbacks">xmlRegisterDefaultOutputCallbacks</a><br /> -</dd><dt>compiling</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -</dd><dt>complement</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -</dd><dt>complete</dt><dd><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_WILDCARD_COMPLETE">XML_SCHEMAS_WILDCARD_COMPLETE</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolve">xmlACatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveURI">xmlACatalogResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolveURI">xmlCatalogLocalResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolve">xmlCatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolveURI">xmlCatalogResolveURI</a><br /> -</dd><dt>completed</dt><dd><a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -</dd><dt>completely</dt><dd><a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -</dd><dt>complex</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -</dd><dt>complexType</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a><br /> -</dd><dt>complicated</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>component</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -</dd><dt>components</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -</dd><dt>compound</dt><dd><a href="html/libxml-xpath.html#xmlXPathFreeNodeSet">xmlXPathFreeNodeSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrFreeLocationSet">xmlXPtrFreeLocationSet</a><br /> -</dd><dt>compress</dt><dd><a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterFilename">xmlNewTextWriterFilename</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterMemory">xmlNewTextWriterMemory</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> -</dd><dt>compressed</dt><dd><a href="html/libxml-xmlIO.html#_xmlParserInputBuffer">_xmlParserInputBuffer</a><br /> -<a href="html/libxml-DOCBparser.html#docbCreateFileParserCtxt">docbCreateFileParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseFile">docbParseFile</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-parserInternals.html#htmlCreateFileParserCtxt">htmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseFile">htmlParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateFileParserCtxt">xmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateURLParserCtxt">xmlCreateURLParserCtxt</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-parser.html#xmlParseFile">xmlParseFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-parser.html#xmlRecoverFile">xmlRecoverFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseFile">xmlSAXUserParseFile</a><br /> -</dd><dt>compression</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-tree.html#xmlGetCompressMode">xmlGetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlGetDocCompressMode">xmlGetDocCompressMode</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterMemory">xmlNewTextWriterMemory</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-tree.html#xmlSaveFile">xmlSaveFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -<a href="html/libxml-tree.html#xmlSetCompressMode">xmlSetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetDocCompressMode">xmlSetDocCompressMode</a><br /> -</dd><dt>comprising</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -</dd><dt>computation</dt><dd><a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>compute</dt><dd><a href="html/libxml-xmlstring.html#xmlUTF8Strlen">xmlUTF8Strlen</a><br /> -</dd><dt>computed</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FACETSNEEDVALUE">XML_SCHEMAS_TYPE_FACETSNEEDVALUE</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueAppend">xmlSchemaValueAppend</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsBoolean">xmlSchemaValueGetAsBoolean</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsString">xmlSchemaValueGetAsString</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetNext">xmlSchemaValueGetNext</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -</dd><dt>computes</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a><br /> -</dd><dt>concat</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathConcatFunction">xmlXPathConcatFunction</a><br /> -</dd><dt>concatenated</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -</dd><dt>concatenation</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathConcatFunction">xmlXPathConcatFunction</a><br /> -</dd><dt>condition</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -</dd><dt>conditionalSect</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> -</dd><dt>configured</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -<a href="html/libxml-xmlversion.html#DEBUG_MEMORY_LOCATION">DEBUG_MEMORY_LOCATION</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_C14N_ENABLED">LIBXML_C14N_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_CATALOG_ENABLED">LIBXML_CATALOG_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DEBUG_ENABLED">LIBXML_DEBUG_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DEBUG_RUNTIME">LIBXML_DEBUG_RUNTIME</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DOCB_ENABLED">LIBXML_DOCB_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_FTP_ENABLED">LIBXML_FTP_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_HTML_ENABLED">LIBXML_HTML_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_HTTP_ENABLED">LIBXML_HTTP_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_OUTPUT_ENABLED">LIBXML_OUTPUT_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_PATTERN_ENABLED">LIBXML_PATTERN_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_PUSH_ENABLED">LIBXML_PUSH_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_READER_ENABLED">LIBXML_READER_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_SAX1_ENABLED">LIBXML_SAX1_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_THREAD_ENABLED">LIBXML_THREAD_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_TREE_ENABLED">LIBXML_TREE_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_VALID_ENABLED">LIBXML_VALID_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_WRITER_ENABLED">LIBXML_WRITER_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_XINCLUDE_ENABLED">LIBXML_XINCLUDE_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_XPATH_ENABLED">LIBXML_XPATH_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_XPTR_ENABLED">LIBXML_XPTR_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#WITHOUT_TRIO">WITHOUT_TRIO</a><br /> -<a href="html/libxml-xmlversion.html#WITH_TRIO">WITH_TRIO</a><br /> -</dd><dt>conforming</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -</dd><dt>conforms</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> -<a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> -<a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> -<a href="html/libxml-tree.html#xmlValidateName">xmlValidateName</a><br /> -<a href="html/libxml-tree.html#xmlValidateQName">xmlValidateQName</a><br /> -</dd><dt>conjunction</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaIsBuiltInTypeFacet">xmlSchemaIsBuiltInTypeFacet</a><br /> -</dd><dt>connection</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPClose">xmlNanoFTPClose</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCloseConnection">xmlNanoFTPCloseConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnect">xmlNanoFTPConnect</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPFreeCtxt">xmlNanoFTPFreeCtxt</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetSocket">xmlNanoFTPGetSocket</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPRead">xmlNanoFTPRead</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPClose">xmlNanoHTTPClose</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRead">xmlNanoHTTPRead</a><br /> -</dd><dt>connector</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -</dd><dt>cononical</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -</dd><dt>consequent</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -</dd><dt>consideration</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>considered</dt><dd><a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>consist</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -</dd><dt>constant</dt><dd><a href="html/libxml-parser.html#XML_SAX2_MAGIC">XML_SAX2_MAGIC</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -</dd><dt>constraint</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaAttribute">_xmlSchemaAttribute</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaWildcard">_xmlSchemaWildcard</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaWildcardNs">_xmlSchemaWildcardNs</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -</dd><dt>constraints</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_CHECKED">XML_SCHEMAS_ELEM_INTERNAL_CHECKED</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>construct</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -</dd><dt>construction</dt><dd><a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -</dd><dt>constructs</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -</dd><dt>consumed</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-xmlIO.html#_xmlParserInputBuffer">_xmlParserInputBuffer</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewNOTATIONValue">xmlSchemaNewNOTATIONValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewQNameValue">xmlSchemaNewQNameValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -</dd><dt>consuming</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -</dd><dt>contain</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewMemParserCtxt">xmlRelaxNGNewMemParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewParserCtxt">xmlRelaxNGNewParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewMemParserCtxt">xmlSchemaNewMemParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewParserCtxt">xmlSchemaNewParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewMemParserCtxt">xmlSchematronNewMemParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewParserCtxt">xmlSchematronNewParserCtxt</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -</dd><dt>contained</dt><dd><a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrlen">xmlStrlen</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a><br /> -</dd><dt>contains</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_HAS_REFS">XML_SCHEMAS_ATTRGROUP_HAS_REFS</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToElement">xmlTextReaderMoveToElement</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathContainsFunction">xmlXPathContainsFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextChild">xmlXPathNextChild</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendant">xmlXPathNextDescendant</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextNamespace">xmlXPathNextNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextParent">xmlXPathNextParent</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextSelf">xmlXPathNextSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetContains">xmlXPathNodeSetContains</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -</dd><dt>content:</dt><dd><a href="html/libxml-parserInternals.html#xmlParseContent">xmlParseContent</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEqualValues">xmlXPathEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotEqualValues">xmlXPathNotEqualValues</a><br /> -</dd><dt>contentType</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -</dd><dt>contents</dt><dd><a href="html/libxml-dict.html#xmlDictFree">xmlDictFree</a><br /> -<a href="html/libxml-hash.html#xmlHashFree">xmlHashFree</a><br /> -<a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-parser.html#xmlSetupParserForBuffer">xmlSetupParserForBuffer</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderExpand">xmlTextReaderExpand</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadString">xmlTextReaderReadString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntityContents">xmlTextWriterWriteDTDExternalEntityContents</a><br /> -</dd><dt>contentspec</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -</dd><dt>context?</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -</dd><dt>contexts</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -</dd><dt>contextual</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserStructuredErrors">xmlRelaxNGSetParserStructuredErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> -</dd><dt>continuing</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>contraint</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -</dd><dt>contrary</dt><dd><a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeNodeSetList">xmlXPathFreeNodeSetList</a><br /> -</dd><dt>contrast</dt><dd><a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -</dd><dt>control</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPClose">xmlNanoFTPClose</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnect">xmlNanoFTPConnect</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -</dd><dt>conveniently</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -</dd><dt>conversion</dt><dd><a href="html/libxml-xpath.html#_xmlXPathType">_xmlXPathType</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEncodingDecl">xmlParseEncodingDecl</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertFunc">xmlXPathConvertFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopBoolean">xmlXPathPopBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopExternal">xmlXPathPopExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNodeSet">xmlXPathPopNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNumber">xmlXPathPopNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopString">xmlXPathPopString</a><br /> -</dd><dt>conversions</dt><dd><a href="html/libxml-xmlIO.html#_xmlOutputBuffer">_xmlOutputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#_xmlParserInputBuffer">_xmlParserInputBuffer</a><br /> -</dd><dt>convert</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-entities.html#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a><br /> -</dd><dt>converted</dt><dd><a href="html/libxml-catalog.html#xmlCatalogConvert">xmlCatalogConvert</a><br /> -<a href="html/libxml-catalog.html#xmlConvertSGMLCatalog">xmlConvertSGMLCatalog</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> -</dd><dt>converter</dt><dd><a href="html/libxml-xmlIO.html#xmlAllocOutputBuffer">xmlAllocOutputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFd">xmlOutputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFile">xmlOutputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -</dd><dt>converting</dt><dd><a href="html/libxml-tree.html#xmlSaveFileEnc">xmlSaveFileEnc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -</dd><dt>converts</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>copied</dt><dd><a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-tree.html#xmlCopyDoc">xmlCopyDoc</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCopyValue">xmlSchemaCopyValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a><br /> -</dd><dt>copier</dt><dd><a href="html/libxml-hash.html#xmlHashCopy">xmlHashCopy</a><br /> -</dd><dt>copying</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -</dd><dt>correct</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>correctly</dt><dd><a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd><dt>correponding</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -</dd><dt>correspond</dt><dd><a href="html/libxml-tree.html#xmlIsXHTML">xmlIsXHTML</a><br /> -<a href="html/libxml-parser.html#xmlParseEntity">xmlParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -</dd><dt>corresponding</dt><dd><a href="html/libxml-entities.html#xmlGetDocEntity">xmlGetDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetDtdEntity">xmlGetDtdEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetParameterEntity">xmlGetParameterEntity</a><br /> -<a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>cost</dt><dd><a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -</dd><dt>costly</dt><dd><a href="html/libxml-parserInternals.html#XML_MAX_NAMELEN">XML_MAX_NAMELEN</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -</dd><dt>could</dt><dd><a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleClose">xmlModuleClose</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -</dd><dt>count</dt><dd><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpRef">xmlExpRef</a><br /> -<a href="html/libxml-debugXML.html#xmlLsCountNode">xmlLsCountNode</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidateDoc">xmlSchematronValidateDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderAttributeCount">xmlTextReaderAttributeCount</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCountFunction">xmlXPathCountFunction</a><br /> -</dd><dt>counter</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounter">xmlAutomataNewCounter</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-dict.html#xmlDictReference">xmlDictReference</a><br /> -</dd><dt>counterparts</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -</dd><dt>course</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -</dd><dt>cover</dt><dd><a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -</dd><dt>create</dt><dd><a href="html/libxml-tree.html#xmlBufferCreate">xmlBufferCreate</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateSize">xmlBufferCreateSize</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogIsEmpty">xmlCatalogIsEmpty</a><br /> -<a href="html/libxml-entities.html#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a><br /> -<a href="html/libxml-valid.html#xmlCreateEnumeration">xmlCreateEnumeration</a><br /> -<a href="html/libxml-catalog.html#xmlNewCatalog">xmlNewCatalog</a><br /> -<a href="html/libxml-tree.html#xmlNewDtd">xmlNewDtd</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -</dd><dt>creates</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> -<a href="html/libxml-uri.html#xmlCreateURI">xmlCreateURI</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>creating</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -</dd><dt>creation</dt><dd><a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-globals.html#xmlRegisterNodeDefault">xmlRegisterNodeDefault</a><br /> -</dd><dt>cross</dt><dd><a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -</dd><dt>crossed</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -</dd><dt>cshema</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_LIST">XML_SCHEMAS_FINAL_DEFAULT_LIST</a><br /> -</dd><dt>ctrio</dt><dd><a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -</dd><dt>ctxt</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -</dd><dt>ctxt-</dt><dd><a href="html/libxml-DOCBparser.html#docbFreeParserCtxt">docbFreeParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlFreeParserCtxt">htmlFreeParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlFreeParserCtxt">xmlFreeParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlPopInput">xmlPopInput</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>cur</dt><dd><a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -</dd><dt>currently</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_INCLUDING_CONVERT_NS">XML_SCHEMAS_INCLUDING_CONVERT_NS</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemBlocks">xmlMemBlocks</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemUsed">xmlMemUsed</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>custom</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetAttrEscape">xmlSaveSetAttrEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetEscape">xmlSaveSetEscape</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk13.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk13.html deleted file mode 100644 index 00da28bb..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk13.html +++ /dev/null @@ -1,632 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index d-d for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index d-d for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter d:</h2><dl><dt>dangerous</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -</dd><dt>data-type</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaCopyValue">xmlSchemaCopyValue</a><br /> -</dd><dt>datatype</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -</dd><dt>day</dt><dd><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -</dd><dt>day:minute</dt><dd><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -</dd><dt>de-coupled</dt><dd><a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -</dd><dt>deactivated</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -</dd><dt>deallocate</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-list.html#xmlListDeallocator">xmlListDeallocator</a><br /> -<a href="html/libxml-parser.html#xmlParserInputDeallocate">xmlParserInputDeallocate</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeNodeSetList">xmlXPathFreeNodeSetList</a><br /> -</dd><dt>deallocated</dt><dd><a href="html/libxml-dict.html#xmlDictFree">xmlDictFree</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-entities.html#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -<a href="html/libxml-hash.html#xmlHashFree">xmlHashFree</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-uri.html#xmlSaveUri">xmlSaveUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstBaseUri">xmlTextReaderConstBaseUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstEncoding">xmlTextReaderConstEncoding</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstLocalName">xmlTextReaderConstLocalName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstName">xmlTextReaderConstName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstNamespaceUri">xmlTextReaderConstNamespaceUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstPrefix">xmlTextReaderConstPrefix</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstValue">xmlTextReaderConstValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlVersion">xmlTextReaderConstXmlVersion</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttribute">xmlTextReaderGetAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNo">xmlTextReaderGetAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNs">xmlTextReaderGetAttributeNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadString">xmlTextReaderReadString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderValue">xmlTextReaderValue</a><br /> -</dd><dt>deallocation</dt><dd><a href="html/libxml-list.html#xmlListRemoveAll">xmlListRemoveAll</a><br /> -<a href="html/libxml-list.html#xmlListRemoveFirst">xmlListRemoveFirst</a><br /> -<a href="html/libxml-list.html#xmlListRemoveLast">xmlListRemoveLast</a><br /> -</dd><dt>deallocator</dt><dd><a href="html/libxml-hash.html#xmlHashFree">xmlHashFree</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -<a href="html/libxml-list.html#xmlListCreate">xmlListCreate</a><br /> -</dd><dt>debug</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDebug">xmlCatalogSetDebug</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttr">xmlDebugDumpAttr</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttrList">xmlDebugDumpAttrList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDTD">xmlDebugDumpDTD</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocument">xmlDebugDumpDocument</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocumentHead">xmlDebugDumpDocumentHead</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpEntities">xmlDebugDumpEntities</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNode">xmlDebugDumpNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNodeList">xmlDebugDumpNodeList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpOneNode">xmlDebugDumpOneNode</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpPrint">xmlRegexpPrint</a><br /> -<a href="html/libxml-valid.html#xmlSnprintfElementContent">xmlSnprintfElementContent</a><br /> -</dd><dt>debugging</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -<a href="html/libxml-xmlversion.html#DEBUG_MEMORY_LOCATION">DEBUG_MEMORY_LOCATION</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DEBUG_RUNTIME">LIBXML_DEBUG_RUNTIME</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDebug">xmlCatalogSetDebug</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpObject">xmlXPathDebugDumpObject</a><br /> -</dd><dt>decimal</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>decl</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_CHECKED">XML_SCHEMAS_ELEM_INTERNAL_CHECKED</a><br /> -<a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlNewDocElementContent">xmlNewDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlNewElementContent">xmlNewElementContent</a><br /> -</dd><dt>declarations</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseCharRef">htmlParseCharRef</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTD">xmlTextWriterWriteFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTD">xmlTextWriterWriteVFormatDTD</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a><br /> -</dd><dt>declare</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -</dd><dt>declared</dt><dd><a href="html/libxml-tree.html#_xmlElement">_xmlElement</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderStandalone">xmlTextReaderStandalone</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -</dd><dt>declaring</dt><dd><a href="html/libxml-valid.html#xmlGetID">xmlGetID</a><br /> -</dd><dt>decode</dt><dd><a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -</dd><dt>def</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeListDecl">xmlParseAttributeListDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -</dd><dt>defaulted</dt><dd><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsDefault">xmlTextReaderIsDefault</a><br /> -</dd><dt>defaultexternal</dt><dd><a href="html/libxml-parser.html#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a><br /> -</dd><dt>defaults</dt><dd><a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLocalNameFunction">xmlXPathLocalNameFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNamespaceURIFunction">xmlXPathNamespaceURIFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> -</dd><dt>define</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -<a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -<a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>defined</dt><dd><a href="html/libxml-xmlversion.html#WITHOUT_TRIO">WITHOUT_TRIO</a><br /> -<a href="html/libxml-xmlversion.html#WITH_TRIO">WITH_TRIO</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-tree.html#xmlGetNsList">xmlGetNsList</a><br /> -<a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsDefault">xmlTextReaderIsDefault</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -</dd><dt>defining</dt><dd><a href="html/libxml-xinclude.html#XINCLUDE_FALLBACK">XINCLUDE_FALLBACK</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_HREF">XINCLUDE_HREF</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_NODE">XINCLUDE_NODE</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_NS">XINCLUDE_NS</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE">XINCLUDE_PARSE</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE_ENCODING">XINCLUDE_PARSE_ENCODING</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE_TEXT">XINCLUDE_PARSE_TEXT</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE_XML">XINCLUDE_PARSE_XML</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE_XPOINTER">XINCLUDE_PARSE_XPOINTER</a><br /> -<a href="html/libxml-valid.html#xmlGetID">xmlGetID</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstNamespaceUri">xmlTextReaderConstNamespaceUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNamespaceUri">xmlTextReaderNamespaceUri</a><br /> -</dd><dt>definitions</dt><dd><a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -<a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -</dd><dt>defs</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -</dd><dt>delayed</dt><dd><a href="html/libxml-xmlIO.html#xmlOutputBufferWrite">xmlOutputBufferWrite</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -</dd><dt>delegation</dt><dd><a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -</dd><dt>delete</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPDele">xmlNanoFTPDele</a><br /> -</dd><dt>deletion</dt><dd><a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -</dd><dt>dependant</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>depending</dt><dd><a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -<a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -<a href="html/libxml-list.html#xmlListDataCompare">xmlListDataCompare</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEqualValues">xmlXPathEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotEqualValues">xmlXPathNotEqualValues</a><br /> -</dd><dt>deprecated</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_LEGACY_ENABLED">LIBXML_LEGACY_ENABLED</a><br /> -<a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHere">htmlElementAllowedHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementStatusHere">htmlElementStatusHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -<a href="html/libxml-entities.html#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -</dd><dt>depth</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMaxDepth">xmlPatternMaxDepth</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMinDepth">xmlPatternMinDepth</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderDepth">xmlTextReaderDepth</a><br /> -</dd><dt>deregistration</dt><dd><a href="html/libxml-globals.html#xmlDeregisterNodeDefault">xmlDeregisterNodeDefault</a><br /> -</dd><dt>derivation</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpStringDerive">xmlExpStringDerive</a><br /> -</dd><dt>des</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -</dd><dt>desactivated</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -</dd><dt>descend</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -</dd><dt>descendant</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNextDescendant">xmlXPathNextDescendant</a><br /> -</dd><dt>descendant-or-self</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a><br /> -</dd><dt>descendants</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNextDescendant">xmlXPathNextDescendant</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -</dd><dt>described</dt><dd><a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocument">xmlValidateDocument</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -</dd><dt>describing</dt><dd><a href="html/libxml-DOCBparser.html#docbParseDoc">docbParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseFile">docbParseFile</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-parserInternals.html#htmlCreateFileParserCtxt">htmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDoc">htmlParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseFile">htmlParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-encoding.html#xmlFindCharEncodingHandler">xmlFindCharEncodingHandler</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -</dd><dt>description</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-HTMLparser.html#_htmlEntityDesc">_htmlEntityDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHereDesc">htmlElementAllowedHereDesc</a><br /> -<a href="html/libxml-valid.html#xmlCopyDocElementContent">xmlCopyDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlCopyElementContent">xmlCopyElementContent</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdAttrDesc">xmlGetDtdAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdElementDesc">xmlGetDtdElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdNotationDesc">xmlGetDtdNotationDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQElementDesc">xmlGetDtdQElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetLang">xmlNodeSetLang</a><br /> -</dd><dt>descriptor</dt><dd><a href="html/libxml-HTMLparser.html#htmlCtxtReadFd">htmlCtxtReadFd</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadFd">htmlReadFd</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFd">xmlCtxtReadFd</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemDisplay">xmlMemDisplay</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemShow">xmlMemShow</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFd">xmlOutputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFd">xmlParserInputBufferCreateFd</a><br /> -<a href="html/libxml-parser.html#xmlReadFd">xmlReadFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFd">xmlReaderForFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFd">xmlSaveToFd</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -</dd><dt>designed</dt><dd><a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -</dd><dt>desired</dt><dd><a href="html/libxml-tree.html#xmlBufferResize">xmlBufferResize</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strloc">xmlUTF8Strloc</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strpos">xmlUTF8Strpos</a><br /> -</dd><dt>destination</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -<a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -</dd><dt>destroy</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -</dd><dt>destroyed</dt><dd><a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetup">xmlTextReaderSetup</a><br /> -</dd><dt>destruction</dt><dd><a href="html/libxml-globals.html#xmlDeregisterNodeDefault">xmlDeregisterNodeDefault</a><br /> -</dd><dt>details</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>detect</dt><dd><a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -</dd><dt>detected</dt><dd><a href="html/libxml-xpathInternals.html#CHECK_ERROR">CHECK_ERROR</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_ERROR0">CHECK_ERROR0</a><br /> -<a href="html/libxml-SAX.html#endDocument">endDocument</a><br /> -<a href="html/libxml-parser.html#endDocumentSAXFunc">endDocumentSAXFunc</a><br /> -<a href="html/libxml-SAX.html#endElement">endElement</a><br /> -<a href="html/libxml-parser.html#endElementNsSAX2Func">endElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#endElementSAXFunc">endElementSAXFunc</a><br /> -<a href="html/libxml-SAX.html#reference">reference</a><br /> -<a href="html/libxml-parser.html#referenceSAXFunc">referenceSAXFunc</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndDocument">xmlSAX2EndDocument</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElement">xmlSAX2EndElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElementNs">xmlSAX2EndElementNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Reference">xmlSAX2Reference</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -</dd><dt>detection</dt><dd><a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkGetDefaultDetect">xlinkGetDefaultDetect</a><br /> -<a href="html/libxml-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a><br /> -<a href="html/libxml-xlink.html#xlinkSetDefaultDetect">xlinkSetDefaultDetect</a><br /> -<a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -</dd><dt>determine</dt><dd><a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-chvalid.html#xmlCharInRange">xmlCharInRange</a><br /> -</dd><dt>determined</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -</dd><dt>determinist</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataIsDeterminist">xmlAutomataIsDeterminist</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpIsDeterminist">xmlRegexpIsDeterminist</a><br /> -</dd><dt>dict</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -</dd><dt>dictionary</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-dict.html#xmlDictCleanup">xmlDictCleanup</a><br /> -<a href="html/libxml-dict.html#xmlDictCreate">xmlDictCreate</a><br /> -<a href="html/libxml-dict.html#xmlDictCreateSub">xmlDictCreateSub</a><br /> -<a href="html/libxml-dict.html#xmlDictReference">xmlDictReference</a><br /> -<a href="html/libxml-hash.html#xmlHashCreateDict">xmlHashCreateDict</a><br /> -<a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>dictionnary</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-dict.html#xmlDictCreate">xmlDictCreate</a><br /> -<a href="html/libxml-dict.html#xmlDictCreateSub">xmlDictCreateSub</a><br /> -<a href="html/libxml-dict.html#xmlDictExists">xmlDictExists</a><br /> -<a href="html/libxml-dict.html#xmlDictFree">xmlDictFree</a><br /> -<a href="html/libxml-dict.html#xmlDictLookup">xmlDictLookup</a><br /> -<a href="html/libxml-dict.html#xmlDictOwns">xmlDictOwns</a><br /> -<a href="html/libxml-dict.html#xmlDictQLookup">xmlDictQLookup</a><br /> -<a href="html/libxml-dict.html#xmlDictReference">xmlDictReference</a><br /> -<a href="html/libxml-dict.html#xmlDictSize">xmlDictSize</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewCtxt">xmlExpNewCtxt</a><br /> -</dd><dt>did</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderStandalone">xmlTextReaderStandalone</a><br /> -</dd><dt>difference</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -</dd><dt>different</dt><dd><a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrQEqual">xmlStrQEqual</a><br /> -</dd><dt>differentiate</dt><dd><a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>differently</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>digit</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>digits</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>dir</dt><dd><a href="html/libxml-debugXML.html#xmlShellDir">xmlShellDir</a><br /> -</dd><dt>direct</dt><dd><a href="html/libxml-HTMLparser.html#htmlElementAllowedHere">htmlElementAllowedHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHereDesc">htmlElementAllowedHereDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementStatusHere">htmlElementStatusHere</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -</dd><dt>direction</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAttribute">xmlXPathNextAttribute</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextChild">xmlXPathNextChild</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendant">xmlXPathNextDescendant</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextNamespace">xmlXPathNextNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextParent">xmlXPathNextParent</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextSelf">xmlXPathNextSelf</a><br /> -</dd><dt>directly</dt><dd><a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -<a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertBoolean">xmlXPathConvertBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertNumber">xmlXPathConvertNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertString">xmlXPathConvertString</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -</dd><dt>directories</dt><dd><a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -</dd><dt>directory</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCwd">xmlNanoFTPCwd</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPDele">xmlNanoFTPDele</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserGetDirectory">xmlParserGetDirectory</a><br /> -<a href="html/libxml-debugXML.html#xmlShellList">xmlShellList</a><br /> -</dd><dt>disable</dt><dd><a href="html/libxml-catalog.html#xmlCatalogSetDebug">xmlCatalogSetDebug</a><br /> -</dd><dt>disabled</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -</dd><dt>disables</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>disabling</dt><dd><a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -</dd><dt>disallowed</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_EXTENSION">XML_SCHEMAS_ELEM_BLOCK_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION">XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION</a><br /> -</dd><dt>discard</dt><dd><a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -</dd><dt>discarding</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -</dd><dt>disconnected</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewState">xmlAutomataNewState</a><br /> -</dd><dt>discovering</dt><dd><a href="html/libxml-parserInternals.html#xmlSwitchEncoding">xmlSwitchEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchInputEncoding">xmlSwitchInputEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchToEncoding">xmlSwitchToEncoding</a><br /> -</dd><dt>disctionary</dt><dd><a href="html/libxml-dict.html#xmlDictOwns">xmlDictOwns</a><br /> -</dd><dt>display</dt><dd><a href="html/libxml-parser.html#errorSAXFunc">errorSAXFunc</a><br /> -<a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -<a href="html/libxml-parser.html#warningSAXFunc">warningSAXFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemShow">xmlMemShow</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserError">xmlParserError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserWarning">xmlParserWarning</a><br /> -</dd><dt>distinct</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a><br /> -</dd><dt>distinguish</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>div</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>doc</dt><dd><a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> -</dd><dt>doc-</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-tree.html#xmlDocGetRootElement">xmlDocGetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> -</dd><dt>docs</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>doctypedecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a><br /> -<a href="html/libxml-parser.html#xmlParseDocument">xmlParseDocument</a><br /> -</dd><dt>documents</dt><dd><a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>doesn</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHere">htmlElementAllowedHere</a><br /> -<a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-entities.html#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a><br /> -<a href="html/libxml-tree.html#xmlFreeNode">xmlFreeNode</a><br /> -<a href="html/libxml-encoding.html#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMatch">xmlPatternMatch</a><br /> -<a href="html/libxml-tree.html#xmlRemoveProp">xmlRemoveProp</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strlen">xmlUTF8Strlen</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -</dd><dt>don</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeNodeSetList">xmlXPathFreeNodeSetList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a><br /> -</dd><dt>dotgnu</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -</dd><dt>double</dt><dd><a href="">val</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -<a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewFloat">xmlXPathNewFloat</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetCreate">xmlXPathNodeSetCreate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnNumber">xmlXPathReturnNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetCreate">xmlXPtrLocationSetCreate</a><br /> -</dd><dt>double-hyphen</dt><dd><a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -</dd><dt>double-quotes</dt><dd><a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -</dd><dt>doublequotes</dt><dd><a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -</dd><dt>down</dt><dd><a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -</dd><dt>draft</dt><dd><a href="html/libxml-xinclude.html#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a><br /> -</dd><dt>drop</dt><dd><a href="html/libxml-xmlIO.html#xmlFileRead">xmlFileRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPRead">xmlIOFTPRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPRead">xmlIOHTTPRead</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a><br /> -</dd><dt>dtd</dt><dd><a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDoc">htmlNewDoc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDocNoDtD">htmlNewDocNoDtD</a><br /> -<a href="html/libxml-tree.html#xmlCopyDtd">xmlCopyDtd</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -</dd><dt>dtds</dt><dd><a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>dump</dt><dd><a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferCCat">xmlBufferCCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferDump">xmlBufferDump</a><br /> -<a href="html/libxml-tree.html#xmlBufferShrink">xmlBufferShrink</a><br /> -<a href="html/libxml-valid.html#xmlDumpAttributeDecl">xmlDumpAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpAttributeTable">xmlDumpAttributeTable</a><br /> -<a href="html/libxml-valid.html#xmlDumpElementDecl">xmlDumpElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpElementTable">xmlDumpElementTable</a><br /> -<a href="html/libxml-entities.html#xmlDumpEntitiesTable">xmlDumpEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlDumpEntityDecl">xmlDumpEntityDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpNotationDecl">xmlDumpNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpNotationTable">xmlDumpNotationTable</a><br /> -<a href="html/libxml-debugXML.html#xmlLsOneNode">xmlLsOneNode</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemShow">xmlMemShow</a><br /> -<a href="html/libxml-valid.html#xmlSnprintfElementContent">xmlSnprintfElementContent</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpObject">xmlXPathDebugDumpObject</a><br /> -</dd><dt>dumps</dt><dd><a href="html/libxml-debugXML.html#xmlShellBase">xmlShellBase</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCat">xmlShellCat</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDir">xmlShellDir</a><br /> -</dd><dt>duplicate</dt><dd><a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -</dd><dt>duplicated</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a><br /> -</dd><dt>duplicates</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaCopyValue">xmlSchemaCopyValue</a><br /> -</dd><dt>duration</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>during</dt><dd><a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewDocParserCtxt">xmlSchemaNewDocParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewDocParserCtxt">xmlSchematronNewDocParserCtxt</a><br /> -</dd><dt>dynamic</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_MODULE_EXTENSION">LIBXML_MODULE_EXTENSION</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk14.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk14.html deleted file mode 100644 index 10054535..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk14.html +++ /dev/null @@ -1,455 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index e-e for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index e-e for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter e:</h2><dl><dt>each</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-hash.html#xmlHashCopy">xmlHashCopy</a><br /> -<a href="html/libxml-hash.html#xmlHashScan">xmlHashScan</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull">xmlHashScanFull</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>edition</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>effect</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>effective</dt><dd><a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -</dd><dt>efficiency</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>either</dt><dd><a href="html/libxml-debugXML.html#xmlBoolToText">xmlBoolToText</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -</dd><dt>either:</dt><dd><a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -</dd><dt>elem</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_CHECKED">XML_SCHEMAS_ELEM_INTERNAL_CHECKED</a><br /> -</dd><dt>elem-</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -</dd><dt>element-</dt><dd><a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>element-node</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -</dd><dt>element-nodes</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</dd><dt>elementFormDefault</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_QUALIF_ELEM">XML_SCHEMAS_QUALIF_ELEM</a><br /> -</dd><dt>elementdecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>elements</dt><dd><a href="html/libxml-catalog.html#XML_CATALOGS_NAMESPACE">XML_CATALOGS_NAMESPACE</a><br /> -<a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_GLOBAL">XML_SCHEMAS_ATTR_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_NSDEFAULT">XML_SCHEMAS_ATTR_NSDEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_NSDEFAULT">XML_SCHEMAS_ELEM_NSDEFAULT</a><br /> -<a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHere">htmlElementAllowedHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-dict.html#xmlDictSize">xmlDictSize</a><br /> -<a href="html/libxml-pattern.html#xmlFreePatternList">xmlFreePatternList</a><br /> -<a href="html/libxml-hash.html#xmlHashSize">xmlHashSize</a><br /> -<a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> -<a href="html/libxml-list.html#xmlListMerge">xmlListMerge</a><br /> -<a href="html/libxml-list.html#xmlListReverse">xmlListReverse</a><br /> -<a href="html/libxml-list.html#xmlListSize">xmlListSize</a><br /> -<a href="html/libxml-list.html#xmlListSort">xmlListSort</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDocument">xmlTextWriterEndDocument</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>else</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -</dd><dt>embedded</dt><dd><a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_0">XML_CTXT_FINISH_DTD_0</a><br /> -<a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_1">XML_CTXT_FINISH_DTD_1</a><br /> -</dd><dt>emitted</dt><dd><a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -</dd><dt>empty-element</dt><dd><a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -</dd><dt>enable</dt><dd><a href="html/libxml-catalog.html#xmlCatalogSetDebug">xmlCatalogSetDebug</a><br /> -</dd><dt>enabled</dt><dd><a href="html/libxml-tree.html#xmlSaveFile">xmlSaveFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -</dd><dt>enables</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>enabling</dt><dd><a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> -<a href="html/libxml-parser.html#xmlPedanticParserDefault">xmlPedanticParserDefault</a><br /> -</dd><dt>enc</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -</dd><dt>encapsulate</dt><dd><a href="html/libxml-tree.html#xmlBufferFree">xmlBufferFree</a><br /> -</dd><dt>encapsulating</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-parser.html#xmlNewIOInputStream">xmlNewIOInputStream</a><br /> -</dd><dt>enclose</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderQuoteChar">xmlTextReaderQuoteChar</a><br /> -</dd><dt>encode</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBase64">xmlTextWriterWriteBase64</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBinHex">xmlTextWriterWriteBinHex</a><br /> -</dd><dt>encoded</dt><dd><a href="html/libxml-xmlIO.html#_xmlOutputBuffer">_xmlOutputBuffer</a><br /> -<a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-xmlIO.html#_xmlParserInputBuffer">_xmlParserInputBuffer</a><br /> -<a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBase64">xmlTextWriterWriteBase64</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBinHex">xmlTextWriterWriteBinHex</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strlen">xmlUTF8Strlen</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsize">xmlUTF8Strsize</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -</dd><dt>encoder</dt><dd><a href="html/libxml-xmlIO.html#_xmlOutputBuffer">_xmlOutputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#_xmlParserInputBuffer">_xmlParserInputBuffer</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -</dd><dt>encoder==NULL</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>enconding</dt><dd><a href="html/libxml-encoding.html#xmlCharEncCloseFunc">xmlCharEncCloseFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -</dd><dt>encountered</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -</dd><dt>encountering</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -</dd><dt>end-tag</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -</dd><dt>end-up</dt><dd><a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -</dd><dt>ended</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-threads.html#xmlCleanupThreads">xmlCleanupThreads</a><br /> -</dd><dt>ending</dt><dd><a href="html/libxml-xpointer.html#xmlXPtrNewCollapsedRange">xmlXPtrNewCollapsedRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRange">xmlXPtrNewRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodeObject">xmlXPtrNewRangeNodeObject</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodePoint">xmlXPtrNewRangeNodePoint</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodes">xmlXPtrNewRangeNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePointNode">xmlXPtrNewRangePointNode</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePoints">xmlXPtrNewRangePoints</a><br /> -</dd><dt>ends</dt><dd><a href="html/libxml-parser.html#_xmlParserNodeInfo">_xmlParserNodeInfo</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPClose">xmlNanoHTTPClose</a><br /> -</dd><dt>engine</dt><dd><a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a><br /> -</dd><dt>englobing</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpSubsume">xmlExpSubsume</a><br /> -<a href="html/libxml-valid.html#xmlSnprintfElementContent">xmlSnprintfElementContent</a><br /> -<a href="html/libxml-valid.html#xmlSprintfElementContent">xmlSprintfElementContent</a><br /> -</dd><dt>enhancements</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</dd><dt>enough</dt><dd><a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -</dd><dt>ensure</dt><dd><a href="html/libxml-tree.html#xmlCopyNodeList">xmlCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -</dd><dt>ensures</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -</dd><dt>ensuring</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>entire</dt><dd><a href="html/libxml-xmlIO.html#xmlCleanupInputCallbacks">xmlCleanupInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlCleanupOutputCallbacks">xmlCleanupOutputCallbacks</a><br /> -</dd><dt>entities:</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -</dd><dt>entproc</dt><dd><a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -</dd><dt>entries</dt><dd><a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogRemove">xmlACatalogRemove</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogConvert">xmlCatalogConvert</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogRemove">xmlCatalogRemove</a><br /> -<a href="html/libxml-catalog.html#xmlConvertSGMLCatalog">xmlConvertSGMLCatalog</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemShow">xmlMemShow</a><br /> -</dd><dt>entry</dt><dd><a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogRemove">xmlACatalogRemove</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAddLocal">xmlCatalogAddLocal</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogRemove">xmlCatalogRemove</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetRemove">xmlXPathNodeSetRemove</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetRemove">xmlXPtrLocationSetRemove</a><br /> -</dd><dt>enumerated</dt><dd><a href="html/libxml-SAX.html#attributeDecl">attributeDecl</a><br /> -<a href="html/libxml-parser.html#attributeDeclSAXFunc">attributeDeclSAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2AttributeDecl">xmlSAX2AttributeDecl</a><br /> -</dd><dt>enumeration</dt><dd><a href="html/libxml-tree.html#_xmlAttribute">_xmlAttribute</a><br /> -<a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlCopyEnumeration">xmlCopyEnumeration</a><br /> -<a href="html/libxml-valid.html#xmlCreateEnumeration">xmlCreateEnumeration</a><br /> -<a href="html/libxml-valid.html#xmlFreeEnumeration">xmlFreeEnumeration</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumerationType">xmlParseEnumerationType</a><br /> -</dd><dt>environment</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-xpath.html#xmlXPathInit">xmlXPathInit</a><br /> -</dd><dt>epsilon</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> -</dd><dt>equal</dt><dd><a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrQEqual">xmlStrQEqual</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstName">xmlTextReaderConstName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderName">xmlTextReaderName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEqualValues">xmlXPathEqualValues</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotEqualValues">xmlXPathNotEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPositionFunction">xmlXPathPositionFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>equality</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-list.html#xmlListDataCompare">xmlListDataCompare</a><br /> -</dd><dt>equivalent</dt><dd><a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemFree">xmlMemFree</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemStrdupLoc">xmlMemStrdupLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryStrdup">xmlMemoryStrdup</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strpos">xmlUTF8Strpos</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToString">xmlXPathCastToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertBoolean">xmlXPathConvertBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertNumber">xmlXPathConvertNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertString">xmlXPathConvertString</a><br /> -</dd><dt>errror</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapNewCtxt">xmlDOMWrapNewCtxt</a><br /> -</dd><dt>escape</dt><dd><a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -<a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -</dd><dt>escaped</dt><dd><a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-uri.html#xmlSaveUri">xmlSaveUri</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -<a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -</dd><dt>escapes</dt><dd><a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -</dd><dt>escaping</dt><dd><a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetAttrEscape">xmlSaveSetAttrEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetEscape">xmlSaveSetEscape</a><br /> -</dd><dt>especially</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -</dd><dt>established</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -</dd><dt>etc</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaFacet">_xmlSchemaFacet</a><br /> -<a href="html/libxml-tree.html#xmlDocGetRootElement">xmlDocGetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -</dd><dt>evaluate</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathEvalExpr">xmlXPathEvalExpr</a><br /> -</dd><dt>evaluated</dt><dd><a href="html/libxml-xpath.html#xmlXPathCompiledEvalToBoolean">xmlXPathCompiledEvalToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -</dd><dt>evaluating</dt><dd><a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -</dd><dt>evaluation</dt><dd><a href="html/libxml-xpath.html#_xmlXPathFunct">_xmlXPathFunct</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathParserContext">_xmlXPathParserContext</a><br /> -<a href="html/libxml-xpathInternals.html#valuePop">valuePop</a><br /> -<a href="html/libxml-xpathInternals.html#valuePush">valuePush</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathResult">xmlShellPrintXPathResult</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompiledEval">xmlXPathCompiledEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEval">xmlXPathEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalExpression">xmlXPathEvalExpression</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalFunc">xmlXPathEvalFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEval">xmlXPtrEval</a><br /> -</dd><dt>evaulation</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegFreeExecCtxt">xmlRegFreeExecCtxt</a><br /> -</dd><dt>even</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterFullEndElement">xmlTextWriterFullEndElement</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoundFunction">xmlXPathRoundFunction</a><br /> -</dd><dt>events</dt><dd><a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -</dd><dt>ever</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpCtxtNbCons">xmlExpCtxtNbCons</a><br /> -</dd><dt>everywhere</dt><dd><a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -</dd><dt>exact</dt><dd><a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -</dd><dt>examined</dt><dd><a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -</dd><dt>example</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>examples</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>except</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-catalog.html#xmlParseCatalogFile">xmlParseCatalogFile</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -</dd><dt>exception</dt><dd><a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -</dd><dt>excluding</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -</dd><dt>exclusions</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a><br /> -</dd><dt>exclusions:</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_EXTENSION">XML_SCHEMAS_ELEM_FINAL_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_RESTRICTION">XML_SCHEMAS_ELEM_FINAL_RESTRICTION</a><br /> -</dd><dt>exclusive</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>executed</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataCompile">xmlAutomataCompile</a><br /> -</dd><dt>execution</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -</dd><dt>exist</dt><dd><a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a><br /> -</dd><dt>existent</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -</dd><dt>exists</dt><dd><a href="html/libxml-dict.html#xmlDictExists">xmlDictExists</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlLang">xmlTextReaderConstXmlLang</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderXmlLang">xmlTextReaderXmlLang</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -</dd><dt>expand</dt><dd><a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -</dd><dt>expanded</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNamespaceURIFunction">xmlXPathNamespaceURIFunction</a><br /> -</dd><dt>expected</dt><dd><a href="">x</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewMemParserCtxt">xmlRelaxNGNewMemParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewParserCtxt">xmlRelaxNGNewParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewMemParserCtxt">xmlSchemaNewMemParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewParserCtxt">xmlSchemaNewParserCtxt</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewMemParserCtxt">xmlSchematronNewMemParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewParserCtxt">xmlSchematronNewParserCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>explicitly</dt><dd><a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -</dd><dt>explored</dt><dd><a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -</dd><dt>exposing</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderRead">xmlTextReaderRead</a><br /> -</dd><dt>expressing</dt><dd><a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -</dd><dt>expressions</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_EXPR_ENABLED">LIBXML_EXPR_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_REGEXP_ENABLED">LIBXML_REGEXP_ENABLED</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewCtxt">xmlExpNewCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpSubsume">xmlExpSubsume</a><br /> -</dd><dt>exslSetsDistinctSorted</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -</dd><dt>exslSetsLeadingSorted</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -</dd><dt>exslSetsNodeLeadingSorted</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -</dd><dt>ext</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>extParsedEnt</dt><dd><a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseEntity">xmlParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExtParsedEnt">xmlParseExtParsedEnt</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -</dd><dt>extSubset</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> -</dd><dt>extSubsetDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> -</dd><dt>extend</dt><dd><a href="html/libxml-xmlstring.html#xmlStrncat">xmlStrncat</a><br /> -<a href="html/libxml-valid.html#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a><br /> -</dd><dt>extended</dt><dd><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -</dd><dt>extension</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_EXTENSION">XML_SCHEMAS_ELEM_FINAL_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a><br /> -</dd><dt>extensions</dt><dd><a href="html/libxml-parser.html#_xmlSAXHandler">_xmlSAXHandler</a><br /> -</dd><dt>extract</dt><dd><a href="html/libxml-tree.html#XML_GET_CONTENT">XML_GET_CONTENT</a><br /> -<a href="html/libxml-tree.html#XML_GET_LINE">XML_GET_LINE</a><br /> -<a href="html/libxml-tree.html#xmlBufferContent">xmlBufferContent</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk15.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk15.html deleted file mode 100644 index 2f0774ee..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk15.html +++ /dev/null @@ -1,438 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index f-f for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index f-f for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter f:</h2><dl><dt>fTP</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a><br /> -</dd><dt>facet</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_COLLAPSE">XML_SCHEMAS_FACET_COLLAPSE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_PRESERVE">XML_SCHEMAS_FACET_PRESERVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_REPLACE">XML_SCHEMAS_FACET_REPLACE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_UNKNOWN">XML_SCHEMAS_FACET_UNKNOWN</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaFacetLink">_xmlSchemaFacetLink</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeFacet">xmlSchemaFreeFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetFacetValueAsULong">xmlSchemaGetFacetValueAsULong</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaIsBuiltInTypeFacet">xmlSchemaIsBuiltInTypeFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -</dd><dt>facets</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FACETSNEEDVALUE">XML_SCHEMAS_TYPE_FACETSNEEDVALUE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_HAS_FACETS">XML_SCHEMAS_TYPE_HAS_FACETS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_NORMVALUENEEDED">XML_SCHEMAS_TYPE_NORMVALUENEEDED</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a><br /> -</dd><dt>facility</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpCtxtNbCons">xmlExpCtxtNbCons</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtNbNodes">xmlExpCtxtNbNodes</a><br /> -</dd><dt>fail</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathError">xmlShellPrintXPathError</a><br /> -</dd><dt>failed</dt><dd><a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCwd">xmlNanoFTPCwd</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPDele">xmlNanoFTPDele</a><br /> -<a href="html/libxml-valid.html#xmlRemoveID">xmlRemoveID</a><br /> -<a href="html/libxml-valid.html#xmlRemoveRef">xmlRemoveRef</a><br /> -<a href="html/libxml-debugXML.html#xmlShellLoad">xmlShellLoad</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcess">xmlXIncludeProcess</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlags">xmlXIncludeProcessFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTree">xmlXIncludeProcessTree</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTreeFlags">xmlXIncludeProcessTreeFlags</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -</dd><dt>fails</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileOpen">xmlFileOpen</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -</dd><dt>fallback</dt><dd><a href="html/libxml-xinclude.html#XINCLUDE_FALLBACK">XINCLUDE_FALLBACK</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileOpen">xmlFileOpen</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -</dd><dt>far</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -</dd><dt>fashion</dt><dd><a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -</dd><dt>fast</dt><dd><a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -</dd><dt>faster</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -</dd><dt>fatal</dt><dd><a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -</dd><dt>fatalError</dt><dd><a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -</dd><dt>favor</dt><dd><a href="html/libxml-valid.html#xmlNewElementContent">xmlNewElementContent</a><br /> -</dd><dt>feature</dt><dd><a href="html/libxml-parser.html#xmlGetFeature">xmlGetFeature</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -<a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -<a href="html/libxml-parser.html#xmlSetFeature">xmlSetFeature</a><br /> -</dd><dt>features</dt><dd><a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -</dd><dt>fed</dt><dd><a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlNewTextReader">xmlNewTextReader</a><br /> -<a href="html/libxml-xmlreader.html#xmlNewTextReaderFilename">xmlNewTextReaderFilename</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</dd><dt>feed</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderSetup">xmlTextReaderSetup</a><br /> -</dd><dt>fetch</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPGetSocket">xmlNanoFTPGetSocket</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPOpen">xmlNanoFTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -</dd><dt>fetching</dt><dd><a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strpos">xmlUTF8Strpos</a><br /> -</dd><dt>field</dt><dd><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_0">XML_CTXT_FINISH_DTD_0</a><br /> -<a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_1">XML_CTXT_FINISH_DTD_1</a><br /> -<a href="html/libxml-parser.html#XML_DETECT_IDS">XML_DETECT_IDS</a><br /> -<a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -<a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMisc">xmlParseMisc</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>fields</dt><dd><a href="html/libxml-parser.html#XML_SAX2_MAGIC">XML_SAX2_MAGIC</a><br /> -<a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#_xmlSAXHandler">_xmlSAXHandler</a><br /> -<a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> -</dd><dt>files</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a><br /> -</dd><dt>filesystem</dt><dd><a href="html/libxml-HTMLparser.html#htmlCtxtReadFile">htmlCtxtReadFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadFile">htmlReadFile</a><br /> -<a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFile">xmlCtxtReadFile</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -<a href="html/libxml-parser.html#xmlReadFile">xmlReadFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFile">xmlReaderForFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFile">xmlReaderNewFile</a><br /> -</dd><dt>filled</dt><dd><a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -</dd><dt>fills</dt><dd><a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> -</dd><dt>filters</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEncodingDecl">xmlParseEncodingDecl</a><br /> -</dd><dt>final</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_DEFAULT">XML_SCHEMAS_TYPE_FINAL_DEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_LIST">XML_SCHEMAS_TYPE_FINAL_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataSetFinalState">xmlAutomataSetFinalState</a><br /> -<a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>finalDefault</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_LIST">XML_SCHEMAS_FINAL_DEFAULT_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION">XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_UNION">XML_SCHEMAS_FINAL_DEFAULT_UNION</a><br /> -</dd><dt>find</dt><dd><a href="html/libxml-threads.html#xmlGetThreadId">xmlGetThreadId</a><br /> -<a href="html/libxml-tree.html#xmlIsXHTML">xmlIsXHTML</a><br /> -</dd><dt>finding</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -</dd><dt>finds</dt><dd><a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -</dd><dt>finishDtd</dt><dd><a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_0">XML_CTXT_FINISH_DTD_0</a><br /> -<a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_1">XML_CTXT_FINISH_DTD_1</a><br /> -</dd><dt>finished</dt><dd><a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-parserInternals.html#xmlSkipBlankChars">xmlSkipBlankChars</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -</dd><dt>finishing</dt><dd><a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -</dd><dt>finite</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -</dd><dt>firs</dt><dd><a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -</dd><dt>fist</dt><dd><a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -</dd><dt>fit</dt><dd><a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -</dd><dt>fixed</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_FIXED">XML_SCHEMAS_ATTR_FIXED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FIXED">XML_SCHEMAS_ELEM_FIXED</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>fixup</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FIXUP_1">XML_SCHEMAS_TYPE_FIXUP_1</a><br /> -</dd><dt>flag</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSetMetaEncoding">htmlSetMetaEncoding</a><br /> -<a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsValid">xmlTextReaderIsValid</a><br /> -</dd><dt>flagged</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlGetMetaEncoding">htmlGetMetaEncoding</a><br /> -</dd><dt>flags</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForDoc">xmlReaderForDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFd">xmlReaderForFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFile">xmlReaderForFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForIO">xmlReaderForIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForMemory">xmlReaderForMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewDoc">xmlReaderNewDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFile">xmlReaderNewFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewMemory">xmlReaderNewMemory</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeSetFlags">xmlXIncludeSetFlags</a><br /> -</dd><dt>flat</dt><dd><a href="html/libxml-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a><br /> -<a href="html/libxml-tree.html#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a><br /> -</dd><dt>floor</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathFloorFunction">xmlXPathFloorFunction</a><br /> -</dd><dt>flow</dt><dd><a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -</dd><dt>flushes</dt><dd><a href="html/libxml-xmlIO.html#xmlOutputBufferClose">xmlOutputBufferClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferFlush">xmlOutputBufferFlush</a><br /> -</dd><dt>follow</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -</dd><dt>following-sibling</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a><br /> -</dd><dt>follows</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a><br /> -</dd><dt>follows:</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>fonctionnalities</dt><dd><a href="html/libxml-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a><br /> -</dd><dt>for:</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>forbid</dt><dd><a href="html/libxml-xpath.html#XML_XPATH_NOVAR">XML_XPATH_NOVAR</a><br /> -</dd><dt>force</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -</dd><dt>forced</dt><dd><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>form</dt><dd><a href="html/libxml-DOCBparser.html#docbParseDoc">docbParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseFile">docbParseFile</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-parserInternals.html#htmlCreateFileParserCtxt">htmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDoc">htmlParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseFile">htmlParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>formal</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_EXPR_ENABLED">LIBXML_EXPR_ENABLED</a><br /> -</dd><dt>formatted</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttribute">xmlTextWriterWriteFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttributeNS">xmlTextWriterWriteFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatCDATA">xmlTextWriterWriteFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTD">xmlTextWriterWriteFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDAttlist">xmlTextWriterWriteFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDElement">xmlTextWriterWriteFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDInternalEntity">xmlTextWriterWriteFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElement">xmlTextWriterWriteFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElementNS">xmlTextWriterWriteFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatPI">xmlTextWriterWriteFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatRaw">xmlTextWriterWriteFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatString">xmlTextWriterWriteFormatString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttribute">xmlTextWriterWriteVFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttributeNS">xmlTextWriterWriteVFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatCDATA">xmlTextWriterWriteVFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTD">xmlTextWriterWriteVFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDAttlist">xmlTextWriterWriteVFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDElement">xmlTextWriterWriteVFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDInternalEntity">xmlTextWriterWriteVFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElement">xmlTextWriterWriteVFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElementNS">xmlTextWriterWriteVFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatPI">xmlTextWriterWriteVFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatRaw">xmlTextWriterWriteVFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatString">xmlTextWriterWriteVFormatString</a><br /> -</dd><dt>formatting</dt><dd><a href="html/libxml-HTMLtree.html#htmlDocContentDumpFormatOutput">htmlDocContentDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemoryFormat">htmlDocDumpMemoryFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDump">htmlNodeDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFile">htmlNodeDumpFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpOutput">htmlNodeDumpOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFileEnc">htmlSaveFileEnc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFileFormat">htmlSaveFileFormat</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrPrintf">xmlStrPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrVPrintf">xmlStrVPrintf</a><br /> -</dd><dt>formed</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -</dd><dt>fptr</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -</dd><dt>fragment</dt><dd><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -<a href="html/libxml-tree.html#xmlNewDocFragment">xmlNewDocFragment</a><br /> -<a href="html/libxml-uri.html#xmlParseURI">xmlParseURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -<a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlPushInput">xmlPushInput</a><br /> -</dd><dt>fragments</dt><dd><a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -</dd><dt>freeing</dt><dd><a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-parser.html#xmlParserInputDeallocate">xmlParserInputDeallocate</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -</dd><dt>frees</dt><dd><a href="html/libxml-tree.html#xmlBufferFree">xmlBufferFree</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>front</dt><dd><a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> -<a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> -<a href="html/libxml-tree.html#xmlValidateName">xmlValidateName</a><br /> -<a href="html/libxml-tree.html#xmlValidateQName">xmlValidateQName</a><br /> -</dd><dt>front-end</dt><dd><a href="html/libxml-encoding.html#xmlCharEncCloseFunc">xmlCharEncCloseFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -</dd><dt>ftp:</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPOpen">xmlNanoFTPOpen</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -</dd><dt>ftp_proxy</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -</dd><dt>ftp_proxy_password</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -</dd><dt>ftp_proxy_user</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -</dd><dt>full</dt><dd><a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathParserContext">_xmlXPathParserContext</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-hash.html#xmlHashScannerFull">xmlHashScannerFull</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderExpand">xmlTextReaderExpand</a><br /> -<a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strlen">xmlUTF8Strlen</a><br /> -</dd><dt>fully</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -</dd><dt>func</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -</dd><dt>funcs</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -</dd><dt>function:</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -</dd><dt>functionality</dt><dd><a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetGetLength">xmlXPathNodeSetGetLength</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -</dd><dt>functions</dt><dd><a href="html/libxml-HTMLparser.html#htmlCtxtReadIO">htmlCtxtReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadIO">htmlReadIO</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadIO">xmlCtxtReadIO</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-parser.html#xmlReadIO">xmlReadIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForIO">xmlReaderForIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserStructuredErrors">xmlRelaxNGSetParserStructuredErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidStructuredErrors">xmlRelaxNGSetValidStructuredErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserStructuredErrors">xmlSchemaSetParserStructuredErrors</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCmd">xmlShellCmd</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchEncoding">xmlSwitchEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchInputEncoding">xmlSwitchInputEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchToEncoding">xmlSwitchToEncoding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterAllFunctions">xmlXPathRegisterAllFunctions</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredFuncsCleanup">xmlXPathRegisteredFuncsCleanup</a><br /> -</dd><dt>further</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parser.html#xmlStopParser">xmlStopParser</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeSetFlags">xmlXIncludeSetFlags</a><br /> -</dd><dt>future</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk16.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk16.html deleted file mode 100644 index b83d8e41..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk16.html +++ /dev/null @@ -1,353 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index g-h for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index g-h for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter g:</h2><dl><dt>gDay</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>gMonth</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>gMonthDay</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>gYear</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>gYearMonth</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>garanteed</dt><dd><a href="html/libxml-xmlstring.html#xmlUTF8Strsize">xmlUTF8Strsize</a><br /> -</dd><dt>garbage</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -</dd><dt>gcc</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -</dd><dt>gcc4</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -</dd><dt>genChRanges</dt><dd><a href="html/libxml-chvalid.html#xmlIsBaseCharQ">xmlIsBaseCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseChar_ch">xmlIsBaseChar_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlankQ">xmlIsBlankQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlank_ch">xmlIsBlank_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCharQ">xmlIsCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsChar_ch">xmlIsChar_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombiningQ">xmlIsCombiningQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigitQ">xmlIsDigitQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigit_ch">xmlIsDigit_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtenderQ">xmlIsExtenderQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtender_ch">xmlIsExtender_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographicQ">xmlIsIdeographicQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidCharQ">xmlIsPubidCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar_ch">xmlIsPubidChar_ch</a><br /> -</dd><dt>general</dt><dd><a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_BOTH">XML_SUBSTITUTE_BOTH</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parser.html#xmlParseExtParsedEnt">xmlParseExtParsedEnt</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -</dd><dt>generally</dt><dd><a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -</dd><dt>generate</dt><dd><a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-parser.html#xmlLoadExternalEntity">xmlLoadExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -</dd><dt>generated</dt><dd><a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseCharQ">xmlIsBaseCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseChar_ch">xmlIsBaseChar_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlankQ">xmlIsBlankQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlank_ch">xmlIsBlank_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCharQ">xmlIsCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsChar_ch">xmlIsChar_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombiningQ">xmlIsCombiningQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigitQ">xmlIsDigitQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigit_ch">xmlIsDigit_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtenderQ">xmlIsExtenderQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtender_ch">xmlIsExtender_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographicQ">xmlIsIdeographicQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidCharQ">xmlIsPubidCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar_ch">xmlIsPubidChar_ch</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathResult">xmlShellPrintXPathResult</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsDefault">xmlTextReaderIsDefault</a><br /> -</dd><dt>generates</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegexpExec">xmlRegexpExec</a><br /> -</dd><dt>generating</dt><dd><a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -</dd><dt>generic</dt><dd><a href="html/libxml-xmlerror.html#initGenericErrorDefaultFunc">initGenericErrorDefaultFunc</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCmd">xmlShellCmd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellReadlineFunc">xmlShellReadlineFunc</a><br /> -</dd><dt>get</dt><dd><a href="html/libxml-parser.html#_xmlSAXHandler">_xmlSAXHandler</a><br /> -<a href="html/libxml-parser.html#_xmlSAXHandlerV1">_xmlSAXHandlerV1</a><br /> -<a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -<a href="html/libxml-tree.html#xmlBufferLength">xmlBufferLength</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetDefaults">xmlCatalogGetDefaults</a><br /> -<a href="html/libxml-tree.html#xmlGetCompressMode">xmlGetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlGetDocCompressMode">xmlGetDocCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPInit">xmlNanoFTPInit</a><br /> -<a href="html/libxml-tree.html#xmlNewPI">xmlNewPI</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserProp">xmlTextReaderGetParserProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -</dd><dt>gif</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>give</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -</dd><dt>gives</dt><dd><a href="html/libxml-xmlerror.html#xmlParserError">xmlParserError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserWarning">xmlParserWarning</a><br /> -</dd><dt>giving</dt><dd><a href="html/libxml-tree.html#xmlNewDoc">xmlNewDoc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseVersionNum">xmlParseVersionNum</a><br /> -</dd><dt>global</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_GLOBAL">XML_SCHEMAS_ELEM_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_GLOBAL">XML_SCHEMAS_TYPE_GLOBAL</a><br /> -<a href="html/libxml-tree.html#_xmlNs">_xmlNs</a><br /> -<a href="html/libxml-SAX.html#globalNamespace">globalNamespace</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogDump">xmlCatalogDump</a><br /> -<a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-xmlerror.html#xmlCtxtResetLastError">xmlCtxtResetLastError</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-entities.html#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a><br /> -<a href="html/libxml-threads.html#xmlGetGlobalState">xmlGetGlobalState</a><br /> -<a href="html/libxml-xmlerror.html#xmlGetLastError">xmlGetLastError</a><br /> -<a href="html/libxml-globals.html#xmlInitializeGlobalState">xmlInitializeGlobalState</a><br /> -<a href="html/libxml-xmlerror.html#xmlResetLastError">xmlResetLastError</a><br /> -</dd><dt>globally</dt><dd><a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -</dd><dt>good</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>grafted</dt><dd><a href="html/libxml-tree.html#xmlCopyProp">xmlCopyProp</a><br /> -<a href="html/libxml-tree.html#xmlCopyPropList">xmlCopyPropList</a><br /> -</dd><dt>grammar:</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -</dd><dt>greater</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFloorFunction">xmlXPathFloorFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>greater-than</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -</dd><dt>group</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_HAS_REFS">XML_SCHEMAS_ATTRGROUP_HAS_REFS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_REDEFINED">XML_SCHEMAS_ATTRGROUP_REDEFINED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_EXTENSION">XML_SCHEMAS_ELEM_FINAL_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_RESTRICTION">XML_SCHEMAS_ELEM_FINAL_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD">XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaAttributeGroup">_xmlSchemaAttributeGroup</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -<a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -</dd><dt>groups</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -</dd><dt>grow</dt><dd><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>grows</dt><dd><a href="html/libxml-tree.html#xmlBufferWriteCHAR">xmlBufferWriteCHAR</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteChar">xmlBufferWriteChar</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -</dd></dl><h2>Letter h:</h2><dl><dt>had</dt><dd><a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -</dd><dt>hand</dt><dd><a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -</dd><dt>handled</dt><dd><a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -</dd><dt>handlers</dt><dd><a href="html/libxml-xlink.html#xlinkSetDefaultHandler">xlinkSetDefaultHandler</a><br /> -<a href="html/libxml-encoding.html#xmlCleanupCharEncodingHandlers">xmlCleanupCharEncodingHandlers</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterDefaultInputCallbacks">xmlRegisterDefaultInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterDefaultOutputCallbacks">xmlRegisterDefaultOutputCallbacks</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a><br /> -</dd><dt>handles</dt><dd><a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -<a href="html/libxml-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a><br /> -<a href="html/libxml-tree.html#xmlUnsetProp">xmlUnsetProp</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -</dd><dt>handling</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_UNKNOWN">XML_SCHEMAS_FACET_UNKNOWN</a><br /> -<a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlHandleOmittedElem">htmlHandleOmittedElem</a><br /> -<a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameDefault">xmlOutputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameDefault">xmlParserInputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopBoolean">xmlXPathPopBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopExternal">xmlXPathPopExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNodeSet">xmlXPathPopNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNumber">xmlXPathPopNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopString">xmlXPathPopString</a><br /> -</dd><dt>has-same-nodes</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a><br /> -</dd><dt>haystack</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcasestr">xmlStrcasestr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrstr">xmlStrstr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrsub">xmlStrsub</a><br /> -</dd><dt>head</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD">XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD</a><br /> -</dd><dt>header</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRedir">xmlNanoHTTPRedir</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseTextDecl">xmlParseTextDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseXMLDecl">xmlParseXMLDecl</a><br /> -</dd><dt>headers</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPEncoding">xmlNanoHTTPEncoding</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMimeType">xmlNanoHTTPMimeType</a><br /> -</dd><dt>heading</dt><dd><a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -</dd><dt>helper</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a><br /> -</dd><dt>here</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -</dd><dt>heuristic</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd><dt>heuristic:</dt><dd><a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -</dd><dt>hex</dt><dd><a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -</dd><dt>hierarchy</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -</dd><dt>highly</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseElement">htmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -</dd><dt>hold</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>holding</dt><dd><a href="html/libxml-tree.html#_xmlAttribute">_xmlAttribute</a><br /> -<a href="html/libxml-tree.html#_xmlID">_xmlID</a><br /> -<a href="html/libxml-tree.html#_xmlRef">_xmlRef</a><br /> -<a href="html/libxml-valid.html#xmlAddID">xmlAddID</a><br /> -<a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> -<a href="html/libxml-tree.html#xmlNewNsProp">xmlNewNsProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsPropEatName">xmlNewNsPropEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewProp">xmlNewProp</a><br /> -</dd><dt>holds</dt><dd><a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -</dd><dt>host</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -</dd><dt>hosting</dt><dd><a href="html/libxml-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddNs">xmlXPathNodeSetAddNs</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a><br /> -</dd><dt>hostname</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPInit">xmlNanoFTPInit</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -</dd><dt>hour</dt><dd><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -</dd><dt>how</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -</dd><dt>href</dt><dd><a href="html/libxml-xinclude.html#XINCLUDE_HREF">XINCLUDE_HREF</a><br /> -</dd><dt>href==NULL</dt><dd><a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -</dd><dt>hrefs</dt><dd><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -</dd><dt>html</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -</dd><dt>htmlAttrAllowed</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</dd><dt>htmlElemDescPtr</dt><dd><a href="html/libxml-HTMLparser.html#htmlTagLookup">htmlTagLookup</a><br /> -</dd><dt>htmlElementAllowedHere</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</dd><dt>htmlElementStatusHere</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</dd><dt>htmlEntityDescPtr</dt><dd><a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -</dd><dt>htmlNodePtr</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</dd><dt>htmlParserCtxtPtr</dt><dd><a href="html/libxml-HTMLparser.html#htmlNewParserCtxt">htmlNewParserCtxt</a><br /> -</dd><dt>htmlParserOption</dt><dd><a href="html/libxml-HTMLparser.html#htmlCtxtReadDoc">htmlCtxtReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadFd">htmlCtxtReadFd</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadFile">htmlCtxtReadFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadIO">htmlCtxtReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadMemory">htmlCtxtReadMemory</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtUseOptions">htmlCtxtUseOptions</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadDoc">htmlReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadFd">htmlReadFd</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadFile">htmlReadFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadIO">htmlReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadMemory">htmlReadMemory</a><br /> -</dd><dt>htmlStartClose</dt><dd><a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -</dd><dt>htmlStartCloseIndex</dt><dd><a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -</dd><dt>http:</dt><dd><a href="html/libxml-xinclude.html#XINCLUDE_NS">XINCLUDE_NS</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a><br /> -<a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -</dd><dt>human-readable</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk17.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk17.html deleted file mode 100644 index f09d9bf1..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk17.html +++ /dev/null @@ -1,552 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index i-i for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index i-i for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter i:</h2><dl><dt>iconv</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_ICONV_ENABLED">LIBXML_ICONV_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_ISO8859X_ENABLED">LIBXML_ISO8859X_ENABLED</a><br /> -</dd><dt>identify</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -</dd><dt>identity-constraint</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -</dd><dt>ignorable</dt><dd><a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> -<a href="html/libxml-tree.html#xmlIsBlankNode">xmlIsBlankNode</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> -</dd><dt>ignorableWhitespace</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -</dd><dt>ignored</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>ignoring</dt><dd><a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -</dd><dt>image</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>imbrication</dt><dd><a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -</dd><dt>img</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>immediately</dt><dd><a href="html/libxml-xmlversion.html#xmlCheckVersion">xmlCheckVersion</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWrite">xmlOutputBufferWrite</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>immutable</dt><dd><a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -</dd><dt>implementation</dt><dd><a href="html/libxml-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFunc">xmlXPathRegisterFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncNS">xmlXPathRegisterFuncNS</a><br /> -</dd><dt>implementation-defined</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNextNamespace">xmlXPathNextNamespace</a><br /> -</dd><dt>implemented</dt><dd><a href="html/libxml-HTMLtree.html#HTML_COMMENT_NODE">HTML_COMMENT_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_ENTITY_REF_NODE">HTML_ENTITY_REF_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_PI_NODE">HTML_PI_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_PRESERVE_NODE">HTML_PRESERVE_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_TEXT_NODE">HTML_TEXT_NODE</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCopyValue">xmlSchemaCopyValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -</dd><dt>implicitly</dt><dd><a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -</dd><dt>implied</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>impossible</dt><dd><a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd><dt>improves</dt><dd><a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -</dd><dt>in-</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -</dd><dt>in-extenso</dt><dd><a href="html/libxml-xmlmemory.html#xmlMemDisplay">xmlMemDisplay</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryDump">xmlMemoryDump</a><br /> -</dd><dt>in-memory</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseDoc">docbParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreateMemoryParserCtxt">htmlCreateMemoryParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadDoc">htmlCtxtReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadMemory">htmlCtxtReadMemory</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDoc">htmlParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadDoc">htmlReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadMemory">htmlReadMemory</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlCreateDocParserCtxt">xmlCreateDocParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateMemoryParserCtxt">xmlCreateMemoryParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadDoc">xmlCtxtReadDoc</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadMemory">xmlCtxtReadMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseDoc">xmlParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlParseMemory">xmlParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlReadDoc">xmlReadDoc</a><br /> -<a href="html/libxml-parser.html#xmlReadMemory">xmlReadMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForDoc">xmlReaderForDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForMemory">xmlReaderForMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewDoc">xmlReaderNewDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewMemory">xmlReaderNewMemory</a><br /> -<a href="html/libxml-parser.html#xmlRecoverDoc">xmlRecoverDoc</a><br /> -<a href="html/libxml-parser.html#xmlRecoverMemory">xmlRecoverMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseMemory">xmlSAXUserParseMemory</a><br /> -</dd><dt>incase</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPClose">xmlNanoFTPClose</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCloseConnection">xmlNanoFTPCloseConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCwd">xmlNanoFTPCwd</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPDele">xmlNanoFTPDele</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPSave">xmlNanoHTTPSave</a><br /> -</dd><dt>incl</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -</dd><dt>include</dt><dd><a href="html/libxml-xinclude.html#XINCLUDE_NODE">XINCLUDE_NODE</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-xmlversion.html#xmlCheckVersion">xmlCheckVersion</a><br /> -<a href="html/libxml-list.html#xmlListMerge">xmlListMerge</a><br /> -</dd><dt>include:</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>included</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemory">xmlDocDumpMemory</a><br /> -<a href="html/libxml-tree.html#xmlFreeDoc">xmlFreeDoc</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -</dd><dt>includes</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-xmlIO.html#xmlCleanupInputCallbacks">xmlCleanupInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlCleanupOutputCallbacks">xmlCleanupOutputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlPopInputCallbacks">xmlPopInputCallbacks</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlags">xmlXIncludeProcessFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTreeFlags">xmlXIncludeProcessTreeFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeSetFlags">xmlXIncludeSetFlags</a><br /> -</dd><dt>including</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_INCLUDING_CONVERT_NS">XML_SCHEMAS_INCLUDING_CONVERT_NS</a><br /> -<a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -<a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -<a href="html/libxml-SAX.html#startElement">startElement</a><br /> -<a href="html/libxml-parser.html#startElementSAXFunc">startElementSAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElement">xmlSAX2StartElement</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>inclusive</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>increase</dt><dd><a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -</dd><dt>increment</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> -</dd><dt>incremental</dt><dd><a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -</dd><dt>indent</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterSetIndent">xmlTextWriterSetIndent</a><br /> -</dd><dt>indentation</dt><dd><a href="html/libxml-debugXML.html#xmlDebugDumpAttr">xmlDebugDumpAttr</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttrList">xmlDebugDumpAttrList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNode">xmlDebugDumpNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNodeList">xmlDebugDumpNodeList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpOneNode">xmlDebugDumpOneNode</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterSetIndent">xmlTextWriterSetIndent</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterSetIndentString">xmlTextWriterSetIndentString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpCompExpr">xmlXPathDebugDumpCompExpr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpObject">xmlXPathDebugDumpObject</a><br /> -</dd><dt>indentation?</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterSetIndent">xmlTextWriterSetIndent</a><br /> -</dd><dt>indented</dt><dd><a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -</dd><dt>indenting</dt><dd><a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a><br /> -</dd><dt>independently</dt><dd><a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -</dd><dt>index</dt><dd><a href="">index</a><br /> -<a href="html/libxml-parserInternals.html#inputPush">inputPush</a><br /> -<a href="html/libxml-parserInternals.html#namePush">namePush</a><br /> -<a href="html/libxml-parserInternals.html#nodePush">nodePush</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrsub">xmlStrsub</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNo">xmlTextReaderGetAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNo">xmlTextReaderMoveToAttributeNo</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetRemove">xmlXPathNodeSetRemove</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetRemove">xmlXPtrLocationSetRemove</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRange">xmlXPtrNewRange</a><br /> -</dd><dt>indicate</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -<a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -<a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -</dd><dt>indicated</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>indicates</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FACETSNEEDVALUE">XML_SCHEMAS_TYPE_FACETSNEEDVALUE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_INTERNAL_INVALID">XML_SCHEMAS_TYPE_INTERNAL_INVALID</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_INTERNAL_RESOLVED">XML_SCHEMAS_TYPE_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_NORMVALUENEEDED">XML_SCHEMAS_TYPE_NORMVALUENEEDED</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPRead">xmlNanoFTPRead</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRead">xmlNanoHTTPRead</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -</dd><dt>indicating</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCmd">xmlShellCmd</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -</dd><dt>indication</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPRead">xmlNanoFTPRead</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRead">xmlNanoHTTPRead</a><br /> -</dd><dt>indicative</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -<a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -<a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -</dd><dt>indicator</dt><dd><a href="html/libxml-DOCBparser.html#docbParseChunk">docbParseChunk</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseChunk">htmlParseChunk</a><br /> -<a href="html/libxml-parser.html#xmlParseChunk">xmlParseChunk</a><br /> -</dd><dt>indirect</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -</dd><dt>indirectly</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -</dd><dt>infinite</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -</dd><dt>infinity</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFloorFunction">xmlXPathFloorFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>info</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-parser.html#xmlClearNodeInfoSeq">xmlClearNodeInfoSeq</a><br /> -<a href="html/libxml-tree.html#xmlCopyDoc">xmlCopyDoc</a><br /> -<a href="html/libxml-parser.html#xmlInitNodeInfoSeq">xmlInitNodeInfoSeq</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemStrdupLoc">xmlMemStrdupLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryStrdup">xmlMemoryStrdup</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a><br /> -<a href="html/libxml-parser.html#xmlParserAddNodeInfo">xmlParserAddNodeInfo</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfo">xmlParserFindNodeInfo</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -</dd><dt>information</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_VERSION_EXTRA">LIBXML_VERSION_EXTRA</a><br /> -<a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttr">xmlDebugDumpAttr</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttrList">xmlDebugDumpAttrList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDTD">xmlDebugDumpDTD</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocument">xmlDebugDumpDocument</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocumentHead">xmlDebugDumpDocumentHead</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpEntities">xmlDebugDumpEntities</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNode">xmlDebugDumpNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNodeList">xmlDebugDumpNodeList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpOneNode">xmlDebugDumpOneNode</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -<a href="html/libxml-xmlreader.html#xmlNewTextReader">xmlNewTextReader</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>informations</dt><dd><a href="html/libxml-tree.html#_xmlAttr">_xmlAttr</a><br /> -<a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#endElementNsSAX2Func">endElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpString">xmlDebugDumpString</a><br /> -<a href="html/libxml-parserInternals.html#xmlErrMemory">xmlErrMemory</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCleanup">xmlNanoFTPCleanup</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPInit">xmlNanoFTPInit</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPInit">xmlNanoHTTPInit</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserPrintFileInfo">xmlParserPrintFileInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElementNs">xmlSAX2EndElementNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDir">xmlShellDir</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -</dd><dt>informative</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -</dd><dt>infos</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>inherited</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAttribute">xmlXPathNextAttribute</a><br /> -</dd><dt>inheriting</dt><dd><a href="html/libxml-dict.html#xmlDictCreateSub">xmlDictCreateSub</a><br /> -</dd><dt>inherits</dt><dd><a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -</dd><dt>initial</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaAttribute">_xmlSchemaAttribute</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataGetInitState">xmlAutomataGetInitState</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateSize">xmlBufferCreateSize</a><br /> -<a href="html/libxml-parser.html#xmlInitNodeInfoSeq">xmlInitNodeInfoSeq</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemStrdupLoc">xmlMemStrdupLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryStrdup">xmlMemoryStrdup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAdd">xmlXPathNodeSetAdd</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddNs">xmlXPathNodeSetAddNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetCreate">xmlXPathNodeSetCreate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetDel">xmlXPathNodeSetDel</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetRemove">xmlXPathNodeSetRemove</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetCreate">xmlXPtrLocationSetCreate</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetDel">xmlXPtrLocationSetDel</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetRemove">xmlXPtrLocationSetRemove</a><br /> -</dd><dt>initialisation</dt><dd><a href="html/libxml-globals.html#xmlInitGlobals">xmlInitGlobals</a><br /> -</dd><dt>initialization</dt><dd><a href="html/libxml-catalog.html#xmlInitializeCatalog">xmlInitializeCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -</dd><dt>initialize</dt><dd><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-parser.html#XML_DETECT_IDS">XML_DETECT_IDS</a><br /> -<a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDocNoDtD">htmlNewDocNoDtD</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNewParserCtxt">htmlNewParserCtxt</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-entities.html#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a><br /> -<a href="html/libxml-valid.html#xmlCreateEnumeration">xmlCreateEnumeration</a><br /> -<a href="html/libxml-threads.html#xmlInitThreads">xmlInitThreads</a><br /> -<a href="html/libxml-globals.html#xmlInitializeGlobalState">xmlInitializeGlobalState</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPNewCtxt">xmlNanoFTPNewCtxt</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -<a href="html/libxml-parser.html#xmlNewParserCtxt">xmlNewParserCtxt</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSet">xmlXPathNewNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSetList">xmlXPathNewNodeSetList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewValueTree">xmlXPathNewValueTree</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodeSet">xmlXPtrNewLocationSetNodeSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -</dd><dt>initialized</dt><dd><a href="html/libxml-parser.html#XML_SAX2_MAGIC">XML_SAX2_MAGIC</a><br /> -</dd><dt>initializes</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapNewCtxt">xmlDOMWrapNewCtxt</a><br /> -</dd><dt>initiate</dt><dd><a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -</dd><dt>initiated</dt><dd><a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -</dd><dt>inline</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>inlined</dt><dd><a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -</dd><dt>inputs</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>insensitive</dt><dd><a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -</dd><dt>insert</dt><dd><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>inserted</dt><dd><a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddSibling">xmlAddSibling</a><br /> -<a href="html/libxml-tree.html#xmlReplaceNode">xmlReplaceNode</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>insertion</dt><dd><a href="html/libxml-HTMLparser.html#htmlHandleOmittedElem">htmlHandleOmittedElem</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>inspect</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpObject">xmlXPathDebugDumpObject</a><br /> -</dd><dt>instace</dt><dd><a href="html/libxml-schematron.html#xmlSchematronValidateDoc">xmlSchematronValidateDoc</a><br /> -</dd><dt>installed</dt><dd><a href="html/libxml-dict.html#xmlDictSize">xmlDictSize</a><br /> -<a href="html/libxml-hash.html#xmlHashSize">xmlHashSize</a><br /> -</dd><dt>instances</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParse">xmlRelaxNGParse</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaParse">xmlSchemaParse</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronParse">xmlSchematronParse</a><br /> -</dd><dt>instead</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_TOPLEVEL">XML_SCHEMAS_ELEM_TOPLEVEL</a><br /> -<a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-valid.html#xmlCopyElementContent">xmlCopyElementContent</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-valid.html#xmlFreeElementContent">xmlFreeElementContent</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseChar">xmlIsBaseChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlank">xmlIsBlank</a><br /> -<a href="html/libxml-chvalid.html#xmlIsChar">xmlIsChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombining">xmlIsCombining</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigit">xmlIsDigit</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtender">xmlIsExtender</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographic">xmlIsIdeographic</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar">xmlIsPubidChar</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a><br /> -</dd><dt>instruction</dt><dd><a href="html/libxml-HTMLtree.html#HTML_PI_NODE">HTML_PI_NODE</a><br /> -<a href="html/libxml-SAX.html#processingInstruction">processingInstruction</a><br /> -<a href="html/libxml-parser.html#processingInstructionSAXFunc">processingInstructionSAXFunc</a><br /> -<a href="html/libxml-tree.html#xmlNewDocPI">xmlNewDocPI</a><br /> -<a href="html/libxml-tree.html#xmlNewPI">xmlNewPI</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ProcessingInstruction">xmlSAX2ProcessingInstruction</a><br /> -</dd><dt>insufficient</dt><dd><a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -</dd><dt>intact</dt><dd><a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -</dd><dt>integer</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcasecmp">xmlStrcasecmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcmp">xmlStrcmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncasecmp">xmlStrncasecmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncmp">xmlStrncmp</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFloorFunction">xmlXPathFloorFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoundFunction">xmlXPathRoundFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>intended</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -</dd><dt>intensively</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>interact</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -</dd><dt>interface</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_PATTERN_ENABLED">LIBXML_PATTERN_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_READER_ENABLED">LIBXML_READER_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_SAX1_ENABLED">LIBXML_SAX1_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_WRITER_ENABLED">LIBXML_WRITER_ENABLED</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseDocument">docbParseDocument</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDocument">htmlParseDocument</a><br /> -<a href="html/libxml-parser.html#xmlParseDocument">xmlParseDocument</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -</dd><dt>interfaces</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_AUTOMATA_ENABLED">LIBXML_AUTOMATA_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_EXPR_ENABLED">LIBXML_EXPR_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_MODULES_ENABLED">LIBXML_MODULES_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_PUSH_ENABLED">LIBXML_PUSH_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_REGEXP_ENABLED">LIBXML_REGEXP_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_SCHEMAS_ENABLED">LIBXML_SCHEMAS_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_SCHEMATRON_ENABLED">LIBXML_SCHEMATRON_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_UNICODE_ENABLED">LIBXML_UNICODE_ENABLED</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -</dd><dt>intern</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> -</dd><dt>internally</dt><dd><a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewCtxt">xmlExpNewCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -<a href="html/libxml-valid.html#xmlRemoveID">xmlRemoveID</a><br /> -<a href="html/libxml-valid.html#xmlRemoveRef">xmlRemoveRef</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>interned</dt><dd><a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> -</dd><dt>interning</dt><dd><a href="html/libxml-tree.html#xmlCopyNodeList">xmlCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlNewPI">xmlNewPI</a><br /> -</dd><dt>interoperability</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -</dd><dt>interprestation</dt><dd><a href="html/libxml-xpath.html#xmlXPathFunction">xmlXPathFunction</a><br /> -</dd><dt>interpreter</dt><dd><a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -</dd><dt>intersection</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -</dd><dt>invalid</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_INTERNAL_INVALID">XML_SCHEMAS_TYPE_INTERNAL_INVALID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>invited</dt><dd><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>invoking</dt><dd><a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> -</dd><dt>isinf</dt><dd><a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -</dd><dt>isn</dt><dd><a href="html/libxml-encoding.html#xmlRegisterCharEncodingHandler">xmlRegisterCharEncodingHandler</a><br /> -</dd><dt>isnan</dt><dd><a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -</dd><dt>issue</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -</dd><dt>issued</dt><dd><a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -</dd><dt>item</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPDele">xmlNanoFTPDele</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -</dd><dt>items</dt><dd><a href="html/libxml-xpathInternals.html#valuePush">valuePush</a><br /> -<a href="html/libxml-hash.html#xmlHashCopy">xmlHashCopy</a><br /> -<a href="html/libxml-hash.html#xmlHashFree">xmlHashFree</a><br /> -<a href="html/libxml-hash.html#xmlHashScan">xmlHashScan</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull">xmlHashScanFull</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -</dd><dt>itself</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextSelf">xmlXPathNextSelf</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk18.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk18.html deleted file mode 100644 index fcdce05d..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk18.html +++ /dev/null @@ -1,428 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index j-l for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index j-l for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter j:</h2><dl><dt>just</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSetMetaEncoding">htmlSetMetaEncoding</a><br /> -<a href="html/libxml-parserInternals.html#inputPop">inputPop</a><br /> -<a href="html/libxml-parserInternals.html#namePop">namePop</a><br /> -<a href="html/libxml-parserInternals.html#nodePop">nodePop</a><br /> -<a href="html/libxml-xpathInternals.html#valuePop">valuePop</a><br /> -<a href="html/libxml-valid.html#xmlCopyEnumeration">xmlCopyEnumeration</a><br /> -<a href="html/libxml-entities.html#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a><br /> -<a href="html/libxml-valid.html#xmlCreateEnumeration">xmlCreateEnumeration</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPInit">xmlNanoFTPInit</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPInit">xmlNanoHTTPInit</a><br /> -<a href="html/libxml-valid.html#xmlSnprintfElementContent">xmlSnprintfElementContent</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNewContext">xmlXPathNewContext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewParserContext">xmlXPathNewParserContext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextSelf">xmlXPathNextSelf</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -</dd></dl><h2>Letter k:</h2><dl><dt>keep</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -<a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -<a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextNamespace">xmlXPathNextNamespace</a><br /> -</dd><dt>keeps</dt><dd><a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -</dd><dt>kept</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>keyword</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>kill</dt><dd><a href="html/libxml-xmlversion.html#xmlCheckVersion">xmlCheckVersion</a><br /> -</dd><dt>kind</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaAttributeGroup">_xmlSchemaAttributeGroup</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaFacet">_xmlSchemaFacet</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaNotation">_xmlSchemaNotation</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaWildcard">_xmlSchemaWildcard</a><br /> -</dd><dt>know</dt><dd><a href="html/libxml-xmlstring.html#BAD_CAST">BAD_CAST</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -</dd><dt>knowledge</dt><dd><a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -</dd><dt>known</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-xmlIO.html#xmlAllocParserInputBuffer">xmlAllocParserInputBuffer</a><br /> -<a href="html/libxml-parser.html#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlIOParseDTD">xmlIOParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlNewIOInputStream">xmlNewIOInputStream</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFd">xmlParserInputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFile">xmlParserInputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateMem">xmlParserInputBufferCreateMem</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -</dd></dl><h2>Letter l:</h2><dl><dt>labeled</dt><dd><a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExtParsedEnt">xmlParseExtParsedEnt</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -</dd><dt>lack</dt><dd><a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -</dd><dt>lang</dt><dd><a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -</dd><dt>language</dt><dd><a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetLang">xmlNodeSetLang</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -</dd><dt>languages</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpSubsume">xmlExpSubsume</a><br /> -</dd><dt>large</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -</dd><dt>largest</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathFloorFunction">xmlXPathFloorFunction</a><br /> -</dd><dt>later</dt><dd><a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -</dd><dt>latest</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPReturnCode">xmlNanoHTTPReturnCode</a><br /> -</dd><dt>layer</dt><dd><a href="html/libxml-tree.html#xmlChildrenNode">xmlChildrenNode</a><br /> -<a href="html/libxml-xmlmemory.html#xmlInitMemory">xmlInitMemory</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCleanup">xmlNanoFTPCleanup</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPInit">xmlNanoFTPInit</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPCleanup">xmlNanoHTTPCleanup</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPInit">xmlNanoHTTPInit</a><br /> -<a href="html/libxml-tree.html#xmlRootNode">xmlRootNode</a><br /> -<a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -</dd><dt>leading</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>least</dt><dd><a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>left</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>legacy</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</dd><dt>len</dt><dd><a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferAddHead">xmlBufferAddHead</a><br /> -<a href="html/libxml-xmlstring.html#xmlCharStrndup">xmlCharStrndup</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpStringDerive">xmlExpStringDerive</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-tree.html#xmlNewDocTextLen">xmlNewDocTextLen</a><br /> -<a href="html/libxml-tree.html#xmlNewTextLen">xmlNewTextLen</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncat">xmlStrncat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrndup">xmlStrndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strndup">xmlUTF8Strndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsize">xmlUTF8Strsize</a><br /> -</dd><dt>lenght</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewAtom">xmlExpNewAtom</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushCData">xmlRelaxNGValidatePushCData</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushCData">xmlValidatePushCData</a><br /> -</dd><dt>length-1</dt><dd><a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -</dd><dt>less</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFilename">xmlSaveToFilename</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>less-than</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -</dd><dt>level</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_TOPLEVEL">XML_SCHEMAS_ELEM_TOPLEVEL</a><br /> -<a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDebug">xmlCatalogSetDebug</a><br /> -<a href="html/libxml-xmlmemory.html#xmlCleanupMemory">xmlCleanupMemory</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttr">xmlDebugDumpAttr</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttrList">xmlDebugDumpAttrList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNode">xmlDebugDumpNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNodeList">xmlDebugDumpNodeList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpOneNode">xmlDebugDumpOneNode</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPop">xmlStreamPop</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpCompExpr">xmlXPathDebugDumpCompExpr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpObject">xmlXPathDebugDumpObject</a><br /> -</dd><dt>lexical</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> -<a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> -<a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> -<a href="html/libxml-tree.html#xmlValidateName">xmlValidateName</a><br /> -<a href="html/libxml-tree.html#xmlValidateQName">xmlValidateQName</a><br /> -</dd><dt>lib</dt><dd><a href="html/libxml-xmlversion.html#xmlCheckVersion">xmlCheckVersion</a><br /> -</dd><dt>libc</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -</dd><dt>libraries</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_MODULE_EXTENSION">LIBXML_MODULE_EXTENSION</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGInitTypes">xmlRelaxNGInitTypes</a><br /> -</dd><dt>library</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-xmlmemory.html#xmlCleanupMemory">xmlCleanupMemory</a><br /> -<a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-threads.html#xmlCleanupThreads">xmlCleanupThreads</a><br /> -<a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -<a href="html/libxml-threads.html#xmlInitThreads">xmlInitThreads</a><br /> -<a href="html/libxml-globals.html#xmlInitializeGlobalState">xmlInitializeGlobalState</a><br /> -<a href="html/libxml-threads.html#xmlLockLibrary">xmlLockLibrary</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleFree">xmlModuleFree</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGCleanupTypes">xmlRelaxNGCleanupTypes</a><br /> -<a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCleanupTypes">xmlSchemaCleanupTypes</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeValue">xmlSchemaFreeValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaInitTypes">xmlSchemaInitTypes</a><br /> -<a href="html/libxml-threads.html#xmlUnlockLibrary">xmlUnlockLibrary</a><br /> -</dd><dt>libs</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -</dd><dt>libxml</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_TEST_VERSION">LIBXML_TEST_VERSION</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathError">xmlShellPrintXPathError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a><br /> -</dd><dt>libxml1</dt><dd><a href="html/libxml-tree.html#xmlChildrenNode">xmlChildrenNode</a><br /> -<a href="html/libxml-tree.html#xmlRootNode">xmlRootNode</a><br /> -</dd><dt>libxml2</dt><dd><a href="html/libxml-threads.html#xmlCleanupThreads">xmlCleanupThreads</a><br /> -<a href="html/libxml-threads.html#xmlFreeMutex">xmlFreeMutex</a><br /> -<a href="html/libxml-threads.html#xmlInitThreads">xmlInitThreads</a><br /> -<a href="html/libxml-threads.html#xmlLockLibrary">xmlLockLibrary</a><br /> -<a href="html/libxml-threads.html#xmlMutexLock">xmlMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlMutexUnlock">xmlMutexUnlock</a><br /> -<a href="html/libxml-threads.html#xmlNewMutex">xmlNewMutex</a><br /> -<a href="html/libxml-threads.html#xmlRMutexLock">xmlRMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlRMutexUnlock">xmlRMutexUnlock</a><br /> -<a href="html/libxml-threads.html#xmlUnlockLibrary">xmlUnlockLibrary</a><br /> -</dd><dt>lifetime</dt><dd><a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtNbCons">xmlExpCtxtNbCons</a><br /> -</dd><dt>like</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR_CH">IS_CHAR_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_DIGIT_CH">IS_DIGIT_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_EXTENDER_CH">IS_EXTENDER_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_LETTER_CH">IS_LETTER_CH</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DOTTED_VERSION">LIBXML_DOTTED_VERSION</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_TREE_ENABLED">LIBXML_TREE_ENABLED</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -<a href="html/libxml-catalog.html#xmlParseCatalogFile">xmlParseCatalogFile</a><br /> -<a href="html/libxml-debugXML.html#xmlShellList">xmlShellList</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>limit</dt><dd><a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMaxDepth">xmlPatternMaxDepth</a><br /> -</dd><dt>limited</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>linear</dt><dd><a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -</dd><dt>linked</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaAttributeLink">_xmlSchemaAttributeLink</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaFacetLink">_xmlSchemaFacetLink</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaTypeLink">_xmlSchemaTypeLink</a><br /> -</dd><dt>linking</dt><dd><a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -</dd><dt>links</dt><dd><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -</dd><dt>listing</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a><br /> -<a href="html/libxml-debugXML.html#xmlShellList">xmlShellList</a><br /> -</dd><dt>lists</dt><dd><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -</dd><dt>literal</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePubidLiteral">xmlParsePubidLiteral</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -</dd><dt>load</dt><dd><a href="html/libxml-parser.html#xmlLoadExternalEntity">xmlLoadExternalEntity</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-debugXML.html#xmlShellLoad">xmlShellLoad</a><br /> -</dd><dt>loaded</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>loader</dt><dd><a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -</dd><dt>loaders</dt><dd><a href="html/libxml-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a><br /> -</dd><dt>loading</dt><dd><a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -<a href="html/libxml-debugXML.html#xmlShellLoad">xmlShellLoad</a><br /> -</dd><dt>loads</dt><dd><a href="html/libxml-debugXML.html#xmlShellLoad">xmlShellLoad</a><br /> -</dd><dt>loadsubset</dt><dd><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-parser.html#XML_DETECT_IDS">XML_DETECT_IDS</a><br /> -<a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -</dd><dt>local-name</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathLocalNameFunction">xmlXPathLocalNameFunction</a><br /> -</dd><dt>localname</dt><dd><a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrQEqual">xmlStrQEqual</a><br /> -</dd><dt>location</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -<a href="html/libxml-parser.html#xmlGetFeature">xmlGetFeature</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewParserCtxt">xmlRelaxNGNewParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewParserCtxt">xmlSchemaNewParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewParserCtxt">xmlSchematronNewParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlSetFeature">xmlSetFeature</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strloc">xmlUTF8Strloc</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a><br /> -</dd><dt>locations</dt><dd><a href="html/libxml-xpointer.html#_xmlLocationSet">_xmlLocationSet</a><br /> -</dd><dt>locator</dt><dd><a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -<a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorBaseURI">xmlTextReaderLocatorBaseURI</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorLineNumber">xmlTextReaderLocatorLineNumber</a><br /> -</dd><dt>locators</dt><dd><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -</dd><dt>lock</dt><dd><a href="html/libxml-threads.html#xmlLockLibrary">xmlLockLibrary</a><br /> -<a href="html/libxml-threads.html#xmlMutexLock">xmlMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -<a href="html/libxml-threads.html#xmlRMutexLock">xmlRMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlUnlockLibrary">xmlUnlockLibrary</a><br /> -</dd><dt>logging</dt><dd><a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemStrdupLoc">xmlMemStrdupLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryStrdup">xmlMemoryStrdup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -</dd><dt>long</dt><dd><a href="html/libxml-parserInternals.html#IS_BASECHAR">IS_BASECHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_COMBINING">IS_COMBINING</a><br /> -<a href="html/libxml-parserInternals.html#IS_DIGIT">IS_DIGIT</a><br /> -<a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetFacetValueAsULong">xmlSchemaGetFacetValueAsULong</a><br /> -</dd><dt>longer</dt><dd><a href="html/libxml-parserInternals.html#XML_MAX_NAMELEN">XML_MAX_NAMELEN</a><br /> -<a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>look-ahead</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>lookahead</dt><dd><a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -<a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -</dd><dt>looked</dt><dd><a href="html/libxml-xpath.html#_xmlNodeSet">_xmlNodeSet</a><br /> -<a href="html/libxml-pattern.html#xmlPatternFromRoot">xmlPatternFromRoot</a><br /> -</dd><dt>looks</dt><dd><a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -</dd><dt>lookups</dt><dd><a href="html/libxml-parser.html#XML_DETECT_IDS">XML_DETECT_IDS</a><br /> -<a href="html/libxml-catalog.html#xmlParseCatalogFile">xmlParseCatalogFile</a><br /> -</dd><dt>loop</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -</dd><dt>loops</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>lossless</dt><dd><a href="html/libxml-xmlIO.html#xmlOutputBufferWrite">xmlOutputBufferWrite</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -</dd><dt>lower</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -</dd><dt>lowercase</dt><dd><a href="html/libxml-HTMLparser.html#htmlTagLookup">htmlTagLookup</a><br /> -<a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk19.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk19.html deleted file mode 100644 index 7264dffb..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk19.html +++ /dev/null @@ -1,369 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index m-m for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index m-m for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter m:</h2><dl><dt>machine</dt><dd><a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -</dd><dt>macro</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDocType">xmlTextWriterWriteDocType</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteProcessingInstruction">xmlTextWriterWriteProcessingInstruction</a><br /> -</dd><dt>made</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_ISO8859X_ENABLED">LIBXML_ISO8859X_ENABLED</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-parserInternals.html#xmlSetEntityReferenceFunc">xmlSetEntityReferenceFunc</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -</dd><dt>main</dt><dd><a href="html/libxml-threads.html#xmlIsMainThread">xmlIsMainThread</a><br /> -</dd><dt>maintained</dt><dd><a href="html/libxml-valid.html#xmlRemoveID">xmlRemoveID</a><br /> -<a href="html/libxml-valid.html#xmlRemoveRef">xmlRemoveRef</a><br /> -</dd><dt>major</dt><dd><a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -</dd><dt>make</dt><dd><a href="html/libxml-entities.html#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a><br /> -<a href="html/libxml-tree.html#xmlNewNode">xmlNewNode</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveClose">xmlSaveClose</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveFlush">xmlSaveFlush</a><br /> -</dd><dt>makes</dt><dd><a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderExpand">xmlTextReaderExpand</a><br /> -</dd><dt>malloc</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -</dd><dt>mallocAtomicFunc</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -</dd><dt>manage</dt><dd><a href="html/libxml-tree.html#xmlBufferWriteChar">xmlBufferWriteChar</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -</dd><dt>manages</dt><dd><a href="html/libxml-tree.html#xmlBufferWriteCHAR">xmlBufferWriteCHAR</a><br /> -</dd><dt>mandatory</dt><dd><a href="html/libxml-parserInternals.html#xmlParseTextDecl">xmlParseTextDecl</a><br /> -</dd><dt>manipulated</dt><dd><a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -</dd><dt>manipulating</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewCtxt">xmlExpNewCtxt</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -</dd><dt>manipulation</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_TREE_ENABLED">LIBXML_TREE_ENABLED</a><br /> -</dd><dt>many</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>map</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -</dd><dt>maps</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDocType">xmlTextWriterWriteDocType</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteProcessingInstruction">xmlTextWriterWriteProcessingInstruction</a><br /> -</dd><dt>mark</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderQuoteChar">xmlTextReaderQuoteChar</a><br /> -</dd><dt>marked</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a><br /> -<a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -</dd><dt>marker</dt><dd><a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -</dd><dt>marking</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -</dd><dt>marks</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -</dd><dt>markup</dt><dd><a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTD">xmlTextWriterWriteFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTD">xmlTextWriterWriteVFormatDTD</a><br /> -</dd><dt>markupdecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>masked</dt><dd><a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>matched</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -</dd><dt>matches</dt><dd><a href="html/libxml-xpathInternals.html#CHECK_ARITY">CHECK_ARITY</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileMatch">xmlFileMatch</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPMatch">xmlIOFTPMatch</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPMatch">xmlIOHTTPMatch</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExtParsedEnt">xmlParseExtParsedEnt</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMatch">xmlPatternMatch</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpExec">xmlRegexpExec</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>matching</dt><dd><a href="html/libxml-xmlIO.html#xmlFileMatch">xmlFileMatch</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileOpen">xmlFileOpen</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPMatch">xmlIOFTPMatch</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPOpen">xmlIOFTPOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPMatch">xmlIOHTTPMatch</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpen">xmlIOHTTPOpen</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -</dd><dt>max</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathParserContext">_xmlXPathParserContext</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-tree.html#xmlGetCompressMode">xmlGetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlGetDocCompressMode">xmlGetDocCompressMode</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-tree.html#xmlSetCompressMode">xmlSetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetDocCompressMode">xmlSetDocCompressMode</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncasecmp">xmlStrncasecmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncmp">xmlStrncmp</a><br /> -</dd><dt>maxLength</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -</dd><dt>maximal</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCounter">xmlAutomataNewCounter</a><br /> -</dd><dt>maximum</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpMaxToken">xmlExpMaxToken</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewCtxt">xmlExpNewCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMaxDepth">xmlPatternMaxDepth</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>maybe</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -</dd><dt>mean</dt><dd><a href="html/libxml-pattern.html#xmlPatternMinDepth">xmlPatternMinDepth</a><br /> -</dd><dt>means</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>mechanism</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncLookup">xmlXPathRegisterFuncLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableLookup">xmlXPathRegisterVariableLookup</a><br /> -</dd><dt>mechanisms</dt><dd><a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -</dd><dt>meet</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>member</dt><dd><a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttribute">xmlTextWriterWriteVFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttributeNS">xmlTextWriterWriteVFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatCDATA">xmlTextWriterWriteVFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatComment">xmlTextWriterWriteVFormatComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTD">xmlTextWriterWriteVFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDAttlist">xmlTextWriterWriteVFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDElement">xmlTextWriterWriteVFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDInternalEntity">xmlTextWriterWriteVFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElement">xmlTextWriterWriteVFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElementNS">xmlTextWriterWriteVFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatPI">xmlTextWriterWriteVFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatRaw">xmlTextWriterWriteVFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatString">xmlTextWriterWriteVFormatString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>member-types</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -</dd><dt>memo</dt><dd><a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -</dd><dt>memorylist</dt><dd><a href="html/libxml-xmlmemory.html#xmlMemDisplay">xmlMemDisplay</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryDump">xmlMemoryDump</a><br /> -</dd><dt>merged</dt><dd><a href="html/libxml-tree.html#xmlTextMerge">xmlTextMerge</a><br /> -</dd><dt>merging</dt><dd><a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddChildList">xmlAddChildList</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddSibling">xmlAddSibling</a><br /> -</dd><dt>message</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -<a href="html/libxml-parser.html#errorSAXFunc">errorSAXFunc</a><br /> -<a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -<a href="html/libxml-parser.html#warningSAXFunc">warningSAXFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserError">xmlParserError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserWarning">xmlParserWarning</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrPrintf">xmlStrPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrVPrintf">xmlStrVPrintf</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPatherror">xmlXPatherror</a><br /> -</dd><dt>messages</dt><dd><a href="html/libxml-parser.html#errorSAXFunc">errorSAXFunc</a><br /> -<a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -<a href="html/libxml-parser.html#warningSAXFunc">warningSAXFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserError">xmlParserError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserWarning">xmlParserWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -</dd><dt>method</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a><br /> -<a href="html/libxml-tree.html#_xmlBuffer">_xmlBuffer</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderClose">xmlTextReaderClose</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>might</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -</dd><dt>migrate</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -</dd><dt>min</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -</dd><dt>minLength</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -</dd><dt>minimal</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCounter">xmlAutomataNewCounter</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -</dd><dt>minimum</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-tree.html#xmlBufferGrow">xmlBufferGrow</a><br /> -<a href="html/libxml-tree.html#xmlBufferResize">xmlBufferResize</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMinDepth">xmlPatternMinDepth</a><br /> -</dd><dt>minus</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>minute</dt><dd><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -</dd><dt>misc</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>misleading</dt><dd><a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -</dd><dt>missing</dt><dd><a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -</dd><dt>mixed</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MIXED">XML_SCHEMAS_TYPE_MIXED</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -</dd><dt>mixed-content</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -</dd><dt>mmap</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -</dd><dt>mod</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -</dd><dt>mode</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlGetCompressMode">xmlGetCompressMode</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-tree.html#xmlSetCompressMode">xmlSetCompressMode</a><br /> -</dd><dt>model</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-valid.html#xmlValidBuildContentModel">xmlValidBuildContentModel</a><br /> -</dd><dt>modified</dt><dd><a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewDocParserCtxt">xmlSchemaNewDocParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewDocParserCtxt">xmlSchematronNewDocParserCtxt</a><br /> -</dd><dt>modifies</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -</dd><dt>modify</dt><dd><a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -</dd><dt>module</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_DEBUG_ENABLED">LIBXML_DEBUG_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_MODULES_ENABLED">LIBXML_MODULES_ENABLED</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleClose">xmlModuleClose</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleFree">xmlModuleFree</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleSymbol">xmlModuleSymbol</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a><br /> -<a href="html/libxml-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a><br /> -</dd><dt>modules</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_MODULE_EXTENSION">LIBXML_MODULE_EXTENSION</a><br /> -</dd><dt>moment</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>month</dt><dd><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -</dd><dt>more</dt><dd><a href="html/libxml-parserInternals.html#XML_MAX_NAMELEN">XML_MAX_NAMELEN</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNext">xmlTextReaderNext</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRead">xmlTextReaderRead</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadAttributeValue">xmlTextReaderReadAttributeValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>moreover</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -</dd><dt>most</dt><dd><a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -</dd><dt>move</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -</dd><dt>moved</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderMoveToElement">xmlTextReaderMoveToElement</a><br /> -</dd><dt>much</dt><dd><a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>multi-threaded</dt><dd><a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -</dd><dt>multi-threading</dt><dd><a href="html/libxml-globals.html#xmlCleanupGlobals">xmlCleanupGlobals</a><br /> -<a href="html/libxml-globals.html#xmlInitGlobals">xmlInitGlobals</a><br /> -</dd><dt>multiple</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringCurrentChar">xmlStringCurrentChar</a><br /> -</dd><dt>multiply</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -</dd><dt>multithreaded</dt><dd><a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -<a href="html/libxml-parser.html#xmlInitParser">xmlInitParser</a><br /> -</dd><dt>mutex</dt><dd><a href="html/libxml-dict.html#xmlDictCleanup">xmlDictCleanup</a><br /> -<a href="html/libxml-threads.html#xmlFreeMutex">xmlFreeMutex</a><br /> -<a href="html/libxml-threads.html#xmlFreeRMutex">xmlFreeRMutex</a><br /> -<a href="html/libxml-threads.html#xmlMutexLock">xmlMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlMutexUnlock">xmlMutexUnlock</a><br /> -<a href="html/libxml-threads.html#xmlNewMutex">xmlNewMutex</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -<a href="html/libxml-threads.html#xmlRMutexLock">xmlRMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlRMutexUnlock">xmlRMutexUnlock</a><br /> -</dd><dt>myDoc</dt><dd><a href="html/libxml-DOCBparser.html#docbFreeParserCtxt">docbFreeParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlFreeParserCtxt">htmlFreeParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlFreeParserCtxt">xmlFreeParserCtxt</a><br /> -</dd><dt>myproxy</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -</dd><dt>myproxy:3128</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk2.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk2.html deleted file mode 100644 index 214bf629..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk2.html +++ /dev/null @@ -1,438 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index D-E for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index D-E for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter D:</h2><dl><dt>DEBUG_MEMORY</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -</dd><dt>DEBUG_MEMORY_FREED</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -</dd><dt>DEBUG_MEMORY_LOCATION</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -</dd><dt>DELE</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPDele">xmlNanoFTPDele</a><br /> -</dd><dt>DELEGATE</dt><dd><a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -</dd><dt>DEMO</dt><dd><a href="html/libxml-SAX.html#getPublicId">getPublicId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetPublicId">xmlSAX2GetPublicId</a><br /> -</dd><dt>DEPRECATED</dt><dd><a href="html/libxml-SAX.html#checkNamespace">checkNamespace</a><br /> -<a href="html/libxml-SAX.html#getNamespace">getNamespace</a><br /> -<a href="html/libxml-SAX.html#globalNamespace">globalNamespace</a><br /> -<a href="html/libxml-SAX.html#namespaceDecl">namespaceDecl</a><br /> -<a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-SAX.html#setNamespace">setNamespace</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetPublic">xmlCatalogGetPublic</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetSystem">xmlCatalogGetSystem</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseChar">xmlIsBaseChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlank">xmlIsBlank</a><br /> -<a href="html/libxml-chvalid.html#xmlIsChar">xmlIsChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombining">xmlIsCombining</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigit">xmlIsDigit</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtender">xmlIsExtender</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographic">xmlIsIdeographic</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar">xmlIsPubidChar</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -</dd><dt>DOCTYPE</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a><br /> -</dd><dt>DOM</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_TREE_ENABLED">LIBXML_TREE_ENABLED</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> -<a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetGetLength">xmlXPathNodeSetGetLength</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -</dd><dt>DOM-wrapper</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapFreeCtxt">xmlDOMWrapFreeCtxt</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapNewCtxt">xmlDOMWrapNewCtxt</a><br /> -</dd><dt>DTDs</dt><dd><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -</dd><dt>Data</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -</dd><dt>Datatype</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -</dd><dt>Datatypes</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -</dd><dt>Deallocate</dt><dd><a href="html/libxml-valid.html#xmlFreeAttributeTable">xmlFreeAttributeTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeElementTable">xmlFreeElementTable</a><br /> -<a href="html/libxml-entities.html#xmlFreeEntitiesTable">xmlFreeEntitiesTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeIDTable">xmlFreeIDTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeNotationTable">xmlFreeNotationTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeRefTable">xmlFreeRefTable</a><br /> -<a href="html/libxml-xmlreader.html#xmlFreeTextReader">xmlFreeTextReader</a><br /> -<a href="html/libxml-xmlwriter.html#xmlFreeTextWriter">xmlFreeTextWriter</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGFree">xmlRelaxNGFree</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaFree">xmlSchemaFree</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeFacet">xmlSchemaFreeFacet</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFreeType">xmlSchemaFreeType</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronFree">xmlSchematronFree</a><br /> -</dd><dt>Deallocates</dt><dd><a href="html/libxml-schemasInternals.html#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a><br /> -</dd><dt>Debugging</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_DEBUG_ENABLED">LIBXML_DEBUG_ENABLED</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtNbCons">xmlExpCtxtNbCons</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtNbNodes">xmlExpCtxtNbNodes</a><br /> -</dd><dt>Declaration</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -</dd><dt>Declared</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationUse">xmlValidateNotationUse</a><br /> -</dd><dt>Default</dt><dd><a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -</dd><dt>DefaultDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeListDecl">xmlParseAttributeListDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>Deletes</dt><dd><a href="html/libxml-list.html#xmlListDelete">xmlListDelete</a><br /> -</dd><dt>Depth</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -</dd><dt>Dereference</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpFree">xmlExpFree</a><br /> -</dd><dt>DeregisterNodeFunc</dt><dd><a href="html/libxml-globals.html#xmlDeregisterNodeDefault">xmlDeregisterNodeDefault</a><br /> -</dd><dt>Deseret</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsDeseret">xmlUCSIsDeseret</a><br /> -</dd><dt>Determine</dt><dd><a href="html/libxml-HTMLtree.html#htmlIsBooleanAttr">htmlIsBooleanAttr</a><br /> -<a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -<a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstEncoding">xmlTextReaderConstEncoding</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlVersion">xmlTextReaderConstXmlVersion</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsNamespaceDecl">xmlTextReaderIsNamespaceDecl</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderStandalone">xmlTextReaderStandalone</a><br /> -</dd><dt>Devanagari</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsDevanagari">xmlUCSIsDevanagari</a><br /> -</dd><dt>Different</dt><dd><a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>Digit</dt><dd><a href="html/libxml-parserInternals.html#IS_DIGIT">IS_DIGIT</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseName">xmlParseName</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseNCName">xmlXPathParseNCName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseName">xmlXPathParseName</a><br /> -</dd><dt>Digits</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -</dd><dt>Digits?</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -</dd><dt>Dingbats</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsDingbats">xmlUCSIsDingbats</a><br /> -</dd><dt>Display</dt><dd><a href="html/libxml-parser.html#errorSAXFunc">errorSAXFunc</a><br /> -<a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -<a href="html/libxml-parser.html#warningSAXFunc">warningSAXFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserError">xmlParserError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserWarning">xmlParserWarning</a><br /> -</dd><dt>Displays</dt><dd><a href="html/libxml-xmlerror.html#xmlParserPrintFileContext">xmlParserPrintFileContext</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserPrintFileInfo">xmlParserPrintFileInfo</a><br /> -</dd><dt>DocBook</dt><dd><a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-SAX.html#initdocbDefaultSAXHandler">initdocbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDocbDefaultSAXHandler">xmlSAX2InitDocbDefaultSAXHandler</a><br /> -</dd><dt>Docbook</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_DOCB_ENABLED">LIBXML_DOCB_ENABLED</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseFile">docbParseFile</a><br /> -</dd><dt>Document</dt><dd><a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeNewContext">xmlXIncludeNewContext</a><br /> -</dd><dt>Does</dt><dd><a href="html/libxml-SAX.html#hasExternalSubset">hasExternalSubset</a><br /> -<a href="html/libxml-parser.html#hasExternalSubsetSAXFunc">hasExternalSubsetSAXFunc</a><br /> -<a href="html/libxml-SAX.html#hasInternalSubset">hasInternalSubset</a><br /> -<a href="html/libxml-parser.html#hasInternalSubsetSAXFunc">hasInternalSubsetSAXFunc</a><br /> -<a href="html/libxml-chvalid.html#xmlCharInRange">xmlCharInRange</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2HasExternalSubset">xmlSAX2HasExternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2HasInternalSubset">xmlSAX2HasInternalSubset</a><br /> -<a href="html/libxml-debugXML.html#xmlShellList">xmlShellList</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>Douglas</dt><dd><a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd><dt>Draft</dt><dd><a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -</dd><dt>DtD</dt><dd><a href="html/libxml-valid.html#xmlGetDtdAttrDesc">xmlGetDtdAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdElementDesc">xmlGetDtdElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdNotationDesc">xmlGetDtdNotationDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQElementDesc">xmlGetDtdQElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -</dd><dt>DtDs</dt><dd><a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -</dd><dt>Dtd</dt><dd><a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>Dumps</dt><dd><a href="html/libxml-tree.html#xmlBufferDump">xmlBufferDump</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttr">xmlDebugDumpAttr</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttrList">xmlDebugDumpAttrList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDTD">xmlDebugDumpDTD</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocument">xmlDebugDumpDocument</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocumentHead">xmlDebugDumpDocumentHead</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpEntities">xmlDebugDumpEntities</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNode">xmlDebugDumpNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNodeList">xmlDebugDumpNodeList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpOneNode">xmlDebugDumpOneNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpString">xmlDebugDumpString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpCompExpr">xmlXPathDebugDumpCompExpr</a><br /> -</dd><dt>Duplicate</dt><dd><a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-list.html#xmlListDup">xmlListDup</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -</dd></dl><h2>Letter E:</h2><dl><dt>ELEMENT</dt><dd><a href="html/libxml-tree.html#_xmlElementContent">_xmlElementContent</a><br /> -</dd><dt>EMPTY</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -</dd><dt>ENTITIES</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>ENTITY</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>ENTITY_REF</dt><dd><a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -</dd><dt>ENTITY_REFs</dt><dd><a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a><br /> -<a href="html/libxml-tree.html#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a><br /> -</dd><dt>ETag</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseElement">htmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEndTag">xmlParseEndTag</a><br /> -</dd><dt>EXSLT</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -</dd><dt>Element</dt><dd><a href="html/libxml-tree.html#_xmlAttribute">_xmlAttribute</a><br /> -<a href="html/libxml-tree.html#_xmlElement">_xmlElement</a><br /> -<a href="html/libxml-tree.html#_xmlElementContent">_xmlElementContent</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadString">xmlTextReaderReadString</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -</dd><dt>ElementTable</dt><dd><a href="html/libxml-HTMLparser.html#htmlTagLookup">htmlTagLookup</a><br /> -</dd><dt>Empties</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathEmptyNodeSet">xmlXPathEmptyNodeSet</a><br /> -</dd><dt>EmptyElemTag</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseElement">htmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -</dd><dt>EmptyElement</dt><dd><a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -</dd><dt>EncName</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEncName">xmlParseEncName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEncodingDecl">xmlParseEncodingDecl</a><br /> -</dd><dt>Encapsulating</dt><dd><a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -</dd><dt>EnclosedAlphanumerics</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsEnclosedAlphanumerics">xmlUCSIsEnclosedAlphanumerics</a><br /> -</dd><dt>EnclosedCJKLettersandMonths</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsEnclosedCJKLettersandMonths">xmlUCSIsEnclosedCJKLettersandMonths</a><br /> -</dd><dt>Encoding</dt><dd><a href="html/libxml-HTMLtree.html#htmlGetMetaEncoding">htmlGetMetaEncoding</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -</dd><dt>EncodingDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEncodingDecl">xmlParseEncodingDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseTextDecl">xmlParseTextDecl</a><br /> -</dd><dt>EncodingDecl?</dt><dd><a href="html/libxml-parserInternals.html#xmlParseXMLDecl">xmlParseXMLDecl</a><br /> -</dd><dt>End</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndAttribute">xmlTextWriterEndAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndCDATA">xmlTextWriterEndCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndComment">xmlTextWriterEndComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTD">xmlTextWriterEndDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTDAttlist">xmlTextWriterEndDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTDElement">xmlTextWriterEndDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTDEntity">xmlTextWriterEndDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDocument">xmlTextWriterEndDocument</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndElement">xmlTextWriterEndElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndPI">xmlTextWriterEndPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterFullEndElement">xmlTextWriterFullEndElement</a><br /> -</dd><dt>End-of-Line</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -</dd><dt>Ensures</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -</dd><dt>Entities</dt><dd><a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -</dd><dt>EntitiesTable</dt><dd><a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -</dd><dt>Entity</dt><dd><a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewEntityInputStream">xmlNewEntityInputStream</a><br /> -<a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -</dd><dt>EntityDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>EntityDef</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -</dd><dt>EntityRef</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -</dd><dt>EntityReference</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderReadAttributeValue">xmlTextReaderReadAttributeValue</a><br /> -</dd><dt>EntityValue</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -</dd><dt>Enumerated</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -</dd><dt>EnumeratedType</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -</dd><dt>Enumeration</dt><dd><a href="html/libxml-tree.html#_xmlEnumeration">_xmlEnumeration</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumerationType">xmlParseEnumerationType</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -</dd><dt>Equal</dt><dd><a href="html/libxml-xmlstring.html#xmlStrQEqual">xmlStrQEqual</a><br /> -</dd><dt>Escaping</dt><dd><a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd><dt>Ethiopic</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsEthiopic">xmlUCSIsEthiopic</a><br /> -</dd><dt>Evaluate</dt><dd><a href="html/libxml-xpath.html#xmlXPathCompiledEval">xmlXPathCompiledEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEval">xmlXPathEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalExpression">xmlXPathEvalExpression</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEval">xmlXPtrEval</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a><br /> -</dd><dt>Evaluates</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaIsBuiltInTypeFacet">xmlSchemaIsBuiltInTypeFacet</a><br /> -</dd><dt>Everything</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -</dd><dt>Examines</dt><dd><a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -</dd><dt>Exclusive</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>Existing</dt><dd><a href="html/libxml-encoding.html#xmlAddEncodingAlias">xmlAddEncodingAlias</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -</dd><dt>Exp</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataCompile">xmlAutomataCompile</a><br /> -</dd><dt>Experimental</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</dd><dt>Expr</dt><dd><a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a><br /> -</dd><dt>Expresses</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>Expression</dt><dd><a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -</dd><dt>Extender</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseName">xmlParseName</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseNCName">xmlXPathParseNCName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseName">xmlXPathParseName</a><br /> -</dd><dt>External</dt><dd><a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolve">xmlACatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolve">xmlCatalogResolve</a><br /> -<a href="html/libxml-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parser.html#xmlParseDTD">xmlParseDTD</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDTD">xmlSAXParseDTD</a><br /> -</dd><dt>ExternalID</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -</dd><dt>Extract</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetFacetValueAsULong">xmlSchemaGetFacetValueAsULong</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrsub">xmlStrsub</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk20.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk20.html deleted file mode 100644 index 1f00aa3c..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk20.html +++ /dev/null @@ -1,345 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index n-n for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index n-n for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter n:</h2><dl><dt>named</dt><dd><a href="html/libxml-encoding.html#xmlAddEncodingAlias">xmlAddEncodingAlias</a><br /> -</dd><dt>names</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-valid.html#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>namespace-binding</dt><dd><a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -</dd><dt>namespace-uri</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNamespaceURIFunction">xmlXPathNamespaceURIFunction</a><br /> -</dd><dt>namespace:</dt><dd><a href="html/libxml-xinclude.html#XINCLUDE_NS">XINCLUDE_NS</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -</dd><dt>namespaces</dt><dd><a href="html/libxml-xpath.html#XML_XPATH_CHECKNS">XML_XPATH_CHECKNS</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaWildcard">_xmlSchemaWildcard</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-tree.html#xmlCopyDoc">xmlCopyDoc</a><br /> -<a href="html/libxml-tree.html#xmlCopyNode">xmlCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNode">xmlDocCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlFreeNsList">xmlFreeNsList</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>naming</dt><dd><a href="html/libxml-tree.html#xmlChildrenNode">xmlChildrenNode</a><br /> -<a href="html/libxml-tree.html#xmlRootNode">xmlRootNode</a><br /> -</dd><dt>nbval</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -</dd><dt>ncname</dt><dd><a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -</dd><dt>ndata</dt><dd><a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -</dd><dt>nearest</dt><dd><a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -</dd><dt>nearly</dt><dd><a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -</dd><dt>necessary</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -<a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpString">xmlDebugDumpString</a><br /> -</dd><dt>need</dt><dd><a href="html/libxml-xmlversion.html#WITH_TRIO">WITH_TRIO</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FACETSNEEDVALUE">XML_SCHEMAS_TYPE_FACETSNEEDVALUE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_NORMVALUENEEDED">XML_SCHEMAS_TYPE_NORMVALUENEEDED</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_BOTH">XML_SUBSTITUTE_BOTH</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_NONE">XML_SUBSTITUTE_NONE</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a><br /> -<a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlGetNsList">xmlGetNsList</a><br /> -<a href="html/libxml-encoding.html#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNewContext">xmlXPathNewContext</a><br /> -</dd><dt>needed</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -<a href="html/libxml-tree.html#xmlNewNodeEatName">xmlNewNodeEatName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncat">xmlStrncat</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopBoolean">xmlXPathPopBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopExternal">xmlXPathPopExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNodeSet">xmlXPathPopNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNumber">xmlXPathPopNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopString">xmlXPathPopString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>needing</dt><dd><a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd><dt>needle</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcasestr">xmlStrcasestr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrstr">xmlStrstr</a><br /> -</dd><dt>needs</dt><dd><a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a><br /> -</dd><dt>negated</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaWildcard">_xmlSchemaWildcard</a><br /> -</dd><dt>negative</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpExec">xmlRegexpExec</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpIsDeterminist">xmlRegexpIsDeterminist</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCmd">xmlShellCmd</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>neither</dt><dd><a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -</dd><dt>nested</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>net</dt><dd><a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -</dd><dt>network</dt><dd><a href="html/libxml-HTMLparser.html#htmlCtxtReadFile">htmlCtxtReadFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadFile">htmlReadFile</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFile">xmlCtxtReadFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlReadFile">xmlReadFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFile">xmlReaderForFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFile">xmlReaderNewFile</a><br /> -</dd><dt>nice</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>nillable</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_NILLABLE">XML_SCHEMAS_ELEM_NILLABLE</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpIsNillable">xmlExpIsNillable</a><br /> -</dd><dt>nod</dt><dd><a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -</dd><dt>node-</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>node-set?</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathLocalNameFunction">xmlXPathLocalNameFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNamespaceURIFunction">xmlXPathNamespaceURIFunction</a><br /> -</dd><dt>nodelist</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -</dd><dt>nodes1</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -</dd><dt>nodes2</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -</dd><dt>nodeset</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a><br /> -</dd><dt>nodesets</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a><br /> -</dd><dt>non</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_LAX">XML_SCHEMAS_ANYATTR_LAX</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseNCName">xmlXPathParseNCName</a><br /> -</dd><dt>non-CDATA</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>non-NULL</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -</dd><dt>non-UTF-8</dt><dd><a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -</dd><dt>non-blank</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -</dd><dt>non-determinist</dt><dd><a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -</dd><dt>non-empty</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -</dd><dt>non-exclusive</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>non-final</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -</dd><dt>non-negative</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>non-normative</dt><dd><a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -</dd><dt>non-null</dt><dd><a href="html/libxml-debugXML.html#xmlShellPrintNode">xmlShellPrintNode</a><br /> -</dd><dt>non-stateless</dt><dd><a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -</dd><dt>non-validating</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -</dd><dt>non-zero</dt><dd><a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> -<a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -<a href="html/libxml-parserInternals.html#xmlIsLetter">xmlIsLetter</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -</dd><dt>none</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -<a href="html/libxml-SAX.html#getNamespace">getNamespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-tree.html#xmlGetLastChild">xmlGetLastChild</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsString">xmlSchemaValueGetAsString</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetNext">xmlSchemaValueGetNext</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlLang">xmlTextReaderConstXmlLang</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderXmlLang">xmlTextReaderXmlLang</a><br /> -</dd><dt>nor</dt><dd><a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -</dd><dt>normal</dt><dd><a href="html/libxml-encoding.html#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -</dd><dt>normalization</dt><dd><a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -</dd><dt>normalization:</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -</dd><dt>normalizations</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -</dd><dt>normalize</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCollapseString">xmlSchemaCollapseString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -</dd><dt>normalize-space</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -</dd><dt>normalized</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_NORMVALUENEEDED">XML_SCHEMAS_TYPE_NORMVALUENEEDED</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -</dd><dt>normalizing</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -</dd><dt>normally</dt><dd><a href="html/libxml-tree.html#_xmlNs">_xmlNs</a><br /> -<a href="">c</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>notations</dt><dd><a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>note</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-parser.html#xmlLoadExternalEntity">xmlLoadExternalEntity</a><br /> -</dd><dt>now</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -</dd><dt>ns-binding</dt><dd><a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -</dd><dt>ns-decls</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -</dd><dt>ns-references</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>nsDef</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>null</dt><dd><a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -</dd><dt>null-terminated</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -</dd><dt>number:</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_VERSION">LIBXML_VERSION</a><br /> -</dd><dt>number?</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>numbers</dt><dd><a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Size">xmlUTF8Size</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoundFunction">xmlXPathRoundFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a><br /> -</dd><dt>numeric</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk21.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk21.html deleted file mode 100644 index 16d268c5..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk21.html +++ /dev/null @@ -1,379 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index o-o for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index o-o for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter o:</h2><dl><dt>object?</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNumberFunction">xmlXPathNumberFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>objects</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEqualValues">xmlXPathEqualValues</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeNodeSetList">xmlXPathFreeNodeSetList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotEqualValues">xmlXPathNotEqualValues</a><br /> -</dd><dt>objects:</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -</dd><dt>obligated</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -</dd><dt>obsolete</dt><dd><a href="html/libxml-xmlIO.html#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a><br /> -</dd><dt>obsolete:</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_TOPLEVEL">XML_SCHEMAS_ELEM_TOPLEVEL</a><br /> -</dd><dt>occupied</dt><dd><a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -</dd><dt>occur</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>occured</dt><dd><a href="html/libxml-xmlerror.html#xmlCtxtGetLastError">xmlCtxtGetLastError</a><br /> -<a href="html/libxml-dict.html#xmlDictCreate">xmlDictCreate</a><br /> -<a href="html/libxml-dict.html#xmlDictCreateSub">xmlDictCreateSub</a><br /> -<a href="html/libxml-xmlerror.html#xmlGetLastError">xmlGetLastError</a><br /> -<a href="html/libxml-hash.html#xmlHashCreate">xmlHashCreate</a><br /> -<a href="html/libxml-hash.html#xmlHashCreateDict">xmlHashCreateDict</a><br /> -<a href="html/libxml-list.html#xmlListRemoveFirst">xmlListRemoveFirst</a><br /> -<a href="html/libxml-list.html#xmlListRemoveLast">xmlListRemoveLast</a><br /> -</dd><dt>occurences</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -</dd><dt>occurred</dt><dd><a href="html/libxml-xmlmemory.html#xmlMemStrdupLoc">xmlMemStrdupLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryStrdup">xmlMemoryStrdup</a><br /> -</dd><dt>occurrence</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcasestr">xmlStrcasestr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrchr">xmlStrchr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrstr">xmlStrstr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrsub">xmlStrsub</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a><br /> -</dd><dt>occurrences</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>occurs</dt><dd><a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrPrintf">xmlStrPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrVPrintf">xmlStrVPrintf</a><br /> -</dd><dt>octets</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -</dd><dt>of:</dt><dd><a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -</dd><dt>off</dt><dd><a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -<a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -</dd><dt>okay</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>old</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-SAX.html#globalNamespace">globalNamespace</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> -<a href="html/libxml-list.html#xmlListCopy">xmlListCopy</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -<a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameDefault">xmlOutputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameDefault">xmlParserInputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -<a href="html/libxml-globals.html#xmlRegisterNodeDefault">xmlRegisterNodeDefault</a><br /> -<a href="html/libxml-tree.html#xmlReplaceNode">xmlReplaceNode</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertBoolean">xmlXPathConvertBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertNumber">xmlXPathConvertNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertString">xmlXPathConvertString</a><br /> -</dd><dt>oldNs</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>older</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_SAX1_ENABLED">LIBXML_SAX1_ENABLED</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -</dd><dt>omitted</dt><dd><a href="html/libxml-HTMLparser.html#htmlHandleOmittedElem">htmlHandleOmittedElem</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLocalNameFunction">xmlXPathLocalNameFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNamespaceURIFunction">xmlXPathNamespaceURIFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> -</dd><dt>once</dt><dd><a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-threads.html#xmlCleanupThreads">xmlCleanupThreads</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-parser.html#xmlInitParser">xmlInitParser</a><br /> -<a href="html/libxml-catalog.html#xmlInitializeCatalog">xmlInitializeCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePI">xmlParsePI</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -</dd><dt>ones</dt><dd><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogConvert">xmlCatalogConvert</a><br /> -<a href="html/libxml-catalog.html#xmlConvertSGMLCatalog">xmlConvertSGMLCatalog</a><br /> -</dd><dt>ononymous</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -</dd><dt>onto</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>opaque</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -</dd><dt>open</dt><dd><a href="html/libxml-HTMLparser.html#htmlCtxtReadFd">htmlCtxtReadFd</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDump">htmlDocDump</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadFd">htmlReadFd</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFd">xmlCtxtReadFd</a><br /> -<a href="html/libxml-tree.html#xmlDocDump">xmlDocDump</a><br /> -<a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPOpen">xmlIOFTPOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpen">xmlIOHTTPOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnect">xmlNanoFTPConnect</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a><br /> -<a href="html/libxml-parser.html#xmlReadFd">xmlReadFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFd">xmlReaderForFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDocument">xmlTextWriterEndDocument</a><br /> -</dd><dt>opening</dt><dd><a href="html/libxml-SAX.html#startElement">startElement</a><br /> -<a href="html/libxml-parser.html#startElementSAXFunc">startElementSAXFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElement">xmlSAX2StartElement</a><br /> -</dd><dt>operands</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a><br /> -</dd><dt>operating</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -</dd><dt>operation</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDebug">xmlCatalogSetDebug</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstValue">xmlTextReaderConstValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertBoolean">xmlXPathConvertBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertNumber">xmlXPathConvertNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertString">xmlXPathConvertString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEqualValues">xmlXPathEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotEqualValues">xmlXPathNotEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a><br /> -</dd><dt>operations</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleClose">xmlModuleClose</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleFree">xmlModuleFree</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>operator</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -</dd><dt>operators</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a><br /> -</dd><dt>optimized</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a><br /> -</dd><dt>option</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> -</dd><dt>options</dt><dd><a href="html/libxml-HTMLparser.html#htmlCtxtUseOptions">htmlCtxtUseOptions</a><br /> -<a href="html/libxml-parser.html#xmlCtxtUseOptions">xmlCtxtUseOptions</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToBuffer">xmlSaveToBuffer</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFd">xmlSaveToFd</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFilename">xmlSaveToFilename</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetup">xmlTextReaderSetup</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>ordered</dt><dd><a href="html/libxml-list.html#xmlListAppend">xmlListAppend</a><br /> -<a href="html/libxml-list.html#xmlListInsert">xmlListInsert</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -</dd><dt>ordering</dt><dd><a href="html/libxml-list.html#xmlListDataCompare">xmlListDataCompare</a><br /> -</dd><dt>org</dt><dd><a href="html/libxml-xinclude.html#XINCLUDE_NS">XINCLUDE_NS</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -</dd><dt>oriented</dt><dd><a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>origin</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -</dd><dt>original</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaFacet">_xmlSchemaFacet</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlCopyError">xmlCopyError</a><br /> -<a href="html/libxml-encoding.html#xmlGetEncodingAlias">xmlGetEncodingAlias</a><br /> -<a href="html/libxml-list.html#xmlListMerge">xmlListMerge</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -<a href="html/libxml-debugXML.html#xmlShellSave">xmlShellSave</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncat">xmlStrncat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -<a href="html/libxml-xpath.html#xmlXPathObjectCopy">xmlXPathObjectCopy</a><br /> -</dd><dt>other</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_INCLUDING_CONVERT_NS">XML_SCHEMAS_INCLUDING_CONVERT_NS</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsNamespaceDecl">xmlTextReaderIsNamespaceDecl</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadString">xmlTextReaderReadString</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> -</dd><dt>our</dt><dd><a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -</dd><dt>out</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-threads.html#xmlLockLibrary">xmlLockLibrary</a><br /> -<a href="html/libxml-parser.html#xmlParseEntity">xmlParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFunction">xmlXPathFunction</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -</dd><dt>out-of</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -</dd><dt>output?</dt><dd><a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterFilename">xmlNewTextWriterFilename</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterMemory">xmlNewTextWriterMemory</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> -</dd><dt>outside</dt><dd><a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>over</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpCtxtNbCons">xmlExpCtxtNbCons</a><br /> -</dd><dt>overflow</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -</dd><dt>override</dt><dd><a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -</dd><dt>overwrite</dt><dd><a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -</dd><dt>overwritten</dt><dd><a href="html/libxml-encoding.html#xmlAddEncodingAlias">xmlAddEncodingAlias</a><br /> -</dd><dt>own</dt><dd><a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlCleanupMemory">xmlCleanupMemory</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -</dd><dt>owned</dt><dd><a href="html/libxml-parser.html#xmlClearParserCtxt">xmlClearParserCtxt</a><br /> -<a href="html/libxml-dict.html#xmlDictOwns">xmlDictOwns</a><br /> -</dd><dt>owner</dt><dd><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>ownership</dt><dd><a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -</dd><dt>owning</dt><dd><a href="html/libxml-valid.html#xmlCopyDocElementContent">xmlCopyDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlFreeDocElementContent">xmlFreeDocElementContent</a><br /> -<a href="html/libxml-tree.html#xmlNewDocFragment">xmlNewDocFragment</a><br /> -</dd><dt>owns</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk22.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk22.html deleted file mode 100644 index 4d1c2961..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk22.html +++ /dev/null @@ -1,595 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index p-p for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index p-p for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter p:</h2><dl><dt>pairs</dt><dd><a href="html/libxml-SAX.html#startElement">startElement</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#startElementSAXFunc">startElementSAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElement">xmlSAX2StartElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -</dd><dt>param</dt><dd><a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -</dd><dt>parameter-entity</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>parameters</dt><dd><a href="html/libxml-xmlversion.html#ATTRIBUTE_UNUSED">ATTRIBUTE_UNUSED</a><br /> -<a href="html/libxml-parser.html#errorSAXFunc">errorSAXFunc</a><br /> -<a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -<a href="html/libxml-parser.html#warningSAXFunc">warningSAXFunc</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserError">xmlParserError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserWarning">xmlParserWarning</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrPrintf">xmlStrPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrVPrintf">xmlStrVPrintf</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttribute">xmlTextWriterWriteFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttributeNS">xmlTextWriterWriteFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatCDATA">xmlTextWriterWriteFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatComment">xmlTextWriterWriteFormatComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTD">xmlTextWriterWriteFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDAttlist">xmlTextWriterWriteFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDElement">xmlTextWriterWriteFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDInternalEntity">xmlTextWriterWriteFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElement">xmlTextWriterWriteFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElementNS">xmlTextWriterWriteFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatPI">xmlTextWriterWriteFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatRaw">xmlTextWriterWriteFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatString">xmlTextWriterWriteFormatString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalFunc">xmlXPathEvalFunc</a><br /> -</dd><dt>parent-</dt><dd><a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -</dd><dt>parentheses</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -</dd><dt>parenthesis</dt><dd><a href="html/libxml-valid.html#xmlSnprintfElementContent">xmlSnprintfElementContent</a><br /> -<a href="html/libxml-valid.html#xmlSprintfElementContent">xmlSprintfElementContent</a><br /> -</dd><dt>parenthesized</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -</dd><dt>parents</dt><dd><a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -</dd><dt>partial</dt><dd><a href="html/libxml-xmlIO.html#xmlOutputBufferWrite">xmlOutputBufferWrite</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -</dd><dt>particular</dt><dd><a href="html/libxml-xpath.html#_xmlNodeSet">_xmlNodeSet</a><br /> -</dd><dt>pass</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a><br /> -</dd><dt>passed</dt><dd><a href="html/libxml-xpathInternals.html#CHECK_ARITY">CHECK_ARITY</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> -<a href="html/libxml-hash.html#xmlHashScan">xmlHashScan</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull">xmlHashScanFull</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-list.html#xmlListReverseWalk">xmlListReverseWalk</a><br /> -<a href="html/libxml-list.html#xmlListWalk">xmlListWalk</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalFunc">xmlXPathEvalFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -</dd><dt>passive</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a><br /> -</dd><dt>password</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -</dd><dt>past</dt><dd><a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>paste</dt><dd><a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>path</dt><dd><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -<a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -<a href="html/libxml-tree.html#xmlGetNodePath">xmlGetNodePath</a><br /> -<a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetSocket">xmlNanoFTPGetSocket</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -<a href="html/libxml-xmlIO.html#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserGetDirectory">xmlParserGetDirectory</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellValidate">xmlShellValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -</dd><dt>pattern</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_NORMVALUENEEDED">XML_SCHEMAS_TYPE_NORMVALUENEEDED</a><br /> -<a href="html/libxml-pattern.html#xmlPatternFromRoot">xmlPatternFromRoot</a><br /> -<a href="html/libxml-pattern.html#xmlPatternGetStreamCtxt">xmlPatternGetStreamCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMatch">xmlPatternMatch</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMaxDepth">xmlPatternMaxDepth</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMinDepth">xmlPatternMinDepth</a><br /> -<a href="html/libxml-pattern.html#xmlPatternStreamable">xmlPatternStreamable</a><br /> -<a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -</dd><dt>patterns</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaFacet">_xmlSchemaFacet</a><br /> -</dd><dt>pcdata</dt><dd><a href="html/libxml-SAX.html#cdataBlock">cdataBlock</a><br /> -<a href="html/libxml-parser.html#cdataBlockSAXFunc">cdataBlockSAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2CDataBlock">xmlSAX2CDataBlock</a><br /> -</dd><dt>pedantic</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlPedanticParserDefault">xmlPedanticParserDefault</a><br /> -</dd><dt>per</dt><dd><a href="html/libxml-xmlerror.html#xmlGetLastError">xmlGetLastError</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>performance</dt><dd><a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -</dd><dt>performed</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</dd><dt>pertain</dt><dd><a href="html/libxml-tree.html#xmlNewDocTextLen">xmlNewDocTextLen</a><br /> -</dd><dt>pertains</dt><dd><a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -</dd><dt>phase</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -</dd><dt>pic1</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>piece</dt><dd><a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -</dd><dt>pieces</dt><dd><a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -</dd><dt>place</dt><dd><a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-xmlerror.html#xmlCopyError">xmlCopyError</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -<a href="html/libxml-tree.html#xmlReplaceNode">xmlReplaceNode</a><br /> -</dd><dt>places</dt><dd><a href="html/libxml-xmlstring.html#xmlStrPrintf">xmlStrPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrVPrintf">xmlStrVPrintf</a><br /> -</dd><dt>plug</dt><dd><a href="html/libxml-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a><br /> -</dd><dt>plus</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -</dd><dt>pnetlib-doc</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -</dd><dt>pointed</dt><dd><a href="html/libxml-parserInternals.html#xmlPopInput">xmlPopInput</a><br /> -</dd><dt>pointers</dt><dd><a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -<a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>points</dt><dd><a href="html/libxml-chvalid.html#_xmlChRangeGroup">_xmlChRangeGroup</a><br /> -</dd><dt>pop</dt><dd><a href="html/libxml-parserInternals.html#xmlPopInput">xmlPopInput</a><br /> -</dd><dt>popped</dt><dd><a href="html/libxml-xpath.html#xmlXPathFunction">xmlXPathFunction</a><br /> -</dd><dt>pops</dt><dd><a href="html/libxml-parserInternals.html#xmlSkipBlankChars">xmlSkipBlankChars</a><br /> -</dd><dt>port</dt><dd><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -</dd><dt>portable</dt><dd><a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -</dd><dt>pos</dt><dd><a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -</dd><dt>position:</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>positioned</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderReadString">xmlTextReaderReadString</a><br /> -</dd><dt>positionned</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderReadAttributeValue">xmlTextReaderReadAttributeValue</a><br /> -</dd><dt>positions</dt><dd><a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -</dd><dt>positive</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferAddHead">xmlBufferAddHead</a><br /> -<a href="html/libxml-tree.html#xmlBufferCCat">xmlBufferCCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferCat">xmlBufferCat</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateDoc">xmlRelaxNGValidateDoc</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -<a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> -<a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> -<a href="html/libxml-tree.html#xmlValidateName">xmlValidateName</a><br /> -<a href="html/libxml-tree.html#xmlValidateQName">xmlValidateQName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFloorFunction">xmlXPathFloorFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>possible</dt><dd><a href="html/libxml-tree.html#xmlCopyNodeList">xmlCopyNodeList</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>possibly</dt><dd><a href="html/libxml-tree.html#xmlDocGetRootElement">xmlDocGetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlIsBlankNode">xmlIsBlankNode</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFilename">xmlSaveToFilename</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>posteriori</dt><dd><a href="html/libxml-tree.html#xmlSetNs">xmlSetNs</a><br /> -</dd><dt>potential</dt><dd><a href="html/libxml-debugXML.html#xmlDebugCheckDocument">xmlDebugCheckDocument</a><br /> -<a href="html/libxml-valid.html#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a><br /> -</dd><dt>potentially</dt><dd><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -</dd><dt>pre-interned</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>preallocated</dt><dd><a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -</dd><dt>precede</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -</dd><dt>preceded</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>precedes</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a><br /> -</dd><dt>preceding</dt><dd><a href="html/libxml-xpath.html#_xmlXPathParserContext">_xmlXPathParserContext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -</dd><dt>preceding-sibling</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -</dd><dt>precisely</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>precompiled</dt><dd><a href="html/libxml-xpath.html#_xmlXPathParserContext">_xmlXPathParserContext</a><br /> -<a href="html/libxml-pattern.html#xmlPatternFromRoot">xmlPatternFromRoot</a><br /> -<a href="html/libxml-pattern.html#xmlPatternGetStreamCtxt">xmlPatternGetStreamCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMatch">xmlPatternMatch</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMaxDepth">xmlPatternMaxDepth</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMinDepth">xmlPatternMinDepth</a><br /> -<a href="html/libxml-pattern.html#xmlPatternStreamable">xmlPatternStreamable</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewValidCtxt">xmlRelaxNGNewValidCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewValidCtxt">xmlSchematronNewValidCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpCompExpr">xmlXPathDebugDumpCompExpr</a><br /> -</dd><dt>precomputed</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaCopyValue">xmlSchemaCopyValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -</dd><dt>predefined</dt><dd><a href="html/libxml-tree.html#XML_XML_NAMESPACE">XML_XML_NAMESPACE</a><br /> -<a href="html/libxml-entities.html#xmlCleanupPredefinedEntities">xmlCleanupPredefinedEntities</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-entities.html#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a><br /> -<a href="html/libxml-entities.html#xmlGetDocEntity">xmlGetDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetPredefinedEntity">xmlGetPredefinedEntity</a><br /> -<a href="html/libxml-entities.html#xmlInitializePredefinedEntities">xmlInitializePredefinedEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> -</dd><dt>predicate</dt><dd><a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a><br /> -</dd><dt>preferably</dt><dd><a href="html/libxml-catalog.html#xmlInitializeCatalog">xmlInitializeCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -<a href="html/libxml-tree.html#xmlNewPI">xmlNewPI</a><br /> -</dd><dt>preference</dt><dd><a href="html/libxml-catalog.html#xmlCatalogGetDefaults">xmlCatalogGetDefaults</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaults">xmlCatalogSetDefaults</a><br /> -</dd><dt>prefixes</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -</dd><dt>preparsed</dt><dd><a href="html/libxml-xmlreader.html#xmlReaderNewWalker">xmlReaderNewWalker</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderWalker">xmlReaderWalker</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewDocParserCtxt">xmlSchemaNewDocParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewDocParserCtxt">xmlSchematronNewDocParserCtxt</a><br /> -</dd><dt>prepend</dt><dd><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>present</dt><dd><a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-dict.html#xmlDictLookup">xmlDictLookup</a><br /> -<a href="html/libxml-dict.html#xmlDictQLookup">xmlDictQLookup</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstValue">xmlTextReaderConstValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderValue">xmlTextReaderValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocument">xmlValidateDocument</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -</dd><dt>preserve</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_PRESERVE">XML_SCHEMAS_FACET_PRESERVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE">XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetSpacePreserve">xmlNodeSetSpacePreserve</a><br /> -<a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -<a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -</dd><dt>preserved</dt><dd><a href="html/libxml-HTMLtree.html#HTML_PRESERVE_NODE">HTML_PRESERVE_NODE</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -</dd><dt>preserving</dt><dd><a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetSpacePreserve">xmlNodeSetSpacePreserve</a><br /> -</dd><dt>prev</dt><dd><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>prevent</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -</dd><dt>previous</dt><dd><a href="html/libxml-tree.html#_xmlAttr">_xmlAttr</a><br /> -<a href="html/libxml-tree.html#_xmlAttribute">_xmlAttribute</a><br /> -<a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-tree.html#_xmlElement">_xmlElement</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -<a href="html/libxml-HTMLparser.html#htmlHandleOmittedElem">htmlHandleOmittedElem</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDebug">xmlCatalogSetDebug</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -<a href="html/libxml-globals.html#xmlDeregisterNodeDefault">xmlDeregisterNodeDefault</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> -<a href="html/libxml-parser.html#xmlPedanticParserDefault">xmlPedanticParserDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlPushInput">xmlPushInput</a><br /> -<a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -<a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -</dd><dt>primitive</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertFunc">xmlXPathConvertFunc</a><br /> -</dd><dt>print</dt><dd><a href="html/libxml-debugXML.html#xmlShellPrintNode">xmlShellPrintNode</a><br /> -<a href="html/libxml-valid.html#xmlSnprintfElementContent">xmlSnprintfElementContent</a><br /> -<a href="html/libxml-valid.html#xmlSprintfElementContent">xmlSprintfElementContent</a><br /> -</dd><dt>printed</dt><dd><a href="html/libxml-HTMLtree.html#htmlNodeDump">htmlNodeDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFile">htmlNodeDumpFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpOutput">htmlNodeDumpOutput</a><br /> -<a href="html/libxml-tree.html#xmlElemDump">xmlElemDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -</dd><dt>prior</dt><dd><a href="html/libxml-parser.html#xmlSetupParserForBuffer">xmlSetupParserForBuffer</a><br /> -</dd><dt>private</dt><dd><a href="html/libxml-catalog.html#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolveURI">xmlCatalogLocalResolveURI</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a><br /> -</dd><dt>problem</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePopElement">xmlRelaxNGValidatePopElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushCData">xmlRelaxNGValidatePushCData</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -<a href="html/libxml-valid.html#xmlValidatePopElement">xmlValidatePopElement</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushCData">xmlValidatePushCData</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushElement">xmlValidatePushElement</a><br /> -</dd><dt>problems</dt><dd><a href="html/libxml-tree.html#xmlBufferResize">xmlBufferResize</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugCheckDocument">xmlDebugCheckDocument</a><br /> -<a href="html/libxml-parser.html#xmlLoadExternalEntity">xmlLoadExternalEntity</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -</dd><dt>procedure</dt><dd><a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a><br /> -</dd><dt>process</dt><dd><a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-xmlreader.html#xmlNewTextReaderFilename">xmlNewTextReaderFilename</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewDocParserCtxt">xmlSchemaNewDocParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewDocParserCtxt">xmlSchematronNewDocParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlSkipBlankChars">xmlSkipBlankChars</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -</dd><dt>processed</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-SAX.html#startDocument">startDocument</a><br /> -<a href="html/libxml-parser.html#startDocumentSAXFunc">startDocumentSAXFunc</a><br /> -<a href="html/libxml-SAX.html#startElement">startElement</a><br /> -<a href="html/libxml-parser.html#startElementSAXFunc">startElementSAXFunc</a><br /> -<a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartDocument">xmlSAX2StartDocument</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElement">xmlSAX2StartElement</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -</dd><dt>processing-instruction</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathIsNodeType">xmlXPathIsNodeType</a><br /> -</dd><dt>processing-instruction-node</dt><dd><a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>processing-instruction-nodes</dt><dd><a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</dd><dt>processor</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -</dd><dt>procgressed</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>produce</dt><dd><a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a><br /> -<a href="html/libxml-tree.html#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a><br /> -</dd><dt>produced</dt><dd><a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -</dd><dt>producing</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -</dd><dt>production:</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>productions</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>program</dt><dd><a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -</dd><dt>programs</dt><dd><a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -<a href="html/libxml-parser.html#xmlInitParser">xmlInitParser</a><br /> -</dd><dt>progresses</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -</dd><dt>progressive</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-xmlIO.html#xmlAllocParserInputBuffer">xmlAllocParserInputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFd">xmlOutputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFile">xmlOutputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFd">xmlParserInputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFile">xmlParserInputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateMem">xmlParserInputBufferCreateMem</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -</dd><dt>prohibited</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_PROHIBITED">XML_SCHEMAS_ATTR_USE_PROHIBITED</a><br /> -</dd><dt>projects</dt><dd><a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -</dd><dt>prolog</dt><dd><a href="html/libxml-parser.html#xmlParseDocument">xmlParseDocument</a><br /> -</dd><dt>prompt</dt><dd><a href="html/libxml-debugXML.html#xmlShellReadlineFunc">xmlShellReadlineFunc</a><br /> -</dd><dt>proper</dt><dd><a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -</dd><dt>properly</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>properties</dt><dd><a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -<a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-tree.html#xmlCopyNode">xmlCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNode">xmlDocCopyNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRead">xmlTextReaderRead</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -</dd><dt>property</dt><dd><a href="html/libxml-tree.html#_xmlAttr">_xmlAttr</a><br /> -<a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlFreePropList">xmlFreePropList</a><br /> -<a href="html/libxml-tree.html#xmlNewDocProp">xmlNewDocProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsProp">xmlNewNsProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsPropEatName">xmlNewNsPropEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewProp">xmlNewProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserProp">xmlTextReaderGetParserProp</a><br /> -</dd><dt>protocol</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPCleanup">xmlNanoFTPCleanup</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPInit">xmlNanoFTPInit</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPCleanup">xmlNanoHTTPCleanup</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPInit">xmlNanoHTTPInit</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -</dd><dt>prototype</dt><dd><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a><br /> -<a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -</dd><dt>provenance</dt><dd><a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -</dd><dt>provide</dt><dd><a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strloc">xmlUTF8Strloc</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strpos">xmlUTF8Strpos</a><br /> -</dd><dt>provides</dt><dd><a href="html/libxml-parser.html#endElementNsSAX2Func">endElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtNbCons">xmlExpCtxtNbCons</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtNbNodes">xmlExpCtxtNbNodes</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElementNs">xmlSAX2EndElementNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -</dd><dt>providing</dt><dd><a href="html/libxml-parserInternals.html#INPUT_CHUNK">INPUT_CHUNK</a><br /> -</dd><dt>provoked</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -</dd><dt>proximity</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -</dd><dt>proxy</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPCleanup">xmlNanoFTPCleanup</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPInit">xmlNanoFTPInit</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPInit">xmlNanoHTTPInit</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -</dd><dt>prune</dt><dd><a href="html/libxml-tree.html#xmlReplaceNode">xmlReplaceNode</a><br /> -</dd><dt>publicID</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -</dd><dt>pull</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -</dd><dt>pure</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -</dd><dt>purposes</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpObject">xmlXPathDebugDumpObject</a><br /> -</dd><dt>push</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_PUSH_ENABLED">LIBXML_PUSH_ENABLED</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCtxtResetPush">xmlCtxtResetPush</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPop">xmlStreamPop</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvalExpr">xmlXPathEvalExpr</a><br /> -</dd><dt>pushed</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFunction">xmlXPathFunction</a><br /> -</dd><dt>pushing</dt><dd><a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -</dd><dt>put</dt><dd><a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -</dd><dt>putative</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -</dd><dt>pwd</dt><dd><a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk23.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk23.html deleted file mode 100644 index bbf11658..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk23.html +++ /dev/null @@ -1,670 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index q-r for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index q-r for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter q:</h2><dl><dt>qualified</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_QUALIF_ATTR">XML_SCHEMAS_QUALIF_ATTR</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_QUALIF_ELEM">XML_SCHEMAS_QUALIF_ELEM</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstName">xmlTextReaderConstName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttribute">xmlTextReaderGetAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttribute">xmlTextReaderMoveToAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderName">xmlTextReaderName</a><br /> -<a href="html/libxml-valid.html#xmlValidatePopElement">xmlValidatePopElement</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushElement">xmlValidatePushElement</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseNCName">xmlXPathParseNCName</a><br /> -</dd><dt>query</dt><dd><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -</dd><dt>quot</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -</dd><dt>quotation</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderQuoteChar">xmlTextReaderQuoteChar</a><br /> -</dd><dt>quote</dt><dd><a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -</dd><dt>quoted</dt><dd><a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -</dd><dt>quotes</dt><dd><a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -</dd></dl><h2>Letter r:</h2><dl><dt>raise</dt><dd><a href="html/libxml-xpathInternals.html#XP_ERROR">XP_ERROR</a><br /> -<a href="html/libxml-xpathInternals.html#XP_ERROR0">XP_ERROR0</a><br /> -</dd><dt>raised</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCheckError">xmlXPathCheckError</a><br /> -</dd><dt>range</dt><dd><a href="html/libxml-parserInternals.html#IS_BYTE_CHAR">IS_BYTE_CHAR</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferAddHead">xmlBufferAddHead</a><br /> -<a href="html/libxml-chvalid.html#xmlCharInRange">xmlCharInRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetDel">xmlXPtrLocationSetDel</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetRemove">xmlXPtrLocationSetRemove</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewCollapsedRange">xmlXPtrNewCollapsedRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRange">xmlXPtrNewRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodeObject">xmlXPtrNewRangeNodeObject</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodePoint">xmlXPtrNewRangeNodePoint</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodes">xmlXPtrNewRangeNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePointNode">xmlXPtrNewRangePointNode</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePoints">xmlXPtrNewRangePoints</a><br /> -</dd><dt>range-to</dt><dd><a href="html/libxml-xpointer.html#xmlXPtrRangeToFunction">xmlXPtrRangeToFunction</a><br /> -</dd><dt>ranges</dt><dd><a href="html/libxml-chvalid.html#_xmlChRangeGroup">_xmlChRangeGroup</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrFreeLocationSet">xmlXPtrFreeLocationSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -</dd><dt>rangesets</dt><dd><a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -</dd><dt>rather</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderIsNamespaceDecl">xmlTextReaderIsNamespaceDecl</a><br /> -</dd><dt>ratio</dt><dd><a href="html/libxml-tree.html#xmlGetDocCompressMode">xmlGetDocCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetCompressMode">xmlSetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetDocCompressMode">xmlSetDocCompressMode</a><br /> -</dd><dt>ration</dt><dd><a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -</dd><dt>raw</dt><dd><a href="html/libxml-xmlIO.html#_xmlParserInputBuffer">_xmlParserInputBuffer</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatRaw">xmlTextWriterWriteFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRaw">xmlTextWriterWriteRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatRaw">xmlTextWriterWriteVFormatRaw</a><br /> -</dd><dt>re-entrant</dt><dd><a href="html/libxml-threads.html#xmlLockLibrary">xmlLockLibrary</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -<a href="html/libxml-threads.html#xmlUnlockLibrary">xmlUnlockLibrary</a><br /> -</dd><dt>reachable</dt><dd><a href="html/libxml-pattern.html#xmlPatternMaxDepth">xmlPatternMaxDepth</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMinDepth">xmlPatternMinDepth</a><br /> -</dd><dt>reached</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -</dd><dt>read-only</dt><dd><a href="html/libxml-dict.html#xmlDictCreateSub">xmlDictCreateSub</a><br /> -</dd><dt>readable</dt><dd><a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -</dd><dt>reader-</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>reading</dt><dd><a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -</dd><dt>ready</dt><dd><a href="html/libxml-parserInternals.html#INPUT_CHUNK">INPUT_CHUNK</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataCompile">xmlAutomataCompile</a><br /> -</dd><dt>realloc</dt><dd><a href="html/libxml-tree.html#_xmlBuffer">_xmlBuffer</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -</dd><dt>reallocated</dt><dd><a href="html/libxml-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncat">xmlStrncat</a><br /> -</dd><dt>really</dt><dd><a href="html/libxml-HTMLtree.html#HTML_COMMENT_NODE">HTML_COMMENT_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_ENTITY_REF_NODE">HTML_ENTITY_REF_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_PI_NODE">HTML_PI_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_PRESERVE_NODE">HTML_PRESERVE_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_TEXT_NODE">HTML_TEXT_NODE</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-entities.html#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a><br /> -</dd><dt>reasonable</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>receive</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpDump">xmlExpDump</a><br /> -</dd><dt>received</dt><dd><a href="html/libxml-nanoftp.html#ftpDataCallback">ftpDataCallback</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPReturnCode">xmlNanoHTTPReturnCode</a><br /> -</dd><dt>receives</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -</dd><dt>receiving</dt><dd><a href="html/libxml-SAX.html#characters">characters</a><br /> -<a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Characters">xmlSAX2Characters</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>reclaim</dt><dd><a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-threads.html#xmlFreeMutex">xmlFreeMutex</a><br /> -<a href="html/libxml-threads.html#xmlFreeRMutex">xmlFreeRMutex</a><br /> -</dd><dt>recognized</dt><dd><a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -</dd><dt>recommendation</dt><dd><a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -</dd><dt>recommendation:</dt><dd><a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -</dd><dt>recomputed</dt><dd><a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferAddHead">xmlBufferAddHead</a><br /> -<a href="html/libxml-dict.html#xmlDictExists">xmlDictExists</a><br /> -<a href="html/libxml-dict.html#xmlDictLookup">xmlDictLookup</a><br /> -</dd><dt>reconciliate</dt><dd><a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>record</dt><dd><a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-parser.html#xmlParserAddNodeInfo">xmlParserAddNodeInfo</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -</dd><dt>recover</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -</dd><dt>recovery</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -</dd><dt>recurse</dt><dd><a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -</dd><dt>recursive</dt><dd><a href="html/libxml-HTMLtree.html#htmlNodeDump">htmlNodeDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFile">htmlNodeDumpFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpOutput">htmlNodeDumpOutput</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseElement">htmlParseElement</a><br /> -<a href="html/libxml-tree.html#xmlCopyDoc">xmlCopyDoc</a><br /> -<a href="html/libxml-valid.html#xmlCopyEnumeration">xmlCopyEnumeration</a><br /> -<a href="html/libxml-tree.html#xmlCopyNode">xmlCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlCopyNodeList">xmlCopyNodeList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocument">xmlDebugDumpDocument</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocumentHead">xmlDebugDumpDocumentHead</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNode">xmlDebugDumpNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNodeList">xmlDebugDumpNodeList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpOneNode">xmlDebugDumpOneNode</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNode">xmlDocCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNodeList">xmlDocCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlElemDump">xmlElemDump</a><br /> -<a href="html/libxml-valid.html#xmlFreeEnumeration">xmlFreeEnumeration</a><br /> -<a href="html/libxml-tree.html#xmlFreeNode">xmlFreeNode</a><br /> -<a href="html/libxml-tree.html#xmlFreeNodeList">xmlFreeNodeList</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -</dd><dt>recursively</dt><dd><a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -</dd><dt>redeclared</dt><dd><a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>redefined</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_REDEFINED">XML_SCHEMAS_ATTRGROUP_REDEFINED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_REDEFINED">XML_SCHEMAS_TYPE_REDEFINED</a><br /> -</dd><dt>redefinition</dt><dd><a href="html/libxml-parserInternals.html#xmlErrMemory">xmlErrMemory</a><br /> -</dd><dt>redir</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -</dd><dt>redirected</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRedir">xmlNanoHTTPRedir</a><br /> -</dd><dt>redirection</dt><dd><a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRedir">xmlNanoHTTPRedir</a><br /> -</dd><dt>reentrant</dt><dd><a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-entities.html#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a><br /> -<a href="html/libxml-threads.html#xmlFreeRMutex">xmlFreeRMutex</a><br /> -<a href="html/libxml-parser.html#xmlInitParser">xmlInitParser</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -<a href="html/libxml-threads.html#xmlRMutexLock">xmlRMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlRMutexUnlock">xmlRMutexUnlock</a><br /> -</dd><dt>ref</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> -<a href="html/libxml-valid.html#xmlFreeRefTable">xmlFreeRefTable</a><br /> -<a href="html/libxml-tree.html#xmlNewCharRef">xmlNewCharRef</a><br /> -</dd><dt>referenced</dt><dd><a href="html/libxml-list.html#xmlLinkGetData">xmlLinkGetData</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -</dd><dt>references</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_HAS_REFS">XML_SCHEMAS_ATTRGROUP_HAS_REFS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -<a href="html/libxml-valid.html#xmlGetRefs">xmlGetRefs</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -</dd><dt>referencing</dt><dd><a href="html/libxml-entities.html#xmlGetDocEntity">xmlGetDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetDtdEntity">xmlGetDtdEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetParameterEntity">xmlGetParameterEntity</a><br /> -</dd><dt>referred</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -</dd><dt>refresh</dt><dd><a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -</dd><dt>refs</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>refuse</dt><dd><a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -</dd><dt>regex</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaFacet">_xmlSchemaFacet</a><br /> -</dd><dt>regexp</dt><dd><a href="html/libxml-tree.html#_xmlElement">_xmlElement</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataCompile">xmlAutomataCompile</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegFreeRegexp">xmlRegFreeRegexp</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpPrint">xmlRegexpPrint</a><br /> -</dd><dt>regexps</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -</dd><dt>register</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableLookup">xmlXPathRegisterVariableLookup</a><br /> -</dd><dt>registered</dt><dd><a href="html/libxml-xmlerror.html#xmlCtxtGetLastError">xmlCtxtGetLastError</a><br /> -<a href="html/libxml-xmlerror.html#xmlCtxtResetLastError">xmlCtxtResetLastError</a><br /> -<a href="html/libxml-encoding.html#xmlFindCharEncodingHandler">xmlFindCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingHandler">xmlGetCharEncodingHandler</a><br /> -<a href="html/libxml-xmlerror.html#xmlGetLastError">xmlGetLastError</a><br /> -<a href="html/libxml-xmlIO.html#xmlPopInputCallbacks">xmlPopInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -<a href="html/libxml-xmlerror.html#xmlResetLastError">xmlResetLastError</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetErrorHandler">xmlTextReaderGetErrorHandler</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredFuncsCleanup">xmlXPathRegisteredFuncsCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredNsCleanup">xmlXPathRegisteredNsCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredVariablesCleanup">xmlXPathRegisteredVariablesCleanup</a><br /> -</dd><dt>registers</dt><dd><a href="html/libxml-encoding.html#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a><br /> -<a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -</dd><dt>registration</dt><dd><a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -<a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameDefault">xmlOutputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameDefault">xmlParserInputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlRegisterNodeDefault">xmlRegisterNodeDefault</a><br /> -</dd><dt>regular</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_REGEXP_ENABLED">LIBXML_REGEXP_ENABLED</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegFreeExecCtxt">xmlRegFreeExecCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpExec">xmlRegexpExec</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpIsDeterminist">xmlRegexpIsDeterminist</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpPrint">xmlRegexpPrint</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsNamespaceDecl">xmlTextReaderIsNamespaceDecl</a><br /> -</dd><dt>reinitialize</dt><dd><a href="html/libxml-parser.html#xmlClearNodeInfoSeq">xmlClearNodeInfoSeq</a><br /> -<a href="html/libxml-parser.html#xmlClearParserCtxt">xmlClearParserCtxt</a><br /> -</dd><dt>related</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_UNICODE_ENABLED">LIBXML_UNICODE_ENABLED</a><br /> -<a href="html/libxml-HTMLparser.html#htmlTagLookup">htmlTagLookup</a><br /> -<a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-threads.html#xmlCleanupThreads">xmlCleanupThreads</a><br /> -<a href="html/libxml-threads.html#xmlInitThreads">xmlInitThreads</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPClose">xmlNanoHTTPClose</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -</dd><dt>relationships</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>relative</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNo">xmlTextReaderGetAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNo">xmlTextReaderMoveToAttributeNo</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strloc">xmlUTF8Strloc</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -</dd><dt>relativeURI</dt><dd><a href="html/libxml-uri.html#xmlParseURI">xmlParseURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -<a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> -</dd><dt>release</dt><dd><a href="html/libxml-parser.html#xmlClearNodeInfoSeq">xmlClearNodeInfoSeq</a><br /> -<a href="html/libxml-parser.html#xmlClearParserCtxt">xmlClearParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-threads.html#xmlUnlockLibrary">xmlUnlockLibrary</a><br /> -</dd><dt>releases</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderClose">xmlTextReaderClose</a><br /> -</dd><dt>reliable</dt><dd><a href="html/libxml-xmlsave.html#xmlSaveToFilename">xmlSaveToFilename</a><br /> -</dd><dt>rely</dt><dd><a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -</dd><dt>remainder</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>remaining</dt><dd><a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>remapped</dt><dd><a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -</dd><dt>remote</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPCwd">xmlNanoFTPCwd</a><br /> -</dd><dt>removal</dt><dd><a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -</dd><dt>remove</dt><dd><a href="html/libxml-catalog.html#xmlACatalogRemove">xmlACatalogRemove</a><br /> -<a href="html/libxml-tree.html#xmlBufferShrink">xmlBufferShrink</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogRemove">xmlCatalogRemove</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetRemove">xmlXPathNodeSetRemove</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetRemove">xmlXPtrLocationSetRemove</a><br /> -</dd><dt>removed</dt><dd><a href="html/libxml-parserInternals.html#inputPop">inputPop</a><br /> -<a href="html/libxml-parserInternals.html#namePop">namePop</a><br /> -<a href="html/libxml-parserInternals.html#nodePop">nodePop</a><br /> -<a href="html/libxml-xpathInternals.html#valuePop">valuePop</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogRemove">xmlACatalogRemove</a><br /> -<a href="html/libxml-tree.html#xmlBufferShrink">xmlBufferShrink</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogRemove">xmlCatalogRemove</a><br /> -<a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-valid.html#xmlFreeDocElementContent">xmlFreeDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlFreeElementContent">xmlFreeElementContent</a><br /> -<a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>removes</dt><dd><a href="html/libxml-parserInternals.html#xmlParserInputShrink">xmlParserInputShrink</a><br /> -</dd><dt>removing</dt><dd><a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -</dd><dt>rename</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -</dd><dt>repeat</dt><dd><a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -</dd><dt>repeated</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -</dd><dt>repetition</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -</dd><dt>replace</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_REPLACE">XML_SCHEMAS_FACET_REPLACE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_REPLACE">XML_SCHEMAS_TYPE_WHITESPACE_REPLACE</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>replaced</dt><dd><a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>replacement</dt><dd><a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>replaces</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -</dd><dt>replacing</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-entities.html#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -</dd><dt>reporting</dt><dd><a href="html/libxml-parserInternals.html#INPUT_CHUNK">INPUT_CHUNK</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a><br /> -</dd><dt>reports</dt><dd><a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -</dd><dt>repr</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -</dd><dt>representation</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -</dd><dt>representations</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>represented</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>represented:</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>representing</dt><dd><a href="html/libxml-xmlmemory.html#xmlMemBlocks">xmlMemBlocks</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemUsed">xmlMemUsed</a><br /> -</dd><dt>request</dt><dd><a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPReturnCode">xmlNanoHTTPReturnCode</a><br /> -</dd><dt>requested</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -<a href="html/libxml-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -<a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a><br /> -</dd><dt>requests</dt><dd><a href="html/libxml-xmlIO.html#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a><br /> -</dd><dt>required</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_REQUIRED">XML_SCHEMAS_ATTR_USE_REQUIRED</a><br /> -<a href="html/libxml-HTMLparser.html#htmlRequiredAttrs">htmlRequiredAttrs</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDebug">xmlCatalogSetDebug</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCollapseString">xmlSchemaCollapseString</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaWhiteSpaceReplace">xmlSchemaWhiteSpaceReplace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>requires</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a><br /> -</dd><dt>requred</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -</dd><dt>reserved</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -</dd><dt>reset</dt><dd><a href="html/libxml-xmlerror.html#initGenericErrorDefaultFunc">initGenericErrorDefaultFunc</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFd">xmlCtxtReadFd</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetBase">xmlNodeSetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetName">xmlNodeSetName</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetSpacePreserve">xmlNodeSetSpacePreserve</a><br /> -<a href="html/libxml-parser.html#xmlReadFd">xmlReadFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFd">xmlReaderForFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-tree.html#xmlSetNsProp">xmlSetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>resides</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlLang">xmlTextReaderConstXmlLang</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderXmlLang">xmlTextReaderXmlLang</a><br /> -</dd><dt>resize</dt><dd><a href="html/libxml-tree.html#xmlBufferResize">xmlBufferResize</a><br /> -</dd><dt>resolution</dt><dd><a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolve">xmlACatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveURI">xmlACatalogResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolveURI">xmlCatalogLocalResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolve">xmlCatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolveURI">xmlCatalogResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -</dd><dt>resolveEntity</dt><dd><a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -</dd><dt>resolved</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> -</dd><dt>resolver</dt><dd><a href="html/libxml-parser.html#xmlGetExternalEntityLoader">xmlGetExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a><br /> -</dd><dt>resources</dt><dd><a href="html/libxml-parser.html#xmlClearParserCtxt">xmlClearParserCtxt</a><br /> -<a href="html/libxml-threads.html#xmlFreeMutex">xmlFreeMutex</a><br /> -<a href="html/libxml-threads.html#xmlFreeRMutex">xmlFreeRMutex</a><br /> -<a href="html/libxml-xmlreader.html#xmlFreeTextReader">xmlFreeTextReader</a><br /> -<a href="html/libxml-xmlwriter.html#xmlFreeTextWriter">xmlFreeTextWriter</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferClose">xmlOutputBufferClose</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGFreeParserCtxt">xmlRelaxNGFreeParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGFreeValidCtxt">xmlRelaxNGFreeValidCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaFreeParserCtxt">xmlSchemaFreeParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronFreeParserCtxt">xmlSchematronFreeParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronFreeValidCtxt">xmlSchematronFreeValidCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderClose">xmlTextReaderClose</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeSetFlags">xmlXIncludeSetFlags</a><br /> -</dd><dt>resp</dt><dd><a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -</dd><dt>respect</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpStringDerive">xmlExpStringDerive</a><br /> -</dd><dt>respecting</dt><dd><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>response</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPCheckResponse">xmlNanoFTPCheckResponse</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetResponse">xmlNanoFTPGetResponse</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> -</dd><dt>responsible</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -</dd><dt>restored</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a><br /> -</dd><dt>restrict</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -</dd><dt>restriction</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION">XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_RESTRICTION">XML_SCHEMAS_ELEM_FINAL_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION">XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a><br /> -</dd><dt>results</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathEqualValues">xmlXPathEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotEqualValues">xmlXPathNotEqualValues</a><br /> -</dd><dt>retValue</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>retrieve</dt><dd><a href="html/libxml-threads.html#xmlGetGlobalState">xmlGetGlobalState</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetSocket">xmlNanoFTPGetSocket</a><br /> -</dd><dt>retrieved</dt><dd><a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -</dd><dt>retry</dt><dd><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>returning</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>reusal</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -</dd><dt>reuse</dt><dd><a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -</dd><dt>reused</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>reuses</dt><dd><a href="html/libxml-HTMLparser.html#htmlCtxtReadDoc">htmlCtxtReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadFd">htmlCtxtReadFd</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadFile">htmlCtxtReadFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadIO">htmlCtxtReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadMemory">htmlCtxtReadMemory</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadDoc">xmlCtxtReadDoc</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFd">xmlCtxtReadFd</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFile">xmlCtxtReadFile</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadIO">xmlCtxtReadIO</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadMemory">xmlCtxtReadMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewDoc">xmlReaderNewDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFile">xmlReaderNewFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewMemory">xmlReaderNewMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewWalker">xmlReaderNewWalker</a><br /> -</dd><dt>reusing</dt><dd><a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -</dd><dt>reverse</dt><dd><a href="html/libxml-list.html#xmlListReverseSearch">xmlListReverseSearch</a><br /> -<a href="html/libxml-list.html#xmlListReverseWalk">xmlListReverseWalk</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -</dd><dt>rewrite</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>right</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-tree.html#xmlSetListDoc">xmlSetListDoc</a><br /> -<a href="html/libxml-tree.html#xmlSetTreeDoc">xmlSetTreeDoc</a><br /> -</dd><dt>role</dt><dd><a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -</dd><dt>roles</dt><dd><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -</dd><dt>rollback</dt><dd><a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -</dd><dt>root</dt><dd><a href="html/libxml-SAX.html#externalSubset">externalSubset</a><br /> -<a href="html/libxml-parser.html#externalSubsetSAXFunc">externalSubsetSAXFunc</a><br /> -<a href="html/libxml-SAX.html#internalSubset">internalSubset</a><br /> -<a href="html/libxml-parser.html#internalSubsetSAXFunc">internalSubsetSAXFunc</a><br /> -<a href="html/libxml-tree.html#xmlDocGetRootElement">xmlDocGetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-pattern.html#xmlPatternFromRoot">xmlPatternFromRoot</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ExternalSubset">xmlSAX2ExternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InternalSubset">xmlSAX2InternalSubset</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewValueTree">xmlXPathNewValueTree</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoot">xmlXPathRoot</a><br /> -</dd><dt>round</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathRoundFunction">xmlXPathRoundFunction</a><br /> -</dd><dt>routines</dt><dd><a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseFile">xmlSAXUserParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseMemory">xmlSAXUserParseMemory</a><br /> -</dd><dt>rule</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -</dd><dt>rules</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>run</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -</dd><dt>running</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -</dd><dt>runtime</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_DEBUG_RUNTIME">LIBXML_DEBUG_RUNTIME</a><br /> -<a href="html/libxml-parserInternals.html#XML_MAX_NAMELEN">XML_MAX_NAMELEN</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk24.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk24.html deleted file mode 100644 index 5f563c61..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk24.html +++ /dev/null @@ -1,929 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index s-s for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index s-s for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter s:</h2><dl><dt>s390</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -</dd><dt>safe</dt><dd><a href="html/libxml-xmlstring.html#BAD_CAST">BAD_CAST</a><br /> -<a href="html/libxml-catalog.html#xmlInitializeCatalog">xmlInitializeCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -</dd><dt>same</dt><dd><a href="html/libxml-HTMLtree.html#HTML_COMMENT_NODE">HTML_COMMENT_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_ENTITY_REF_NODE">HTML_ENTITY_REF_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_PI_NODE">HTML_PI_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_PRESERVE_NODE">HTML_PRESERVE_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_TEXT_NODE">HTML_TEXT_NODE</a><br /> -<a href="html/libxml-parserInternals.html#IS_BLANK_CH">IS_BLANK_CH</a><br /> -<a href="html/libxml-SAX.html#checkNamespace">checkNamespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-tree.html#xmlReplaceNode">xmlReplaceNode</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -<a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCmpNodes">xmlXPathCmpNodes</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -</dd><dt>save</dt><dd><a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-debugXML.html#xmlShellSave">xmlShellSave</a><br /> -</dd><dt>saved</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPSave">xmlNanoHTTPSave</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a><br /> -</dd><dt>saves</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPRead">xmlNanoFTPRead</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRead">xmlNanoHTTPRead</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPSave">xmlNanoHTTPSave</a><br /> -<a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> -</dd><dt>saving</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_OUTPUT_ENABLED">LIBXML_OUTPUT_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_WRITER_ENABLED">LIBXML_WRITER_ENABLED</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFd">xmlOutputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFile">xmlOutputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveClose">xmlSaveClose</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveFlush">xmlSaveFlush</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetAttrEscape">xmlSaveSetAttrEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetEscape">xmlSaveSetEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToBuffer">xmlSaveToBuffer</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFd">xmlSaveToFd</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFilename">xmlSaveToFilename</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -</dd><dt>sax</dt><dd><a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -</dd><dt>say</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>says</dt><dd><a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -</dd><dt>scan</dt><dd><a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -</dd><dt>scanner</dt><dd><a href="html/libxml-hash.html#xmlHashScan">xmlHashScan</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull">xmlHashScanFull</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanner">xmlHashScanner</a><br /> -<a href="html/libxml-hash.html#xmlHashScannerFull">xmlHashScannerFull</a><br /> -</dd><dt>scanning</dt><dd><a href="html/libxml-hash.html#xmlHashScanner">xmlHashScanner</a><br /> -<a href="html/libxml-hash.html#xmlHashScannerFull">xmlHashScannerFull</a><br /> -</dd><dt>scannner</dt><dd><a href="html/libxml-hash.html#xmlHashScanner">xmlHashScanner</a><br /> -<a href="html/libxml-hash.html#xmlHashScannerFull">xmlHashScannerFull</a><br /> -</dd><dt>schemas</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewMemParserCtxt">xmlRelaxNGNewMemParserCtxt</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetFacetValueAsULong">xmlSchemaGetFacetValueAsULong</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetValType">xmlSchemaGetValType</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewMemParserCtxt">xmlSchemaNewMemParserCtxt</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewMemParserCtxt">xmlSchematronNewMemParserCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -</dd><dt>schematron</dt><dd><a href="html/libxml-schematron.html#xmlSchematronValidateDoc">xmlSchematronValidateDoc</a><br /> -</dd><dt>scheme</dt><dd><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -<a href="html/libxml-tree.html#xmlBufferSetAllocationScheme">xmlBufferSetAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -</dd><dt>schemes</dt><dd><a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -</dd><dt>scope</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlSetNsProp">xmlSetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlLang">xmlTextReaderConstXmlLang</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderXmlLang">xmlTextReaderXmlLang</a><br /> -</dd><dt>scoping</dt><dd><a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -</dd><dt>script</dt><dd><a href="html/libxml-HTMLparser.html#htmlIsScriptAttribute">htmlIsScriptAttribute</a><br /> -</dd><dt>search</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathAxis">_xmlXPathAxis</a><br /> -<a href="html/libxml-chvalid.html#xmlCharInRange">xmlCharInRange</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdAttrDesc">xmlGetDtdAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdElementDesc">xmlGetDtdElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdNotationDesc">xmlGetDtdNotationDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQElementDesc">xmlGetDtdQElementDesc</a><br /> -<a href="html/libxml-list.html#xmlListReverseSearch">xmlListReverseSearch</a><br /> -<a href="html/libxml-list.html#xmlListSearch">xmlListSearch</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcasestr">xmlStrcasestr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrchr">xmlStrchr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrstr">xmlStrstr</a><br /> -</dd><dt>searched</dt><dd><a href="html/libxml-dict.html#xmlDictCreateSub">xmlDictCreateSub</a><br /> -</dd><dt>section</dt><dd><a href="html/libxml-HTMLtree.html#HTML_PRESERVE_NODE">HTML_PRESERVE_NODE</a><br /> -<a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndCDATA">xmlTextWriterEndCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartCDATA">xmlTextWriterStartCDATA</a><br /> -</dd><dt>sections</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -</dd><dt>seems</dt><dd><a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -</dd><dt>selection</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_PATTERN_ENABLED">LIBXML_PATTERN_ENABLED</a><br /> -</dd><dt>selects</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -</dd><dt>self</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNextSelf">xmlXPathNextSelf</a><br /> -</dd><dt>semantic</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a><br /> -</dd><dt>semantics</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>sense</dt><dd><a href="html/libxml-entities.html#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a><br /> -</dd><dt>separated</dt><dd><a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -</dd><dt>separately</dt><dd><a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -</dd><dt>seq</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -</dd><dt>sequence</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaFacet">_xmlSchemaFacet</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-parser.html#xmlClearNodeInfoSeq">xmlClearNodeInfoSeq</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-parser.html#xmlInitNodeInfoSeq">xmlInitNodeInfoSeq</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-parser.html#xmlParserAddNodeInfo">xmlParserAddNodeInfo</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strlen">xmlUTF8Strlen</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsize">xmlUTF8Strsize</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -</dd><dt>sequences</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -</dd><dt>sequqnce</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpIsNillable">xmlExpIsNillable</a><br /> -</dd><dt>serialization</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_OUTPUT_ENABLED">LIBXML_OUTPUT_ENABLED</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToBuffer">xmlSaveToBuffer</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFd">xmlSaveToFd</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFilename">xmlSaveToFilename</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCat">xmlShellCat</a><br /> -<a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> -<a href="html/libxml-valid.html#xmlValidatePopElement">xmlValidatePopElement</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushElement">xmlValidatePushElement</a><br /> -</dd><dt>serializing</dt><dd><a href="html/libxml-xmlsave.html#xmlSaveToBuffer">xmlSaveToBuffer</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFd">xmlSaveToFd</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFilename">xmlSaveToFilename</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -</dd><dt>server</dt><dd><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCheckResponse">xmlNanoFTPCheckResponse</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCloseConnection">xmlNanoFTPCloseConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCwd">xmlNanoFTPCwd</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPDele">xmlNanoFTPDele</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetResponse">xmlNanoFTPGetResponse</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetSocket">xmlNanoFTPGetSocket</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPQuit">xmlNanoFTPQuit</a><br /> -</dd><dt>set:difference</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -</dd><dt>set:distinct</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a><br /> -</dd><dt>set:has-same-node</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a><br /> -</dd><dt>set:intersection</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -</dd><dt>set:leading</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -</dd><dt>set:trailing</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -</dd><dt>sets</dt><dd><a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -</dd><dt>setting</dt><dd><a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>setups</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEncodingDecl">xmlParseEncodingDecl</a><br /> -</dd><dt>sgmlsource</dt><dd><a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -</dd><dt>shadowed</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -</dd><dt>shall</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>shared</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_MODULE_EXTENSION">LIBXML_MODULE_EXTENSION</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleFree">xmlModuleFree</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -</dd><dt>shares</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a><br /> -</dd><dt>shell</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-debugXML.html#xmlShellBase">xmlShellBase</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCat">xmlShellCat</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCmd">xmlShellCmd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDir">xmlShellDir</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -<a href="html/libxml-debugXML.html#xmlShellList">xmlShellList</a><br /> -<a href="html/libxml-debugXML.html#xmlShellLoad">xmlShellLoad</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellReadlineFunc">xmlShellReadlineFunc</a><br /> -<a href="html/libxml-debugXML.html#xmlShellSave">xmlShellSave</a><br /> -<a href="html/libxml-debugXML.html#xmlShellValidate">xmlShellValidate</a><br /> -<a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> -</dd><dt>shorten</dt><dd><a href="html/libxml-debugXML.html#xmlDebugDumpString">xmlDebugDumpString</a><br /> -</dd><dt>shorthand</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderConstPrefix">xmlTextReaderConstPrefix</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPrefix">xmlTextReaderPrefix</a><br /> -</dd><dt>show</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_VERSION_EXTRA">LIBXML_VERSION_EXTRA</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemDisplay">xmlMemDisplay</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemShow">xmlMemShow</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -</dd><dt>shown</dt><dd><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -</dd><dt>sibling</dt><dd><a href="html/libxml-tree.html#_xmlAttr">_xmlAttr</a><br /> -<a href="html/libxml-tree.html#_xmlAttribute">_xmlAttribute</a><br /> -<a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-tree.html#_xmlElement">_xmlElement</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueAppend">xmlSchemaValueAppend</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetNext">xmlSchemaValueGetNext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -</dd><dt>siblings</dt><dd><a href="html/libxml-tree.html#xmlAddSibling">xmlAddSibling</a><br /> -<a href="html/libxml-tree.html#xmlFreeNodeList">xmlFreeNodeList</a><br /> -<a href="html/libxml-tree.html#xmlFreePropList">xmlFreePropList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -</dd><dt>sign</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>signal</dt><dd><a href="html/libxml-xmlversion.html#ATTRIBUTE_UNUSED">ATTRIBUTE_UNUSED</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>signature</dt><dd><a href="html/libxml-debugXML.html#xmlShellCmd">xmlShellCmd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellReadlineFunc">xmlShellReadlineFunc</a><br /> -</dd><dt>signs</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -</dd><dt>similar</dt><dd><a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetGetLength">xmlXPathNodeSetGetLength</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -</dd><dt>simple</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -<a href="html/libxml-tree.html#xmlAttrSerializeTxtContent">xmlAttrSerializeTxtContent</a><br /> -<a href="html/libxml-threads.html#xmlFreeMutex">xmlFreeMutex</a><br /> -<a href="html/libxml-hash.html#xmlHashScanner">xmlHashScanner</a><br /> -<a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -<a href="html/libxml-threads.html#xmlMutexLock">xmlMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlMutexUnlock">xmlMutexUnlock</a><br /> -<a href="html/libxml-threads.html#xmlNewMutex">xmlNewMutex</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -</dd><dt>simpleType</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_DEFAULT">XML_SCHEMAS_TYPE_FINAL_DEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_LIST">XML_SCHEMAS_TYPE_FINAL_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ATOMIC">XML_SCHEMAS_TYPE_VARIETY_ATOMIC</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_LIST">XML_SCHEMAS_TYPE_VARIETY_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_UNION">XML_SCHEMAS_TYPE_VARIETY_UNION</a><br /> -</dd><dt>simply</dt><dd><a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -</dd><dt>since</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -</dd><dt>single</dt><dd><a href="html/libxml-parserInternals.html#IS_DIGIT_CH">IS_DIGIT_CH</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSet">xmlXPathNewNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewCollapsedRange">xmlXPtrNewCollapsedRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -</dd><dt>single-byte</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR_CH">IS_CHAR_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_EXTENDER_CH">IS_EXTENDER_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_PUBIDCHAR_CH">IS_PUBIDCHAR_CH</a><br /> -</dd><dt>site1</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>site2</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>sizes</dt><dd><a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -</dd><dt>skip</dt><dd><a href="html/libxml-parserInternals.html#xmlSkipBlankChars">xmlSkipBlankChars</a><br /> -</dd><dt>skipped</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlSkipBlankChars">xmlSkipBlankChars</a><br /> -</dd><dt>slot</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>slots</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>smaller</dt><dd><a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -</dd><dt>smallest</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a><br /> -</dd><dt>socket</dt><dd><a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetSocket">xmlNanoFTPGetSocket</a><br /> -</dd><dt>software</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_TEST_VERSION">LIBXML_TEST_VERSION</a><br /> -</dd><dt>solution</dt><dd><a href="html/libxml-xmlIO.html#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a><br /> -</dd><dt>some</dt><dd><a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -<a href="html/libxml-SAX.html#characters">characters</a><br /> -<a href="html/libxml-parser.html#charactersSAXFunc">charactersSAXFunc</a><br /> -<a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parser.html#xmlParserInputDeallocate">xmlParserInputDeallocate</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushCData">xmlRelaxNGValidatePushCData</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Characters">xmlSAX2Characters</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushCData">xmlValidatePushCData</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcess">xmlXIncludeProcess</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlags">xmlXIncludeProcessFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTree">xmlXIncludeProcessTree</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTreeFlags">xmlXIncludeProcessTreeFlags</a><br /> -</dd><dt>sometimes</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -</dd><dt>somewhat</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>sorted</dt><dd><a href="html/libxml-parser.html#xmlParserAddNodeInfo">xmlParserAddNodeInfo</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -</dd><dt>source</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadIO">htmlCtxtReadIO</a><br /> -<a href="html/libxml-HTMLtree.html#htmlGetMetaEncoding">htmlGetMetaEncoding</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadIO">htmlReadIO</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -<a href="html/libxml-xmlerror.html#xmlCopyError">xmlCopyError</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadIO">xmlCtxtReadIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlNewTextReader">xmlNewTextReader</a><br /> -<a href="html/libxml-parser.html#xmlReadIO">xmlReadIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForIO">xmlReaderForIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -</dd><dt>sourceDoc</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -</dd><dt>sourceforge</dt><dd><a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -</dd><dt>spaces</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocContentDumpFormatOutput">htmlDocContentDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocContentDumpOutput">htmlDocContentDumpOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemoryFormat">htmlDocDumpMemoryFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpOutput">htmlNodeDumpOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFileEnc">htmlSaveFileEnc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFileFormat">htmlSaveFileFormat</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCollapseString">xmlSchemaCollapseString</a><br /> -<a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> -<a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> -<a href="html/libxml-tree.html#xmlValidateName">xmlValidateName</a><br /> -<a href="html/libxml-tree.html#xmlValidateQName">xmlValidateQName</a><br /> -</dd><dt>span</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringCurrentChar">xmlStringCurrentChar</a><br /> -</dd><dt>spec</dt><dd><a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -</dd><dt>spec:</dt><dd><a href="html/libxml-parserInternals.html#IS_BASECHAR">IS_BASECHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_BLANK">IS_BLANK</a><br /> -<a href="html/libxml-parserInternals.html#IS_BYTE_CHAR">IS_BYTE_CHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_COMBINING">IS_COMBINING</a><br /> -<a href="html/libxml-parserInternals.html#IS_DIGIT">IS_DIGIT</a><br /> -<a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -<a href="html/libxml-parserInternals.html#IS_IDEOGRAPHIC">IS_IDEOGRAPHIC</a><br /> -<a href="html/libxml-parserInternals.html#IS_LETTER">IS_LETTER</a><br /> -<a href="html/libxml-parserInternals.html#IS_PUBIDCHAR">IS_PUBIDCHAR</a><br /> -</dd><dt>special</dt><dd><a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -<a href="html/libxml-tree.html#XML_XML_ID">XML_XML_ID</a><br /> -<a href="html/libxml-tree.html#XML_XML_NAMESPACE">XML_XML_NAMESPACE</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRawLen">xmlTextWriterWriteRawLen</a><br /> -</dd><dt>specialized</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -</dd><dt>specific</dt><dd><a href="html/libxml-catalog.html#XML_CATALOG_PI">XML_CATALOG_PI</a><br /> -<a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaIsBuiltInTypeFacet">xmlSchemaIsBuiltInTypeFacet</a><br /> -</dd><dt>specification</dt><dd><a href="html/libxml-tree.html#XML_XML_NAMESPACE">XML_XML_NAMESPACE</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -</dd><dt>specifications</dt><dd><a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -</dd><dt>specify</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderStandalone">xmlTextReaderStandalone</a><br /> -</dd><dt>specifying</dt><dd><a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -</dd><dt>speed</dt><dd><a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>speedup</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> -</dd><dt>split</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -</dd><dt>stacked</dt><dd><a href="html/libxml-xpath.html#_xmlXPathParserContext">_xmlXPathParserContext</a><br /> -<a href="html/libxml-parserInternals.html#xmlPushInput">xmlPushInput</a><br /> -</dd><dt>stage</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FIXUP_1">XML_SCHEMAS_TYPE_FIXUP_1</a><br /> -</dd><dt>stamps</dt><dd><a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>standalone</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-SAX.html#isStandalone">isStandalone</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IsStandalone">xmlSAX2IsStandalone</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderStandalone">xmlTextReaderStandalone</a><br /> -</dd><dt>standalone=</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -</dd><dt>standalone?</dt><dd><a href="html/libxml-parser.html#isStandaloneSAXFunc">isStandaloneSAXFunc</a><br /> -</dd><dt>standard</dt><dd><a href="html/libxml-DOCBparser.html#docbParseDocument">docbParseDocument</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDocument">htmlParseDocument</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parser.html#xmlParseDocument">xmlParseDocument</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>start</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-SAX.html#startDocument">startDocument</a><br /> -<a href="html/libxml-parser.html#startDocumentSAXFunc">startDocumentSAXFunc</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartDocument">xmlSAX2StartDocument</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushElement">xmlValidatePushElement</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRange">xmlXPtrNewRange</a><br /> -</dd><dt>start-tag</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -</dd><dt>started</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntity">xmlTextWriterWriteDTDExternalEntity</a><br /> -</dd><dt>starting</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-tree.html#xmlNewCharRef">xmlNewCharRef</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewCollapsedRange">xmlXPtrNewCollapsedRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRange">xmlXPtrNewRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodeObject">xmlXPtrNewRangeNodeObject</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodePoint">xmlXPtrNewRangeNodePoint</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodes">xmlXPtrNewRangeNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePointNode">xmlXPtrNewRangePointNode</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePoints">xmlXPtrNewRangePoints</a><br /> -</dd><dt>starts</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStartsWithFunction">xmlXPathStartsWithFunction</a><br /> -</dd><dt>starts-with</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStartsWithFunction">xmlXPathStartsWithFunction</a><br /> -</dd><dt>startup</dt><dd><a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-catalog.html#xmlInitializeCatalog">xmlInitializeCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -</dd><dt>stashed</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a><br /> -</dd><dt>stat</dt><dd><a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -</dd><dt>stateful</dt><dd><a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -</dd><dt>states</dt><dd><a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -</dd><dt>static</dt><dd><a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>status</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderIsValid">xmlTextReaderIsValid</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderStandalone">xmlTextReaderStandalone</a><br /> -</dd><dt>stderr</dt><dd><a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -</dd><dt>stdin</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -</dd><dt>stdout</dt><dd><a href="html/libxml-HTMLtree.html#htmlSaveFile">htmlSaveFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-tree.html#xmlSaveFile">xmlSaveFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -</dd><dt>step</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpStringDerive">xmlExpStringDerive</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>steps</dt><dd><a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -</dd><dt>still</dt><dd><a href="html/libxml-xmlmodule.html#xmlModuleFree">xmlModuleFree</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -</dd><dt>stop</dt><dd><a href="html/libxml-list.html#xmlListWalker">xmlListWalker</a><br /> -</dd><dt>stops</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>storage</dt><dd><a href="html/libxml-xmlstring.html#xmlUTF8Strsize">xmlUTF8Strsize</a><br /> -</dd><dt>store</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-parser.html#xmlGetFeature">xmlGetFeature</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWrite">xmlOutputBufferWrite</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -<a href="html/libxml-valid.html#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>stored</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>str</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -<a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -</dd><dt>strcasecmp</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcasecmp">xmlStrcasecmp</a><br /> -</dd><dt>strcat</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -</dd><dt>strchr</dt><dd><a href="html/libxml-xmlstring.html#xmlStrchr">xmlStrchr</a><br /> -</dd><dt>strcmp</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcmp">xmlStrcmp</a><br /> -</dd><dt>strdup</dt><dd><a href="html/libxml-xmlstring.html#xmlCharStrdup">xmlCharStrdup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemStrdupLoc">xmlMemStrdupLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryStrdup">xmlMemoryStrdup</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a><br /> -</dd><dt>streamable</dt><dd><a href="html/libxml-pattern.html#xmlPatternStreamable">xmlPatternStreamable</a><br /> -</dd><dt>streaming</dt><dd><a href="html/libxml-pattern.html#xmlPatternGetStreamCtxt">xmlPatternGetStreamCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</dd><dt>streams</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlSkipBlankChars">xmlSkipBlankChars</a><br /> -</dd><dt>strict</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -</dd><dt>string--that</dt><dd><a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -</dd><dt>string-length</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> -</dd><dt>string?</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> -</dd><dt>stringi</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a><br /> -</dd><dt>strings</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-dict.html#xmlDictCreateSub">xmlDictCreateSub</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -<a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -</dd><dt>stripping</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -</dd><dt>strncasecmp</dt><dd><a href="html/libxml-xmlstring.html#xmlStrncasecmp">xmlStrncasecmp</a><br /> -</dd><dt>strncat</dt><dd><a href="html/libxml-xmlstring.html#xmlStrncat">xmlStrncat</a><br /> -</dd><dt>strncmp</dt><dd><a href="html/libxml-xmlstring.html#xmlStrncmp">xmlStrncmp</a><br /> -</dd><dt>strndup</dt><dd><a href="html/libxml-xmlstring.html#xmlCharStrndup">xmlCharStrndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrndup">xmlStrndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strndup">xmlUTF8Strndup</a><br /> -</dd><dt>strstr</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcasestr">xmlStrcasestr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrstr">xmlStrstr</a><br /> -</dd><dt>struct</dt><dd><a href="html/libxml-threads.html#xmlFreeMutex">xmlFreeMutex</a><br /> -<a href="html/libxml-uri.html#xmlFreeURI">xmlFreeURI</a><br /> -<a href="html/libxml-threads.html#xmlNewMutex">xmlNewMutex</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfo">xmlParserFindNodeInfo</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInType">xmlSchemaGetBuiltInType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewNOTATIONValue">xmlSchemaNewNOTATIONValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewQNameValue">xmlSchemaNewQNameValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -</dd><dt>structured</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGSetValidStructuredErrors">xmlRelaxNGSetValidStructuredErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserStructuredErrors">xmlSchemaSetParserStructuredErrors</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -</dd><dt>structures</dt><dd><a href="html/libxml-tree.html#xmlFreeDoc">xmlFreeDoc</a><br /> -<a href="html/libxml-tree.html#xmlFreeNs">xmlFreeNs</a><br /> -<a href="html/libxml-tree.html#xmlFreeNsList">xmlFreeNsList</a><br /> -<a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegFreeExecCtxt">xmlRegFreeExecCtxt</a><br /> -</dd><dt>struture</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGParse">xmlRelaxNGParse</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaParse">xmlSchemaParse</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronParse">xmlSchematronParse</a><br /> -</dd><dt>stuff</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -</dd><dt>style</dt><dd><a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -</dd><dt>sub</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -</dd><dt>sub-elements</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>subelement</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlDefaultSubelement">htmlDefaultSubelement</a><br /> -<a href="html/libxml-valid.html#xmlNewDocElementContent">xmlNewDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlNewElementContent">xmlNewElementContent</a><br /> -</dd><dt>subelements</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>subexpression</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpSubsume">xmlExpSubsume</a><br /> -</dd><dt>subexpressions</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -</dd><dt>subject</dt><dd><a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -</dd><dt>sublanguage</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -</dd><dt>submits</dt><dd><a href="html/libxml-xmlIO.html#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a><br /> -</dd><dt>subsequent</dt><dd><a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -</dd><dt>subset?</dt><dd><a href="html/libxml-parser.html#hasExternalSubsetSAXFunc">hasExternalSubsetSAXFunc</a><br /> -</dd><dt>subsets</dt><dd><a href="html/libxml-entities.html#xmlGetParameterEntity">xmlGetParameterEntity</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>substituion</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION">XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION</a><br /> -</dd><dt>substitute</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>substituted</dt><dd><a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_BOTH">XML_SUBSTITUTE_BOTH</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_NONE">XML_SUBSTITUTE_NONE</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a><br /> -<a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -</dd><dt>substituting</dt><dd><a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -</dd><dt>substitutionGroup</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</a><br /> -</dd><dt>substitutions</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_EXTENSION">XML_SCHEMAS_ELEM_BLOCK_EXTENSION</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcess">xmlXIncludeProcess</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlags">xmlXIncludeProcessFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTree">xmlXIncludeProcessTree</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTreeFlags">xmlXIncludeProcessTreeFlags</a><br /> -</dd><dt>substitutions:</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION">XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION</a><br /> -</dd><dt>substring</dt><dd><a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrsub">xmlStrsub</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>substring-after</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a><br /> -</dd><dt>substring-before</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a><br /> -</dd><dt>subtraction</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -</dd><dt>subtree</dt><dd><a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -<a href="html/libxml-valid.html#xmlFreeDocElementContent">xmlFreeDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlFreeElementContent">xmlFreeElementContent</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -<a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderExpand">xmlTextReaderExpand</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNext">xmlTextReaderNext</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -<a href="html/libxml-valid.html#xmlValidateElement">xmlValidateElement</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTree">xmlXIncludeProcessTree</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTreeFlags">xmlXIncludeProcessTreeFlags</a><br /> -</dd><dt>succeed</dt><dd><a href="html/libxml-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a><br /> -</dd><dt>succeeded</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueAppend">xmlSchemaValueAppend</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>succeeds</dt><dd><a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -</dd><dt>successful</dt><dd><a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogRemove">xmlACatalogRemove</a><br /> -<a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferAddHead">xmlBufferAddHead</a><br /> -<a href="html/libxml-tree.html#xmlBufferCCat">xmlBufferCCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferCat">xmlBufferCat</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogConvert">xmlCatalogConvert</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogRemove">xmlCatalogRemove</a><br /> -<a href="html/libxml-catalog.html#xmlConvertSGMLCatalog">xmlConvertSGMLCatalog</a><br /> -<a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> -<a href="html/libxml-list.html#xmlListPushBack">xmlListPushBack</a><br /> -<a href="html/libxml-list.html#xmlListPushFront">xmlListPushFront</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetAttrEscape">xmlSaveSetAttrEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetEscape">xmlSaveSetEscape</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -<a href="html/libxml-tree.html#xmlUnsetNsProp">xmlUnsetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlUnsetProp">xmlUnsetProp</a><br /> -</dd><dt>successfully</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNext">xmlTextReaderNext</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRead">xmlTextReaderRead</a><br /> -</dd><dt>succession</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -</dd><dt>successive</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -</dd><dt>such</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoundFunction">xmlXPathRoundFunction</a><br /> -</dd><dt>suffix</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_MODULE_EXTENSION">LIBXML_MODULE_EXTENSION</a><br /> -</dd><dt>suggested</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>suitable</dt><dd><a href="html/libxml-parser.html#xmlNewIOInputStream">xmlNewIOInputStream</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -</dd><dt>sum</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSumFunction">xmlXPathSumFunction</a><br /> -</dd><dt>super</dt><dd><a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -</dd><dt>super-strict</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -</dd><dt>supplied</dt><dd><a href="html/libxml-valid.html#xmlGetRefs">xmlGetRefs</a><br /> -</dd><dt>supported</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-encoding.html#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -</dd><dt>supposed</dt><dd><a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -</dd><dt>sure</dt><dd><a href="html/libxml-xmlsave.html#xmlSaveClose">xmlSaveClose</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveFlush">xmlSaveFlush</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a><br /> -</dd><dt>surprising</dt><dd><a href="html/libxml-encoding.html#xmlRegisterCharEncodingHandler">xmlRegisterCharEncodingHandler</a><br /> -</dd><dt>surrogate</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -</dd><dt>switch</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlPushInput">xmlPushInput</a><br /> -</dd><dt>symbol</dt><dd><a href="html/libxml-xmlmodule.html#xmlModuleSymbol">xmlModuleSymbol</a><br /> -</dd><dt>synchronizing</dt><dd><a href="html/libxml-threads.html#xmlNewMutex">xmlNewMutex</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -</dd><dt>syntax</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -</dd><dt>systematically</dt><dd><a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk25.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk25.html deleted file mode 100644 index cf247417..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk25.html +++ /dev/null @@ -1,453 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index t-t for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index t-t for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter t:</h2><dl><dt>tag</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlTagLookup">htmlTagLookup</a><br /> -<a href="html/libxml-SAX.html#startElement">startElement</a><br /> -<a href="html/libxml-parser.html#startElementSAXFunc">startElementSAXFunc</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetName">xmlNodeSetName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEndTag">xmlParseEndTag</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElement">xmlSAX2StartElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterFullEndElement">xmlTextWriterFullEndElement</a><br /> -</dd><dt>tagged</dt><dd><a href="html/libxml-SAX.html#isStandalone">isStandalone</a><br /> -<a href="html/libxml-parser.html#isStandaloneSAXFunc">isStandaloneSAXFunc</a><br /> -<a href="html/libxml-tree.html#xmlNewNsProp">xmlNewNsProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsPropEatName">xmlNewNsPropEatName</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IsStandalone">xmlSAX2IsStandalone</a><br /> -</dd><dt>tags</dt><dd><a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLtree.html#htmlGetMetaEncoding">htmlGetMetaEncoding</a><br /> -<a href="html/libxml-HTMLparser.html#htmlHandleOmittedElem">htmlHandleOmittedElem</a><br /> -<a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSetMetaEncoding">htmlSetMetaEncoding</a><br /> -</dd><dt>take</dt><dd><a href="html/libxml-threads.html#xmlLockLibrary">xmlLockLibrary</a><br /> -</dd><dt>taken</dt><dd><a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -</dd><dt>takes</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -</dd><dt>tatkes</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -</dd><dt>tell</dt><dd><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-parser.html#XML_DETECT_IDS">XML_DETECT_IDS</a><br /> -<a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -<a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>tells</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -</dd><dt>temporary</dt><dd><a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -</dd><dt>terminal</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -</dd><dt>terminals</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -</dd><dt>terminated</dt><dd><a href="html/libxml-HTMLparser.html#htmlCtxtReadDoc">htmlCtxtReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadDoc">htmlReadDoc</a><br /> -<a href="html/libxml-SAX.html#startElement">startElement</a><br /> -<a href="html/libxml-parser.html#startElementSAXFunc">startElementSAXFunc</a><br /> -<a href="html/libxml-tree.html#xmlBufferCCat">xmlBufferCCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferCat">xmlBufferCat</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadDoc">xmlCtxtReadDoc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemory">xmlDocDumpMemory</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-tree.html#xmlGetNsList">xmlGetNsList</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlReadDoc">xmlReadDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForDoc">xmlReaderForDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewDoc">xmlReaderNewDoc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElement">xmlSAX2StartElement</a><br /> -<a href="html/libxml-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a><br /> -</dd><dt>termination</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -</dd><dt>terms</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>test</dt><dd><a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEqualValues">xmlXPathEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotEqualValues">xmlXPathNotEqualValues</a><br /> -</dd><dt>tested</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>testing</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -</dd><dt>text-</dt><dd><a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</dd><dt>text-node</dt><dd><a href="html/libxml-tree.html#xmlIsBlankNode">xmlIsBlankNode</a><br /> -</dd><dt>textDecl?</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> -</dd><dt>than</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsNamespaceDecl">xmlTextReaderIsNamespaceDecl</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFloorFunction">xmlXPathFloorFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>their</dt><dd><a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a><br /> -</dd><dt>them</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPRead">xmlNanoFTPRead</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRead">xmlNanoHTTPRead</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -</dd><dt>these</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -</dd><dt>they</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrQEqual">xmlStrQEqual</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -</dd><dt>third</dt><dd><a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup3">xmlHashLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup3">xmlHashQLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-hash.html#xmlHashScannerFull">xmlHashScannerFull</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>this?</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -</dd><dt>those</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>though</dt><dd><a href="html/libxml-tree.html#xmlDocDumpMemory">xmlDocDumpMemory</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -</dd><dt>thread</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_THREAD_ENABLED">LIBXML_THREAD_ENABLED</a><br /> -<a href="html/libxml-threads.html#xmlCleanupThreads">xmlCleanupThreads</a><br /> -<a href="html/libxml-threads.html#xmlGetGlobalState">xmlGetGlobalState</a><br /> -<a href="html/libxml-xmlerror.html#xmlGetLastError">xmlGetLastError</a><br /> -<a href="html/libxml-threads.html#xmlGetThreadId">xmlGetThreadId</a><br /> -<a href="html/libxml-threads.html#xmlInitThreads">xmlInitThreads</a><br /> -<a href="html/libxml-catalog.html#xmlInitializeCatalog">xmlInitializeCatalog</a><br /> -<a href="html/libxml-threads.html#xmlIsMainThread">xmlIsMainThread</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -</dd><dt>through</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -</dd><dt>thumblers</dt><dd><a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -</dd><dt>thus</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a><br /> -</dd><dt>time</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -</dd><dt>title</dt><dd><a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -</dd><dt>titles</dt><dd><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -</dd><dt>todo:</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -</dd><dt>token</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-threads.html#xmlFreeMutex">xmlFreeMutex</a><br /> -<a href="html/libxml-threads.html#xmlMutexLock">xmlMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlMutexUnlock">xmlMutexUnlock</a><br /> -<a href="html/libxml-threads.html#xmlNewMutex">xmlNewMutex</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -</dd><dt>token_r</dt><dd><a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -<a href="html/libxml-threads.html#xmlRMutexLock">xmlRMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlRMutexUnlock">xmlRMutexUnlock</a><br /> -</dd><dt>tokens</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumerationType">xmlParseEnumerationType</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -</dd><dt>too</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDump">htmlNodeDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFile">htmlNodeDumpFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpOutput">htmlNodeDumpOutput</a><br /> -<a href="html/libxml-tree.html#xmlCopyDoc">xmlCopyDoc</a><br /> -<a href="html/libxml-tree.html#xmlElemDump">xmlElemDump</a><br /> -<a href="html/libxml-tree.html#xmlFreeNode">xmlFreeNode</a><br /> -<a href="html/libxml-tree.html#xmlFreeNodeList">xmlFreeNodeList</a><br /> -<a href="html/libxml-tree.html#xmlFreeProp">xmlFreeProp</a><br /> -<a href="html/libxml-tree.html#xmlFreePropList">xmlFreePropList</a><br /> -<a href="html/libxml-entities.html#xmlGetDocEntity">xmlGetDocEntity</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-tree.html#xmlRemoveProp">xmlRemoveProp</a><br /> -</dd><dt>top</dt><dd><a href="html/libxml-xpathInternals.html#CAST_TO_BOOLEAN">CAST_TO_BOOLEAN</a><br /> -<a href="html/libxml-xpathInternals.html#CAST_TO_NUMBER">CAST_TO_NUMBER</a><br /> -<a href="html/libxml-xpathInternals.html#CAST_TO_STRING">CAST_TO_STRING</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_TYPE">CHECK_TYPE</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_TYPE0">CHECK_TYPE0</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_TOPLEVEL">XML_SCHEMAS_ELEM_TOPLEVEL</a><br /> -<a href="html/libxml-parserInternals.html#inputPop">inputPop</a><br /> -<a href="html/libxml-parserInternals.html#inputPush">inputPush</a><br /> -<a href="html/libxml-parserInternals.html#namePop">namePop</a><br /> -<a href="html/libxml-parserInternals.html#namePush">namePush</a><br /> -<a href="html/libxml-parserInternals.html#nodePop">nodePop</a><br /> -<a href="html/libxml-parserInternals.html#nodePush">nodePush</a><br /> -<a href="html/libxml-xpathInternals.html#valuePop">valuePop</a><br /> -<a href="html/libxml-xpathInternals.html#valuePush">valuePush</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-xmlIO.html#xmlPopInputCallbacks">xmlPopInputCallbacks</a><br /> -<a href="html/libxml-parserInternals.html#xmlPushInput">xmlPushInput</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-tree.html#xmlSetTreeDoc">xmlSetTreeDoc</a><br /> -</dd><dt>total</dt><dd><a href="html/libxml-xmlIO.html#_xmlOutputBuffer">_xmlOutputBuffer</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -</dd><dt>touch</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>track</dt><dd><a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -</dd><dt>tracking</dt><dd><a href="html/libxml-xmlerror.html#xmlParserPrintFileContext">xmlParserPrintFileContext</a><br /> -</dd><dt>trailing</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -</dd><dt>trancoding</dt><dd><a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -</dd><dt>transaction</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPSave">xmlNanoHTTPSave</a><br /> -</dd><dt>transcoding</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWrite">xmlOutputBufferWrite</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -</dd><dt>transfered</dt><dd><a href="html/libxml-parserInternals.html#xmlParsePI">xmlParsePI</a><br /> -</dd><dt>transformation</dt><dd><a href="html/libxml-encoding.html#xmlCharEncCloseFunc">xmlCharEncCloseFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -</dd><dt>transformed</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGDumpTree">xmlRelaxNGDumpTree</a><br /> -</dd><dt>transitions</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -</dd><dt>translate</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>translation</dt><dd><a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -</dd><dt>transmit</dt><dd><a href="html/libxml-parser.html#errorSAXFunc">errorSAXFunc</a><br /> -<a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -<a href="html/libxml-parser.html#warningSAXFunc">warningSAXFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserError">xmlParserError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserWarning">xmlParserWarning</a><br /> -</dd><dt>transport</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPClose">xmlNanoFTPClose</a><br /> -</dd><dt>traversal</dt><dd><a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAttribute">xmlXPathNextAttribute</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextChild">xmlXPathNextChild</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendant">xmlXPathNextDescendant</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextNamespace">xmlXPathNextNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextParent">xmlXPathNextParent</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextSelf">xmlXPathNextSelf</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -</dd><dt>traverse</dt><dd><a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -</dd><dt>treaming</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>treated</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -</dd><dt>tries</dt><dd><a href="html/libxml-parserInternals.html#INPUT_CHUNK">INPUT_CHUNK</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPRead">xmlNanoFTPRead</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRead">xmlNanoHTTPRead</a><br /> -<a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -</dd><dt>trio</dt><dd><a href="html/libxml-xmlversion.html#WITHOUT_TRIO">WITHOUT_TRIO</a><br /> -<a href="html/libxml-xmlversion.html#WITH_TRIO">WITH_TRIO</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -</dd><dt>troubles</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -</dd><dt>try</dt><dd><a href="html/libxml-xpathInternals.html#CAST_TO_BOOLEAN">CAST_TO_BOOLEAN</a><br /> -<a href="html/libxml-xpathInternals.html#CAST_TO_NUMBER">CAST_TO_NUMBER</a><br /> -<a href="html/libxml-xpathInternals.html#CAST_TO_STRING">CAST_TO_STRING</a><br /> -<a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileOpen">xmlFileOpen</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -<a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -</dd><dt>ttribute</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderReadAttributeValue">xmlTextReaderReadAttributeValue</a><br /> -</dd><dt>tune</dt><dd><a href="html/libxml-tree.html#xmlBufferSetAllocationScheme">xmlBufferSetAllocationScheme</a><br /> -</dd><dt>tuple</dt><dd><a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup2">xmlHashLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup3">xmlHashLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup2">xmlHashQLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup3">xmlHashQLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -</dd><dt>tuples</dt><dd><a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -</dd><dt>turn</dt><dd><a href="html/libxml-debugXML.html#xmlBoolToText">xmlBoolToText</a><br /> -</dd><dt>turned</dt><dd><a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -<a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> -</dd><dt>two</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -<a href="html/libxml-tree.html#xmlTextMerge">xmlTextMerge</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Charcmp">xmlUTF8Charcmp</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCmpNodes">xmlXPathCmpNodes</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoundFunction">xmlXPathRoundFunction</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -</dd><dt>two-character</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -</dd><dt>type:</dt><dd><a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>typefixed</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_INTERNAL_RESOLVED">XML_SCHEMAS_TYPE_INTERNAL_RESOLVED</a><br /> -</dd><dt>types</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_COLLAPSE">XML_SCHEMAS_FACET_COLLAPSE</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</dd><dt>typo</dt><dd><a href="html/libxml-parserInternals.html#xmlParseTextDecl">xmlParseTextDecl</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk26.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk26.html deleted file mode 100644 index ed2a00dd..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk26.html +++ /dev/null @@ -1,311 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index u-v for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index u-v for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter u:</h2><dl><dt>ugly</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -</dd><dt>unary</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a><br /> -</dd><dt>unclean</dt><dd><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -</dd><dt>uncompressed</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-tree.html#xmlGetCompressMode">xmlGetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlGetDocCompressMode">xmlGetDocCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetCompressMode">xmlSetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetDocCompressMode">xmlSetDocCompressMode</a><br /> -</dd><dt>under</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-tree.html#xmlSetTreeDoc">xmlSetTreeDoc</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -<a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> -<a href="html/libxml-valid.html#xmlValidateElement">xmlValidateElement</a><br /> -</dd><dt>underlying</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderClose">xmlTextReaderClose</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -</dd><dt>understand</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -</dd><dt>unescape</dt><dd><a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -</dd><dt>unescaped</dt><dd><a href="html/libxml-xmlIO.html#xmlFileOpen">xmlFileOpen</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -</dd><dt>unescaping</dt><dd><a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -</dd><dt>unicode</dt><dd><a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -<a href="html/libxml-parserInternals.html#xmlIsLetter">xmlIsLetter</a><br /> -</dd><dt>unimplemented</dt><dd><a href="html/libxml-HTMLparser.html#htmlCtxtUseOptions">htmlCtxtUseOptions</a><br /> -<a href="html/libxml-parser.html#xmlCtxtUseOptions">xmlCtxtUseOptions</a><br /> -</dd><dt>union</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_UNION">XML_SCHEMAS_FINAL_DEFAULT_UNION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ATOMIC">XML_SCHEMAS_TYPE_VARIETY_ATOMIC</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_UNION">XML_SCHEMAS_TYPE_VARIETY_UNION</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -</dd><dt>unique</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -</dd><dt>uniquely</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>uniqueness</dt><dd><a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -</dd><dt>units</dt><dd><a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -</dd><dt>unknown</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_SKIP">XML_SCHEMAS_ANYATTR_SKIP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_SKIP">XML_SCHEMAS_ANY_SKIP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_UNKNOWN">XML_SCHEMAS_FACET_UNKNOWN</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtUseOptions">htmlCtxtUseOptions</a><br /> -<a href="html/libxml-parser.html#xmlCtxtUseOptions">xmlCtxtUseOptions</a><br /> -<a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBlock">xmlUCSIsBlock</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCat">xmlUCSIsCat</a><br /> -</dd><dt>unless</dt><dd><a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextNamespace">xmlXPathNextNamespace</a><br /> -</dd><dt>unliked</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -</dd><dt>unlink</dt><dd><a href="html/libxml-tree.html#xmlFreeNode">xmlFreeNode</a><br /> -</dd><dt>unlinked</dt><dd><a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddSibling">xmlAddSibling</a><br /> -<a href="html/libxml-tree.html#xmlReplaceNode">xmlReplaceNode</a><br /> -</dd><dt>unload</dt><dd><a href="html/libxml-xmlmodule.html#xmlModuleClose">xmlModuleClose</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleFree">xmlModuleFree</a><br /> -</dd><dt>unloaded</dt><dd><a href="html/libxml-xmlmodule.html#xmlModuleClose">xmlModuleClose</a><br /> -</dd><dt>unlock</dt><dd><a href="html/libxml-threads.html#xmlMutexUnlock">xmlMutexUnlock</a><br /> -<a href="html/libxml-threads.html#xmlRMutexUnlock">xmlRMutexUnlock</a><br /> -</dd><dt>unparsed</dt><dd><a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-SAX.html#unparsedEntityDecl">unparsedEntityDecl</a><br /> -<a href="html/libxml-parser.html#unparsedEntityDeclSAXFunc">unparsedEntityDeclSAXFunc</a><br /> -<a href="html/libxml-parser.html#xmlLoadExternalEntity">xmlLoadExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2UnparsedEntityDecl">xmlSAX2UnparsedEntityDecl</a><br /> -</dd><dt>unpredictable</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -</dd><dt>unpredictiable</dt><dd><a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -</dd><dt>unregisters</dt><dd><a href="html/libxml-encoding.html#xmlCleanupCharEncodingHandlers">xmlCleanupCharEncodingHandlers</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFunc">xmlXPathRegisterFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncNS">xmlXPathRegisterFuncNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterNs">xmlXPathRegisterNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariable">xmlXPathRegisterVariable</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableNS">xmlXPathRegisterVariableNS</a><br /> -</dd><dt>unsafe</dt><dd><a href="html/libxml-valid.html#xmlSprintfElementContent">xmlSprintfElementContent</a><br /> -</dd><dt>unsigned</dt><dd><a href="">c</a><br /> -<a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -</dd><dt>unsupported</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -</dd><dt>until</dt><dd><a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderExpand">xmlTextReaderExpand</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -</dd><dt>unused</dt><dd><a href="html/libxml-xmlversion.html#ATTRIBUTE_UNUSED">ATTRIBUTE_UNUSED</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-parser.html#_xmlSAXHandler">_xmlSAXHandler</a><br /> -<a href="html/libxml-parser.html#_xmlSAXHandlerV1">_xmlSAXHandlerV1</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-debugXML.html#xmlShellBase">xmlShellBase</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCat">xmlShellCat</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDir">xmlShellDir</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -<a href="html/libxml-debugXML.html#xmlShellList">xmlShellList</a><br /> -<a href="html/libxml-debugXML.html#xmlShellLoad">xmlShellLoad</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellSave">xmlShellSave</a><br /> -<a href="html/libxml-debugXML.html#xmlShellValidate">xmlShellValidate</a><br /> -<a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> -</dd><dt>update</dt><dd><a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-tree.html#xmlSetListDoc">xmlSetListDoc</a><br /> -<a href="html/libxml-tree.html#xmlSetTreeDoc">xmlSetTreeDoc</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -</dd><dt>updated</dt><dd><a href="html/libxml-catalog.html#xmlCatalogAddLocal">xmlCatalogAddLocal</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -</dd><dt>upon</dt><dd><a href="html/libxml-SAX.html#checkNamespace">checkNamespace</a><br /> -<a href="html/libxml-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a><br /> -</dd><dt>upper</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -</dd><dt>uri</dt><dd><a href="html/libxml-xmlIO.html#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a><br /> -</dd><dt>usage</dt><dd><a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -</dd><dt>used:</dt><dd><a href="html/libxml-parser.html#XML_DEFAULT_VERSION">XML_DEFAULT_VERSION</a><br /> -</dd><dt>used?</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaAttribute">_xmlSchemaAttribute</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -</dd><dt>useful</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -</dd><dt>useless</dt><dd><a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -</dd><dt>userData</dt><dd><a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>users</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -</dd><dt>uses</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</dd><dt>usual</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -</dd><dt>usually</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_MODULE_EXTENSION">LIBXML_MODULE_EXTENSION</a><br /> -<a href="">c</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-encoding.html#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserProp">xmlTextReaderGetParserProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>utf8</dt><dd><a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -</dd></dl><h2>Letter v:</h2><dl><dt>val1</dt><dd><a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -</dd><dt>validated</dt><dd><a href="html/libxml-chvalid.html#xmlCharInRange">xmlCharInRange</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -</dd><dt>validates</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocument">xmlValidateDocument</a><br /> -<a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> -<a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> -<a href="html/libxml-tree.html#xmlValidateName">xmlValidateName</a><br /> -<a href="html/libxml-tree.html#xmlValidateQName">xmlValidateQName</a><br /> -</dd><dt>validating</dt><dd><a href="html/libxml-tree.html#_xmlAttr">_xmlAttr</a><br /> -<a href="html/libxml-tree.html#_xmlElement">_xmlElement</a><br /> -<a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -</dd><dt>validity</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsValid">xmlTextReaderIsValid</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>value:</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -</dd><dt>values:</dt><dd><a href="html/libxml-tree.html#xmlSetCompressMode">xmlSetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetDocCompressMode">xmlSetDocCompressMode</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -</dd><dt>varags</dt><dd><a href="html/libxml-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a><br /> -</dd><dt>vararg</dt><dd><a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>variables</dt><dd><a href="html/libxml-xpath.html#XML_XPATH_NOVAR">XML_XPATH_NOVAR</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredNsCleanup">xmlXPathRegisteredNsCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredVariablesCleanup">xmlXPathRegisteredVariablesCleanup</a><br /> -</dd><dt>variant</dt><dd><a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -</dd><dt>variety</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ATOMIC">XML_SCHEMAS_TYPE_VARIETY_ATOMIC</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_LIST">XML_SCHEMAS_TYPE_VARIETY_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_UNION">XML_SCHEMAS_TYPE_VARIETY_UNION</a><br /> -</dd><dt>various</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -</dd><dt>very</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -</dd><dt>via</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -</dd><dt>view</dt><dd><a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -</dd><dt>violated</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -</dd><dt>visible</dt><dd><a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>void</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk27.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk27.html deleted file mode 100644 index 1d0c9ae1..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk27.html +++ /dev/null @@ -1,326 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index w-w for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index w-w for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter w:</h2><dl><dt>walker</dt><dd><a href="html/libxml-list.html#xmlListReverseWalk">xmlListReverseWalk</a><br /> -<a href="html/libxml-list.html#xmlListWalk">xmlListWalk</a><br /> -<a href="html/libxml-list.html#xmlListWalker">xmlListWalker</a><br /> -</dd><dt>walking</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathParserContext">_xmlXPathParserContext</a><br /> -<a href="html/libxml-list.html#xmlListWalker">xmlListWalker</a><br /> -</dd><dt>want</dt><dd><a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -</dd><dt>warn</dt><dd><a href="html/libxml-xmlversion.html#xmlCheckVersion">xmlCheckVersion</a><br /> -</dd><dt>warning</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -<a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> -<a href="html/libxml-parser.html#warningSAXFunc">warningSAXFunc</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserWarning">xmlParserWarning</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>warnings</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlPedanticParserDefault">xmlPedanticParserDefault</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a><br /> -</dd><dt>way</dt><dd><a href="html/libxml-HTMLtree.html#HTML_COMMENT_NODE">HTML_COMMENT_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_ENTITY_REF_NODE">HTML_ENTITY_REF_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_PI_NODE">HTML_PI_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_PRESERVE_NODE">HTML_PRESERVE_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_TEXT_NODE">HTML_TEXT_NODE</a><br /> -<a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-debugXML.html#xmlBoolToText">xmlBoolToText</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -</dd><dt>ways:</dt><dd><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>well</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-tree.html#xmlCopyDoc">xmlCopyDoc</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -</dd><dt>well-balanced</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -</dd><dt>well-formed</dt><dd><a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parser.html#xmlParseExtParsedEnt">xmlParseExtParsedEnt</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>well-formedness</dt><dd><a href="html/libxml-xmlerror.html#xmlCtxtResetLastError">xmlCtxtResetLastError</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-xmlerror.html#xmlResetLastError">xmlResetLastError</a><br /> -</dd><dt>wellformed</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-parser.html#xmlParseFile">xmlParseFile</a><br /> -</dd><dt>were</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemShow">xmlMemShow</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcess">xmlXIncludeProcess</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlags">xmlXIncludeProcessFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTree">xmlXIncludeProcessTree</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTreeFlags">xmlXIncludeProcessTreeFlags</a><br /> -</dd><dt>wether</dt><dd><a href="html/libxml-xpath.html#_xmlNodeSet">_xmlNodeSet</a><br /> -</dd><dt>what</dt><dd><a href="html/libxml-catalog.html#xmlCatalogGetDefaults">xmlCatalogGetDefaults</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaults">xmlCatalogSetDefaults</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRawLen">xmlTextWriterWriteRawLen</a><br /> -</dd><dt>where</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-tree.html#xmlCopyProp">xmlCopyProp</a><br /> -<a href="html/libxml-tree.html#xmlCopyPropList">xmlCopyPropList</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileRead">xmlFileRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPRead">xmlIOFTPRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPRead">xmlIOHTTPRead</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPSave">xmlNanoHTTPSave</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -</dd><dt>while</dt><dd><a href="html/libxml-encoding.html#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumerationType">xmlParseEnumerationType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNext">xmlTextReaderNext</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>white</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCollapseString">xmlSchemaCollapseString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -</dd><dt>whitespace</dt><dd><a href="html/libxml-tree.html#xmlIsBlankNode">xmlIsBlankNode</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCompareValuesWhtsp">xmlSchemaCompareValuesWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -</dd><dt>whitespace-facet</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE">XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE">XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_REPLACE">XML_SCHEMAS_TYPE_WHITESPACE_REPLACE</a><br /> -</dd><dt>whitespace-separated</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -</dd><dt>whitespaces</dt><dd><a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> -</dd><dt>whole</dt><dd><a href="html/libxml-valid.html#xmlFreeDocElementContent">xmlFreeDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlFreeElementContent">xmlFreeElementContent</a><br /> -</dd><dt>whose</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> -</dd><dt>wierd</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>wildcard</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_WILDCARD_COMPLETE">XML_SCHEMAS_WILDCARD_COMPLETE</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a><br /> -</dd><dt>wildcards</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_PROHIBITED">XML_SCHEMAS_ATTR_USE_PROHIBITED</a><br /> -</dd><dt>with_ns</dt><dd><a href="html/libxml-xpath.html#_xmlNodeSet">_xmlNodeSet</a><br /> -</dd><dt>within</dt><dd><a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-tree.html#xmlNewDocComment">xmlNewDocComment</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewDocRawNode">xmlNewDocRawNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocText">xmlNewDocText</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfo">xmlParserFindNodeInfo</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserPrintFileContext">xmlParserPrintFileContext</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCopyValue">xmlSchemaCopyValue</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlLang">xmlTextReaderConstXmlLang</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderXmlLang">xmlTextReaderXmlLang</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBase64">xmlTextWriterWriteBase64</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBinHex">xmlTextWriterWriteBinHex</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -</dd><dt>without</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-SAX.html#entityDecl">entityDecl</a><br /> -<a href="html/libxml-parser.html#entityDeclSAXFunc">entityDeclSAXFunc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDocNoDtD">htmlNewDocNoDtD</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EntityDecl">xmlSAX2EntityDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -</dd><dt>won</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -</dd><dt>word</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>words</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> -</dd><dt>work</dt><dd><a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-pattern.html#xmlPatternStreamable">xmlPatternStreamable</a><br /> -<a href="html/libxml-tree.html#xmlRemoveProp">xmlRemoveProp</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -</dd><dt>worked</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPCwd">xmlNanoFTPCwd</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPDele">xmlNanoFTPDele</a><br /> -</dd><dt>works</dt><dd><a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -</dd><dt>worry</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a><br /> -</dd><dt>worthwhile</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>would</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>wrapper</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>wraps</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -</dd><dt>write</dt><dd><a href="html/libxml-xmlIO.html#xmlFileRead">xmlFileRead</a><br /> -<a href="html/libxml-encoding.html#xmlFindCharEncodingHandler">xmlFindCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingHandler">xmlGetCharEncodingHandler</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPRead">xmlIOFTPRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPRead">xmlIOHTTPRead</a><br /> -<a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -<a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> -</dd><dt>writer</dt><dd><a href="html/libxml-xmlwriter.html#xmlFreeTextWriter">xmlFreeTextWriter</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -</dd><dt>writes</dt><dd><a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWrite">xmlOutputBufferWrite</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -</dd><dt>writing</dt><dd><a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -</dd><dt>wrt</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>www</dt><dd><a href="html/libxml-xinclude.html#XINCLUDE_NS">XINCLUDE_NS</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a><br /> -<a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk28.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk28.html deleted file mode 100644 index 5ab3207c..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk28.html +++ /dev/null @@ -1,549 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index x-x for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index x-x for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter x:</h2><dl><dt>x00B7</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x02D0</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x02D1</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x0387</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x0640</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x0E46</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x0EC6</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x10000-</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -</dd><dt>x10FFFF</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -</dd><dt>x20</dt><dd><a href="html/libxml-parserInternals.html#IS_BLANK">IS_BLANK</a><br /> -<a href="html/libxml-parserInternals.html#IS_BYTE_CHAR">IS_BYTE_CHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_PUBIDCHAR">IS_PUBIDCHAR</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseName">xmlParseName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNmtoken">xmlParseNmtoken</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -</dd><dt>x20-</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -</dd><dt>x3005</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x3007</dt><dd><a href="html/libxml-parserInternals.html#IS_IDEOGRAPHIC">IS_IDEOGRAPHIC</a><br /> -</dd><dt>x3021-</dt><dd><a href="html/libxml-parserInternals.html#IS_IDEOGRAPHIC">IS_IDEOGRAPHIC</a><br /> -</dd><dt>x3029</dt><dd><a href="html/libxml-parserInternals.html#IS_IDEOGRAPHIC">IS_IDEOGRAPHIC</a><br /> -</dd><dt>x3031-</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x3035</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x309D-</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x309E</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x30FC-</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x30FE</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -</dd><dt>x4E00-</dt><dd><a href="html/libxml-parserInternals.html#IS_IDEOGRAPHIC">IS_IDEOGRAPHIC</a><br /> -</dd><dt>x9FA5</dt><dd><a href="html/libxml-parserInternals.html#IS_IDEOGRAPHIC">IS_IDEOGRAPHIC</a><br /> -</dd><dt>xD7FF</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -</dd><dt>xE000-</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -</dd><dt>xFFFD</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -</dd><dt>xlink</dt><dd><a href="html/libxml-xlink.html#xlinkGetDefaultDetect">xlinkGetDefaultDetect</a><br /> -<a href="html/libxml-xlink.html#xlinkGetDefaultHandler">xlinkGetDefaultHandler</a><br /> -<a href="html/libxml-xlink.html#xlinkSetDefaultDetect">xlinkSetDefaultDetect</a><br /> -<a href="html/libxml-xlink.html#xlinkSetDefaultHandler">xlinkSetDefaultHandler</a><br /> -</dd><dt>xlinkHandlerPtr</dt><dd><a href="html/libxml-xlink.html#xlinkGetDefaultHandler">xlinkGetDefaultHandler</a><br /> -</dd><dt>xlinkType</dt><dd><a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -</dd><dt>xml-c14n</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>xml-exc-c14n</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</dd><dt>xml-name</dt><dd><a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -</dd><dt>xml:</dt><dd><a href="html/libxml-tree.html#XML_XML_NAMESPACE">XML_XML_NAMESPACE</a><br /> -</dd><dt>xml:base</dt><dd><a href="html/libxml-tree.html#xmlNodeSetBase">xmlNodeSetBase</a><br /> -</dd><dt>xml:id</dt><dd><a href="html/libxml-tree.html#XML_XML_ID">XML_XML_ID</a><br /> -</dd><dt>xml:lang</dt><dd><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetLang">xmlNodeSetLang</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlLang">xmlTextReaderConstXmlLang</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderXmlLang">xmlTextReaderXmlLang</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -</dd><dt>xml:space</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetSpacePreserve">xmlNodeSetSpacePreserve</a><br /> -</dd><dt>xmlAttr</dt><dd><a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -</dd><dt>xmlAttrPtr</dt><dd><a href="html/libxml-tree.html#xmlCopyProp">xmlCopyProp</a><br /> -<a href="html/libxml-tree.html#xmlCopyPropList">xmlCopyPropList</a><br /> -<a href="html/libxml-valid.html#xmlGetID">xmlGetID</a><br /> -</dd><dt>xmlAttributePtr</dt><dd><a href="html/libxml-valid.html#xmlGetDtdAttrDesc">xmlGetDtdAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a><br /> -</dd><dt>xmlAttributeTablePtr</dt><dd><a href="html/libxml-valid.html#xmlCopyAttributeTable">xmlCopyAttributeTable</a><br /> -</dd><dt>xmlBuffer</dt><dd><a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a><br /> -</dd><dt>xmlBufferPtr</dt><dd><a href="html/libxml-xmlwriter.html#xmlNewTextWriterMemory">xmlNewTextWriterMemory</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a><br /> -</dd><dt>xmlBuildURI</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -</dd><dt>xmlBytesConsumed</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -</dd><dt>xmlCatalogAllow</dt><dd><a href="html/libxml-catalog.html#xmlCatalogGetDefaults">xmlCatalogGetDefaults</a><br /> -</dd><dt>xmlCatalogPtr</dt><dd><a href="html/libxml-catalog.html#xmlNewCatalog">xmlNewCatalog</a><br /> -</dd><dt>xmlCatalogResolvePublic</dt><dd><a href="html/libxml-catalog.html#xmlCatalogGetPublic">xmlCatalogGetPublic</a><br /> -</dd><dt>xmlCatalogResolveSystem</dt><dd><a href="html/libxml-catalog.html#xmlCatalogGetSystem">xmlCatalogGetSystem</a><br /> -</dd><dt>xmlCharEncoding</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingHandler">xmlGetCharEncodingHandler</a><br /> -</dd><dt>xmlCharEncodingHandler</dt><dd><a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -</dd><dt>xmlCharEncodingHandlerPtr</dt><dd><a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlRegisterCharEncodingHandler">xmlRegisterCharEncodingHandler</a><br /> -</dd><dt>xmlCharEncodingInputFunc</dt><dd><a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -</dd><dt>xmlCharEncodingOutputFunc</dt><dd><a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -</dd><dt>xmlChars</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteCHAR">xmlBufferWriteCHAR</a><br /> -<a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -<a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -</dd><dt>xmlCleanupParser</dt><dd><a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -</dd><dt>xmlCleanupThreads</dt><dd><a href="html/libxml-threads.html#xmlCleanupThreads">xmlCleanupThreads</a><br /> -</dd><dt>xmlCopyDocElementContent</dt><dd><a href="html/libxml-valid.html#xmlCopyElementContent">xmlCopyElementContent</a><br /> -</dd><dt>xmlCreateIntSubset</dt><dd><a href="html/libxml-tree.html#xmlNewDtd">xmlNewDtd</a><br /> -</dd><dt>xmlDOMWrapCtxtPtr</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapNewCtxt">xmlDOMWrapNewCtxt</a><br /> -</dd><dt>xmlDefaultSAXLocator</dt><dd><a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -</dd><dt>xmlDoc</dt><dd><a href="html/libxml-tree.html#_xmlNs">_xmlNs</a><br /> -</dd><dt>xmlDocCopyNodeList</dt><dd><a href="html/libxml-tree.html#xmlCopyNodeList">xmlCopyNodeList</a><br /> -</dd><dt>xmlDocNewPI</dt><dd><a href="html/libxml-tree.html#xmlNewPI">xmlNewPI</a><br /> -</dd><dt>xmlDocPtr</dt><dd><a href="html/libxml-tree.html#xmlCopyDoc">xmlCopyDoc</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -</dd><dt>xmlDocumentGetBase</dt><dd><a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -</dd><dt>xmlDtdPtr</dt><dd><a href="html/libxml-tree.html#xmlCopyDtd">xmlCopyDtd</a><br /> -<a href="html/libxml-parser.html#xmlIOParseDTD">xmlIOParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlParseDTD">xmlParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDTD">xmlSAXParseDTD</a><br /> -</dd><dt>xmlElementContentPtr</dt><dd><a href="html/libxml-valid.html#xmlCopyDocElementContent">xmlCopyDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlCopyElementContent">xmlCopyElementContent</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -</dd><dt>xmlElementPtr</dt><dd><a href="html/libxml-valid.html#xmlGetDtdElementDesc">xmlGetDtdElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQElementDesc">xmlGetDtdQElementDesc</a><br /> -</dd><dt>xmlElementTablePtr</dt><dd><a href="html/libxml-valid.html#xmlCopyElementTable">xmlCopyElementTable</a><br /> -</dd><dt>xmlEncodeEntities</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -</dd><dt>xmlEncodeEntitiesReentrant</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -</dd><dt>xmlEncodeSpecialChars</dt><dd><a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -</dd><dt>xmlEntitiesTablePtr</dt><dd><a href="html/libxml-entities.html#xmlCopyEntitiesTable">xmlCopyEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a><br /> -</dd><dt>xmlEntityPtr</dt><dd><a href="html/libxml-SAX.html#getEntity">getEntity</a><br /> -<a href="html/libxml-parser.html#getEntitySAXFunc">getEntitySAXFunc</a><br /> -<a href="html/libxml-SAX.html#getParameterEntity">getParameterEntity</a><br /> -<a href="html/libxml-parser.html#getParameterEntitySAXFunc">getParameterEntitySAXFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewEntityInputStream">xmlNewEntityInputStream</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetEntity">xmlSAX2GetEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetParameterEntity">xmlSAX2GetParameterEntity</a><br /> -</dd><dt>xmlEnumerationPtr</dt><dd><a href="html/libxml-valid.html#xmlCopyEnumeration">xmlCopyEnumeration</a><br /> -<a href="html/libxml-valid.html#xmlCreateEnumeration">xmlCreateEnumeration</a><br /> -</dd><dt>xmlExpFree</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -</dd><dt>xmlExpRef</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -</dd><dt>xmlExternalEntityLoader</dt><dd><a href="html/libxml-parser.html#xmlGetExternalEntityLoader">xmlGetExternalEntityLoader</a><br /> -</dd><dt>xmlFileOpen_real</dt><dd><a href="html/libxml-xmlIO.html#xmlFileOpen">xmlFileOpen</a><br /> -</dd><dt>xmlFree</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemory">xmlDocDumpMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderValue">xmlTextReaderValue</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToString">xmlXPathCastToString</a><br /> -</dd><dt>xmlFreeDoc</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -</dd><dt>xmlFreeDocElementContent</dt><dd><a href="html/libxml-valid.html#xmlFreeElementContent">xmlFreeElementContent</a><br /> -</dd><dt>xmlFreeMutex</dt><dd><a href="html/libxml-threads.html#xmlFreeMutex">xmlFreeMutex</a><br /> -</dd><dt>xmlFreeStreamCtxt</dt><dd><a href="html/libxml-pattern.html#xmlPatternGetStreamCtxt">xmlPatternGetStreamCtxt</a><br /> -</dd><dt>xmlGetGlobalState</dt><dd><a href="html/libxml-threads.html#xmlGetGlobalState">xmlGetGlobalState</a><br /> -</dd><dt>xmlGetNoNsProp</dt><dd><a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -</dd><dt>xmlGetNsProp</dt><dd><a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -</dd><dt>xmlGetProp</dt><dd><a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -</dd><dt>xmlGetThreadId</dt><dd><a href="html/libxml-threads.html#xmlGetThreadId">xmlGetThreadId</a><br /> -</dd><dt>xmlHashTablePtr</dt><dd><a href="html/libxml-hash.html#xmlHashCreate">xmlHashCreate</a><br /> -<a href="html/libxml-hash.html#xmlHashCreateDict">xmlHashCreateDict</a><br /> -</dd><dt>xmlIDPtr</dt><dd><a href="html/libxml-valid.html#xmlAddID">xmlAddID</a><br /> -</dd><dt>xmlIndentTreeOutput</dt><dd><a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a><br /> -</dd><dt>xmlInitParser</dt><dd><a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -</dd><dt>xmlInitThreads</dt><dd><a href="html/libxml-threads.html#xmlInitThreads">xmlInitThreads</a><br /> -</dd><dt>xmlInitializeCatalog</dt><dd><a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -</dd><dt>xmlInitializeGlobalState</dt><dd><a href="html/libxml-globals.html#xmlInitializeGlobalState">xmlInitializeGlobalState</a><br /> -</dd><dt>xmlInputCloseCallback</dt><dd><a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -</dd><dt>xmlInputMatchCallback</dt><dd><a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -</dd><dt>xmlInputOpenCallback</dt><dd><a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -</dd><dt>xmlInputReadCallback</dt><dd><a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -</dd><dt>xmlIsBaseCharQ</dt><dd><a href="html/libxml-chvalid.html#xmlIsBaseChar">xmlIsBaseChar</a><br /> -</dd><dt>xmlIsBaseChar_ch</dt><dd><a href="html/libxml-chvalid.html#xmlIsBaseChar">xmlIsBaseChar</a><br /> -</dd><dt>xmlIsBlankNode</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -</dd><dt>xmlIsBlankQ</dt><dd><a href="html/libxml-chvalid.html#xmlIsBlank">xmlIsBlank</a><br /> -</dd><dt>xmlIsBlank_ch</dt><dd><a href="html/libxml-chvalid.html#xmlIsBlank">xmlIsBlank</a><br /> -</dd><dt>xmlIsCharQ</dt><dd><a href="html/libxml-chvalid.html#xmlIsChar">xmlIsChar</a><br /> -</dd><dt>xmlIsChar_ch</dt><dd><a href="html/libxml-chvalid.html#xmlIsChar">xmlIsChar</a><br /> -</dd><dt>xmlIsCombiningQ</dt><dd><a href="html/libxml-chvalid.html#xmlIsCombining">xmlIsCombining</a><br /> -</dd><dt>xmlIsDigitQ</dt><dd><a href="html/libxml-chvalid.html#xmlIsDigit">xmlIsDigit</a><br /> -</dd><dt>xmlIsDigit_ch</dt><dd><a href="html/libxml-chvalid.html#xmlIsDigit">xmlIsDigit</a><br /> -</dd><dt>xmlIsExtenderQ</dt><dd><a href="html/libxml-chvalid.html#xmlIsExtender">xmlIsExtender</a><br /> -</dd><dt>xmlIsExtender_ch</dt><dd><a href="html/libxml-chvalid.html#xmlIsExtender">xmlIsExtender</a><br /> -</dd><dt>xmlIsIdeographicQ</dt><dd><a href="html/libxml-chvalid.html#xmlIsIdeographic">xmlIsIdeographic</a><br /> -</dd><dt>xmlIsMainThread</dt><dd><a href="html/libxml-threads.html#xmlIsMainThread">xmlIsMainThread</a><br /> -</dd><dt>xmlIsPubidCharQ</dt><dd><a href="html/libxml-chvalid.html#xmlIsPubidChar">xmlIsPubidChar</a><br /> -</dd><dt>xmlIsPubidChar_ch</dt><dd><a href="html/libxml-chvalid.html#xmlIsPubidChar">xmlIsPubidChar</a><br /> -</dd><dt>xmlKeepBlanksDefault</dt><dd><a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a><br /> -</dd><dt>xmlLineNumbersDefault</dt><dd><a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> -</dd><dt>xmlListWalk</dt><dd><a href="html/libxml-list.html#xmlListWalker">xmlListWalker</a><br /> -</dd><dt>xmlLoadExtDtdDefaultValue</dt><dd><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-parser.html#XML_DETECT_IDS">XML_DETECT_IDS</a><br /> -<a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -</dd><dt>xmlLocationSetPtr</dt><dd><a href="html/libxml-xpointer.html#xmlXPtrFreeLocationSet">xmlXPtrFreeLocationSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetCreate">xmlXPtrLocationSetCreate</a><br /> -</dd><dt>xmlLockLibrary</dt><dd><a href="html/libxml-threads.html#xmlLockLibrary">xmlLockLibrary</a><br /> -</dd><dt>xmlModuleOption</dt><dd><a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -</dd><dt>xmlMutexLock</dt><dd><a href="html/libxml-threads.html#xmlMutexLock">xmlMutexLock</a><br /> -</dd><dt>xmlMutexUnlock</dt><dd><a href="html/libxml-threads.html#xmlMutexUnlock">xmlMutexUnlock</a><br /> -</dd><dt>xmlNanoFTPGet</dt><dd><a href="html/libxml-nanoftp.html#ftpDataCallback">ftpDataCallback</a><br /> -</dd><dt>xmlNanoFTPList</dt><dd><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -</dd><dt>xmlNewChild</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -</dd><dt>xmlNewDocElementContent</dt><dd><a href="html/libxml-valid.html#xmlNewElementContent">xmlNewElementContent</a><br /> -</dd><dt>xmlNewDocRawNode</dt><dd><a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -</dd><dt>xmlNewMutex</dt><dd><a href="html/libxml-threads.html#xmlNewMutex">xmlNewMutex</a><br /> -</dd><dt>xmlNewNode</dt><dd><a href="html/libxml-tree.html#xmlNewNodeEatName">xmlNewNodeEatName</a><br /> -</dd><dt>xmlNewTextChild</dt><dd><a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -</dd><dt>xmlNewTextWriter</dt><dd><a href="html/libxml-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterFilename">xmlNewTextWriterFilename</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterMemory">xmlNewTextWriterMemory</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> -</dd><dt>xmlNodeListGetString</dt><dd><a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -</dd><dt>xmlNodePtr</dt><dd><a href="html/libxml-tree.html#xmlCopyNode">xmlCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlCopyNodeList">xmlCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNode">xmlDocCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNodeList">xmlDocCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlDocGetRootElement">xmlDocGetRootElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAdd">xmlXPathNodeSetAdd</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetCreate">xmlXPathNodeSetCreate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetDel">xmlXPathNodeSetDel</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a><br /> -</dd><dt>xmlNodeSetContent</dt><dd><a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -</dd><dt>xmlNodeSetContentLen</dt><dd><a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -</dd><dt>xmlNodeSetPtr</dt><dd><a href="html/libxml-xpath.html#xmlXPathFreeNodeSet">xmlXPathFreeNodeSet</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetCreate">xmlXPathNodeSetCreate</a><br /> -</dd><dt>xmlNodeType</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -</dd><dt>xmlNotationPtr</dt><dd><a href="html/libxml-valid.html#xmlGetDtdNotationDesc">xmlGetDtdNotationDesc</a><br /> -</dd><dt>xmlNotationTablePtr</dt><dd><a href="html/libxml-valid.html#xmlCopyNotationTable">xmlCopyNotationTable</a><br /> -</dd><dt>xmlNs</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -</dd><dt>xmlNsPtr</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-SAX.html#getNamespace">getNamespace</a><br /> -<a href="html/libxml-tree.html#xmlCopyNamespace">xmlCopyNamespace</a><br /> -<a href="html/libxml-tree.html#xmlCopyNamespaceList">xmlCopyNamespaceList</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -<a href="html/libxml-tree.html#xmlGetNsList">xmlGetNsList</a><br /> -</dd><dt>xmlOutputBufferClose</dt><dd><a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -</dd><dt>xmlOutputBufferPtr</dt><dd><a href="html/libxml-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a><br /> -</dd><dt>xmlOutputCloseCallback</dt><dd><a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -</dd><dt>xmlOutputMatchCallback</dt><dd><a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -</dd><dt>xmlOutputOpenCallback</dt><dd><a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -</dd><dt>xmlOutputWriteCallback</dt><dd><a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -</dd><dt>xmlParseAttValue</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>xmlParseChunk</dt><dd><a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -</dd><dt>xmlParseElementContentDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -</dd><dt>xmlParseElementDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -</dd><dt>xmlParseExternalID</dt><dd><a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -</dd><dt>xmlParseFile</dt><dd><a href="html/libxml-catalog.html#xmlParseCatalogFile">xmlParseCatalogFile</a><br /> -</dd><dt>xmlParseNamespace:</dt><dd><a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -</dd><dt>xmlParseURI</dt><dd><a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd><dt>xmlParserCtxt</dt><dd><a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_0">XML_CTXT_FINISH_DTD_0</a><br /> -<a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_1">XML_CTXT_FINISH_DTD_1</a><br /> -</dd><dt>xmlParserCtxtPtr</dt><dd><a href="html/libxml-parser.html#xmlNewParserCtxt">xmlNewParserCtxt</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -</dd><dt>xmlParserError</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -</dd><dt>xmlParserErrors</dt><dd><a href="html/libxml-DOCBparser.html#docbParseChunk">docbParseChunk</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseChunk">htmlParseChunk</a><br /> -<a href="html/libxml-parser.html#xmlParseChunk">xmlParseChunk</a><br /> -</dd><dt>xmlParserFindNodeInfoIndex</dt><dd><a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -</dd><dt>xmlParserHandleReference</dt><dd><a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -</dd><dt>xmlParserInputBufferPtr</dt><dd><a href="html/libxml-xmlreader.html#xmlNewTextReader">xmlNewTextReader</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetup">xmlTextReaderSetup</a><br /> -</dd><dt>xmlParserInputPtr</dt><dd><a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlFreeInputStream">xmlFreeInputStream</a><br /> -<a href="html/libxml-parser.html#xmlLoadExternalEntity">xmlLoadExternalEntity</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserPrintFileContext">xmlParserPrintFileContext</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserPrintFileInfo">xmlParserPrintFileInfo</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -</dd><dt>xmlParserNodeInfo</dt><dd><a href="html/libxml-parser.html#xmlParserFindNodeInfo">xmlParserFindNodeInfo</a><br /> -</dd><dt>xmlParserProperties</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetParserProp">xmlTextReaderGetParserProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -</dd><dt>xmlPattern</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_PATTERN_ENABLED">LIBXML_PATTERN_ENABLED</a><br /> -</dd><dt>xmlPatternFlags</dt><dd><a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -</dd><dt>xmlPatternGetStreamCtxt</dt><dd><a href="html/libxml-pattern.html#xmlPatternStreamable">xmlPatternStreamable</a><br /> -</dd><dt>xmlPatterncompile</dt><dd><a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>xmlPopInput:</dt><dd><a href="html/libxml-parserInternals.html#xmlPopInput">xmlPopInput</a><br /> -</dd><dt>xmlPushInput:</dt><dd><a href="html/libxml-parserInternals.html#xmlPushInput">xmlPushInput</a><br /> -</dd><dt>xmlRFreeMutex</dt><dd><a href="html/libxml-threads.html#xmlFreeRMutex">xmlFreeRMutex</a><br /> -</dd><dt>xmlRMutexLock</dt><dd><a href="html/libxml-threads.html#xmlRMutexLock">xmlRMutexLock</a><br /> -</dd><dt>xmlRMutexUnlock</dt><dd><a href="html/libxml-threads.html#xmlRMutexUnlock">xmlRMutexUnlock</a><br /> -</dd><dt>xmlRNewMutex</dt><dd><a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -</dd><dt>xmlReader</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_READER_ENABLED">LIBXML_READER_ENABLED</a><br /> -</dd><dt>xmlRefPtr</dt><dd><a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> -</dd><dt>xmlRelaxNGParserFlag</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a><br /> -</dd><dt>xmlRelaxNGValidatePushElement</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> -</dd><dt>xmlSAX2Attribute</dt><dd><a href="html/libxml-SAX.html#attribute">attribute</a><br /> -</dd><dt>xmlSAX2AttributeDecl</dt><dd><a href="html/libxml-SAX.html#attributeDecl">attributeDecl</a><br /> -</dd><dt>xmlSAX2CDataBlock</dt><dd><a href="html/libxml-SAX.html#cdataBlock">cdataBlock</a><br /> -</dd><dt>xmlSAX2Characters</dt><dd><a href="html/libxml-SAX.html#characters">characters</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> -</dd><dt>xmlSAX2Comment</dt><dd><a href="html/libxml-SAX.html#comment">comment</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Comment">xmlSAX2Comment</a><br /> -</dd><dt>xmlSAX2ElementDecl</dt><dd><a href="html/libxml-SAX.html#elementDecl">elementDecl</a><br /> -</dd><dt>xmlSAX2EndDocument</dt><dd><a href="html/libxml-SAX.html#endDocument">endDocument</a><br /> -</dd><dt>xmlSAX2EndElement</dt><dd><a href="html/libxml-SAX.html#endElement">endElement</a><br /> -</dd><dt>xmlSAX2EntityDecl</dt><dd><a href="html/libxml-SAX.html#entityDecl">entityDecl</a><br /> -</dd><dt>xmlSAX2ExternalSubset</dt><dd><a href="html/libxml-SAX.html#externalSubset">externalSubset</a><br /> -</dd><dt>xmlSAX2GetColumnNumber</dt><dd><a href="html/libxml-SAX.html#getColumnNumber">getColumnNumber</a><br /> -</dd><dt>xmlSAX2GetEntity</dt><dd><a href="html/libxml-SAX.html#getEntity">getEntity</a><br /> -</dd><dt>xmlSAX2GetLineNumber</dt><dd><a href="html/libxml-SAX.html#getLineNumber">getLineNumber</a><br /> -</dd><dt>xmlSAX2GetParameterEntity</dt><dd><a href="html/libxml-SAX.html#getParameterEntity">getParameterEntity</a><br /> -</dd><dt>xmlSAX2GetPublicId</dt><dd><a href="html/libxml-SAX.html#getPublicId">getPublicId</a><br /> -</dd><dt>xmlSAX2GetSystemId</dt><dd><a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -</dd><dt>xmlSAX2HasExternalSubset</dt><dd><a href="html/libxml-SAX.html#hasExternalSubset">hasExternalSubset</a><br /> -</dd><dt>xmlSAX2HasInternalSubset</dt><dd><a href="html/libxml-SAX.html#hasInternalSubset">hasInternalSubset</a><br /> -</dd><dt>xmlSAX2IgnorableWhitespace</dt><dd><a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -</dd><dt>xmlSAX2InitDefaultSAXHandler</dt><dd><a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> -</dd><dt>xmlSAX2InitDocbDefaultSAXHandler</dt><dd><a href="html/libxml-SAX.html#initdocbDefaultSAXHandler">initdocbDefaultSAXHandler</a><br /> -</dd><dt>xmlSAX2InitHtmlDefaultSAXHandler</dt><dd><a href="html/libxml-SAX.html#inithtmlDefaultSAXHandler">inithtmlDefaultSAXHandler</a><br /> -</dd><dt>xmlSAX2InternalSubset</dt><dd><a href="html/libxml-SAX.html#internalSubset">internalSubset</a><br /> -</dd><dt>xmlSAX2IsStandalone</dt><dd><a href="html/libxml-SAX.html#isStandalone">isStandalone</a><br /> -</dd><dt>xmlSAX2NotationDecl</dt><dd><a href="html/libxml-SAX.html#notationDecl">notationDecl</a><br /> -</dd><dt>xmlSAX2ProcessingInstruction</dt><dd><a href="html/libxml-SAX.html#processingInstruction">processingInstruction</a><br /> -</dd><dt>xmlSAX2Reference</dt><dd><a href="html/libxml-SAX.html#reference">reference</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Reference">xmlSAX2Reference</a><br /> -</dd><dt>xmlSAX2ResolveEntity</dt><dd><a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -</dd><dt>xmlSAX2StartDocument</dt><dd><a href="html/libxml-SAX.html#startDocument">startDocument</a><br /> -</dd><dt>xmlSAX2StartElement</dt><dd><a href="html/libxml-SAX.html#startElement">startElement</a><br /> -</dd><dt>xmlSAX2UnparsedEntityDecl</dt><dd><a href="html/libxml-SAX.html#unparsedEntityDecl">unparsedEntityDecl</a><br /> -</dd><dt>xmlSAXVersion</dt><dd><a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -</dd><dt>xmlSaveOptions</dt><dd><a href="html/libxml-xmlsave.html#xmlSaveToBuffer">xmlSaveToBuffer</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFd">xmlSaveToFd</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFilename">xmlSaveToFilename</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -</dd><dt>xmlSchemaValType</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetValType">xmlSchemaGetValType</a><br /> -</dd><dt>xmlSchematronValidOptions</dt><dd><a href="html/libxml-schematron.html#xmlSchematronNewValidCtxt">xmlSchematronNewValidCtxt</a><br /> -</dd><dt>xmlSetExternalEntityLoader</dt><dd><a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -</dd><dt>xmlSnprintfElementContent</dt><dd><a href="html/libxml-valid.html#xmlSprintfElementContent">xmlSprintfElementContent</a><br /> -</dd><dt>xmlStrcmp</dt><dd><a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -</dd><dt>xmlStrdup</dt><dd><a href="html/libxml-tree.html#xmlNewNode">xmlNewNode</a><br /> -</dd><dt>xmlStreamPush</dt><dd><a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -</dd><dt>xmlStringDecodeEntities</dt><dd><a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -</dd><dt>xmlStringGetNodeList</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -</dd><dt>xmlStrncat</dt><dd><a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -</dd><dt>xmlStrncmp</dt><dd><a href="html/libxml-xmlstring.html#xmlUTF8Charcmp">xmlUTF8Charcmp</a><br /> -</dd><dt>xmlTextReader</dt><dd><a href="html/libxml-xmlreader.html#xmlNewTextReader">xmlNewTextReader</a><br /> -<a href="html/libxml-xmlreader.html#xmlNewTextReaderFilename">xmlNewTextReaderFilename</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewDoc">xmlReaderNewDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFile">xmlReaderNewFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewMemory">xmlReaderNewMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewWalker">xmlReaderNewWalker</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -</dd><dt>xmlTextReaderCurrentDoc</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -</dd><dt>xmlTextReaderLocatorPtr</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderLocatorBaseURI">xmlTextReaderLocatorBaseURI</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorLineNumber">xmlTextReaderLocatorLineNumber</a><br /> -</dd><dt>xmlTextReaderRead</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderExpand">xmlTextReaderExpand</a><br /> -</dd><dt>xmlTextWriterStartDTDEntity</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntity">xmlTextWriterWriteDTDExternalEntity</a><br /> -</dd><dt>xmlTextWriterWriteDTD</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDocType">xmlTextWriterWriteDocType</a><br /> -</dd><dt>xmlTextWriterWritePI</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterWriteProcessingInstruction">xmlTextWriterWriteProcessingInstruction</a><br /> -</dd><dt>xmlURI</dt><dd><a href="html/libxml-uri.html#xmlCreateURI">xmlCreateURI</a><br /> -<a href="html/libxml-uri.html#xmlFreeURI">xmlFreeURI</a><br /> -<a href="html/libxml-uri.html#xmlPrintURI">xmlPrintURI</a><br /> -<a href="html/libxml-uri.html#xmlSaveUri">xmlSaveUri</a><br /> -</dd><dt>xmlURIEscapeStr</dt><dd><a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd><dt>xmlURIFromPath</dt><dd><a href="html/libxml-xmlIO.html#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a><br /> -</dd><dt>xmlURIPtr</dt><dd><a href="html/libxml-uri.html#xmlParseURI">xmlParseURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -</dd><dt>xmlUnlinkNode</dt><dd><a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlFreeNode">xmlFreeNode</a><br /> -</dd><dt>xmlUnlockLibrary</dt><dd><a href="html/libxml-threads.html#xmlUnlockLibrary">xmlUnlockLibrary</a><br /> -</dd><dt>xmlValidCtxtPtr</dt><dd><a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</dd><dt>xmlValidGetValidElements</dt><dd><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</dd><dt>xmlValidateAttributeDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>xmlValidateAttributeValue</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -</dd><dt>xmlValidateOneAttribute</dt><dd><a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -</dd><dt>xmlWriter</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_WRITER_ENABLED">LIBXML_WRITER_ENABLED</a><br /> -</dd><dt>xmlXPathCheckError</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathPopBoolean">xmlXPathPopBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopExternal">xmlXPathPopExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNodeSet">xmlXPathPopNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNumber">xmlXPathPopNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopString">xmlXPathPopString</a><br /> -</dd><dt>xmlXPathCompExprPtr</dt><dd><a href="html/libxml-xpath.html#xmlXPathCompile">xmlXPathCompile</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCtxtCompile">xmlXPathCtxtCompile</a><br /> -</dd><dt>xmlXPathContext</dt><dd><a href="html/libxml-xpath.html#xmlXPathFreeContext">xmlXPathFreeContext</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNewContext">xmlXPathNewContext</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -</dd><dt>xmlXPathError</dt><dd><a href="">err</a><br /> -</dd><dt>xmlXPathEvalPredicate</dt><dd><a href="html/libxml-xpointer.html#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a><br /> -</dd><dt>xmlXPathFreeObject</dt><dd><a href="html/libxml-xpath.html#xmlXPathFreeNodeSetList">xmlXPathFreeNodeSetList</a><br /> -</dd><dt>xmlXPathFunction</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookup">xmlXPathFunctionLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookupNS">xmlXPathFunctionLookupNS</a><br /> -</dd><dt>xmlXPathNodeTrailingSorted</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -</dd><dt>xmlXPathObject</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>xmlXPathObjectPtr</dt><dd><a href="html/libxml-xpath.html#xmlXPathCompiledEval">xmlXPathCompiledEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEval">xmlXPathEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalExpression">xmlXPathEvalExpression</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeNodeSetList">xmlXPathFreeNodeSetList</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeObject">xmlXPathFreeObject</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewBoolean">xmlXPathNewBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewCString">xmlXPathNewCString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewFloat">xmlXPathNewFloat</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSet">xmlXPathNewNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSetList">xmlXPathNewNodeSetList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewString">xmlXPathNewString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewValueTree">xmlXPathNewValueTree</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapNodeSet">xmlXPathWrapNodeSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEval">xmlXPtrEval</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetCreate">xmlXPtrLocationSetCreate</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetDel">xmlXPtrLocationSetDel</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewCollapsedRange">xmlXPtrNewCollapsedRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodeSet">xmlXPtrNewLocationSetNodeSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRange">xmlXPtrNewRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodeObject">xmlXPtrNewRangeNodeObject</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodePoint">xmlXPtrNewRangeNodePoint</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodes">xmlXPtrNewRangeNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePointNode">xmlXPtrNewRangePointNode</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePoints">xmlXPtrNewRangePoints</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrWrapLocationSet">xmlXPtrWrapLocationSet</a><br /> -</dd><dt>xmlXPathParserContext</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathFreeParserContext">xmlXPathFreeParserContext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewParserContext">xmlXPathNewParserContext</a><br /> -</dd><dt>xmlXPathTrailingSorted</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -</dd><dt>xmlns</dt><dd><a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -</dd><dt>xmlns:???</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -</dd><dt>xmltextReader</dt><dd><a href="html/libxml-xmlreader.html#xmlReaderForDoc">xmlReaderForDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFd">xmlReaderForFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForIO">xmlReaderForIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForMemory">xmlReaderForMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewDoc">xmlReaderNewDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewMemory">xmlReaderNewMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewWalker">xmlReaderNewWalker</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderWalker">xmlReaderWalker</a><br /> -</dd><dt>xpath</dt><dd><a href="html/libxml-debugXML.html#xmlShellPrintXPathError">xmlShellPrintXPathError</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathResult">xmlShellPrintXPathResult</a><br /> -</dd><dt>xpointer</dt><dd><a href="html/libxml-xinclude.html#XINCLUDE_PARSE_XPOINTER">XINCLUDE_PARSE_XPOINTER</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk29.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk29.html deleted file mode 100644 index e5befebd..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk29.html +++ /dev/null @@ -1,128 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index y-z for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index y-z for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter y:</h2><dl><dt>year</dt><dd><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -</dd><dt>yes</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a><br /> -<a href="html/libxml-tree.html#xmlIsBlankNode">xmlIsBlankNode</a><br /> -<a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -<a href="html/libxml-tree.html#xmlNodeIsText">xmlNodeIsText</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpIsDeterminist">xmlRegexpIsDeterminist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDocument">xmlTextWriterStartDocument</a><br /> -</dd><dt>yet</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -</dd><dt>you</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInType">xmlSchemaGetBuiltInType</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -</dd></dl><h2>Letter z:</h2><dl><dt>zero</dt><dd><a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseChunk">docbParseChunk</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadDoc">htmlCtxtReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseChunk">htmlParseChunk</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadDoc">htmlReadDoc</a><br /> -<a href="html/libxml-tree.html#xmlBufferCCat">xmlBufferCCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferCat">xmlBufferCat</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-tree.html#xmlCopyDoc">xmlCopyDoc</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadDoc">xmlCtxtReadDoc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemory">xmlDocDumpMemory</a><br /> -<a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseChunk">xmlParseChunk</a><br /> -<a href="html/libxml-parser.html#xmlReadDoc">xmlReadDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForDoc">xmlReaderForDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewDoc">xmlReaderNewDoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrsub">xmlStrsub</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>zero-based</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNo">xmlTextReaderGetAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNo">xmlTextReaderMoveToAttributeNo</a><br /> -</dd><dt>zeros</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>zlib</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk3.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk3.html deleted file mode 100644 index e8d2266f..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk3.html +++ /dev/null @@ -1,340 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index F-I for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index F-I for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter F:</h2><dl><dt>FALSE</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDEntity">xmlTextWriterStartDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDEntity">xmlTextWriterWriteDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntity">xmlTextWriterWriteDTDExternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDInternalEntity">xmlTextWriterWriteDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDInternalEntity">xmlTextWriterWriteFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDInternalEntity">xmlTextWriterWriteVFormatDTDInternalEntity</a><br /> -</dd><dt>FFFE</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -</dd><dt>FFFF</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -</dd><dt>FIXED</dt><dd><a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>FREE</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>Facet</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeFacet">xmlSchemaFreeFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewFacet">xmlSchemaNewFacet</a><br /> -</dd><dt>False</dt><dd><a href="html/libxml-debugXML.html#xmlBoolToText">xmlBoolToText</a><br /> -</dd><dt>Fetch</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a><br /> -</dd><dt>File</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>Fills</dt><dd><a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -</dd><dt>Find</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-valid.html#xmlGetRefs">xmlGetRefs</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup">xmlHashLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup2">xmlHashLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup3">xmlHashLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup">xmlHashQLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup2">xmlHashQLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup3">xmlHashQLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfo">xmlParserFindNodeInfo</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -</dd><dt>Finds</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpIsNillable">xmlExpIsNillable</a><br /> -</dd><dt>First</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FIXUP_1">XML_SCHEMAS_TYPE_FIXUP_1</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -</dd><dt>Fixed</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -</dd><dt>Float</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -</dd><dt>Flush</dt><dd><a href="html/libxml-xmlsave.html#xmlSaveFlush">xmlSaveFlush</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterFlush">xmlTextWriterFlush</a><br /> -</dd><dt>For</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-xmlerror.html#xmlCtxtResetLastError">xmlCtxtResetLastError</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-xmlerror.html#xmlResetLastError">xmlResetLastError</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -</dd><dt>Form</dt><dd><a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -</dd><dt>Formating</dt><dd><a href="html/libxml-HTMLtree.html#htmlDocContentDumpOutput">htmlDocContentDumpOutput</a><br /> -</dd><dt>Formats</dt><dd><a href="html/libxml-xmlstring.html#xmlStrPrintf">xmlStrPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrVPrintf">xmlStrVPrintf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPatherror">xmlXPatherror</a><br /> -</dd><dt>Formed</dt><dd><a href="html/libxml-parser.html#xmlRecoverDoc">xmlRecoverDoc</a><br /> -<a href="html/libxml-parser.html#xmlRecoverFile">xmlRecoverFile</a><br /> -<a href="html/libxml-parser.html#xmlRecoverMemory">xmlRecoverMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -</dd><dt>Fragment</dt><dd><a href="html/libxml-tree.html#xmlNewDocFragment">xmlNewDocFragment</a><br /> -</dd><dt>Frameset</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>Frees</dt><dd><a href="html/libxml-tree.html#xmlBufferFree">xmlBufferFree</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapFreeCtxt">xmlDOMWrapFreeCtxt</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPFreeCtxt">xmlNanoFTPFreeCtxt</a><br /> -</dd><dt>Front-end</dt><dd><a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -</dd><dt>Function</dt><dd><a href="html/libxml-tree.html#xmlBufferContent">xmlBufferContent</a><br /> -<a href="html/libxml-tree.html#xmlBufferLength">xmlBufferLength</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookup">xmlXPathFunctionLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookupNS">xmlXPathFunctionLookupNS</a><br /> -</dd></dl><h2>Letter G:</h2><dl><dt>GCC</dt><dd><a href="html/libxml-xmlversion.html#ATTRIBUTE_UNUSED">ATTRIBUTE_UNUSED</a><br /> -</dd><dt>GEDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -</dd><dt>GET</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -</dd><dt>GeneralPunctuation</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsGeneralPunctuation">xmlUCSIsGeneralPunctuation</a><br /> -</dd><dt>Generic</dt><dd><a href="html/libxml-encoding.html#xmlCharEncCloseFunc">xmlCharEncCloseFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -</dd><dt>GeometricShapes</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsGeometricShapes">xmlUCSIsGeometricShapes</a><br /> -</dd><dt>Georgian</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsGeorgian">xmlUCSIsGeorgian</a><br /> -</dd><dt>Gets</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderReadState">xmlTextReaderReadState</a><br /> -</dd><dt>Gives</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInType">xmlSchemaGetBuiltInType</a><br /> -</dd><dt>Global</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -</dd><dt>Gothic</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsGothic">xmlUCSIsGothic</a><br /> -</dd><dt>Greek</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsGreek">xmlUCSIsGreek</a><br /> -</dd><dt>GreekExtended</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsGreekExtended">xmlUCSIsGreekExtended</a><br /> -</dd><dt>GreekandCoptic</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsGreekandCoptic">xmlUCSIsGreekandCoptic</a><br /> -</dd><dt>Group</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -</dd><dt>Grow</dt><dd><a href="html/libxml-tree.html#xmlBufferGrow">xmlBufferGrow</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -</dd><dt>Guess</dt><dd><a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -</dd><dt>Gujarati</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsGujarati">xmlUCSIsGujarati</a><br /> -</dd><dt>Gurmukhi</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsGurmukhi">xmlUCSIsGurmukhi</a><br /> -</dd></dl><h2>Letter H:</h2><dl><dt>HTML_DEPRECATED</dt><dd><a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementStatusHere">htmlElementStatusHere</a><br /> -</dd><dt>HTML_INVALID</dt><dd><a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementStatusHere">htmlElementStatusHere</a><br /> -</dd><dt>HTML_NA</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</dd><dt>HTML_REQUIRED</dt><dd><a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -</dd><dt>HTML_VALID</dt><dd><a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementStatusHere">htmlElementStatusHere</a><br /> -</dd><dt>Hacking</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -</dd><dt>HalfwidthandFullwidthForms</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsHalfwidthandFullwidthForms">xmlUCSIsHalfwidthandFullwidthForms</a><br /> -</dd><dt>Handle</dt><dd><a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlErrMemory">xmlErrMemory</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathErr">xmlXPathErr</a><br /> -</dd><dt>Handling</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -</dd><dt>HangulCompatibilityJamo</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsHangulCompatibilityJamo">xmlUCSIsHangulCompatibilityJamo</a><br /> -</dd><dt>HangulJamo</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsHangulJamo">xmlUCSIsHangulJamo</a><br /> -</dd><dt>HangulSyllables</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsHangulSyllables">xmlUCSIsHangulSyllables</a><br /> -</dd><dt>Hanunoo</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsHanunoo">xmlUCSIsHanunoo</a><br /> -</dd><dt>Has</dt><dd><a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -</dd><dt>Hash</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -</dd><dt>Hebrew</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsHebrew">xmlUCSIsHebrew</a><br /> -</dd><dt>Hence</dt><dd><a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -</dd><dt>HighPrivateUseSurrogates</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsHighPrivateUseSurrogates">xmlUCSIsHighPrivateUseSurrogates</a><br /> -</dd><dt>HighSurrogates</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsHighSurrogates">xmlUCSIsHighSurrogates</a><br /> -</dd><dt>Hiragana</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsHiragana">xmlUCSIsHiragana</a><br /> -</dd><dt>Hmm</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsBoolean">xmlSchemaValueGetAsBoolean</a><br /> -</dd><dt>Holds</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -</dd><dt>How</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -</dd><dt>However</dt><dd><a href="html/libxml-DOCBparser.html#docbFreeParserCtxt">docbFreeParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlFreeParserCtxt">htmlFreeParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlFreeParserCtxt">xmlFreeParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -</dd></dl><h2>Letter I:</h2><dl><dt>I18N</dt><dd><a href="html/libxml-xmlIO.html#_xmlOutputBuffer">_xmlOutputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#_xmlParserInputBuffer">_xmlParserInputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWrite">xmlOutputBufferWrite</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -</dd><dt>IDREF</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -</dd><dt>IDREFS</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -</dd><dt>IDREFs</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -</dd><dt>IDs</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -</dd><dt>IEEE</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>IMPLIED</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>IPAExtensions</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsIPAExtensions">xmlUCSIsIPAExtensions</a><br /> -</dd><dt>ISO</dt><dd><a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -</dd><dt>ISO-8859-</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_ISO8859X_ENABLED">LIBXML_ISO8859X_ENABLED</a><br /> -</dd><dt>ISO-Latin</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -</dd><dt>ISO639Code</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>ISOLatin</dt><dd><a href="html/libxml-xmlIO.html#_xmlOutputBuffer">_xmlOutputBuffer</a><br /> -</dd><dt>IS_BLANK</dt><dd><a href="html/libxml-parserInternals.html#IS_BLANK_CH">IS_BLANK_CH</a><br /> -</dd><dt>IS_CHAR</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR_CH">IS_CHAR_CH</a><br /> -</dd><dt>IS_DIGIT</dt><dd><a href="html/libxml-parserInternals.html#IS_DIGIT_CH">IS_DIGIT_CH</a><br /> -</dd><dt>IS_EXTENDER</dt><dd><a href="html/libxml-parserInternals.html#IS_EXTENDER_CH">IS_EXTENDER_CH</a><br /> -</dd><dt>IS_LETTER</dt><dd><a href="html/libxml-parserInternals.html#IS_LETTER_CH">IS_LETTER_CH</a><br /> -</dd><dt>IS_PUBIDCHAR</dt><dd><a href="html/libxml-parserInternals.html#IS_PUBIDCHAR_CH">IS_PUBIDCHAR_CH</a><br /> -</dd><dt>IanaCode</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>Identifier</dt><dd><a href="html/libxml-catalog.html#xmlACatalogResolve">xmlACatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolve">xmlCatalogResolve</a><br /> -</dd><dt>Identifiers</dt><dd><a href="html/libxml-parserInternals.html#XML_MAX_NAMELEN">XML_MAX_NAMELEN</a><br /> -</dd><dt>Ideographic</dt><dd><a href="html/libxml-parserInternals.html#IS_IDEOGRAPHIC">IS_IDEOGRAPHIC</a><br /> -<a href="html/libxml-parserInternals.html#IS_LETTER">IS_LETTER</a><br /> -<a href="html/libxml-parserInternals.html#xmlIsLetter">xmlIsLetter</a><br /> -</dd><dt>IdeographicDescriptionCharacters</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsIdeographicDescriptionCharacters">xmlUCSIsIdeographicDescriptionCharacters</a><br /> -</dd><dt>Ignore</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_LAX">XML_SCHEMAS_ANYATTR_LAX</a><br /> -</dd><dt>Ignored</dt><dd><a href="html/libxml-parserInternals.html#xmlCopyChar">xmlCopyChar</a><br /> -</dd><dt>Implements</dt><dd><a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-debugXML.html#xmlShellBase">xmlShellBase</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCat">xmlShellCat</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDir">xmlShellDir</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -<a href="html/libxml-debugXML.html#xmlShellList">xmlShellList</a><br /> -<a href="html/libxml-debugXML.html#xmlShellLoad">xmlShellLoad</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellSave">xmlShellSave</a><br /> -<a href="html/libxml-debugXML.html#xmlShellValidate">xmlShellValidate</a><br /> -<a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -</dd><dt>Included</dt><dd><a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -</dd><dt>Increase</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpRef">xmlExpRef</a><br /> -</dd><dt>Increment</dt><dd><a href="html/libxml-dict.html#xmlDictReference">xmlDictReference</a><br /> -</dd><dt>Indicate</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpMaxToken">xmlExpMaxToken</a><br /> -</dd><dt>Indicates</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaWildcard">_xmlSchemaWildcard</a><br /> -</dd><dt>Infinity</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>Initial</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataGetInitState">xmlAutomataGetInitState</a><br /> -</dd><dt>Initialization</dt><dd><a href="html/libxml-parser.html#xmlInitParser">xmlInitParser</a><br /> -</dd><dt>Initialize</dt><dd><a href="html/libxml-SAX2.html#docbDefaultSAXHandlerInit">docbDefaultSAXHandlerInit</a><br /> -<a href="html/libxml-SAX2.html#htmlDefaultSAXHandlerInit">htmlDefaultSAXHandlerInit</a><br /> -<a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -<a href="html/libxml-SAX.html#initdocbDefaultSAXHandler">initdocbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#inithtmlDefaultSAXHandler">inithtmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlDefaultSAXHandlerInit">xmlDefaultSAXHandlerInit</a><br /> -<a href="html/libxml-encoding.html#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a><br /> -<a href="html/libxml-xmlmemory.html#xmlInitMemory">xmlInitMemory</a><br /> -<a href="html/libxml-parser.html#xmlInitNodeInfoSeq">xmlInitNodeInfoSeq</a><br /> -<a href="html/libxml-parser.html#xmlInitParserCtxt">xmlInitParserCtxt</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPInit">xmlNanoFTPInit</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPInit">xmlNanoHTTPInit</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDocbDefaultSAXHandler">xmlSAX2InitDocbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitHtmlDefaultSAXHandler">xmlSAX2InitHtmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAXVersion">xmlSAXVersion</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaInitTypes">xmlSchemaInitTypes</a><br /> -<a href="html/libxml-xpath.html#xmlXPathInit">xmlXPathInit</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoot">xmlXPathRoot</a><br /> -</dd><dt>Initially</dt><dd><a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -</dd><dt>Initiate</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPGetSocket">xmlNanoFTPGetSocket</a><br /> -</dd><dt>Initilize</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGInitTypes">xmlRelaxNGInitTypes</a><br /> -</dd><dt>Input</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlIOParseDTD">xmlIOParseDTD</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a><br /> -<a href="html/libxml-parser.html#xmlNewIOInputStream">xmlNewIOInputStream</a><br /> -</dd><dt>Insert</dt><dd><a href="html/libxml-list.html#xmlListAppend">xmlListAppend</a><br /> -<a href="html/libxml-list.html#xmlListInsert">xmlListInsert</a><br /> -<a href="html/libxml-parser.html#xmlParserAddNodeInfo">xmlParserAddNodeInfo</a><br /> -</dd><dt>Instruction</dt><dd><a href="html/libxml-parserInternals.html#xmlParsePI">xmlParsePI</a><br /> -</dd><dt>Instuction</dt><dd><a href="html/libxml-catalog.html#XML_CATALOG_PI">XML_CATALOG_PI</a><br /> -</dd><dt>Intended</dt><dd><a href="html/libxml-valid.html#xmlSnprintfElementContent">xmlSnprintfElementContent</a><br /> -</dd><dt>Internal</dt><dd><a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk4.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk4.html deleted file mode 100644 index b954f386..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk4.html +++ /dev/null @@ -1,341 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index J-N for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index J-N for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter J:</h2><dl><dt>Jan</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>Java</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -</dd></dl><h2>Letter K:</h2><dl><dt>Kanbun</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsKanbun">xmlUCSIsKanbun</a><br /> -</dd><dt>KangxiRadicals</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsKangxiRadicals">xmlUCSIsKangxiRadicals</a><br /> -</dd><dt>Kannada</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsKannada">xmlUCSIsKannada</a><br /> -</dd><dt>Katakana</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsKatakana">xmlUCSIsKatakana</a><br /> -</dd><dt>KatakanaPhoneticExtensions</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsKatakanaPhoneticExtensions">xmlUCSIsKatakanaPhoneticExtensions</a><br /> -</dd><dt>Khmer</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsKhmer">xmlUCSIsKhmer</a><br /> -</dd><dt>KhmerSymbols</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsKhmerSymbols">xmlUCSIsKhmerSymbols</a><br /> -</dd></dl><h2>Letter L:</h2><dl><dt>Langcode</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>LanguageID</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>Lao</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsLao">xmlUCSIsLao</a><br /> -</dd><dt>Last</dt><dd><a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -</dd><dt>Latin</dt><dd><a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -</dd><dt>Latin-1Supplement</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsLatin1Supplement">xmlUCSIsLatin1Supplement</a><br /> -</dd><dt>LatinExtended-A</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsLatinExtendedA">xmlUCSIsLatinExtendedA</a><br /> -</dd><dt>LatinExtended-B</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsLatinExtendedB">xmlUCSIsLatinExtendedB</a><br /> -</dd><dt>LatinExtendedAdditional</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsLatinExtendedAdditional">xmlUCSIsLatinExtendedAdditional</a><br /> -</dd><dt>Legal</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -</dd><dt>Length</dt><dd><a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -</dd><dt>Letter</dt><dd><a href="html/libxml-parserInternals.html#IS_LETTER">IS_LETTER</a><br /> -<a href="html/libxml-parserInternals.html#xmlIsLetter">xmlIsLetter</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseName">xmlParseName</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseNCName">xmlXPathParseNCName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseName">xmlXPathParseName</a><br /> -</dd><dt>LetterlikeSymbols</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsLetterlikeSymbols">xmlUCSIsLetterlikeSymbols</a><br /> -</dd><dt>Like</dt><dd><a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</dd><dt>Limbu</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsLimbu">xmlUCSIsLimbu</a><br /> -</dd><dt>LinearBIdeograms</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsLinearBIdeograms">xmlUCSIsLinearBIdeograms</a><br /> -</dd><dt>LinearBSyllabary</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsLinearBSyllabary">xmlUCSIsLinearBSyllabary</a><br /> -</dd><dt>List</dt><dd><a href="html/libxml-tree.html#_xmlElement">_xmlElement</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>Literal</dt><dd><a href="html/libxml-parserInternals.html#xmlParseSystemLiteral">xmlParseSystemLiteral</a><br /> -</dd><dt>Load</dt><dd><a href="html/libxml-parser.html#xmlIOParseDTD">xmlIOParseDTD</a><br /> -<a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -<a href="html/libxml-parser.html#xmlLoadExternalEntity">xmlLoadExternalEntity</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -<a href="html/libxml-parser.html#xmlParseDTD">xmlParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDTD">xmlSAXParseDTD</a><br /> -</dd><dt>Local</dt><dd><a href="html/libxml-xmlIO.html#_xmlOutputBuffer">_xmlOutputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#_xmlParserInputBuffer">_xmlParserInputBuffer</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -</dd><dt>LocalPart</dt><dd><a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -</dd><dt>Location</dt><dd><a href="html/libxml-xpath.html#xmlXPathEval">xmlXPathEval</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEval">xmlXPtrEval</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a><br /> -</dd><dt>LocationSet</dt><dd><a href="html/libxml-xpointer.html#xmlXPtrFreeLocationSet">xmlXPtrFreeLocationSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetDel">xmlXPtrLocationSetDel</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetRemove">xmlXPtrLocationSetRemove</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodeSet">xmlXPtrNewLocationSetNodeSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrWrapLocationSet">xmlXPtrWrapLocationSet</a><br /> -</dd><dt>Locator</dt><dd><a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -</dd><dt>Lookup</dt><dd><a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlTagLookup">htmlTagLookup</a><br /> -<a href="html/libxml-encoding.html#xmlGetEncodingAlias">xmlGetEncodingAlias</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleSymbol">xmlModuleSymbol</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> -</dd><dt>Loose</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>LowSurrogates</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsLowSurrogates">xmlUCSIsLowSurrogates</a><br /> -</dd></dl><h2>Letter M:</h2><dl><dt>META</dt><dd><a href="html/libxml-HTMLtree.html#htmlSetMetaEncoding">htmlSetMetaEncoding</a><br /> -</dd><dt>MODIFIER</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>MULT</dt><dd><a href="html/libxml-tree.html#_xmlElementContent">_xmlElementContent</a><br /> -</dd><dt>MUST</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -</dd><dt>Makes</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataSetFinalState">xmlAutomataSetFinalState</a><br /> -</dd><dt>Malayalam</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsMalayalam">xmlUCSIsMalayalam</a><br /> -</dd><dt>Maps</dt><dd><a href="html/libxml-tree.html#xmlChildrenNode">xmlChildrenNode</a><br /> -<a href="html/libxml-tree.html#xmlRootNode">xmlRootNode</a><br /> -</dd><dt>Marks</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a><br /> -</dd><dt>Markup</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>Match</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -</dd><dt>MathematicalAlphanumericSymbols</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsMathematicalAlphanumericSymbols">xmlUCSIsMathematicalAlphanumericSymbols</a><br /> -</dd><dt>MathematicalOperators</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsMathematicalOperators">xmlUCSIsMathematicalOperators</a><br /> -</dd><dt>Max</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -</dd><dt>May</dt><dd><a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd><dt>Memory</dt><dd><a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -</dd><dt>Merge</dt><dd><a href="html/libxml-tree.html#xmlTextMerge">xmlTextMerge</a><br /> -</dd><dt>Merges</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -</dd><dt>Meta</dt><dd><a href="html/libxml-HTMLtree.html#htmlGetMetaEncoding">htmlGetMetaEncoding</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSetMetaEncoding">htmlSetMetaEncoding</a><br /> -</dd><dt>Method</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>Mime-Type</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPMimeType">xmlNanoHTTPMimeType</a><br /> -</dd><dt>Minimal</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -</dd><dt>Misc</dt><dd><a href="html/libxml-parser.html#xmlParseDocument">xmlParseDocument</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMisc">xmlParseMisc</a><br /> -</dd><dt>MiscellaneousMathematicalSymbols-A</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousMathematicalSymbolsA">xmlUCSIsMiscellaneousMathematicalSymbolsA</a><br /> -</dd><dt>MiscellaneousMathematicalSymbols-B</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousMathematicalSymbolsB">xmlUCSIsMiscellaneousMathematicalSymbolsB</a><br /> -</dd><dt>MiscellaneousSymbols</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousSymbols">xmlUCSIsMiscellaneousSymbols</a><br /> -</dd><dt>MiscellaneousSymbolsandArrows</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousSymbolsandArrows">xmlUCSIsMiscellaneousSymbolsandArrows</a><br /> -</dd><dt>MiscellaneousTechnical</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousTechnical">xmlUCSIsMiscellaneousTechnical</a><br /> -</dd><dt>Mixed</dt><dd><a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -</dd><dt>Mongolian</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsMongolian">xmlUCSIsMongolian</a><br /> -</dd><dt>More</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>Move</dt><dd><a href="html/libxml-list.html#xmlListCopy">xmlListCopy</a><br /> -</dd><dt>Moves</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttribute">xmlTextReaderMoveToAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNo">xmlTextReaderMoveToAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNs">xmlTextReaderMoveToAttributeNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToElement">xmlTextReaderMoveToElement</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToFirstAttribute">xmlTextReaderMoveToFirstAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToNextAttribute">xmlTextReaderMoveToNextAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRead">xmlTextReaderRead</a><br /> -</dd><dt>MusicalSymbols</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsMusicalSymbols">xmlUCSIsMusicalSymbols</a><br /> -</dd><dt>Myanmar</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsMyanmar">xmlUCSIsMyanmar</a><br /> -</dd></dl><h2>Letter N:</h2><dl><dt>NAME</dt><dd><a href="html/libxml-parser.html#xmlParseDTD">xmlParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDTD">xmlSAXParseDTD</a><br /> -</dd><dt>NCName</dt><dd><a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -<a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseNCName">xmlXPathParseNCName</a><br /> -</dd><dt>NCNameChar</dt><dd><a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseNCName">xmlXPathParseNCName</a><br /> -</dd><dt>NDATA</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -</dd><dt>NDataDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -</dd><dt>NDataDecl?</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -</dd><dt>NMTOKEN</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -</dd><dt>NMTOKENS</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -</dd><dt>NMToken</dt><dd><a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> -</dd><dt>NOTATION</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewNOTATIONValue">xmlSchemaNewNOTATIONValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>NOTE</dt><dd><a href="html/libxml-parser.html#xmlCtxtReadFd">xmlCtxtReadFd</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -<a href="html/libxml-parser.html#xmlReadFd">xmlReadFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFd">xmlReaderForFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -</dd><dt>NOTE:</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSetMetaEncoding">htmlSetMetaEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-encoding.html#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -</dd><dt>NRK</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>NSDef</dt><dd><a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -</dd><dt>NaN</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>NameChar</dt><dd><a href="html/libxml-parserInternals.html#xmlParseName">xmlParseName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNmtoken">xmlParseNmtoken</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseName">xmlXPathParseName</a><br /> -</dd><dt>Names</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseName">xmlParseName</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNamesValue">xmlValidateNamesValue</a><br /> -</dd><dt>Namespace</dt><dd><a href="html/libxml-tree.html#XML_XML_NAMESPACE">XML_XML_NAMESPACE</a><br /> -<a href="html/libxml-tree.html#_xmlElementContent">_xmlElementContent</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a><br /> -</dd><dt>Nanespace</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>Needed</dt><dd><a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -</dd><dt>Nesting</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>New</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>Nmtoken</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumerationType">xmlParseEnumerationType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNmtoken">xmlParseNmtoken</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNmtokenValue">xmlValidateNmtokenValue</a><br /> -</dd><dt>Nmtokens</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNmtoken">xmlParseNmtoken</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNmtokensValue">xmlValidateNmtokensValue</a><br /> -</dd><dt>Node</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSet">xmlXPathNewNodeSet</a><br /> -</dd><dt>NodeList</dt><dd><a href="html/libxml-xpath.html#xmlXPathNodeSetGetLength">xmlXPathNodeSetGetLength</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -</dd><dt>NodePtr</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSet">xmlXPathNewNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewValueTree">xmlXPathNewValueTree</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapNodeSet">xmlXPathWrapNodeSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -</dd><dt>NodeSet</dt><dd><a href="html/libxml-xpath.html#xmlXPathFreeNodeSet">xmlXPathFreeNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSet">xmlXPathNewNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSetList">xmlXPathNewNodeSetList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAdd">xmlXPathNodeSetAdd</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddNs">xmlXPathNodeSetAddNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetDel">xmlXPathNodeSetDel</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetRemove">xmlXPathNodeSetRemove</a><br /> -</dd><dt>NodeSetList</dt><dd><a href="html/libxml-xpath.html#xmlXPathFreeNodeSetList">xmlXPathFreeNodeSetList</a><br /> -</dd><dt>NodeType</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathIsNodeType">xmlXPathIsNodeType</a><br /> -</dd><dt>Nodeset</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSetList">xmlXPathNewNodeSetList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapNodeSet">xmlXPathWrapNodeSet</a><br /> -</dd><dt>Non-static</dt><dd><a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -</dd><dt>Normalization</dt><dd><a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -</dd><dt>Normalization:</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -</dd><dt>Not</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -</dd><dt>NotaNumber</dt><dd><a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -</dd><dt>Notation</dt><dd><a href="html/libxml-tree.html#_xmlNotation">_xmlNotation</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationUse">xmlValidateNotationUse</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -</dd><dt>NotationDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -</dd><dt>NotationType</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -</dd><dt>Note:</dt><dd><a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-entities.html#xmlGetDtdEntity">xmlGetDtdEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -</dd><dt>Number</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -</dd><dt>NumberForms</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsNumberForms">xmlUCSIsNumberForms</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk5.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk5.html deleted file mode 100644 index f315b91b..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk5.html +++ /dev/null @@ -1,289 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index O-P for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index O-P for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter O:</h2><dl><dt>OBSOLETE:</dt><dd><a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -</dd><dt>ONCE</dt><dd><a href="html/libxml-tree.html#_xmlElementContent">_xmlElementContent</a><br /> -</dd><dt>OPT</dt><dd><a href="html/libxml-tree.html#_xmlElementContent">_xmlElementContent</a><br /> -</dd><dt>OUT</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -</dd><dt>OUT:</dt><dd><a href="html/libxml-HTMLtree.html#htmlDocDumpMemory">htmlDocDumpMemory</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemoryFormat">htmlDocDumpMemoryFormat</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemory">xmlDocDumpMemory</a><br /> -</dd><dt>Obsolete</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_LAX">XML_SCHEMAS_ANYATTR_LAX</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_SKIP">XML_SCHEMAS_ANYATTR_SKIP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_NSDEFAULT">XML_SCHEMAS_ELEM_NSDEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaFacet">_xmlSchemaFacet</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -</dd><dt>Obtain</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderLocatorBaseURI">xmlTextReaderLocatorBaseURI</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorLineNumber">xmlTextReaderLocatorLineNumber</a><br /> -</dd><dt>Ogham</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsOgham">xmlUCSIsOgham</a><br /> -</dd><dt>OldItalic</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsOldItalic">xmlUCSIsOldItalic</a><br /> -</dd><dt>One</dt><dd><a href="html/libxml-parserInternals.html#INPUT_CHUNK">INPUT_CHUNK</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -</dd><dt>Open</dt><dd><a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -</dd><dt>Opens</dt><dd><a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -</dd><dt>OpticalCharacterRecognition</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsOpticalCharacterRecognition">xmlUCSIsOpticalCharacterRecognition</a><br /> -</dd><dt>Optional</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -</dd><dt>Oriya</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsOriya">xmlUCSIsOriya</a><br /> -</dd><dt>Osmanya</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsOsmanya">xmlUCSIsOsmanya</a><br /> -</dd><dt>Other</dt><dd><a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>Otherwise</dt><dd><a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -</dd><dt>Output</dt><dd><a href="html/libxml-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a><br /> -</dd><dt>OutputBufferCreateFilenameFunc</dt><dd><a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameDefault">xmlOutputBufferCreateFilenameDefault</a><br /> -</dd><dt>Override</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -</dd></dl><h2>Letter P:</h2><dl><dt>P32</dt><dd><a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -</dd><dt>PCDATA</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-tree.html#_xmlElementContent">_xmlElementContent</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -</dd><dt>PEDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -</dd><dt>PEDef</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -</dd><dt>PEReference</dt><dd><a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -</dd><dt>PEs</dt><dd><a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>PITarget</dt><dd><a href="html/libxml-parserInternals.html#xmlParsePI">xmlParsePI</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePITarget">xmlParsePITarget</a><br /> -</dd><dt>PIs</dt><dd><a href="html/libxml-tree.html#xmlDocGetRootElement">xmlDocGetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -</dd><dt>PLUS</dt><dd><a href="html/libxml-tree.html#_xmlElementContent">_xmlElementContent</a><br /> -</dd><dt>POST</dt><dd><a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a><br /> -</dd><dt>PSVI</dt><dd><a href="html/libxml-tree.html#_xmlAttr">_xmlAttr</a><br /> -<a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -</dd><dt>PUBLIC</dt><dd><a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlCreateIntSubset">xmlCreateIntSubset</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -</dd><dt>PUT</dt><dd><a href="html/libxml-xmlIO.html#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a><br /> -</dd><dt>Parameter</dt><dd><a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -</dd><dt>Parameter-entity</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -</dd><dt>Parse</dt><dd><a href="html/libxml-DOCBparser.html#docbParseChunk">docbParseChunk</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseChunk">htmlParseChunk</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -<a href="html/libxml-parser.html#xmlParseChunk">xmlParseChunk</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseContent">xmlParseContent</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -<a href="html/libxml-uri.html#xmlParseURI">xmlParseURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -<a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> -<a href="html/libxml-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a><br /> -<a href="html/libxml-tree.html#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvalExpr">xmlXPathEvalExpr</a><br /> -</dd><dt>Parsed</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -</dd><dt>ParserInputBufferCreateFilenameFunc</dt><dd><a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameDefault">xmlParserInputBufferCreateFilenameDefault</a><br /> -</dd><dt>Parses</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadAttributeValue">xmlTextReaderReadAttributeValue</a><br /> -</dd><dt>Parsing</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>Part</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -</dd><dt>Path</dt><dd><a href="html/libxml-tree.html#xmlGetNodePath">xmlGetNodePath</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEval">xmlXPathEval</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEval">xmlXPtrEval</a><br /> -</dd><dt>People</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -</dd><dt>PhoneticExtensions</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsPhoneticExtensions">xmlUCSIsPhoneticExtensions</a><br /> -</dd><dt>Please</dt><dd><a href="html/libxml-xmlIO.html#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a><br /> -</dd><dt>Pointer</dt><dd><a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -</dd><dt>Points</dt><dd><a href="html/libxml-xpointer.html#xmlXPtrNewRangePoints">xmlXPtrNewRangePoints</a><br /> -</dd><dt>Pop</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGValidatePopElement">xmlRelaxNGValidatePopElement</a><br /> -<a href="html/libxml-valid.html#xmlValidatePopElement">xmlValidatePopElement</a><br /> -</dd><dt>Pops</dt><dd><a href="html/libxml-parserInternals.html#inputPop">inputPop</a><br /> -<a href="html/libxml-parserInternals.html#namePop">namePop</a><br /> -<a href="html/libxml-parserInternals.html#nodePop">nodePop</a><br /> -<a href="html/libxml-xpathInternals.html#valuePop">valuePop</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopBoolean">xmlXPathPopBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopExternal">xmlXPathPopExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNodeSet">xmlXPathPopNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNumber">xmlXPathPopNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopString">xmlXPathPopString</a><br /> -</dd><dt>Position</dt><dd><a href="html/libxml-parser.html#_xmlParserNodeInfo">_xmlParserNodeInfo</a><br /> -</dd><dt>Possibility</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -</dd><dt>Precompiled</dt><dd><a href="html/libxml-xpath.html#xmlXPathCompiledEval">xmlXPathCompiledEval</a><br /> -</dd><dt>Predicate</dt><dd><a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a><br /> -</dd><dt>PredicateExpr</dt><dd><a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a><br /> -</dd><dt>Prefix</dt><dd><a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstName">xmlTextReaderConstName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderName">xmlTextReaderName</a><br /> -</dd><dt>PrefixDef</dt><dd><a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -</dd><dt>Print</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegexpPrint">xmlRegexpPrint</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintNode">xmlShellPrintNode</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathError">xmlShellPrintXPathError</a><br /> -</dd><dt>Prints</dt><dd><a href="html/libxml-uri.html#xmlPrintURI">xmlPrintURI</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathResult">xmlShellPrintXPathResult</a><br /> -</dd><dt>PrivateUse</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsPrivateUse">xmlUCSIsPrivateUse</a><br /> -</dd><dt>PrivateUseArea</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsPrivateUseArea">xmlUCSIsPrivateUseArea</a><br /> -</dd><dt>Processing</dt><dd><a href="html/libxml-catalog.html#XML_CATALOG_PI">XML_CATALOG_PI</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePI">xmlParsePI</a><br /> -</dd><dt>Productions</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -</dd><dt>Proper</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>Prototype</dt><dd><a href="html/libxml-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a><br /> -</dd><dt>Provide</dt><dd><a href="html/libxml-SAX.html#getColumnNumber">getColumnNumber</a><br /> -<a href="html/libxml-SAX.html#getLineNumber">getLineNumber</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetColumnNumber">xmlSAX2GetColumnNumber</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetLineNumber">xmlSAX2GetLineNumber</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserColumnNumber">xmlTextReaderGetParserColumnNumber</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserLineNumber">xmlTextReaderGetParserLineNumber</a><br /> -</dd><dt>Provides</dt><dd><a href="html/libxml-SAX.html#getPublicId">getPublicId</a><br /> -<a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemBlocks">xmlMemBlocks</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemUsed">xmlMemUsed</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPEncoding">xmlNanoHTTPEncoding</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMimeType">xmlNanoHTTPMimeType</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRedir">xmlNanoHTTPRedir</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetPublicId">xmlSAX2GetPublicId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderAttributeCount">xmlTextReaderAttributeCount</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstValue">xmlTextReaderConstValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttribute">xmlTextReaderGetAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNo">xmlTextReaderGetAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNs">xmlTextReaderGetAttributeNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderValue">xmlTextReaderValue</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -</dd><dt>Proxy</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -</dd><dt>Proxy-Authenticate</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a><br /> -</dd><dt>PubidChar</dt><dd><a href="html/libxml-parserInternals.html#IS_PUBIDCHAR">IS_PUBIDCHAR</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePubidLiteral">xmlParsePubidLiteral</a><br /> -</dd><dt>PubidLiteral</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePubidLiteral">xmlParsePubidLiteral</a><br /> -</dd><dt>Public</dt><dd><a href="html/libxml-tree.html#_xmlNotation">_xmlNotation</a><br /> -<a href="html/libxml-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlLoadExternalEntity">xmlLoadExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -</dd><dt>PublicID</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -</dd><dt>Push</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushElement">xmlValidatePushElement</a><br /> -</dd><dt>Pushes</dt><dd><a href="html/libxml-parserInternals.html#inputPush">inputPush</a><br /> -<a href="html/libxml-parserInternals.html#namePush">namePush</a><br /> -<a href="html/libxml-parserInternals.html#nodePush">nodePush</a><br /> -<a href="html/libxml-xpathInternals.html#valuePush">valuePush</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnBoolean">xmlXPathReturnBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnEmptyNodeSet">xmlXPathReturnEmptyNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnEmptyString">xmlXPathReturnEmptyString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnExternal">xmlXPathReturnExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnFalse">xmlXPathReturnFalse</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnNodeSet">xmlXPathReturnNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnNumber">xmlXPathReturnNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnString">xmlXPathReturnString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnTrue">xmlXPathReturnTrue</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk6.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk6.html deleted file mode 100644 index 6e4a169d..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk6.html +++ /dev/null @@ -1,284 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index Q-R for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index Q-R for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter Q:</h2><dl><dt>QName</dt><dd><a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -<a href="html/libxml-dict.html#xmlDictQLookup">xmlDictQLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup">xmlHashQLookup</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEndTag">xmlParseEndTag</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewQNameValue">xmlSchemaNewQNameValue</a><br /> -<a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrQEqual">xmlStrQEqual</a><br /> -<a href="html/libxml-tree.html#xmlValidateQName">xmlValidateQName</a><br /> -</dd><dt>QNames</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup2">xmlHashQLookup2</a><br /> -</dd><dt>QUIT</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPQuit">xmlNanoFTPQuit</a><br /> -</dd><dt>Qualified</dt><dd><a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -</dd><dt>Query</dt><dd><a href="html/libxml-dict.html#xmlDictSize">xmlDictSize</a><br /> -<a href="html/libxml-hash.html#xmlHashSize">xmlHashSize</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</dd><dt>Question:</dt><dd><a href="html/libxml-parserInternals.html#xmlParseTextDecl">xmlParseTextDecl</a><br /> -</dd></dl><h2>Letter R:</h2><dl><dt>REC</dt><dd><a href="html/libxml-parserInternals.html#IS_BASECHAR">IS_BASECHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_COMBINING">IS_COMBINING</a><br /> -<a href="html/libxml-parserInternals.html#IS_DIGIT">IS_DIGIT</a><br /> -</dd><dt>REC-xml</dt><dd><a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -</dd><dt>REFs</dt><dd><a href="html/libxml-parser.html#XML_DETECT_IDS">XML_DETECT_IDS</a><br /> -<a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -</dd><dt>REQUIRED</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>RFC</dt><dd><a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -</dd><dt>RFC2396</dt><dd><a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd><dt>Raises</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSetArityError">xmlXPathSetArityError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSetError">xmlXPathSetError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSetTypeError">xmlXPathSetTypeError</a><br /> -</dd><dt>Read</dt><dd><a href="html/libxml-xmlIO.html#xmlFileRead">xmlFileRead</a><br /> -<a href="html/libxml-parser.html#xmlGetFeature">xmlGetFeature</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPRead">xmlIOFTPRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPRead">xmlIOHTTPRead</a><br /> -<a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstValue">xmlTextReaderConstValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserProp">xmlTextReaderGetParserProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -</dd><dt>Reader</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -</dd><dt>Readers</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -</dd><dt>Reads</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderExpand">xmlTextReaderExpand</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadString">xmlTextReaderReadString</a><br /> -</dd><dt>Rec</dt><dd><a href="html/libxml-valid.html#xmlValidateDocument">xmlValidateDocument</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -</dd><dt>Receive</dt><dd><a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -</dd><dt>Receiving</dt><dd><a href="html/libxml-parser.html#charactersSAXFunc">charactersSAXFunc</a><br /> -<a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> -</dd><dt>Recurse</dt><dd><a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -</dd><dt>Recursion</dt><dd><a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -</dd><dt>Ref</dt><dd><a href="html/libxml-tree.html#_xmlRef">_xmlRef</a><br /> -<a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> -<a href="html/libxml-valid.html#xmlFreeRefTable">xmlFreeRefTable</a><br /> -<a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -<a href="html/libxml-valid.html#xmlRemoveRef">xmlRemoveRef</a><br /> -</dd><dt>Reference</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseCharRef">htmlParseCharRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseContent">xmlParseContent</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -</dd><dt>Reference:</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -</dd><dt>References</dt><dd><a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -</dd><dt>Reflects</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_QUALIF_ATTR">XML_SCHEMAS_QUALIF_ATTR</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_QUALIF_ELEM">XML_SCHEMAS_QUALIF_ELEM</a><br /> -</dd><dt>Refresh</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -</dd><dt>Reg</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataCompile">xmlAutomataCompile</a><br /> -</dd><dt>Register</dt><dd><a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -<a href="html/libxml-entities.html#xmlAddDocEntity">xmlAddDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlAddDtdEntity">xmlAddDtdEntity</a><br /> -<a href="html/libxml-valid.html#xmlAddElementDecl">xmlAddElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlAddID">xmlAddID</a><br /> -<a href="html/libxml-valid.html#xmlAddNotationDecl">xmlAddNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> -<a href="html/libxml-encoding.html#xmlRegisterCharEncodingHandler">xmlRegisterCharEncodingHandler</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFunc">xmlXPathRegisterFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncNS">xmlXPathRegisterFuncNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterNs">xmlXPathRegisterNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariable">xmlXPathRegisterVariable</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableNS">xmlXPathRegisterVariableNS</a><br /> -</dd><dt>RegisterNodeFunc</dt><dd><a href="html/libxml-globals.html#xmlRegisterNodeDefault">xmlRegisterNodeDefault</a><br /> -</dd><dt>Registers</dt><dd><a href="html/libxml-encoding.html#xmlAddEncodingAlias">xmlAddEncodingAlias</a><br /> -<a href="html/libxml-globals.html#xmlDeregisterNodeDefault">xmlDeregisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameDefault">xmlOutputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameDefault">xmlParserInputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterDefaultInputCallbacks">xmlRegisterDefaultInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterDefaultOutputCallbacks">xmlRegisterDefaultOutputCallbacks</a><br /> -<a href="html/libxml-globals.html#xmlRegisterNodeDefault">xmlRegisterNodeDefault</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterAllFunctions">xmlXPathRegisterAllFunctions</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncLookup">xmlXPathRegisterFuncLookup</a><br /> -</dd><dt>Relative</dt><dd><a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -</dd><dt>Relax-NG</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParse">xmlRelaxNGParse</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserStructuredErrors">xmlRelaxNGSetParserStructuredErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidStructuredErrors">xmlRelaxNGSetValidStructuredErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateDoc">xmlRelaxNGValidateDoc</a><br /> -</dd><dt>RelaxNG</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGCleanupTypes">xmlRelaxNGCleanupTypes</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGDump">xmlRelaxNGDump</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGDumpTree">xmlRelaxNGDumpTree</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGFree">xmlRelaxNGFree</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParse">xmlRelaxNGParse</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePopElement">xmlRelaxNGValidatePopElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushCData">xmlRelaxNGValidatePushCData</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -</dd><dt>RelaxNGs</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewMemParserCtxt">xmlRelaxNGNewMemParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewParserCtxt">xmlRelaxNGNewParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewValidCtxt">xmlRelaxNGNewValidCtxt</a><br /> -</dd><dt>Remove</dt><dd><a href="html/libxml-catalog.html#xmlACatalogRemove">xmlACatalogRemove</a><br /> -<a href="html/libxml-tree.html#xmlBufferShrink">xmlBufferShrink</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogRemove">xmlCatalogRemove</a><br /> -<a href="html/libxml-list.html#xmlListClear">xmlListClear</a><br /> -<a href="html/libxml-list.html#xmlListRemoveAll">xmlListRemoveAll</a><br /> -<a href="html/libxml-list.html#xmlListRemoveFirst">xmlListRemoveFirst</a><br /> -<a href="html/libxml-list.html#xmlListRemoveLast">xmlListRemoveLast</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-valid.html#xmlRemoveID">xmlRemoveID</a><br /> -<a href="html/libxml-valid.html#xmlRemoveRef">xmlRemoveRef</a><br /> -<a href="html/libxml-tree.html#xmlUnsetNsProp">xmlUnsetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlUnsetProp">xmlUnsetProp</a><br /> -</dd><dt>Removes</dt><dd><a href="html/libxml-list.html#xmlListPopBack">xmlListPopBack</a><br /> -<a href="html/libxml-list.html#xmlListPopFront">xmlListPopFront</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCollapseString">xmlSchemaCollapseString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetDel">xmlXPathNodeSetDel</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetRemove">xmlXPathNodeSetRemove</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetDel">xmlXPtrLocationSetDel</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetRemove">xmlXPtrLocationSetRemove</a><br /> -</dd><dt>Replace</dt><dd><a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -</dd><dt>Replaces</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaWhiteSpaceReplace">xmlSchemaWhiteSpaceReplace</a><br /> -</dd><dt>Required</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -</dd><dt>Reset</dt><dd><a href="html/libxml-HTMLparser.html#htmlCtxtReset">htmlCtxtReset</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReset">xmlCtxtReset</a><br /> -<a href="html/libxml-parser.html#xmlCtxtResetPush">xmlCtxtResetPush</a><br /> -</dd><dt>Resize</dt><dd><a href="html/libxml-tree.html#xmlBufferResize">xmlBufferResize</a><br /> -</dd><dt>Resolves</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> -</dd><dt>Resolving</dt><dd><a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -</dd><dt>Retrieve</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetErrorHandler">xmlTextReaderGetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsValid">xmlTextReaderIsValid</a><br /> -</dd><dt>Return</dt><dd><a href="html/libxml-xpathInternals.html#CHECK_TYPE0">CHECK_TYPE0</a><br /> -</dd><dt>Returns</dt><dd><a href="html/libxml-HTMLparser.html#htmlDefaultSubelement">htmlDefaultSubelement</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHereDesc">htmlElementAllowedHereDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlRequiredAttrs">htmlRequiredAttrs</a><br /> -<a href="html/libxml-entities.html#xmlGetDocEntity">xmlGetDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetDtdEntity">xmlGetDtdEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetParameterEntity">xmlGetParameterEntity</a><br /> -<a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -<a href="html/libxml-list.html#xmlLinkGetData">xmlLinkGetData</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCheckError">xmlXPathCheckError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathGetContextNode">xmlXPathGetContextNode</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathGetDocument">xmlXPathGetDocument</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathGetError">xmlXPathGetError</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetGetLength">xmlXPathNodeSetGetLength</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetIsEmpty">xmlXPathNodeSetIsEmpty</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStackIsExternal">xmlXPathStackIsExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStackIsNodeSet">xmlXPathStackIsNodeSet</a><br /> -</dd><dt>Returns:</dt><dd><a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -</dd><dt>Reverse</dt><dd><a href="html/libxml-list.html#xmlListReverse">xmlListReverse</a><br /> -</dd><dt>Root</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -</dd><dt>Runic</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsRunic">xmlUCSIsRunic</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk7.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk7.html deleted file mode 100644 index ae29cb48..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk7.html +++ /dev/null @@ -1,308 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index S-S for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index S-S for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter S:</h2><dl><dt>SAX1</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_SAX1_ENABLED">LIBXML_SAX1_ENABLED</a><br /> -</dd><dt>SAX2</dt><dd><a href="html/libxml-parser.html#XML_SAX2_MAGIC">XML_SAX2_MAGIC</a><br /> -<a href="html/libxml-parser.html#endElementNsSAX2Func">endElementNsSAX2Func</a><br /> -<a href="html/libxml-SAX.html#initdocbDefaultSAXHandler">initdocbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#inithtmlDefaultSAXHandler">inithtmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-SAX2.html#xmlDefaultSAXHandlerInit">xmlDefaultSAXHandlerInit</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElementNs">xmlSAX2EndElementNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDocbDefaultSAXHandler">xmlSAX2InitDocbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitHtmlDefaultSAXHandler">xmlSAX2InitHtmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -</dd><dt>SAX::substituteEntities</dt><dd><a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -</dd><dt>SDDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -</dd><dt>SDDecl?</dt><dd><a href="html/libxml-parserInternals.html#xmlParseXMLDecl">xmlParseXMLDecl</a><br /> -</dd><dt>SEQ</dt><dd><a href="html/libxml-tree.html#_xmlElementContent">_xmlElementContent</a><br /> -</dd><dt>SGML</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_DOCB_ENABLED">LIBXML_DOCB_ENABLED</a><br /> -<a href="html/libxml-DOCBparser.html#docbCreateFileParserCtxt">docbCreateFileParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-DOCBparser.html#docbFreeParserCtxt">docbFreeParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseDoc">docbParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseDocument">docbParseDocument</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseFile">docbParseFile</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogConvert">xmlCatalogConvert</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogIsEmpty">xmlCatalogIsEmpty</a><br /> -<a href="html/libxml-catalog.html#xmlConvertSGMLCatalog">xmlConvertSGMLCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlNewCatalog">xmlNewCatalog</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -</dd><dt>SGMLSOURCE</dt><dd><a href="html/libxml-SAX.html#getPublicId">getPublicId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetPublicId">xmlSAX2GetPublicId</a><br /> -</dd><dt>SITE</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -</dd><dt>STag</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseElement">htmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -</dd><dt>SYSTEM</dt><dd><a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-SAX.html#externalSubset">externalSubset</a><br /> -<a href="html/libxml-parser.html#externalSubsetSAXFunc">externalSubsetSAXFunc</a><br /> -<a href="html/libxml-SAX.html#internalSubset">internalSubset</a><br /> -<a href="html/libxml-parser.html#internalSubsetSAXFunc">internalSubsetSAXFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ExternalSubset">xmlSAX2ExternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InternalSubset">xmlSAX2InternalSubset</a><br /> -</dd><dt>Same</dt><dd><a href="html/libxml-parserInternals.html#IS_PUBIDCHAR_CH">IS_PUBIDCHAR_CH</a><br /> -</dd><dt>Save</dt><dd><a href="html/libxml-xmlerror.html#xmlCopyError">xmlCopyError</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-uri.html#xmlSaveUri">xmlSaveUri</a><br /> -</dd><dt>Scan</dt><dd><a href="html/libxml-hash.html#xmlHashCopy">xmlHashCopy</a><br /> -<a href="html/libxml-hash.html#xmlHashScan">xmlHashScan</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull">xmlHashScanFull</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -</dd><dt>Schema</dt><dd><a href="html/libxml-xmlschemas.html#xmlSchemaDump">xmlSchemaDump</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaFree">xmlSchemaFree</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeFacet">xmlSchemaFreeFacet</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFreeType">xmlSchemaFreeType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaParse">xmlSchemaParse</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -</dd><dt>Schemas</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_SCHEMAS_ENABLED">LIBXML_SCHEMAS_ENABLED</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGCleanupTypes">xmlRelaxNGCleanupTypes</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCleanupTypes">xmlSchemaCleanupTypes</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeValue">xmlSchemaFreeValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaInitTypes">xmlSchemaInitTypes</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewDocParserCtxt">xmlSchemaNewDocParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewMemParserCtxt">xmlSchemaNewMemParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewParserCtxt">xmlSchemaNewParserCtxt</a><br /> -</dd><dt>Schematron</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_SCHEMATRON_ENABLED">LIBXML_SCHEMATRON_ENABLED</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronFree">xmlSchematronFree</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronParse">xmlSchematronParse</a><br /> -</dd><dt>Schematrons</dt><dd><a href="html/libxml-schematron.html#xmlSchematronNewDocParserCtxt">xmlSchematronNewDocParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewMemParserCtxt">xmlSchematronNewMemParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewParserCtxt">xmlSchematronNewParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewValidCtxt">xmlSchematronNewValidCtxt</a><br /> -</dd><dt>Script</dt><dd><a href="html/libxml-HTMLparser.html#htmlIsScriptAttribute">htmlIsScriptAttribute</a><br /> -</dd><dt>Search</dt><dd><a href="html/libxml-encoding.html#xmlFindCharEncodingHandler">xmlFindCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingHandler">xmlGetCharEncodingHandler</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdAttrDesc">xmlGetDtdAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdElementDesc">xmlGetDtdElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdNotationDesc">xmlGetDtdNotationDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQElementDesc">xmlGetDtdQElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetID">xmlGetID</a><br /> -<a href="html/libxml-tree.html#xmlGetLastChild">xmlGetLastChild</a><br /> -<a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNsList">xmlGetNsList</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -<a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -<a href="html/libxml-list.html#xmlListReverseSearch">xmlListReverseSearch</a><br /> -<a href="html/libxml-list.html#xmlListSearch">xmlListSearch</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookup">xmlXPathFunctionLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookupNS">xmlXPathFunctionLookupNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNsLookup">xmlXPathNsLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookup">xmlXPathVariableLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookupNS">xmlXPathVariableLookupNS</a><br /> -</dd><dt>Searches</dt><dd><a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -</dd><dt>Second</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>Section</dt><dd><a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -<a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -</dd><dt>See</dt><dd><a href="html/libxml-list.html#xmlLinkGetData">xmlLinkGetData</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -</dd><dt>Seems</dt><dd><a href="html/libxml-parserInternals.html#xmlParseTextDecl">xmlParseTextDecl</a><br /> -</dd><dt>Semi</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a><br /> -</dd><dt>Send</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPQuit">xmlNanoFTPQuit</a><br /> -</dd><dt>Serialize</dt><dd><a href="html/libxml-tree.html#xmlAttrSerializeTxtContent">xmlAttrSerializeTxtContent</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpDump">xmlExpDump</a><br /> -</dd><dt>Sets</dt><dd><a href="html/libxml-HTMLtree.html#htmlSetMetaEncoding">htmlSetMetaEncoding</a><br /> -<a href="html/libxml-tree.html#xmlBufferSetAllocationScheme">xmlBufferSetAllocationScheme</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -</dd><dt>Setup</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewDoc">xmlReaderNewDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewMemory">xmlReaderNewMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewWalker">xmlReaderNewWalker</a><br /> -<a href="html/libxml-parser.html#xmlSetupParserForBuffer">xmlSetupParserForBuffer</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetup">xmlTextReaderSetup</a><br /> -</dd><dt>Shavian</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsShavian">xmlUCSIsShavian</a><br /> -</dd><dt>Shell</dt><dd><a href="html/libxml-debugXML.html#xmlShellReadlineFunc">xmlShellReadlineFunc</a><br /> -</dd><dt>Shema</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGParse">xmlRelaxNGParse</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaParse">xmlSchemaParse</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronParse">xmlSchematronParse</a><br /> -</dd><dt>Should</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -<a href="html/libxml-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a><br /> -<a href="html/libxml-tree.html#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a><br /> -</dd><dt>Show</dt><dd><a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -</dd><dt>Signature</dt><dd><a href="html/libxml-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a><br /> -</dd><dt>Similarly</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -</dd><dt>Simply</dt><dd><a href="html/libxml-uri.html#xmlCreateURI">xmlCreateURI</a><br /> -</dd><dt>Since</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -</dd><dt>Sinhala</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsSinhala">xmlUCSIsSinhala</a><br /> -</dd><dt>Skip</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_SKIP">XML_SCHEMAS_ANYATTR_SKIP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_SKIP">XML_SCHEMAS_ANY_SKIP</a><br /> -<a href="html/libxml-parserInternals.html#xmlNextChar">xmlNextChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNext">xmlTextReaderNext</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -</dd><dt>Skips</dt><dd><a href="html/libxml-parserInternals.html#MOVETO_ENDTAG">MOVETO_ENDTAG</a><br /> -<a href="html/libxml-parserInternals.html#MOVETO_STARTTAG">MOVETO_STARTTAG</a><br /> -<a href="html/libxml-parserInternals.html#SKIP_EOL">SKIP_EOL</a><br /> -</dd><dt>SmallFormVariants</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsSmallFormVariants">xmlUCSIsSmallFormVariants</a><br /> -</dd><dt>Some</dt><dd><a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -</dd><dt>Sort</dt><dd><a href="html/libxml-list.html#xmlListSort">xmlListSort</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetSort">xmlXPathNodeSetSort</a><br /> -</dd><dt>SpacingModifierLetters</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsSpacingModifierLetters">xmlUCSIsSpacingModifierLetters</a><br /> -</dd><dt>Spec</dt><dd><a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -</dd><dt>Special</dt><dd><a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_0">XML_CTXT_FINISH_DTD_0</a><br /> -<a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_1">XML_CTXT_FINISH_DTD_1</a><br /> -<a href="html/libxml-parser.html#XML_SAX2_MAGIC">XML_SAX2_MAGIC</a><br /> -</dd><dt>Specials</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsSpecials">xmlUCSIsSpecials</a><br /> -</dd><dt>Speed</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>Standalone</dt><dd><a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -</dd><dt>Start</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPOpen">xmlNanoFTPOpen</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartAttribute">xmlTextWriterStartAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartAttributeNS">xmlTextWriterStartAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartCDATA">xmlTextWriterStartCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartComment">xmlTextWriterStartComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTD">xmlTextWriterStartDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDAttlist">xmlTextWriterStartDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDElement">xmlTextWriterStartDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDEntity">xmlTextWriterStartDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDocument">xmlTextWriterStartDocument</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartElement">xmlTextWriterStartElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartElementNS">xmlTextWriterStartElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartPI">xmlTextWriterStartPI</a><br /> -</dd><dt>StringType</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -</dd><dt>Strings</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>Subcode</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>Subset</dt><dd><a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>Super</dt><dd><a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -</dd><dt>SuperscriptsandSubscripts</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsSuperscriptsandSubscripts">xmlUCSIsSuperscriptsandSubscripts</a><br /> -</dd><dt>SupplementalArrows-A</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementalArrowsA">xmlUCSIsSupplementalArrowsA</a><br /> -</dd><dt>SupplementalArrows-B</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementalArrowsB">xmlUCSIsSupplementalArrowsB</a><br /> -</dd><dt>SupplementalMathematicalOperators</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementalMathematicalOperators">xmlUCSIsSupplementalMathematicalOperators</a><br /> -</dd><dt>SupplementaryPrivateUseArea-A</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementaryPrivateUseAreaA">xmlUCSIsSupplementaryPrivateUseAreaA</a><br /> -</dd><dt>SupplementaryPrivateUseArea-B</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementaryPrivateUseAreaB">xmlUCSIsSupplementaryPrivateUseAreaB</a><br /> -</dd><dt>Syriac</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsSyriac">xmlUCSIsSyriac</a><br /> -</dd><dt>System</dt><dd><a href="html/libxml-tree.html#_xmlNotation">_xmlNotation</a><br /> -<a href="html/libxml-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -</dd><dt>SystemLiteral</dt><dd><a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSystemLiteral">xmlParseSystemLiteral</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk8.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk8.html deleted file mode 100644 index 316f827f..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk8.html +++ /dev/null @@ -1,302 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index T-U for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index T-U for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter T:</h2><dl><dt>TEXT</dt><dd><a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddChildList">xmlAddChildList</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddSibling">xmlAddSibling</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -</dd><dt>TEXTs</dt><dd><a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a><br /> -<a href="html/libxml-tree.html#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a><br /> -</dd><dt>TODO</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -</dd><dt>TODO:</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterMemory">xmlNewTextWriterMemory</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRawLen">xmlTextWriterWriteRawLen</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAttribute">xmlXPathNextAttribute</a><br /> -</dd><dt>TRUE</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDEntity">xmlTextWriterStartDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDEntity">xmlTextWriterWriteDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntity">xmlTextWriterWriteDTDExternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDInternalEntity">xmlTextWriterWriteDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDInternalEntity">xmlTextWriterWriteFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDInternalEntity">xmlTextWriterWriteVFormatDTDInternalEntity</a><br /> -</dd><dt>Tagalog</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsTagalog">xmlUCSIsTagalog</a><br /> -</dd><dt>Tagbanwa</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsTagbanwa">xmlUCSIsTagbanwa</a><br /> -</dd><dt>Tags</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsTags">xmlUCSIsTags</a><br /> -</dd><dt>TaiLe</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsTaiLe">xmlUCSIsTaiLe</a><br /> -</dd><dt>TaiXuanJingSymbols</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsTaiXuanJingSymbols">xmlUCSIsTaiXuanJingSymbols</a><br /> -</dd><dt>Take</dt><dd><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -</dd><dt>Takes</dt><dd><a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -</dd><dt>Tamil</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsTamil">xmlUCSIsTamil</a><br /> -</dd><dt>Telugu</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsTelugu">xmlUCSIsTelugu</a><br /> -</dd><dt>Test</dt><dd><a href="html/libxml-pattern.html#xmlPatternMatch">xmlPatternMatch</a><br /> -</dd><dt>Text</dt><dd><a href="html/libxml-tree.html#xmlNodeIsText">xmlNodeIsText</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadAttributeValue">xmlTextReaderReadAttributeValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadString">xmlTextReaderReadString</a><br /> -</dd><dt>TextDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseTextDecl">xmlParseTextDecl</a><br /> -</dd><dt>TextDecl?</dt><dd><a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseEntity">xmlParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExtParsedEnt">xmlParseExtParsedEnt</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -</dd><dt>Thaana</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsThaana">xmlUCSIsThaana</a><br /> -</dd><dt>Thai</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsThai">xmlUCSIsThai</a><br /> -</dd><dt>That</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -</dd><dt>Then</dt><dd><a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -</dd><dt>There</dt><dd><a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>Those</dt><dd><a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -</dd><dt>Thus:</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -</dd><dt>Tibetan</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsTibetan">xmlUCSIsTibetan</a><br /> -</dd><dt>Token</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNmtokenValue">xmlValidateNmtokenValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNmtokensValue">xmlValidateNmtokensValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -</dd><dt>TokenizedType</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -</dd><dt>Traversal</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAttribute">xmlXPathNextAttribute</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextChild">xmlXPathNextChild</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendant">xmlXPathNextDescendant</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextNamespace">xmlXPathNextNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextParent">xmlXPathNextParent</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextSelf">xmlXPathNextSelf</a><br /> -</dd><dt>Tree</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNewValueTree">xmlXPathNewValueTree</a><br /> -</dd><dt>Tree:-</dt><dd><a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -</dd><dt>Trickery:</dt><dd><a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -</dd><dt>Tries</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPConnect">xmlNanoFTPConnect</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCwd">xmlNanoFTPCwd</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPDele">xmlNanoFTPDele</a><br /> -</dd><dt>True</dt><dd><a href="html/libxml-debugXML.html#xmlBoolToText">xmlBoolToText</a><br /> -</dd><dt>Try</dt><dd><a href="html/libxml-catalog.html#xmlACatalogResolvePublic">xmlACatalogResolvePublic</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveSystem">xmlACatalogResolveSystem</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetPublic">xmlCatalogGetPublic</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetSystem">xmlCatalogGetSystem</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolvePublic">xmlCatalogResolvePublic</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolveSystem">xmlCatalogResolveSystem</a><br /> -<a href="html/libxml-tree.html#xmlIsXHTML">xmlIsXHTML</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocument">xmlValidateDocument</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -<a href="html/libxml-valid.html#xmlValidateElement">xmlValidateElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -</dd><dt>Type</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFreeType">xmlSchemaFreeType</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -</dd><dt>Types</dt><dd><a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -</dd></dl><h2>Letter U:</h2><dl><dt>UCS4</dt><dd><a href="html/libxml-xmlstring.html#xmlUTF8Charcmp">xmlUTF8Charcmp</a><br /> -</dd><dt>UNICODE</dt><dd><a href="html/libxml-HTMLparser.html#_htmlEntityDesc">_htmlEntityDesc</a><br /> -<a href="">c</a><br /> -</dd><dt>UNIX</dt><dd><a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -</dd><dt>UNUSED:</dt><dd><a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> -</dd><dt>URI-reference</dt><dd><a href="html/libxml-uri.html#xmlParseURI">xmlParseURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -<a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> -</dd><dt>URN</dt><dd><a href="html/libxml-SAX.html#globalNamespace">globalNamespace</a><br /> -<a href="html/libxml-SAX.html#namespaceDecl">namespaceDecl</a><br /> -</dd><dt>USER</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -</dd><dt>UTF16</dt><dd><a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -</dd><dt>UTF4</dt><dd><a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -</dd><dt>UTF8</dt><dd><a href="html/libxml-tree.html#_xmlBuffer">_xmlBuffer</a><br /> -<a href="">p</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Charcmp">xmlUTF8Charcmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Size">xmlUTF8Size</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strlen">xmlUTF8Strlen</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strloc">xmlUTF8Strloc</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strndup">xmlUTF8Strndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strpos">xmlUTF8Strpos</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsize">xmlUTF8Strsize</a><br /> -</dd><dt>Ugaritic</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsUgaritic">xmlUCSIsUgaritic</a><br /> -</dd><dt>Unescaping</dt><dd><a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -</dd><dt>Unicode</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_UNICODE_ENABLED">LIBXML_UNICODE_ENABLED</a><br /> -</dd><dt>UnifiedCanadianAboriginalSyllabics</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsUnifiedCanadianAboriginalSyllabics">xmlUCSIsUnifiedCanadianAboriginalSyllabics</a><br /> -</dd><dt>Unique</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -</dd><dt>Unix</dt><dd><a href="html/libxml-debugXML.html#xmlShellList">xmlShellList</a><br /> -</dd><dt>Unlink</dt><dd><a href="html/libxml-tree.html#xmlRemoveProp">xmlRemoveProp</a><br /> -<a href="html/libxml-tree.html#xmlReplaceNode">xmlReplaceNode</a><br /> -<a href="html/libxml-tree.html#xmlUnlinkNode">xmlUnlinkNode</a><br /> -</dd><dt>Unlinks</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</dd><dt>Unregisters</dt><dd><a href="html/libxml-encoding.html#xmlCleanupEncodingAliases">xmlCleanupEncodingAliases</a><br /> -<a href="html/libxml-encoding.html#xmlDelEncodingAlias">xmlDelEncodingAlias</a><br /> -</dd><dt>Update</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -</dd><dt>Upgrade</dt><dd><a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -</dd><dt>Use</dt><dd><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-parser.html#XML_DETECT_IDS">XML_DETECT_IDS</a><br /> -<a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlCopyNodeList">xmlCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseChar">xmlIsBaseChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlank">xmlIsBlank</a><br /> -<a href="html/libxml-chvalid.html#xmlIsChar">xmlIsChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombining">xmlIsCombining</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigit">xmlIsDigit</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtender">xmlIsExtender</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographic">xmlIsIdeographic</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar">xmlIsPubidChar</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewNodeEatName">xmlNewNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewPI">xmlNewPI</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-pattern.html#xmlPatternGetStreamCtxt">xmlPatternGetStreamCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -</dd><dt>Used</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_PROHIBITED">XML_SCHEMAS_ATTR_USE_PROHIBITED</a><br /> -<a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetDefaults">xmlCatalogGetDefaults</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDebug">xmlCatalogSetDebug</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaults">xmlCatalogSetDefaults</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -</dd><dt>User</dt><dd><a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -</dd><dt>UserCode</dt><dd><a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -</dd><dt>Uses</dt><dd><a href="html/libxml-tree.html#xmlNewNode">xmlNewNode</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk9.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk9.html deleted file mode 100644 index cf7f9d93..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIchunk9.html +++ /dev/null @@ -1,277 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>API Alphabetic Index V-Z for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>API Alphabetic Index V-Z for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><h2>Letter V:</h2><dl><dt>Valid</dt><dd><a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -</dd><dt>Validate</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateDoc">xmlRelaxNGValidateDoc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidateDoc">xmlSchematronValidateDoc</a><br /> -<a href="html/libxml-debugXML.html#xmlShellValidate">xmlShellValidate</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNameValue">xmlValidateNameValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNamesValue">xmlValidateNamesValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNmtokenValue">xmlValidateNmtokenValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNmtokensValue">xmlValidateNmtokensValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationUse">xmlValidateNotationUse</a><br /> -</dd><dt>Validity</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -</dd><dt>Value</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewValueTree">xmlXPathNewValueTree</a><br /> -</dd><dt>Values</dt><dd><a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumerationType">xmlParseEnumerationType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -</dd><dt>Variable</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathVariableLookup">xmlXPathVariableLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookupNS">xmlXPathVariableLookupNS</a><br /> -</dd><dt>VariationSelectors</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsVariationSelectors">xmlUCSIsVariationSelectors</a><br /> -</dd><dt>VariationSelectorsSupplement</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsVariationSelectorsSupplement">xmlUCSIsVariationSelectorsSupplement</a><br /> -</dd><dt>VersionInfo</dt><dd><a href="html/libxml-parserInternals.html#xmlParseVersionInfo">xmlParseVersionInfo</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseXMLDecl">xmlParseXMLDecl</a><br /> -</dd><dt>VersionInfo?</dt><dd><a href="html/libxml-parserInternals.html#xmlParseTextDecl">xmlParseTextDecl</a><br /> -</dd><dt>VersionNum</dt><dd><a href="html/libxml-parserInternals.html#xmlParseVersionInfo">xmlParseVersionInfo</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseVersionNum">xmlParseVersionNum</a><br /> -</dd></dl><h2>Letter W:</h2><dl><dt>W3C</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -</dd><dt>WARNING:</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -</dd><dt>WFC:</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -</dd><dt>WWW-Authenticate</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a><br /> -</dd><dt>WXS</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -</dd><dt>Walk</dt><dd><a href="html/libxml-list.html#xmlListReverseWalk">xmlListReverseWalk</a><br /> -<a href="html/libxml-list.html#xmlListWalk">xmlListWalk</a><br /> -</dd><dt>Warning</dt><dd><a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -</dd><dt>Was</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -</dd><dt>Well</dt><dd><a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseEntity">xmlParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-parser.html#xmlRecoverDoc">xmlRecoverDoc</a><br /> -<a href="html/libxml-parser.html#xmlRecoverFile">xmlRecoverFile</a><br /> -<a href="html/libxml-parser.html#xmlRecoverMemory">xmlRecoverMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -</dd><dt>What</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -<a href="html/libxml-SAX.html#notationDecl">notationDecl</a><br /> -<a href="html/libxml-parser.html#notationDeclSAXFunc">notationDeclSAXFunc</a><br /> -<a href="html/libxml-SAX.html#unparsedEntityDecl">unparsedEntityDecl</a><br /> -<a href="html/libxml-parser.html#unparsedEntityDeclSAXFunc">unparsedEntityDeclSAXFunc</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2NotationDecl">xmlSAX2NotationDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2UnparsedEntityDecl">xmlSAX2UnparsedEntityDecl</a><br /> -</dd><dt>When</dt><dd><a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -</dd><dt>Wherever</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -</dd><dt>Whitespace</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -</dd><dt>Will</dt><dd><a href="html/libxml-tree.html#xmlSaveFile">xmlSaveFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -</dd><dt>With</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEndTag">xmlParseEndTag</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -</dd><dt>Working</dt><dd><a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -</dd><dt>Wrap</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathWrapNodeSet">xmlXPathWrapNodeSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrWrapLocationSet">xmlXPtrWrapLocationSet</a><br /> -</dd><dt>Wrapper</dt><dd><a href="html/libxml-xmlIO.html#xmlFileOpen">xmlFileOpen</a><br /> -</dd><dt>Wraps</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathWrapCString">xmlXPathWrapCString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapExternal">xmlXPathWrapExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapString">xmlXPathWrapString</a><br /> -</dd><dt>Writes</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterFullEndElement">xmlTextWriterFullEndElement</a><br /> -</dd></dl><h2>Letter X:</h2><dl><dt>XHTML</dt><dd><a href="html/libxml-tree.html#xmlIsXHTML">xmlIsXHTML</a><br /> -</dd><dt>XInclude</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_XINCLUDE_ENABLED">LIBXML_XINCLUDE_ENABLED</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_NS">XINCLUDE_NS</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeFreeContext">xmlXIncludeFreeContext</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeNewContext">xmlXIncludeNewContext</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcess">xmlXIncludeProcess</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlags">xmlXIncludeProcessFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTree">xmlXIncludeProcessTree</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTreeFlags">xmlXIncludeProcessTreeFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeSetFlags">xmlXIncludeSetFlags</a><br /> -</dd><dt>XInclude?</dt><dd><a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -</dd><dt>XLINK_TYPE_NONE</dt><dd><a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -</dd><dt>XML-1</dt><dd><a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -</dd><dt>XMLDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseXMLDecl">xmlParseXMLDecl</a><br /> -</dd><dt>XMLDecl?</dt><dd><a href="html/libxml-parser.html#xmlParseDocument">xmlParseDocument</a><br /> -</dd><dt>XMLSchema</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> -</dd><dt>XML_ATTRIBUTE_DECL</dt><dd><a href="html/libxml-tree.html#_xmlAttribute">_xmlAttribute</a><br /> -</dd><dt>XML_ATTRIBUTE_ENUMERATION</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -</dd><dt>XML_ATTRIBUTE_FIXED</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>XML_ATTRIBUTE_IMPLIED</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>XML_ATTRIBUTE_NODE</dt><dd><a href="html/libxml-tree.html#_xmlAttr">_xmlAttr</a><br /> -</dd><dt>XML_ATTRIBUTE_NONE</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>XML_ATTRIBUTE_NOTATION</dt><dd><a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -</dd><dt>XML_ATTRIBUTE_REQUIRED</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -</dd><dt>XML_BUFFER_ALLOC_DOUBLEIT</dt><dd><a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -</dd><dt>XML_BUFFER_ALLOC_EXACT</dt><dd><a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -</dd><dt>XML_CAST_FPTR</dt><dd><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -</dd><dt>XML_CATA_PREFER_PUBLIC</dt><dd><a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -</dd><dt>XML_CATA_PREFER_SYSTEM</dt><dd><a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -</dd><dt>XML_CHAR_ENCODING_</dt><dd><a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -</dd><dt>XML_CHAR_ENCODING_NONE</dt><dd><a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -</dd><dt>XML_DOCUMENT_NODE</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -</dd><dt>XML_DTD_NODE</dt><dd><a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -</dd><dt>XML_ELEMENT_DECL</dt><dd><a href="html/libxml-tree.html#_xmlElement">_xmlElement</a><br /> -</dd><dt>XML_ELEMENT_TYPE_xxx</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -</dd><dt>XML_ENTITY_DECL</dt><dd><a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -</dd><dt>XML_ERR_OK</dt><dd><a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -</dd><dt>XML_SCHEMAS_ELEM_GLOBAL</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_TOPLEVEL">XML_SCHEMAS_ELEM_TOPLEVEL</a><br /> -</dd><dt>XML_SCHEMAS_FACET_PRESERVE</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaFacet">_xmlSchemaFacet</a><br /> -</dd><dt>XML_SCHEMAS_STRING</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -</dd><dt>XML_SUBSTITUTE_PEREF</dt><dd><a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -</dd><dt>XML_SUBSTITUTE_REF</dt><dd><a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -</dd><dt>XML_xxx_yyy_ENTITY</dt><dd><a href="html/libxml-entities.html#xmlAddDocEntity">xmlAddDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlAddDtdEntity">xmlAddDtdEntity</a><br /> -</dd><dt>XMl-Schema</dt><dd><a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> -</dd><dt>XPATH</dt><dd><a href="html/libxml-xpath.html#xmlXPathFreeCompExpr">xmlXPathFreeCompExpr</a><br /> -</dd><dt>XPATH_INVALID_ARITY</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSetArityError">xmlXPathSetArityError</a><br /> -</dd><dt>XPATH_INVALID_TYPE</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathSetTypeError">xmlXPathSetTypeError</a><br /> -</dd><dt>XPointer</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_XPTR_ENABLED">LIBXML_XPTR_ENABLED</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathParserContext">_xmlXPathParserContext</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEval">xmlXPtrEval</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrRangeToFunction">xmlXPtrRangeToFunction</a><br /> -</dd><dt>XSD</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -</dd><dt>XSLT</dt><dd><a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-pattern.html#xmlFreePattern">xmlFreePattern</a><br /> -<a href="html/libxml-pattern.html#xmlFreePatternList">xmlFreePatternList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewValueTree">xmlXPathNewValueTree</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStackIsNodeSet">xmlXPathStackIsNodeSet</a><br /> -</dd><dt>Xinclude</dt><dd><a href="html/libxml-xinclude.html#XINCLUDE_NS">XINCLUDE_NS</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a><br /> -</dd><dt>Xml</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -</dd><dt>XmlNodeType</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -</dd></dl><h2>Letter Y:</h2><dl><dt>YES</dt><dd><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</dd><dt>YiRadicals</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsYiRadicals">xmlUCSIsYiRadicals</a><br /> -</dd><dt>YiSyllables</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsYiSyllables">xmlUCSIsYiSyllables</a><br /> -</dd><dt>YijingHexagramSymbols</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsYijingHexagramSymbols">xmlUCSIsYijingHexagramSymbols</a><br /> -</dd></dl><h2>Letter Z:</h2><dl><dt>ZLIB</dt><dd><a href="html/libxml-DOCBparser.html#docbCreateFileParserCtxt">docbCreateFileParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseFile">docbParseFile</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-parserInternals.html#htmlCreateFileParserCtxt">htmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseFile">htmlParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateFileParserCtxt">xmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateURLParserCtxt">xmlCreateURLParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlGetCompressMode">xmlGetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlGetDocCompressMode">xmlGetDocCompressMode</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-parser.html#xmlParseFile">xmlParseFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-parser.html#xmlRecoverFile">xmlRecoverFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseFile">xmlSAXUserParseFile</a><br /> -<a href="html/libxml-tree.html#xmlSetCompressMode">xmlSetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetDocCompressMode">xmlSetDocCompressMode</a><br /> -</dd><dt>Zlib</dt><dd><a href="html/libxml-xmlversion.html#LIBXML_ZLIB_ENABLED">LIBXML_ZLIB_ENABLED</a><br /> -</dd></dl><h2 align="center"><a href="APIchunk0.html">A-B</a> -<a href="APIchunk1.html">C-C</a> -<a href="APIchunk2.html">D-E</a> -<a href="APIchunk3.html">F-I</a> -<a href="APIchunk4.html">J-N</a> -<a href="APIchunk5.html">O-P</a> -<a href="APIchunk6.html">Q-R</a> -<a href="APIchunk7.html">S-S</a> -<a href="APIchunk8.html">T-U</a> -<a href="APIchunk9.html">V-Z</a> -<a href="APIchunk10.html">a-a</a> -<a href="APIchunk11.html">b-b</a> -<a href="APIchunk12.html">c-c</a> -<a href="APIchunk13.html">d-d</a> -<a href="APIchunk14.html">e-e</a> -<a href="APIchunk15.html">f-f</a> -<a href="APIchunk16.html">g-h</a> -<a href="APIchunk17.html">i-i</a> -<a href="APIchunk18.html">j-l</a> -<a href="APIchunk19.html">m-m</a> -<a href="APIchunk20.html">n-n</a> -<a href="APIchunk21.html">o-o</a> -<a href="APIchunk22.html">p-p</a> -<a href="APIchunk23.html">q-r</a> -<a href="APIchunk24.html">s-s</a> -<a href="APIchunk25.html">t-t</a> -<a href="APIchunk26.html">u-v</a> -<a href="APIchunk27.html">w-w</a> -<a href="APIchunk28.html">x-x</a> -<a href="APIchunk29.html">y-z</a> -</h2><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIconstructors.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIconstructors.html deleted file mode 100644 index 8ccc8a6f..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIconstructors.html +++ /dev/null @@ -1,575 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>List of constructors for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>List of constructors for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2>Type const htmlElemDesc *:</h2><p><a href="html/libxml-HTMLparser.html#htmlTagLookup">htmlTagLookup</a><br /> -</p><h2>Type const htmlEntityDesc *:</h2><p><a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -</p><h2>Type const xmlChar *:</h2><p><a href="html/libxml-SAX.html#getPublicId">getPublicId</a><br /> -<a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-HTMLtree.html#htmlGetMetaEncoding">htmlGetMetaEncoding</a><br /> -<a href="html/libxml-parserInternals.html#namePop">namePop</a><br /> -<a href="html/libxml-tree.html#xmlBufferContent">xmlBufferContent</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetPublic">xmlCatalogGetPublic</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetSystem">xmlCatalogGetSystem</a><br /> -<a href="html/libxml-dict.html#xmlDictExists">xmlDictExists</a><br /> -<a href="html/libxml-dict.html#xmlDictLookup">xmlDictLookup</a><br /> -<a href="html/libxml-dict.html#xmlDictQLookup">xmlDictQLookup</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEncodingDecl">xmlParseEncodingDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseName">xmlParseName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePITarget">xmlParsePITarget</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetPublicId">xmlSAX2GetPublicId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsString">xmlSchemaValueGetAsString</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcasestr">xmlStrcasestr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrchr">xmlStrchr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrstr">xmlStrstr</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstBaseUri">xmlTextReaderConstBaseUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstEncoding">xmlTextReaderConstEncoding</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstLocalName">xmlTextReaderConstLocalName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstName">xmlTextReaderConstName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstNamespaceUri">xmlTextReaderConstNamespaceUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstPrefix">xmlTextReaderConstPrefix</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstValue">xmlTextReaderConstValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlLang">xmlTextReaderConstXmlLang</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlVersion">xmlTextReaderConstXmlVersion</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strpos">xmlUTF8Strpos</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNsLookup">xmlXPathNsLookup</a><br /> -</p><h2>Type const xmlParserNodeInfo *:</h2><p><a href="html/libxml-parser.html#xmlParserFindNodeInfo">xmlParserFindNodeInfo</a><br /> -</p><h2>Type docbDocPtr:</h2><p><a href="html/libxml-DOCBparser.html#docbParseDoc">docbParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseFile">docbParseFile</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -</p><h2>Type docbParserCtxtPtr:</h2><p><a href="html/libxml-DOCBparser.html#docbCreateFileParserCtxt">docbCreateFileParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -</p><h2>Type double:</h2><p><a href="html/libxml-xpath.html#xmlXPathCastBooleanToNumber">xmlXPathCastBooleanToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToNumber">xmlXPathCastNodeSetToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeToNumber">xmlXPathCastNodeToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastStringToNumber">xmlXPathCastStringToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToNumber">xmlXPathCastToNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNumber">xmlXPathPopNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -</p><h2>Type htmlDocPtr:</h2><p><a href="html/libxml-HTMLparser.html#htmlCtxtReadDoc">htmlCtxtReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadFd">htmlCtxtReadFd</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadFile">htmlCtxtReadFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadIO">htmlCtxtReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadMemory">htmlCtxtReadMemory</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDoc">htmlNewDoc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDocNoDtD">htmlNewDocNoDtD</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDoc">htmlParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseFile">htmlParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadDoc">htmlReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadFd">htmlReadFd</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadFile">htmlReadFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadIO">htmlReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadMemory">htmlReadMemory</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -</p><h2>Type htmlParserCtxtPtr:</h2><p><a href="html/libxml-parserInternals.html#htmlCreateFileParserCtxt">htmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreateMemoryParserCtxt">htmlCreateMemoryParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNewParserCtxt">htmlNewParserCtxt</a><br /> -</p><h2>Type htmlStatus:</h2><p><a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementStatusHere">htmlElementStatusHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</p><h2>Type long:</h2><p><a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -</p><h2>Type unsigned long:</h2><p><a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetFacetValueAsULong">xmlSchemaGetFacetValueAsULong</a><br /> -</p><h2>Type void *:</h2><p><a href="html/libxml-catalog.html#xmlCatalogAddLocal">xmlCatalogAddLocal</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileOpen">xmlFileOpen</a><br /> -<a href="html/libxml-hash.html#xmlHashCopier">xmlHashCopier</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup">xmlHashLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup2">xmlHashLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup3">xmlHashLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup">xmlHashQLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup2">xmlHashQLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup3">xmlHashQLookup3</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPOpen">xmlIOFTPOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpen">xmlIOHTTPOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a><br /> -<a href="html/libxml-list.html#xmlLinkGetData">xmlLinkGetData</a><br /> -<a href="html/libxml-list.html#xmlListReverseSearch">xmlListReverseSearch</a><br /> -<a href="html/libxml-list.html#xmlListSearch">xmlListSearch</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPNewCtxt">xmlNanoFTPNewCtxt</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPOpen">xmlNanoFTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopExternal">xmlXPathPopExternal</a><br /> -</p><h2>Type xlinkHandlerPtr:</h2><p><a href="html/libxml-xlink.html#xlinkGetDefaultHandler">xlinkGetDefaultHandler</a><br /> -</p><h2>Type xlinkNodeDetectFunc:</h2><p><a href="html/libxml-xlink.html#xlinkGetDefaultDetect">xlinkGetDefaultDetect</a><br /> -</p><h2>Type xlinkType:</h2><p><a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -</p><h2>Type xmlAttrPtr:</h2><p><a href="html/libxml-tree.html#xmlCopyProp">xmlCopyProp</a><br /> -<a href="html/libxml-tree.html#xmlCopyPropList">xmlCopyPropList</a><br /> -<a href="html/libxml-valid.html#xmlGetID">xmlGetID</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -<a href="html/libxml-tree.html#xmlNewDocProp">xmlNewDocProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsProp">xmlNewNsProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsPropEatName">xmlNewNsPropEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewProp">xmlNewProp</a><br /> -<a href="html/libxml-tree.html#xmlSetNsProp">xmlSetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -</p><h2>Type xmlAttributePtr:</h2><p><a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdAttrDesc">xmlGetDtdAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a><br /> -</p><h2>Type xmlAttributeTablePtr:</h2><p><a href="html/libxml-valid.html#xmlCopyAttributeTable">xmlCopyAttributeTable</a><br /> -</p><h2>Type xmlAutomataPtr:</h2><p><a href="html/libxml-xmlautomata.html#xmlNewAutomata">xmlNewAutomata</a><br /> -</p><h2>Type xmlAutomataStatePtr:</h2><p><a href="html/libxml-xmlautomata.html#xmlAutomataGetInitState">xmlAutomataGetInitState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewState">xmlAutomataNewState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> -</p><h2>Type xmlBufferAllocationScheme:</h2><p><a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-globals.html#xmlThrDefBufferAllocScheme">xmlThrDefBufferAllocScheme</a><br /> -</p><h2>Type xmlBufferPtr:</h2><p><a href="html/libxml-tree.html#xmlBufferCreate">xmlBufferCreate</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateSize">xmlBufferCreateSize</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -</p><h2>Type xmlCatalogAllow:</h2><p><a href="html/libxml-catalog.html#xmlCatalogGetDefaults">xmlCatalogGetDefaults</a><br /> -</p><h2>Type xmlCatalogPrefer:</h2><p><a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -</p><h2>Type xmlCatalogPtr:</h2><p><a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlNewCatalog">xmlNewCatalog</a><br /> -</p><h2>Type xmlChar:</h2><p><a href="html/libxml-parserInternals.html#xmlPopInput">xmlPopInput</a><br /> -</p><h2>Type xmlChar *:</h2><p><a href="html/libxml-catalog.html#xmlACatalogResolve">xmlACatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolvePublic">xmlACatalogResolvePublic</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveSystem">xmlACatalogResolveSystem</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveURI">xmlACatalogResolveURI</a><br /> -<a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -<a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolveURI">xmlCatalogLocalResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolve">xmlCatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolvePublic">xmlCatalogResolvePublic</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolveSystem">xmlCatalogResolveSystem</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolveURI">xmlCatalogResolveURI</a><br /> -<a href="html/libxml-xmlstring.html#xmlCharStrdup">xmlCharStrdup</a><br /> -<a href="html/libxml-xmlstring.html#xmlCharStrndup">xmlCharStrndup</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-entities.html#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a><br /> -<a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNodePath">xmlGetNodePath</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-xmlIO.html#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEncName">xmlParseEncName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNmtoken">xmlParseNmtoken</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePubidLiteral">xmlParsePubidLiteral</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSystemLiteral">xmlParseSystemLiteral</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseVersionInfo">xmlParseVersionInfo</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseVersionNum">xmlParseVersionNum</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -<a href="html/libxml-uri.html#xmlSaveUri">xmlSaveUri</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCollapseString">xmlSchemaCollapseString</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaWhiteSpaceReplace">xmlSchemaWhiteSpaceReplace</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncat">xmlStrncat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrndup">xmlStrndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrsub">xmlStrsub</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderBaseUri">xmlTextReaderBaseUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttribute">xmlTextReaderGetAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNo">xmlTextReaderGetAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNs">xmlTextReaderGetAttributeNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocalName">xmlTextReaderLocalName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorBaseURI">xmlTextReaderLocatorBaseURI</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderName">xmlTextReaderName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNamespaceUri">xmlTextReaderNamespaceUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPrefix">xmlTextReaderPrefix</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadString">xmlTextReaderReadString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderValue">xmlTextReaderValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderXmlLang">xmlTextReaderXmlLang</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -<a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strndup">xmlUTF8Strndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastBooleanToString">xmlXPathCastBooleanToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToString">xmlXPathCastNodeSetToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeToString">xmlXPathCastNodeToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNumberToString">xmlXPathCastNumberToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToString">xmlXPathCastToString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseNCName">xmlXPathParseNCName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseName">xmlXPathParseName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopString">xmlXPathPopString</a><br /> -</p><h2>Type xmlCharEncoding:</h2><p><a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -</p><h2>Type xmlCharEncodingHandlerPtr:</h2><p><a href="html/libxml-encoding.html#xmlFindCharEncodingHandler">xmlFindCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingHandler">xmlGetCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -</p><h2>Type xmlDOMWrapCtxtPtr:</h2><p><a href="html/libxml-tree.html#xmlDOMWrapNewCtxt">xmlDOMWrapNewCtxt</a><br /> -</p><h2>Type xmlDeregisterNodeFunc:</h2><p><a href="html/libxml-globals.html#xmlDeregisterNodeDefault">xmlDeregisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefDeregisterNodeDefault">xmlThrDefDeregisterNodeDefault</a><br /> -</p><h2>Type xmlDictPtr:</h2><p><a href="html/libxml-dict.html#xmlDictCreate">xmlDictCreate</a><br /> -<a href="html/libxml-dict.html#xmlDictCreateSub">xmlDictCreateSub</a><br /> -</p><h2>Type xmlDocPtr:</h2><p><a href="html/libxml-tree.html#xmlCopyDoc">xmlCopyDoc</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadDoc">xmlCtxtReadDoc</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFd">xmlCtxtReadFd</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFile">xmlCtxtReadFile</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadIO">xmlCtxtReadIO</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadMemory">xmlCtxtReadMemory</a><br /> -<a href="html/libxml-tree.html#xmlNewDoc">xmlNewDoc</a><br /> -<a href="html/libxml-catalog.html#xmlParseCatalogFile">xmlParseCatalogFile</a><br /> -<a href="html/libxml-parser.html#xmlParseDoc">xmlParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlParseEntity">xmlParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseFile">xmlParseFile</a><br /> -<a href="html/libxml-parser.html#xmlParseMemory">xmlParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlReadDoc">xmlReadDoc</a><br /> -<a href="html/libxml-parser.html#xmlReadFd">xmlReadFd</a><br /> -<a href="html/libxml-parser.html#xmlReadFile">xmlReadFile</a><br /> -<a href="html/libxml-parser.html#xmlReadIO">xmlReadIO</a><br /> -<a href="html/libxml-parser.html#xmlReadMemory">xmlReadMemory</a><br /> -<a href="html/libxml-parser.html#xmlRecoverDoc">xmlRecoverDoc</a><br /> -<a href="html/libxml-parser.html#xmlRecoverFile">xmlRecoverFile</a><br /> -<a href="html/libxml-parser.html#xmlRecoverMemory">xmlRecoverMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -</p><h2>Type xmlDtdPtr:</h2><p><a href="html/libxml-tree.html#xmlCopyDtd">xmlCopyDtd</a><br /> -<a href="html/libxml-tree.html#xmlCreateIntSubset">xmlCreateIntSubset</a><br /> -<a href="html/libxml-tree.html#xmlGetIntSubset">xmlGetIntSubset</a><br /> -<a href="html/libxml-parser.html#xmlIOParseDTD">xmlIOParseDTD</a><br /> -<a href="html/libxml-tree.html#xmlNewDtd">xmlNewDtd</a><br /> -<a href="html/libxml-parser.html#xmlParseDTD">xmlParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDTD">xmlSAXParseDTD</a><br /> -</p><h2>Type xmlElementContentPtr:</h2><p><a href="html/libxml-valid.html#xmlCopyDocElementContent">xmlCopyDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlCopyElementContent">xmlCopyElementContent</a><br /> -<a href="html/libxml-valid.html#xmlNewDocElementContent">xmlNewDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlNewElementContent">xmlNewElementContent</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -</p><h2>Type xmlElementPtr:</h2><p><a href="html/libxml-valid.html#xmlAddElementDecl">xmlAddElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdElementDesc">xmlGetDtdElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQElementDesc">xmlGetDtdQElementDesc</a><br /> -</p><h2>Type xmlElementTablePtr:</h2><p><a href="html/libxml-valid.html#xmlCopyElementTable">xmlCopyElementTable</a><br /> -</p><h2>Type xmlEntitiesTablePtr:</h2><p><a href="html/libxml-entities.html#xmlCopyEntitiesTable">xmlCopyEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a><br /> -</p><h2>Type xmlEntityPtr:</h2><p><a href="html/libxml-SAX.html#getEntity">getEntity</a><br /> -<a href="html/libxml-parser.html#getEntitySAXFunc">getEntitySAXFunc</a><br /> -<a href="html/libxml-SAX.html#getParameterEntity">getParameterEntity</a><br /> -<a href="html/libxml-parser.html#getParameterEntitySAXFunc">getParameterEntitySAXFunc</a><br /> -<a href="html/libxml-entities.html#xmlAddDocEntity">xmlAddDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlAddDtdEntity">xmlAddDtdEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetDocEntity">xmlGetDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetDtdEntity">xmlGetDtdEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetParameterEntity">xmlGetParameterEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetPredefinedEntity">xmlGetPredefinedEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetEntity">xmlSAX2GetEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetParameterEntity">xmlSAX2GetParameterEntity</a><br /> -</p><h2>Type xmlEnumerationPtr:</h2><p><a href="html/libxml-valid.html#xmlCopyEnumeration">xmlCopyEnumeration</a><br /> -<a href="html/libxml-valid.html#xmlCreateEnumeration">xmlCreateEnumeration</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumerationType">xmlParseEnumerationType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -</p><h2>Type xmlErrorPtr:</h2><p><a href="html/libxml-xmlerror.html#xmlCtxtGetLastError">xmlCtxtGetLastError</a><br /> -<a href="html/libxml-xmlerror.html#xmlGetLastError">xmlGetLastError</a><br /> -</p><h2>Type xmlExpCtxtPtr:</h2><p><a href="html/libxml-xmlregexp.html#xmlExpNewCtxt">xmlExpNewCtxt</a><br /> -</p><h2>Type xmlExpNodePtr:</h2><p><a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewAtom">xmlExpNewAtom</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpStringDerive">xmlExpStringDerive</a><br /> -</p><h2>Type xmlExternalEntityLoader:</h2><p><a href="html/libxml-parser.html#xmlGetExternalEntityLoader">xmlGetExternalEntityLoader</a><br /> -</p><h2>Type xmlGlobalStatePtr:</h2><p><a href="html/libxml-threads.html#xmlGetGlobalState">xmlGetGlobalState</a><br /> -</p><h2>Type xmlHashTablePtr:</h2><p><a href="html/libxml-hash.html#xmlHashCopy">xmlHashCopy</a><br /> -<a href="html/libxml-hash.html#xmlHashCreate">xmlHashCreate</a><br /> -<a href="html/libxml-hash.html#xmlHashCreateDict">xmlHashCreateDict</a><br /> -</p><h2>Type xmlIDPtr:</h2><p><a href="html/libxml-valid.html#xmlAddID">xmlAddID</a><br /> -</p><h2>Type xmlLinkPtr:</h2><p><a href="html/libxml-list.html#xmlListEnd">xmlListEnd</a><br /> -<a href="html/libxml-list.html#xmlListFront">xmlListFront</a><br /> -</p><h2>Type xmlListPtr:</h2><p><a href="html/libxml-valid.html#xmlGetRefs">xmlGetRefs</a><br /> -<a href="html/libxml-list.html#xmlListCreate">xmlListCreate</a><br /> -<a href="html/libxml-list.html#xmlListDup">xmlListDup</a><br /> -</p><h2>Type xmlLocationSetPtr:</h2><p><a href="html/libxml-xpointer.html#xmlXPtrLocationSetCreate">xmlXPtrLocationSetCreate</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -</p><h2>Type xmlModulePtr:</h2><p><a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -</p><h2>Type xmlMutexPtr:</h2><p><a href="html/libxml-threads.html#xmlNewMutex">xmlNewMutex</a><br /> -</p><h2>Type xmlNodePtr:</h2><p><a href="html/libxml-parserInternals.html#nodePop">nodePop</a><br /> -<a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddChildList">xmlAddChildList</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddSibling">xmlAddSibling</a><br /> -<a href="html/libxml-tree.html#xmlCopyNode">xmlCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlCopyNodeList">xmlCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNode">xmlDocCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNodeList">xmlDocCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlDocGetRootElement">xmlDocGetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlGetLastChild">xmlGetLastChild</a><br /> -<a href="html/libxml-tree.html#xmlNewCDataBlock">xmlNewCDataBlock</a><br /> -<a href="html/libxml-tree.html#xmlNewCharRef">xmlNewCharRef</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewComment">xmlNewComment</a><br /> -<a href="html/libxml-tree.html#xmlNewDocComment">xmlNewDocComment</a><br /> -<a href="html/libxml-tree.html#xmlNewDocFragment">xmlNewDocFragment</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewDocPI">xmlNewDocPI</a><br /> -<a href="html/libxml-tree.html#xmlNewDocRawNode">xmlNewDocRawNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocText">xmlNewDocText</a><br /> -<a href="html/libxml-tree.html#xmlNewDocTextLen">xmlNewDocTextLen</a><br /> -<a href="html/libxml-tree.html#xmlNewNode">xmlNewNode</a><br /> -<a href="html/libxml-tree.html#xmlNewNodeEatName">xmlNewNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewPI">xmlNewPI</a><br /> -<a href="html/libxml-tree.html#xmlNewReference">xmlNewReference</a><br /> -<a href="html/libxml-tree.html#xmlNewText">xmlNewText</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-tree.html#xmlNewTextLen">xmlNewTextLen</a><br /> -<a href="html/libxml-tree.html#xmlReplaceNode">xmlReplaceNode</a><br /> -<a href="html/libxml-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a><br /> -<a href="html/libxml-tree.html#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a><br /> -<a href="html/libxml-tree.html#xmlTextMerge">xmlTextMerge</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderExpand">xmlTextReaderExpand</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAttribute">xmlXPathNextAttribute</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextChild">xmlXPathNextChild</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendant">xmlXPathNextDescendant</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextNamespace">xmlXPathNextNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextParent">xmlXPathNextParent</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextSelf">xmlXPathNextSelf</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a><br /> -</p><h2>Type xmlNodeSetPtr:</h2><p><a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetCreate">xmlXPathNodeSetCreate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNodeSet">xmlXPathPopNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -</p><h2>Type xmlNotationPtr:</h2><p><a href="html/libxml-valid.html#xmlAddNotationDecl">xmlAddNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdNotationDesc">xmlGetDtdNotationDesc</a><br /> -</p><h2>Type xmlNotationTablePtr:</h2><p><a href="html/libxml-valid.html#xmlCopyNotationTable">xmlCopyNotationTable</a><br /> -</p><h2>Type xmlNsPtr:</h2><p><a href="html/libxml-SAX.html#getNamespace">getNamespace</a><br /> -<a href="html/libxml-tree.html#xmlCopyNamespace">xmlCopyNamespace</a><br /> -<a href="html/libxml-tree.html#xmlCopyNamespaceList">xmlCopyNamespaceList</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -</p><h2>Type xmlNsPtr *:</h2><p><a href="html/libxml-tree.html#xmlGetNsList">xmlGetNsList</a><br /> -</p><h2>Type xmlOutputBufferCreateFilenameFunc:</h2><p><a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameDefault">xmlOutputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefOutputBufferCreateFilenameDefault">xmlThrDefOutputBufferCreateFilenameDefault</a><br /> -</p><h2>Type xmlOutputBufferPtr:</h2><p><a href="html/libxml-xmlIO.html#xmlAllocOutputBuffer">xmlAllocOutputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFd">xmlOutputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFile">xmlOutputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -</p><h2>Type xmlParserCtxtPtr:</h2><p><a href="html/libxml-parser.html#xmlCreateDocParserCtxt">xmlCreateDocParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateFileParserCtxt">xmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateMemoryParserCtxt">xmlCreateMemoryParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateURLParserCtxt">xmlCreateURLParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlNewParserCtxt">xmlNewParserCtxt</a><br /> -</p><h2>Type xmlParserErrors:</h2><p><a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -</p><h2>Type xmlParserInputBufferCreateFilenameFunc:</h2><p><a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameDefault">xmlParserInputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefParserInputBufferCreateFilenameDefault">xmlThrDefParserInputBufferCreateFilenameDefault</a><br /> -</p><h2>Type xmlParserInputBufferPtr:</h2><p><a href="html/libxml-xmlIO.html#xmlAllocParserInputBuffer">xmlAllocParserInputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFd">xmlParserInputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFile">xmlParserInputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateMem">xmlParserInputBufferCreateMem</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</p><h2>Type xmlParserInputPtr:</h2><p><a href="html/libxml-parserInternals.html#inputPop">inputPop</a><br /> -<a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> -<a href="html/libxml-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlLoadExternalEntity">xmlLoadExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewEntityInputStream">xmlNewEntityInputStream</a><br /> -<a href="html/libxml-parser.html#xmlNewIOInputStream">xmlNewIOInputStream</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewInputFromFile">xmlNewInputFromFile</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewInputStream">xmlNewInputStream</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewStringInputStream">xmlNewStringInputStream</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -</p><h2>Type xmlPatternPtr:</h2><p><a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -</p><h2>Type xmlRMutexPtr:</h2><p><a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -</p><h2>Type xmlRefPtr:</h2><p><a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> -</p><h2>Type xmlRegExecCtxtPtr:</h2><p><a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -</p><h2>Type xmlRegexpPtr:</h2><p><a href="html/libxml-xmlautomata.html#xmlAutomataCompile">xmlAutomataCompile</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -</p><h2>Type xmlRegisterNodeFunc:</h2><p><a href="html/libxml-globals.html#xmlRegisterNodeDefault">xmlRegisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefRegisterNodeDefault">xmlThrDefRegisterNodeDefault</a><br /> -</p><h2>Type xmlRelaxNGParserCtxtPtr:</h2><p><a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewMemParserCtxt">xmlRelaxNGNewMemParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewParserCtxt">xmlRelaxNGNewParserCtxt</a><br /> -</p><h2>Type xmlRelaxNGPtr:</h2><p><a href="html/libxml-relaxng.html#xmlRelaxNGParse">xmlRelaxNGParse</a><br /> -</p><h2>Type xmlRelaxNGValidCtxtPtr:</h2><p><a href="html/libxml-relaxng.html#xmlRelaxNGNewValidCtxt">xmlRelaxNGNewValidCtxt</a><br /> -</p><h2>Type xmlSaveCtxtPtr:</h2><p><a href="html/libxml-xmlsave.html#xmlSaveToBuffer">xmlSaveToBuffer</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFd">xmlSaveToFd</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFilename">xmlSaveToFilename</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -</p><h2>Type xmlSchemaFacetPtr:</h2><p><a href="html/libxml-xmlschemastypes.html#xmlSchemaNewFacet">xmlSchemaNewFacet</a><br /> -</p><h2>Type xmlSchemaParserCtxtPtr:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaNewDocParserCtxt">xmlSchemaNewDocParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewMemParserCtxt">xmlSchemaNewMemParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewParserCtxt">xmlSchemaNewParserCtxt</a><br /> -</p><h2>Type xmlSchemaPtr:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaParse">xmlSchemaParse</a><br /> -</p><h2>Type xmlSchemaSAXPlugPtr:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaSAXPlug">xmlSchemaSAXPlug</a><br /> -</p><h2>Type xmlSchemaTypePtr:</h2><p><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInType">xmlSchemaGetBuiltInType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> -</p><h2>Type xmlSchemaValPtr:</h2><p><a href="html/libxml-xmlschemastypes.html#xmlSchemaCopyValue">xmlSchemaCopyValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewNOTATIONValue">xmlSchemaNewNOTATIONValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewQNameValue">xmlSchemaNewQNameValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetNext">xmlSchemaValueGetNext</a><br /> -</p><h2>Type xmlSchemaValType:</h2><p><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetValType">xmlSchemaGetValType</a><br /> -</p><h2>Type xmlSchemaValidCtxtPtr:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaNewValidCtxt">xmlSchemaNewValidCtxt</a><br /> -</p><h2>Type xmlSchematronParserCtxtPtr:</h2><p><a href="html/libxml-schematron.html#xmlSchematronNewDocParserCtxt">xmlSchematronNewDocParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewMemParserCtxt">xmlSchematronNewMemParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewParserCtxt">xmlSchematronNewParserCtxt</a><br /> -</p><h2>Type xmlSchematronPtr:</h2><p><a href="html/libxml-schematron.html#xmlSchematronParse">xmlSchematronParse</a><br /> -</p><h2>Type xmlSchematronValidCtxtPtr:</h2><p><a href="html/libxml-schematron.html#xmlSchematronNewValidCtxt">xmlSchematronNewValidCtxt</a><br /> -</p><h2>Type xmlStreamCtxtPtr:</h2><p><a href="html/libxml-pattern.html#xmlPatternGetStreamCtxt">xmlPatternGetStreamCtxt</a><br /> -</p><h2>Type xmlTextReaderPtr:</h2><p><a href="html/libxml-xmlreader.html#xmlNewTextReader">xmlNewTextReader</a><br /> -<a href="html/libxml-xmlreader.html#xmlNewTextReaderFilename">xmlNewTextReaderFilename</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForDoc">xmlReaderForDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFd">xmlReaderForFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFile">xmlReaderForFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForIO">xmlReaderForIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForMemory">xmlReaderForMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderWalker">xmlReaderWalker</a><br /> -</p><h2>Type xmlTextWriterPtr:</h2><p><a href="html/libxml-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterFilename">xmlNewTextWriterFilename</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterMemory">xmlNewTextWriterMemory</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> -</p><h2>Type xmlURIPtr:</h2><p><a href="html/libxml-uri.html#xmlCreateURI">xmlCreateURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURI">xmlParseURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -</p><h2>Type xmlValidCtxtPtr:</h2><p><a href="html/libxml-valid.html#xmlNewValidCtxt">xmlNewValidCtxt</a><br /> -</p><h2>Type xmlXIncludeCtxtPtr:</h2><p><a href="html/libxml-xinclude.html#xmlXIncludeNewContext">xmlXIncludeNewContext</a><br /> -</p><h2>Type xmlXPathCompExprPtr:</h2><p><a href="html/libxml-xpath.html#xmlXPathCompile">xmlXPathCompile</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCtxtCompile">xmlXPathCtxtCompile</a><br /> -</p><h2>Type xmlXPathContextPtr:</h2><p><a href="html/libxml-xpath.html#xmlXPathNewContext">xmlXPathNewContext</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -</p><h2>Type xmlXPathFunction:</h2><p><a href="html/libxml-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookup">xmlXPathFunctionLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookupNS">xmlXPathFunctionLookupNS</a><br /> -</p><h2>Type xmlXPathObjectPtr:</h2><p><a href="html/libxml-xpathInternals.html#valuePop">valuePop</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompiledEval">xmlXPathCompiledEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertBoolean">xmlXPathConvertBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertNumber">xmlXPathConvertNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertString">xmlXPathConvertString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEval">xmlXPathEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalExpression">xmlXPathEvalExpression</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewBoolean">xmlXPathNewBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewCString">xmlXPathNewCString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewFloat">xmlXPathNewFloat</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSet">xmlXPathNewNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSetList">xmlXPathNewNodeSetList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewString">xmlXPathNewString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewValueTree">xmlXPathNewValueTree</a><br /> -<a href="html/libxml-xpath.html#xmlXPathObjectCopy">xmlXPathObjectCopy</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookup">xmlXPathVariableLookup</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookupNS">xmlXPathVariableLookupNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapCString">xmlXPathWrapCString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapExternal">xmlXPathWrapExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapNodeSet">xmlXPathWrapNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapString">xmlXPathWrapString</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEval">xmlXPtrEval</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewCollapsedRange">xmlXPtrNewCollapsedRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodeSet">xmlXPtrNewLocationSetNodeSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRange">xmlXPtrNewRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodeObject">xmlXPtrNewRangeNodeObject</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodePoint">xmlXPtrNewRangeNodePoint</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodes">xmlXPtrNewRangeNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePointNode">xmlXPtrNewRangePointNode</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePoints">xmlXPtrNewRangePoints</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrWrapLocationSet">xmlXPtrWrapLocationSet</a><br /> -</p><h2>Type xmlXPathParserContextPtr:</h2><p><a href="html/libxml-xpathInternals.html#xmlXPathNewParserContext">xmlXPathNewParserContext</a><br /> -</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIfiles.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIfiles.html deleted file mode 100644 index 00d34de3..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIfiles.html +++ /dev/null @@ -1,3500 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>List of Symbols per Module for libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>List of Symbols per Module for libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2><a name="DOCBparser" id="DOCBparser">Module DOCBparser</a>:</h2><p><a href="html/libxml-DOCBparser.html#docbCreateFileParserCtxt">docbCreateFileParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbDocPtr">docbDocPtr</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-DOCBparser.html#docbFreeParserCtxt">docbFreeParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseChunk">docbParseChunk</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseDoc">docbParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseDocument">docbParseDocument</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseFile">docbParseFile</a><br /> -<a href="html/libxml-DOCBparser.html#docbParserCtxt">docbParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParserCtxtPtr">docbParserCtxtPtr</a><br /> -<a href="html/libxml-DOCBparser.html#docbParserInput">docbParserInput</a><br /> -<a href="html/libxml-DOCBparser.html#docbParserInputPtr">docbParserInputPtr</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXHandler">docbSAXHandler</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXHandlerPtr">docbSAXHandlerPtr</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -</p><h2><a name="HTMLparser" id="HTMLparser">Module HTMLparser</a>:</h2><p><a href="html/libxml-HTMLparser.html#HTML_DEPRECATED">HTML_DEPRECATED</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_INVALID">HTML_INVALID</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_NA">HTML_NA</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_COMPACT">HTML_PARSE_COMPACT</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_NOBLANKS">HTML_PARSE_NOBLANKS</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_NOERROR">HTML_PARSE_NOERROR</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_NONET">HTML_PARSE_NONET</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_NOWARNING">HTML_PARSE_NOWARNING</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_PEDANTIC">HTML_PARSE_PEDANTIC</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_RECOVER">HTML_PARSE_RECOVER</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_REQUIRED">HTML_REQUIRED</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_VALID">HTML_VALID</a><br /> -<a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-HTMLparser.html#_htmlEntityDesc">_htmlEntityDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreateMemoryParserCtxt">htmlCreateMemoryParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadDoc">htmlCtxtReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadFd">htmlCtxtReadFd</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadFile">htmlCtxtReadFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadIO">htmlCtxtReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadMemory">htmlCtxtReadMemory</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReset">htmlCtxtReset</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtUseOptions">htmlCtxtUseOptions</a><br /> -<a href="html/libxml-HTMLparser.html#htmlDefaultSubelement">htmlDefaultSubelement</a><br /> -<a href="html/libxml-HTMLparser.html#htmlDocPtr">htmlDocPtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElemDesc">htmlElemDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElemDescPtr">htmlElemDescPtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHere">htmlElementAllowedHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHereDesc">htmlElementAllowedHereDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementStatusHere">htmlElementStatusHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityDescPtr">htmlEntityDescPtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlFreeParserCtxt">htmlFreeParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlHandleOmittedElem">htmlHandleOmittedElem</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsScriptAttribute">htmlIsScriptAttribute</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNewParserCtxt">htmlNewParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodePtr">htmlNodePtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseCharRef">htmlParseCharRef</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseChunk">htmlParseChunk</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDoc">htmlParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDocument">htmlParseDocument</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseElement">htmlParseElement</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseFile">htmlParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParserCtxt">htmlParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParserInput">htmlParserInput</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParserInputPtr">htmlParserInputPtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParserNodeInfo">htmlParserNodeInfo</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParserOption">htmlParserOption</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadDoc">htmlReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadFd">htmlReadFd</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadFile">htmlReadFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadIO">htmlReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadMemory">htmlReadMemory</a><br /> -<a href="html/libxml-HTMLparser.html#htmlRequiredAttrs">htmlRequiredAttrs</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXHandler">htmlSAXHandler</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlStatus">htmlStatus</a><br /> -<a href="html/libxml-HTMLparser.html#htmlTagLookup">htmlTagLookup</a><br /> -</p><h2><a name="HTMLtree" id="HTMLtree">Module HTMLtree</a>:</h2><p><a href="html/libxml-HTMLtree.html#HTML_COMMENT_NODE">HTML_COMMENT_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_ENTITY_REF_NODE">HTML_ENTITY_REF_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_PI_NODE">HTML_PI_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_PRESERVE_NODE">HTML_PRESERVE_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_TEXT_NODE">HTML_TEXT_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocContentDumpFormatOutput">htmlDocContentDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocContentDumpOutput">htmlDocContentDumpOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDump">htmlDocDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemory">htmlDocDumpMemory</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemoryFormat">htmlDocDumpMemoryFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlGetMetaEncoding">htmlGetMetaEncoding</a><br /> -<a href="html/libxml-HTMLtree.html#htmlIsBooleanAttr">htmlIsBooleanAttr</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDoc">htmlNewDoc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDocNoDtD">htmlNewDocNoDtD</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDump">htmlNodeDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFile">htmlNodeDumpFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpOutput">htmlNodeDumpOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFile">htmlSaveFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFileEnc">htmlSaveFileEnc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFileFormat">htmlSaveFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSetMetaEncoding">htmlSetMetaEncoding</a><br /> -</p><h2><a name="SAX" id="SAX">Module SAX</a>:</h2><p><a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-SAX.html#attributeDecl">attributeDecl</a><br /> -<a href="html/libxml-SAX.html#cdataBlock">cdataBlock</a><br /> -<a href="html/libxml-SAX.html#characters">characters</a><br /> -<a href="html/libxml-SAX.html#checkNamespace">checkNamespace</a><br /> -<a href="html/libxml-SAX.html#comment">comment</a><br /> -<a href="html/libxml-SAX.html#elementDecl">elementDecl</a><br /> -<a href="html/libxml-SAX.html#endDocument">endDocument</a><br /> -<a href="html/libxml-SAX.html#endElement">endElement</a><br /> -<a href="html/libxml-SAX.html#entityDecl">entityDecl</a><br /> -<a href="html/libxml-SAX.html#externalSubset">externalSubset</a><br /> -<a href="html/libxml-SAX.html#getColumnNumber">getColumnNumber</a><br /> -<a href="html/libxml-SAX.html#getEntity">getEntity</a><br /> -<a href="html/libxml-SAX.html#getLineNumber">getLineNumber</a><br /> -<a href="html/libxml-SAX.html#getNamespace">getNamespace</a><br /> -<a href="html/libxml-SAX.html#getParameterEntity">getParameterEntity</a><br /> -<a href="html/libxml-SAX.html#getPublicId">getPublicId</a><br /> -<a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-SAX.html#globalNamespace">globalNamespace</a><br /> -<a href="html/libxml-SAX.html#hasExternalSubset">hasExternalSubset</a><br /> -<a href="html/libxml-SAX.html#hasInternalSubset">hasInternalSubset</a><br /> -<a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-SAX.html#initdocbDefaultSAXHandler">initdocbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#inithtmlDefaultSAXHandler">inithtmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#internalSubset">internalSubset</a><br /> -<a href="html/libxml-SAX.html#isStandalone">isStandalone</a><br /> -<a href="html/libxml-SAX.html#namespaceDecl">namespaceDecl</a><br /> -<a href="html/libxml-SAX.html#notationDecl">notationDecl</a><br /> -<a href="html/libxml-SAX.html#processingInstruction">processingInstruction</a><br /> -<a href="html/libxml-SAX.html#reference">reference</a><br /> -<a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-SAX.html#setNamespace">setNamespace</a><br /> -<a href="html/libxml-SAX.html#startDocument">startDocument</a><br /> -<a href="html/libxml-SAX.html#startElement">startElement</a><br /> -<a href="html/libxml-SAX.html#unparsedEntityDecl">unparsedEntityDecl</a><br /> -</p><h2><a name="SAX2" id="SAX2">Module SAX2</a>:</h2><p><a href="html/libxml-SAX2.html#docbDefaultSAXHandlerInit">docbDefaultSAXHandlerInit</a><br /> -<a href="html/libxml-SAX2.html#htmlDefaultSAXHandlerInit">htmlDefaultSAXHandlerInit</a><br /> -<a href="html/libxml-SAX2.html#xmlDefaultSAXHandlerInit">xmlDefaultSAXHandlerInit</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2AttributeDecl">xmlSAX2AttributeDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2CDataBlock">xmlSAX2CDataBlock</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Characters">xmlSAX2Characters</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Comment">xmlSAX2Comment</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ElementDecl">xmlSAX2ElementDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndDocument">xmlSAX2EndDocument</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElement">xmlSAX2EndElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElementNs">xmlSAX2EndElementNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EntityDecl">xmlSAX2EntityDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ExternalSubset">xmlSAX2ExternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetColumnNumber">xmlSAX2GetColumnNumber</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetEntity">xmlSAX2GetEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetLineNumber">xmlSAX2GetLineNumber</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetParameterEntity">xmlSAX2GetParameterEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetPublicId">xmlSAX2GetPublicId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2HasExternalSubset">xmlSAX2HasExternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2HasInternalSubset">xmlSAX2HasInternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDocbDefaultSAXHandler">xmlSAX2InitDocbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitHtmlDefaultSAXHandler">xmlSAX2InitHtmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InternalSubset">xmlSAX2InternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IsStandalone">xmlSAX2IsStandalone</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2NotationDecl">xmlSAX2NotationDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ProcessingInstruction">xmlSAX2ProcessingInstruction</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Reference">xmlSAX2Reference</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartDocument">xmlSAX2StartDocument</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElement">xmlSAX2StartElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2UnparsedEntityDecl">xmlSAX2UnparsedEntityDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -<a href="html/libxml-SAX2.html#xmlSAXVersion">xmlSAXVersion</a><br /> -</p><h2><a name="c14n" id="c14n">Module c14n</a>:</h2><p><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-c14n.html#xmlC14NIsVisibleCallback">xmlC14NIsVisibleCallback</a><br /> -</p><h2><a name="catalog" id="catalog">Module catalog</a>:</h2><p><a href="html/libxml-catalog.html#XML_CATALOGS_NAMESPACE">XML_CATALOGS_NAMESPACE</a><br /> -<a href="html/libxml-catalog.html#XML_CATALOG_PI">XML_CATALOG_PI</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_ALLOW_ALL">XML_CATA_ALLOW_ALL</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_ALLOW_DOCUMENT">XML_CATA_ALLOW_DOCUMENT</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_ALLOW_GLOBAL">XML_CATA_ALLOW_GLOBAL</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_ALLOW_NONE">XML_CATA_ALLOW_NONE</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_PREFER_NONE">XML_CATA_PREFER_NONE</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_PREFER_PUBLIC">XML_CATA_PREFER_PUBLIC</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_PREFER_SYSTEM">XML_CATA_PREFER_SYSTEM</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogDump">xmlACatalogDump</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogRemove">xmlACatalogRemove</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolve">xmlACatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolvePublic">xmlACatalogResolvePublic</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveSystem">xmlACatalogResolveSystem</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveURI">xmlACatalogResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalog">xmlCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAddLocal">xmlCatalogAddLocal</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAllow">xmlCatalogAllow</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogCleanup">xmlCatalogCleanup</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogConvert">xmlCatalogConvert</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogDump">xmlCatalogDump</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogFreeLocal">xmlCatalogFreeLocal</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetDefaults">xmlCatalogGetDefaults</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetPublic">xmlCatalogGetPublic</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetSystem">xmlCatalogGetSystem</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogIsEmpty">xmlCatalogIsEmpty</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolveURI">xmlCatalogLocalResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogPrefer">xmlCatalogPrefer</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogRemove">xmlCatalogRemove</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolve">xmlCatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolvePublic">xmlCatalogResolvePublic</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolveSystem">xmlCatalogResolveSystem</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolveURI">xmlCatalogResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDebug">xmlCatalogSetDebug</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaults">xmlCatalogSetDefaults</a><br /> -<a href="html/libxml-catalog.html#xmlConvertSGMLCatalog">xmlConvertSGMLCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlFreeCatalog">xmlFreeCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlInitializeCatalog">xmlInitializeCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlNewCatalog">xmlNewCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlParseCatalogFile">xmlParseCatalogFile</a><br /> -</p><h2><a name="chvalid" id="chvalid">Module chvalid</a>:</h2><p><a href="html/libxml-chvalid.html#_xmlChLRange">_xmlChLRange</a><br /> -<a href="html/libxml-chvalid.html#_xmlChRangeGroup">_xmlChRangeGroup</a><br /> -<a href="html/libxml-chvalid.html#_xmlChSRange">_xmlChSRange</a><br /> -<a href="html/libxml-chvalid.html#xmlChLRange">xmlChLRange</a><br /> -<a href="html/libxml-chvalid.html#xmlChLRangePtr">xmlChLRangePtr</a><br /> -<a href="html/libxml-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlChRangeGroupPtr">xmlChRangeGroupPtr</a><br /> -<a href="html/libxml-chvalid.html#xmlChSRange">xmlChSRange</a><br /> -<a href="html/libxml-chvalid.html#xmlChSRangePtr">xmlChSRangePtr</a><br /> -<a href="html/libxml-chvalid.html#xmlCharInRange">xmlCharInRange</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseChar">xmlIsBaseChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseCharGroup">xmlIsBaseCharGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseCharQ">xmlIsBaseCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseChar_ch">xmlIsBaseChar_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlank">xmlIsBlank</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlankQ">xmlIsBlankQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlank_ch">xmlIsBlank_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsChar">xmlIsChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCharGroup">xmlIsCharGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCharQ">xmlIsCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsChar_ch">xmlIsChar_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombining">xmlIsCombining</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombiningGroup">xmlIsCombiningGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombiningQ">xmlIsCombiningQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigit">xmlIsDigit</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigitGroup">xmlIsDigitGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigitQ">xmlIsDigitQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigit_ch">xmlIsDigit_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtender">xmlIsExtender</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtenderGroup">xmlIsExtenderGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtenderQ">xmlIsExtenderQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtender_ch">xmlIsExtender_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographic">xmlIsIdeographic</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographicGroup">xmlIsIdeographicGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographicQ">xmlIsIdeographicQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar">xmlIsPubidChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidCharQ">xmlIsPubidCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar_ch">xmlIsPubidChar_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar_tab">xmlIsPubidChar_tab</a><br /> -</p><h2><a name="debugXML" id="debugXML">Module debugXML</a>:</h2><p><a href="html/libxml-debugXML.html#_xmlShellCtxt">_xmlShellCtxt</a><br /> -<a href="html/libxml-debugXML.html#xmlBoolToText">xmlBoolToText</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugCheckDocument">xmlDebugCheckDocument</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttr">xmlDebugDumpAttr</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttrList">xmlDebugDumpAttrList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDTD">xmlDebugDumpDTD</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocument">xmlDebugDumpDocument</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocumentHead">xmlDebugDumpDocumentHead</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpEntities">xmlDebugDumpEntities</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNode">xmlDebugDumpNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNodeList">xmlDebugDumpNodeList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpOneNode">xmlDebugDumpOneNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpString">xmlDebugDumpString</a><br /> -<a href="html/libxml-debugXML.html#xmlLsCountNode">xmlLsCountNode</a><br /> -<a href="html/libxml-debugXML.html#xmlLsOneNode">xmlLsOneNode</a><br /> -<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-debugXML.html#xmlShellBase">xmlShellBase</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCat">xmlShellCat</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCmd">xmlShellCmd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCtxt">xmlShellCtxt</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDir">xmlShellDir</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -<a href="html/libxml-debugXML.html#xmlShellList">xmlShellList</a><br /> -<a href="html/libxml-debugXML.html#xmlShellLoad">xmlShellLoad</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintNode">xmlShellPrintNode</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathError">xmlShellPrintXPathError</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathResult">xmlShellPrintXPathResult</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellReadlineFunc">xmlShellReadlineFunc</a><br /> -<a href="html/libxml-debugXML.html#xmlShellSave">xmlShellSave</a><br /> -<a href="html/libxml-debugXML.html#xmlShellValidate">xmlShellValidate</a><br /> -<a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> -</p><h2><a name="dict" id="dict">Module dict</a>:</h2><p><a href="html/libxml-dict.html#xmlDict">xmlDict</a><br /> -<a href="html/libxml-dict.html#xmlDictCleanup">xmlDictCleanup</a><br /> -<a href="html/libxml-dict.html#xmlDictCreate">xmlDictCreate</a><br /> -<a href="html/libxml-dict.html#xmlDictCreateSub">xmlDictCreateSub</a><br /> -<a href="html/libxml-dict.html#xmlDictExists">xmlDictExists</a><br /> -<a href="html/libxml-dict.html#xmlDictFree">xmlDictFree</a><br /> -<a href="html/libxml-dict.html#xmlDictLookup">xmlDictLookup</a><br /> -<a href="html/libxml-dict.html#xmlDictOwns">xmlDictOwns</a><br /> -<a href="html/libxml-dict.html#xmlDictPtr">xmlDictPtr</a><br /> -<a href="html/libxml-dict.html#xmlDictQLookup">xmlDictQLookup</a><br /> -<a href="html/libxml-dict.html#xmlDictReference">xmlDictReference</a><br /> -<a href="html/libxml-dict.html#xmlDictSize">xmlDictSize</a><br /> -</p><h2><a name="encoding" id="encoding">Module encoding</a>:</h2><p><a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_2022_JP">XML_CHAR_ENCODING_2022_JP</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_1">XML_CHAR_ENCODING_8859_1</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_2">XML_CHAR_ENCODING_8859_2</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_3">XML_CHAR_ENCODING_8859_3</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_4">XML_CHAR_ENCODING_8859_4</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_5">XML_CHAR_ENCODING_8859_5</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_6">XML_CHAR_ENCODING_8859_6</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_7">XML_CHAR_ENCODING_8859_7</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_8">XML_CHAR_ENCODING_8859_8</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_9">XML_CHAR_ENCODING_8859_9</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_ASCII">XML_CHAR_ENCODING_ASCII</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_EBCDIC">XML_CHAR_ENCODING_EBCDIC</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_ERROR">XML_CHAR_ENCODING_ERROR</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_EUC_JP">XML_CHAR_ENCODING_EUC_JP</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_NONE">XML_CHAR_ENCODING_NONE</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_SHIFT_JIS">XML_CHAR_ENCODING_SHIFT_JIS</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UCS2">XML_CHAR_ENCODING_UCS2</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UCS4BE">XML_CHAR_ENCODING_UCS4BE</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UCS4LE">XML_CHAR_ENCODING_UCS4LE</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UCS4_2143">XML_CHAR_ENCODING_UCS4_2143</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UCS4_3412">XML_CHAR_ENCODING_UCS4_3412</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UTF16BE">XML_CHAR_ENCODING_UTF16BE</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UTF16LE">XML_CHAR_ENCODING_UTF16LE</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UTF8">XML_CHAR_ENCODING_UTF8</a><br /> -<a href="html/libxml-encoding.html#_xmlCharEncodingHandler">_xmlCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-encoding.html#xmlAddEncodingAlias">xmlAddEncodingAlias</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncCloseFunc">xmlCharEncCloseFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncoding">xmlCharEncoding</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCleanupCharEncodingHandlers">xmlCleanupCharEncodingHandlers</a><br /> -<a href="html/libxml-encoding.html#xmlCleanupEncodingAliases">xmlCleanupEncodingAliases</a><br /> -<a href="html/libxml-encoding.html#xmlDelEncodingAlias">xmlDelEncodingAlias</a><br /> -<a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -<a href="html/libxml-encoding.html#xmlFindCharEncodingHandler">xmlFindCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingHandler">xmlGetCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -<a href="html/libxml-encoding.html#xmlGetEncodingAlias">xmlGetEncodingAlias</a><br /> -<a href="html/libxml-encoding.html#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a><br /> -<a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -<a href="html/libxml-encoding.html#xmlRegisterCharEncodingHandler">xmlRegisterCharEncodingHandler</a><br /> -</p><h2><a name="entities" id="entities">Module entities</a>:</h2><p><a href="html/libxml-entities.html#XML_EXTERNAL_GENERAL_PARSED_ENTITY">XML_EXTERNAL_GENERAL_PARSED_ENTITY</a><br /> -<a href="html/libxml-entities.html#XML_EXTERNAL_GENERAL_UNPARSED_ENTITY">XML_EXTERNAL_GENERAL_UNPARSED_ENTITY</a><br /> -<a href="html/libxml-entities.html#XML_EXTERNAL_PARAMETER_ENTITY">XML_EXTERNAL_PARAMETER_ENTITY</a><br /> -<a href="html/libxml-entities.html#XML_INTERNAL_GENERAL_ENTITY">XML_INTERNAL_GENERAL_ENTITY</a><br /> -<a href="html/libxml-entities.html#XML_INTERNAL_PARAMETER_ENTITY">XML_INTERNAL_PARAMETER_ENTITY</a><br /> -<a href="html/libxml-entities.html#XML_INTERNAL_PREDEFINED_ENTITY">XML_INTERNAL_PREDEFINED_ENTITY</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-entities.html#xmlAddDocEntity">xmlAddDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlAddDtdEntity">xmlAddDtdEntity</a><br /> -<a href="html/libxml-entities.html#xmlCleanupPredefinedEntities">xmlCleanupPredefinedEntities</a><br /> -<a href="html/libxml-entities.html#xmlCopyEntitiesTable">xmlCopyEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlDumpEntitiesTable">xmlDumpEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlDumpEntityDecl">xmlDumpEntityDecl</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-entities.html#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a><br /> -<a href="html/libxml-entities.html#xmlEntitiesTable">xmlEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a><br /> -<a href="html/libxml-entities.html#xmlEntityType">xmlEntityType</a><br /> -<a href="html/libxml-entities.html#xmlFreeEntitiesTable">xmlFreeEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlGetDocEntity">xmlGetDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetDtdEntity">xmlGetDtdEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetParameterEntity">xmlGetParameterEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetPredefinedEntity">xmlGetPredefinedEntity</a><br /> -<a href="html/libxml-entities.html#xmlInitializePredefinedEntities">xmlInitializePredefinedEntities</a><br /> -</p><h2><a name="globals" id="globals">Module globals</a>:</h2><p><a href="html/libxml-globals.html#_xmlGlobalState">_xmlGlobalState</a><br /> -<a href="html/libxml-globals.html#docbDefaultSAXHandler">docbDefaultSAXHandler</a><br /> -<a href="html/libxml-globals.html#htmlDefaultSAXHandler">htmlDefaultSAXHandler</a><br /> -<a href="html/libxml-globals.html#oldXMLWDcompatibility">oldXMLWDcompatibility</a><br /> -<a href="html/libxml-globals.html#xmlBufferAllocScheme">xmlBufferAllocScheme</a><br /> -<a href="html/libxml-globals.html#xmlCleanupGlobals">xmlCleanupGlobals</a><br /> -<a href="html/libxml-globals.html#xmlDefaultBufferSize">xmlDefaultBufferSize</a><br /> -<a href="html/libxml-globals.html#xmlDefaultSAXHandler">xmlDefaultSAXHandler</a><br /> -<a href="html/libxml-globals.html#xmlDefaultSAXLocator">xmlDefaultSAXLocator</a><br /> -<a href="html/libxml-globals.html#xmlDeregisterNodeDefault">xmlDeregisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlDeregisterNodeDefaultValue">xmlDeregisterNodeDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a><br /> -<a href="html/libxml-globals.html#xmlDoValidityCheckingDefaultValue">xmlDoValidityCheckingDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlFree">xmlFree</a><br /> -<a href="html/libxml-globals.html#xmlGenericError">xmlGenericError</a><br /> -<a href="html/libxml-globals.html#xmlGenericErrorContext">xmlGenericErrorContext</a><br /> -<a href="html/libxml-globals.html#xmlGetWarningsDefaultValue">xmlGetWarningsDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlGlobalState">xmlGlobalState</a><br /> -<a href="html/libxml-globals.html#xmlGlobalStatePtr">xmlGlobalStatePtr</a><br /> -<a href="html/libxml-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a><br /> -<a href="html/libxml-globals.html#xmlInitGlobals">xmlInitGlobals</a><br /> -<a href="html/libxml-globals.html#xmlInitializeGlobalState">xmlInitializeGlobalState</a><br /> -<a href="html/libxml-globals.html#xmlKeepBlanksDefaultValue">xmlKeepBlanksDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlLastError">xmlLastError</a><br /> -<a href="html/libxml-globals.html#xmlLineNumbersDefaultValue">xmlLineNumbersDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlLoadExtDtdDefaultValue">xmlLoadExtDtdDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlMalloc">xmlMalloc</a><br /> -<a href="html/libxml-globals.html#xmlMallocAtomic">xmlMallocAtomic</a><br /> -<a href="html/libxml-globals.html#xmlMemStrdup">xmlMemStrdup</a><br /> -<a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameDefault">xmlOutputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a><br /> -<a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameValue">xmlOutputBufferCreateFilenameValue</a><br /> -<a href="html/libxml-globals.html#xmlParserDebugEntities">xmlParserDebugEntities</a><br /> -<a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameDefault">xmlParserInputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a><br /> -<a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameValue">xmlParserInputBufferCreateFilenameValue</a><br /> -<a href="html/libxml-globals.html#xmlParserVersion">xmlParserVersion</a><br /> -<a href="html/libxml-globals.html#xmlPedanticParserDefaultValue">xmlPedanticParserDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlRealloc">xmlRealloc</a><br /> -<a href="html/libxml-globals.html#xmlRegisterNodeDefault">xmlRegisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlRegisterNodeDefaultValue">xmlRegisterNodeDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a><br /> -<a href="html/libxml-globals.html#xmlSaveNoEmptyTags">xmlSaveNoEmptyTags</a><br /> -<a href="html/libxml-globals.html#xmlStructuredError">xmlStructuredError</a><br /> -<a href="html/libxml-globals.html#xmlSubstituteEntitiesDefaultValue">xmlSubstituteEntitiesDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefBufferAllocScheme">xmlThrDefBufferAllocScheme</a><br /> -<a href="html/libxml-globals.html#xmlThrDefDefaultBufferSize">xmlThrDefDefaultBufferSize</a><br /> -<a href="html/libxml-globals.html#xmlThrDefDeregisterNodeDefault">xmlThrDefDeregisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefDoValidityCheckingDefaultValue">xmlThrDefDoValidityCheckingDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefGetWarningsDefaultValue">xmlThrDefGetWarningsDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefIndentTreeOutput">xmlThrDefIndentTreeOutput</a><br /> -<a href="html/libxml-globals.html#xmlThrDefKeepBlanksDefaultValue">xmlThrDefKeepBlanksDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefLineNumbersDefaultValue">xmlThrDefLineNumbersDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefLoadExtDtdDefaultValue">xmlThrDefLoadExtDtdDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefOutputBufferCreateFilenameDefault">xmlThrDefOutputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefParserDebugEntities">xmlThrDefParserDebugEntities</a><br /> -<a href="html/libxml-globals.html#xmlThrDefParserInputBufferCreateFilenameDefault">xmlThrDefParserInputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefPedanticParserDefaultValue">xmlThrDefPedanticParserDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefRegisterNodeDefault">xmlThrDefRegisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefSaveNoEmptyTags">xmlThrDefSaveNoEmptyTags</a><br /> -<a href="html/libxml-globals.html#xmlThrDefSetGenericErrorFunc">xmlThrDefSetGenericErrorFunc</a><br /> -<a href="html/libxml-globals.html#xmlThrDefSetStructuredErrorFunc">xmlThrDefSetStructuredErrorFunc</a><br /> -<a href="html/libxml-globals.html#xmlThrDefSubstituteEntitiesDefaultValue">xmlThrDefSubstituteEntitiesDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefTreeIndentString">xmlThrDefTreeIndentString</a><br /> -<a href="html/libxml-globals.html#xmlTreeIndentString">xmlTreeIndentString</a><br /> -</p><h2><a name="hash" id="hash">Module hash</a>:</h2><p><a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashCopier">xmlHashCopier</a><br /> -<a href="html/libxml-hash.html#xmlHashCopy">xmlHashCopy</a><br /> -<a href="html/libxml-hash.html#xmlHashCreate">xmlHashCreate</a><br /> -<a href="html/libxml-hash.html#xmlHashCreateDict">xmlHashCreateDict</a><br /> -<a href="html/libxml-hash.html#xmlHashDeallocator">xmlHashDeallocator</a><br /> -<a href="html/libxml-hash.html#xmlHashFree">xmlHashFree</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup">xmlHashLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup2">xmlHashLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup3">xmlHashLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup">xmlHashQLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup2">xmlHashQLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup3">xmlHashQLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashScan">xmlHashScan</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull">xmlHashScanFull</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanner">xmlHashScanner</a><br /> -<a href="html/libxml-hash.html#xmlHashScannerFull">xmlHashScannerFull</a><br /> -<a href="html/libxml-hash.html#xmlHashSize">xmlHashSize</a><br /> -<a href="html/libxml-hash.html#xmlHashTable">xmlHashTable</a><br /> -<a href="html/libxml-hash.html#xmlHashTablePtr">xmlHashTablePtr</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -</p><h2><a name="list" id="list">Module list</a>:</h2><p><a href="html/libxml-list.html#xmlLink">xmlLink</a><br /> -<a href="html/libxml-list.html#xmlLinkGetData">xmlLinkGetData</a><br /> -<a href="html/libxml-list.html#xmlLinkPtr">xmlLinkPtr</a><br /> -<a href="html/libxml-list.html#xmlList">xmlList</a><br /> -<a href="html/libxml-list.html#xmlListAppend">xmlListAppend</a><br /> -<a href="html/libxml-list.html#xmlListClear">xmlListClear</a><br /> -<a href="html/libxml-list.html#xmlListCopy">xmlListCopy</a><br /> -<a href="html/libxml-list.html#xmlListCreate">xmlListCreate</a><br /> -<a href="html/libxml-list.html#xmlListDataCompare">xmlListDataCompare</a><br /> -<a href="html/libxml-list.html#xmlListDeallocator">xmlListDeallocator</a><br /> -<a href="html/libxml-list.html#xmlListDelete">xmlListDelete</a><br /> -<a href="html/libxml-list.html#xmlListDup">xmlListDup</a><br /> -<a href="html/libxml-list.html#xmlListEmpty">xmlListEmpty</a><br /> -<a href="html/libxml-list.html#xmlListEnd">xmlListEnd</a><br /> -<a href="html/libxml-list.html#xmlListFront">xmlListFront</a><br /> -<a href="html/libxml-list.html#xmlListInsert">xmlListInsert</a><br /> -<a href="html/libxml-list.html#xmlListMerge">xmlListMerge</a><br /> -<a href="html/libxml-list.html#xmlListPopBack">xmlListPopBack</a><br /> -<a href="html/libxml-list.html#xmlListPopFront">xmlListPopFront</a><br /> -<a href="html/libxml-list.html#xmlListPtr">xmlListPtr</a><br /> -<a href="html/libxml-list.html#xmlListPushBack">xmlListPushBack</a><br /> -<a href="html/libxml-list.html#xmlListPushFront">xmlListPushFront</a><br /> -<a href="html/libxml-list.html#xmlListRemoveAll">xmlListRemoveAll</a><br /> -<a href="html/libxml-list.html#xmlListRemoveFirst">xmlListRemoveFirst</a><br /> -<a href="html/libxml-list.html#xmlListRemoveLast">xmlListRemoveLast</a><br /> -<a href="html/libxml-list.html#xmlListReverse">xmlListReverse</a><br /> -<a href="html/libxml-list.html#xmlListReverseSearch">xmlListReverseSearch</a><br /> -<a href="html/libxml-list.html#xmlListReverseWalk">xmlListReverseWalk</a><br /> -<a href="html/libxml-list.html#xmlListSearch">xmlListSearch</a><br /> -<a href="html/libxml-list.html#xmlListSize">xmlListSize</a><br /> -<a href="html/libxml-list.html#xmlListSort">xmlListSort</a><br /> -<a href="html/libxml-list.html#xmlListWalk">xmlListWalk</a><br /> -<a href="html/libxml-list.html#xmlListWalker">xmlListWalker</a><br /> -</p><h2><a name="nanoftp" id="nanoftp">Module nanoftp</a>:</h2><p><a href="html/libxml-nanoftp.html#ftpDataCallback">ftpDataCallback</a><br /> -<a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCheckResponse">xmlNanoFTPCheckResponse</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCleanup">xmlNanoFTPCleanup</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPClose">xmlNanoFTPClose</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCloseConnection">xmlNanoFTPCloseConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnect">xmlNanoFTPConnect</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCwd">xmlNanoFTPCwd</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPDele">xmlNanoFTPDele</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPFreeCtxt">xmlNanoFTPFreeCtxt</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetResponse">xmlNanoFTPGetResponse</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetSocket">xmlNanoFTPGetSocket</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPInit">xmlNanoFTPInit</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPNewCtxt">xmlNanoFTPNewCtxt</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPOpen">xmlNanoFTPOpen</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPQuit">xmlNanoFTPQuit</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPRead">xmlNanoFTPRead</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -</p><h2><a name="nanohttp" id="nanohttp">Module nanohttp</a>:</h2><p><a href="html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPCleanup">xmlNanoHTTPCleanup</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPClose">xmlNanoHTTPClose</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPEncoding">xmlNanoHTTPEncoding</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPInit">xmlNanoHTTPInit</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMimeType">xmlNanoHTTPMimeType</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRead">xmlNanoHTTPRead</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRedir">xmlNanoHTTPRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPReturnCode">xmlNanoHTTPReturnCode</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPSave">xmlNanoHTTPSave</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -</p><h2><a name="parser" id="parser">Module parser</a>:</h2><p><a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-parser.html#XML_DEFAULT_VERSION">XML_DEFAULT_VERSION</a><br /> -<a href="html/libxml-parser.html#XML_DETECT_IDS">XML_DETECT_IDS</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_ATTRIBUTE_VALUE">XML_PARSER_ATTRIBUTE_VALUE</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_CDATA_SECTION">XML_PARSER_CDATA_SECTION</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_COMMENT">XML_PARSER_COMMENT</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_CONTENT">XML_PARSER_CONTENT</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_DTD">XML_PARSER_DTD</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_END_TAG">XML_PARSER_END_TAG</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_ENTITY_DECL">XML_PARSER_ENTITY_DECL</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_ENTITY_VALUE">XML_PARSER_ENTITY_VALUE</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_EOF">XML_PARSER_EOF</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_EPILOG">XML_PARSER_EPILOG</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_IGNORE">XML_PARSER_IGNORE</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_MISC">XML_PARSER_MISC</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_PI">XML_PARSER_PI</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_PROLOG">XML_PARSER_PROLOG</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_PUBLIC_LITERAL">XML_PARSER_PUBLIC_LITERAL</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_START">XML_PARSER_START</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_START_TAG">XML_PARSER_START_TAG</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_SYSTEM_LITERAL">XML_PARSER_SYSTEM_LITERAL</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_COMPACT">XML_PARSE_COMPACT</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_DOM">XML_PARSE_DOM</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_DTDATTR">XML_PARSE_DTDATTR</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_DTDLOAD">XML_PARSE_DTDLOAD</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_DTDVALID">XML_PARSE_DTDVALID</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NOBLANKS">XML_PARSE_NOBLANKS</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NOCDATA">XML_PARSE_NOCDATA</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NODICT">XML_PARSE_NODICT</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NOENT">XML_PARSE_NOENT</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NOERROR">XML_PARSE_NOERROR</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NONET">XML_PARSE_NONET</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NOWARNING">XML_PARSE_NOWARNING</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NOXINCNODE">XML_PARSE_NOXINCNODE</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NSCLEAN">XML_PARSE_NSCLEAN</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_PEDANTIC">XML_PARSE_PEDANTIC</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_PUSH_DOM">XML_PARSE_PUSH_DOM</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_PUSH_SAX">XML_PARSE_PUSH_SAX</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_READER">XML_PARSE_READER</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_RECOVER">XML_PARSE_RECOVER</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_SAX">XML_PARSE_SAX</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_SAX1">XML_PARSE_SAX1</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_UNKNOWN">XML_PARSE_UNKNOWN</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_XINCLUDE">XML_PARSE_XINCLUDE</a><br /> -<a href="html/libxml-parser.html#XML_SAX2_MAGIC">XML_SAX2_MAGIC</a><br /> -<a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -<a href="html/libxml-parser.html#XML_WITH_AUTOMATA">XML_WITH_AUTOMATA</a><br /> -<a href="html/libxml-parser.html#XML_WITH_C14N">XML_WITH_C14N</a><br /> -<a href="html/libxml-parser.html#XML_WITH_CATALOG">XML_WITH_CATALOG</a><br /> -<a href="html/libxml-parser.html#XML_WITH_DEBUG">XML_WITH_DEBUG</a><br /> -<a href="html/libxml-parser.html#XML_WITH_DEBUG_MEM">XML_WITH_DEBUG_MEM</a><br /> -<a href="html/libxml-parser.html#XML_WITH_DEBUG_RUN">XML_WITH_DEBUG_RUN</a><br /> -<a href="html/libxml-parser.html#XML_WITH_EXPR">XML_WITH_EXPR</a><br /> -<a href="html/libxml-parser.html#XML_WITH_FTP">XML_WITH_FTP</a><br /> -<a href="html/libxml-parser.html#XML_WITH_HTML">XML_WITH_HTML</a><br /> -<a href="html/libxml-parser.html#XML_WITH_HTTP">XML_WITH_HTTP</a><br /> -<a href="html/libxml-parser.html#XML_WITH_ICONV">XML_WITH_ICONV</a><br /> -<a href="html/libxml-parser.html#XML_WITH_ISO8859X">XML_WITH_ISO8859X</a><br /> -<a href="html/libxml-parser.html#XML_WITH_LEGACY">XML_WITH_LEGACY</a><br /> -<a href="html/libxml-parser.html#XML_WITH_MODULES">XML_WITH_MODULES</a><br /> -<a href="html/libxml-parser.html#XML_WITH_NONE">XML_WITH_NONE</a><br /> -<a href="html/libxml-parser.html#XML_WITH_OUTPUT">XML_WITH_OUTPUT</a><br /> -<a href="html/libxml-parser.html#XML_WITH_PATTERN">XML_WITH_PATTERN</a><br /> -<a href="html/libxml-parser.html#XML_WITH_PUSH">XML_WITH_PUSH</a><br /> -<a href="html/libxml-parser.html#XML_WITH_READER">XML_WITH_READER</a><br /> -<a href="html/libxml-parser.html#XML_WITH_REGEXP">XML_WITH_REGEXP</a><br /> -<a href="html/libxml-parser.html#XML_WITH_SAX1">XML_WITH_SAX1</a><br /> -<a href="html/libxml-parser.html#XML_WITH_SCHEMAS">XML_WITH_SCHEMAS</a><br /> -<a href="html/libxml-parser.html#XML_WITH_SCHEMATRON">XML_WITH_SCHEMATRON</a><br /> -<a href="html/libxml-parser.html#XML_WITH_THREAD">XML_WITH_THREAD</a><br /> -<a href="html/libxml-parser.html#XML_WITH_TREE">XML_WITH_TREE</a><br /> -<a href="html/libxml-parser.html#XML_WITH_UNICODE">XML_WITH_UNICODE</a><br /> -<a href="html/libxml-parser.html#XML_WITH_VALID">XML_WITH_VALID</a><br /> -<a href="html/libxml-parser.html#XML_WITH_WRITER">XML_WITH_WRITER</a><br /> -<a href="html/libxml-parser.html#XML_WITH_XINCLUDE">XML_WITH_XINCLUDE</a><br /> -<a href="html/libxml-parser.html#XML_WITH_XPATH">XML_WITH_XPATH</a><br /> -<a href="html/libxml-parser.html#XML_WITH_XPTR">XML_WITH_XPTR</a><br /> -<a href="html/libxml-parser.html#XML_WITH_ZLIB">XML_WITH_ZLIB</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-parser.html#_xmlParserNodeInfo">_xmlParserNodeInfo</a><br /> -<a href="html/libxml-parser.html#_xmlParserNodeInfoSeq">_xmlParserNodeInfoSeq</a><br /> -<a href="html/libxml-parser.html#_xmlSAXHandler">_xmlSAXHandler</a><br /> -<a href="html/libxml-parser.html#_xmlSAXHandlerV1">_xmlSAXHandlerV1</a><br /> -<a href="html/libxml-parser.html#_xmlSAXLocator">_xmlSAXLocator</a><br /> -<a href="html/libxml-parser.html#attributeDeclSAXFunc">attributeDeclSAXFunc</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -<a href="html/libxml-parser.html#cdataBlockSAXFunc">cdataBlockSAXFunc</a><br /> -<a href="html/libxml-parser.html#charactersSAXFunc">charactersSAXFunc</a><br /> -<a href="html/libxml-parser.html#commentSAXFunc">commentSAXFunc</a><br /> -<a href="html/libxml-parser.html#elementDeclSAXFunc">elementDeclSAXFunc</a><br /> -<a href="html/libxml-parser.html#endDocumentSAXFunc">endDocumentSAXFunc</a><br /> -<a href="html/libxml-parser.html#endElementNsSAX2Func">endElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#endElementSAXFunc">endElementSAXFunc</a><br /> -<a href="html/libxml-parser.html#entityDeclSAXFunc">entityDeclSAXFunc</a><br /> -<a href="html/libxml-parser.html#errorSAXFunc">errorSAXFunc</a><br /> -<a href="html/libxml-parser.html#externalSubsetSAXFunc">externalSubsetSAXFunc</a><br /> -<a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -<a href="html/libxml-parser.html#getEntitySAXFunc">getEntitySAXFunc</a><br /> -<a href="html/libxml-parser.html#getParameterEntitySAXFunc">getParameterEntitySAXFunc</a><br /> -<a href="html/libxml-parser.html#hasExternalSubsetSAXFunc">hasExternalSubsetSAXFunc</a><br /> -<a href="html/libxml-parser.html#hasInternalSubsetSAXFunc">hasInternalSubsetSAXFunc</a><br /> -<a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> -<a href="html/libxml-parser.html#internalSubsetSAXFunc">internalSubsetSAXFunc</a><br /> -<a href="html/libxml-parser.html#isStandaloneSAXFunc">isStandaloneSAXFunc</a><br /> -<a href="html/libxml-parser.html#notationDeclSAXFunc">notationDeclSAXFunc</a><br /> -<a href="html/libxml-parser.html#processingInstructionSAXFunc">processingInstructionSAXFunc</a><br /> -<a href="html/libxml-parser.html#referenceSAXFunc">referenceSAXFunc</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-parser.html#startDocumentSAXFunc">startDocumentSAXFunc</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#startElementSAXFunc">startElementSAXFunc</a><br /> -<a href="html/libxml-parser.html#unparsedEntityDeclSAXFunc">unparsedEntityDeclSAXFunc</a><br /> -<a href="html/libxml-parser.html#warningSAXFunc">warningSAXFunc</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-parser.html#xmlClearNodeInfoSeq">xmlClearNodeInfoSeq</a><br /> -<a href="html/libxml-parser.html#xmlClearParserCtxt">xmlClearParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreateDocParserCtxt">xmlCreateDocParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadDoc">xmlCtxtReadDoc</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFd">xmlCtxtReadFd</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFile">xmlCtxtReadFile</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadIO">xmlCtxtReadIO</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadMemory">xmlCtxtReadMemory</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReset">xmlCtxtReset</a><br /> -<a href="html/libxml-parser.html#xmlCtxtResetPush">xmlCtxtResetPush</a><br /> -<a href="html/libxml-parser.html#xmlCtxtUseOptions">xmlCtxtUseOptions</a><br /> -<a href="html/libxml-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlFeature">xmlFeature</a><br /> -<a href="html/libxml-parser.html#xmlFreeParserCtxt">xmlFreeParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlGetExternalEntityLoader">xmlGetExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlGetFeature">xmlGetFeature</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -<a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -<a href="html/libxml-parser.html#xmlIOParseDTD">xmlIOParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlInitNodeInfoSeq">xmlInitNodeInfoSeq</a><br /> -<a href="html/libxml-parser.html#xmlInitParser">xmlInitParser</a><br /> -<a href="html/libxml-parser.html#xmlInitParserCtxt">xmlInitParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> -<a href="html/libxml-parser.html#xmlLoadExternalEntity">xmlLoadExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlNewIOInputStream">xmlNewIOInputStream</a><br /> -<a href="html/libxml-parser.html#xmlNewParserCtxt">xmlNewParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseChunk">xmlParseChunk</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseDTD">xmlParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlParseDoc">xmlParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlParseDocument">xmlParseDocument</a><br /> -<a href="html/libxml-parser.html#xmlParseEntity">xmlParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExtParsedEnt">xmlParseExtParsedEnt</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseFile">xmlParseFile</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-parser.html#xmlParseMemory">xmlParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlParserAddNodeInfo">xmlParserAddNodeInfo</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfo">xmlParserFindNodeInfo</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -<a href="html/libxml-parser.html#xmlParserInputDeallocate">xmlParserInputDeallocate</a><br /> -<a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -<a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -<a href="html/libxml-parser.html#xmlParserInputState">xmlParserInputState</a><br /> -<a href="html/libxml-parser.html#xmlParserMode">xmlParserMode</a><br /> -<a href="html/libxml-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a><br /> -<a href="html/libxml-parser.html#xmlParserNodeInfoPtr">xmlParserNodeInfoPtr</a><br /> -<a href="html/libxml-parser.html#xmlParserNodeInfoSeq">xmlParserNodeInfoSeq</a><br /> -<a href="html/libxml-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a><br /> -<a href="html/libxml-parser.html#xmlParserOption">xmlParserOption</a><br /> -<a href="html/libxml-parser.html#xmlPedanticParserDefault">xmlPedanticParserDefault</a><br /> -<a href="html/libxml-parser.html#xmlReadDoc">xmlReadDoc</a><br /> -<a href="html/libxml-parser.html#xmlReadFd">xmlReadFd</a><br /> -<a href="html/libxml-parser.html#xmlReadFile">xmlReadFile</a><br /> -<a href="html/libxml-parser.html#xmlReadIO">xmlReadIO</a><br /> -<a href="html/libxml-parser.html#xmlReadMemory">xmlReadMemory</a><br /> -<a href="html/libxml-parser.html#xmlRecoverDoc">xmlRecoverDoc</a><br /> -<a href="html/libxml-parser.html#xmlRecoverFile">xmlRecoverFile</a><br /> -<a href="html/libxml-parser.html#xmlRecoverMemory">xmlRecoverMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a><br /> -<a href="html/libxml-parser.html#xmlSAXHandlerV1Ptr">xmlSAXHandlerV1Ptr</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDTD">xmlSAXParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseFile">xmlSAXUserParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseMemory">xmlSAXUserParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlSetFeature">xmlSetFeature</a><br /> -<a href="html/libxml-parser.html#xmlSetupParserForBuffer">xmlSetupParserForBuffer</a><br /> -<a href="html/libxml-parser.html#xmlStopParser">xmlStopParser</a><br /> -<a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -</p><h2><a name="parserInternals" id="parserInternals">Module parserInternals</a>:</h2><p><a href="html/libxml-parserInternals.html#INPUT_CHUNK">INPUT_CHUNK</a><br /> -<a href="html/libxml-parserInternals.html#IS_ASCII_DIGIT">IS_ASCII_DIGIT</a><br /> -<a href="html/libxml-parserInternals.html#IS_ASCII_LETTER">IS_ASCII_LETTER</a><br /> -<a href="html/libxml-parserInternals.html#IS_BASECHAR">IS_BASECHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_BLANK">IS_BLANK</a><br /> -<a href="html/libxml-parserInternals.html#IS_BLANK_CH">IS_BLANK_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_BYTE_CHAR">IS_BYTE_CHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_CHAR_CH">IS_CHAR_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_COMBINING">IS_COMBINING</a><br /> -<a href="html/libxml-parserInternals.html#IS_COMBINING_CH">IS_COMBINING_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_DIGIT">IS_DIGIT</a><br /> -<a href="html/libxml-parserInternals.html#IS_DIGIT_CH">IS_DIGIT_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -<a href="html/libxml-parserInternals.html#IS_EXTENDER_CH">IS_EXTENDER_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_IDEOGRAPHIC">IS_IDEOGRAPHIC</a><br /> -<a href="html/libxml-parserInternals.html#IS_LETTER">IS_LETTER</a><br /> -<a href="html/libxml-parserInternals.html#IS_LETTER_CH">IS_LETTER_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_PUBIDCHAR">IS_PUBIDCHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_PUBIDCHAR_CH">IS_PUBIDCHAR_CH</a><br /> -<a href="html/libxml-parserInternals.html#MOVETO_ENDTAG">MOVETO_ENDTAG</a><br /> -<a href="html/libxml-parserInternals.html#MOVETO_STARTTAG">MOVETO_STARTTAG</a><br /> -<a href="html/libxml-parserInternals.html#SKIP_EOL">SKIP_EOL</a><br /> -<a href="html/libxml-parserInternals.html#XML_MAX_NAMELEN">XML_MAX_NAMELEN</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_BOTH">XML_SUBSTITUTE_BOTH</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_NONE">XML_SUBSTITUTE_NONE</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a><br /> -<a href="html/libxml-parserInternals.html#htmlCreateFileParserCtxt">htmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -<a href="html/libxml-parserInternals.html#inputPop">inputPop</a><br /> -<a href="html/libxml-parserInternals.html#inputPush">inputPush</a><br /> -<a href="html/libxml-parserInternals.html#namePop">namePop</a><br /> -<a href="html/libxml-parserInternals.html#namePush">namePush</a><br /> -<a href="html/libxml-parserInternals.html#nodePop">nodePop</a><br /> -<a href="html/libxml-parserInternals.html#nodePush">nodePush</a><br /> -<a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -<a href="html/libxml-parserInternals.html#xmlCopyChar">xmlCopyChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlCopyCharMultiByte">xmlCopyCharMultiByte</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateFileParserCtxt">xmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateMemoryParserCtxt">xmlCreateMemoryParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateURLParserCtxt">xmlCreateURLParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlErrMemory">xmlErrMemory</a><br /> -<a href="html/libxml-parserInternals.html#xmlFreeInputStream">xmlFreeInputStream</a><br /> -<a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlIsLetter">xmlIsLetter</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewEntityInputStream">xmlNewEntityInputStream</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewInputFromFile">xmlNewInputFromFile</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewInputStream">xmlNewInputStream</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewStringInputStream">xmlNewStringInputStream</a><br /> -<a href="html/libxml-parserInternals.html#xmlNextChar">xmlNextChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeListDecl">xmlParseAttributeListDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseContent">xmlParseContent</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEncName">xmlParseEncName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEncodingDecl">xmlParseEncodingDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEndTag">xmlParseEndTag</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumerationType">xmlParseEnumerationType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMisc">xmlParseMisc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseName">xmlParseName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNmtoken">xmlParseNmtoken</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePI">xmlParsePI</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePITarget">xmlParsePITarget</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePubidLiteral">xmlParsePubidLiteral</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSystemLiteral">xmlParseSystemLiteral</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseTextDecl">xmlParseTextDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseVersionInfo">xmlParseVersionInfo</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseVersionNum">xmlParseVersionNum</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseXMLDecl">xmlParseXMLDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserInputShrink">xmlParserInputShrink</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserMaxDepth">xmlParserMaxDepth</a><br /> -<a href="html/libxml-parserInternals.html#xmlPopInput">xmlPopInput</a><br /> -<a href="html/libxml-parserInternals.html#xmlPushInput">xmlPushInput</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-parserInternals.html#xmlSetEntityReferenceFunc">xmlSetEntityReferenceFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlSkipBlankChars">xmlSkipBlankChars</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringComment">xmlStringComment</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringCurrentChar">xmlStringCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringText">xmlStringText</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringTextNoenc">xmlStringTextNoenc</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchEncoding">xmlSwitchEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchInputEncoding">xmlSwitchInputEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchToEncoding">xmlSwitchToEncoding</a><br /> -</p><h2><a name="pattern" id="pattern">Module pattern</a>:</h2><p><a href="html/libxml-pattern.html#XML_PATTERN_DEFAULT">XML_PATTERN_DEFAULT</a><br /> -<a href="html/libxml-pattern.html#XML_PATTERN_XPATH">XML_PATTERN_XPATH</a><br /> -<a href="html/libxml-pattern.html#XML_PATTERN_XSFIELD">XML_PATTERN_XSFIELD</a><br /> -<a href="html/libxml-pattern.html#XML_PATTERN_XSSEL">XML_PATTERN_XSSEL</a><br /> -<a href="html/libxml-pattern.html#xmlFreePattern">xmlFreePattern</a><br /> -<a href="html/libxml-pattern.html#xmlFreePatternList">xmlFreePatternList</a><br /> -<a href="html/libxml-pattern.html#xmlFreeStreamCtxt">xmlFreeStreamCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlPattern">xmlPattern</a><br /> -<a href="html/libxml-pattern.html#xmlPatternFlags">xmlPatternFlags</a><br /> -<a href="html/libxml-pattern.html#xmlPatternFromRoot">xmlPatternFromRoot</a><br /> -<a href="html/libxml-pattern.html#xmlPatternGetStreamCtxt">xmlPatternGetStreamCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMatch">xmlPatternMatch</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMaxDepth">xmlPatternMaxDepth</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMinDepth">xmlPatternMinDepth</a><br /> -<a href="html/libxml-pattern.html#xmlPatternPtr">xmlPatternPtr</a><br /> -<a href="html/libxml-pattern.html#xmlPatternStreamable">xmlPatternStreamable</a><br /> -<a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-pattern.html#xmlStreamCtxt">xmlStreamCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPop">xmlStreamPop</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</p><h2><a name="relaxng" id="relaxng">Module relaxng</a>:</h2><p><a href="html/libxml-relaxng.html#XML_RELAXNGP_CRNG">XML_RELAXNGP_CRNG</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNGP_FREE_DOC">XML_RELAXNGP_FREE_DOC</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNGP_NONE">XML_RELAXNGP_NONE</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTREXTRANS">XML_RELAXNG_ERR_ATTREXTRANS</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTRNAME">XML_RELAXNG_ERR_ATTRNAME</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTRNONS">XML_RELAXNG_ERR_ATTRNONS</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTRVALID">XML_RELAXNG_ERR_ATTRVALID</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTRWRONGNS">XML_RELAXNG_ERR_ATTRWRONGNS</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_CONTENTVALID">XML_RELAXNG_ERR_CONTENTVALID</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_DATAELEM">XML_RELAXNG_ERR_DATAELEM</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_DATATYPE">XML_RELAXNG_ERR_DATATYPE</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_DUPID">XML_RELAXNG_ERR_DUPID</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMEXTRANS">XML_RELAXNG_ERR_ELEMEXTRANS</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMNAME">XML_RELAXNG_ERR_ELEMNAME</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMNONS">XML_RELAXNG_ERR_ELEMNONS</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMNOTEMPTY">XML_RELAXNG_ERR_ELEMNOTEMPTY</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMWRONG">XML_RELAXNG_ERR_ELEMWRONG</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMWRONGNS">XML_RELAXNG_ERR_ELEMWRONGNS</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_EXTRACONTENT">XML_RELAXNG_ERR_EXTRACONTENT</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_EXTRADATA">XML_RELAXNG_ERR_EXTRADATA</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_INTEREXTRA">XML_RELAXNG_ERR_INTEREXTRA</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_INTERNAL">XML_RELAXNG_ERR_INTERNAL</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_INTERNODATA">XML_RELAXNG_ERR_INTERNODATA</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_INTERSEQ">XML_RELAXNG_ERR_INTERSEQ</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_INVALIDATTR">XML_RELAXNG_ERR_INVALIDATTR</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_LACKDATA">XML_RELAXNG_ERR_LACKDATA</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_LIST">XML_RELAXNG_ERR_LIST</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_LISTELEM">XML_RELAXNG_ERR_LISTELEM</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_LISTEMPTY">XML_RELAXNG_ERR_LISTEMPTY</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_LISTEXTRA">XML_RELAXNG_ERR_LISTEXTRA</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_MEMORY">XML_RELAXNG_ERR_MEMORY</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_NODEFINE">XML_RELAXNG_ERR_NODEFINE</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_NOELEM">XML_RELAXNG_ERR_NOELEM</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_NOGRAMMAR">XML_RELAXNG_ERR_NOGRAMMAR</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_NOSTATE">XML_RELAXNG_ERR_NOSTATE</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_NOTELEM">XML_RELAXNG_ERR_NOTELEM</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_TEXTWRONG">XML_RELAXNG_ERR_TEXTWRONG</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_TYPE">XML_RELAXNG_ERR_TYPE</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_TYPECMP">XML_RELAXNG_ERR_TYPECMP</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_TYPEVAL">XML_RELAXNG_ERR_TYPEVAL</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_VALELEM">XML_RELAXNG_ERR_VALELEM</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_VALUE">XML_RELAXNG_ERR_VALUE</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_OK">XML_RELAXNG_OK</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNG">xmlRelaxNG</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGCleanupTypes">xmlRelaxNGCleanupTypes</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGDump">xmlRelaxNGDump</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGDumpTree">xmlRelaxNGDumpTree</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGFree">xmlRelaxNGFree</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGFreeParserCtxt">xmlRelaxNGFreeParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGFreeValidCtxt">xmlRelaxNGFreeValidCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGInitTypes">xmlRelaxNGInitTypes</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewMemParserCtxt">xmlRelaxNGNewMemParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewParserCtxt">xmlRelaxNGNewParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewValidCtxt">xmlRelaxNGNewValidCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParse">xmlRelaxNGParse</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParserCtxt">xmlRelaxNGParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParserFlag">xmlRelaxNGParserFlag</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserStructuredErrors">xmlRelaxNGSetParserStructuredErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidStructuredErrors">xmlRelaxNGSetValidStructuredErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidCtxt">xmlRelaxNGValidCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidErr">xmlRelaxNGValidErr</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateDoc">xmlRelaxNGValidateDoc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePopElement">xmlRelaxNGValidatePopElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushCData">xmlRelaxNGValidatePushCData</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a><br /> -</p><h2><a name="schemasInternals" id="schemasInternals">Module schemasInternals</a>:</h2><p><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_LAX">XML_SCHEMAS_ANYATTR_LAX</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_SKIP">XML_SCHEMAS_ANYATTR_SKIP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYSIMPLETYPE">XML_SCHEMAS_ANYSIMPLETYPE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYTYPE">XML_SCHEMAS_ANYTYPE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYURI">XML_SCHEMAS_ANYURI</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_SKIP">XML_SCHEMAS_ANY_SKIP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_HAS_REFS">XML_SCHEMAS_ATTRGROUP_HAS_REFS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_REDEFINED">XML_SCHEMAS_ATTRGROUP_REDEFINED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_FIXED">XML_SCHEMAS_ATTR_FIXED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_GLOBAL">XML_SCHEMAS_ATTR_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_NSDEFAULT">XML_SCHEMAS_ATTR_NSDEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_OPTIONAL">XML_SCHEMAS_ATTR_USE_OPTIONAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_PROHIBITED">XML_SCHEMAS_ATTR_USE_PROHIBITED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_REQUIRED">XML_SCHEMAS_ATTR_USE_REQUIRED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BASE64BINARY">XML_SCHEMAS_BASE64BINARY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION">XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION">XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BOOLEAN">XML_SCHEMAS_BOOLEAN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BYTE">XML_SCHEMAS_BYTE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_DATE">XML_SCHEMAS_DATE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_DATETIME">XML_SCHEMAS_DATETIME</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_DECIMAL">XML_SCHEMAS_DECIMAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_DOUBLE">XML_SCHEMAS_DOUBLE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_DURATION">XML_SCHEMAS_DURATION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_ABSTRACT">XML_SCHEMAS_ELEM_ABSTRACT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_ABSENT">XML_SCHEMAS_ELEM_BLOCK_ABSENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_EXTENSION">XML_SCHEMAS_ELEM_BLOCK_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION">XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_DEFAULT">XML_SCHEMAS_ELEM_DEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_EXTENSION">XML_SCHEMAS_ELEM_FINAL_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_RESTRICTION">XML_SCHEMAS_ELEM_FINAL_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FIXED">XML_SCHEMAS_ELEM_FIXED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_GLOBAL">XML_SCHEMAS_ELEM_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_CHECKED">XML_SCHEMAS_ELEM_INTERNAL_CHECKED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_NILLABLE">XML_SCHEMAS_ELEM_NILLABLE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_NSDEFAULT">XML_SCHEMAS_ELEM_NSDEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_REF">XML_SCHEMAS_ELEM_REF</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD">XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_TOPLEVEL">XML_SCHEMAS_ELEM_TOPLEVEL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ENTITIES">XML_SCHEMAS_ENTITIES</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ENTITY">XML_SCHEMAS_ENTITY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_COLLAPSE">XML_SCHEMAS_FACET_COLLAPSE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_PRESERVE">XML_SCHEMAS_FACET_PRESERVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_REPLACE">XML_SCHEMAS_FACET_REPLACE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_UNKNOWN">XML_SCHEMAS_FACET_UNKNOWN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_LIST">XML_SCHEMAS_FINAL_DEFAULT_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION">XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_UNION">XML_SCHEMAS_FINAL_DEFAULT_UNION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FLOAT">XML_SCHEMAS_FLOAT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_GDAY">XML_SCHEMAS_GDAY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_GMONTH">XML_SCHEMAS_GMONTH</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_GMONTHDAY">XML_SCHEMAS_GMONTHDAY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_GYEAR">XML_SCHEMAS_GYEAR</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_GYEARMONTH">XML_SCHEMAS_GYEARMONTH</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_HEXBINARY">XML_SCHEMAS_HEXBINARY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ID">XML_SCHEMAS_ID</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_IDREF">XML_SCHEMAS_IDREF</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_IDREFS">XML_SCHEMAS_IDREFS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_INCLUDING_CONVERT_NS">XML_SCHEMAS_INCLUDING_CONVERT_NS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_INT">XML_SCHEMAS_INT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_INTEGER">XML_SCHEMAS_INTEGER</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_LANGUAGE">XML_SCHEMAS_LANGUAGE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_LONG">XML_SCHEMAS_LONG</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NAME">XML_SCHEMAS_NAME</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NCNAME">XML_SCHEMAS_NCNAME</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NINTEGER">XML_SCHEMAS_NINTEGER</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NMTOKEN">XML_SCHEMAS_NMTOKEN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NMTOKENS">XML_SCHEMAS_NMTOKENS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NNINTEGER">XML_SCHEMAS_NNINTEGER</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NORMSTRING">XML_SCHEMAS_NORMSTRING</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NOTATION">XML_SCHEMAS_NOTATION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NPINTEGER">XML_SCHEMAS_NPINTEGER</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_PINTEGER">XML_SCHEMAS_PINTEGER</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_QNAME">XML_SCHEMAS_QNAME</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_QUALIF_ATTR">XML_SCHEMAS_QUALIF_ATTR</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_QUALIF_ELEM">XML_SCHEMAS_QUALIF_ELEM</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_SHORT">XML_SCHEMAS_SHORT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_STRING">XML_SCHEMAS_STRING</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TIME">XML_SCHEMAS_TIME</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TOKEN">XML_SCHEMAS_TOKEN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FACETSNEEDVALUE">XML_SCHEMAS_TYPE_FACETSNEEDVALUE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_DEFAULT">XML_SCHEMAS_TYPE_FINAL_DEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_LIST">XML_SCHEMAS_TYPE_FINAL_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FIXUP_1">XML_SCHEMAS_TYPE_FIXUP_1</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_GLOBAL">XML_SCHEMAS_TYPE_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_HAS_FACETS">XML_SCHEMAS_TYPE_HAS_FACETS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_INTERNAL_INVALID">XML_SCHEMAS_TYPE_INTERNAL_INVALID</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_INTERNAL_RESOLVED">XML_SCHEMAS_TYPE_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MIXED">XML_SCHEMAS_TYPE_MIXED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_NORMVALUENEEDED">XML_SCHEMAS_TYPE_NORMVALUENEEDED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_REDEFINED">XML_SCHEMAS_TYPE_REDEFINED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ATOMIC">XML_SCHEMAS_TYPE_VARIETY_ATOMIC</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_LIST">XML_SCHEMAS_TYPE_VARIETY_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_UNION">XML_SCHEMAS_TYPE_VARIETY_UNION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE">XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE">XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_REPLACE">XML_SCHEMAS_TYPE_WHITESPACE_REPLACE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_UBYTE">XML_SCHEMAS_UBYTE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_UINT">XML_SCHEMAS_UINT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ULONG">XML_SCHEMAS_ULONG</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_UNKNOWN">XML_SCHEMAS_UNKNOWN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_USHORT">XML_SCHEMAS_USHORT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_WILDCARD_COMPLETE">XML_SCHEMAS_WILDCARD_COMPLETE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_ANY">XML_SCHEMA_CONTENT_ANY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_BASIC">XML_SCHEMA_CONTENT_BASIC</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_ELEMENTS">XML_SCHEMA_CONTENT_ELEMENTS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_EMPTY">XML_SCHEMA_CONTENT_EMPTY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_MIXED">XML_SCHEMA_CONTENT_MIXED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS">XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_SIMPLE">XML_SCHEMA_CONTENT_SIMPLE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_UNKNOWN">XML_SCHEMA_CONTENT_UNKNOWN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_EXTRA_ATTR_USE_PROHIB">XML_SCHEMA_EXTRA_ATTR_USE_PROHIB</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_EXTRA_QNAMEREF">XML_SCHEMA_EXTRA_QNAMEREF</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_ENUMERATION">XML_SCHEMA_FACET_ENUMERATION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_FRACTIONDIGITS">XML_SCHEMA_FACET_FRACTIONDIGITS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_LENGTH">XML_SCHEMA_FACET_LENGTH</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MAXEXCLUSIVE">XML_SCHEMA_FACET_MAXEXCLUSIVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MAXINCLUSIVE">XML_SCHEMA_FACET_MAXINCLUSIVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MAXLENGTH">XML_SCHEMA_FACET_MAXLENGTH</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MINEXCLUSIVE">XML_SCHEMA_FACET_MINEXCLUSIVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MININCLUSIVE">XML_SCHEMA_FACET_MININCLUSIVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MINLENGTH">XML_SCHEMA_FACET_MINLENGTH</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_PATTERN">XML_SCHEMA_FACET_PATTERN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_TOTALDIGITS">XML_SCHEMA_FACET_TOTALDIGITS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_WHITESPACE">XML_SCHEMA_FACET_WHITESPACE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ALL">XML_SCHEMA_TYPE_ALL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ANY">XML_SCHEMA_TYPE_ANY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ANY_ATTRIBUTE">XML_SCHEMA_TYPE_ANY_ATTRIBUTE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ATTRIBUTE">XML_SCHEMA_TYPE_ATTRIBUTE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ATTRIBUTEGROUP">XML_SCHEMA_TYPE_ATTRIBUTEGROUP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ATTRIBUTE_USE">XML_SCHEMA_TYPE_ATTRIBUTE_USE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_BASIC">XML_SCHEMA_TYPE_BASIC</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_CHOICE">XML_SCHEMA_TYPE_CHOICE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_COMPLEX">XML_SCHEMA_TYPE_COMPLEX</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_COMPLEX_CONTENT">XML_SCHEMA_TYPE_COMPLEX_CONTENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ELEMENT">XML_SCHEMA_TYPE_ELEMENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_EXTENSION">XML_SCHEMA_TYPE_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_FACET">XML_SCHEMA_TYPE_FACET</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_GROUP">XML_SCHEMA_TYPE_GROUP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_IDC_KEY">XML_SCHEMA_TYPE_IDC_KEY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_IDC_KEYREF">XML_SCHEMA_TYPE_IDC_KEYREF</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_IDC_UNIQUE">XML_SCHEMA_TYPE_IDC_UNIQUE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_LIST">XML_SCHEMA_TYPE_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_NOTATION">XML_SCHEMA_TYPE_NOTATION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_PARTICLE">XML_SCHEMA_TYPE_PARTICLE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_RESTRICTION">XML_SCHEMA_TYPE_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_SEQUENCE">XML_SCHEMA_TYPE_SEQUENCE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_SIMPLE">XML_SCHEMA_TYPE_SIMPLE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_SIMPLE_CONTENT">XML_SCHEMA_TYPE_SIMPLE_CONTENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_UNION">XML_SCHEMA_TYPE_UNION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_UR">XML_SCHEMA_TYPE_UR</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaAnnot">_xmlSchemaAnnot</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaAttribute">_xmlSchemaAttribute</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaAttributeGroup">_xmlSchemaAttributeGroup</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaAttributeLink">_xmlSchemaAttributeLink</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaFacet">_xmlSchemaFacet</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaFacetLink">_xmlSchemaFacetLink</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaNotation">_xmlSchemaNotation</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaTypeLink">_xmlSchemaTypeLink</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaWildcard">_xmlSchemaWildcard</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaWildcardNs">_xmlSchemaWildcardNs</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAnnot">xmlSchemaAnnot</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAnnotPtr">xmlSchemaAnnotPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAttribute">xmlSchemaAttribute</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAttributeGroup">xmlSchemaAttributeGroup</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAttributeGroupPtr">xmlSchemaAttributeGroupPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAttributeLink">xmlSchemaAttributeLink</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAttributeLinkPtr">xmlSchemaAttributeLinkPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAttributePtr">xmlSchemaAttributePtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaContentType">xmlSchemaContentType</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaElement">xmlSchemaElement</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaElementPtr">xmlSchemaElementPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFacet">xmlSchemaFacet</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFacetLink">xmlSchemaFacetLink</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFacetLinkPtr">xmlSchemaFacetLinkPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFreeType">xmlSchemaFreeType</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaNotation">xmlSchemaNotation</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaNotationPtr">xmlSchemaNotationPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaType">xmlSchemaType</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaTypeLink">xmlSchemaTypeLink</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaTypeLinkPtr">xmlSchemaTypeLinkPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaTypeType">xmlSchemaTypeType</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaVal">xmlSchemaVal</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaWildcard">xmlSchemaWildcard</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaWildcardNs">xmlSchemaWildcardNs</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaWildcardNsPtr">xmlSchemaWildcardNsPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaWildcardPtr">xmlSchemaWildcardPtr</a><br /> -</p><h2><a name="schematron" id="schematron">Module schematron</a>:</h2><p><a href="html/libxml-schematron.html#XML_SCHEMATRON_OUT_BUFFER">XML_SCHEMATRON_OUT_BUFFER</a><br /> -<a href="html/libxml-schematron.html#XML_SCHEMATRON_OUT_FILE">XML_SCHEMATRON_OUT_FILE</a><br /> -<a href="html/libxml-schematron.html#XML_SCHEMATRON_OUT_IO">XML_SCHEMATRON_OUT_IO</a><br /> -<a href="html/libxml-schematron.html#XML_SCHEMATRON_OUT_QUIET">XML_SCHEMATRON_OUT_QUIET</a><br /> -<a href="html/libxml-schematron.html#XML_SCHEMATRON_OUT_TEXT">XML_SCHEMATRON_OUT_TEXT</a><br /> -<a href="html/libxml-schematron.html#XML_SCHEMATRON_OUT_XML">XML_SCHEMATRON_OUT_XML</a><br /> -<a href="html/libxml-schematron.html#xmlSchematron">xmlSchematron</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronFree">xmlSchematronFree</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronFreeParserCtxt">xmlSchematronFreeParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronFreeValidCtxt">xmlSchematronFreeValidCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewDocParserCtxt">xmlSchematronNewDocParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewMemParserCtxt">xmlSchematronNewMemParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewParserCtxt">xmlSchematronNewParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewValidCtxt">xmlSchematronNewValidCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronParse">xmlSchematronParse</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronParserCtxt">xmlSchematronParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidCtxt">xmlSchematronValidCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidOptions">xmlSchematronValidOptions</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidateDoc">xmlSchematronValidateDoc</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidityErrorFunc">xmlSchematronValidityErrorFunc</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidityWarningFunc">xmlSchematronValidityWarningFunc</a><br /> -</p><h2><a name="threads" id="threads">Module threads</a>:</h2><p><a href="html/libxml-threads.html#xmlCleanupThreads">xmlCleanupThreads</a><br /> -<a href="html/libxml-threads.html#xmlDllMain">xmlDllMain</a><br /> -<a href="html/libxml-threads.html#xmlFreeMutex">xmlFreeMutex</a><br /> -<a href="html/libxml-threads.html#xmlFreeRMutex">xmlFreeRMutex</a><br /> -<a href="html/libxml-threads.html#xmlGetGlobalState">xmlGetGlobalState</a><br /> -<a href="html/libxml-threads.html#xmlGetThreadId">xmlGetThreadId</a><br /> -<a href="html/libxml-threads.html#xmlInitThreads">xmlInitThreads</a><br /> -<a href="html/libxml-threads.html#xmlIsMainThread">xmlIsMainThread</a><br /> -<a href="html/libxml-threads.html#xmlLockLibrary">xmlLockLibrary</a><br /> -<a href="html/libxml-threads.html#xmlMutex">xmlMutex</a><br /> -<a href="html/libxml-threads.html#xmlMutexLock">xmlMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlMutexPtr">xmlMutexPtr</a><br /> -<a href="html/libxml-threads.html#xmlMutexUnlock">xmlMutexUnlock</a><br /> -<a href="html/libxml-threads.html#xmlNewMutex">xmlNewMutex</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -<a href="html/libxml-threads.html#xmlRMutex">xmlRMutex</a><br /> -<a href="html/libxml-threads.html#xmlRMutexLock">xmlRMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlRMutexPtr">xmlRMutexPtr</a><br /> -<a href="html/libxml-threads.html#xmlRMutexUnlock">xmlRMutexUnlock</a><br /> -<a href="html/libxml-threads.html#xmlUnlockLibrary">xmlUnlockLibrary</a><br /> -</p><h2><a name="tree" id="tree">Module tree</a>:</h2><p><a href="html/libxml-tree.html#BASE_BUFFER_SIZE">BASE_BUFFER_SIZE</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_CDATA">XML_ATTRIBUTE_CDATA</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_DECL">XML_ATTRIBUTE_DECL</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_ENTITIES">XML_ATTRIBUTE_ENTITIES</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_ENTITY">XML_ATTRIBUTE_ENTITY</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_ENUMERATION">XML_ATTRIBUTE_ENUMERATION</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_FIXED">XML_ATTRIBUTE_FIXED</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_ID">XML_ATTRIBUTE_ID</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_IDREF">XML_ATTRIBUTE_IDREF</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_IDREFS">XML_ATTRIBUTE_IDREFS</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_IMPLIED">XML_ATTRIBUTE_IMPLIED</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_NMTOKEN">XML_ATTRIBUTE_NMTOKEN</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_NMTOKENS">XML_ATTRIBUTE_NMTOKENS</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_NODE">XML_ATTRIBUTE_NODE</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_NONE">XML_ATTRIBUTE_NONE</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_NOTATION">XML_ATTRIBUTE_NOTATION</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_REQUIRED">XML_ATTRIBUTE_REQUIRED</a><br /> -<a href="html/libxml-tree.html#XML_BUFFER_ALLOC_DOUBLEIT">XML_BUFFER_ALLOC_DOUBLEIT</a><br /> -<a href="html/libxml-tree.html#XML_BUFFER_ALLOC_EXACT">XML_BUFFER_ALLOC_EXACT</a><br /> -<a href="html/libxml-tree.html#XML_BUFFER_ALLOC_IMMUTABLE">XML_BUFFER_ALLOC_IMMUTABLE</a><br /> -<a href="html/libxml-tree.html#XML_CDATA_SECTION_NODE">XML_CDATA_SECTION_NODE</a><br /> -<a href="html/libxml-tree.html#XML_COMMENT_NODE">XML_COMMENT_NODE</a><br /> -<a href="html/libxml-tree.html#XML_DOCB_DOCUMENT_NODE">XML_DOCB_DOCUMENT_NODE</a><br /> -<a href="html/libxml-tree.html#XML_DOCUMENT_FRAG_NODE">XML_DOCUMENT_FRAG_NODE</a><br /> -<a href="html/libxml-tree.html#XML_DOCUMENT_NODE">XML_DOCUMENT_NODE</a><br /> -<a href="html/libxml-tree.html#XML_DOCUMENT_TYPE_NODE">XML_DOCUMENT_TYPE_NODE</a><br /> -<a href="html/libxml-tree.html#XML_DTD_NODE">XML_DTD_NODE</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_ELEMENT">XML_ELEMENT_CONTENT_ELEMENT</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_MULT">XML_ELEMENT_CONTENT_MULT</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_ONCE">XML_ELEMENT_CONTENT_ONCE</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_OPT">XML_ELEMENT_CONTENT_OPT</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_OR">XML_ELEMENT_CONTENT_OR</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_PCDATA">XML_ELEMENT_CONTENT_PCDATA</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_PLUS">XML_ELEMENT_CONTENT_PLUS</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_SEQ">XML_ELEMENT_CONTENT_SEQ</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_DECL">XML_ELEMENT_DECL</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_NODE">XML_ELEMENT_NODE</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_TYPE_ANY">XML_ELEMENT_TYPE_ANY</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_TYPE_ELEMENT">XML_ELEMENT_TYPE_ELEMENT</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_TYPE_EMPTY">XML_ELEMENT_TYPE_EMPTY</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_TYPE_MIXED">XML_ELEMENT_TYPE_MIXED</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_TYPE_UNDEFINED">XML_ELEMENT_TYPE_UNDEFINED</a><br /> -<a href="html/libxml-tree.html#XML_ENTITY_DECL">XML_ENTITY_DECL</a><br /> -<a href="html/libxml-tree.html#XML_ENTITY_NODE">XML_ENTITY_NODE</a><br /> -<a href="html/libxml-tree.html#XML_ENTITY_REF_NODE">XML_ENTITY_REF_NODE</a><br /> -<a href="html/libxml-tree.html#XML_GET_CONTENT">XML_GET_CONTENT</a><br /> -<a href="html/libxml-tree.html#XML_GET_LINE">XML_GET_LINE</a><br /> -<a href="html/libxml-tree.html#XML_HTML_DOCUMENT_NODE">XML_HTML_DOCUMENT_NODE</a><br /> -<a href="html/libxml-tree.html#XML_LOCAL_NAMESPACE">XML_LOCAL_NAMESPACE</a><br /> -<a href="html/libxml-tree.html#XML_NAMESPACE_DECL">XML_NAMESPACE_DECL</a><br /> -<a href="html/libxml-tree.html#XML_NOTATION_NODE">XML_NOTATION_NODE</a><br /> -<a href="html/libxml-tree.html#XML_PI_NODE">XML_PI_NODE</a><br /> -<a href="html/libxml-tree.html#XML_TEXT_NODE">XML_TEXT_NODE</a><br /> -<a href="html/libxml-tree.html#XML_XINCLUDE_END">XML_XINCLUDE_END</a><br /> -<a href="html/libxml-tree.html#XML_XINCLUDE_START">XML_XINCLUDE_START</a><br /> -<a href="html/libxml-tree.html#XML_XML_ID">XML_XML_ID</a><br /> -<a href="html/libxml-tree.html#XML_XML_NAMESPACE">XML_XML_NAMESPACE</a><br /> -<a href="html/libxml-tree.html#_xmlAttr">_xmlAttr</a><br /> -<a href="html/libxml-tree.html#_xmlAttribute">_xmlAttribute</a><br /> -<a href="html/libxml-tree.html#_xmlBuffer">_xmlBuffer</a><br /> -<a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-tree.html#_xmlElement">_xmlElement</a><br /> -<a href="html/libxml-tree.html#_xmlElementContent">_xmlElementContent</a><br /> -<a href="html/libxml-tree.html#_xmlEnumeration">_xmlEnumeration</a><br /> -<a href="html/libxml-tree.html#_xmlID">_xmlID</a><br /> -<a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -<a href="html/libxml-tree.html#_xmlNotation">_xmlNotation</a><br /> -<a href="html/libxml-tree.html#_xmlNs">_xmlNs</a><br /> -<a href="html/libxml-tree.html#_xmlRef">_xmlRef</a><br /> -<a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddChildList">xmlAddChildList</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddSibling">xmlAddSibling</a><br /> -<a href="html/libxml-tree.html#xmlAttr">xmlAttr</a><br /> -<a href="html/libxml-tree.html#xmlAttrPtr">xmlAttrPtr</a><br /> -<a href="html/libxml-tree.html#xmlAttrSerializeTxtContent">xmlAttrSerializeTxtContent</a><br /> -<a href="html/libxml-tree.html#xmlAttribute">xmlAttribute</a><br /> -<a href="html/libxml-tree.html#xmlAttributeDefault">xmlAttributeDefault</a><br /> -<a href="html/libxml-tree.html#xmlAttributePtr">xmlAttributePtr</a><br /> -<a href="html/libxml-tree.html#xmlAttributeType">xmlAttributeType</a><br /> -<a href="html/libxml-tree.html#xmlBuffer">xmlBuffer</a><br /> -<a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferAddHead">xmlBufferAddHead</a><br /> -<a href="html/libxml-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlBufferCCat">xmlBufferCCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferCat">xmlBufferCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferContent">xmlBufferContent</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreate">xmlBufferCreate</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateSize">xmlBufferCreateSize</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-tree.html#xmlBufferDump">xmlBufferDump</a><br /> -<a href="html/libxml-tree.html#xmlBufferEmpty">xmlBufferEmpty</a><br /> -<a href="html/libxml-tree.html#xmlBufferFree">xmlBufferFree</a><br /> -<a href="html/libxml-tree.html#xmlBufferGrow">xmlBufferGrow</a><br /> -<a href="html/libxml-tree.html#xmlBufferLength">xmlBufferLength</a><br /> -<a href="html/libxml-tree.html#xmlBufferPtr">xmlBufferPtr</a><br /> -<a href="html/libxml-tree.html#xmlBufferResize">xmlBufferResize</a><br /> -<a href="html/libxml-tree.html#xmlBufferSetAllocationScheme">xmlBufferSetAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlBufferShrink">xmlBufferShrink</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteCHAR">xmlBufferWriteCHAR</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteChar">xmlBufferWriteChar</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -<a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -<a href="html/libxml-tree.html#xmlChildrenNode">xmlChildrenNode</a><br /> -<a href="html/libxml-tree.html#xmlCopyDoc">xmlCopyDoc</a><br /> -<a href="html/libxml-tree.html#xmlCopyDtd">xmlCopyDtd</a><br /> -<a href="html/libxml-tree.html#xmlCopyNamespace">xmlCopyNamespace</a><br /> -<a href="html/libxml-tree.html#xmlCopyNamespaceList">xmlCopyNamespaceList</a><br /> -<a href="html/libxml-tree.html#xmlCopyNode">xmlCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlCopyNodeList">xmlCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlCopyProp">xmlCopyProp</a><br /> -<a href="html/libxml-tree.html#xmlCopyPropList">xmlCopyPropList</a><br /> -<a href="html/libxml-tree.html#xmlCreateIntSubset">xmlCreateIntSubset</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCtxt">xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapFreeCtxt">xmlDOMWrapFreeCtxt</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapNewCtxt">xmlDOMWrapNewCtxt</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-tree.html#xmlDoc">xmlDoc</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNode">xmlDocCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNodeList">xmlDocCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlDocDump">xmlDocDump</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemory">xmlDocDumpMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> -<a href="html/libxml-tree.html#xmlDocGetRootElement">xmlDocGetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlDocPtr">xmlDocPtr</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlDtd">xmlDtd</a><br /> -<a href="html/libxml-tree.html#xmlDtdPtr">xmlDtdPtr</a><br /> -<a href="html/libxml-tree.html#xmlElemDump">xmlElemDump</a><br /> -<a href="html/libxml-tree.html#xmlElement">xmlElement</a><br /> -<a href="html/libxml-tree.html#xmlElementContent">xmlElementContent</a><br /> -<a href="html/libxml-tree.html#xmlElementContentOccur">xmlElementContentOccur</a><br /> -<a href="html/libxml-tree.html#xmlElementContentPtr">xmlElementContentPtr</a><br /> -<a href="html/libxml-tree.html#xmlElementContentType">xmlElementContentType</a><br /> -<a href="html/libxml-tree.html#xmlElementPtr">xmlElementPtr</a><br /> -<a href="html/libxml-tree.html#xmlElementType">xmlElementType</a><br /> -<a href="html/libxml-tree.html#xmlElementTypeVal">xmlElementTypeVal</a><br /> -<a href="html/libxml-tree.html#xmlEntity">xmlEntity</a><br /> -<a href="html/libxml-tree.html#xmlEntityPtr">xmlEntityPtr</a><br /> -<a href="html/libxml-tree.html#xmlEnumeration">xmlEnumeration</a><br /> -<a href="html/libxml-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a><br /> -<a href="html/libxml-tree.html#xmlFreeDoc">xmlFreeDoc</a><br /> -<a href="html/libxml-tree.html#xmlFreeDtd">xmlFreeDtd</a><br /> -<a href="html/libxml-tree.html#xmlFreeNode">xmlFreeNode</a><br /> -<a href="html/libxml-tree.html#xmlFreeNodeList">xmlFreeNodeList</a><br /> -<a href="html/libxml-tree.html#xmlFreeNs">xmlFreeNs</a><br /> -<a href="html/libxml-tree.html#xmlFreeNsList">xmlFreeNsList</a><br /> -<a href="html/libxml-tree.html#xmlFreeProp">xmlFreeProp</a><br /> -<a href="html/libxml-tree.html#xmlFreePropList">xmlFreePropList</a><br /> -<a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlGetCompressMode">xmlGetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlGetDocCompressMode">xmlGetDocCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlGetIntSubset">xmlGetIntSubset</a><br /> -<a href="html/libxml-tree.html#xmlGetLastChild">xmlGetLastChild</a><br /> -<a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> -<a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNodePath">xmlGetNodePath</a><br /> -<a href="html/libxml-tree.html#xmlGetNsList">xmlGetNsList</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -<a href="html/libxml-tree.html#xmlID">xmlID</a><br /> -<a href="html/libxml-tree.html#xmlIDPtr">xmlIDPtr</a><br /> -<a href="html/libxml-tree.html#xmlIsBlankNode">xmlIsBlankNode</a><br /> -<a href="html/libxml-tree.html#xmlIsXHTML">xmlIsXHTML</a><br /> -<a href="html/libxml-tree.html#xmlNewCDataBlock">xmlNewCDataBlock</a><br /> -<a href="html/libxml-tree.html#xmlNewCharRef">xmlNewCharRef</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewComment">xmlNewComment</a><br /> -<a href="html/libxml-tree.html#xmlNewDoc">xmlNewDoc</a><br /> -<a href="html/libxml-tree.html#xmlNewDocComment">xmlNewDocComment</a><br /> -<a href="html/libxml-tree.html#xmlNewDocFragment">xmlNewDocFragment</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewDocPI">xmlNewDocPI</a><br /> -<a href="html/libxml-tree.html#xmlNewDocProp">xmlNewDocProp</a><br /> -<a href="html/libxml-tree.html#xmlNewDocRawNode">xmlNewDocRawNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocText">xmlNewDocText</a><br /> -<a href="html/libxml-tree.html#xmlNewDocTextLen">xmlNewDocTextLen</a><br /> -<a href="html/libxml-tree.html#xmlNewDtd">xmlNewDtd</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -<a href="html/libxml-tree.html#xmlNewNode">xmlNewNode</a><br /> -<a href="html/libxml-tree.html#xmlNewNodeEatName">xmlNewNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-tree.html#xmlNewNsProp">xmlNewNsProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsPropEatName">xmlNewNsPropEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewPI">xmlNewPI</a><br /> -<a href="html/libxml-tree.html#xmlNewProp">xmlNewProp</a><br /> -<a href="html/libxml-tree.html#xmlNewReference">xmlNewReference</a><br /> -<a href="html/libxml-tree.html#xmlNewText">xmlNewText</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-tree.html#xmlNewTextLen">xmlNewTextLen</a><br /> -<a href="html/libxml-tree.html#xmlNode">xmlNode</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -<a href="html/libxml-tree.html#xmlNodeIsText">xmlNodeIsText</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-tree.html#xmlNodePtr">xmlNodePtr</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetBase">xmlNodeSetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetLang">xmlNodeSetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetName">xmlNodeSetName</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetSpacePreserve">xmlNodeSetSpacePreserve</a><br /> -<a href="html/libxml-tree.html#xmlNotation">xmlNotation</a><br /> -<a href="html/libxml-tree.html#xmlNotationPtr">xmlNotationPtr</a><br /> -<a href="html/libxml-tree.html#xmlNs">xmlNs</a><br /> -<a href="html/libxml-tree.html#xmlNsPtr">xmlNsPtr</a><br /> -<a href="html/libxml-tree.html#xmlNsType">xmlNsType</a><br /> -<a href="html/libxml-tree.html#xmlOutputBuffer">xmlOutputBuffer</a><br /> -<a href="html/libxml-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a><br /> -<a href="html/libxml-tree.html#xmlParserCtxt">xmlParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a><br /> -<a href="html/libxml-tree.html#xmlParserInput">xmlParserInput</a><br /> -<a href="html/libxml-tree.html#xmlParserInputBuffer">xmlParserInputBuffer</a><br /> -<a href="html/libxml-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a><br /> -<a href="html/libxml-tree.html#xmlParserInputPtr">xmlParserInputPtr</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-tree.html#xmlRef">xmlRef</a><br /> -<a href="html/libxml-tree.html#xmlRefPtr">xmlRefPtr</a><br /> -<a href="html/libxml-tree.html#xmlRemoveProp">xmlRemoveProp</a><br /> -<a href="html/libxml-tree.html#xmlReplaceNode">xmlReplaceNode</a><br /> -<a href="html/libxml-tree.html#xmlRootNode">xmlRootNode</a><br /> -<a href="html/libxml-tree.html#xmlSAXHandler">xmlSAXHandler</a><br /> -<a href="html/libxml-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a><br /> -<a href="html/libxml-tree.html#xmlSAXLocator">xmlSAXLocator</a><br /> -<a href="html/libxml-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a><br /> -<a href="html/libxml-tree.html#xmlSaveFile">xmlSaveFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFileEnc">xmlSaveFileEnc</a><br /> -<a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetCompressMode">xmlSetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetDocCompressMode">xmlSetDocCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetListDoc">xmlSetListDoc</a><br /> -<a href="html/libxml-tree.html#xmlSetNs">xmlSetNs</a><br /> -<a href="html/libxml-tree.html#xmlSetNsProp">xmlSetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -<a href="html/libxml-tree.html#xmlSetTreeDoc">xmlSetTreeDoc</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a><br /> -<a href="html/libxml-tree.html#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a><br /> -<a href="html/libxml-tree.html#xmlTextConcat">xmlTextConcat</a><br /> -<a href="html/libxml-tree.html#xmlTextMerge">xmlTextMerge</a><br /> -<a href="html/libxml-tree.html#xmlUnlinkNode">xmlUnlinkNode</a><br /> -<a href="html/libxml-tree.html#xmlUnsetNsProp">xmlUnsetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlUnsetProp">xmlUnsetProp</a><br /> -<a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> -<a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> -<a href="html/libxml-tree.html#xmlValidateName">xmlValidateName</a><br /> -<a href="html/libxml-tree.html#xmlValidateQName">xmlValidateQName</a><br /> -</p><h2><a name="uri" id="uri">Module uri</a>:</h2><p><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -<a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-uri.html#xmlCreateURI">xmlCreateURI</a><br /> -<a href="html/libxml-uri.html#xmlFreeURI">xmlFreeURI</a><br /> -<a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -<a href="html/libxml-uri.html#xmlParseURI">xmlParseURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -<a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -<a href="html/libxml-uri.html#xmlPrintURI">xmlPrintURI</a><br /> -<a href="html/libxml-uri.html#xmlSaveUri">xmlSaveUri</a><br /> -<a href="html/libxml-uri.html#xmlURI">xmlURI</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -<a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -<a href="html/libxml-uri.html#xmlURIPtr">xmlURIPtr</a><br /> -<a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -</p><h2><a name="valid" id="valid">Module valid</a>:</h2><p><a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_0">XML_CTXT_FINISH_DTD_0</a><br /> -<a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_1">XML_CTXT_FINISH_DTD_1</a><br /> -<a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -<a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlAddElementDecl">xmlAddElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlAddID">xmlAddID</a><br /> -<a href="html/libxml-valid.html#xmlAddNotationDecl">xmlAddNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> -<a href="html/libxml-valid.html#xmlAttributeTable">xmlAttributeTable</a><br /> -<a href="html/libxml-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a><br /> -<a href="html/libxml-valid.html#xmlCopyAttributeTable">xmlCopyAttributeTable</a><br /> -<a href="html/libxml-valid.html#xmlCopyDocElementContent">xmlCopyDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlCopyElementContent">xmlCopyElementContent</a><br /> -<a href="html/libxml-valid.html#xmlCopyElementTable">xmlCopyElementTable</a><br /> -<a href="html/libxml-valid.html#xmlCopyEnumeration">xmlCopyEnumeration</a><br /> -<a href="html/libxml-valid.html#xmlCopyNotationTable">xmlCopyNotationTable</a><br /> -<a href="html/libxml-valid.html#xmlCreateEnumeration">xmlCreateEnumeration</a><br /> -<a href="html/libxml-valid.html#xmlDumpAttributeDecl">xmlDumpAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpAttributeTable">xmlDumpAttributeTable</a><br /> -<a href="html/libxml-valid.html#xmlDumpElementDecl">xmlDumpElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpElementTable">xmlDumpElementTable</a><br /> -<a href="html/libxml-valid.html#xmlDumpNotationDecl">xmlDumpNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpNotationTable">xmlDumpNotationTable</a><br /> -<a href="html/libxml-valid.html#xmlElementTable">xmlElementTable</a><br /> -<a href="html/libxml-valid.html#xmlElementTablePtr">xmlElementTablePtr</a><br /> -<a href="html/libxml-valid.html#xmlFreeAttributeTable">xmlFreeAttributeTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeDocElementContent">xmlFreeDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlFreeElementContent">xmlFreeElementContent</a><br /> -<a href="html/libxml-valid.html#xmlFreeElementTable">xmlFreeElementTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeEnumeration">xmlFreeEnumeration</a><br /> -<a href="html/libxml-valid.html#xmlFreeIDTable">xmlFreeIDTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeNotationTable">xmlFreeNotationTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeRefTable">xmlFreeRefTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeValidCtxt">xmlFreeValidCtxt</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdAttrDesc">xmlGetDtdAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdElementDesc">xmlGetDtdElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdNotationDesc">xmlGetDtdNotationDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQElementDesc">xmlGetDtdQElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetID">xmlGetID</a><br /> -<a href="html/libxml-valid.html#xmlGetRefs">xmlGetRefs</a><br /> -<a href="html/libxml-valid.html#xmlIDTable">xmlIDTable</a><br /> -<a href="html/libxml-valid.html#xmlIDTablePtr">xmlIDTablePtr</a><br /> -<a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -<a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -<a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -<a href="html/libxml-valid.html#xmlNewDocElementContent">xmlNewDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlNewElementContent">xmlNewElementContent</a><br /> -<a href="html/libxml-valid.html#xmlNewValidCtxt">xmlNewValidCtxt</a><br /> -<a href="html/libxml-valid.html#xmlNotationTable">xmlNotationTable</a><br /> -<a href="html/libxml-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a><br /> -<a href="html/libxml-valid.html#xmlRefTable">xmlRefTable</a><br /> -<a href="html/libxml-valid.html#xmlRefTablePtr">xmlRefTablePtr</a><br /> -<a href="html/libxml-valid.html#xmlRemoveID">xmlRemoveID</a><br /> -<a href="html/libxml-valid.html#xmlRemoveRef">xmlRemoveRef</a><br /> -<a href="html/libxml-valid.html#xmlSnprintfElementContent">xmlSnprintfElementContent</a><br /> -<a href="html/libxml-valid.html#xmlSprintfElementContent">xmlSprintfElementContent</a><br /> -<a href="html/libxml-valid.html#xmlValidBuildContentModel">xmlValidBuildContentModel</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxt">xmlValidCtxt</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a><br /> -<a href="html/libxml-valid.html#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidState">xmlValidState</a><br /> -<a href="html/libxml-valid.html#xmlValidStatePtr">xmlValidStatePtr</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocument">xmlValidateDocument</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateElement">xmlValidateElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNameValue">xmlValidateNameValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNamesValue">xmlValidateNamesValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNmtokenValue">xmlValidateNmtokenValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNmtokensValue">xmlValidateNmtokensValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationUse">xmlValidateNotationUse</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-valid.html#xmlValidatePopElement">xmlValidatePopElement</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushCData">xmlValidatePushCData</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushElement">xmlValidatePushElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</p><h2><a name="xinclude" id="xinclude">Module xinclude</a>:</h2><p><a href="html/libxml-xinclude.html#XINCLUDE_FALLBACK">XINCLUDE_FALLBACK</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_HREF">XINCLUDE_HREF</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_NODE">XINCLUDE_NODE</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_NS">XINCLUDE_NS</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE">XINCLUDE_PARSE</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE_ENCODING">XINCLUDE_PARSE_ENCODING</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE_TEXT">XINCLUDE_PARSE_TEXT</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE_XML">XINCLUDE_PARSE_XML</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE_XPOINTER">XINCLUDE_PARSE_XPOINTER</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeCtxt">xmlXIncludeCtxt</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeFreeContext">xmlXIncludeFreeContext</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeNewContext">xmlXIncludeNewContext</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcess">xmlXIncludeProcess</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlags">xmlXIncludeProcessFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTree">xmlXIncludeProcessTree</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTreeFlags">xmlXIncludeProcessTreeFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeSetFlags">xmlXIncludeSetFlags</a><br /> -</p><h2><a name="xlink" id="xlink">Module xlink</a>:</h2><p><a href="html/libxml-xlink.html#XLINK_ACTUATE_AUTO">XLINK_ACTUATE_AUTO</a><br /> -<a href="html/libxml-xlink.html#XLINK_ACTUATE_NONE">XLINK_ACTUATE_NONE</a><br /> -<a href="html/libxml-xlink.html#XLINK_ACTUATE_ONREQUEST">XLINK_ACTUATE_ONREQUEST</a><br /> -<a href="html/libxml-xlink.html#XLINK_SHOW_EMBED">XLINK_SHOW_EMBED</a><br /> -<a href="html/libxml-xlink.html#XLINK_SHOW_NEW">XLINK_SHOW_NEW</a><br /> -<a href="html/libxml-xlink.html#XLINK_SHOW_NONE">XLINK_SHOW_NONE</a><br /> -<a href="html/libxml-xlink.html#XLINK_SHOW_REPLACE">XLINK_SHOW_REPLACE</a><br /> -<a href="html/libxml-xlink.html#XLINK_TYPE_EXTENDED">XLINK_TYPE_EXTENDED</a><br /> -<a href="html/libxml-xlink.html#XLINK_TYPE_EXTENDED_SET">XLINK_TYPE_EXTENDED_SET</a><br /> -<a href="html/libxml-xlink.html#XLINK_TYPE_NONE">XLINK_TYPE_NONE</a><br /> -<a href="html/libxml-xlink.html#XLINK_TYPE_SIMPLE">XLINK_TYPE_SIMPLE</a><br /> -<a href="html/libxml-xlink.html#_xlinkHandler">_xlinkHandler</a><br /> -<a href="html/libxml-xlink.html#xlinkActuate">xlinkActuate</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkGetDefaultDetect">xlinkGetDefaultDetect</a><br /> -<a href="html/libxml-xlink.html#xlinkGetDefaultHandler">xlinkGetDefaultHandler</a><br /> -<a href="html/libxml-xlink.html#xlinkHRef">xlinkHRef</a><br /> -<a href="html/libxml-xlink.html#xlinkHandler">xlinkHandler</a><br /> -<a href="html/libxml-xlink.html#xlinkHandlerPtr">xlinkHandlerPtr</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a><br /> -<a href="html/libxml-xlink.html#xlinkRole">xlinkRole</a><br /> -<a href="html/libxml-xlink.html#xlinkSetDefaultDetect">xlinkSetDefaultDetect</a><br /> -<a href="html/libxml-xlink.html#xlinkSetDefaultHandler">xlinkSetDefaultHandler</a><br /> -<a href="html/libxml-xlink.html#xlinkShow">xlinkShow</a><br /> -<a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkTitle">xlinkTitle</a><br /> -<a href="html/libxml-xlink.html#xlinkType">xlinkType</a><br /> -</p><h2><a name="xmlIO" id="xmlIO">Module xmlIO</a>:</h2><p><a href="html/libxml-xmlIO.html#_xmlOutputBuffer">_xmlOutputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#_xmlParserInputBuffer">_xmlParserInputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlAllocOutputBuffer">xmlAllocOutputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlAllocParserInputBuffer">xmlAllocParserInputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> -<a href="html/libxml-xmlIO.html#xmlCleanupInputCallbacks">xmlCleanupInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlCleanupOutputCallbacks">xmlCleanupOutputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileClose">xmlFileClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileMatch">xmlFileMatch</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileOpen">xmlFileOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileRead">xmlFileRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlFreeParserInputBuffer">xmlFreeParserInputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPClose">xmlIOFTPClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPMatch">xmlIOFTPMatch</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPOpen">xmlIOFTPOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPRead">xmlIOFTPRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPClose">xmlIOHTTPClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPMatch">xmlIOHTTPMatch</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpen">xmlIOHTTPOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPRead">xmlIOHTTPRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-xmlIO.html#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferClose">xmlOutputBufferClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFd">xmlOutputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFile">xmlOutputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferFlush">xmlOutputBufferFlush</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWrite">xmlOutputBufferWrite</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserGetDirectory">xmlParserGetDirectory</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFd">xmlParserInputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFile">xmlParserInputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateMem">xmlParserInputBufferCreateMem</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlPopInputCallbacks">xmlPopInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterDefaultInputCallbacks">xmlRegisterDefaultInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterDefaultOutputCallbacks">xmlRegisterDefaultOutputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -</p><h2><a name="xmlautomata" id="xmlautomata">Module xmlautomata</a>:</h2><p><a href="html/libxml-xmlautomata.html#xmlAutomata">xmlAutomata</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataCompile">xmlAutomataCompile</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataGetInitState">xmlAutomataGetInitState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataIsDeterminist">xmlAutomataIsDeterminist</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounter">xmlAutomataNewCounter</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewState">xmlAutomataNewState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataSetFinalState">xmlAutomataSetFinalState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataState">xmlAutomataState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a><br /> -<a href="html/libxml-xmlautomata.html#xmlFreeAutomata">xmlFreeAutomata</a><br /> -<a href="html/libxml-xmlautomata.html#xmlNewAutomata">xmlNewAutomata</a><br /> -</p><h2><a name="xmlerror" id="xmlerror">Module xmlerror</a>:</h2><p><a href="html/libxml-xmlerror.html#XML_C14N_CREATE_CTXT">XML_C14N_CREATE_CTXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_C14N_CREATE_STACK">XML_C14N_CREATE_STACK</a><br /> -<a href="html/libxml-xmlerror.html#XML_C14N_INVALID_NODE">XML_C14N_INVALID_NODE</a><br /> -<a href="html/libxml-xmlerror.html#XML_C14N_RELATIVE_NAMESPACE">XML_C14N_RELATIVE_NAMESPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_C14N_REQUIRES_UTF8">XML_C14N_REQUIRES_UTF8</a><br /> -<a href="html/libxml-xmlerror.html#XML_C14N_UNKNOW_NODE">XML_C14N_UNKNOW_NODE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CATALOG_ENTRY_BROKEN">XML_CATALOG_ENTRY_BROKEN</a><br /> -<a href="html/libxml-xmlerror.html#XML_CATALOG_MISSING_ATTR">XML_CATALOG_MISSING_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_CATALOG_NOT_CATALOG">XML_CATALOG_NOT_CATALOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_CATALOG_PREFER_VALUE">XML_CATALOG_PREFER_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CATALOG_RECURSION">XML_CATALOG_RECURSION</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_">XML_CHECK_</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_ENTITY_TYPE">XML_CHECK_ENTITY_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_ATTRIBUTE">XML_CHECK_FOUND_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_CDATA">XML_CHECK_FOUND_CDATA</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_COMMENT">XML_CHECK_FOUND_COMMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_DOCTYPE">XML_CHECK_FOUND_DOCTYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_ELEMENT">XML_CHECK_FOUND_ELEMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_ENTITY">XML_CHECK_FOUND_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_ENTITYREF">XML_CHECK_FOUND_ENTITYREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_FRAGMENT">XML_CHECK_FOUND_FRAGMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_NOTATION">XML_CHECK_FOUND_NOTATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_PI">XML_CHECK_FOUND_PI</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_TEXT">XML_CHECK_FOUND_TEXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NAME_NOT_NULL">XML_CHECK_NAME_NOT_NULL</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_ATTR">XML_CHECK_NOT_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_ATTR_DECL">XML_CHECK_NOT_ATTR_DECL</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_DTD">XML_CHECK_NOT_DTD</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_ELEM_DECL">XML_CHECK_NOT_ELEM_DECL</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_ENTITY_DECL">XML_CHECK_NOT_ENTITY_DECL</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_NCNAME">XML_CHECK_NOT_NCNAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_NS_DECL">XML_CHECK_NOT_NS_DECL</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_UTF8">XML_CHECK_NOT_UTF8</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_DICT">XML_CHECK_NO_DICT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_DOC">XML_CHECK_NO_DOC</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_ELEM">XML_CHECK_NO_ELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_HREF">XML_CHECK_NO_HREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_NAME">XML_CHECK_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_NEXT">XML_CHECK_NO_NEXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_PARENT">XML_CHECK_NO_PARENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_PREV">XML_CHECK_NO_PREV</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NS_ANCESTOR">XML_CHECK_NS_ANCESTOR</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NS_SCOPE">XML_CHECK_NS_SCOPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_OUTSIDE_DICT">XML_CHECK_OUTSIDE_DICT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_UNKNOWN_NODE">XML_CHECK_UNKNOWN_NODE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_WRONG_DOC">XML_CHECK_WRONG_DOC</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_WRONG_NAME">XML_CHECK_WRONG_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_WRONG_NEXT">XML_CHECK_WRONG_NEXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_WRONG_PARENT">XML_CHECK_WRONG_PARENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_WRONG_PREV">XML_CHECK_WRONG_PREV</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_X">XML_CHECK_X</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ATTRIBUTE_DEFAULT">XML_DTD_ATTRIBUTE_DEFAULT</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ATTRIBUTE_REDEFINED">XML_DTD_ATTRIBUTE_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ATTRIBUTE_VALUE">XML_DTD_ATTRIBUTE_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_CONTENT_ERROR">XML_DTD_CONTENT_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_CONTENT_MODEL">XML_DTD_CONTENT_MODEL</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_CONTENT_NOT_DETERMINIST">XML_DTD_CONTENT_NOT_DETERMINIST</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_DIFFERENT_PREFIX">XML_DTD_DIFFERENT_PREFIX</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ELEM_DEFAULT_NAMESPACE">XML_DTD_ELEM_DEFAULT_NAMESPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ELEM_NAMESPACE">XML_DTD_ELEM_NAMESPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ELEM_REDEFINED">XML_DTD_ELEM_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_EMPTY_NOTATION">XML_DTD_EMPTY_NOTATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ENTITY_TYPE">XML_DTD_ENTITY_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ID_FIXED">XML_DTD_ID_FIXED</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ID_REDEFINED">XML_DTD_ID_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ID_SUBSET">XML_DTD_ID_SUBSET</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_INVALID_CHILD">XML_DTD_INVALID_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_INVALID_DEFAULT">XML_DTD_INVALID_DEFAULT</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_LOAD_ERROR">XML_DTD_LOAD_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_MISSING_ATTRIBUTE">XML_DTD_MISSING_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_MIXED_CORRUPT">XML_DTD_MIXED_CORRUPT</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_MULTIPLE_ID">XML_DTD_MULTIPLE_ID</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NOTATION_REDEFINED">XML_DTD_NOTATION_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NOTATION_VALUE">XML_DTD_NOTATION_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NOT_EMPTY">XML_DTD_NOT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NOT_PCDATA">XML_DTD_NOT_PCDATA</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NOT_STANDALONE">XML_DTD_NOT_STANDALONE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NO_DOC">XML_DTD_NO_DOC</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NO_DTD">XML_DTD_NO_DTD</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NO_ELEM_NAME">XML_DTD_NO_ELEM_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NO_PREFIX">XML_DTD_NO_PREFIX</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NO_ROOT">XML_DTD_NO_ROOT</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ROOT_NAME">XML_DTD_ROOT_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_STANDALONE_DEFAULTED">XML_DTD_STANDALONE_DEFAULTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_STANDALONE_WHITE_SPACE">XML_DTD_STANDALONE_WHITE_SPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_UNKNOWN_ATTRIBUTE">XML_DTD_UNKNOWN_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_UNKNOWN_ELEM">XML_DTD_UNKNOWN_ELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_UNKNOWN_ENTITY">XML_DTD_UNKNOWN_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_UNKNOWN_ID">XML_DTD_UNKNOWN_ID</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_UNKNOWN_NOTATION">XML_DTD_UNKNOWN_NOTATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_XMLID_TYPE">XML_DTD_XMLID_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_XMLID_VALUE">XML_DTD_XMLID_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ATTLIST_NOT_FINISHED">XML_ERR_ATTLIST_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ATTLIST_NOT_STARTED">XML_ERR_ATTLIST_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ATTRIBUTE_NOT_FINISHED">XML_ERR_ATTRIBUTE_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ATTRIBUTE_NOT_STARTED">XML_ERR_ATTRIBUTE_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ATTRIBUTE_REDEFINED">XML_ERR_ATTRIBUTE_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ATTRIBUTE_WITHOUT_VALUE">XML_ERR_ATTRIBUTE_WITHOUT_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CDATA_NOT_FINISHED">XML_ERR_CDATA_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CHARREF_AT_EOF">XML_ERR_CHARREF_AT_EOF</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CHARREF_IN_DTD">XML_ERR_CHARREF_IN_DTD</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CHARREF_IN_EPILOG">XML_ERR_CHARREF_IN_EPILOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CHARREF_IN_PROLOG">XML_ERR_CHARREF_IN_PROLOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_COMMENT_NOT_FINISHED">XML_ERR_COMMENT_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CONDSEC_INVALID">XML_ERR_CONDSEC_INVALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CONDSEC_INVALID_KEYWORD">XML_ERR_CONDSEC_INVALID_KEYWORD</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CONDSEC_NOT_FINISHED">XML_ERR_CONDSEC_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CONDSEC_NOT_STARTED">XML_ERR_CONDSEC_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_DOCTYPE_NOT_FINISHED">XML_ERR_DOCTYPE_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_DOCUMENT_EMPTY">XML_ERR_DOCUMENT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_DOCUMENT_END">XML_ERR_DOCUMENT_END</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_DOCUMENT_START">XML_ERR_DOCUMENT_START</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ELEMCONTENT_NOT_FINISHED">XML_ERR_ELEMCONTENT_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ELEMCONTENT_NOT_STARTED">XML_ERR_ELEMCONTENT_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENCODING_NAME">XML_ERR_ENCODING_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITYREF_AT_EOF">XML_ERR_ENTITYREF_AT_EOF</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITYREF_IN_DTD">XML_ERR_ENTITYREF_IN_DTD</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITYREF_IN_EPILOG">XML_ERR_ENTITYREF_IN_EPILOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITYREF_IN_PROLOG">XML_ERR_ENTITYREF_IN_PROLOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITYREF_NO_NAME">XML_ERR_ENTITYREF_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITYREF_SEMICOL_MISSING">XML_ERR_ENTITYREF_SEMICOL_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_BOUNDARY">XML_ERR_ENTITY_BOUNDARY</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_CHAR_ERROR">XML_ERR_ENTITY_CHAR_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_IS_EXTERNAL">XML_ERR_ENTITY_IS_EXTERNAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_IS_PARAMETER">XML_ERR_ENTITY_IS_PARAMETER</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_LOOP">XML_ERR_ENTITY_LOOP</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_NOT_FINISHED">XML_ERR_ENTITY_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_NOT_STARTED">XML_ERR_ENTITY_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_PE_INTERNAL">XML_ERR_ENTITY_PE_INTERNAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_PROCESSING">XML_ERR_ENTITY_PROCESSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_EQUAL_REQUIRED">XML_ERR_EQUAL_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ERROR">XML_ERR_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_EXTRA_CONTENT">XML_ERR_EXTRA_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_EXT_ENTITY_STANDALONE">XML_ERR_EXT_ENTITY_STANDALONE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_EXT_SUBSET_NOT_FINISHED">XML_ERR_EXT_SUBSET_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_FATAL">XML_ERR_FATAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_GT_REQUIRED">XML_ERR_GT_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_HYPHEN_IN_COMMENT">XML_ERR_HYPHEN_IN_COMMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INTERNAL_ERROR">XML_ERR_INTERNAL_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INVALID_CHAR">XML_ERR_INVALID_CHAR</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INVALID_CHARREF">XML_ERR_INVALID_CHARREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INVALID_DEC_CHARREF">XML_ERR_INVALID_DEC_CHARREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INVALID_ENCODING">XML_ERR_INVALID_ENCODING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INVALID_HEX_CHARREF">XML_ERR_INVALID_HEX_CHARREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INVALID_URI">XML_ERR_INVALID_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_LITERAL_NOT_FINISHED">XML_ERR_LITERAL_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_LITERAL_NOT_STARTED">XML_ERR_LITERAL_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_LTSLASH_REQUIRED">XML_ERR_LTSLASH_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_LT_IN_ATTRIBUTE">XML_ERR_LT_IN_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_LT_REQUIRED">XML_ERR_LT_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_MISPLACED_CDATA_END">XML_ERR_MISPLACED_CDATA_END</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_MISSING_ENCODING">XML_ERR_MISSING_ENCODING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_MIXED_NOT_FINISHED">XML_ERR_MIXED_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_MIXED_NOT_STARTED">XML_ERR_MIXED_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NAME_REQUIRED">XML_ERR_NAME_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NMTOKEN_REQUIRED">XML_ERR_NMTOKEN_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NONE">XML_ERR_NONE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NOTATION_NOT_FINISHED">XML_ERR_NOTATION_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NOTATION_NOT_STARTED">XML_ERR_NOTATION_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NOTATION_PROCESSING">XML_ERR_NOTATION_PROCESSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NOT_STANDALONE">XML_ERR_NOT_STANDALONE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NOT_WELL_BALANCED">XML_ERR_NOT_WELL_BALANCED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NO_DTD">XML_ERR_NO_DTD</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NO_MEMORY">XML_ERR_NO_MEMORY</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NS_DECL_ERROR">XML_ERR_NS_DECL_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_OK">XML_ERR_OK</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PCDATA_REQUIRED">XML_ERR_PCDATA_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PEREF_AT_EOF">XML_ERR_PEREF_AT_EOF</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PEREF_IN_EPILOG">XML_ERR_PEREF_IN_EPILOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PEREF_IN_INT_SUBSET">XML_ERR_PEREF_IN_INT_SUBSET</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PEREF_IN_PROLOG">XML_ERR_PEREF_IN_PROLOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PEREF_NO_NAME">XML_ERR_PEREF_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PEREF_SEMICOL_MISSING">XML_ERR_PEREF_SEMICOL_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PI_NOT_FINISHED">XML_ERR_PI_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PI_NOT_STARTED">XML_ERR_PI_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PUBID_REQUIRED">XML_ERR_PUBID_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_RESERVED_XML_NAME">XML_ERR_RESERVED_XML_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_SEPARATOR_REQUIRED">XML_ERR_SEPARATOR_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_SPACE_REQUIRED">XML_ERR_SPACE_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_STANDALONE_VALUE">XML_ERR_STANDALONE_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_STRING_NOT_CLOSED">XML_ERR_STRING_NOT_CLOSED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_STRING_NOT_STARTED">XML_ERR_STRING_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_TAG_NAME_MISMATCH">XML_ERR_TAG_NAME_MISMATCH</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_TAG_NOT_FINISHED">XML_ERR_TAG_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_UNDECLARED_ENTITY">XML_ERR_UNDECLARED_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_UNKNOWN_ENCODING">XML_ERR_UNKNOWN_ENCODING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_UNPARSED_ENTITY">XML_ERR_UNPARSED_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_UNSUPPORTED_ENCODING">XML_ERR_UNSUPPORTED_ENCODING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_URI_FRAGMENT">XML_ERR_URI_FRAGMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_URI_REQUIRED">XML_ERR_URI_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_VALUE_REQUIRED">XML_ERR_VALUE_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_VERSION_MISSING">XML_ERR_VERSION_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_WARNING">XML_ERR_WARNING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_XMLDECL_NOT_FINISHED">XML_ERR_XMLDECL_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_XMLDECL_NOT_STARTED">XML_ERR_XMLDECL_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_C14N">XML_FROM_C14N</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_CATALOG">XML_FROM_CATALOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_CHECK">XML_FROM_CHECK</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_DATATYPE">XML_FROM_DATATYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_DTD">XML_FROM_DTD</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_FTP">XML_FROM_FTP</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_HTML">XML_FROM_HTML</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_HTTP">XML_FROM_HTTP</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_I18N">XML_FROM_I18N</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_IO">XML_FROM_IO</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_MEMORY">XML_FROM_MEMORY</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_MODULE">XML_FROM_MODULE</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_NAMESPACE">XML_FROM_NAMESPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_NONE">XML_FROM_NONE</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_OUTPUT">XML_FROM_OUTPUT</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_PARSER">XML_FROM_PARSER</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_REGEXP">XML_FROM_REGEXP</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_RELAXNGP">XML_FROM_RELAXNGP</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_RELAXNGV">XML_FROM_RELAXNGV</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_SCHEMASP">XML_FROM_SCHEMASP</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_SCHEMASV">XML_FROM_SCHEMASV</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_TREE">XML_FROM_TREE</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_VALID">XML_FROM_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_WRITER">XML_FROM_WRITER</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_XINCLUDE">XML_FROM_XINCLUDE</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_XPATH">XML_FROM_XPATH</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_XPOINTER">XML_FROM_XPOINTER</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_XSLT">XML_FROM_XSLT</a><br /> -<a href="html/libxml-xmlerror.html#XML_FTP_ACCNT">XML_FTP_ACCNT</a><br /> -<a href="html/libxml-xmlerror.html#XML_FTP_EPSV_ANSWER">XML_FTP_EPSV_ANSWER</a><br /> -<a href="html/libxml-xmlerror.html#XML_FTP_PASV_ANSWER">XML_FTP_PASV_ANSWER</a><br /> -<a href="html/libxml-xmlerror.html#XML_FTP_URL_SYNTAX">XML_FTP_URL_SYNTAX</a><br /> -<a href="html/libxml-xmlerror.html#XML_HTML_STRUCURE_ERROR">XML_HTML_STRUCURE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_HTML_UNKNOWN_TAG">XML_HTML_UNKNOWN_TAG</a><br /> -<a href="html/libxml-xmlerror.html#XML_HTTP_UNKNOWN_HOST">XML_HTTP_UNKNOWN_HOST</a><br /> -<a href="html/libxml-xmlerror.html#XML_HTTP_URL_SYNTAX">XML_HTTP_URL_SYNTAX</a><br /> -<a href="html/libxml-xmlerror.html#XML_HTTP_USE_IP">XML_HTTP_USE_IP</a><br /> -<a href="html/libxml-xmlerror.html#XML_I18N_CONV_FAILED">XML_I18N_CONV_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_I18N_EXCESS_HANDLER">XML_I18N_EXCESS_HANDLER</a><br /> -<a href="html/libxml-xmlerror.html#XML_I18N_NO_HANDLER">XML_I18N_NO_HANDLER</a><br /> -<a href="html/libxml-xmlerror.html#XML_I18N_NO_NAME">XML_I18N_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_I18N_NO_OUTPUT">XML_I18N_NO_OUTPUT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_BUFFER_FULL">XML_IO_BUFFER_FULL</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EACCES">XML_IO_EACCES</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EADDRINUSE">XML_IO_EADDRINUSE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EAFNOSUPPORT">XML_IO_EAFNOSUPPORT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EAGAIN">XML_IO_EAGAIN</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EALREADY">XML_IO_EALREADY</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EBADF">XML_IO_EBADF</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EBADMSG">XML_IO_EBADMSG</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EBUSY">XML_IO_EBUSY</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ECANCELED">XML_IO_ECANCELED</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ECHILD">XML_IO_ECHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ECONNREFUSED">XML_IO_ECONNREFUSED</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EDEADLK">XML_IO_EDEADLK</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EDOM">XML_IO_EDOM</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EEXIST">XML_IO_EEXIST</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EFAULT">XML_IO_EFAULT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EFBIG">XML_IO_EFBIG</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EINPROGRESS">XML_IO_EINPROGRESS</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EINTR">XML_IO_EINTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EINVAL">XML_IO_EINVAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EIO">XML_IO_EIO</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EISCONN">XML_IO_EISCONN</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EISDIR">XML_IO_EISDIR</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EMFILE">XML_IO_EMFILE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EMLINK">XML_IO_EMLINK</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EMSGSIZE">XML_IO_EMSGSIZE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENAMETOOLONG">XML_IO_ENAMETOOLONG</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENCODER">XML_IO_ENCODER</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENETUNREACH">XML_IO_ENETUNREACH</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENFILE">XML_IO_ENFILE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENODEV">XML_IO_ENODEV</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOENT">XML_IO_ENOENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOEXEC">XML_IO_ENOEXEC</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOLCK">XML_IO_ENOLCK</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOMEM">XML_IO_ENOMEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOSPC">XML_IO_ENOSPC</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOSYS">XML_IO_ENOSYS</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOTDIR">XML_IO_ENOTDIR</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOTEMPTY">XML_IO_ENOTEMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOTSOCK">XML_IO_ENOTSOCK</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOTSUP">XML_IO_ENOTSUP</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOTTY">XML_IO_ENOTTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENXIO">XML_IO_ENXIO</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EPERM">XML_IO_EPERM</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EPIPE">XML_IO_EPIPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ERANGE">XML_IO_ERANGE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EROFS">XML_IO_EROFS</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ESPIPE">XML_IO_ESPIPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ESRCH">XML_IO_ESRCH</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ETIMEDOUT">XML_IO_ETIMEDOUT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EXDEV">XML_IO_EXDEV</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_FLUSH">XML_IO_FLUSH</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_LOAD_ERROR">XML_IO_LOAD_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_NETWORK_ATTEMPT">XML_IO_NETWORK_ATTEMPT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_NO_INPUT">XML_IO_NO_INPUT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_UNKNOWN">XML_IO_UNKNOWN</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_WRITE">XML_IO_WRITE</a><br /> -<a href="html/libxml-xmlerror.html#XML_MODULE_CLOSE">XML_MODULE_CLOSE</a><br /> -<a href="html/libxml-xmlerror.html#XML_MODULE_OPEN">XML_MODULE_OPEN</a><br /> -<a href="html/libxml-xmlerror.html#XML_NS_ERR_ATTRIBUTE_REDEFINED">XML_NS_ERR_ATTRIBUTE_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_NS_ERR_EMPTY">XML_NS_ERR_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_NS_ERR_QNAME">XML_NS_ERR_QNAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_NS_ERR_UNDEFINED_NAMESPACE">XML_NS_ERR_UNDEFINED_NAMESPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_NS_ERR_XML_NAMESPACE">XML_NS_ERR_XML_NAMESPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_REGEXP_COMPILE_ERROR">XML_REGEXP_COMPILE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ANYNAME_ATTR_ANCESTOR">XML_RNGP_ANYNAME_ATTR_ANCESTOR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ATTRIBUTE_CHILDREN">XML_RNGP_ATTRIBUTE_CHILDREN</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ATTRIBUTE_CONTENT">XML_RNGP_ATTRIBUTE_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ATTRIBUTE_EMPTY">XML_RNGP_ATTRIBUTE_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ATTRIBUTE_NOOP">XML_RNGP_ATTRIBUTE_NOOP</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ATTR_CONFLICT">XML_RNGP_ATTR_CONFLICT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_CHOICE_CONTENT">XML_RNGP_CHOICE_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_CHOICE_EMPTY">XML_RNGP_CHOICE_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_CREATE_FAILURE">XML_RNGP_CREATE_FAILURE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_DATA_CONTENT">XML_RNGP_DATA_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_DEFINE_CREATE_FAILED">XML_RNGP_DEFINE_CREATE_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_DEFINE_EMPTY">XML_RNGP_DEFINE_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_DEFINE_MISSING">XML_RNGP_DEFINE_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_DEFINE_NAME_MISSING">XML_RNGP_DEFINE_NAME_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_DEF_CHOICE_AND_INTERLEAVE">XML_RNGP_DEF_CHOICE_AND_INTERLEAVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEMENT_CONTENT">XML_RNGP_ELEMENT_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEMENT_EMPTY">XML_RNGP_ELEMENT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEMENT_NAME">XML_RNGP_ELEMENT_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEMENT_NO_CONTENT">XML_RNGP_ELEMENT_NO_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEM_CONTENT_EMPTY">XML_RNGP_ELEM_CONTENT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEM_CONTENT_ERROR">XML_RNGP_ELEM_CONTENT_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEM_TEXT_CONFLICT">XML_RNGP_ELEM_TEXT_CONFLICT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EMPTY">XML_RNGP_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EMPTY_CONSTRUCT">XML_RNGP_EMPTY_CONSTRUCT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EMPTY_CONTENT">XML_RNGP_EMPTY_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EMPTY_NOT_EMPTY">XML_RNGP_EMPTY_NOT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ERROR_TYPE_LIB">XML_RNGP_ERROR_TYPE_LIB</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXCEPT_EMPTY">XML_RNGP_EXCEPT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXCEPT_MISSING">XML_RNGP_EXCEPT_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXCEPT_MULTIPLE">XML_RNGP_EXCEPT_MULTIPLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXCEPT_NO_CONTENT">XML_RNGP_EXCEPT_NO_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXTERNALREF_EMTPY">XML_RNGP_EXTERNALREF_EMTPY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXTERNALREF_RECURSE">XML_RNGP_EXTERNALREF_RECURSE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXTERNAL_REF_FAILURE">XML_RNGP_EXTERNAL_REF_FAILURE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_FORBIDDEN_ATTRIBUTE">XML_RNGP_FORBIDDEN_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_FOREIGN_ELEMENT">XML_RNGP_FOREIGN_ELEMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_GRAMMAR_CONTENT">XML_RNGP_GRAMMAR_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_GRAMMAR_EMPTY">XML_RNGP_GRAMMAR_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_GRAMMAR_MISSING">XML_RNGP_GRAMMAR_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_GRAMMAR_NO_START">XML_RNGP_GRAMMAR_NO_START</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_GROUP_ATTR_CONFLICT">XML_RNGP_GROUP_ATTR_CONFLICT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_HREF_ERROR">XML_RNGP_HREF_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INCLUDE_EMPTY">XML_RNGP_INCLUDE_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INCLUDE_FAILURE">XML_RNGP_INCLUDE_FAILURE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INCLUDE_RECURSE">XML_RNGP_INCLUDE_RECURSE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INTERLEAVE_ADD">XML_RNGP_INTERLEAVE_ADD</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INTERLEAVE_CREATE_FAILED">XML_RNGP_INTERLEAVE_CREATE_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INTERLEAVE_EMPTY">XML_RNGP_INTERLEAVE_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INTERLEAVE_NO_CONTENT">XML_RNGP_INTERLEAVE_NO_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INVALID_DEFINE_NAME">XML_RNGP_INVALID_DEFINE_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INVALID_URI">XML_RNGP_INVALID_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INVALID_VALUE">XML_RNGP_INVALID_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_MISSING_HREF">XML_RNGP_MISSING_HREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_NAME_MISSING">XML_RNGP_NAME_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_NEED_COMBINE">XML_RNGP_NEED_COMBINE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_NOTALLOWED_NOT_EMPTY">XML_RNGP_NOTALLOWED_NOT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_NSNAME_ATTR_ANCESTOR">XML_RNGP_NSNAME_ATTR_ANCESTOR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_NSNAME_NO_NS">XML_RNGP_NSNAME_NO_NS</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARAM_FORBIDDEN">XML_RNGP_PARAM_FORBIDDEN</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARAM_NAME_MISSING">XML_RNGP_PARAM_NAME_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARENTREF_CREATE_FAILED">XML_RNGP_PARENTREF_CREATE_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARENTREF_NAME_INVALID">XML_RNGP_PARENTREF_NAME_INVALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARENTREF_NOT_EMPTY">XML_RNGP_PARENTREF_NOT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARENTREF_NO_NAME">XML_RNGP_PARENTREF_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARENTREF_NO_PARENT">XML_RNGP_PARENTREF_NO_PARENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARSE_ERROR">XML_RNGP_PARSE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME">XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_ATTR_ATTR">XML_RNGP_PAT_ATTR_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_ATTR_ELEM">XML_RNGP_PAT_ATTR_ELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_ATTR">XML_RNGP_PAT_DATA_EXCEPT_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_ELEM">XML_RNGP_PAT_DATA_EXCEPT_ELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_EMPTY">XML_RNGP_PAT_DATA_EXCEPT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_GROUP">XML_RNGP_PAT_DATA_EXCEPT_GROUP</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE">XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_LIST">XML_RNGP_PAT_DATA_EXCEPT_LIST</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_ONEMORE">XML_RNGP_PAT_DATA_EXCEPT_ONEMORE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_REF">XML_RNGP_PAT_DATA_EXCEPT_REF</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_TEXT">XML_RNGP_PAT_DATA_EXCEPT_TEXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_ATTR">XML_RNGP_PAT_LIST_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_ELEM">XML_RNGP_PAT_LIST_ELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_INTERLEAVE">XML_RNGP_PAT_LIST_INTERLEAVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_LIST">XML_RNGP_PAT_LIST_LIST</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_REF">XML_RNGP_PAT_LIST_REF</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_TEXT">XML_RNGP_PAT_LIST_TEXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME">XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME">XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_ONEMORE_GROUP_ATTR">XML_RNGP_PAT_ONEMORE_GROUP_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR">XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_ATTR">XML_RNGP_PAT_START_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_DATA">XML_RNGP_PAT_START_DATA</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_EMPTY">XML_RNGP_PAT_START_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_GROUP">XML_RNGP_PAT_START_GROUP</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_INTERLEAVE">XML_RNGP_PAT_START_INTERLEAVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_LIST">XML_RNGP_PAT_START_LIST</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_ONEMORE">XML_RNGP_PAT_START_ONEMORE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_TEXT">XML_RNGP_PAT_START_TEXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_VALUE">XML_RNGP_PAT_START_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PREFIX_UNDEFINED">XML_RNGP_PREFIX_UNDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_REF_CREATE_FAILED">XML_RNGP_REF_CREATE_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_REF_CYCLE">XML_RNGP_REF_CYCLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_REF_NAME_INVALID">XML_RNGP_REF_NAME_INVALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_REF_NOT_EMPTY">XML_RNGP_REF_NOT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_REF_NO_DEF">XML_RNGP_REF_NO_DEF</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_REF_NO_NAME">XML_RNGP_REF_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_START_CHOICE_AND_INTERLEAVE">XML_RNGP_START_CHOICE_AND_INTERLEAVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_START_CONTENT">XML_RNGP_START_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_START_EMPTY">XML_RNGP_START_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_START_MISSING">XML_RNGP_START_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_TEXT_EXPECTED">XML_RNGP_TEXT_EXPECTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_TEXT_HAS_CHILD">XML_RNGP_TEXT_HAS_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_TYPE_MISSING">XML_RNGP_TYPE_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_TYPE_NOT_FOUND">XML_RNGP_TYPE_NOT_FOUND</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_TYPE_VALUE">XML_RNGP_TYPE_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_UNKNOWN_ATTRIBUTE">XML_RNGP_UNKNOWN_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_UNKNOWN_COMBINE">XML_RNGP_UNKNOWN_COMBINE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_UNKNOWN_CONSTRUCT">XML_RNGP_UNKNOWN_CONSTRUCT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_UNKNOWN_TYPE_LIB">XML_RNGP_UNKNOWN_TYPE_LIB</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_URI_FRAGMENT">XML_RNGP_URI_FRAGMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_URI_NOT_ABSOLUTE">XML_RNGP_URI_NOT_ABSOLUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_VALUE_EMPTY">XML_RNGP_VALUE_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_VALUE_NO_CONTENT">XML_RNGP_VALUE_NO_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_XMLNS_NAME">XML_RNGP_XMLNS_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_XML_NS">XML_RNGP_XML_NS</a><br /> -<a href="html/libxml-xmlerror.html#XML_SAVE_CHAR_INVALID">XML_SAVE_CHAR_INVALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SAVE_NOT_UTF8">XML_SAVE_NOT_UTF8</a><br /> -<a href="html/libxml-xmlerror.html#XML_SAVE_NO_DOCTYPE">XML_SAVE_NO_DOCTYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SAVE_UNKNOWN_ENCODING">XML_SAVE_UNKNOWN_ENCODING</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_AG_PROPS_CORRECT">XML_SCHEMAP_AG_PROPS_CORRECT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ATTRFORMDEFAULT_VALUE">XML_SCHEMAP_ATTRFORMDEFAULT_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ATTRGRP_NONAME_NOREF">XML_SCHEMAP_ATTRGRP_NONAME_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ATTR_NONAME_NOREF">XML_SCHEMAP_ATTR_NONAME_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_AU_PROPS_CORRECT">XML_SCHEMAP_AU_PROPS_CORRECT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_AU_PROPS_CORRECT_2">XML_SCHEMAP_AU_PROPS_CORRECT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_A_PROPS_CORRECT_2">XML_SCHEMAP_A_PROPS_CORRECT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_A_PROPS_CORRECT_3">XML_SCHEMAP_A_PROPS_CORRECT_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF">XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ALL_LIMITED">XML_SCHEMAP_COS_ALL_LIMITED</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_1">XML_SCHEMAP_COS_CT_EXTENDS_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_2">XML_SCHEMAP_COS_CT_EXTENDS_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_3">XML_SCHEMAP_COS_CT_EXTENDS_1_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_DERIVED_OK_2_1">XML_SCHEMAP_COS_ST_DERIVED_OK_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_DERIVED_OK_2_2">XML_SCHEMAP_COS_ST_DERIVED_OK_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_1_1">XML_SCHEMAP_COS_ST_RESTRICTS_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_1_2">XML_SCHEMAP_COS_ST_RESTRICTS_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1">XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2">XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_1">XML_SCHEMAP_COS_ST_RESTRICTS_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_1">XML_SCHEMAP_COS_ST_RESTRICTS_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_VALID_DEFAULT_1">XML_SCHEMAP_COS_VALID_DEFAULT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_VALID_DEFAULT_2_1">XML_SCHEMAP_COS_VALID_DEFAULT_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1">XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2">XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_1">XML_SCHEMAP_CT_PROPS_CORRECT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_2">XML_SCHEMAP_CT_PROPS_CORRECT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_3">XML_SCHEMAP_CT_PROPS_CORRECT_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_4">XML_SCHEMAP_CT_PROPS_CORRECT_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_5">XML_SCHEMAP_CT_PROPS_CORRECT_5</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_CVC_SIMPLE_TYPE">XML_SCHEMAP_CVC_SIMPLE_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_C_PROPS_CORRECT">XML_SCHEMAP_C_PROPS_CORRECT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DEF_AND_PREFIX">XML_SCHEMAP_DEF_AND_PREFIX</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ELEMFORMDEFAULT_VALUE">XML_SCHEMAP_ELEMFORMDEFAULT_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ELEM_DEFAULT_FIXED">XML_SCHEMAP_ELEM_DEFAULT_FIXED</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ELEM_NONAME_NOREF">XML_SCHEMAP_ELEM_NONAME_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_EXTENSION_NO_BASE">XML_SCHEMAP_EXTENSION_NO_BASE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_2">XML_SCHEMAP_E_PROPS_CORRECT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_3">XML_SCHEMAP_E_PROPS_CORRECT_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_4">XML_SCHEMAP_E_PROPS_CORRECT_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_5">XML_SCHEMAP_E_PROPS_CORRECT_5</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_6">XML_SCHEMAP_E_PROPS_CORRECT_6</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_FACET_NO_VALUE">XML_SCHEMAP_FACET_NO_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_FAILED_BUILD_IMPORT">XML_SCHEMAP_FAILED_BUILD_IMPORT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_FAILED_LOAD">XML_SCHEMAP_FAILED_LOAD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_FAILED_PARSE">XML_SCHEMAP_FAILED_PARSE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_GROUP_NONAME_NOREF">XML_SCHEMAP_GROUP_NONAME_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI">XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_IMPORT_REDEFINE_NSNAME">XML_SCHEMAP_IMPORT_REDEFINE_NSNAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI">XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI">XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI">XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INTERNAL">XML_SCHEMAP_INTERNAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE">XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ATTR_COMBINATION">XML_SCHEMAP_INVALID_ATTR_COMBINATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION">XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ATTR_NAME">XML_SCHEMAP_INVALID_ATTR_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ATTR_USE">XML_SCHEMAP_INVALID_ATTR_USE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_BOOLEAN">XML_SCHEMAP_INVALID_BOOLEAN</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ENUM">XML_SCHEMAP_INVALID_ENUM</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_FACET">XML_SCHEMAP_INVALID_FACET</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_FACET_VALUE">XML_SCHEMAP_INVALID_FACET_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_MAXOCCURS">XML_SCHEMAP_INVALID_MAXOCCURS</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_MINOCCURS">XML_SCHEMAP_INVALID_MINOCCURS</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_REF_AND_SUBTYPE">XML_SCHEMAP_INVALID_REF_AND_SUBTYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_WHITE_SPACE">XML_SCHEMAP_INVALID_WHITE_SPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_MG_PROPS_CORRECT_1">XML_SCHEMAP_MG_PROPS_CORRECT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_MG_PROPS_CORRECT_2">XML_SCHEMAP_MG_PROPS_CORRECT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD">XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOATTR_NOREF">XML_SCHEMAP_NOATTR_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOROOT">XML_SCHEMAP_NOROOT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOTATION_NO_NAME">XML_SCHEMAP_NOTATION_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOTHING_TO_PARSE">XML_SCHEMAP_NOTHING_TO_PARSE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOTYPE_NOREF">XML_SCHEMAP_NOTYPE_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOT_DETERMINISTIC">XML_SCHEMAP_NOT_DETERMINISTIC</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOT_SCHEMA">XML_SCHEMAP_NOT_SCHEMA</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NO_XMLNS">XML_SCHEMAP_NO_XMLNS</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NO_XSI">XML_SCHEMAP_NO_XSI</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_PREFIX_UNDEFINED">XML_SCHEMAP_PREFIX_UNDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_P_PROPS_CORRECT_1">XML_SCHEMAP_P_PROPS_CORRECT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_P_PROPS_CORRECT_2_1">XML_SCHEMAP_P_PROPS_CORRECT_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_P_PROPS_CORRECT_2_2">XML_SCHEMAP_P_PROPS_CORRECT_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_RECURSIVE">XML_SCHEMAP_RECURSIVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_ATTR">XML_SCHEMAP_REDEFINED_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_ATTRGROUP">XML_SCHEMAP_REDEFINED_ATTRGROUP</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_ELEMENT">XML_SCHEMAP_REDEFINED_ELEMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_GROUP">XML_SCHEMAP_REDEFINED_GROUP</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_NOTATION">XML_SCHEMAP_REDEFINED_NOTATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_TYPE">XML_SCHEMAP_REDEFINED_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REF_AND_CONTENT">XML_SCHEMAP_REF_AND_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REF_AND_SUBTYPE">XML_SCHEMAP_REF_AND_SUBTYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REGEXP_INVALID">XML_SCHEMAP_REGEXP_INVALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_RESTRICTION_NONAME_NOREF">XML_SCHEMAP_RESTRICTION_NONAME_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ATTR_INVALID_VALUE">XML_SCHEMAP_S4S_ATTR_INVALID_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ATTR_MISSING">XML_SCHEMAP_S4S_ATTR_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED">XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ELEM_MISSING">XML_SCHEMAP_S4S_ELEM_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED">XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SIMPLETYPE_NONAME">XML_SCHEMAP_SIMPLETYPE_NONAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_1">XML_SCHEMAP_SRC_ATTRIBUTE_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_2">XML_SCHEMAP_SRC_ATTRIBUTE_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_3_1">XML_SCHEMAP_SRC_ATTRIBUTE_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_3_2">XML_SCHEMAP_SRC_ATTRIBUTE_3_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_4">XML_SCHEMAP_SRC_ATTRIBUTE_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_CT_1">XML_SCHEMAP_SRC_CT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_1">XML_SCHEMAP_SRC_ELEMENT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_2_1">XML_SCHEMAP_SRC_ELEMENT_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_2_2">XML_SCHEMAP_SRC_ELEMENT_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_3">XML_SCHEMAP_SRC_ELEMENT_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT">XML_SCHEMAP_SRC_IMPORT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_1_1">XML_SCHEMAP_SRC_IMPORT_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_1_2">XML_SCHEMAP_SRC_IMPORT_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_2">XML_SCHEMAP_SRC_IMPORT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_2_1">XML_SCHEMAP_SRC_IMPORT_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_2_2">XML_SCHEMAP_SRC_IMPORT_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_3_1">XML_SCHEMAP_SRC_IMPORT_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_3_2">XML_SCHEMAP_SRC_IMPORT_3_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_INCLUDE">XML_SCHEMAP_SRC_INCLUDE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE">XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_REDEFINE">XML_SCHEMAP_SRC_REDEFINE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_RESOLVE">XML_SCHEMAP_SRC_RESOLVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE">XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_SIMPLE_TYPE_1">XML_SCHEMAP_SRC_SIMPLE_TYPE_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_SIMPLE_TYPE_2">XML_SCHEMAP_SRC_SIMPLE_TYPE_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_SIMPLE_TYPE_3">XML_SCHEMAP_SRC_SIMPLE_TYPE_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_SIMPLE_TYPE_4">XML_SCHEMAP_SRC_SIMPLE_TYPE_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES">XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ST_PROPS_CORRECT_1">XML_SCHEMAP_ST_PROPS_CORRECT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ST_PROPS_CORRECT_2">XML_SCHEMAP_ST_PROPS_CORRECT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ST_PROPS_CORRECT_3">XML_SCHEMAP_ST_PROPS_CORRECT_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE">XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_TYPE_AND_SUBTYPE">XML_SCHEMAP_TYPE_AND_SUBTYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNION_NOT_EXPRESSIBLE">XML_SCHEMAP_UNION_NOT_EXPRESSIBLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ALL_CHILD">XML_SCHEMAP_UNKNOWN_ALL_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD">XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD">XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP">XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ATTR_CHILD">XML_SCHEMAP_UNKNOWN_ATTR_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_BASE_TYPE">XML_SCHEMAP_UNKNOWN_BASE_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_CHOICE_CHILD">XML_SCHEMAP_UNKNOWN_CHOICE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD">XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD">XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ELEM_CHILD">XML_SCHEMAP_UNKNOWN_ELEM_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD">XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_FACET_CHILD">XML_SCHEMAP_UNKNOWN_FACET_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_FACET_TYPE">XML_SCHEMAP_UNKNOWN_FACET_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_GROUP_CHILD">XML_SCHEMAP_UNKNOWN_GROUP_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_IMPORT_CHILD">XML_SCHEMAP_UNKNOWN_IMPORT_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD">XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_LIST_CHILD">XML_SCHEMAP_UNKNOWN_LIST_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_MEMBER_TYPE">XML_SCHEMAP_UNKNOWN_MEMBER_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_NOTATION_CHILD">XML_SCHEMAP_UNKNOWN_NOTATION_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_PREFIX">XML_SCHEMAP_UNKNOWN_PREFIX</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD">XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_REF">XML_SCHEMAP_UNKNOWN_REF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD">XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD">XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD">XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD">XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD">XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_TYPE">XML_SCHEMAP_UNKNOWN_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_UNION_CHILD">XML_SCHEMAP_UNKNOWN_UNION_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH">XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_WARN_ATTR_REDECL_PROH">XML_SCHEMAP_WARN_ATTR_REDECL_PROH</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_WARN_SKIP_SCHEMA">XML_SCHEMAP_WARN_SKIP_SCHEMA</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_WARN_UNLOCATED_SCHEMA">XML_SCHEMAP_WARN_UNLOCATED_SCHEMA</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER">XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_ATTRINVALID">XML_SCHEMAV_ATTRINVALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_ATTRUNKNOWN">XML_SCHEMAV_ATTRUNKNOWN</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CONSTRUCT">XML_SCHEMAV_CONSTRUCT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_1">XML_SCHEMAV_CVC_ATTRIBUTE_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_2">XML_SCHEMAV_CVC_ATTRIBUTE_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_3">XML_SCHEMAV_CVC_ATTRIBUTE_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_4">XML_SCHEMAV_CVC_ATTRIBUTE_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_AU">XML_SCHEMAV_CVC_AU</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_4">XML_SCHEMAV_CVC_COMPLEX_TYPE_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1">XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2">XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3">XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_1">XML_SCHEMAV_CVC_ELT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_2">XML_SCHEMAV_CVC_ELT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_3_1">XML_SCHEMAV_CVC_ELT_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_3_2_1">XML_SCHEMAV_CVC_ELT_3_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_3_2_2">XML_SCHEMAV_CVC_ELT_3_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_4_1">XML_SCHEMAV_CVC_ELT_4_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_4_2">XML_SCHEMAV_CVC_ELT_4_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_4_3">XML_SCHEMAV_CVC_ELT_4_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_1_1">XML_SCHEMAV_CVC_ELT_5_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_1_2">XML_SCHEMAV_CVC_ELT_5_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_2_1">XML_SCHEMAV_CVC_ELT_5_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_2_2_1">XML_SCHEMAV_CVC_ELT_5_2_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_2_2_2_1">XML_SCHEMAV_CVC_ELT_5_2_2_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_2_2_2_2">XML_SCHEMAV_CVC_ELT_5_2_2_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_6">XML_SCHEMAV_CVC_ELT_6</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_7">XML_SCHEMAV_CVC_ELT_7</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ENUMERATION_VALID">XML_SCHEMAV_CVC_ENUMERATION_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_FACET_VALID">XML_SCHEMAV_CVC_FACET_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID">XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_IDC">XML_SCHEMAV_CVC_IDC</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_LENGTH_VALID">XML_SCHEMAV_CVC_LENGTH_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID">XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID">XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MAXLENGTH_VALID">XML_SCHEMAV_CVC_MAXLENGTH_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID">XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MININCLUSIVE_VALID">XML_SCHEMAV_CVC_MININCLUSIVE_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MINLENGTH_VALID">XML_SCHEMAV_CVC_MINLENGTH_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_PATTERN_VALID">XML_SCHEMAV_CVC_PATTERN_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TOTALDIGITS_VALID">XML_SCHEMAV_CVC_TOTALDIGITS_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_1">XML_SCHEMAV_CVC_TYPE_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_2">XML_SCHEMAV_CVC_TYPE_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_3_1_1">XML_SCHEMAV_CVC_TYPE_3_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_3_1_2">XML_SCHEMAV_CVC_TYPE_3_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_WILDCARD">XML_SCHEMAV_CVC_WILDCARD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING">XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_ELEMCONT">XML_SCHEMAV_ELEMCONT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_ELEMENT_CONTENT">XML_SCHEMAV_ELEMENT_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_EXTRACONTENT">XML_SCHEMAV_EXTRACONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_FACET">XML_SCHEMAV_FACET</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_HAVEDEFAULT">XML_SCHEMAV_HAVEDEFAULT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_INTERNAL">XML_SCHEMAV_INTERNAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_INVALIDATTR">XML_SCHEMAV_INVALIDATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_INVALIDELEM">XML_SCHEMAV_INVALIDELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_ISABSTRACT">XML_SCHEMAV_ISABSTRACT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_MISC">XML_SCHEMAV_MISC</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_MISSING">XML_SCHEMAV_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOROLLBACK">XML_SCHEMAV_NOROLLBACK</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOROOT">XML_SCHEMAV_NOROOT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOTDETERMINIST">XML_SCHEMAV_NOTDETERMINIST</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOTEMPTY">XML_SCHEMAV_NOTEMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOTNILLABLE">XML_SCHEMAV_NOTNILLABLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOTSIMPLE">XML_SCHEMAV_NOTSIMPLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOTTOPLEVEL">XML_SCHEMAV_NOTTOPLEVEL</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOTYPE">XML_SCHEMAV_NOTYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_UNDECLAREDELEM">XML_SCHEMAV_UNDECLAREDELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_VALUE">XML_SCHEMAV_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_WRONGELEM">XML_SCHEMAV_WRONGELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_TREE_INVALID_DEC">XML_TREE_INVALID_DEC</a><br /> -<a href="html/libxml-xmlerror.html#XML_TREE_INVALID_HEX">XML_TREE_INVALID_HEX</a><br /> -<a href="html/libxml-xmlerror.html#XML_TREE_UNTERMINATED_ENTITY">XML_TREE_UNTERMINATED_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_CATALOG_PI">XML_WAR_CATALOG_PI</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_ENTITY_REDEFINED">XML_WAR_ENTITY_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_LANG_VALUE">XML_WAR_LANG_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_NS_COLUMN">XML_WAR_NS_COLUMN</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_NS_URI">XML_WAR_NS_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_NS_URI_RELATIVE">XML_WAR_NS_URI_RELATIVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_SPACE_VALUE">XML_WAR_SPACE_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_UNDECLARED_ENTITY">XML_WAR_UNDECLARED_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_UNKNOWN_VERSION">XML_WAR_UNKNOWN_VERSION</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_BUILD_FAILED">XML_XINCLUDE_BUILD_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_DEPRECATED_NS">XML_XINCLUDE_DEPRECATED_NS</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_ENTITY_DEF_MISMATCH">XML_XINCLUDE_ENTITY_DEF_MISMATCH</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_FALLBACKS_IN_INCLUDE">XML_XINCLUDE_FALLBACKS_IN_INCLUDE</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE">XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_FRAGMENT_ID">XML_XINCLUDE_FRAGMENT_ID</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_HREF_URI">XML_XINCLUDE_HREF_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_INCLUDE_IN_INCLUDE">XML_XINCLUDE_INCLUDE_IN_INCLUDE</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_INVALID_CHAR">XML_XINCLUDE_INVALID_CHAR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_MULTIPLE_ROOT">XML_XINCLUDE_MULTIPLE_ROOT</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_NO_FALLBACK">XML_XINCLUDE_NO_FALLBACK</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_NO_HREF">XML_XINCLUDE_NO_HREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_PARSE_VALUE">XML_XINCLUDE_PARSE_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_RECURSION">XML_XINCLUDE_RECURSION</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_TEXT_DOCUMENT">XML_XINCLUDE_TEXT_DOCUMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_TEXT_FRAGMENT">XML_XINCLUDE_TEXT_FRAGMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_UNKNOWN_ENCODING">XML_XINCLUDE_UNKNOWN_ENCODING</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_XPTR_FAILED">XML_XINCLUDE_XPTR_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_XPTR_RESULT">XML_XINCLUDE_XPTR_RESULT</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_ENCODING_ERROR">XML_XPATH_ENCODING_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_EXPRESSION_OK">XML_XPATH_EXPRESSION_OK</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_EXPR_ERROR">XML_XPATH_EXPR_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_ARITY">XML_XPATH_INVALID_ARITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_CHAR_ERROR">XML_XPATH_INVALID_CHAR_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_CTXT_POSITION">XML_XPATH_INVALID_CTXT_POSITION</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_CTXT_SIZE">XML_XPATH_INVALID_CTXT_SIZE</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_OPERAND">XML_XPATH_INVALID_OPERAND</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_PREDICATE_ERROR">XML_XPATH_INVALID_PREDICATE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_TYPE">XML_XPATH_INVALID_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_MEMORY_ERROR">XML_XPATH_MEMORY_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_NUMBER_ERROR">XML_XPATH_NUMBER_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_START_LITERAL_ERROR">XML_XPATH_START_LITERAL_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_UNCLOSED_ERROR">XML_XPATH_UNCLOSED_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_UNDEF_PREFIX_ERROR">XML_XPATH_UNDEF_PREFIX_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_UNDEF_VARIABLE_ERROR">XML_XPATH_UNDEF_VARIABLE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_UNFINISHED_LITERAL_ERROR">XML_XPATH_UNFINISHED_LITERAL_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_UNKNOWN_FUNC_ERROR">XML_XPATH_UNKNOWN_FUNC_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_VARIABLE_REF_ERROR">XML_XPATH_VARIABLE_REF_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_CHILDSEQ_START">XML_XPTR_CHILDSEQ_START</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_EVAL_FAILED">XML_XPTR_EVAL_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_EXTRA_OBJECTS">XML_XPTR_EXTRA_OBJECTS</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_RESOURCE_ERROR">XML_XPTR_RESOURCE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_SUB_RESOURCE_ERROR">XML_XPTR_SUB_RESOURCE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_SYNTAX_ERROR">XML_XPTR_SYNTAX_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_UNKNOWN_SCHEME">XML_XPTR_UNKNOWN_SCHEME</a><br /> -<a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -<a href="html/libxml-xmlerror.html#initGenericErrorDefaultFunc">initGenericErrorDefaultFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlCopyError">xmlCopyError</a><br /> -<a href="html/libxml-xmlerror.html#xmlCtxtGetLastError">xmlCtxtGetLastError</a><br /> -<a href="html/libxml-xmlerror.html#xmlCtxtResetLastError">xmlCtxtResetLastError</a><br /> -<a href="html/libxml-xmlerror.html#xmlError">xmlError</a><br /> -<a href="html/libxml-xmlerror.html#xmlErrorDomain">xmlErrorDomain</a><br /> -<a href="html/libxml-xmlerror.html#xmlErrorLevel">xmlErrorLevel</a><br /> -<a href="html/libxml-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a><br /> -<a href="html/libxml-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlGetLastError">xmlGetLastError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserError">xmlParserError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserErrors">xmlParserErrors</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserPrintFileContext">xmlParserPrintFileContext</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserPrintFileInfo">xmlParserPrintFileInfo</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserWarning">xmlParserWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlResetError">xmlResetError</a><br /> -<a href="html/libxml-xmlerror.html#xmlResetLastError">xmlResetLastError</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a><br /> -</p><h2><a name="xmlexports" id="xmlexports">Module xmlexports</a>:</h2><p><a href="html/libxml-xmlexports.html#LIBXML_DLL_IMPORT">LIBXML_DLL_IMPORT</a><br /> -<a href="html/libxml-xmlexports.html#XMLCALL">XMLCALL</a><br /> -<a href="html/libxml-xmlexports.html#XMLCDECL">XMLCDECL</a><br /> -<a href="html/libxml-xmlexports.html#XMLPUBFUN">XMLPUBFUN</a><br /> -<a href="html/libxml-xmlexports.html#XMLPUBVAR">XMLPUBVAR</a><br /> -<a href="html/libxml-xmlexports.html#_REENTRANT">_REENTRANT</a><br /> -</p><h2><a name="xmlmemory" id="xmlmemory">Module xmlmemory</a>:</h2><p><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -<a href="html/libxml-xmlmemory.html#xmlCleanupMemory">xmlCleanupMemory</a><br /> -<a href="html/libxml-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlInitMemory">xmlInitMemory</a><br /> -<a href="html/libxml-globals.html#xmlMalloc">xmlMalloc</a><br /> -<a href="html/libxml-globals.html#xmlMallocAtomic">xmlMallocAtomic</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemBlocks">xmlMemBlocks</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemDisplay">xmlMemDisplay</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemFree">xmlMemFree</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemShow">xmlMemShow</a><br /> -<a href="html/libxml-globals.html#xmlMemStrdup">xmlMemStrdup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemStrdupLoc">xmlMemStrdupLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemUsed">xmlMemUsed</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryDump">xmlMemoryDump</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryStrdup">xmlMemoryStrdup</a><br /> -<a href="html/libxml-globals.html#xmlRealloc">xmlRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a><br /> -</p><h2><a name="xmlmodule" id="xmlmodule">Module xmlmodule</a>:</h2><p><a href="html/libxml-xmlmodule.html#XML_MODULE_LAZY">XML_MODULE_LAZY</a><br /> -<a href="html/libxml-xmlmodule.html#XML_MODULE_LOCAL">XML_MODULE_LOCAL</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModule">xmlModule</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleClose">xmlModuleClose</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleFree">xmlModuleFree</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleOption">xmlModuleOption</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModulePtr">xmlModulePtr</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleSymbol">xmlModuleSymbol</a><br /> -</p><h2><a name="xmlreader" id="xmlreader">Module xmlreader</a>:</h2><p><a href="html/libxml-xmlreader.html#XML_PARSER_DEFAULTATTRS">XML_PARSER_DEFAULTATTRS</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_LOADDTD">XML_PARSER_LOADDTD</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_SEVERITY_ERROR">XML_PARSER_SEVERITY_ERROR</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_SEVERITY_VALIDITY_ERROR">XML_PARSER_SEVERITY_VALIDITY_ERROR</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_SEVERITY_VALIDITY_WARNING">XML_PARSER_SEVERITY_VALIDITY_WARNING</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_SEVERITY_WARNING">XML_PARSER_SEVERITY_WARNING</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_SUBST_ENTITIES">XML_PARSER_SUBST_ENTITIES</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_VALIDATE">XML_PARSER_VALIDATE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_ATTRIBUTE">XML_READER_TYPE_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_CDATA">XML_READER_TYPE_CDATA</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_COMMENT">XML_READER_TYPE_COMMENT</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_DOCUMENT">XML_READER_TYPE_DOCUMENT</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_DOCUMENT_FRAGMENT">XML_READER_TYPE_DOCUMENT_FRAGMENT</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_DOCUMENT_TYPE">XML_READER_TYPE_DOCUMENT_TYPE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_ELEMENT">XML_READER_TYPE_ELEMENT</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_END_ELEMENT">XML_READER_TYPE_END_ELEMENT</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_END_ENTITY">XML_READER_TYPE_END_ENTITY</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_ENTITY">XML_READER_TYPE_ENTITY</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_ENTITY_REFERENCE">XML_READER_TYPE_ENTITY_REFERENCE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_NONE">XML_READER_TYPE_NONE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_NOTATION">XML_READER_TYPE_NOTATION</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_PROCESSING_INSTRUCTION">XML_READER_TYPE_PROCESSING_INSTRUCTION</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_SIGNIFICANT_WHITESPACE">XML_READER_TYPE_SIGNIFICANT_WHITESPACE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_TEXT">XML_READER_TYPE_TEXT</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_WHITESPACE">XML_READER_TYPE_WHITESPACE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_XML_DECLARATION">XML_READER_TYPE_XML_DECLARATION</a><br /> -<a href="html/libxml-xmlreader.html#XML_TEXTREADER_MODE_CLOSED">XML_TEXTREADER_MODE_CLOSED</a><br /> -<a href="html/libxml-xmlreader.html#XML_TEXTREADER_MODE_EOF">XML_TEXTREADER_MODE_EOF</a><br /> -<a href="html/libxml-xmlreader.html#XML_TEXTREADER_MODE_ERROR">XML_TEXTREADER_MODE_ERROR</a><br /> -<a href="html/libxml-xmlreader.html#XML_TEXTREADER_MODE_INITIAL">XML_TEXTREADER_MODE_INITIAL</a><br /> -<a href="html/libxml-xmlreader.html#XML_TEXTREADER_MODE_INTERACTIVE">XML_TEXTREADER_MODE_INTERACTIVE</a><br /> -<a href="html/libxml-xmlreader.html#XML_TEXTREADER_MODE_READING">XML_TEXTREADER_MODE_READING</a><br /> -<a href="html/libxml-xmlreader.html#xmlFreeTextReader">xmlFreeTextReader</a><br /> -<a href="html/libxml-xmlreader.html#xmlNewTextReader">xmlNewTextReader</a><br /> -<a href="html/libxml-xmlreader.html#xmlNewTextReaderFilename">xmlNewTextReaderFilename</a><br /> -<a href="html/libxml-xmlreader.html#xmlParserProperties">xmlParserProperties</a><br /> -<a href="html/libxml-xmlreader.html#xmlParserSeverities">xmlParserSeverities</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForDoc">xmlReaderForDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFd">xmlReaderForFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFile">xmlReaderForFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForIO">xmlReaderForIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForMemory">xmlReaderForMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewDoc">xmlReaderNewDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFile">xmlReaderNewFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewMemory">xmlReaderNewMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewWalker">xmlReaderNewWalker</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderTypes">xmlReaderTypes</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderWalker">xmlReaderWalker</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReader">xmlTextReader</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderAttributeCount">xmlTextReaderAttributeCount</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderBaseUri">xmlTextReaderBaseUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderClose">xmlTextReaderClose</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstBaseUri">xmlTextReaderConstBaseUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstEncoding">xmlTextReaderConstEncoding</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstLocalName">xmlTextReaderConstLocalName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstName">xmlTextReaderConstName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstNamespaceUri">xmlTextReaderConstNamespaceUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstPrefix">xmlTextReaderConstPrefix</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstValue">xmlTextReaderConstValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlLang">xmlTextReaderConstXmlLang</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlVersion">xmlTextReaderConstXmlVersion</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderDepth">xmlTextReaderDepth</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderExpand">xmlTextReaderExpand</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttribute">xmlTextReaderGetAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNo">xmlTextReaderGetAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNs">xmlTextReaderGetAttributeNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetErrorHandler">xmlTextReaderGetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserColumnNumber">xmlTextReaderGetParserColumnNumber</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserLineNumber">xmlTextReaderGetParserLineNumber</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserProp">xmlTextReaderGetParserProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderHasAttributes">xmlTextReaderHasAttributes</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderHasValue">xmlTextReaderHasValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsDefault">xmlTextReaderIsDefault</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsEmptyElement">xmlTextReaderIsEmptyElement</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsNamespaceDecl">xmlTextReaderIsNamespaceDecl</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsValid">xmlTextReaderIsValid</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocalName">xmlTextReaderLocalName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorBaseURI">xmlTextReaderLocatorBaseURI</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorLineNumber">xmlTextReaderLocatorLineNumber</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMode">xmlTextReaderMode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttribute">xmlTextReaderMoveToAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNo">xmlTextReaderMoveToAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNs">xmlTextReaderMoveToAttributeNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToElement">xmlTextReaderMoveToElement</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToFirstAttribute">xmlTextReaderMoveToFirstAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToNextAttribute">xmlTextReaderMoveToNextAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderName">xmlTextReaderName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNamespaceUri">xmlTextReaderNamespaceUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNext">xmlTextReaderNext</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPrefix">xmlTextReaderPrefix</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderQuoteChar">xmlTextReaderQuoteChar</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRead">xmlTextReaderRead</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadAttributeValue">xmlTextReaderReadAttributeValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadState">xmlTextReaderReadState</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadString">xmlTextReaderReadString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetup">xmlTextReaderSetup</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderStandalone">xmlTextReaderStandalone</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderValue">xmlTextReaderValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderXmlLang">xmlTextReaderXmlLang</a><br /> -</p><h2><a name="xmlregexp" id="xmlregexp">Module xmlregexp</a>:</h2><p><a href="html/libxml-xmlregexp.html#XML_EXP_ATOM">XML_EXP_ATOM</a><br /> -<a href="html/libxml-xmlregexp.html#XML_EXP_COUNT">XML_EXP_COUNT</a><br /> -<a href="html/libxml-xmlregexp.html#XML_EXP_EMPTY">XML_EXP_EMPTY</a><br /> -<a href="html/libxml-xmlregexp.html#XML_EXP_FORBID">XML_EXP_FORBID</a><br /> -<a href="html/libxml-xmlregexp.html#XML_EXP_OR">XML_EXP_OR</a><br /> -<a href="html/libxml-xmlregexp.html#XML_EXP_SEQ">XML_EXP_SEQ</a><br /> -<a href="html/libxml-xmlregexp.html#emptyExp">emptyExp</a><br /> -<a href="html/libxml-xmlregexp.html#forbiddenExp">forbiddenExp</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxt">xmlExpCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtNbCons">xmlExpCtxtNbCons</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtNbNodes">xmlExpCtxtNbNodes</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpDump">xmlExpDump</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpFree">xmlExpFree</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpFreeCtxt">xmlExpFreeCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpIsNillable">xmlExpIsNillable</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpMaxToken">xmlExpMaxToken</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewAtom">xmlExpNewAtom</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewCtxt">xmlExpNewCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNode">xmlExpNode</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNodeType">xmlExpNodeType</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpRef">xmlExpRef</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpStringDerive">xmlExpStringDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpSubsume">xmlExpSubsume</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecCallbacks">xmlRegExecCallbacks</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecCtxt">xmlRegExecCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegFreeExecCtxt">xmlRegFreeExecCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegFreeRegexp">xmlRegFreeRegexp</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexp">xmlRegexp</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpExec">xmlRegexpExec</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpIsDeterminist">xmlRegexpIsDeterminist</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpPrint">xmlRegexpPrint</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a><br /> -</p><h2><a name="xmlsave" id="xmlsave">Module xmlsave</a>:</h2><p><a href="html/libxml-xmlsave.html#XML_SAVE_FORMAT">XML_SAVE_FORMAT</a><br /> -<a href="html/libxml-xmlsave.html#XML_SAVE_NO_DECL">XML_SAVE_NO_DECL</a><br /> -<a href="html/libxml-xmlsave.html#XML_SAVE_NO_EMPTY">XML_SAVE_NO_EMPTY</a><br /> -<a href="html/libxml-xmlsave.html#XML_SAVE_NO_XHTML">XML_SAVE_NO_XHTML</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveClose">xmlSaveClose</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveCtxt">xmlSaveCtxt</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveFlush">xmlSaveFlush</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveOption">xmlSaveOption</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetAttrEscape">xmlSaveSetAttrEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetEscape">xmlSaveSetEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToBuffer">xmlSaveToBuffer</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFd">xmlSaveToFd</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFilename">xmlSaveToFilename</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -</p><h2><a name="xmlschemas" id="xmlschemas">Module xmlschemas</a>:</h2><p><a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_">XML_SCHEMAS_ERR_</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_ATTRINVALID">XML_SCHEMAS_ERR_ATTRINVALID</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_ATTRUNKNOWN">XML_SCHEMAS_ERR_ATTRUNKNOWN</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_CONSTRUCT">XML_SCHEMAS_ERR_CONSTRUCT</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_ELEMCONT">XML_SCHEMAS_ERR_ELEMCONT</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_EXTRACONTENT">XML_SCHEMAS_ERR_EXTRACONTENT</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_FACET">XML_SCHEMAS_ERR_FACET</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_HAVEDEFAULT">XML_SCHEMAS_ERR_HAVEDEFAULT</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_INTERNAL">XML_SCHEMAS_ERR_INTERNAL</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_INVALIDATTR">XML_SCHEMAS_ERR_INVALIDATTR</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_INVALIDELEM">XML_SCHEMAS_ERR_INVALIDELEM</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_ISABSTRACT">XML_SCHEMAS_ERR_ISABSTRACT</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_MISSING">XML_SCHEMAS_ERR_MISSING</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOROLLBACK">XML_SCHEMAS_ERR_NOROLLBACK</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOROOT">XML_SCHEMAS_ERR_NOROOT</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTDETERMINIST">XML_SCHEMAS_ERR_NOTDETERMINIST</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTEMPTY">XML_SCHEMAS_ERR_NOTEMPTY</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTNILLABLE">XML_SCHEMAS_ERR_NOTNILLABLE</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTSIMPLE">XML_SCHEMAS_ERR_NOTSIMPLE</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTTOPLEVEL">XML_SCHEMAS_ERR_NOTTOPLEVEL</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTYPE">XML_SCHEMAS_ERR_NOTYPE</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_OK">XML_SCHEMAS_ERR_OK</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_UNDECLAREDELEM">XML_SCHEMAS_ERR_UNDECLAREDELEM</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_VALUE">XML_SCHEMAS_ERR_VALUE</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_WRONGELEM">XML_SCHEMAS_ERR_WRONGELEM</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_XXX">XML_SCHEMAS_ERR_XXX</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMA_VAL_VC_I_CREATE">XML_SCHEMA_VAL_VC_I_CREATE</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchema">xmlSchema</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaDump">xmlSchemaDump</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaFree">xmlSchemaFree</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaFreeParserCtxt">xmlSchemaFreeParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaFreeValidCtxt">xmlSchemaFreeValidCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaIsValid">xmlSchemaIsValid</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewDocParserCtxt">xmlSchemaNewDocParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewMemParserCtxt">xmlSchemaNewMemParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewParserCtxt">xmlSchemaNewParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewValidCtxt">xmlSchemaNewValidCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaParse">xmlSchemaParse</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaParserCtxt">xmlSchemaParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSAXPlug">xmlSchemaSAXPlug</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSAXPlugPtr">xmlSchemaSAXPlugPtr</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSAXPlugStruct">xmlSchemaSAXPlugStruct</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSAXUnplug">xmlSchemaSAXUnplug</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserStructuredErrors">xmlSchemaSetParserStructuredErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidOptions">xmlSchemaSetValidOptions</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidStructuredErrors">xmlSchemaSetValidStructuredErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxt">xmlSchemaValidCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxtGetOptions">xmlSchemaValidCtxtGetOptions</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidError">xmlSchemaValidError</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidOption">xmlSchemaValidOption</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateFile">xmlSchemaValidateFile</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a><br /> -</p><h2><a name="xmlschemastypes" id="xmlschemastypes">Module xmlschemastypes</a>:</h2><p><a href="html/libxml-xmlschemastypes.html#XML_SCHEMA_WHITESPACE_COLLAPSE">XML_SCHEMA_WHITESPACE_COLLAPSE</a><br /> -<a href="html/libxml-xmlschemastypes.html#XML_SCHEMA_WHITESPACE_PRESERVE">XML_SCHEMA_WHITESPACE_PRESERVE</a><br /> -<a href="html/libxml-xmlschemastypes.html#XML_SCHEMA_WHITESPACE_REPLACE">XML_SCHEMA_WHITESPACE_REPLACE</a><br /> -<a href="html/libxml-xmlschemastypes.html#XML_SCHEMA_WHITESPACE_UNKNOWN">XML_SCHEMA_WHITESPACE_UNKNOWN</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCleanupTypes">xmlSchemaCleanupTypes</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCollapseString">xmlSchemaCollapseString</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCompareValues">xmlSchemaCompareValues</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCompareValuesWhtsp">xmlSchemaCompareValuesWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCopyValue">xmlSchemaCopyValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeFacet">xmlSchemaFreeFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeValue">xmlSchemaFreeValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInType">xmlSchemaGetBuiltInType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetFacetValueAsULong">xmlSchemaGetFacetValueAsULong</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetValType">xmlSchemaGetValType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaInitTypes">xmlSchemaInitTypes</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaIsBuiltInTypeFacet">xmlSchemaIsBuiltInTypeFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewFacet">xmlSchemaNewFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewNOTATIONValue">xmlSchemaNewNOTATIONValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewQNameValue">xmlSchemaNewQNameValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueAppend">xmlSchemaValueAppend</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsBoolean">xmlSchemaValueGetAsBoolean</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsString">xmlSchemaValueGetAsString</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetNext">xmlSchemaValueGetNext</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaWhiteSpaceReplace">xmlSchemaWhiteSpaceReplace</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a><br /> -</p><h2><a name="xmlstring" id="xmlstring">Module xmlstring</a>:</h2><p><a href="html/libxml-xmlstring.html#BAD_CAST">BAD_CAST</a><br /> -<a href="html/libxml-xmlstring.html#xmlChar">xmlChar</a><br /> -<a href="html/libxml-xmlstring.html#xmlCharStrdup">xmlCharStrdup</a><br /> -<a href="html/libxml-xmlstring.html#xmlCharStrndup">xmlCharStrndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrPrintf">xmlStrPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrQEqual">xmlStrQEqual</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrVPrintf">xmlStrVPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcasecmp">xmlStrcasecmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcasestr">xmlStrcasestr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrchr">xmlStrchr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcmp">xmlStrcmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrlen">xmlStrlen</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncasecmp">xmlStrncasecmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncat">xmlStrncat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncmp">xmlStrncmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrndup">xmlStrndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrstr">xmlStrstr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrsub">xmlStrsub</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Charcmp">xmlUTF8Charcmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Size">xmlUTF8Size</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strlen">xmlUTF8Strlen</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strloc">xmlUTF8Strloc</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strndup">xmlUTF8Strndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strpos">xmlUTF8Strpos</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsize">xmlUTF8Strsize</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -</p><h2><a name="xmlunicode" id="xmlunicode">Module xmlunicode</a>:</h2><p><a href="html/libxml-xmlunicode.html#xmlUCSIsAegeanNumbers">xmlUCSIsAegeanNumbers</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsAlphabeticPresentationForms">xmlUCSIsAlphabeticPresentationForms</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsArabic">xmlUCSIsArabic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsArabicPresentationFormsA">xmlUCSIsArabicPresentationFormsA</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsArabicPresentationFormsB">xmlUCSIsArabicPresentationFormsB</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsArmenian">xmlUCSIsArmenian</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsArrows">xmlUCSIsArrows</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBasicLatin">xmlUCSIsBasicLatin</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBengali">xmlUCSIsBengali</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBlock">xmlUCSIsBlock</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBlockElements">xmlUCSIsBlockElements</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBopomofo">xmlUCSIsBopomofo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBopomofoExtended">xmlUCSIsBopomofoExtended</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBoxDrawing">xmlUCSIsBoxDrawing</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBraillePatterns">xmlUCSIsBraillePatterns</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBuhid">xmlUCSIsBuhid</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsByzantineMusicalSymbols">xmlUCSIsByzantineMusicalSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibility">xmlUCSIsCJKCompatibility</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibilityForms">xmlUCSIsCJKCompatibilityForms</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibilityIdeographs">xmlUCSIsCJKCompatibilityIdeographs</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibilityIdeographsSupplement">xmlUCSIsCJKCompatibilityIdeographsSupplement</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKRadicalsSupplement">xmlUCSIsCJKRadicalsSupplement</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKSymbolsandPunctuation">xmlUCSIsCJKSymbolsandPunctuation</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKUnifiedIdeographs">xmlUCSIsCJKUnifiedIdeographs</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKUnifiedIdeographsExtensionA">xmlUCSIsCJKUnifiedIdeographsExtensionA</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKUnifiedIdeographsExtensionB">xmlUCSIsCJKUnifiedIdeographsExtensionB</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCat">xmlUCSIsCat</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatC">xmlUCSIsCatC</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatCc">xmlUCSIsCatCc</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatCf">xmlUCSIsCatCf</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatCo">xmlUCSIsCatCo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatCs">xmlUCSIsCatCs</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatL">xmlUCSIsCatL</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatLl">xmlUCSIsCatLl</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatLm">xmlUCSIsCatLm</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatLo">xmlUCSIsCatLo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatLt">xmlUCSIsCatLt</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatLu">xmlUCSIsCatLu</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatM">xmlUCSIsCatM</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatMc">xmlUCSIsCatMc</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatMe">xmlUCSIsCatMe</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatMn">xmlUCSIsCatMn</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatN">xmlUCSIsCatN</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatNd">xmlUCSIsCatNd</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatNl">xmlUCSIsCatNl</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatNo">xmlUCSIsCatNo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatP">xmlUCSIsCatP</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPc">xmlUCSIsCatPc</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPd">xmlUCSIsCatPd</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPe">xmlUCSIsCatPe</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPf">xmlUCSIsCatPf</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPi">xmlUCSIsCatPi</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPo">xmlUCSIsCatPo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPs">xmlUCSIsCatPs</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatS">xmlUCSIsCatS</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatSc">xmlUCSIsCatSc</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatSk">xmlUCSIsCatSk</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatSm">xmlUCSIsCatSm</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatSo">xmlUCSIsCatSo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatZ">xmlUCSIsCatZ</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatZl">xmlUCSIsCatZl</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatZp">xmlUCSIsCatZp</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatZs">xmlUCSIsCatZs</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCherokee">xmlUCSIsCherokee</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCombiningDiacriticalMarks">xmlUCSIsCombiningDiacriticalMarks</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCombiningDiacriticalMarksforSymbols">xmlUCSIsCombiningDiacriticalMarksforSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCombiningHalfMarks">xmlUCSIsCombiningHalfMarks</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCombiningMarksforSymbols">xmlUCSIsCombiningMarksforSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsControlPictures">xmlUCSIsControlPictures</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCurrencySymbols">xmlUCSIsCurrencySymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCypriotSyllabary">xmlUCSIsCypriotSyllabary</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCyrillic">xmlUCSIsCyrillic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCyrillicSupplement">xmlUCSIsCyrillicSupplement</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsDeseret">xmlUCSIsDeseret</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsDevanagari">xmlUCSIsDevanagari</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsDingbats">xmlUCSIsDingbats</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsEnclosedAlphanumerics">xmlUCSIsEnclosedAlphanumerics</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsEnclosedCJKLettersandMonths">xmlUCSIsEnclosedCJKLettersandMonths</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsEthiopic">xmlUCSIsEthiopic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGeneralPunctuation">xmlUCSIsGeneralPunctuation</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGeometricShapes">xmlUCSIsGeometricShapes</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGeorgian">xmlUCSIsGeorgian</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGothic">xmlUCSIsGothic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGreek">xmlUCSIsGreek</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGreekExtended">xmlUCSIsGreekExtended</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGreekandCoptic">xmlUCSIsGreekandCoptic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGujarati">xmlUCSIsGujarati</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGurmukhi">xmlUCSIsGurmukhi</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHalfwidthandFullwidthForms">xmlUCSIsHalfwidthandFullwidthForms</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHangulCompatibilityJamo">xmlUCSIsHangulCompatibilityJamo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHangulJamo">xmlUCSIsHangulJamo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHangulSyllables">xmlUCSIsHangulSyllables</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHanunoo">xmlUCSIsHanunoo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHebrew">xmlUCSIsHebrew</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHighPrivateUseSurrogates">xmlUCSIsHighPrivateUseSurrogates</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHighSurrogates">xmlUCSIsHighSurrogates</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHiragana">xmlUCSIsHiragana</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsIPAExtensions">xmlUCSIsIPAExtensions</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsIdeographicDescriptionCharacters">xmlUCSIsIdeographicDescriptionCharacters</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKanbun">xmlUCSIsKanbun</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKangxiRadicals">xmlUCSIsKangxiRadicals</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKannada">xmlUCSIsKannada</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKatakana">xmlUCSIsKatakana</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKatakanaPhoneticExtensions">xmlUCSIsKatakanaPhoneticExtensions</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKhmer">xmlUCSIsKhmer</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKhmerSymbols">xmlUCSIsKhmerSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLao">xmlUCSIsLao</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLatin1Supplement">xmlUCSIsLatin1Supplement</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLatinExtendedA">xmlUCSIsLatinExtendedA</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLatinExtendedAdditional">xmlUCSIsLatinExtendedAdditional</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLatinExtendedB">xmlUCSIsLatinExtendedB</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLetterlikeSymbols">xmlUCSIsLetterlikeSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLimbu">xmlUCSIsLimbu</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLinearBIdeograms">xmlUCSIsLinearBIdeograms</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLinearBSyllabary">xmlUCSIsLinearBSyllabary</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLowSurrogates">xmlUCSIsLowSurrogates</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMalayalam">xmlUCSIsMalayalam</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMathematicalAlphanumericSymbols">xmlUCSIsMathematicalAlphanumericSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMathematicalOperators">xmlUCSIsMathematicalOperators</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousMathematicalSymbolsA">xmlUCSIsMiscellaneousMathematicalSymbolsA</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousMathematicalSymbolsB">xmlUCSIsMiscellaneousMathematicalSymbolsB</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousSymbols">xmlUCSIsMiscellaneousSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousSymbolsandArrows">xmlUCSIsMiscellaneousSymbolsandArrows</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousTechnical">xmlUCSIsMiscellaneousTechnical</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMongolian">xmlUCSIsMongolian</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMusicalSymbols">xmlUCSIsMusicalSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMyanmar">xmlUCSIsMyanmar</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsNumberForms">xmlUCSIsNumberForms</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsOgham">xmlUCSIsOgham</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsOldItalic">xmlUCSIsOldItalic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsOpticalCharacterRecognition">xmlUCSIsOpticalCharacterRecognition</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsOriya">xmlUCSIsOriya</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsOsmanya">xmlUCSIsOsmanya</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsPhoneticExtensions">xmlUCSIsPhoneticExtensions</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsPrivateUse">xmlUCSIsPrivateUse</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsPrivateUseArea">xmlUCSIsPrivateUseArea</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsRunic">xmlUCSIsRunic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsShavian">xmlUCSIsShavian</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSinhala">xmlUCSIsSinhala</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSmallFormVariants">xmlUCSIsSmallFormVariants</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSpacingModifierLetters">xmlUCSIsSpacingModifierLetters</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSpecials">xmlUCSIsSpecials</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSuperscriptsandSubscripts">xmlUCSIsSuperscriptsandSubscripts</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementalArrowsA">xmlUCSIsSupplementalArrowsA</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementalArrowsB">xmlUCSIsSupplementalArrowsB</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementalMathematicalOperators">xmlUCSIsSupplementalMathematicalOperators</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementaryPrivateUseAreaA">xmlUCSIsSupplementaryPrivateUseAreaA</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementaryPrivateUseAreaB">xmlUCSIsSupplementaryPrivateUseAreaB</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSyriac">xmlUCSIsSyriac</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTagalog">xmlUCSIsTagalog</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTagbanwa">xmlUCSIsTagbanwa</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTags">xmlUCSIsTags</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTaiLe">xmlUCSIsTaiLe</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTaiXuanJingSymbols">xmlUCSIsTaiXuanJingSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTamil">xmlUCSIsTamil</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTelugu">xmlUCSIsTelugu</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsThaana">xmlUCSIsThaana</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsThai">xmlUCSIsThai</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTibetan">xmlUCSIsTibetan</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsUgaritic">xmlUCSIsUgaritic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsUnifiedCanadianAboriginalSyllabics">xmlUCSIsUnifiedCanadianAboriginalSyllabics</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsVariationSelectors">xmlUCSIsVariationSelectors</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsVariationSelectorsSupplement">xmlUCSIsVariationSelectorsSupplement</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsYiRadicals">xmlUCSIsYiRadicals</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsYiSyllables">xmlUCSIsYiSyllables</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsYijingHexagramSymbols">xmlUCSIsYijingHexagramSymbols</a><br /> -</p><h2><a name="xmlversion" id="xmlversion">Module xmlversion</a>:</h2><p><a href="html/libxml-xmlversion.html#ATTRIBUTE_UNUSED">ATTRIBUTE_UNUSED</a><br /> -<a href="html/libxml-xmlversion.html#DEBUG_MEMORY_LOCATION">DEBUG_MEMORY_LOCATION</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_AUTOMATA_ENABLED">LIBXML_AUTOMATA_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_C14N_ENABLED">LIBXML_C14N_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_CATALOG_ENABLED">LIBXML_CATALOG_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DEBUG_ENABLED">LIBXML_DEBUG_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DEBUG_RUNTIME">LIBXML_DEBUG_RUNTIME</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DOCB_ENABLED">LIBXML_DOCB_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DOTTED_VERSION">LIBXML_DOTTED_VERSION</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_EXPR_ENABLED">LIBXML_EXPR_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_FTP_ENABLED">LIBXML_FTP_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_HTML_ENABLED">LIBXML_HTML_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_HTTP_ENABLED">LIBXML_HTTP_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_ICONV_ENABLED">LIBXML_ICONV_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_ISO8859X_ENABLED">LIBXML_ISO8859X_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_LEGACY_ENABLED">LIBXML_LEGACY_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_MODULES_ENABLED">LIBXML_MODULES_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_MODULE_EXTENSION">LIBXML_MODULE_EXTENSION</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_OUTPUT_ENABLED">LIBXML_OUTPUT_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_PATTERN_ENABLED">LIBXML_PATTERN_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_PUSH_ENABLED">LIBXML_PUSH_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_READER_ENABLED">LIBXML_READER_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_REGEXP_ENABLED">LIBXML_REGEXP_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_SAX1_ENABLED">LIBXML_SAX1_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_SCHEMAS_ENABLED">LIBXML_SCHEMAS_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_SCHEMATRON_ENABLED">LIBXML_SCHEMATRON_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_TEST_VERSION">LIBXML_TEST_VERSION</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_THREAD_ENABLED">LIBXML_THREAD_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_TREE_ENABLED">LIBXML_TREE_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_UNICODE_ENABLED">LIBXML_UNICODE_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_VALID_ENABLED">LIBXML_VALID_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_VERSION">LIBXML_VERSION</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_VERSION_EXTRA">LIBXML_VERSION_EXTRA</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_VERSION_STRING">LIBXML_VERSION_STRING</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_WRITER_ENABLED">LIBXML_WRITER_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_XINCLUDE_ENABLED">LIBXML_XINCLUDE_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_XPATH_ENABLED">LIBXML_XPATH_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_XPTR_ENABLED">LIBXML_XPTR_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_ZLIB_ENABLED">LIBXML_ZLIB_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#WITHOUT_TRIO">WITHOUT_TRIO</a><br /> -<a href="html/libxml-xmlversion.html#WITH_TRIO">WITH_TRIO</a><br /> -<a href="html/libxml-xmlversion.html#xmlCheckVersion">xmlCheckVersion</a><br /> -</p><h2><a name="xmlwriter" id="xmlwriter">Module xmlwriter</a>:</h2><p><a href="html/libxml-xmlwriter.html#xmlFreeTextWriter">xmlFreeTextWriter</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterFilename">xmlNewTextWriterFilename</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterMemory">xmlNewTextWriterMemory</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriter">xmlTextWriter</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndAttribute">xmlTextWriterEndAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndCDATA">xmlTextWriterEndCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndComment">xmlTextWriterEndComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTD">xmlTextWriterEndDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTDAttlist">xmlTextWriterEndDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTDElement">xmlTextWriterEndDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTDEntity">xmlTextWriterEndDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDocument">xmlTextWriterEndDocument</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndElement">xmlTextWriterEndElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndPI">xmlTextWriterEndPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterFlush">xmlTextWriterFlush</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterFullEndElement">xmlTextWriterFullEndElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterSetIndent">xmlTextWriterSetIndent</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterSetIndentString">xmlTextWriterSetIndentString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartAttribute">xmlTextWriterStartAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartAttributeNS">xmlTextWriterStartAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartCDATA">xmlTextWriterStartCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartComment">xmlTextWriterStartComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTD">xmlTextWriterStartDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDAttlist">xmlTextWriterStartDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDElement">xmlTextWriterStartDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDEntity">xmlTextWriterStartDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDocument">xmlTextWriterStartDocument</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartElement">xmlTextWriterStartElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartElementNS">xmlTextWriterStartElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartPI">xmlTextWriterStartPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteAttribute">xmlTextWriterWriteAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteAttributeNS">xmlTextWriterWriteAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBase64">xmlTextWriterWriteBase64</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBinHex">xmlTextWriterWriteBinHex</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteCDATA">xmlTextWriterWriteCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteComment">xmlTextWriterWriteComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTD">xmlTextWriterWriteDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDAttlist">xmlTextWriterWriteDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDElement">xmlTextWriterWriteDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDEntity">xmlTextWriterWriteDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntity">xmlTextWriterWriteDTDExternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntityContents">xmlTextWriterWriteDTDExternalEntityContents</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDInternalEntity">xmlTextWriterWriteDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDNotation">xmlTextWriterWriteDTDNotation</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDocType">xmlTextWriterWriteDocType</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteElement">xmlTextWriterWriteElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteElementNS">xmlTextWriterWriteElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttribute">xmlTextWriterWriteFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttributeNS">xmlTextWriterWriteFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatCDATA">xmlTextWriterWriteFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatComment">xmlTextWriterWriteFormatComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTD">xmlTextWriterWriteFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDAttlist">xmlTextWriterWriteFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDElement">xmlTextWriterWriteFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDInternalEntity">xmlTextWriterWriteFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElement">xmlTextWriterWriteFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElementNS">xmlTextWriterWriteFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatPI">xmlTextWriterWriteFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatRaw">xmlTextWriterWriteFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatString">xmlTextWriterWriteFormatString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWritePI">xmlTextWriterWritePI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteProcessingInstruction">xmlTextWriterWriteProcessingInstruction</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRaw">xmlTextWriterWriteRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRawLen">xmlTextWriterWriteRawLen</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteString">xmlTextWriterWriteString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttribute">xmlTextWriterWriteVFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttributeNS">xmlTextWriterWriteVFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatCDATA">xmlTextWriterWriteVFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatComment">xmlTextWriterWriteVFormatComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTD">xmlTextWriterWriteVFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDAttlist">xmlTextWriterWriteVFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDElement">xmlTextWriterWriteVFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDInternalEntity">xmlTextWriterWriteVFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElement">xmlTextWriterWriteVFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElementNS">xmlTextWriterWriteVFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatPI">xmlTextWriterWriteVFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatRaw">xmlTextWriterWriteVFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatString">xmlTextWriterWriteVFormatString</a><br /> -</p><h2><a name="xpath" id="xpath">Module xpath</a>:</h2><p><a href="html/libxml-xpath.html#XML_XPATH_CHECKNS">XML_XPATH_CHECKNS</a><br /> -<a href="html/libxml-xpath.html#XML_XPATH_NOVAR">XML_XPATH_NOVAR</a><br /> -<a href="html/libxml-xpath.html#XPATH_BOOLEAN">XPATH_BOOLEAN</a><br /> -<a href="html/libxml-xpath.html#XPATH_ENCODING_ERROR">XPATH_ENCODING_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_EXPRESSION_OK">XPATH_EXPRESSION_OK</a><br /> -<a href="html/libxml-xpath.html#XPATH_EXPR_ERROR">XPATH_EXPR_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_ARITY">XPATH_INVALID_ARITY</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_CHAR_ERROR">XPATH_INVALID_CHAR_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_CTXT">XPATH_INVALID_CTXT</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_CTXT_POSITION">XPATH_INVALID_CTXT_POSITION</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_CTXT_SIZE">XPATH_INVALID_CTXT_SIZE</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_OPERAND">XPATH_INVALID_OPERAND</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_PREDICATE_ERROR">XPATH_INVALID_PREDICATE_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_TYPE">XPATH_INVALID_TYPE</a><br /> -<a href="html/libxml-xpath.html#XPATH_LOCATIONSET">XPATH_LOCATIONSET</a><br /> -<a href="html/libxml-xpath.html#XPATH_MEMORY_ERROR">XPATH_MEMORY_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_NODESET">XPATH_NODESET</a><br /> -<a href="html/libxml-xpath.html#XPATH_NUMBER">XPATH_NUMBER</a><br /> -<a href="html/libxml-xpath.html#XPATH_NUMBER_ERROR">XPATH_NUMBER_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_POINT">XPATH_POINT</a><br /> -<a href="html/libxml-xpath.html#XPATH_RANGE">XPATH_RANGE</a><br /> -<a href="html/libxml-xpath.html#XPATH_START_LITERAL_ERROR">XPATH_START_LITERAL_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_STRING">XPATH_STRING</a><br /> -<a href="html/libxml-xpath.html#XPATH_UNCLOSED_ERROR">XPATH_UNCLOSED_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_UNDEFINED">XPATH_UNDEFINED</a><br /> -<a href="html/libxml-xpath.html#XPATH_UNDEF_PREFIX_ERROR">XPATH_UNDEF_PREFIX_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_UNDEF_VARIABLE_ERROR">XPATH_UNDEF_VARIABLE_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_UNFINISHED_LITERAL_ERROR">XPATH_UNFINISHED_LITERAL_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_UNKNOWN_FUNC_ERROR">XPATH_UNKNOWN_FUNC_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_USERS">XPATH_USERS</a><br /> -<a href="html/libxml-xpath.html#XPATH_VARIABLE_REF_ERROR">XPATH_VARIABLE_REF_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_XSLT_TREE">XPATH_XSLT_TREE</a><br /> -<a href="html/libxml-xpath.html#XPTR_RESOURCE_ERROR">XPTR_RESOURCE_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPTR_SUB_RESOURCE_ERROR">XPTR_SUB_RESOURCE_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPTR_SYNTAX_ERROR">XPTR_SYNTAX_ERROR</a><br /> -<a href="html/libxml-xpath.html#_xmlNodeSet">_xmlNodeSet</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathAxis">_xmlXPathAxis</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathFunct">_xmlXPathFunct</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathObject">_xmlXPathObject</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathParserContext">_xmlXPathParserContext</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathType">_xmlXPathType</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathVariable">_xmlXPathVariable</a><br /> -<a href="html/libxml-xpath.html#xmlNodeSet">xmlNodeSet</a><br /> -<a href="html/libxml-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxis">xmlXPathAxis</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxisPtr">xmlXPathAxisPtr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastBooleanToNumber">xmlXPathCastBooleanToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastBooleanToString">xmlXPathCastBooleanToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToBoolean">xmlXPathCastNodeSetToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToNumber">xmlXPathCastNodeSetToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToString">xmlXPathCastNodeSetToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeToNumber">xmlXPathCastNodeToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeToString">xmlXPathCastNodeToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNumberToBoolean">xmlXPathCastNumberToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNumberToString">xmlXPathCastNumberToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastStringToBoolean">xmlXPathCastStringToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastStringToNumber">xmlXPathCastStringToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToBoolean">xmlXPathCastToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToNumber">xmlXPathCastToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToString">xmlXPathCastToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCmpNodes">xmlXPathCmpNodes</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompExpr">xmlXPathCompExpr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompile">xmlXPathCompile</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompiledEval">xmlXPathCompiledEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompiledEvalToBoolean">xmlXPathCompiledEvalToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContext">xmlXPathContext</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertBoolean">xmlXPathConvertBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertFunc">xmlXPathConvertFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertNumber">xmlXPathConvertNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertString">xmlXPathConvertString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCtxtCompile">xmlXPathCtxtCompile</a><br /> -<a href="html/libxml-xpath.html#xmlXPathError">xmlXPathError</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEval">xmlXPathEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalExpression">xmlXPathEvalExpression</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalFunc">xmlXPathEvalFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeCompExpr">xmlXPathFreeCompExpr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeContext">xmlXPathFreeContext</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeNodeSet">xmlXPathFreeNodeSet</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeNodeSetList">xmlXPathFreeNodeSetList</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeObject">xmlXPathFreeObject</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFuncPtr">xmlXPathFuncPtr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFunct">xmlXPathFunct</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFunction">xmlXPathFunction</a><br /> -<a href="html/libxml-xpath.html#xmlXPathInit">xmlXPathInit</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNAN">xmlXPathNAN</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNINF">xmlXPathNINF</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNewContext">xmlXPathNewContext</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetCreate">xmlXPathNodeSetCreate</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetGetLength">xmlXPathNodeSetGetLength</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetIsEmpty">xmlXPathNodeSetIsEmpty</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -<a href="html/libxml-xpath.html#xmlXPathObject">xmlXPathObject</a><br /> -<a href="html/libxml-xpath.html#xmlXPathObjectCopy">xmlXPathObjectCopy</a><br /> -<a href="html/libxml-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathObjectType">xmlXPathObjectType</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -<a href="html/libxml-xpath.html#xmlXPathPINF">xmlXPathPINF</a><br /> -<a href="html/libxml-xpath.html#xmlXPathParserContext">xmlXPathParserContext</a><br /> -<a href="html/libxml-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathType">xmlXPathType</a><br /> -<a href="html/libxml-xpath.html#xmlXPathTypePtr">xmlXPathTypePtr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariable">xmlXPathVariable</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariablePtr">xmlXPathVariablePtr</a><br /> -</p><h2><a name="xpathInternals" id="xpathInternals">Module xpathInternals</a>:</h2><p><a href="html/libxml-xpathInternals.html#CAST_TO_BOOLEAN">CAST_TO_BOOLEAN</a><br /> -<a href="html/libxml-xpathInternals.html#CAST_TO_NUMBER">CAST_TO_NUMBER</a><br /> -<a href="html/libxml-xpathInternals.html#CAST_TO_STRING">CAST_TO_STRING</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_ARITY">CHECK_ARITY</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_ERROR">CHECK_ERROR</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_ERROR0">CHECK_ERROR0</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_TYPE">CHECK_TYPE</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_TYPE0">CHECK_TYPE0</a><br /> -<a href="html/libxml-xpathInternals.html#XP_ERROR">XP_ERROR</a><br /> -<a href="html/libxml-xpathInternals.html#XP_ERROR0">XP_ERROR0</a><br /> -<a href="html/libxml-xpathInternals.html#valuePop">valuePop</a><br /> -<a href="html/libxml-xpathInternals.html#valuePush">valuePush</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCheckError">xmlXPathCheckError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathConcatFunction">xmlXPathConcatFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathContainsFunction">xmlXPathContainsFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCountFunction">xmlXPathCountFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpCompExpr">xmlXPathDebugDumpCompExpr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpObject">xmlXPathDebugDumpObject</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEmptyNodeSet">xmlXPathEmptyNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEqualValues">xmlXPathEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathErr">xmlXPathErr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvalExpr">xmlXPathEvalExpr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFalseFunction">xmlXPathFalseFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFloorFunction">xmlXPathFloorFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFreeParserContext">xmlXPathFreeParserContext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookup">xmlXPathFunctionLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookupNS">xmlXPathFunctionLookupNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathGetContextNode">xmlXPathGetContextNode</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathGetDocument">xmlXPathGetDocument</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathGetError">xmlXPathGetError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIsNodeType">xmlXPathIsNodeType</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLastFunction">xmlXPathLastFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLocalNameFunction">xmlXPathLocalNameFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNamespaceURIFunction">xmlXPathNamespaceURIFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewBoolean">xmlXPathNewBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewCString">xmlXPathNewCString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewFloat">xmlXPathNewFloat</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSet">xmlXPathNewNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSetList">xmlXPathNewNodeSetList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewParserContext">xmlXPathNewParserContext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewString">xmlXPathNewString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewValueTree">xmlXPathNewValueTree</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAttribute">xmlXPathNextAttribute</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextChild">xmlXPathNextChild</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendant">xmlXPathNextDescendant</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextNamespace">xmlXPathNextNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextParent">xmlXPathNextParent</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextSelf">xmlXPathNextSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAdd">xmlXPathNodeSetAdd</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddNs">xmlXPathNodeSetAddNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetContains">xmlXPathNodeSetContains</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetDel">xmlXPathNodeSetDel</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetRemove">xmlXPathNodeSetRemove</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetSort">xmlXPathNodeSetSort</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotEqualValues">xmlXPathNotEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotFunction">xmlXPathNotFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNsLookup">xmlXPathNsLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNumberFunction">xmlXPathNumberFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseNCName">xmlXPathParseNCName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseName">xmlXPathParseName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopBoolean">xmlXPathPopBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopExternal">xmlXPathPopExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNodeSet">xmlXPathPopNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNumber">xmlXPathPopNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopString">xmlXPathPopString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPositionFunction">xmlXPathPositionFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterAllFunctions">xmlXPathRegisterAllFunctions</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFunc">xmlXPathRegisterFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncLookup">xmlXPathRegisterFuncLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncNS">xmlXPathRegisterFuncNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterNs">xmlXPathRegisterNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariable">xmlXPathRegisterVariable</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableLookup">xmlXPathRegisterVariableLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableNS">xmlXPathRegisterVariableNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredFuncsCleanup">xmlXPathRegisteredFuncsCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredNsCleanup">xmlXPathRegisteredNsCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredVariablesCleanup">xmlXPathRegisteredVariablesCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnBoolean">xmlXPathReturnBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnEmptyNodeSet">xmlXPathReturnEmptyNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnEmptyString">xmlXPathReturnEmptyString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnExternal">xmlXPathReturnExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnFalse">xmlXPathReturnFalse</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnNodeSet">xmlXPathReturnNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnNumber">xmlXPathReturnNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnString">xmlXPathReturnString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnTrue">xmlXPathReturnTrue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoot">xmlXPathRoot</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoundFunction">xmlXPathRoundFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSetArityError">xmlXPathSetArityError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSetError">xmlXPathSetError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSetTypeError">xmlXPathSetTypeError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStackIsExternal">xmlXPathStackIsExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStackIsNodeSet">xmlXPathStackIsNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStartsWithFunction">xmlXPathStartsWithFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSumFunction">xmlXPathSumFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrueFunction">xmlXPathTrueFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookup">xmlXPathVariableLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookupNS">xmlXPathVariableLookupNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapCString">xmlXPathWrapCString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapExternal">xmlXPathWrapExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapNodeSet">xmlXPathWrapNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapString">xmlXPathWrapString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPatherror">xmlXPatherror</a><br /> -</p><h2><a name="xpointer" id="xpointer">Module xpointer</a>:</h2><p><a href="html/libxml-xpointer.html#_xmlLocationSet">_xmlLocationSet</a><br /> -<a href="html/libxml-xpointer.html#xmlLocationSet">xmlLocationSet</a><br /> -<a href="html/libxml-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEval">xmlXPtrEval</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrFreeLocationSet">xmlXPtrFreeLocationSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetCreate">xmlXPtrLocationSetCreate</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetDel">xmlXPtrLocationSetDel</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetRemove">xmlXPtrLocationSetRemove</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewCollapsedRange">xmlXPtrNewCollapsedRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodeSet">xmlXPtrNewLocationSetNodeSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRange">xmlXPtrNewRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodeObject">xmlXPtrNewRangeNodeObject</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodePoint">xmlXPtrNewRangeNodePoint</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodes">xmlXPtrNewRangeNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePointNode">xmlXPtrNewRangePointNode</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePoints">xmlXPtrNewRangePoints</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrRangeToFunction">xmlXPtrRangeToFunction</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrWrapLocationSet">xmlXPtrWrapLocationSet</a><br /> -</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIfunctions.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIfunctions.html deleted file mode 100644 index 80b0a887..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIfunctions.html +++ /dev/null @@ -1,2301 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>List of function manipulating types in libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>List of function manipulating types in libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2>Type ...:</h2><p><a href="html/libxml-parser.html#errorSAXFunc">errorSAXFunc</a><br /> -<a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -<a href="html/libxml-parser.html#warningSAXFunc">warningSAXFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserError">xmlParserError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserWarning">xmlParserWarning</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidityErrorFunc">xmlSchematronValidityErrorFunc</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidityWarningFunc">xmlSchematronValidityWarningFunc</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrPrintf">xmlStrPrintf</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttribute">xmlTextWriterWriteFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttributeNS">xmlTextWriterWriteFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatCDATA">xmlTextWriterWriteFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatComment">xmlTextWriterWriteFormatComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTD">xmlTextWriterWriteFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDAttlist">xmlTextWriterWriteFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDElement">xmlTextWriterWriteFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDInternalEntity">xmlTextWriterWriteFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElement">xmlTextWriterWriteFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElementNS">xmlTextWriterWriteFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatPI">xmlTextWriterWriteFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatRaw">xmlTextWriterWriteFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatString">xmlTextWriterWriteFormatString</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -</p><h2>Type FILE *:</h2><p><a href="html/libxml-HTMLtree.html#htmlDocDump">htmlDocDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFile">htmlNodeDumpFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogDump">xmlACatalogDump</a><br /> -<a href="html/libxml-tree.html#xmlBufferDump">xmlBufferDump</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogDump">xmlCatalogDump</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugCheckDocument">xmlDebugCheckDocument</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttr">xmlDebugDumpAttr</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttrList">xmlDebugDumpAttrList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDTD">xmlDebugDumpDTD</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocument">xmlDebugDumpDocument</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocumentHead">xmlDebugDumpDocumentHead</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpEntities">xmlDebugDumpEntities</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNode">xmlDebugDumpNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNodeList">xmlDebugDumpNodeList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpOneNode">xmlDebugDumpOneNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpString">xmlDebugDumpString</a><br /> -<a href="html/libxml-tree.html#xmlDocDump">xmlDocDump</a><br /> -<a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> -<a href="html/libxml-tree.html#xmlElemDump">xmlElemDump</a><br /> -<a href="html/libxml-debugXML.html#xmlLsOneNode">xmlLsOneNode</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemDisplay">xmlMemDisplay</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemShow">xmlMemShow</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFile">xmlOutputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFile">xmlParserInputBufferCreateFile</a><br /> -<a href="html/libxml-uri.html#xmlPrintURI">xmlPrintURI</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpPrint">xmlRegexpPrint</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGDump">xmlRelaxNGDump</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGDumpTree">xmlRelaxNGDumpTree</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaDump">xmlSchemaDump</a><br /> -<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpCompExpr">xmlXPathDebugDumpCompExpr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpObject">xmlXPathDebugDumpObject</a><br /> -</p><h2>Type char **:</h2><p><a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -</p><h2>Type char const *:</h2><p><a href="html/libxml-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a><br /> -</p><h2>Type const char **:</h2><p><a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -</p><h2>Type const htmlElemDesc *:</h2><p><a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHere">htmlElementAllowedHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementStatusHere">htmlElementStatusHere</a><br /> -</p><h2>Type const htmlNodePtr:</h2><p><a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -</p><h2>Type const unsigned char *:</h2><p><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -</p><h2>Type const void *:</h2><p><a href="html/libxml-list.html#xmlListDataCompare">xmlListDataCompare</a><br /> -<a href="html/libxml-list.html#xmlListReverseWalk">xmlListReverseWalk</a><br /> -<a href="html/libxml-list.html#xmlListWalk">xmlListWalk</a><br /> -<a href="html/libxml-list.html#xmlListWalker">xmlListWalker</a><br /> -</p><h2>Type const xlinkHRef:</h2><p><a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -</p><h2>Type const xlinkHRef *:</h2><p><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -</p><h2>Type const xlinkRole:</h2><p><a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -</p><h2>Type const xlinkRole *:</h2><p><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -</p><h2>Type const xlinkTitle:</h2><p><a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -</p><h2>Type const xlinkTitle *:</h2><p><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -</p><h2>Type const xmlBufferPtr:</h2><p><a href="html/libxml-tree.html#xmlBufferContent">xmlBufferContent</a><br /> -<a href="html/libxml-tree.html#xmlBufferLength">xmlBufferLength</a><br /> -</p><h2>Type const xmlChRangeGroup *:</h2><p><a href="html/libxml-chvalid.html#xmlCharInRange">xmlCharInRange</a><br /> -</p><h2>Type const xmlChar *:</h2><p><a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-SAX.html#attributeDecl">attributeDecl</a><br /> -<a href="html/libxml-parser.html#attributeDeclSAXFunc">attributeDeclSAXFunc</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -<a href="html/libxml-SAX.html#cdataBlock">cdataBlock</a><br /> -<a href="html/libxml-parser.html#cdataBlockSAXFunc">cdataBlockSAXFunc</a><br /> -<a href="html/libxml-SAX.html#characters">characters</a><br /> -<a href="html/libxml-parser.html#charactersSAXFunc">charactersSAXFunc</a><br /> -<a href="html/libxml-SAX.html#comment">comment</a><br /> -<a href="html/libxml-parser.html#commentSAXFunc">commentSAXFunc</a><br /> -<a href="html/libxml-SAX.html#elementDecl">elementDecl</a><br /> -<a href="html/libxml-parser.html#elementDeclSAXFunc">elementDeclSAXFunc</a><br /> -<a href="html/libxml-SAX.html#endElement">endElement</a><br /> -<a href="html/libxml-parser.html#endElementNsSAX2Func">endElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#endElementSAXFunc">endElementSAXFunc</a><br /> -<a href="html/libxml-SAX.html#entityDecl">entityDecl</a><br /> -<a href="html/libxml-parser.html#entityDeclSAXFunc">entityDeclSAXFunc</a><br /> -<a href="html/libxml-SAX.html#externalSubset">externalSubset</a><br /> -<a href="html/libxml-parser.html#externalSubsetSAXFunc">externalSubsetSAXFunc</a><br /> -<a href="html/libxml-SAX.html#getEntity">getEntity</a><br /> -<a href="html/libxml-parser.html#getEntitySAXFunc">getEntitySAXFunc</a><br /> -<a href="html/libxml-SAX.html#getParameterEntity">getParameterEntity</a><br /> -<a href="html/libxml-parser.html#getParameterEntitySAXFunc">getParameterEntitySAXFunc</a><br /> -<a href="html/libxml-SAX.html#globalNamespace">globalNamespace</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadDoc">htmlCtxtReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHere">htmlElementAllowedHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLtree.html#htmlIsBooleanAttr">htmlIsBooleanAttr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsScriptAttribute">htmlIsScriptAttribute</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDoc">htmlNewDoc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDocNoDtD">htmlNewDocNoDtD</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadDoc">htmlReadDoc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSetMetaEncoding">htmlSetMetaEncoding</a><br /> -<a href="html/libxml-HTMLparser.html#htmlTagLookup">htmlTagLookup</a><br /> -<a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> -<a href="html/libxml-SAX.html#internalSubset">internalSubset</a><br /> -<a href="html/libxml-parser.html#internalSubsetSAXFunc">internalSubsetSAXFunc</a><br /> -<a href="html/libxml-parserInternals.html#namePush">namePush</a><br /> -<a href="html/libxml-SAX.html#namespaceDecl">namespaceDecl</a><br /> -<a href="html/libxml-SAX.html#notationDecl">notationDecl</a><br /> -<a href="html/libxml-parser.html#notationDeclSAXFunc">notationDeclSAXFunc</a><br /> -<a href="html/libxml-SAX.html#processingInstruction">processingInstruction</a><br /> -<a href="html/libxml-parser.html#processingInstructionSAXFunc">processingInstructionSAXFunc</a><br /> -<a href="html/libxml-SAX.html#reference">reference</a><br /> -<a href="html/libxml-parser.html#referenceSAXFunc">referenceSAXFunc</a><br /> -<a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-SAX.html#setNamespace">setNamespace</a><br /> -<a href="html/libxml-SAX.html#startElement">startElement</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#startElementSAXFunc">startElementSAXFunc</a><br /> -<a href="html/libxml-SAX.html#unparsedEntityDecl">unparsedEntityDecl</a><br /> -<a href="html/libxml-parser.html#unparsedEntityDeclSAXFunc">unparsedEntityDeclSAXFunc</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogRemove">xmlACatalogRemove</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolve">xmlACatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolvePublic">xmlACatalogResolvePublic</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveSystem">xmlACatalogResolveSystem</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveURI">xmlACatalogResolveURI</a><br /> -<a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -<a href="html/libxml-entities.html#xmlAddDocEntity">xmlAddDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlAddDtdEntity">xmlAddDtdEntity</a><br /> -<a href="html/libxml-valid.html#xmlAddElementDecl">xmlAddElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlAddID">xmlAddID</a><br /> -<a href="html/libxml-valid.html#xmlAddNotationDecl">xmlAddNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> -<a href="html/libxml-tree.html#xmlAttrSerializeTxtContent">xmlAttrSerializeTxtContent</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> -<a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferAddHead">xmlBufferAddHead</a><br /> -<a href="html/libxml-tree.html#xmlBufferCat">xmlBufferCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteCHAR">xmlBufferWriteCHAR</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -<a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -<a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAddLocal">xmlCatalogAddLocal</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetPublic">xmlCatalogGetPublic</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetSystem">xmlCatalogGetSystem</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolveURI">xmlCatalogLocalResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogRemove">xmlCatalogRemove</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolve">xmlCatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolvePublic">xmlCatalogResolvePublic</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolveSystem">xmlCatalogResolveSystem</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolveURI">xmlCatalogResolveURI</a><br /> -<a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -<a href="html/libxml-parser.html#xmlCreateDocParserCtxt">xmlCreateDocParserCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a><br /> -<a href="html/libxml-valid.html#xmlCreateEnumeration">xmlCreateEnumeration</a><br /> -<a href="html/libxml-tree.html#xmlCreateIntSubset">xmlCreateIntSubset</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadDoc">xmlCtxtReadDoc</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpString">xmlDebugDumpString</a><br /> -<a href="html/libxml-dict.html#xmlDictExists">xmlDictExists</a><br /> -<a href="html/libxml-dict.html#xmlDictLookup">xmlDictLookup</a><br /> -<a href="html/libxml-dict.html#xmlDictOwns">xmlDictOwns</a><br /> -<a href="html/libxml-dict.html#xmlDictQLookup">xmlDictQLookup</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-entities.html#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewAtom">xmlExpNewAtom</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpStringDerive">xmlExpStringDerive</a><br /> -<a href="html/libxml-entities.html#xmlGetDocEntity">xmlGetDocEntity</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdAttrDesc">xmlGetDtdAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdElementDesc">xmlGetDtdElementDesc</a><br /> -<a href="html/libxml-entities.html#xmlGetDtdEntity">xmlGetDtdEntity</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdNotationDesc">xmlGetDtdNotationDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQElementDesc">xmlGetDtdQElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetID">xmlGetID</a><br /> -<a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-entities.html#xmlGetParameterEntity">xmlGetParameterEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetPredefinedEntity">xmlGetPredefinedEntity</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-valid.html#xmlGetRefs">xmlGetRefs</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup">xmlHashLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup2">xmlHashLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup3">xmlHashLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup">xmlHashQLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup2">xmlHashQLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup3">xmlHashQLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-hash.html#xmlHashScannerFull">xmlHashScannerFull</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -<a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -<a href="html/libxml-tree.html#xmlIsXHTML">xmlIsXHTML</a><br /> -<a href="html/libxml-tree.html#xmlNewCDataBlock">xmlNewCDataBlock</a><br /> -<a href="html/libxml-tree.html#xmlNewCharRef">xmlNewCharRef</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewComment">xmlNewComment</a><br /> -<a href="html/libxml-tree.html#xmlNewDoc">xmlNewDoc</a><br /> -<a href="html/libxml-tree.html#xmlNewDocComment">xmlNewDocComment</a><br /> -<a href="html/libxml-valid.html#xmlNewDocElementContent">xmlNewDocElementContent</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewDocPI">xmlNewDocPI</a><br /> -<a href="html/libxml-tree.html#xmlNewDocProp">xmlNewDocProp</a><br /> -<a href="html/libxml-tree.html#xmlNewDocRawNode">xmlNewDocRawNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocText">xmlNewDocText</a><br /> -<a href="html/libxml-tree.html#xmlNewDocTextLen">xmlNewDocTextLen</a><br /> -<a href="html/libxml-tree.html#xmlNewDtd">xmlNewDtd</a><br /> -<a href="html/libxml-valid.html#xmlNewElementContent">xmlNewElementContent</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -<a href="html/libxml-tree.html#xmlNewNode">xmlNewNode</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-tree.html#xmlNewNsProp">xmlNewNsProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsPropEatName">xmlNewNsPropEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewPI">xmlNewPI</a><br /> -<a href="html/libxml-tree.html#xmlNewProp">xmlNewProp</a><br /> -<a href="html/libxml-tree.html#xmlNewReference">xmlNewReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewStringInputStream">xmlNewStringInputStream</a><br /> -<a href="html/libxml-tree.html#xmlNewText">xmlNewText</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-tree.html#xmlNewTextLen">xmlNewTextLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetBase">xmlNodeSetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetLang">xmlNodeSetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetName">xmlNodeSetName</a><br /> -<a href="html/libxml-xmlIO.html#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseDTD">xmlParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlParseDoc">xmlParseDoc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -<a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-parser.html#xmlReadDoc">xmlReadDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForDoc">xmlReaderForDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewDoc">xmlReaderNewDoc</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecCallbacks">xmlRegExecCallbacks</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpExec">xmlRegexpExec</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushCData">xmlRelaxNGValidatePushCData</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2AttributeDecl">xmlSAX2AttributeDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2CDataBlock">xmlSAX2CDataBlock</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Characters">xmlSAX2Characters</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Comment">xmlSAX2Comment</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ElementDecl">xmlSAX2ElementDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElement">xmlSAX2EndElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElementNs">xmlSAX2EndElementNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EntityDecl">xmlSAX2EntityDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ExternalSubset">xmlSAX2ExternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetEntity">xmlSAX2GetEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetParameterEntity">xmlSAX2GetParameterEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InternalSubset">xmlSAX2InternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2NotationDecl">xmlSAX2NotationDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ProcessingInstruction">xmlSAX2ProcessingInstruction</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Reference">xmlSAX2Reference</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElement">xmlSAX2StartElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2UnparsedEntityDecl">xmlSAX2UnparsedEntityDecl</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDTD">xmlSAXParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCollapseString">xmlSchemaCollapseString</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewNOTATIONValue">xmlSchemaNewNOTATIONValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewQNameValue">xmlSchemaNewQNameValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaWhiteSpaceReplace">xmlSchemaWhiteSpaceReplace</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -<a href="html/libxml-tree.html#xmlSetNsProp">xmlSetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -<a href="html/libxml-parser.html#xmlSetupParserForBuffer">xmlSetupParserForBuffer</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrPrintf">xmlStrPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrQEqual">xmlStrQEqual</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrVPrintf">xmlStrVPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcasecmp">xmlStrcasecmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcasestr">xmlStrcasestr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrchr">xmlStrchr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcmp">xmlStrcmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringCurrentChar">xmlStringCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -<a href="html/libxml-tree.html#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrlen">xmlStrlen</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncasecmp">xmlStrncasecmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncat">xmlStrncat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncmp">xmlStrncmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrndup">xmlStrndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrstr">xmlStrstr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrsub">xmlStrsub</a><br /> -<a href="html/libxml-tree.html#xmlTextConcat">xmlTextConcat</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttribute">xmlTextReaderGetAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNs">xmlTextReaderGetAttributeNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttribute">xmlTextReaderMoveToAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNs">xmlTextReaderMoveToAttributeNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterSetIndentString">xmlTextWriterSetIndentString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartAttribute">xmlTextWriterStartAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartAttributeNS">xmlTextWriterStartAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTD">xmlTextWriterStartDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDAttlist">xmlTextWriterStartDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDElement">xmlTextWriterStartDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDEntity">xmlTextWriterStartDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartElement">xmlTextWriterStartElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartElementNS">xmlTextWriterStartElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartPI">xmlTextWriterStartPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteAttribute">xmlTextWriterWriteAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteAttributeNS">xmlTextWriterWriteAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteCDATA">xmlTextWriterWriteCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteComment">xmlTextWriterWriteComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTD">xmlTextWriterWriteDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDAttlist">xmlTextWriterWriteDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDElement">xmlTextWriterWriteDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDEntity">xmlTextWriterWriteDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntity">xmlTextWriterWriteDTDExternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntityContents">xmlTextWriterWriteDTDExternalEntityContents</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDInternalEntity">xmlTextWriterWriteDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDNotation">xmlTextWriterWriteDTDNotation</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteElement">xmlTextWriterWriteElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteElementNS">xmlTextWriterWriteElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttribute">xmlTextWriterWriteFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttributeNS">xmlTextWriterWriteFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTD">xmlTextWriterWriteFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDAttlist">xmlTextWriterWriteFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDElement">xmlTextWriterWriteFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDInternalEntity">xmlTextWriterWriteFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElement">xmlTextWriterWriteFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElementNS">xmlTextWriterWriteFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatPI">xmlTextWriterWriteFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWritePI">xmlTextWriterWritePI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRaw">xmlTextWriterWriteRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRawLen">xmlTextWriterWriteRawLen</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteString">xmlTextWriterWriteString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttribute">xmlTextWriterWriteVFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttributeNS">xmlTextWriterWriteVFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTD">xmlTextWriterWriteVFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDAttlist">xmlTextWriterWriteVFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDElement">xmlTextWriterWriteVFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDInternalEntity">xmlTextWriterWriteVFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElement">xmlTextWriterWriteVFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElementNS">xmlTextWriterWriteVFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatPI">xmlTextWriterWriteVFormatPI</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -<a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Charcmp">xmlUTF8Charcmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Size">xmlUTF8Size</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strlen">xmlUTF8Strlen</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strloc">xmlUTF8Strloc</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strndup">xmlUTF8Strndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strpos">xmlUTF8Strpos</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsize">xmlUTF8Strsize</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -<a href="html/libxml-tree.html#xmlUnsetNsProp">xmlUnsetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlUnsetProp">xmlUnsetProp</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> -<a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> -<a href="html/libxml-tree.html#xmlValidateName">xmlValidateName</a><br /> -<a href="html/libxml-valid.html#xmlValidateNameValue">xmlValidateNameValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNamesValue">xmlValidateNamesValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNmtokenValue">xmlValidateNmtokenValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNmtokensValue">xmlValidateNmtokensValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationUse">xmlValidateNotationUse</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-valid.html#xmlValidatePopElement">xmlValidatePopElement</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushCData">xmlValidatePushCData</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushElement">xmlValidatePushElement</a><br /> -<a href="html/libxml-tree.html#xmlValidateQName">xmlValidateQName</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastStringToBoolean">xmlXPathCastStringToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastStringToNumber">xmlXPathCastStringToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompile">xmlXPathCompile</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCtxtCompile">xmlXPathCtxtCompile</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEval">xmlXPathEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalExpression">xmlXPathEvalExpression</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookup">xmlXPathFunctionLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookupNS">xmlXPathFunctionLookupNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIsNodeType">xmlXPathIsNodeType</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewParserContext">xmlXPathNewParserContext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewString">xmlXPathNewString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNsLookup">xmlXPathNsLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFunc">xmlXPathRegisterFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncNS">xmlXPathRegisterFuncNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterNs">xmlXPathRegisterNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariable">xmlXPathRegisterVariable</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableNS">xmlXPathRegisterVariableNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookup">xmlXPathVariableLookup</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookupNS">xmlXPathVariableLookupNS</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEval">xmlXPtrEval</a><br /> -</p><h2>Type const xmlChar **:</h2><p><a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -<a href="html/libxml-SAX.html#startElement">startElement</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#startElementSAXFunc">startElementSAXFunc</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElement">xmlSAX2StartElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -<a href="html/libxml-valid.html#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</p><h2>Type const xmlListPtr:</h2><p><a href="html/libxml-list.html#xmlListCopy">xmlListCopy</a><br /> -<a href="html/libxml-list.html#xmlListDup">xmlListDup</a><br /> -</p><h2>Type const xmlNodePtr:</h2><p><a href="html/libxml-tree.html#xmlCopyNode">xmlCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlCopyNodeList">xmlCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNode">xmlDocCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNodeList">xmlDocCopyNodeList</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfo">xmlParserFindNodeInfo</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -</p><h2>Type const xmlParserCtxtPtr:</h2><p><a href="html/libxml-parser.html#xmlParserFindNodeInfo">xmlParserFindNodeInfo</a><br /> -</p><h2>Type const xmlParserNodeInfoPtr:</h2><p><a href="html/libxml-parser.html#xmlParserAddNodeInfo">xmlParserAddNodeInfo</a><br /> -</p><h2>Type const xmlParserNodeInfoSeqPtr:</h2><p><a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -</p><h2>Type docbParserCtxtPtr:</h2><p><a href="html/libxml-DOCBparser.html#docbFreeParserCtxt">docbFreeParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseChunk">docbParseChunk</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseDocument">docbParseDocument</a><br /> -</p><h2>Type docbSAXHandlerPtr:</h2><p><a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -</p><h2>Type double:</h2><p><a href="html/libxml-xpath.html#xmlXPathCastNumberToBoolean">xmlXPathCastNumberToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNumberToString">xmlXPathCastNumberToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewFloat">xmlXPathNewFloat</a><br /> -</p><h2>Type ftpDataCallback:</h2><p><a href="html/libxml-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a><br /> -</p><h2>Type ftpListCallback:</h2><p><a href="html/libxml-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a><br /> -</p><h2>Type htmlDocPtr:</h2><p><a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLtree.html#htmlGetMetaEncoding">htmlGetMetaEncoding</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSetMetaEncoding">htmlSetMetaEncoding</a><br /> -</p><h2>Type htmlNodePtr:</h2><p><a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -</p><h2>Type htmlParserCtxtPtr:</h2><p><a href="html/libxml-HTMLparser.html#htmlCtxtReadDoc">htmlCtxtReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadFd">htmlCtxtReadFd</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadFile">htmlCtxtReadFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadIO">htmlCtxtReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadMemory">htmlCtxtReadMemory</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReset">htmlCtxtReset</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtUseOptions">htmlCtxtUseOptions</a><br /> -<a href="html/libxml-HTMLparser.html#htmlFreeParserCtxt">htmlFreeParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseCharRef">htmlParseCharRef</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseChunk">htmlParseChunk</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDocument">htmlParseDocument</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseElement">htmlParseElement</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -</p><h2>Type htmlSAXHandlerPtr:</h2><p><a href="html/libxml-HTMLparser.html#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -</p><h2>Type int *:</h2><p><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemory">htmlDocDumpMemory</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemoryFormat">htmlDocDumpMemoryFormat</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemory">xmlDocDumpMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringCurrentChar">xmlStringCurrentChar</a><br /> -<a href="html/libxml-valid.html#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a><br /> -</p><h2>Type size_t:</h2><p><a href="html/libxml-tree.html#xmlBufferCreateSize">xmlBufferCreateSize</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -</p><h2>Type unsigned char *:</h2><p><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -</p><h2>Type unsigned int:</h2><p><a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -<a href="html/libxml-tree.html#xmlBufferGrow">xmlBufferGrow</a><br /> -<a href="html/libxml-tree.html#xmlBufferResize">xmlBufferResize</a><br /> -<a href="html/libxml-tree.html#xmlBufferShrink">xmlBufferShrink</a><br /> -<a href="html/libxml-chvalid.html#xmlCharInRange">xmlCharInRange</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseChar">xmlIsBaseChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlank">xmlIsBlank</a><br /> -<a href="html/libxml-chvalid.html#xmlIsChar">xmlIsChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombining">xmlIsCombining</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigit">xmlIsDigit</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtender">xmlIsExtender</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographic">xmlIsIdeographic</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar">xmlIsPubidChar</a><br /> -</p><h2>Type unsigned long:</h2><p><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -<a href="html/libxml-threads.html#xmlDllMain">xmlDllMain</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -</p><h2>Type unsigned long *:</h2><p><a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -</p><h2>Type va_list:</h2><p><a href="html/libxml-xmlstring.html#xmlStrVPrintf">xmlStrVPrintf</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttribute">xmlTextWriterWriteVFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttributeNS">xmlTextWriterWriteVFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatCDATA">xmlTextWriterWriteVFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatComment">xmlTextWriterWriteVFormatComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTD">xmlTextWriterWriteVFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDAttlist">xmlTextWriterWriteVFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDElement">xmlTextWriterWriteVFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDInternalEntity">xmlTextWriterWriteVFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElement">xmlTextWriterWriteVFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElementNS">xmlTextWriterWriteVFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatPI">xmlTextWriterWriteVFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatRaw">xmlTextWriterWriteVFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatString">xmlTextWriterWriteVFormatString</a><br /> -</p><h2>Type void *:</h2><p><a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-SAX.html#attributeDecl">attributeDecl</a><br /> -<a href="html/libxml-parser.html#attributeDeclSAXFunc">attributeDeclSAXFunc</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -<a href="html/libxml-SAX.html#cdataBlock">cdataBlock</a><br /> -<a href="html/libxml-parser.html#cdataBlockSAXFunc">cdataBlockSAXFunc</a><br /> -<a href="html/libxml-SAX.html#characters">characters</a><br /> -<a href="html/libxml-parser.html#charactersSAXFunc">charactersSAXFunc</a><br /> -<a href="html/libxml-SAX.html#checkNamespace">checkNamespace</a><br /> -<a href="html/libxml-SAX.html#comment">comment</a><br /> -<a href="html/libxml-parser.html#commentSAXFunc">commentSAXFunc</a><br /> -<a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -<a href="html/libxml-SAX.html#elementDecl">elementDecl</a><br /> -<a href="html/libxml-parser.html#elementDeclSAXFunc">elementDeclSAXFunc</a><br /> -<a href="html/libxml-SAX.html#endDocument">endDocument</a><br /> -<a href="html/libxml-parser.html#endDocumentSAXFunc">endDocumentSAXFunc</a><br /> -<a href="html/libxml-SAX.html#endElement">endElement</a><br /> -<a href="html/libxml-parser.html#endElementNsSAX2Func">endElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#endElementSAXFunc">endElementSAXFunc</a><br /> -<a href="html/libxml-SAX.html#entityDecl">entityDecl</a><br /> -<a href="html/libxml-parser.html#entityDeclSAXFunc">entityDeclSAXFunc</a><br /> -<a href="html/libxml-parser.html#errorSAXFunc">errorSAXFunc</a><br /> -<a href="html/libxml-SAX.html#externalSubset">externalSubset</a><br /> -<a href="html/libxml-parser.html#externalSubsetSAXFunc">externalSubsetSAXFunc</a><br /> -<a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -<a href="html/libxml-nanoftp.html#ftpDataCallback">ftpDataCallback</a><br /> -<a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -<a href="html/libxml-SAX.html#getColumnNumber">getColumnNumber</a><br /> -<a href="html/libxml-SAX.html#getEntity">getEntity</a><br /> -<a href="html/libxml-parser.html#getEntitySAXFunc">getEntitySAXFunc</a><br /> -<a href="html/libxml-SAX.html#getLineNumber">getLineNumber</a><br /> -<a href="html/libxml-SAX.html#getNamespace">getNamespace</a><br /> -<a href="html/libxml-SAX.html#getParameterEntity">getParameterEntity</a><br /> -<a href="html/libxml-parser.html#getParameterEntitySAXFunc">getParameterEntitySAXFunc</a><br /> -<a href="html/libxml-SAX.html#getPublicId">getPublicId</a><br /> -<a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-SAX.html#globalNamespace">globalNamespace</a><br /> -<a href="html/libxml-SAX.html#hasExternalSubset">hasExternalSubset</a><br /> -<a href="html/libxml-parser.html#hasExternalSubsetSAXFunc">hasExternalSubsetSAXFunc</a><br /> -<a href="html/libxml-SAX.html#hasInternalSubset">hasInternalSubset</a><br /> -<a href="html/libxml-parser.html#hasInternalSubsetSAXFunc">hasInternalSubsetSAXFunc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadIO">htmlCtxtReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadIO">htmlReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> -<a href="html/libxml-SAX.html#internalSubset">internalSubset</a><br /> -<a href="html/libxml-parser.html#internalSubsetSAXFunc">internalSubsetSAXFunc</a><br /> -<a href="html/libxml-SAX.html#isStandalone">isStandalone</a><br /> -<a href="html/libxml-parser.html#isStandaloneSAXFunc">isStandaloneSAXFunc</a><br /> -<a href="html/libxml-SAX.html#namespaceDecl">namespaceDecl</a><br /> -<a href="html/libxml-SAX.html#notationDecl">notationDecl</a><br /> -<a href="html/libxml-parser.html#notationDeclSAXFunc">notationDeclSAXFunc</a><br /> -<a href="html/libxml-SAX.html#processingInstruction">processingInstruction</a><br /> -<a href="html/libxml-parser.html#processingInstructionSAXFunc">processingInstructionSAXFunc</a><br /> -<a href="html/libxml-SAX.html#reference">reference</a><br /> -<a href="html/libxml-parser.html#referenceSAXFunc">referenceSAXFunc</a><br /> -<a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -<a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-SAX.html#setNamespace">setNamespace</a><br /> -<a href="html/libxml-SAX.html#startDocument">startDocument</a><br /> -<a href="html/libxml-parser.html#startDocumentSAXFunc">startDocumentSAXFunc</a><br /> -<a href="html/libxml-SAX.html#startElement">startElement</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#startElementSAXFunc">startElementSAXFunc</a><br /> -<a href="html/libxml-SAX.html#unparsedEntityDecl">unparsedEntityDecl</a><br /> -<a href="html/libxml-parser.html#unparsedEntityDeclSAXFunc">unparsedEntityDeclSAXFunc</a><br /> -<a href="html/libxml-parser.html#warningSAXFunc">warningSAXFunc</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a><br /> -<a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-c14n.html#xmlC14NIsVisibleCallback">xmlC14NIsVisibleCallback</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAddLocal">xmlCatalogAddLocal</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogFreeLocal">xmlCatalogFreeLocal</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolveURI">xmlCatalogLocalResolveURI</a><br /> -<a href="html/libxml-parser.html#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-xmlerror.html#xmlCtxtGetLastError">xmlCtxtGetLastError</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadIO">xmlCtxtReadIO</a><br /> -<a href="html/libxml-xmlerror.html#xmlCtxtResetLastError">xmlCtxtResetLastError</a><br /> -<a href="html/libxml-threads.html#xmlDllMain">xmlDllMain</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileClose">xmlFileClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileRead">xmlFileRead</a><br /> -<a href="html/libxml-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a><br /> -<a href="html/libxml-parser.html#xmlGetFeature">xmlGetFeature</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashCopier">xmlHashCopier</a><br /> -<a href="html/libxml-hash.html#xmlHashDeallocator">xmlHashDeallocator</a><br /> -<a href="html/libxml-hash.html#xmlHashScan">xmlHashScan</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull">xmlHashScanFull</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanner">xmlHashScanner</a><br /> -<a href="html/libxml-hash.html#xmlHashScannerFull">xmlHashScannerFull</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPClose">xmlIOFTPClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPRead">xmlIOFTPRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPClose">xmlIOHTTPClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPRead">xmlIOHTTPRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a><br /> -<a href="html/libxml-list.html#xmlListAppend">xmlListAppend</a><br /> -<a href="html/libxml-list.html#xmlListInsert">xmlListInsert</a><br /> -<a href="html/libxml-list.html#xmlListPushBack">xmlListPushBack</a><br /> -<a href="html/libxml-list.html#xmlListPushFront">xmlListPushFront</a><br /> -<a href="html/libxml-list.html#xmlListRemoveAll">xmlListRemoveAll</a><br /> -<a href="html/libxml-list.html#xmlListRemoveFirst">xmlListRemoveFirst</a><br /> -<a href="html/libxml-list.html#xmlListRemoveLast">xmlListRemoveLast</a><br /> -<a href="html/libxml-list.html#xmlListReverseSearch">xmlListReverseSearch</a><br /> -<a href="html/libxml-list.html#xmlListSearch">xmlListSearch</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemFree">xmlMemFree</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCheckResponse">xmlNanoFTPCheckResponse</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPClose">xmlNanoFTPClose</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCloseConnection">xmlNanoFTPCloseConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnect">xmlNanoFTPConnect</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCwd">xmlNanoFTPCwd</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPDele">xmlNanoFTPDele</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPFreeCtxt">xmlNanoFTPFreeCtxt</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetResponse">xmlNanoFTPGetResponse</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetSocket">xmlNanoFTPGetSocket</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPQuit">xmlNanoFTPQuit</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPRead">xmlNanoFTPRead</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPClose">xmlNanoHTTPClose</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPEncoding">xmlNanoHTTPEncoding</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMimeType">xmlNanoHTTPMimeType</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRead">xmlNanoHTTPRead</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRedir">xmlNanoHTTPRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPReturnCode">xmlNanoHTTPReturnCode</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPSave">xmlNanoHTTPSave</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserError">xmlParserError</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserWarning">xmlParserWarning</a><br /> -<a href="html/libxml-parser.html#xmlReadIO">xmlReadIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForIO">xmlReaderForIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecCallbacks">xmlRegExecCallbacks</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserStructuredErrors">xmlRelaxNGSetParserStructuredErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidStructuredErrors">xmlRelaxNGSetValidStructuredErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2AttributeDecl">xmlSAX2AttributeDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2CDataBlock">xmlSAX2CDataBlock</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Characters">xmlSAX2Characters</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Comment">xmlSAX2Comment</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ElementDecl">xmlSAX2ElementDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndDocument">xmlSAX2EndDocument</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElement">xmlSAX2EndElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElementNs">xmlSAX2EndElementNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EntityDecl">xmlSAX2EntityDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ExternalSubset">xmlSAX2ExternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetColumnNumber">xmlSAX2GetColumnNumber</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetEntity">xmlSAX2GetEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetLineNumber">xmlSAX2GetLineNumber</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetParameterEntity">xmlSAX2GetParameterEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetPublicId">xmlSAX2GetPublicId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2HasExternalSubset">xmlSAX2HasExternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2HasInternalSubset">xmlSAX2HasInternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InternalSubset">xmlSAX2InternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IsStandalone">xmlSAX2IsStandalone</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2NotationDecl">xmlSAX2NotationDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ProcessingInstruction">xmlSAX2ProcessingInstruction</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Reference">xmlSAX2Reference</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartDocument">xmlSAX2StartDocument</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElement">xmlSAX2StartElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2UnparsedEntityDecl">xmlSAX2UnparsedEntityDecl</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseFile">xmlSAXUserParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseMemory">xmlSAXUserParseMemory</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserStructuredErrors">xmlSchemaSetParserStructuredErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidStructuredErrors">xmlSchemaSetValidStructuredErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidityErrorFunc">xmlSchematronValidityErrorFunc</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidityWarningFunc">xmlSchematronValidityWarningFunc</a><br /> -<a href="html/libxml-parser.html#xmlSetFeature">xmlSetFeature</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a><br /> -<a href="html/libxml-globals.html#xmlThrDefSetGenericErrorFunc">xmlThrDefSetGenericErrorFunc</a><br /> -<a href="html/libxml-globals.html#xmlThrDefSetStructuredErrorFunc">xmlThrDefSetStructuredErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncLookup">xmlXPathRegisterFuncLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableLookup">xmlXPathRegisterVariableLookup</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapExternal">xmlXPathWrapExternal</a><br /> -</p><h2>Type void **:</h2><p><a href="html/libxml-xmlmodule.html#xmlModuleSymbol">xmlModuleSymbol</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSAXPlug">xmlSchemaSAXPlug</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetErrorHandler">xmlTextReaderGetErrorHandler</a><br /> -</p><h2>Type xlinkActuate *:</h2><p><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -</p><h2>Type xlinkHandlerPtr:</h2><p><a href="html/libxml-xlink.html#xlinkSetDefaultHandler">xlinkSetDefaultHandler</a><br /> -</p><h2>Type xlinkNodeDetectFunc:</h2><p><a href="html/libxml-xlink.html#xlinkSetDefaultDetect">xlinkSetDefaultDetect</a><br /> -</p><h2>Type xlinkShow *:</h2><p><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -</p><h2>Type xmlAttrPtr:</h2><p><a href="html/libxml-valid.html#xmlAddID">xmlAddID</a><br /> -<a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> -<a href="html/libxml-tree.html#xmlAttrSerializeTxtContent">xmlAttrSerializeTxtContent</a><br /> -<a href="html/libxml-tree.html#xmlCopyProp">xmlCopyProp</a><br /> -<a href="html/libxml-tree.html#xmlCopyPropList">xmlCopyPropList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttr">xmlDebugDumpAttr</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttrList">xmlDebugDumpAttrList</a><br /> -<a href="html/libxml-tree.html#xmlFreeProp">xmlFreeProp</a><br /> -<a href="html/libxml-tree.html#xmlFreePropList">xmlFreePropList</a><br /> -<a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -<a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -<a href="html/libxml-valid.html#xmlRemoveID">xmlRemoveID</a><br /> -<a href="html/libxml-tree.html#xmlRemoveProp">xmlRemoveProp</a><br /> -<a href="html/libxml-valid.html#xmlRemoveRef">xmlRemoveRef</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -</p><h2>Type xmlAttributeDefault:</h2><p><a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -</p><h2>Type xmlAttributePtr:</h2><p><a href="html/libxml-valid.html#xmlDumpAttributeDecl">xmlDumpAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -</p><h2>Type xmlAttributeTablePtr:</h2><p><a href="html/libxml-valid.html#xmlCopyAttributeTable">xmlCopyAttributeTable</a><br /> -<a href="html/libxml-valid.html#xmlDumpAttributeTable">xmlDumpAttributeTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeAttributeTable">xmlFreeAttributeTable</a><br /> -</p><h2>Type xmlAttributeType:</h2><p><a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -</p><h2>Type xmlAutomataPtr:</h2><p><a href="html/libxml-xmlautomata.html#xmlAutomataCompile">xmlAutomataCompile</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataGetInitState">xmlAutomataGetInitState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataIsDeterminist">xmlAutomataIsDeterminist</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounter">xmlAutomataNewCounter</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewState">xmlAutomataNewState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataSetFinalState">xmlAutomataSetFinalState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlFreeAutomata">xmlFreeAutomata</a><br /> -</p><h2>Type xmlAutomataStatePtr:</h2><p><a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataSetFinalState">xmlAutomataSetFinalState</a><br /> -</p><h2>Type xmlBufferAllocationScheme:</h2><p><a href="html/libxml-tree.html#xmlBufferSetAllocationScheme">xmlBufferSetAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -<a href="html/libxml-globals.html#xmlThrDefBufferAllocScheme">xmlThrDefBufferAllocScheme</a><br /> -</p><h2>Type xmlBufferPtr:</h2><p><a href="html/libxml-HTMLtree.html#htmlNodeDump">htmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlAttrSerializeTxtContent">xmlAttrSerializeTxtContent</a><br /> -<a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferAddHead">xmlBufferAddHead</a><br /> -<a href="html/libxml-tree.html#xmlBufferCCat">xmlBufferCCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferCat">xmlBufferCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferDump">xmlBufferDump</a><br /> -<a href="html/libxml-tree.html#xmlBufferEmpty">xmlBufferEmpty</a><br /> -<a href="html/libxml-tree.html#xmlBufferFree">xmlBufferFree</a><br /> -<a href="html/libxml-tree.html#xmlBufferGrow">xmlBufferGrow</a><br /> -<a href="html/libxml-tree.html#xmlBufferResize">xmlBufferResize</a><br /> -<a href="html/libxml-tree.html#xmlBufferSetAllocationScheme">xmlBufferSetAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlBufferShrink">xmlBufferShrink</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteCHAR">xmlBufferWriteCHAR</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteChar">xmlBufferWriteChar</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-valid.html#xmlDumpAttributeDecl">xmlDumpAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpAttributeTable">xmlDumpAttributeTable</a><br /> -<a href="html/libxml-valid.html#xmlDumpElementDecl">xmlDumpElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpElementTable">xmlDumpElementTable</a><br /> -<a href="html/libxml-entities.html#xmlDumpEntitiesTable">xmlDumpEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlDumpEntityDecl">xmlDumpEntityDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpNotationDecl">xmlDumpNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpNotationTable">xmlDumpNotationTable</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpDump">xmlExpDump</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterMemory">xmlNewTextWriterMemory</a><br /> -<a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToBuffer">xmlSaveToBuffer</a><br /> -</p><h2>Type xmlC14NIsVisibleCallback:</h2><p><a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -</p><h2>Type xmlCatalogAllow:</h2><p><a href="html/libxml-catalog.html#xmlCatalogSetDefaults">xmlCatalogSetDefaults</a><br /> -</p><h2>Type xmlCatalogPrefer:</h2><p><a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -</p><h2>Type xmlCatalogPtr:</h2><p><a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogDump">xmlACatalogDump</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogRemove">xmlACatalogRemove</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolve">xmlACatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolvePublic">xmlACatalogResolvePublic</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveSystem">xmlACatalogResolveSystem</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveURI">xmlACatalogResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogIsEmpty">xmlCatalogIsEmpty</a><br /> -<a href="html/libxml-catalog.html#xmlConvertSGMLCatalog">xmlConvertSGMLCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlFreeCatalog">xmlFreeCatalog</a><br /> -</p><h2>Type xmlChar:</h2><p><a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrchr">xmlStrchr</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -</p><h2>Type xmlChar *:</h2><p><a href="html/libxml-SAX.html#checkNamespace">checkNamespace</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseDoc">docbParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-SAX.html#entityDecl">entityDecl</a><br /> -<a href="html/libxml-parser.html#entityDeclSAXFunc">entityDeclSAXFunc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDoc">htmlParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -<a href="html/libxml-parserInternals.html#xmlCopyChar">xmlCopyChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlCopyCharMultiByte">xmlCopyCharMultiByte</a><br /> -<a href="html/libxml-hash.html#xmlHashCopier">xmlHashCopier</a><br /> -<a href="html/libxml-hash.html#xmlHashDeallocator">xmlHashDeallocator</a><br /> -<a href="html/libxml-hash.html#xmlHashScanner">xmlHashScanner</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewNodeEatName">xmlNewNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewNsPropEatName">xmlNewNsPropEatName</a><br /> -<a href="html/libxml-parser.html#xmlParserInputDeallocate">xmlParserInputDeallocate</a><br /> -<a href="html/libxml-parser.html#xmlRecoverDoc">xmlRecoverDoc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EntityDecl">xmlSAX2EntityDecl</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrPrintf">xmlStrPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrVPrintf">xmlStrVPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcasestr">xmlStrcasestr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncat">xmlStrncat</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapString">xmlXPathWrapString</a><br /> -</p><h2>Type xmlChar **:</h2><p><a href="html/libxml-HTMLtree.html#htmlDocDumpMemory">htmlDocDumpMemory</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemoryFormat">htmlDocDumpMemoryFormat</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemory">xmlDocDumpMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -</p><h2>Type xmlCharEncoding:</h2><p><a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-xmlIO.html#xmlAllocParserInputBuffer">xmlAllocParserInputBuffer</a><br /> -<a href="html/libxml-parser.html#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingHandler">xmlGetCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -<a href="html/libxml-parser.html#xmlIOParseDTD">xmlIOParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlNewIOInputStream">xmlNewIOInputStream</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFd">xmlParserInputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFile">xmlParserInputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateMem">xmlParserInputBufferCreateMem</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchEncoding">xmlSwitchEncoding</a><br /> -</p><h2>Type xmlCharEncodingHandler *:</h2><p><a href="html/libxml-encoding.html#xmlCharEncCloseFunc">xmlCharEncCloseFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -</p><h2>Type xmlCharEncodingHandlerPtr:</h2><p><a href="html/libxml-xmlIO.html#xmlAllocOutputBuffer">xmlAllocOutputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFd">xmlOutputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFile">xmlOutputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-encoding.html#xmlRegisterCharEncodingHandler">xmlRegisterCharEncodingHandler</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchInputEncoding">xmlSwitchInputEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchToEncoding">xmlSwitchToEncoding</a><br /> -</p><h2>Type xmlCharEncodingInputFunc:</h2><p><a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -</p><h2>Type xmlCharEncodingOutputFunc:</h2><p><a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetAttrEscape">xmlSaveSetAttrEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetEscape">xmlSaveSetEscape</a><br /> -</p><h2>Type xmlDOMWrapCtxtPtr:</h2><p><a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapFreeCtxt">xmlDOMWrapFreeCtxt</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -</p><h2>Type xmlDeregisterNodeFunc:</h2><p><a href="html/libxml-globals.html#xmlDeregisterNodeDefault">xmlDeregisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefDeregisterNodeDefault">xmlThrDefDeregisterNodeDefault</a><br /> -</p><h2>Type xmlDict *:</h2><p><a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -</p><h2>Type xmlDictPtr:</h2><p><a href="html/libxml-dict.html#xmlDictCreateSub">xmlDictCreateSub</a><br /> -<a href="html/libxml-dict.html#xmlDictExists">xmlDictExists</a><br /> -<a href="html/libxml-dict.html#xmlDictFree">xmlDictFree</a><br /> -<a href="html/libxml-dict.html#xmlDictLookup">xmlDictLookup</a><br /> -<a href="html/libxml-dict.html#xmlDictOwns">xmlDictOwns</a><br /> -<a href="html/libxml-dict.html#xmlDictQLookup">xmlDictQLookup</a><br /> -<a href="html/libxml-dict.html#xmlDictReference">xmlDictReference</a><br /> -<a href="html/libxml-dict.html#xmlDictSize">xmlDictSize</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewCtxt">xmlExpNewCtxt</a><br /> -<a href="html/libxml-hash.html#xmlHashCreateDict">xmlHashCreateDict</a><br /> -</p><h2>Type xmlDocPtr:</h2><p><a href="html/libxml-HTMLtree.html#htmlDocContentDumpFormatOutput">htmlDocContentDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocContentDumpOutput">htmlDocContentDumpOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDump">htmlDocDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemory">htmlDocDumpMemory</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemoryFormat">htmlDocDumpMemoryFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDump">htmlNodeDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFile">htmlNodeDumpFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpOutput">htmlNodeDumpOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFile">htmlSaveFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFileEnc">htmlSaveFileEnc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFileFormat">htmlSaveFileFormat</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-entities.html#xmlAddDocEntity">xmlAddDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlAddDtdEntity">xmlAddDtdEntity</a><br /> -<a href="html/libxml-valid.html#xmlAddID">xmlAddID</a><br /> -<a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> -<a href="html/libxml-tree.html#xmlAttrSerializeTxtContent">xmlAttrSerializeTxtContent</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-tree.html#xmlCopyDoc">xmlCopyDoc</a><br /> -<a href="html/libxml-valid.html#xmlCopyDocElementContent">xmlCopyDocElementContent</a><br /> -<a href="html/libxml-tree.html#xmlCreateIntSubset">xmlCreateIntSubset</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugCheckDocument">xmlDebugCheckDocument</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocument">xmlDebugDumpDocument</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocumentHead">xmlDebugDumpDocumentHead</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpEntities">xmlDebugDumpEntities</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNode">xmlDocCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNodeList">xmlDocCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlDocDump">xmlDocDump</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemory">xmlDocDumpMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> -<a href="html/libxml-tree.html#xmlDocGetRootElement">xmlDocGetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlElemDump">xmlElemDump</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-entities.html#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a><br /> -<a href="html/libxml-tree.html#xmlFreeDoc">xmlFreeDoc</a><br /> -<a href="html/libxml-valid.html#xmlFreeDocElementContent">xmlFreeDocElementContent</a><br /> -<a href="html/libxml-tree.html#xmlGetDocCompressMode">xmlGetDocCompressMode</a><br /> -<a href="html/libxml-entities.html#xmlGetDocEntity">xmlGetDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetDtdEntity">xmlGetDtdEntity</a><br /> -<a href="html/libxml-valid.html#xmlGetID">xmlGetID</a><br /> -<a href="html/libxml-tree.html#xmlGetIntSubset">xmlGetIntSubset</a><br /> -<a href="html/libxml-tree.html#xmlGetNsList">xmlGetNsList</a><br /> -<a href="html/libxml-entities.html#xmlGetParameterEntity">xmlGetParameterEntity</a><br /> -<a href="html/libxml-valid.html#xmlGetRefs">xmlGetRefs</a><br /> -<a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -<a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -<a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -<a href="html/libxml-tree.html#xmlNewCDataBlock">xmlNewCDataBlock</a><br /> -<a href="html/libxml-tree.html#xmlNewCharRef">xmlNewCharRef</a><br /> -<a href="html/libxml-tree.html#xmlNewDocComment">xmlNewDocComment</a><br /> -<a href="html/libxml-valid.html#xmlNewDocElementContent">xmlNewDocElementContent</a><br /> -<a href="html/libxml-tree.html#xmlNewDocFragment">xmlNewDocFragment</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewDocPI">xmlNewDocPI</a><br /> -<a href="html/libxml-tree.html#xmlNewDocProp">xmlNewDocProp</a><br /> -<a href="html/libxml-tree.html#xmlNewDocRawNode">xmlNewDocRawNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocText">xmlNewDocText</a><br /> -<a href="html/libxml-tree.html#xmlNewDocTextLen">xmlNewDocTextLen</a><br /> -<a href="html/libxml-tree.html#xmlNewDtd">xmlNewDtd</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -<a href="html/libxml-tree.html#xmlNewReference">xmlNewReference</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewWalker">xmlReaderNewWalker</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderWalker">xmlReaderWalker</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateDoc">xmlRelaxNGValidateDoc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePopElement">xmlRelaxNGValidatePopElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a><br /> -<a href="html/libxml-valid.html#xmlRemoveID">xmlRemoveID</a><br /> -<a href="html/libxml-valid.html#xmlRemoveRef">xmlRemoveRef</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-tree.html#xmlSaveFile">xmlSaveFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFileEnc">xmlSaveFileEnc</a><br /> -<a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewDocParserCtxt">xmlSchemaNewDocParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewDocParserCtxt">xmlSchematronNewDocParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidateDoc">xmlSchematronValidateDoc</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -<a href="html/libxml-tree.html#xmlSetDocCompressMode">xmlSetDocCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetListDoc">xmlSetListDoc</a><br /> -<a href="html/libxml-tree.html#xmlSetTreeDoc">xmlSetTreeDoc</a><br /> -<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a><br /> -<a href="html/libxml-tree.html#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocument">xmlValidateDocument</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateElement">xmlValidateElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationUse">xmlValidateNotationUse</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-valid.html#xmlValidatePopElement">xmlValidatePopElement</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushElement">xmlValidatePushElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeNewContext">xmlXIncludeNewContext</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcess">xmlXIncludeProcess</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlags">xmlXIncludeProcessFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNewContext">xmlXPathNewContext</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -</p><h2>Type xmlDocPtr *:</h2><p><a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> -</p><h2>Type xmlDtdPtr:</h2><p><a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlAddElementDecl">xmlAddElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlAddNotationDecl">xmlAddNotationDecl</a><br /> -<a href="html/libxml-tree.html#xmlCopyDtd">xmlCopyDtd</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDTD">xmlDebugDumpDTD</a><br /> -<a href="html/libxml-tree.html#xmlFreeDtd">xmlFreeDtd</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdAttrDesc">xmlGetDtdAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdElementDesc">xmlGetDtdElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdNotationDesc">xmlGetDtdNotationDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQElementDesc">xmlGetDtdQElementDesc</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -</p><h2>Type xmlElementContent *:</h2><p><a href="html/libxml-valid.html#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a><br /> -</p><h2>Type xmlElementContentPtr:</h2><p><a href="html/libxml-SAX.html#elementDecl">elementDecl</a><br /> -<a href="html/libxml-parser.html#elementDeclSAXFunc">elementDeclSAXFunc</a><br /> -<a href="html/libxml-valid.html#xmlAddElementDecl">xmlAddElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlCopyDocElementContent">xmlCopyDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlCopyElementContent">xmlCopyElementContent</a><br /> -<a href="html/libxml-valid.html#xmlFreeDocElementContent">xmlFreeDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlFreeElementContent">xmlFreeElementContent</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ElementDecl">xmlSAX2ElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlSnprintfElementContent">xmlSnprintfElementContent</a><br /> -<a href="html/libxml-valid.html#xmlSprintfElementContent">xmlSprintfElementContent</a><br /> -</p><h2>Type xmlElementContentPtr *:</h2><p><a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -</p><h2>Type xmlElementContentType:</h2><p><a href="html/libxml-valid.html#xmlNewDocElementContent">xmlNewDocElementContent</a><br /> -<a href="html/libxml-valid.html#xmlNewElementContent">xmlNewElementContent</a><br /> -</p><h2>Type xmlElementPtr:</h2><p><a href="html/libxml-valid.html#xmlDumpElementDecl">xmlDumpElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidBuildContentModel">xmlValidBuildContentModel</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -</p><h2>Type xmlElementTablePtr:</h2><p><a href="html/libxml-valid.html#xmlCopyElementTable">xmlCopyElementTable</a><br /> -<a href="html/libxml-valid.html#xmlDumpElementTable">xmlDumpElementTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeElementTable">xmlFreeElementTable</a><br /> -</p><h2>Type xmlElementTypeVal:</h2><p><a href="html/libxml-valid.html#xmlAddElementDecl">xmlAddElementDecl</a><br /> -</p><h2>Type xmlEntitiesTablePtr:</h2><p><a href="html/libxml-entities.html#xmlCopyEntitiesTable">xmlCopyEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlDumpEntitiesTable">xmlDumpEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlFreeEntitiesTable">xmlFreeEntitiesTable</a><br /> -</p><h2>Type xmlEntityPtr:</h2><p><a href="html/libxml-entities.html#xmlDumpEntityDecl">xmlDumpEntityDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -<a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewEntityInputStream">xmlNewEntityInputStream</a><br /> -</p><h2>Type xmlEntityReferenceFunc:</h2><p><a href="html/libxml-parserInternals.html#xmlSetEntityReferenceFunc">xmlSetEntityReferenceFunc</a><br /> -</p><h2>Type xmlEnumerationPtr:</h2><p><a href="html/libxml-SAX.html#attributeDecl">attributeDecl</a><br /> -<a href="html/libxml-parser.html#attributeDeclSAXFunc">attributeDeclSAXFunc</a><br /> -<a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlCopyEnumeration">xmlCopyEnumeration</a><br /> -<a href="html/libxml-valid.html#xmlFreeEnumeration">xmlFreeEnumeration</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2AttributeDecl">xmlSAX2AttributeDecl</a><br /> -</p><h2>Type xmlEnumerationPtr *:</h2><p><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -</p><h2>Type xmlErrorPtr:</h2><p><a href="html/libxml-xmlerror.html#xmlCopyError">xmlCopyError</a><br /> -<a href="html/libxml-xmlerror.html#xmlResetError">xmlResetError</a><br /> -<a href="html/libxml-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a><br /> -</p><h2>Type xmlExpCtxtPtr:</h2><p><a href="html/libxml-xmlregexp.html#xmlExpCtxtNbCons">xmlExpCtxtNbCons</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtNbNodes">xmlExpCtxtNbNodes</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpFree">xmlExpFree</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpFreeCtxt">xmlExpFreeCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewAtom">xmlExpNewAtom</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpStringDerive">xmlExpStringDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpSubsume">xmlExpSubsume</a><br /> -</p><h2>Type xmlExpNodePtr:</h2><p><a href="html/libxml-xmlregexp.html#xmlExpDump">xmlExpDump</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpFree">xmlExpFree</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpIsNillable">xmlExpIsNillable</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpMaxToken">xmlExpMaxToken</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpRef">xmlExpRef</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpStringDerive">xmlExpStringDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpSubsume">xmlExpSubsume</a><br /> -</p><h2>Type xmlExternalEntityLoader:</h2><p><a href="html/libxml-parser.html#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a><br /> -</p><h2>Type xmlFeature:</h2><p><a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -</p><h2>Type xmlFreeFunc:</h2><p><a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -</p><h2>Type xmlFreeFunc *:</h2><p><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -</p><h2>Type xmlGenericErrorFunc:</h2><p><a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-globals.html#xmlThrDefSetGenericErrorFunc">xmlThrDefSetGenericErrorFunc</a><br /> -</p><h2>Type xmlGenericErrorFunc *:</h2><p><a href="html/libxml-xmlerror.html#initGenericErrorDefaultFunc">initGenericErrorDefaultFunc</a><br /> -</p><h2>Type xmlGlobalStatePtr:</h2><p><a href="html/libxml-globals.html#xmlInitializeGlobalState">xmlInitializeGlobalState</a><br /> -</p><h2>Type xmlHashCopier:</h2><p><a href="html/libxml-hash.html#xmlHashCopy">xmlHashCopy</a><br /> -</p><h2>Type xmlHashDeallocator:</h2><p><a href="html/libxml-hash.html#xmlHashFree">xmlHashFree</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -</p><h2>Type xmlHashScanner:</h2><p><a href="html/libxml-hash.html#xmlHashScan">xmlHashScan</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -</p><h2>Type xmlHashScannerFull:</h2><p><a href="html/libxml-hash.html#xmlHashScanFull">xmlHashScanFull</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -</p><h2>Type xmlHashTablePtr:</h2><p><a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashCopy">xmlHashCopy</a><br /> -<a href="html/libxml-hash.html#xmlHashFree">xmlHashFree</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup">xmlHashLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup2">xmlHashLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup3">xmlHashLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup">xmlHashQLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup2">xmlHashQLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup3">xmlHashQLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashScan">xmlHashScan</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull">xmlHashScanFull</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-hash.html#xmlHashSize">xmlHashSize</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -</p><h2>Type xmlIDTablePtr:</h2><p><a href="html/libxml-valid.html#xmlFreeIDTable">xmlFreeIDTable</a><br /> -</p><h2>Type xmlInputCloseCallback:</h2><p><a href="html/libxml-HTMLparser.html#htmlCtxtReadIO">htmlCtxtReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadIO">htmlReadIO</a><br /> -<a href="html/libxml-parser.html#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadIO">xmlCtxtReadIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a><br /> -<a href="html/libxml-parser.html#xmlReadIO">xmlReadIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForIO">xmlReaderForIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -</p><h2>Type xmlInputMatchCallback:</h2><p><a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -</p><h2>Type xmlInputOpenCallback:</h2><p><a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -</p><h2>Type xmlInputReadCallback:</h2><p><a href="html/libxml-HTMLparser.html#htmlCtxtReadIO">htmlCtxtReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadIO">htmlReadIO</a><br /> -<a href="html/libxml-parser.html#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadIO">xmlCtxtReadIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a><br /> -<a href="html/libxml-parser.html#xmlReadIO">xmlReadIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForIO">xmlReaderForIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -</p><h2>Type xmlLinkPtr:</h2><p><a href="html/libxml-list.html#xmlLinkGetData">xmlLinkGetData</a><br /> -<a href="html/libxml-list.html#xmlListDeallocator">xmlListDeallocator</a><br /> -</p><h2>Type xmlListDataCompare:</h2><p><a href="html/libxml-list.html#xmlListCreate">xmlListCreate</a><br /> -</p><h2>Type xmlListDeallocator:</h2><p><a href="html/libxml-list.html#xmlListCreate">xmlListCreate</a><br /> -</p><h2>Type xmlListPtr:</h2><p><a href="html/libxml-list.html#xmlListAppend">xmlListAppend</a><br /> -<a href="html/libxml-list.html#xmlListClear">xmlListClear</a><br /> -<a href="html/libxml-list.html#xmlListCopy">xmlListCopy</a><br /> -<a href="html/libxml-list.html#xmlListDelete">xmlListDelete</a><br /> -<a href="html/libxml-list.html#xmlListEmpty">xmlListEmpty</a><br /> -<a href="html/libxml-list.html#xmlListEnd">xmlListEnd</a><br /> -<a href="html/libxml-list.html#xmlListFront">xmlListFront</a><br /> -<a href="html/libxml-list.html#xmlListInsert">xmlListInsert</a><br /> -<a href="html/libxml-list.html#xmlListMerge">xmlListMerge</a><br /> -<a href="html/libxml-list.html#xmlListPopBack">xmlListPopBack</a><br /> -<a href="html/libxml-list.html#xmlListPopFront">xmlListPopFront</a><br /> -<a href="html/libxml-list.html#xmlListPushBack">xmlListPushBack</a><br /> -<a href="html/libxml-list.html#xmlListPushFront">xmlListPushFront</a><br /> -<a href="html/libxml-list.html#xmlListRemoveAll">xmlListRemoveAll</a><br /> -<a href="html/libxml-list.html#xmlListRemoveFirst">xmlListRemoveFirst</a><br /> -<a href="html/libxml-list.html#xmlListRemoveLast">xmlListRemoveLast</a><br /> -<a href="html/libxml-list.html#xmlListReverse">xmlListReverse</a><br /> -<a href="html/libxml-list.html#xmlListReverseSearch">xmlListReverseSearch</a><br /> -<a href="html/libxml-list.html#xmlListReverseWalk">xmlListReverseWalk</a><br /> -<a href="html/libxml-list.html#xmlListSearch">xmlListSearch</a><br /> -<a href="html/libxml-list.html#xmlListSize">xmlListSize</a><br /> -<a href="html/libxml-list.html#xmlListSort">xmlListSort</a><br /> -<a href="html/libxml-list.html#xmlListWalk">xmlListWalk</a><br /> -</p><h2>Type xmlListWalker:</h2><p><a href="html/libxml-list.html#xmlListReverseWalk">xmlListReverseWalk</a><br /> -<a href="html/libxml-list.html#xmlListWalk">xmlListWalk</a><br /> -</p><h2>Type xmlLocationSetPtr:</h2><p><a href="html/libxml-xpointer.html#xmlXPtrFreeLocationSet">xmlXPtrFreeLocationSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetDel">xmlXPtrLocationSetDel</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetRemove">xmlXPtrLocationSetRemove</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrWrapLocationSet">xmlXPtrWrapLocationSet</a><br /> -</p><h2>Type xmlMallocFunc:</h2><p><a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -</p><h2>Type xmlMallocFunc *:</h2><p><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -</p><h2>Type xmlModulePtr:</h2><p><a href="html/libxml-xmlmodule.html#xmlModuleClose">xmlModuleClose</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleFree">xmlModuleFree</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleSymbol">xmlModuleSymbol</a><br /> -</p><h2>Type xmlMutexPtr:</h2><p><a href="html/libxml-threads.html#xmlFreeMutex">xmlFreeMutex</a><br /> -<a href="html/libxml-threads.html#xmlMutexLock">xmlMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlMutexUnlock">xmlMutexUnlock</a><br /> -</p><h2>Type xmlNode *:</h2><p><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -</p><h2>Type xmlNodePtr:</h2><p><a href="html/libxml-HTMLtree.html#htmlNodeDump">htmlNodeDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFile">htmlNodeDumpFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpOutput">htmlNodeDumpOutput</a><br /> -<a href="html/libxml-parserInternals.html#nodePush">nodePush</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a><br /> -<a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -<a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddChildList">xmlAddChildList</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-tree.html#xmlAddSibling">xmlAddSibling</a><br /> -<a href="html/libxml-c14n.html#xmlC14NIsVisibleCallback">xmlC14NIsVisibleCallback</a><br /> -<a href="html/libxml-tree.html#xmlCopyProp">xmlCopyProp</a><br /> -<a href="html/libxml-tree.html#xmlCopyPropList">xmlCopyPropList</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNode">xmlDebugDumpNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNodeList">xmlDebugDumpNodeList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpOneNode">xmlDebugDumpOneNode</a><br /> -<a href="html/libxml-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlElemDump">xmlElemDump</a><br /> -<a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -<a href="html/libxml-tree.html#xmlFreeNode">xmlFreeNode</a><br /> -<a href="html/libxml-tree.html#xmlFreeNodeList">xmlFreeNodeList</a><br /> -<a href="html/libxml-tree.html#xmlGetLastChild">xmlGetLastChild</a><br /> -<a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> -<a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNodePath">xmlGetNodePath</a><br /> -<a href="html/libxml-tree.html#xmlGetNsList">xmlGetNsList</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -<a href="html/libxml-tree.html#xmlIsBlankNode">xmlIsBlankNode</a><br /> -<a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -<a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -<a href="html/libxml-debugXML.html#xmlLsCountNode">xmlLsCountNode</a><br /> -<a href="html/libxml-debugXML.html#xmlLsOneNode">xmlLsOneNode</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-tree.html#xmlNewNsProp">xmlNewNsProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsPropEatName">xmlNewNsPropEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewProp">xmlNewProp</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -<a href="html/libxml-tree.html#xmlNodeIsText">xmlNodeIsText</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetBase">xmlNodeSetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetLang">xmlNodeSetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetName">xmlNodeSetName</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetSpacePreserve">xmlNodeSetSpacePreserve</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMatch">xmlPatternMatch</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePopElement">xmlRelaxNGValidatePopElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a><br /> -<a href="html/libxml-tree.html#xmlReplaceNode">xmlReplaceNode</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -<a href="html/libxml-tree.html#xmlSetListDoc">xmlSetListDoc</a><br /> -<a href="html/libxml-tree.html#xmlSetNs">xmlSetNs</a><br /> -<a href="html/libxml-tree.html#xmlSetNsProp">xmlSetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -<a href="html/libxml-tree.html#xmlSetTreeDoc">xmlSetTreeDoc</a><br /> -<a href="html/libxml-debugXML.html#xmlShellBase">xmlShellBase</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCat">xmlShellCat</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCmd">xmlShellCmd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDir">xmlShellDir</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -<a href="html/libxml-debugXML.html#xmlShellList">xmlShellList</a><br /> -<a href="html/libxml-debugXML.html#xmlShellLoad">xmlShellLoad</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintNode">xmlShellPrintNode</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellSave">xmlShellSave</a><br /> -<a href="html/libxml-debugXML.html#xmlShellValidate">xmlShellValidate</a><br /> -<a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> -<a href="html/libxml-tree.html#xmlTextConcat">xmlTextConcat</a><br /> -<a href="html/libxml-tree.html#xmlTextMerge">xmlTextMerge</a><br /> -<a href="html/libxml-tree.html#xmlUnlinkNode">xmlUnlinkNode</a><br /> -<a href="html/libxml-tree.html#xmlUnsetNsProp">xmlUnsetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlUnsetProp">xmlUnsetProp</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateElement">xmlValidateElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-valid.html#xmlValidatePopElement">xmlValidatePopElement</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushElement">xmlValidatePushElement</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTree">xmlXIncludeProcessTree</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTreeFlags">xmlXIncludeProcessTreeFlags</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeToNumber">xmlXPathCastNodeToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeToString">xmlXPathCastNodeToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCmpNodes">xmlXPathCmpNodes</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSet">xmlXPathNewNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewValueTree">xmlXPathNewValueTree</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAttribute">xmlXPathNextAttribute</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextChild">xmlXPathNextChild</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendant">xmlXPathNextDescendant</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextNamespace">xmlXPathNextNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextParent">xmlXPathNextParent</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextSelf">xmlXPathNextSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAdd">xmlXPathNodeSetAdd</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddNs">xmlXPathNodeSetAddNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetContains">xmlXPathNodeSetContains</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetCreate">xmlXPathNodeSetCreate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetDel">xmlXPathNodeSetDel</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewCollapsedRange">xmlXPtrNewCollapsedRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRange">xmlXPtrNewRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodeObject">xmlXPtrNewRangeNodeObject</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodePoint">xmlXPtrNewRangeNodePoint</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodes">xmlXPtrNewRangeNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePointNode">xmlXPtrNewRangePointNode</a><br /> -</p><h2>Type xmlNodePtr *:</h2><p><a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -</p><h2>Type xmlNodeSetPtr:</h2><p><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToBoolean">xmlXPathCastNodeSetToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToNumber">xmlXPathCastNodeSetToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToString">xmlXPathCastNodeSetToString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeNodeSet">xmlXPathFreeNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSetList">xmlXPathNewNodeSetList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAdd">xmlXPathNodeSetAdd</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddNs">xmlXPathNodeSetAddNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetContains">xmlXPathNodeSetContains</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetDel">xmlXPathNodeSetDel</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetRemove">xmlXPathNodeSetRemove</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetSort">xmlXPathNodeSetSort</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapNodeSet">xmlXPathWrapNodeSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodeSet">xmlXPtrNewLocationSetNodeSet</a><br /> -</p><h2>Type xmlNotationPtr:</h2><p><a href="html/libxml-valid.html#xmlDumpNotationDecl">xmlDumpNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -</p><h2>Type xmlNotationTablePtr:</h2><p><a href="html/libxml-valid.html#xmlCopyNotationTable">xmlCopyNotationTable</a><br /> -<a href="html/libxml-valid.html#xmlDumpNotationTable">xmlDumpNotationTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeNotationTable">xmlFreeNotationTable</a><br /> -</p><h2>Type xmlNsPtr:</h2><p><a href="html/libxml-tree.html#xmlCopyNamespace">xmlCopyNamespace</a><br /> -<a href="html/libxml-tree.html#xmlCopyNamespaceList">xmlCopyNamespaceList</a><br /> -<a href="html/libxml-tree.html#xmlFreeNs">xmlFreeNs</a><br /> -<a href="html/libxml-tree.html#xmlFreeNsList">xmlFreeNsList</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewDocRawNode">xmlNewDocRawNode</a><br /> -<a href="html/libxml-tree.html#xmlNewNode">xmlNewNode</a><br /> -<a href="html/libxml-tree.html#xmlNewNodeEatName">xmlNewNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewNsProp">xmlNewNsProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsPropEatName">xmlNewNsPropEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-tree.html#xmlSetNs">xmlSetNs</a><br /> -<a href="html/libxml-tree.html#xmlSetNsProp">xmlSetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlUnsetNsProp">xmlUnsetNsProp</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddNs">xmlXPathNodeSetAddNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a><br /> -</p><h2>Type xmlOutputBufferCreateFilenameFunc:</h2><p><a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameDefault">xmlOutputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefOutputBufferCreateFilenameDefault">xmlThrDefOutputBufferCreateFilenameDefault</a><br /> -</p><h2>Type xmlOutputBufferPtr:</h2><p><a href="html/libxml-HTMLtree.html#htmlDocContentDumpFormatOutput">htmlDocContentDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocContentDumpOutput">htmlDocContentDumpOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpOutput">htmlNodeDumpOutput</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferClose">xmlOutputBufferClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferFlush">xmlOutputBufferFlush</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWrite">xmlOutputBufferWrite</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -<a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -</p><h2>Type xmlOutputCloseCallback:</h2><p><a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -</p><h2>Type xmlOutputMatchCallback:</h2><p><a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -</p><h2>Type xmlOutputOpenCallback:</h2><p><a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -</p><h2>Type xmlOutputWriteCallback:</h2><p><a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -</p><h2>Type xmlParserCtxtPtr:</h2><p><a href="html/libxml-parserInternals.html#inputPop">inputPop</a><br /> -<a href="html/libxml-parserInternals.html#inputPush">inputPush</a><br /> -<a href="html/libxml-parserInternals.html#namePop">namePop</a><br /> -<a href="html/libxml-parserInternals.html#namePush">namePush</a><br /> -<a href="html/libxml-parserInternals.html#nodePop">nodePop</a><br /> -<a href="html/libxml-parserInternals.html#nodePush">nodePush</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> -<a href="html/libxml-parser.html#xmlClearParserCtxt">xmlClearParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadDoc">xmlCtxtReadDoc</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFd">xmlCtxtReadFd</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFile">xmlCtxtReadFile</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadIO">xmlCtxtReadIO</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadMemory">xmlCtxtReadMemory</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReset">xmlCtxtReset</a><br /> -<a href="html/libxml-parser.html#xmlCtxtResetPush">xmlCtxtResetPush</a><br /> -<a href="html/libxml-parser.html#xmlCtxtUseOptions">xmlCtxtUseOptions</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlErrMemory">xmlErrMemory</a><br /> -<a href="html/libxml-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlFreeParserCtxt">xmlFreeParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlGetFeature">xmlGetFeature</a><br /> -<a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -<a href="html/libxml-parser.html#xmlInitParserCtxt">xmlInitParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlLoadExternalEntity">xmlLoadExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewEntityInputStream">xmlNewEntityInputStream</a><br /> -<a href="html/libxml-parser.html#xmlNewIOInputStream">xmlNewIOInputStream</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewInputFromFile">xmlNewInputFromFile</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewInputStream">xmlNewInputStream</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewStringInputStream">xmlNewStringInputStream</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -<a href="html/libxml-parserInternals.html#xmlNextChar">xmlNextChar</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeListDecl">xmlParseAttributeListDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -<a href="html/libxml-parser.html#xmlParseChunk">xmlParseChunk</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseContent">xmlParseContent</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a><br /> -<a href="html/libxml-parser.html#xmlParseDocument">xmlParseDocument</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEncName">xmlParseEncName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEncodingDecl">xmlParseEncodingDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEndTag">xmlParseEndTag</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumerationType">xmlParseEnumerationType</a><br /> -<a href="html/libxml-parser.html#xmlParseExtParsedEnt">xmlParseExtParsedEnt</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMisc">xmlParseMisc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseName">xmlParseName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNmtoken">xmlParseNmtoken</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePI">xmlParsePI</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePITarget">xmlParsePITarget</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePubidLiteral">xmlParsePubidLiteral</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSystemLiteral">xmlParseSystemLiteral</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseTextDecl">xmlParseTextDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseVersionInfo">xmlParseVersionInfo</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseVersionNum">xmlParseVersionNum</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseXMLDecl">xmlParseXMLDecl</a><br /> -<a href="html/libxml-parser.html#xmlParserAddNodeInfo">xmlParserAddNodeInfo</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlPopInput">xmlPopInput</a><br /> -<a href="html/libxml-parserInternals.html#xmlPushInput">xmlPushInput</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-parser.html#xmlSetFeature">xmlSetFeature</a><br /> -<a href="html/libxml-parser.html#xmlSetupParserForBuffer">xmlSetupParserForBuffer</a><br /> -<a href="html/libxml-parserInternals.html#xmlSkipBlankChars">xmlSkipBlankChars</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-parser.html#xmlStopParser">xmlStopParser</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringCurrentChar">xmlStringCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchEncoding">xmlSwitchEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchInputEncoding">xmlSwitchInputEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchToEncoding">xmlSwitchToEncoding</a><br /> -</p><h2>Type xmlParserInputBufferCreateFilenameFunc:</h2><p><a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameDefault">xmlParserInputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefParserInputBufferCreateFilenameDefault">xmlThrDefParserInputBufferCreateFilenameDefault</a><br /> -</p><h2>Type xmlParserInputBufferPtr:</h2><p><a href="html/libxml-xmlIO.html#xmlFreeParserInputBuffer">xmlFreeParserInputBuffer</a><br /> -<a href="html/libxml-parser.html#xmlIOParseDTD">xmlIOParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlNewIOInputStream">xmlNewIOInputStream</a><br /> -<a href="html/libxml-xmlreader.html#xmlNewTextReader">xmlNewTextReader</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetup">xmlTextReaderSetup</a><br /> -</p><h2>Type xmlParserInputPtr:</h2><p><a href="html/libxml-parserInternals.html#inputPush">inputPush</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> -<a href="html/libxml-parserInternals.html#xmlFreeInputStream">xmlFreeInputStream</a><br /> -<a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -<a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserInputShrink">xmlParserInputShrink</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserPrintFileContext">xmlParserPrintFileContext</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserPrintFileInfo">xmlParserPrintFileInfo</a><br /> -<a href="html/libxml-parserInternals.html#xmlPushInput">xmlPushInput</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchInputEncoding">xmlSwitchInputEncoding</a><br /> -</p><h2>Type xmlParserNodeInfoSeqPtr:</h2><p><a href="html/libxml-parser.html#xmlClearNodeInfoSeq">xmlClearNodeInfoSeq</a><br /> -<a href="html/libxml-parser.html#xmlInitNodeInfoSeq">xmlInitNodeInfoSeq</a><br /> -</p><h2>Type xmlParserSeverities:</h2><p><a href="html/libxml-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a><br /> -</p><h2>Type xmlPatternPtr:</h2><p><a href="html/libxml-pattern.html#xmlFreePattern">xmlFreePattern</a><br /> -<a href="html/libxml-pattern.html#xmlFreePatternList">xmlFreePatternList</a><br /> -<a href="html/libxml-pattern.html#xmlPatternFromRoot">xmlPatternFromRoot</a><br /> -<a href="html/libxml-pattern.html#xmlPatternGetStreamCtxt">xmlPatternGetStreamCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMatch">xmlPatternMatch</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMaxDepth">xmlPatternMaxDepth</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMinDepth">xmlPatternMinDepth</a><br /> -<a href="html/libxml-pattern.html#xmlPatternStreamable">xmlPatternStreamable</a><br /> -</p><h2>Type xmlRMutexPtr:</h2><p><a href="html/libxml-threads.html#xmlFreeRMutex">xmlFreeRMutex</a><br /> -<a href="html/libxml-threads.html#xmlRMutexLock">xmlRMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlRMutexUnlock">xmlRMutexUnlock</a><br /> -</p><h2>Type xmlReallocFunc:</h2><p><a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -</p><h2>Type xmlReallocFunc *:</h2><p><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -</p><h2>Type xmlRefTablePtr:</h2><p><a href="html/libxml-valid.html#xmlFreeRefTable">xmlFreeRefTable</a><br /> -</p><h2>Type xmlRegExecCallbacks:</h2><p><a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -</p><h2>Type xmlRegExecCtxtPtr:</h2><p><a href="html/libxml-xmlregexp.html#xmlRegExecCallbacks">xmlRegExecCallbacks</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegFreeExecCtxt">xmlRegFreeExecCtxt</a><br /> -</p><h2>Type xmlRegexpPtr:</h2><p><a href="html/libxml-xmlregexp.html#xmlRegFreeRegexp">xmlRegFreeRegexp</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpExec">xmlRegexpExec</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpIsDeterminist">xmlRegexpIsDeterminist</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpPrint">xmlRegexpPrint</a><br /> -</p><h2>Type xmlRegisterNodeFunc:</h2><p><a href="html/libxml-globals.html#xmlRegisterNodeDefault">xmlRegisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefRegisterNodeDefault">xmlThrDefRegisterNodeDefault</a><br /> -</p><h2>Type xmlRelaxNGParserCtxtPtr:</h2><p><a href="html/libxml-relaxng.html#xmlRelaxNGFreeParserCtxt">xmlRelaxNGFreeParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParse">xmlRelaxNGParse</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserStructuredErrors">xmlRelaxNGSetParserStructuredErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a><br /> -</p><h2>Type xmlRelaxNGPtr:</h2><p><a href="html/libxml-relaxng.html#xmlRelaxNGDump">xmlRelaxNGDump</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGDumpTree">xmlRelaxNGDumpTree</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGFree">xmlRelaxNGFree</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewValidCtxt">xmlRelaxNGNewValidCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -</p><h2>Type xmlRelaxNGValidCtxtPtr:</h2><p><a href="html/libxml-relaxng.html#xmlRelaxNGFreeValidCtxt">xmlRelaxNGFreeValidCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidStructuredErrors">xmlRelaxNGSetValidStructuredErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateDoc">xmlRelaxNGValidateDoc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePopElement">xmlRelaxNGValidatePopElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushCData">xmlRelaxNGValidatePushCData</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a><br /> -</p><h2>Type xmlRelaxNGValidityErrorFunc:</h2><p><a href="html/libxml-relaxng.html#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a><br /> -</p><h2>Type xmlRelaxNGValidityErrorFunc *:</h2><p><a href="html/libxml-relaxng.html#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a><br /> -</p><h2>Type xmlRelaxNGValidityWarningFunc:</h2><p><a href="html/libxml-relaxng.html#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a><br /> -</p><h2>Type xmlRelaxNGValidityWarningFunc *:</h2><p><a href="html/libxml-relaxng.html#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a><br /> -</p><h2>Type xmlSAXHandler *:</h2><p><a href="html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDocbDefaultSAXHandler">xmlSAX2InitDocbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitHtmlDefaultSAXHandler">xmlSAX2InitHtmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAXVersion">xmlSAXVersion</a><br /> -</p><h2>Type xmlSAXHandlerPtr:</h2><p><a href="html/libxml-parser.html#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlIOParseDTD">xmlIOParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDTD">xmlSAXParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseFile">xmlSAXUserParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseMemory">xmlSAXUserParseMemory</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> -</p><h2>Type xmlSAXHandlerPtr *:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaSAXPlug">xmlSchemaSAXPlug</a><br /> -</p><h2>Type xmlSAXHandlerV1 *:</h2><p><a href="html/libxml-SAX.html#initdocbDefaultSAXHandler">initdocbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#inithtmlDefaultSAXHandler">inithtmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> -</p><h2>Type xmlSAXLocatorPtr:</h2><p><a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -</p><h2>Type xmlSaveCtxtPtr:</h2><p><a href="html/libxml-xmlsave.html#xmlSaveClose">xmlSaveClose</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveFlush">xmlSaveFlush</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetAttrEscape">xmlSaveSetAttrEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetEscape">xmlSaveSetEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -</p><h2>Type xmlSchemaFacetPtr:</h2><p><a href="html/libxml-xmlschemastypes.html#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeFacet">xmlSchemaFreeFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetFacetValueAsULong">xmlSchemaGetFacetValueAsULong</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -</p><h2>Type xmlSchemaParserCtxtPtr:</h2><p><a href="html/libxml-xmlschemastypes.html#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaFreeParserCtxt">xmlSchemaFreeParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaParse">xmlSchemaParse</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserStructuredErrors">xmlSchemaSetParserStructuredErrors</a><br /> -</p><h2>Type xmlSchemaPtr:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaDump">xmlSchemaDump</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaFree">xmlSchemaFree</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewValidCtxt">xmlSchemaNewValidCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -</p><h2>Type xmlSchemaSAXPlugPtr:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaSAXUnplug">xmlSchemaSAXUnplug</a><br /> -</p><h2>Type xmlSchemaTypePtr:</h2><p><a href="html/libxml-xmlschemastypes.html#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFreeType">xmlSchemaFreeType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaIsBuiltInTypeFacet">xmlSchemaIsBuiltInTypeFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> -</p><h2>Type xmlSchemaValPtr:</h2><p><a href="html/libxml-xmlschemastypes.html#xmlSchemaCompareValues">xmlSchemaCompareValues</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCompareValuesWhtsp">xmlSchemaCompareValuesWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCopyValue">xmlSchemaCopyValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeValue">xmlSchemaFreeValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetValType">xmlSchemaGetValType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueAppend">xmlSchemaValueAppend</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsBoolean">xmlSchemaValueGetAsBoolean</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsString">xmlSchemaValueGetAsString</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetNext">xmlSchemaValueGetNext</a><br /> -</p><h2>Type xmlSchemaValPtr *:</h2><p><a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> -</p><h2>Type xmlSchemaValType:</h2><p><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInType">xmlSchemaGetBuiltInType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -</p><h2>Type xmlSchemaValidCtxtPtr:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaFreeValidCtxt">xmlSchemaFreeValidCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaIsValid">xmlSchemaIsValid</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSAXPlug">xmlSchemaSAXPlug</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidOptions">xmlSchemaSetValidOptions</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidStructuredErrors">xmlSchemaSetValidStructuredErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxtGetOptions">xmlSchemaValidCtxtGetOptions</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateFile">xmlSchemaValidateFile</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -</p><h2>Type xmlSchemaValidityErrorFunc:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> -</p><h2>Type xmlSchemaValidityErrorFunc *:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a><br /> -</p><h2>Type xmlSchemaValidityWarningFunc:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> -</p><h2>Type xmlSchemaValidityWarningFunc *:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a><br /> -</p><h2>Type xmlSchemaWhitespaceValueType:</h2><p><a href="html/libxml-xmlschemastypes.html#xmlSchemaCompareValuesWhtsp">xmlSchemaCompareValuesWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -</p><h2>Type xmlSchemaWildcardPtr:</h2><p><a href="html/libxml-schemasInternals.html#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a><br /> -</p><h2>Type xmlSchematronParserCtxtPtr:</h2><p><a href="html/libxml-schematron.html#xmlSchematronFreeParserCtxt">xmlSchematronFreeParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronParse">xmlSchematronParse</a><br /> -</p><h2>Type xmlSchematronPtr:</h2><p><a href="html/libxml-schematron.html#xmlSchematronFree">xmlSchematronFree</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewValidCtxt">xmlSchematronNewValidCtxt</a><br /> -</p><h2>Type xmlSchematronValidCtxtPtr:</h2><p><a href="html/libxml-schematron.html#xmlSchematronFreeValidCtxt">xmlSchematronFreeValidCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidateDoc">xmlSchematronValidateDoc</a><br /> -</p><h2>Type xmlShellCtxtPtr:</h2><p><a href="html/libxml-debugXML.html#xmlShellBase">xmlShellBase</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCat">xmlShellCat</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCmd">xmlShellCmd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDir">xmlShellDir</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -<a href="html/libxml-debugXML.html#xmlShellList">xmlShellList</a><br /> -<a href="html/libxml-debugXML.html#xmlShellLoad">xmlShellLoad</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellSave">xmlShellSave</a><br /> -<a href="html/libxml-debugXML.html#xmlShellValidate">xmlShellValidate</a><br /> -<a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> -</p><h2>Type xmlShellReadlineFunc:</h2><p><a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -</p><h2>Type xmlStrdupFunc:</h2><p><a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -</p><h2>Type xmlStrdupFunc *:</h2><p><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -</p><h2>Type xmlStreamCtxtPtr:</h2><p><a href="html/libxml-pattern.html#xmlFreeStreamCtxt">xmlFreeStreamCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPop">xmlStreamPop</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -</p><h2>Type xmlStructuredErrorFunc:</h2><p><a href="html/libxml-relaxng.html#xmlRelaxNGSetParserStructuredErrors">xmlRelaxNGSetParserStructuredErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidStructuredErrors">xmlRelaxNGSetValidStructuredErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserStructuredErrors">xmlSchemaSetParserStructuredErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidStructuredErrors">xmlSchemaSetValidStructuredErrors</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a><br /> -<a href="html/libxml-globals.html#xmlThrDefSetStructuredErrorFunc">xmlThrDefSetStructuredErrorFunc</a><br /> -</p><h2>Type xmlTextReaderErrorFunc:</h2><p><a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> -</p><h2>Type xmlTextReaderErrorFunc *:</h2><p><a href="html/libxml-xmlreader.html#xmlTextReaderGetErrorHandler">xmlTextReaderGetErrorHandler</a><br /> -</p><h2>Type xmlTextReaderLocatorPtr:</h2><p><a href="html/libxml-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorBaseURI">xmlTextReaderLocatorBaseURI</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorLineNumber">xmlTextReaderLocatorLineNumber</a><br /> -</p><h2>Type xmlTextReaderPtr:</h2><p><a href="html/libxml-xmlreader.html#xmlFreeTextReader">xmlFreeTextReader</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewDoc">xmlReaderNewDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFile">xmlReaderNewFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewMemory">xmlReaderNewMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewWalker">xmlReaderNewWalker</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderAttributeCount">xmlTextReaderAttributeCount</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderBaseUri">xmlTextReaderBaseUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderClose">xmlTextReaderClose</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstBaseUri">xmlTextReaderConstBaseUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstEncoding">xmlTextReaderConstEncoding</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstLocalName">xmlTextReaderConstLocalName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstName">xmlTextReaderConstName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstNamespaceUri">xmlTextReaderConstNamespaceUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstPrefix">xmlTextReaderConstPrefix</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstValue">xmlTextReaderConstValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlLang">xmlTextReaderConstXmlLang</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlVersion">xmlTextReaderConstXmlVersion</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderDepth">xmlTextReaderDepth</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderExpand">xmlTextReaderExpand</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttribute">xmlTextReaderGetAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNo">xmlTextReaderGetAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNs">xmlTextReaderGetAttributeNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetErrorHandler">xmlTextReaderGetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserColumnNumber">xmlTextReaderGetParserColumnNumber</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserLineNumber">xmlTextReaderGetParserLineNumber</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserProp">xmlTextReaderGetParserProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderHasAttributes">xmlTextReaderHasAttributes</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderHasValue">xmlTextReaderHasValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsDefault">xmlTextReaderIsDefault</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsEmptyElement">xmlTextReaderIsEmptyElement</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsNamespaceDecl">xmlTextReaderIsNamespaceDecl</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsValid">xmlTextReaderIsValid</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocalName">xmlTextReaderLocalName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttribute">xmlTextReaderMoveToAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNo">xmlTextReaderMoveToAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNs">xmlTextReaderMoveToAttributeNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToElement">xmlTextReaderMoveToElement</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToFirstAttribute">xmlTextReaderMoveToFirstAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToNextAttribute">xmlTextReaderMoveToNextAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderName">xmlTextReaderName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNamespaceUri">xmlTextReaderNamespaceUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNext">xmlTextReaderNext</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPrefix">xmlTextReaderPrefix</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderQuoteChar">xmlTextReaderQuoteChar</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRead">xmlTextReaderRead</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadAttributeValue">xmlTextReaderReadAttributeValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadState">xmlTextReaderReadState</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadString">xmlTextReaderReadString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetup">xmlTextReaderSetup</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderStandalone">xmlTextReaderStandalone</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderValue">xmlTextReaderValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderXmlLang">xmlTextReaderXmlLang</a><br /> -</p><h2>Type xmlTextWriterPtr:</h2><p><a href="html/libxml-xmlwriter.html#xmlFreeTextWriter">xmlFreeTextWriter</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndAttribute">xmlTextWriterEndAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndCDATA">xmlTextWriterEndCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndComment">xmlTextWriterEndComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTD">xmlTextWriterEndDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTDAttlist">xmlTextWriterEndDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTDElement">xmlTextWriterEndDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTDEntity">xmlTextWriterEndDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDocument">xmlTextWriterEndDocument</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndElement">xmlTextWriterEndElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndPI">xmlTextWriterEndPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterFlush">xmlTextWriterFlush</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterFullEndElement">xmlTextWriterFullEndElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterSetIndent">xmlTextWriterSetIndent</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterSetIndentString">xmlTextWriterSetIndentString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartAttribute">xmlTextWriterStartAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartAttributeNS">xmlTextWriterStartAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartCDATA">xmlTextWriterStartCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartComment">xmlTextWriterStartComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTD">xmlTextWriterStartDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDAttlist">xmlTextWriterStartDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDElement">xmlTextWriterStartDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDEntity">xmlTextWriterStartDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDocument">xmlTextWriterStartDocument</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartElement">xmlTextWriterStartElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartElementNS">xmlTextWriterStartElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartPI">xmlTextWriterStartPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteAttribute">xmlTextWriterWriteAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteAttributeNS">xmlTextWriterWriteAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBase64">xmlTextWriterWriteBase64</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBinHex">xmlTextWriterWriteBinHex</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteCDATA">xmlTextWriterWriteCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteComment">xmlTextWriterWriteComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTD">xmlTextWriterWriteDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDAttlist">xmlTextWriterWriteDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDElement">xmlTextWriterWriteDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDEntity">xmlTextWriterWriteDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntity">xmlTextWriterWriteDTDExternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntityContents">xmlTextWriterWriteDTDExternalEntityContents</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDInternalEntity">xmlTextWriterWriteDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDNotation">xmlTextWriterWriteDTDNotation</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteElement">xmlTextWriterWriteElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteElementNS">xmlTextWriterWriteElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttribute">xmlTextWriterWriteFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttributeNS">xmlTextWriterWriteFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatCDATA">xmlTextWriterWriteFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatComment">xmlTextWriterWriteFormatComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTD">xmlTextWriterWriteFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDAttlist">xmlTextWriterWriteFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDElement">xmlTextWriterWriteFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDInternalEntity">xmlTextWriterWriteFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElement">xmlTextWriterWriteFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElementNS">xmlTextWriterWriteFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatPI">xmlTextWriterWriteFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatRaw">xmlTextWriterWriteFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatString">xmlTextWriterWriteFormatString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWritePI">xmlTextWriterWritePI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRaw">xmlTextWriterWriteRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRawLen">xmlTextWriterWriteRawLen</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteString">xmlTextWriterWriteString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttribute">xmlTextWriterWriteVFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttributeNS">xmlTextWriterWriteVFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatCDATA">xmlTextWriterWriteVFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatComment">xmlTextWriterWriteVFormatComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTD">xmlTextWriterWriteVFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDAttlist">xmlTextWriterWriteVFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDElement">xmlTextWriterWriteVFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDInternalEntity">xmlTextWriterWriteVFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElement">xmlTextWriterWriteVFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElementNS">xmlTextWriterWriteVFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatPI">xmlTextWriterWriteVFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatRaw">xmlTextWriterWriteVFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatString">xmlTextWriterWriteVFormatString</a><br /> -</p><h2>Type xmlURIPtr:</h2><p><a href="html/libxml-uri.html#xmlFreeURI">xmlFreeURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> -<a href="html/libxml-uri.html#xmlPrintURI">xmlPrintURI</a><br /> -<a href="html/libxml-uri.html#xmlSaveUri">xmlSaveUri</a><br /> -</p><h2>Type xmlValidCtxtPtr:</h2><p><a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlAddElementDecl">xmlAddElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlAddID">xmlAddID</a><br /> -<a href="html/libxml-valid.html#xmlAddNotationDecl">xmlAddNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> -<a href="html/libxml-valid.html#xmlFreeValidCtxt">xmlFreeValidCtxt</a><br /> -<a href="html/libxml-valid.html#xmlValidBuildContentModel">xmlValidBuildContentModel</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocument">xmlValidateDocument</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateElement">xmlValidateElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationUse">xmlValidateNotationUse</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-valid.html#xmlValidatePopElement">xmlValidatePopElement</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushCData">xmlValidatePushCData</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushElement">xmlValidatePushElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -</p><h2>Type xmlXIncludeCtxtPtr:</h2><p><a href="html/libxml-xinclude.html#xmlXIncludeFreeContext">xmlXIncludeFreeContext</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeSetFlags">xmlXIncludeSetFlags</a><br /> -</p><h2>Type xmlXPathCompExprPtr:</h2><p><a href="html/libxml-xpath.html#xmlXPathCompiledEval">xmlXPathCompiledEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompiledEvalToBoolean">xmlXPathCompiledEvalToBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpCompExpr">xmlXPathDebugDumpCompExpr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeCompExpr">xmlXPathFreeCompExpr</a><br /> -</p><h2>Type xmlXPathContextPtr:</h2><p><a href="html/libxml-xpath.html#xmlXPathCompiledEval">xmlXPathCompiledEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompiledEvalToBoolean">xmlXPathCompiledEvalToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCtxtCompile">xmlXPathCtxtCompile</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEval">xmlXPathEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalExpression">xmlXPathEvalExpression</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeContext">xmlXPathFreeContext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookup">xmlXPathFunctionLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookupNS">xmlXPathFunctionLookupNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewParserContext">xmlXPathNewParserContext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNsLookup">xmlXPathNsLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterAllFunctions">xmlXPathRegisterAllFunctions</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFunc">xmlXPathRegisterFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncLookup">xmlXPathRegisterFuncLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncNS">xmlXPathRegisterFuncNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterNs">xmlXPathRegisterNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariable">xmlXPathRegisterVariable</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableLookup">xmlXPathRegisterVariableLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableNS">xmlXPathRegisterVariableNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredFuncsCleanup">xmlXPathRegisteredFuncsCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredNsCleanup">xmlXPathRegisteredNsCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredVariablesCleanup">xmlXPathRegisteredVariablesCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookup">xmlXPathVariableLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookupNS">xmlXPathVariableLookupNS</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEval">xmlXPtrEval</a><br /> -</p><h2>Type xmlXPathFuncLookupFunc:</h2><p><a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncLookup">xmlXPathRegisterFuncLookup</a><br /> -</p><h2>Type xmlXPathFunction:</h2><p><a href="html/libxml-xpathInternals.html#xmlXPathRegisterFunc">xmlXPathRegisterFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncNS">xmlXPathRegisterFuncNS</a><br /> -</p><h2>Type xmlXPathObjectPtr:</h2><p><a href="html/libxml-xpathInternals.html#valuePush">valuePush</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathResult">xmlShellPrintXPathResult</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToBoolean">xmlXPathCastToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToNumber">xmlXPathCastToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToString">xmlXPathCastToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertBoolean">xmlXPathConvertBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertFunc">xmlXPathConvertFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertNumber">xmlXPathConvertNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertString">xmlXPathConvertString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpObject">xmlXPathDebugDumpObject</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeNodeSetList">xmlXPathFreeNodeSetList</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeObject">xmlXPathFreeObject</a><br /> -<a href="html/libxml-xpath.html#xmlXPathObjectCopy">xmlXPathObjectCopy</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariable">xmlXPathRegisterVariable</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableNS">xmlXPathRegisterVariableNS</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetCreate">xmlXPtrLocationSetCreate</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetDel">xmlXPtrLocationSetDel</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodeObject">xmlXPtrNewRangeNodeObject</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodePoint">xmlXPtrNewRangeNodePoint</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePointNode">xmlXPtrNewRangePointNode</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePoints">xmlXPtrNewRangePoints</a><br /> -</p><h2>Type xmlXPathParserContextPtr:</h2><p><a href="html/libxml-xpathInternals.html#valuePop">valuePop</a><br /> -<a href="html/libxml-xpathInternals.html#valuePush">valuePush</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathConcatFunction">xmlXPathConcatFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathContainsFunction">xmlXPathContainsFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCountFunction">xmlXPathCountFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEqualValues">xmlXPathEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathErr">xmlXPathErr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvalExpr">xmlXPathEvalExpr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalFunc">xmlXPathEvalFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFalseFunction">xmlXPathFalseFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFloorFunction">xmlXPathFloorFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFreeParserContext">xmlXPathFreeParserContext</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFunction">xmlXPathFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLastFunction">xmlXPathLastFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLocalNameFunction">xmlXPathLocalNameFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNamespaceURIFunction">xmlXPathNamespaceURIFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAttribute">xmlXPathNextAttribute</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextChild">xmlXPathNextChild</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendant">xmlXPathNextDescendant</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextNamespace">xmlXPathNextNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextParent">xmlXPathNextParent</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextSelf">xmlXPathNextSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotEqualValues">xmlXPathNotEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotFunction">xmlXPathNotFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNumberFunction">xmlXPathNumberFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseNCName">xmlXPathParseNCName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseName">xmlXPathParseName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopBoolean">xmlXPathPopBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopExternal">xmlXPathPopExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNodeSet">xmlXPathPopNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNumber">xmlXPathPopNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopString">xmlXPathPopString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPositionFunction">xmlXPathPositionFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoot">xmlXPathRoot</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoundFunction">xmlXPathRoundFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStartsWithFunction">xmlXPathStartsWithFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSumFunction">xmlXPathSumFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrueFunction">xmlXPathTrueFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPatherror">xmlXPatherror</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrRangeToFunction">xmlXPtrRangeToFunction</a><br /> -</p><h2>Type xmlXPathVariableLookupFunc:</h2><p><a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableLookup">xmlXPathRegisterVariableLookup</a><br /> -</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIsymbols.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIsymbols.html deleted file mode 100644 index 12a0b5dc..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/APIsymbols.html +++ /dev/null @@ -1,3496 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Alphabetic List of Symbols in libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Alphabetic List of Symbols in libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2>Letter A:</h2><p><a href="html/libxml-xmlversion.html#ATTRIBUTE_UNUSED">ATTRIBUTE_UNUSED</a><br /> -</p><h2>Letter B:</h2><p><a href="html/libxml-xmlstring.html#BAD_CAST">BAD_CAST</a><br /> -<a href="html/libxml-tree.html#BASE_BUFFER_SIZE">BASE_BUFFER_SIZE</a><br /> -</p><h2>Letter C:</h2><p><a href="html/libxml-xpathInternals.html#CAST_TO_BOOLEAN">CAST_TO_BOOLEAN</a><br /> -<a href="html/libxml-xpathInternals.html#CAST_TO_NUMBER">CAST_TO_NUMBER</a><br /> -<a href="html/libxml-xpathInternals.html#CAST_TO_STRING">CAST_TO_STRING</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_ARITY">CHECK_ARITY</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_ERROR">CHECK_ERROR</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_ERROR0">CHECK_ERROR0</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_TYPE">CHECK_TYPE</a><br /> -<a href="html/libxml-xpathInternals.html#CHECK_TYPE0">CHECK_TYPE0</a><br /> -</p><h2>Letter D:</h2><p><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> -<a href="html/libxml-xmlversion.html#DEBUG_MEMORY_LOCATION">DEBUG_MEMORY_LOCATION</a><br /> -</p><h2>Letter H:</h2><p><a href="html/libxml-HTMLtree.html#HTML_COMMENT_NODE">HTML_COMMENT_NODE</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_DEPRECATED">HTML_DEPRECATED</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_ENTITY_REF_NODE">HTML_ENTITY_REF_NODE</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_INVALID">HTML_INVALID</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_NA">HTML_NA</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_COMPACT">HTML_PARSE_COMPACT</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_NOBLANKS">HTML_PARSE_NOBLANKS</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_NOERROR">HTML_PARSE_NOERROR</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_NONET">HTML_PARSE_NONET</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_NOWARNING">HTML_PARSE_NOWARNING</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_PEDANTIC">HTML_PARSE_PEDANTIC</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_PARSE_RECOVER">HTML_PARSE_RECOVER</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_PI_NODE">HTML_PI_NODE</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_PRESERVE_NODE">HTML_PRESERVE_NODE</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_REQUIRED">HTML_REQUIRED</a><br /> -<a href="html/libxml-HTMLtree.html#HTML_TEXT_NODE">HTML_TEXT_NODE</a><br /> -<a href="html/libxml-HTMLparser.html#HTML_VALID">HTML_VALID</a><br /> -</p><h2>Letter I:</h2><p><a href="html/libxml-parserInternals.html#INPUT_CHUNK">INPUT_CHUNK</a><br /> -<a href="html/libxml-parserInternals.html#IS_ASCII_DIGIT">IS_ASCII_DIGIT</a><br /> -<a href="html/libxml-parserInternals.html#IS_ASCII_LETTER">IS_ASCII_LETTER</a><br /> -<a href="html/libxml-parserInternals.html#IS_BASECHAR">IS_BASECHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_BLANK">IS_BLANK</a><br /> -<a href="html/libxml-parserInternals.html#IS_BLANK_CH">IS_BLANK_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_BYTE_CHAR">IS_BYTE_CHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_CHAR_CH">IS_CHAR_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_COMBINING">IS_COMBINING</a><br /> -<a href="html/libxml-parserInternals.html#IS_COMBINING_CH">IS_COMBINING_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_DIGIT">IS_DIGIT</a><br /> -<a href="html/libxml-parserInternals.html#IS_DIGIT_CH">IS_DIGIT_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_EXTENDER">IS_EXTENDER</a><br /> -<a href="html/libxml-parserInternals.html#IS_EXTENDER_CH">IS_EXTENDER_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_IDEOGRAPHIC">IS_IDEOGRAPHIC</a><br /> -<a href="html/libxml-parserInternals.html#IS_LETTER">IS_LETTER</a><br /> -<a href="html/libxml-parserInternals.html#IS_LETTER_CH">IS_LETTER_CH</a><br /> -<a href="html/libxml-parserInternals.html#IS_PUBIDCHAR">IS_PUBIDCHAR</a><br /> -<a href="html/libxml-parserInternals.html#IS_PUBIDCHAR_CH">IS_PUBIDCHAR_CH</a><br /> -</p><h2>Letter L:</h2><p><a href="html/libxml-xmlversion.html#LIBXML_AUTOMATA_ENABLED">LIBXML_AUTOMATA_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_C14N_ENABLED">LIBXML_C14N_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_CATALOG_ENABLED">LIBXML_CATALOG_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DEBUG_ENABLED">LIBXML_DEBUG_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DEBUG_RUNTIME">LIBXML_DEBUG_RUNTIME</a><br /> -<a href="html/libxml-xmlexports.html#LIBXML_DLL_IMPORT">LIBXML_DLL_IMPORT</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DOCB_ENABLED">LIBXML_DOCB_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_DOTTED_VERSION">LIBXML_DOTTED_VERSION</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_EXPR_ENABLED">LIBXML_EXPR_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_FTP_ENABLED">LIBXML_FTP_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_HTML_ENABLED">LIBXML_HTML_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_HTTP_ENABLED">LIBXML_HTTP_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_ICONV_ENABLED">LIBXML_ICONV_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_ISO8859X_ENABLED">LIBXML_ISO8859X_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_LEGACY_ENABLED">LIBXML_LEGACY_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_MODULES_ENABLED">LIBXML_MODULES_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_MODULE_EXTENSION">LIBXML_MODULE_EXTENSION</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_OUTPUT_ENABLED">LIBXML_OUTPUT_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_PATTERN_ENABLED">LIBXML_PATTERN_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_PUSH_ENABLED">LIBXML_PUSH_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_READER_ENABLED">LIBXML_READER_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_REGEXP_ENABLED">LIBXML_REGEXP_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_SAX1_ENABLED">LIBXML_SAX1_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_SCHEMAS_ENABLED">LIBXML_SCHEMAS_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_SCHEMATRON_ENABLED">LIBXML_SCHEMATRON_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_TEST_VERSION">LIBXML_TEST_VERSION</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_THREAD_ENABLED">LIBXML_THREAD_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_TREE_ENABLED">LIBXML_TREE_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_UNICODE_ENABLED">LIBXML_UNICODE_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_VALID_ENABLED">LIBXML_VALID_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_VERSION">LIBXML_VERSION</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_VERSION_EXTRA">LIBXML_VERSION_EXTRA</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_VERSION_STRING">LIBXML_VERSION_STRING</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_WRITER_ENABLED">LIBXML_WRITER_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_XINCLUDE_ENABLED">LIBXML_XINCLUDE_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_XPATH_ENABLED">LIBXML_XPATH_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_XPTR_ENABLED">LIBXML_XPTR_ENABLED</a><br /> -<a href="html/libxml-xmlversion.html#LIBXML_ZLIB_ENABLED">LIBXML_ZLIB_ENABLED</a><br /> -</p><h2>Letter M:</h2><p><a href="html/libxml-parserInternals.html#MOVETO_ENDTAG">MOVETO_ENDTAG</a><br /> -<a href="html/libxml-parserInternals.html#MOVETO_STARTTAG">MOVETO_STARTTAG</a><br /> -</p><h2>Letter S:</h2><p><a href="html/libxml-parserInternals.html#SKIP_EOL">SKIP_EOL</a><br /> -</p><h2>Letter U:</h2><p><a href="html/libxml-HTMLparser.html#UTF8ToHtml">UTF8ToHtml</a><br /> -<a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a><br /> -</p><h2>Letter W:</h2><p><a href="html/libxml-xmlversion.html#WITHOUT_TRIO">WITHOUT_TRIO</a><br /> -<a href="html/libxml-xmlversion.html#WITH_TRIO">WITH_TRIO</a><br /> -</p><h2>Letter X:</h2><p><a href="html/libxml-xinclude.html#XINCLUDE_FALLBACK">XINCLUDE_FALLBACK</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_HREF">XINCLUDE_HREF</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_NODE">XINCLUDE_NODE</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_NS">XINCLUDE_NS</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_OLD_NS">XINCLUDE_OLD_NS</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE">XINCLUDE_PARSE</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE_ENCODING">XINCLUDE_PARSE_ENCODING</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE_TEXT">XINCLUDE_PARSE_TEXT</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE_XML">XINCLUDE_PARSE_XML</a><br /> -<a href="html/libxml-xinclude.html#XINCLUDE_PARSE_XPOINTER">XINCLUDE_PARSE_XPOINTER</a><br /> -<a href="html/libxml-xlink.html#XLINK_ACTUATE_AUTO">XLINK_ACTUATE_AUTO</a><br /> -<a href="html/libxml-xlink.html#XLINK_ACTUATE_NONE">XLINK_ACTUATE_NONE</a><br /> -<a href="html/libxml-xlink.html#XLINK_ACTUATE_ONREQUEST">XLINK_ACTUATE_ONREQUEST</a><br /> -<a href="html/libxml-xlink.html#XLINK_SHOW_EMBED">XLINK_SHOW_EMBED</a><br /> -<a href="html/libxml-xlink.html#XLINK_SHOW_NEW">XLINK_SHOW_NEW</a><br /> -<a href="html/libxml-xlink.html#XLINK_SHOW_NONE">XLINK_SHOW_NONE</a><br /> -<a href="html/libxml-xlink.html#XLINK_SHOW_REPLACE">XLINK_SHOW_REPLACE</a><br /> -<a href="html/libxml-xlink.html#XLINK_TYPE_EXTENDED">XLINK_TYPE_EXTENDED</a><br /> -<a href="html/libxml-xlink.html#XLINK_TYPE_EXTENDED_SET">XLINK_TYPE_EXTENDED_SET</a><br /> -<a href="html/libxml-xlink.html#XLINK_TYPE_NONE">XLINK_TYPE_NONE</a><br /> -<a href="html/libxml-xlink.html#XLINK_TYPE_SIMPLE">XLINK_TYPE_SIMPLE</a><br /> -<a href="html/libxml-xmlexports.html#XMLCALL">XMLCALL</a><br /> -<a href="html/libxml-xmlexports.html#XMLCDECL">XMLCDECL</a><br /> -<a href="html/libxml-xmlexports.html#XMLPUBFUN">XMLPUBFUN</a><br /> -<a href="html/libxml-xmlexports.html#XMLPUBVAR">XMLPUBVAR</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_CDATA">XML_ATTRIBUTE_CDATA</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_DECL">XML_ATTRIBUTE_DECL</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_ENTITIES">XML_ATTRIBUTE_ENTITIES</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_ENTITY">XML_ATTRIBUTE_ENTITY</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_ENUMERATION">XML_ATTRIBUTE_ENUMERATION</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_FIXED">XML_ATTRIBUTE_FIXED</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_ID">XML_ATTRIBUTE_ID</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_IDREF">XML_ATTRIBUTE_IDREF</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_IDREFS">XML_ATTRIBUTE_IDREFS</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_IMPLIED">XML_ATTRIBUTE_IMPLIED</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_NMTOKEN">XML_ATTRIBUTE_NMTOKEN</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_NMTOKENS">XML_ATTRIBUTE_NMTOKENS</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_NODE">XML_ATTRIBUTE_NODE</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_NONE">XML_ATTRIBUTE_NONE</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_NOTATION">XML_ATTRIBUTE_NOTATION</a><br /> -<a href="html/libxml-tree.html#XML_ATTRIBUTE_REQUIRED">XML_ATTRIBUTE_REQUIRED</a><br /> -<a href="html/libxml-tree.html#XML_BUFFER_ALLOC_DOUBLEIT">XML_BUFFER_ALLOC_DOUBLEIT</a><br /> -<a href="html/libxml-tree.html#XML_BUFFER_ALLOC_EXACT">XML_BUFFER_ALLOC_EXACT</a><br /> -<a href="html/libxml-tree.html#XML_BUFFER_ALLOC_IMMUTABLE">XML_BUFFER_ALLOC_IMMUTABLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_C14N_CREATE_CTXT">XML_C14N_CREATE_CTXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_C14N_CREATE_STACK">XML_C14N_CREATE_STACK</a><br /> -<a href="html/libxml-xmlerror.html#XML_C14N_INVALID_NODE">XML_C14N_INVALID_NODE</a><br /> -<a href="html/libxml-xmlerror.html#XML_C14N_RELATIVE_NAMESPACE">XML_C14N_RELATIVE_NAMESPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_C14N_REQUIRES_UTF8">XML_C14N_REQUIRES_UTF8</a><br /> -<a href="html/libxml-xmlerror.html#XML_C14N_UNKNOW_NODE">XML_C14N_UNKNOW_NODE</a><br /> -<a href="html/libxml-hash.html#XML_CAST_FPTR">XML_CAST_FPTR</a><br /> -<a href="html/libxml-catalog.html#XML_CATALOGS_NAMESPACE">XML_CATALOGS_NAMESPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CATALOG_ENTRY_BROKEN">XML_CATALOG_ENTRY_BROKEN</a><br /> -<a href="html/libxml-xmlerror.html#XML_CATALOG_MISSING_ATTR">XML_CATALOG_MISSING_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_CATALOG_NOT_CATALOG">XML_CATALOG_NOT_CATALOG</a><br /> -<a href="html/libxml-catalog.html#XML_CATALOG_PI">XML_CATALOG_PI</a><br /> -<a href="html/libxml-xmlerror.html#XML_CATALOG_PREFER_VALUE">XML_CATALOG_PREFER_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CATALOG_RECURSION">XML_CATALOG_RECURSION</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_ALLOW_ALL">XML_CATA_ALLOW_ALL</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_ALLOW_DOCUMENT">XML_CATA_ALLOW_DOCUMENT</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_ALLOW_GLOBAL">XML_CATA_ALLOW_GLOBAL</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_ALLOW_NONE">XML_CATA_ALLOW_NONE</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_PREFER_NONE">XML_CATA_PREFER_NONE</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_PREFER_PUBLIC">XML_CATA_PREFER_PUBLIC</a><br /> -<a href="html/libxml-catalog.html#XML_CATA_PREFER_SYSTEM">XML_CATA_PREFER_SYSTEM</a><br /> -<a href="html/libxml-tree.html#XML_CDATA_SECTION_NODE">XML_CDATA_SECTION_NODE</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_2022_JP">XML_CHAR_ENCODING_2022_JP</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_1">XML_CHAR_ENCODING_8859_1</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_2">XML_CHAR_ENCODING_8859_2</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_3">XML_CHAR_ENCODING_8859_3</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_4">XML_CHAR_ENCODING_8859_4</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_5">XML_CHAR_ENCODING_8859_5</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_6">XML_CHAR_ENCODING_8859_6</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_7">XML_CHAR_ENCODING_8859_7</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_8">XML_CHAR_ENCODING_8859_8</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_8859_9">XML_CHAR_ENCODING_8859_9</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_ASCII">XML_CHAR_ENCODING_ASCII</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_EBCDIC">XML_CHAR_ENCODING_EBCDIC</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_ERROR">XML_CHAR_ENCODING_ERROR</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_EUC_JP">XML_CHAR_ENCODING_EUC_JP</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_NONE">XML_CHAR_ENCODING_NONE</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_SHIFT_JIS">XML_CHAR_ENCODING_SHIFT_JIS</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UCS2">XML_CHAR_ENCODING_UCS2</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UCS4BE">XML_CHAR_ENCODING_UCS4BE</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UCS4LE">XML_CHAR_ENCODING_UCS4LE</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UCS4_2143">XML_CHAR_ENCODING_UCS4_2143</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UCS4_3412">XML_CHAR_ENCODING_UCS4_3412</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UTF16BE">XML_CHAR_ENCODING_UTF16BE</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UTF16LE">XML_CHAR_ENCODING_UTF16LE</a><br /> -<a href="html/libxml-encoding.html#XML_CHAR_ENCODING_UTF8">XML_CHAR_ENCODING_UTF8</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_">XML_CHECK_</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_ENTITY_TYPE">XML_CHECK_ENTITY_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_ATTRIBUTE">XML_CHECK_FOUND_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_CDATA">XML_CHECK_FOUND_CDATA</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_COMMENT">XML_CHECK_FOUND_COMMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_DOCTYPE">XML_CHECK_FOUND_DOCTYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_ELEMENT">XML_CHECK_FOUND_ELEMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_ENTITY">XML_CHECK_FOUND_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_ENTITYREF">XML_CHECK_FOUND_ENTITYREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_FRAGMENT">XML_CHECK_FOUND_FRAGMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_NOTATION">XML_CHECK_FOUND_NOTATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_PI">XML_CHECK_FOUND_PI</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_FOUND_TEXT">XML_CHECK_FOUND_TEXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NAME_NOT_NULL">XML_CHECK_NAME_NOT_NULL</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_ATTR">XML_CHECK_NOT_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_ATTR_DECL">XML_CHECK_NOT_ATTR_DECL</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_DTD">XML_CHECK_NOT_DTD</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_ELEM_DECL">XML_CHECK_NOT_ELEM_DECL</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_ENTITY_DECL">XML_CHECK_NOT_ENTITY_DECL</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_NCNAME">XML_CHECK_NOT_NCNAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_NS_DECL">XML_CHECK_NOT_NS_DECL</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NOT_UTF8">XML_CHECK_NOT_UTF8</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_DICT">XML_CHECK_NO_DICT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_DOC">XML_CHECK_NO_DOC</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_ELEM">XML_CHECK_NO_ELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_HREF">XML_CHECK_NO_HREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_NAME">XML_CHECK_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_NEXT">XML_CHECK_NO_NEXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_PARENT">XML_CHECK_NO_PARENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NO_PREV">XML_CHECK_NO_PREV</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NS_ANCESTOR">XML_CHECK_NS_ANCESTOR</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_NS_SCOPE">XML_CHECK_NS_SCOPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_OUTSIDE_DICT">XML_CHECK_OUTSIDE_DICT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_UNKNOWN_NODE">XML_CHECK_UNKNOWN_NODE</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_WRONG_DOC">XML_CHECK_WRONG_DOC</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_WRONG_NAME">XML_CHECK_WRONG_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_WRONG_NEXT">XML_CHECK_WRONG_NEXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_WRONG_PARENT">XML_CHECK_WRONG_PARENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_WRONG_PREV">XML_CHECK_WRONG_PREV</a><br /> -<a href="html/libxml-xmlerror.html#XML_CHECK_X">XML_CHECK_X</a><br /> -<a href="html/libxml-tree.html#XML_COMMENT_NODE">XML_COMMENT_NODE</a><br /> -<a href="html/libxml-parser.html#XML_COMPLETE_ATTRS">XML_COMPLETE_ATTRS</a><br /> -<a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_0">XML_CTXT_FINISH_DTD_0</a><br /> -<a href="html/libxml-valid.html#XML_CTXT_FINISH_DTD_1">XML_CTXT_FINISH_DTD_1</a><br /> -<a href="html/libxml-parser.html#XML_DEFAULT_VERSION">XML_DEFAULT_VERSION</a><br /> -<a href="html/libxml-parser.html#XML_DETECT_IDS">XML_DETECT_IDS</a><br /> -<a href="html/libxml-tree.html#XML_DOCB_DOCUMENT_NODE">XML_DOCB_DOCUMENT_NODE</a><br /> -<a href="html/libxml-tree.html#XML_DOCUMENT_FRAG_NODE">XML_DOCUMENT_FRAG_NODE</a><br /> -<a href="html/libxml-tree.html#XML_DOCUMENT_NODE">XML_DOCUMENT_NODE</a><br /> -<a href="html/libxml-tree.html#XML_DOCUMENT_TYPE_NODE">XML_DOCUMENT_TYPE_NODE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ATTRIBUTE_DEFAULT">XML_DTD_ATTRIBUTE_DEFAULT</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ATTRIBUTE_REDEFINED">XML_DTD_ATTRIBUTE_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ATTRIBUTE_VALUE">XML_DTD_ATTRIBUTE_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_CONTENT_ERROR">XML_DTD_CONTENT_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_CONTENT_MODEL">XML_DTD_CONTENT_MODEL</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_CONTENT_NOT_DETERMINIST">XML_DTD_CONTENT_NOT_DETERMINIST</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_DIFFERENT_PREFIX">XML_DTD_DIFFERENT_PREFIX</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ELEM_DEFAULT_NAMESPACE">XML_DTD_ELEM_DEFAULT_NAMESPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ELEM_NAMESPACE">XML_DTD_ELEM_NAMESPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ELEM_REDEFINED">XML_DTD_ELEM_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_EMPTY_NOTATION">XML_DTD_EMPTY_NOTATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ENTITY_TYPE">XML_DTD_ENTITY_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ID_FIXED">XML_DTD_ID_FIXED</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ID_REDEFINED">XML_DTD_ID_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ID_SUBSET">XML_DTD_ID_SUBSET</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_INVALID_CHILD">XML_DTD_INVALID_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_INVALID_DEFAULT">XML_DTD_INVALID_DEFAULT</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_LOAD_ERROR">XML_DTD_LOAD_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_MISSING_ATTRIBUTE">XML_DTD_MISSING_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_MIXED_CORRUPT">XML_DTD_MIXED_CORRUPT</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_MULTIPLE_ID">XML_DTD_MULTIPLE_ID</a><br /> -<a href="html/libxml-tree.html#XML_DTD_NODE">XML_DTD_NODE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NOTATION_REDEFINED">XML_DTD_NOTATION_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NOTATION_VALUE">XML_DTD_NOTATION_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NOT_EMPTY">XML_DTD_NOT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NOT_PCDATA">XML_DTD_NOT_PCDATA</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NOT_STANDALONE">XML_DTD_NOT_STANDALONE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NO_DOC">XML_DTD_NO_DOC</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NO_DTD">XML_DTD_NO_DTD</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NO_ELEM_NAME">XML_DTD_NO_ELEM_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NO_PREFIX">XML_DTD_NO_PREFIX</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_NO_ROOT">XML_DTD_NO_ROOT</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_ROOT_NAME">XML_DTD_ROOT_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_STANDALONE_DEFAULTED">XML_DTD_STANDALONE_DEFAULTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_STANDALONE_WHITE_SPACE">XML_DTD_STANDALONE_WHITE_SPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_UNKNOWN_ATTRIBUTE">XML_DTD_UNKNOWN_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_UNKNOWN_ELEM">XML_DTD_UNKNOWN_ELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_UNKNOWN_ENTITY">XML_DTD_UNKNOWN_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_UNKNOWN_ID">XML_DTD_UNKNOWN_ID</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_UNKNOWN_NOTATION">XML_DTD_UNKNOWN_NOTATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_XMLID_TYPE">XML_DTD_XMLID_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_DTD_XMLID_VALUE">XML_DTD_XMLID_VALUE</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_ELEMENT">XML_ELEMENT_CONTENT_ELEMENT</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_MULT">XML_ELEMENT_CONTENT_MULT</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_ONCE">XML_ELEMENT_CONTENT_ONCE</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_OPT">XML_ELEMENT_CONTENT_OPT</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_OR">XML_ELEMENT_CONTENT_OR</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_PCDATA">XML_ELEMENT_CONTENT_PCDATA</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_PLUS">XML_ELEMENT_CONTENT_PLUS</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_CONTENT_SEQ">XML_ELEMENT_CONTENT_SEQ</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_DECL">XML_ELEMENT_DECL</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_NODE">XML_ELEMENT_NODE</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_TYPE_ANY">XML_ELEMENT_TYPE_ANY</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_TYPE_ELEMENT">XML_ELEMENT_TYPE_ELEMENT</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_TYPE_EMPTY">XML_ELEMENT_TYPE_EMPTY</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_TYPE_MIXED">XML_ELEMENT_TYPE_MIXED</a><br /> -<a href="html/libxml-tree.html#XML_ELEMENT_TYPE_UNDEFINED">XML_ELEMENT_TYPE_UNDEFINED</a><br /> -<a href="html/libxml-tree.html#XML_ENTITY_DECL">XML_ENTITY_DECL</a><br /> -<a href="html/libxml-tree.html#XML_ENTITY_NODE">XML_ENTITY_NODE</a><br /> -<a href="html/libxml-tree.html#XML_ENTITY_REF_NODE">XML_ENTITY_REF_NODE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ATTLIST_NOT_FINISHED">XML_ERR_ATTLIST_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ATTLIST_NOT_STARTED">XML_ERR_ATTLIST_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ATTRIBUTE_NOT_FINISHED">XML_ERR_ATTRIBUTE_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ATTRIBUTE_NOT_STARTED">XML_ERR_ATTRIBUTE_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ATTRIBUTE_REDEFINED">XML_ERR_ATTRIBUTE_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ATTRIBUTE_WITHOUT_VALUE">XML_ERR_ATTRIBUTE_WITHOUT_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CDATA_NOT_FINISHED">XML_ERR_CDATA_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CHARREF_AT_EOF">XML_ERR_CHARREF_AT_EOF</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CHARREF_IN_DTD">XML_ERR_CHARREF_IN_DTD</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CHARREF_IN_EPILOG">XML_ERR_CHARREF_IN_EPILOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CHARREF_IN_PROLOG">XML_ERR_CHARREF_IN_PROLOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_COMMENT_NOT_FINISHED">XML_ERR_COMMENT_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CONDSEC_INVALID">XML_ERR_CONDSEC_INVALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CONDSEC_INVALID_KEYWORD">XML_ERR_CONDSEC_INVALID_KEYWORD</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CONDSEC_NOT_FINISHED">XML_ERR_CONDSEC_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_CONDSEC_NOT_STARTED">XML_ERR_CONDSEC_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_DOCTYPE_NOT_FINISHED">XML_ERR_DOCTYPE_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_DOCUMENT_EMPTY">XML_ERR_DOCUMENT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_DOCUMENT_END">XML_ERR_DOCUMENT_END</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_DOCUMENT_START">XML_ERR_DOCUMENT_START</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ELEMCONTENT_NOT_FINISHED">XML_ERR_ELEMCONTENT_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ELEMCONTENT_NOT_STARTED">XML_ERR_ELEMCONTENT_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENCODING_NAME">XML_ERR_ENCODING_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITYREF_AT_EOF">XML_ERR_ENTITYREF_AT_EOF</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITYREF_IN_DTD">XML_ERR_ENTITYREF_IN_DTD</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITYREF_IN_EPILOG">XML_ERR_ENTITYREF_IN_EPILOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITYREF_IN_PROLOG">XML_ERR_ENTITYREF_IN_PROLOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITYREF_NO_NAME">XML_ERR_ENTITYREF_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITYREF_SEMICOL_MISSING">XML_ERR_ENTITYREF_SEMICOL_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_BOUNDARY">XML_ERR_ENTITY_BOUNDARY</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_CHAR_ERROR">XML_ERR_ENTITY_CHAR_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_IS_EXTERNAL">XML_ERR_ENTITY_IS_EXTERNAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_IS_PARAMETER">XML_ERR_ENTITY_IS_PARAMETER</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_LOOP">XML_ERR_ENTITY_LOOP</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_NOT_FINISHED">XML_ERR_ENTITY_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_NOT_STARTED">XML_ERR_ENTITY_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_PE_INTERNAL">XML_ERR_ENTITY_PE_INTERNAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ENTITY_PROCESSING">XML_ERR_ENTITY_PROCESSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_EQUAL_REQUIRED">XML_ERR_EQUAL_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_ERROR">XML_ERR_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_EXTRA_CONTENT">XML_ERR_EXTRA_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_EXT_ENTITY_STANDALONE">XML_ERR_EXT_ENTITY_STANDALONE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_EXT_SUBSET_NOT_FINISHED">XML_ERR_EXT_SUBSET_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_FATAL">XML_ERR_FATAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_GT_REQUIRED">XML_ERR_GT_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_HYPHEN_IN_COMMENT">XML_ERR_HYPHEN_IN_COMMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INTERNAL_ERROR">XML_ERR_INTERNAL_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INVALID_CHAR">XML_ERR_INVALID_CHAR</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INVALID_CHARREF">XML_ERR_INVALID_CHARREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INVALID_DEC_CHARREF">XML_ERR_INVALID_DEC_CHARREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INVALID_ENCODING">XML_ERR_INVALID_ENCODING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INVALID_HEX_CHARREF">XML_ERR_INVALID_HEX_CHARREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_INVALID_URI">XML_ERR_INVALID_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_LITERAL_NOT_FINISHED">XML_ERR_LITERAL_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_LITERAL_NOT_STARTED">XML_ERR_LITERAL_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_LTSLASH_REQUIRED">XML_ERR_LTSLASH_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_LT_IN_ATTRIBUTE">XML_ERR_LT_IN_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_LT_REQUIRED">XML_ERR_LT_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_MISPLACED_CDATA_END">XML_ERR_MISPLACED_CDATA_END</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_MISSING_ENCODING">XML_ERR_MISSING_ENCODING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_MIXED_NOT_FINISHED">XML_ERR_MIXED_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_MIXED_NOT_STARTED">XML_ERR_MIXED_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NAME_REQUIRED">XML_ERR_NAME_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NMTOKEN_REQUIRED">XML_ERR_NMTOKEN_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NONE">XML_ERR_NONE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NOTATION_NOT_FINISHED">XML_ERR_NOTATION_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NOTATION_NOT_STARTED">XML_ERR_NOTATION_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NOTATION_PROCESSING">XML_ERR_NOTATION_PROCESSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NOT_STANDALONE">XML_ERR_NOT_STANDALONE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NOT_WELL_BALANCED">XML_ERR_NOT_WELL_BALANCED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NO_DTD">XML_ERR_NO_DTD</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NO_MEMORY">XML_ERR_NO_MEMORY</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_NS_DECL_ERROR">XML_ERR_NS_DECL_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_OK">XML_ERR_OK</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PCDATA_REQUIRED">XML_ERR_PCDATA_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PEREF_AT_EOF">XML_ERR_PEREF_AT_EOF</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PEREF_IN_EPILOG">XML_ERR_PEREF_IN_EPILOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PEREF_IN_INT_SUBSET">XML_ERR_PEREF_IN_INT_SUBSET</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PEREF_IN_PROLOG">XML_ERR_PEREF_IN_PROLOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PEREF_NO_NAME">XML_ERR_PEREF_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PEREF_SEMICOL_MISSING">XML_ERR_PEREF_SEMICOL_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PI_NOT_FINISHED">XML_ERR_PI_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PI_NOT_STARTED">XML_ERR_PI_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_PUBID_REQUIRED">XML_ERR_PUBID_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_RESERVED_XML_NAME">XML_ERR_RESERVED_XML_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_SEPARATOR_REQUIRED">XML_ERR_SEPARATOR_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_SPACE_REQUIRED">XML_ERR_SPACE_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_STANDALONE_VALUE">XML_ERR_STANDALONE_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_STRING_NOT_CLOSED">XML_ERR_STRING_NOT_CLOSED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_STRING_NOT_STARTED">XML_ERR_STRING_NOT_STARTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_TAG_NAME_MISMATCH">XML_ERR_TAG_NAME_MISMATCH</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_TAG_NOT_FINISHED">XML_ERR_TAG_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_UNDECLARED_ENTITY">XML_ERR_UNDECLARED_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_UNKNOWN_ENCODING">XML_ERR_UNKNOWN_ENCODING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_UNPARSED_ENTITY">XML_ERR_UNPARSED_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_UNSUPPORTED_ENCODING">XML_ERR_UNSUPPORTED_ENCODING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_URI_FRAGMENT">XML_ERR_URI_FRAGMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_URI_REQUIRED">XML_ERR_URI_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_VALUE_REQUIRED">XML_ERR_VALUE_REQUIRED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_VERSION_MISSING">XML_ERR_VERSION_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_WARNING">XML_ERR_WARNING</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_XMLDECL_NOT_FINISHED">XML_ERR_XMLDECL_NOT_FINISHED</a><br /> -<a href="html/libxml-xmlerror.html#XML_ERR_XMLDECL_NOT_STARTED">XML_ERR_XMLDECL_NOT_STARTED</a><br /> -<a href="html/libxml-xmlregexp.html#XML_EXP_ATOM">XML_EXP_ATOM</a><br /> -<a href="html/libxml-xmlregexp.html#XML_EXP_COUNT">XML_EXP_COUNT</a><br /> -<a href="html/libxml-xmlregexp.html#XML_EXP_EMPTY">XML_EXP_EMPTY</a><br /> -<a href="html/libxml-xmlregexp.html#XML_EXP_FORBID">XML_EXP_FORBID</a><br /> -<a href="html/libxml-xmlregexp.html#XML_EXP_OR">XML_EXP_OR</a><br /> -<a href="html/libxml-xmlregexp.html#XML_EXP_SEQ">XML_EXP_SEQ</a><br /> -<a href="html/libxml-entities.html#XML_EXTERNAL_GENERAL_PARSED_ENTITY">XML_EXTERNAL_GENERAL_PARSED_ENTITY</a><br /> -<a href="html/libxml-entities.html#XML_EXTERNAL_GENERAL_UNPARSED_ENTITY">XML_EXTERNAL_GENERAL_UNPARSED_ENTITY</a><br /> -<a href="html/libxml-entities.html#XML_EXTERNAL_PARAMETER_ENTITY">XML_EXTERNAL_PARAMETER_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_C14N">XML_FROM_C14N</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_CATALOG">XML_FROM_CATALOG</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_CHECK">XML_FROM_CHECK</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_DATATYPE">XML_FROM_DATATYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_DTD">XML_FROM_DTD</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_FTP">XML_FROM_FTP</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_HTML">XML_FROM_HTML</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_HTTP">XML_FROM_HTTP</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_I18N">XML_FROM_I18N</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_IO">XML_FROM_IO</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_MEMORY">XML_FROM_MEMORY</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_MODULE">XML_FROM_MODULE</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_NAMESPACE">XML_FROM_NAMESPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_NONE">XML_FROM_NONE</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_OUTPUT">XML_FROM_OUTPUT</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_PARSER">XML_FROM_PARSER</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_REGEXP">XML_FROM_REGEXP</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_RELAXNGP">XML_FROM_RELAXNGP</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_RELAXNGV">XML_FROM_RELAXNGV</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_SCHEMASP">XML_FROM_SCHEMASP</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_SCHEMASV">XML_FROM_SCHEMASV</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_TREE">XML_FROM_TREE</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_VALID">XML_FROM_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_WRITER">XML_FROM_WRITER</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_XINCLUDE">XML_FROM_XINCLUDE</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_XPATH">XML_FROM_XPATH</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_XPOINTER">XML_FROM_XPOINTER</a><br /> -<a href="html/libxml-xmlerror.html#XML_FROM_XSLT">XML_FROM_XSLT</a><br /> -<a href="html/libxml-xmlerror.html#XML_FTP_ACCNT">XML_FTP_ACCNT</a><br /> -<a href="html/libxml-xmlerror.html#XML_FTP_EPSV_ANSWER">XML_FTP_EPSV_ANSWER</a><br /> -<a href="html/libxml-xmlerror.html#XML_FTP_PASV_ANSWER">XML_FTP_PASV_ANSWER</a><br /> -<a href="html/libxml-xmlerror.html#XML_FTP_URL_SYNTAX">XML_FTP_URL_SYNTAX</a><br /> -<a href="html/libxml-tree.html#XML_GET_CONTENT">XML_GET_CONTENT</a><br /> -<a href="html/libxml-tree.html#XML_GET_LINE">XML_GET_LINE</a><br /> -<a href="html/libxml-tree.html#XML_HTML_DOCUMENT_NODE">XML_HTML_DOCUMENT_NODE</a><br /> -<a href="html/libxml-xmlerror.html#XML_HTML_STRUCURE_ERROR">XML_HTML_STRUCURE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_HTML_UNKNOWN_TAG">XML_HTML_UNKNOWN_TAG</a><br /> -<a href="html/libxml-xmlerror.html#XML_HTTP_UNKNOWN_HOST">XML_HTTP_UNKNOWN_HOST</a><br /> -<a href="html/libxml-xmlerror.html#XML_HTTP_URL_SYNTAX">XML_HTTP_URL_SYNTAX</a><br /> -<a href="html/libxml-xmlerror.html#XML_HTTP_USE_IP">XML_HTTP_USE_IP</a><br /> -<a href="html/libxml-xmlerror.html#XML_I18N_CONV_FAILED">XML_I18N_CONV_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_I18N_EXCESS_HANDLER">XML_I18N_EXCESS_HANDLER</a><br /> -<a href="html/libxml-xmlerror.html#XML_I18N_NO_HANDLER">XML_I18N_NO_HANDLER</a><br /> -<a href="html/libxml-xmlerror.html#XML_I18N_NO_NAME">XML_I18N_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_I18N_NO_OUTPUT">XML_I18N_NO_OUTPUT</a><br /> -<a href="html/libxml-entities.html#XML_INTERNAL_GENERAL_ENTITY">XML_INTERNAL_GENERAL_ENTITY</a><br /> -<a href="html/libxml-entities.html#XML_INTERNAL_PARAMETER_ENTITY">XML_INTERNAL_PARAMETER_ENTITY</a><br /> -<a href="html/libxml-entities.html#XML_INTERNAL_PREDEFINED_ENTITY">XML_INTERNAL_PREDEFINED_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_BUFFER_FULL">XML_IO_BUFFER_FULL</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EACCES">XML_IO_EACCES</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EADDRINUSE">XML_IO_EADDRINUSE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EAFNOSUPPORT">XML_IO_EAFNOSUPPORT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EAGAIN">XML_IO_EAGAIN</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EALREADY">XML_IO_EALREADY</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EBADF">XML_IO_EBADF</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EBADMSG">XML_IO_EBADMSG</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EBUSY">XML_IO_EBUSY</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ECANCELED">XML_IO_ECANCELED</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ECHILD">XML_IO_ECHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ECONNREFUSED">XML_IO_ECONNREFUSED</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EDEADLK">XML_IO_EDEADLK</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EDOM">XML_IO_EDOM</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EEXIST">XML_IO_EEXIST</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EFAULT">XML_IO_EFAULT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EFBIG">XML_IO_EFBIG</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EINPROGRESS">XML_IO_EINPROGRESS</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EINTR">XML_IO_EINTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EINVAL">XML_IO_EINVAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EIO">XML_IO_EIO</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EISCONN">XML_IO_EISCONN</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EISDIR">XML_IO_EISDIR</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EMFILE">XML_IO_EMFILE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EMLINK">XML_IO_EMLINK</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EMSGSIZE">XML_IO_EMSGSIZE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENAMETOOLONG">XML_IO_ENAMETOOLONG</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENCODER">XML_IO_ENCODER</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENETUNREACH">XML_IO_ENETUNREACH</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENFILE">XML_IO_ENFILE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENODEV">XML_IO_ENODEV</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOENT">XML_IO_ENOENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOEXEC">XML_IO_ENOEXEC</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOLCK">XML_IO_ENOLCK</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOMEM">XML_IO_ENOMEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOSPC">XML_IO_ENOSPC</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOSYS">XML_IO_ENOSYS</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOTDIR">XML_IO_ENOTDIR</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOTEMPTY">XML_IO_ENOTEMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOTSOCK">XML_IO_ENOTSOCK</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOTSUP">XML_IO_ENOTSUP</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENOTTY">XML_IO_ENOTTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ENXIO">XML_IO_ENXIO</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EPERM">XML_IO_EPERM</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EPIPE">XML_IO_EPIPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ERANGE">XML_IO_ERANGE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EROFS">XML_IO_EROFS</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ESPIPE">XML_IO_ESPIPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ESRCH">XML_IO_ESRCH</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_ETIMEDOUT">XML_IO_ETIMEDOUT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_EXDEV">XML_IO_EXDEV</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_FLUSH">XML_IO_FLUSH</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_LOAD_ERROR">XML_IO_LOAD_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_NETWORK_ATTEMPT">XML_IO_NETWORK_ATTEMPT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_NO_INPUT">XML_IO_NO_INPUT</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_UNKNOWN">XML_IO_UNKNOWN</a><br /> -<a href="html/libxml-xmlerror.html#XML_IO_WRITE">XML_IO_WRITE</a><br /> -<a href="html/libxml-tree.html#XML_LOCAL_NAMESPACE">XML_LOCAL_NAMESPACE</a><br /> -<a href="html/libxml-parserInternals.html#XML_MAX_NAMELEN">XML_MAX_NAMELEN</a><br /> -<a href="html/libxml-xmlerror.html#XML_MODULE_CLOSE">XML_MODULE_CLOSE</a><br /> -<a href="html/libxml-xmlmodule.html#XML_MODULE_LAZY">XML_MODULE_LAZY</a><br /> -<a href="html/libxml-xmlmodule.html#XML_MODULE_LOCAL">XML_MODULE_LOCAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_MODULE_OPEN">XML_MODULE_OPEN</a><br /> -<a href="html/libxml-tree.html#XML_NAMESPACE_DECL">XML_NAMESPACE_DECL</a><br /> -<a href="html/libxml-tree.html#XML_NOTATION_NODE">XML_NOTATION_NODE</a><br /> -<a href="html/libxml-xmlerror.html#XML_NS_ERR_ATTRIBUTE_REDEFINED">XML_NS_ERR_ATTRIBUTE_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_NS_ERR_EMPTY">XML_NS_ERR_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_NS_ERR_QNAME">XML_NS_ERR_QNAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_NS_ERR_UNDEFINED_NAMESPACE">XML_NS_ERR_UNDEFINED_NAMESPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_NS_ERR_XML_NAMESPACE">XML_NS_ERR_XML_NAMESPACE</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_ATTRIBUTE_VALUE">XML_PARSER_ATTRIBUTE_VALUE</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_CDATA_SECTION">XML_PARSER_CDATA_SECTION</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_COMMENT">XML_PARSER_COMMENT</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_CONTENT">XML_PARSER_CONTENT</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_DEFAULTATTRS">XML_PARSER_DEFAULTATTRS</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_DTD">XML_PARSER_DTD</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_END_TAG">XML_PARSER_END_TAG</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_ENTITY_DECL">XML_PARSER_ENTITY_DECL</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_ENTITY_VALUE">XML_PARSER_ENTITY_VALUE</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_EOF">XML_PARSER_EOF</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_EPILOG">XML_PARSER_EPILOG</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_IGNORE">XML_PARSER_IGNORE</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_LOADDTD">XML_PARSER_LOADDTD</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_MISC">XML_PARSER_MISC</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_PI">XML_PARSER_PI</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_PROLOG">XML_PARSER_PROLOG</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_PUBLIC_LITERAL">XML_PARSER_PUBLIC_LITERAL</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_SEVERITY_ERROR">XML_PARSER_SEVERITY_ERROR</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_SEVERITY_VALIDITY_ERROR">XML_PARSER_SEVERITY_VALIDITY_ERROR</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_SEVERITY_VALIDITY_WARNING">XML_PARSER_SEVERITY_VALIDITY_WARNING</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_SEVERITY_WARNING">XML_PARSER_SEVERITY_WARNING</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_START">XML_PARSER_START</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_START_TAG">XML_PARSER_START_TAG</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_SUBST_ENTITIES">XML_PARSER_SUBST_ENTITIES</a><br /> -<a href="html/libxml-parser.html#XML_PARSER_SYSTEM_LITERAL">XML_PARSER_SYSTEM_LITERAL</a><br /> -<a href="html/libxml-xmlreader.html#XML_PARSER_VALIDATE">XML_PARSER_VALIDATE</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_COMPACT">XML_PARSE_COMPACT</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_DOM">XML_PARSE_DOM</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_DTDATTR">XML_PARSE_DTDATTR</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_DTDLOAD">XML_PARSE_DTDLOAD</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_DTDVALID">XML_PARSE_DTDVALID</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NOBLANKS">XML_PARSE_NOBLANKS</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NOCDATA">XML_PARSE_NOCDATA</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NODICT">XML_PARSE_NODICT</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NOENT">XML_PARSE_NOENT</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NOERROR">XML_PARSE_NOERROR</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NONET">XML_PARSE_NONET</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NOWARNING">XML_PARSE_NOWARNING</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NOXINCNODE">XML_PARSE_NOXINCNODE</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_NSCLEAN">XML_PARSE_NSCLEAN</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_PEDANTIC">XML_PARSE_PEDANTIC</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_PUSH_DOM">XML_PARSE_PUSH_DOM</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_PUSH_SAX">XML_PARSE_PUSH_SAX</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_READER">XML_PARSE_READER</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_RECOVER">XML_PARSE_RECOVER</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_SAX">XML_PARSE_SAX</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_SAX1">XML_PARSE_SAX1</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_UNKNOWN">XML_PARSE_UNKNOWN</a><br /> -<a href="html/libxml-parser.html#XML_PARSE_XINCLUDE">XML_PARSE_XINCLUDE</a><br /> -<a href="html/libxml-pattern.html#XML_PATTERN_DEFAULT">XML_PATTERN_DEFAULT</a><br /> -<a href="html/libxml-pattern.html#XML_PATTERN_XPATH">XML_PATTERN_XPATH</a><br /> -<a href="html/libxml-pattern.html#XML_PATTERN_XSFIELD">XML_PATTERN_XSFIELD</a><br /> -<a href="html/libxml-pattern.html#XML_PATTERN_XSSEL">XML_PATTERN_XSSEL</a><br /> -<a href="html/libxml-tree.html#XML_PI_NODE">XML_PI_NODE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_ATTRIBUTE">XML_READER_TYPE_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_CDATA">XML_READER_TYPE_CDATA</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_COMMENT">XML_READER_TYPE_COMMENT</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_DOCUMENT">XML_READER_TYPE_DOCUMENT</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_DOCUMENT_FRAGMENT">XML_READER_TYPE_DOCUMENT_FRAGMENT</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_DOCUMENT_TYPE">XML_READER_TYPE_DOCUMENT_TYPE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_ELEMENT">XML_READER_TYPE_ELEMENT</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_END_ELEMENT">XML_READER_TYPE_END_ELEMENT</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_END_ENTITY">XML_READER_TYPE_END_ENTITY</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_ENTITY">XML_READER_TYPE_ENTITY</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_ENTITY_REFERENCE">XML_READER_TYPE_ENTITY_REFERENCE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_NONE">XML_READER_TYPE_NONE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_NOTATION">XML_READER_TYPE_NOTATION</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_PROCESSING_INSTRUCTION">XML_READER_TYPE_PROCESSING_INSTRUCTION</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_SIGNIFICANT_WHITESPACE">XML_READER_TYPE_SIGNIFICANT_WHITESPACE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_TEXT">XML_READER_TYPE_TEXT</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_WHITESPACE">XML_READER_TYPE_WHITESPACE</a><br /> -<a href="html/libxml-xmlreader.html#XML_READER_TYPE_XML_DECLARATION">XML_READER_TYPE_XML_DECLARATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_REGEXP_COMPILE_ERROR">XML_REGEXP_COMPILE_ERROR</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNGP_CRNG">XML_RELAXNGP_CRNG</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNGP_FREE_DOC">XML_RELAXNGP_FREE_DOC</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNGP_NONE">XML_RELAXNGP_NONE</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTREXTRANS">XML_RELAXNG_ERR_ATTREXTRANS</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTRNAME">XML_RELAXNG_ERR_ATTRNAME</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTRNONS">XML_RELAXNG_ERR_ATTRNONS</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTRVALID">XML_RELAXNG_ERR_ATTRVALID</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ATTRWRONGNS">XML_RELAXNG_ERR_ATTRWRONGNS</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_CONTENTVALID">XML_RELAXNG_ERR_CONTENTVALID</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_DATAELEM">XML_RELAXNG_ERR_DATAELEM</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_DATATYPE">XML_RELAXNG_ERR_DATATYPE</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_DUPID">XML_RELAXNG_ERR_DUPID</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMEXTRANS">XML_RELAXNG_ERR_ELEMEXTRANS</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMNAME">XML_RELAXNG_ERR_ELEMNAME</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMNONS">XML_RELAXNG_ERR_ELEMNONS</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMNOTEMPTY">XML_RELAXNG_ERR_ELEMNOTEMPTY</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMWRONG">XML_RELAXNG_ERR_ELEMWRONG</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_ELEMWRONGNS">XML_RELAXNG_ERR_ELEMWRONGNS</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_EXTRACONTENT">XML_RELAXNG_ERR_EXTRACONTENT</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_EXTRADATA">XML_RELAXNG_ERR_EXTRADATA</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_INTEREXTRA">XML_RELAXNG_ERR_INTEREXTRA</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_INTERNAL">XML_RELAXNG_ERR_INTERNAL</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_INTERNODATA">XML_RELAXNG_ERR_INTERNODATA</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_INTERSEQ">XML_RELAXNG_ERR_INTERSEQ</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_INVALIDATTR">XML_RELAXNG_ERR_INVALIDATTR</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_LACKDATA">XML_RELAXNG_ERR_LACKDATA</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_LIST">XML_RELAXNG_ERR_LIST</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_LISTELEM">XML_RELAXNG_ERR_LISTELEM</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_LISTEMPTY">XML_RELAXNG_ERR_LISTEMPTY</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_LISTEXTRA">XML_RELAXNG_ERR_LISTEXTRA</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_MEMORY">XML_RELAXNG_ERR_MEMORY</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_NODEFINE">XML_RELAXNG_ERR_NODEFINE</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_NOELEM">XML_RELAXNG_ERR_NOELEM</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_NOGRAMMAR">XML_RELAXNG_ERR_NOGRAMMAR</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_NOSTATE">XML_RELAXNG_ERR_NOSTATE</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_NOTELEM">XML_RELAXNG_ERR_NOTELEM</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_TEXTWRONG">XML_RELAXNG_ERR_TEXTWRONG</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_TYPE">XML_RELAXNG_ERR_TYPE</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_TYPECMP">XML_RELAXNG_ERR_TYPECMP</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_TYPEVAL">XML_RELAXNG_ERR_TYPEVAL</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_VALELEM">XML_RELAXNG_ERR_VALELEM</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_ERR_VALUE">XML_RELAXNG_ERR_VALUE</a><br /> -<a href="html/libxml-relaxng.html#XML_RELAXNG_OK">XML_RELAXNG_OK</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ANYNAME_ATTR_ANCESTOR">XML_RNGP_ANYNAME_ATTR_ANCESTOR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ATTRIBUTE_CHILDREN">XML_RNGP_ATTRIBUTE_CHILDREN</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ATTRIBUTE_CONTENT">XML_RNGP_ATTRIBUTE_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ATTRIBUTE_EMPTY">XML_RNGP_ATTRIBUTE_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ATTRIBUTE_NOOP">XML_RNGP_ATTRIBUTE_NOOP</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ATTR_CONFLICT">XML_RNGP_ATTR_CONFLICT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_CHOICE_CONTENT">XML_RNGP_CHOICE_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_CHOICE_EMPTY">XML_RNGP_CHOICE_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_CREATE_FAILURE">XML_RNGP_CREATE_FAILURE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_DATA_CONTENT">XML_RNGP_DATA_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_DEFINE_CREATE_FAILED">XML_RNGP_DEFINE_CREATE_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_DEFINE_EMPTY">XML_RNGP_DEFINE_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_DEFINE_MISSING">XML_RNGP_DEFINE_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_DEFINE_NAME_MISSING">XML_RNGP_DEFINE_NAME_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_DEF_CHOICE_AND_INTERLEAVE">XML_RNGP_DEF_CHOICE_AND_INTERLEAVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEMENT_CONTENT">XML_RNGP_ELEMENT_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEMENT_EMPTY">XML_RNGP_ELEMENT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEMENT_NAME">XML_RNGP_ELEMENT_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEMENT_NO_CONTENT">XML_RNGP_ELEMENT_NO_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEM_CONTENT_EMPTY">XML_RNGP_ELEM_CONTENT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEM_CONTENT_ERROR">XML_RNGP_ELEM_CONTENT_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ELEM_TEXT_CONFLICT">XML_RNGP_ELEM_TEXT_CONFLICT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EMPTY">XML_RNGP_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EMPTY_CONSTRUCT">XML_RNGP_EMPTY_CONSTRUCT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EMPTY_CONTENT">XML_RNGP_EMPTY_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EMPTY_NOT_EMPTY">XML_RNGP_EMPTY_NOT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_ERROR_TYPE_LIB">XML_RNGP_ERROR_TYPE_LIB</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXCEPT_EMPTY">XML_RNGP_EXCEPT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXCEPT_MISSING">XML_RNGP_EXCEPT_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXCEPT_MULTIPLE">XML_RNGP_EXCEPT_MULTIPLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXCEPT_NO_CONTENT">XML_RNGP_EXCEPT_NO_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXTERNALREF_EMTPY">XML_RNGP_EXTERNALREF_EMTPY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXTERNALREF_RECURSE">XML_RNGP_EXTERNALREF_RECURSE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_EXTERNAL_REF_FAILURE">XML_RNGP_EXTERNAL_REF_FAILURE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_FORBIDDEN_ATTRIBUTE">XML_RNGP_FORBIDDEN_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_FOREIGN_ELEMENT">XML_RNGP_FOREIGN_ELEMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_GRAMMAR_CONTENT">XML_RNGP_GRAMMAR_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_GRAMMAR_EMPTY">XML_RNGP_GRAMMAR_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_GRAMMAR_MISSING">XML_RNGP_GRAMMAR_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_GRAMMAR_NO_START">XML_RNGP_GRAMMAR_NO_START</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_GROUP_ATTR_CONFLICT">XML_RNGP_GROUP_ATTR_CONFLICT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_HREF_ERROR">XML_RNGP_HREF_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INCLUDE_EMPTY">XML_RNGP_INCLUDE_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INCLUDE_FAILURE">XML_RNGP_INCLUDE_FAILURE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INCLUDE_RECURSE">XML_RNGP_INCLUDE_RECURSE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INTERLEAVE_ADD">XML_RNGP_INTERLEAVE_ADD</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INTERLEAVE_CREATE_FAILED">XML_RNGP_INTERLEAVE_CREATE_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INTERLEAVE_EMPTY">XML_RNGP_INTERLEAVE_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INTERLEAVE_NO_CONTENT">XML_RNGP_INTERLEAVE_NO_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INVALID_DEFINE_NAME">XML_RNGP_INVALID_DEFINE_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INVALID_URI">XML_RNGP_INVALID_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_INVALID_VALUE">XML_RNGP_INVALID_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_MISSING_HREF">XML_RNGP_MISSING_HREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_NAME_MISSING">XML_RNGP_NAME_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_NEED_COMBINE">XML_RNGP_NEED_COMBINE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_NOTALLOWED_NOT_EMPTY">XML_RNGP_NOTALLOWED_NOT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_NSNAME_ATTR_ANCESTOR">XML_RNGP_NSNAME_ATTR_ANCESTOR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_NSNAME_NO_NS">XML_RNGP_NSNAME_NO_NS</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARAM_FORBIDDEN">XML_RNGP_PARAM_FORBIDDEN</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARAM_NAME_MISSING">XML_RNGP_PARAM_NAME_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARENTREF_CREATE_FAILED">XML_RNGP_PARENTREF_CREATE_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARENTREF_NAME_INVALID">XML_RNGP_PARENTREF_NAME_INVALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARENTREF_NOT_EMPTY">XML_RNGP_PARENTREF_NOT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARENTREF_NO_NAME">XML_RNGP_PARENTREF_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARENTREF_NO_PARENT">XML_RNGP_PARENTREF_NO_PARENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PARSE_ERROR">XML_RNGP_PARSE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME">XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_ATTR_ATTR">XML_RNGP_PAT_ATTR_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_ATTR_ELEM">XML_RNGP_PAT_ATTR_ELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_ATTR">XML_RNGP_PAT_DATA_EXCEPT_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_ELEM">XML_RNGP_PAT_DATA_EXCEPT_ELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_EMPTY">XML_RNGP_PAT_DATA_EXCEPT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_GROUP">XML_RNGP_PAT_DATA_EXCEPT_GROUP</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE">XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_LIST">XML_RNGP_PAT_DATA_EXCEPT_LIST</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_ONEMORE">XML_RNGP_PAT_DATA_EXCEPT_ONEMORE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_REF">XML_RNGP_PAT_DATA_EXCEPT_REF</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_DATA_EXCEPT_TEXT">XML_RNGP_PAT_DATA_EXCEPT_TEXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_ATTR">XML_RNGP_PAT_LIST_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_ELEM">XML_RNGP_PAT_LIST_ELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_INTERLEAVE">XML_RNGP_PAT_LIST_INTERLEAVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_LIST">XML_RNGP_PAT_LIST_LIST</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_REF">XML_RNGP_PAT_LIST_REF</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_LIST_TEXT">XML_RNGP_PAT_LIST_TEXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME">XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME">XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_ONEMORE_GROUP_ATTR">XML_RNGP_PAT_ONEMORE_GROUP_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR">XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_ATTR">XML_RNGP_PAT_START_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_DATA">XML_RNGP_PAT_START_DATA</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_EMPTY">XML_RNGP_PAT_START_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_GROUP">XML_RNGP_PAT_START_GROUP</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_INTERLEAVE">XML_RNGP_PAT_START_INTERLEAVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_LIST">XML_RNGP_PAT_START_LIST</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_ONEMORE">XML_RNGP_PAT_START_ONEMORE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_TEXT">XML_RNGP_PAT_START_TEXT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PAT_START_VALUE">XML_RNGP_PAT_START_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_PREFIX_UNDEFINED">XML_RNGP_PREFIX_UNDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_REF_CREATE_FAILED">XML_RNGP_REF_CREATE_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_REF_CYCLE">XML_RNGP_REF_CYCLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_REF_NAME_INVALID">XML_RNGP_REF_NAME_INVALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_REF_NOT_EMPTY">XML_RNGP_REF_NOT_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_REF_NO_DEF">XML_RNGP_REF_NO_DEF</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_REF_NO_NAME">XML_RNGP_REF_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_START_CHOICE_AND_INTERLEAVE">XML_RNGP_START_CHOICE_AND_INTERLEAVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_START_CONTENT">XML_RNGP_START_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_START_EMPTY">XML_RNGP_START_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_START_MISSING">XML_RNGP_START_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_TEXT_EXPECTED">XML_RNGP_TEXT_EXPECTED</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_TEXT_HAS_CHILD">XML_RNGP_TEXT_HAS_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_TYPE_MISSING">XML_RNGP_TYPE_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_TYPE_NOT_FOUND">XML_RNGP_TYPE_NOT_FOUND</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_TYPE_VALUE">XML_RNGP_TYPE_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_UNKNOWN_ATTRIBUTE">XML_RNGP_UNKNOWN_ATTRIBUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_UNKNOWN_COMBINE">XML_RNGP_UNKNOWN_COMBINE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_UNKNOWN_CONSTRUCT">XML_RNGP_UNKNOWN_CONSTRUCT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_UNKNOWN_TYPE_LIB">XML_RNGP_UNKNOWN_TYPE_LIB</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_URI_FRAGMENT">XML_RNGP_URI_FRAGMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_URI_NOT_ABSOLUTE">XML_RNGP_URI_NOT_ABSOLUTE</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_VALUE_EMPTY">XML_RNGP_VALUE_EMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_VALUE_NO_CONTENT">XML_RNGP_VALUE_NO_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_XMLNS_NAME">XML_RNGP_XMLNS_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_RNGP_XML_NS">XML_RNGP_XML_NS</a><br /> -<a href="html/libxml-xmlerror.html#XML_SAVE_CHAR_INVALID">XML_SAVE_CHAR_INVALID</a><br /> -<a href="html/libxml-xmlsave.html#XML_SAVE_FORMAT">XML_SAVE_FORMAT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SAVE_NOT_UTF8">XML_SAVE_NOT_UTF8</a><br /> -<a href="html/libxml-xmlsave.html#XML_SAVE_NO_DECL">XML_SAVE_NO_DECL</a><br /> -<a href="html/libxml-xmlerror.html#XML_SAVE_NO_DOCTYPE">XML_SAVE_NO_DOCTYPE</a><br /> -<a href="html/libxml-xmlsave.html#XML_SAVE_NO_EMPTY">XML_SAVE_NO_EMPTY</a><br /> -<a href="html/libxml-xmlsave.html#XML_SAVE_NO_XHTML">XML_SAVE_NO_XHTML</a><br /> -<a href="html/libxml-xmlerror.html#XML_SAVE_UNKNOWN_ENCODING">XML_SAVE_UNKNOWN_ENCODING</a><br /> -<a href="html/libxml-parser.html#XML_SAX2_MAGIC">XML_SAX2_MAGIC</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_AG_PROPS_CORRECT">XML_SCHEMAP_AG_PROPS_CORRECT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ATTRFORMDEFAULT_VALUE">XML_SCHEMAP_ATTRFORMDEFAULT_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ATTRGRP_NONAME_NOREF">XML_SCHEMAP_ATTRGRP_NONAME_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ATTR_NONAME_NOREF">XML_SCHEMAP_ATTR_NONAME_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_AU_PROPS_CORRECT">XML_SCHEMAP_AU_PROPS_CORRECT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_AU_PROPS_CORRECT_2">XML_SCHEMAP_AU_PROPS_CORRECT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_A_PROPS_CORRECT_2">XML_SCHEMAP_A_PROPS_CORRECT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_A_PROPS_CORRECT_3">XML_SCHEMAP_A_PROPS_CORRECT_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF">XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ALL_LIMITED">XML_SCHEMAP_COS_ALL_LIMITED</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_1">XML_SCHEMAP_COS_CT_EXTENDS_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_2">XML_SCHEMAP_COS_CT_EXTENDS_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_3">XML_SCHEMAP_COS_CT_EXTENDS_1_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_DERIVED_OK_2_1">XML_SCHEMAP_COS_ST_DERIVED_OK_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_DERIVED_OK_2_2">XML_SCHEMAP_COS_ST_DERIVED_OK_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_1_1">XML_SCHEMAP_COS_ST_RESTRICTS_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_1_2">XML_SCHEMAP_COS_ST_RESTRICTS_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1">XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2">XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_1">XML_SCHEMAP_COS_ST_RESTRICTS_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5">XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_1">XML_SCHEMAP_COS_ST_RESTRICTS_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5">XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_VALID_DEFAULT_1">XML_SCHEMAP_COS_VALID_DEFAULT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_VALID_DEFAULT_2_1">XML_SCHEMAP_COS_VALID_DEFAULT_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1">XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2">XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_1">XML_SCHEMAP_CT_PROPS_CORRECT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_2">XML_SCHEMAP_CT_PROPS_CORRECT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_3">XML_SCHEMAP_CT_PROPS_CORRECT_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_4">XML_SCHEMAP_CT_PROPS_CORRECT_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_CT_PROPS_CORRECT_5">XML_SCHEMAP_CT_PROPS_CORRECT_5</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_CVC_SIMPLE_TYPE">XML_SCHEMAP_CVC_SIMPLE_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_C_PROPS_CORRECT">XML_SCHEMAP_C_PROPS_CORRECT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DEF_AND_PREFIX">XML_SCHEMAP_DEF_AND_PREFIX</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ELEMFORMDEFAULT_VALUE">XML_SCHEMAP_ELEMFORMDEFAULT_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ELEM_DEFAULT_FIXED">XML_SCHEMAP_ELEM_DEFAULT_FIXED</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ELEM_NONAME_NOREF">XML_SCHEMAP_ELEM_NONAME_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_EXTENSION_NO_BASE">XML_SCHEMAP_EXTENSION_NO_BASE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_2">XML_SCHEMAP_E_PROPS_CORRECT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_3">XML_SCHEMAP_E_PROPS_CORRECT_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_4">XML_SCHEMAP_E_PROPS_CORRECT_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_5">XML_SCHEMAP_E_PROPS_CORRECT_5</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_E_PROPS_CORRECT_6">XML_SCHEMAP_E_PROPS_CORRECT_6</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_FACET_NO_VALUE">XML_SCHEMAP_FACET_NO_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_FAILED_BUILD_IMPORT">XML_SCHEMAP_FAILED_BUILD_IMPORT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_FAILED_LOAD">XML_SCHEMAP_FAILED_LOAD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_FAILED_PARSE">XML_SCHEMAP_FAILED_PARSE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_GROUP_NONAME_NOREF">XML_SCHEMAP_GROUP_NONAME_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI">XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_IMPORT_REDEFINE_NSNAME">XML_SCHEMAP_IMPORT_REDEFINE_NSNAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI">XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI">XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI">XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INTERNAL">XML_SCHEMAP_INTERNAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE">XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ATTR_COMBINATION">XML_SCHEMAP_INVALID_ATTR_COMBINATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION">XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ATTR_NAME">XML_SCHEMAP_INVALID_ATTR_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ATTR_USE">XML_SCHEMAP_INVALID_ATTR_USE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_BOOLEAN">XML_SCHEMAP_INVALID_BOOLEAN</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_ENUM">XML_SCHEMAP_INVALID_ENUM</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_FACET">XML_SCHEMAP_INVALID_FACET</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_FACET_VALUE">XML_SCHEMAP_INVALID_FACET_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_MAXOCCURS">XML_SCHEMAP_INVALID_MAXOCCURS</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_MINOCCURS">XML_SCHEMAP_INVALID_MINOCCURS</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_REF_AND_SUBTYPE">XML_SCHEMAP_INVALID_REF_AND_SUBTYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_WHITE_SPACE">XML_SCHEMAP_INVALID_WHITE_SPACE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_MG_PROPS_CORRECT_1">XML_SCHEMAP_MG_PROPS_CORRECT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_MG_PROPS_CORRECT_2">XML_SCHEMAP_MG_PROPS_CORRECT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD">XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOATTR_NOREF">XML_SCHEMAP_NOATTR_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOROOT">XML_SCHEMAP_NOROOT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOTATION_NO_NAME">XML_SCHEMAP_NOTATION_NO_NAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOTHING_TO_PARSE">XML_SCHEMAP_NOTHING_TO_PARSE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOTYPE_NOREF">XML_SCHEMAP_NOTYPE_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOT_DETERMINISTIC">XML_SCHEMAP_NOT_DETERMINISTIC</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOT_SCHEMA">XML_SCHEMAP_NOT_SCHEMA</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NO_XMLNS">XML_SCHEMAP_NO_XMLNS</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_NO_XSI">XML_SCHEMAP_NO_XSI</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_PREFIX_UNDEFINED">XML_SCHEMAP_PREFIX_UNDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_P_PROPS_CORRECT_1">XML_SCHEMAP_P_PROPS_CORRECT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_P_PROPS_CORRECT_2_1">XML_SCHEMAP_P_PROPS_CORRECT_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_P_PROPS_CORRECT_2_2">XML_SCHEMAP_P_PROPS_CORRECT_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_RECURSIVE">XML_SCHEMAP_RECURSIVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_ATTR">XML_SCHEMAP_REDEFINED_ATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_ATTRGROUP">XML_SCHEMAP_REDEFINED_ATTRGROUP</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_ELEMENT">XML_SCHEMAP_REDEFINED_ELEMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_GROUP">XML_SCHEMAP_REDEFINED_GROUP</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_NOTATION">XML_SCHEMAP_REDEFINED_NOTATION</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REDEFINED_TYPE">XML_SCHEMAP_REDEFINED_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REF_AND_CONTENT">XML_SCHEMAP_REF_AND_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REF_AND_SUBTYPE">XML_SCHEMAP_REF_AND_SUBTYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_REGEXP_INVALID">XML_SCHEMAP_REGEXP_INVALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_RESTRICTION_NONAME_NOREF">XML_SCHEMAP_RESTRICTION_NONAME_NOREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ATTR_INVALID_VALUE">XML_SCHEMAP_S4S_ATTR_INVALID_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ATTR_MISSING">XML_SCHEMAP_S4S_ATTR_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED">XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ELEM_MISSING">XML_SCHEMAP_S4S_ELEM_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED">XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SIMPLETYPE_NONAME">XML_SCHEMAP_SIMPLETYPE_NONAME</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_1">XML_SCHEMAP_SRC_ATTRIBUTE_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_2">XML_SCHEMAP_SRC_ATTRIBUTE_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_3_1">XML_SCHEMAP_SRC_ATTRIBUTE_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_3_2">XML_SCHEMAP_SRC_ATTRIBUTE_3_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_4">XML_SCHEMAP_SRC_ATTRIBUTE_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_CT_1">XML_SCHEMAP_SRC_CT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_1">XML_SCHEMAP_SRC_ELEMENT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_2_1">XML_SCHEMAP_SRC_ELEMENT_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_2_2">XML_SCHEMAP_SRC_ELEMENT_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_3">XML_SCHEMAP_SRC_ELEMENT_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT">XML_SCHEMAP_SRC_IMPORT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_1_1">XML_SCHEMAP_SRC_IMPORT_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_1_2">XML_SCHEMAP_SRC_IMPORT_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_2">XML_SCHEMAP_SRC_IMPORT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_2_1">XML_SCHEMAP_SRC_IMPORT_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_2_2">XML_SCHEMAP_SRC_IMPORT_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_3_1">XML_SCHEMAP_SRC_IMPORT_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_IMPORT_3_2">XML_SCHEMAP_SRC_IMPORT_3_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_INCLUDE">XML_SCHEMAP_SRC_INCLUDE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE">XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_REDEFINE">XML_SCHEMAP_SRC_REDEFINE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_RESOLVE">XML_SCHEMAP_SRC_RESOLVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE">XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_SIMPLE_TYPE_1">XML_SCHEMAP_SRC_SIMPLE_TYPE_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_SIMPLE_TYPE_2">XML_SCHEMAP_SRC_SIMPLE_TYPE_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_SIMPLE_TYPE_3">XML_SCHEMAP_SRC_SIMPLE_TYPE_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_SIMPLE_TYPE_4">XML_SCHEMAP_SRC_SIMPLE_TYPE_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES">XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ST_PROPS_CORRECT_1">XML_SCHEMAP_ST_PROPS_CORRECT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ST_PROPS_CORRECT_2">XML_SCHEMAP_ST_PROPS_CORRECT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_ST_PROPS_CORRECT_3">XML_SCHEMAP_ST_PROPS_CORRECT_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE">XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_TYPE_AND_SUBTYPE">XML_SCHEMAP_TYPE_AND_SUBTYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNION_NOT_EXPRESSIBLE">XML_SCHEMAP_UNION_NOT_EXPRESSIBLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ALL_CHILD">XML_SCHEMAP_UNKNOWN_ALL_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD">XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD">XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP">XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ATTR_CHILD">XML_SCHEMAP_UNKNOWN_ATTR_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_BASE_TYPE">XML_SCHEMAP_UNKNOWN_BASE_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_CHOICE_CHILD">XML_SCHEMAP_UNKNOWN_CHOICE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD">XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD">XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_ELEM_CHILD">XML_SCHEMAP_UNKNOWN_ELEM_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD">XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_FACET_CHILD">XML_SCHEMAP_UNKNOWN_FACET_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_FACET_TYPE">XML_SCHEMAP_UNKNOWN_FACET_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_GROUP_CHILD">XML_SCHEMAP_UNKNOWN_GROUP_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_IMPORT_CHILD">XML_SCHEMAP_UNKNOWN_IMPORT_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD">XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_LIST_CHILD">XML_SCHEMAP_UNKNOWN_LIST_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_MEMBER_TYPE">XML_SCHEMAP_UNKNOWN_MEMBER_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_NOTATION_CHILD">XML_SCHEMAP_UNKNOWN_NOTATION_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_PREFIX">XML_SCHEMAP_UNKNOWN_PREFIX</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD">XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_REF">XML_SCHEMAP_UNKNOWN_REF</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD">XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD">XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD">XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD">XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD">XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_TYPE">XML_SCHEMAP_UNKNOWN_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_UNKNOWN_UNION_CHILD">XML_SCHEMAP_UNKNOWN_UNION_CHILD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH">XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_WARN_ATTR_REDECL_PROH">XML_SCHEMAP_WARN_ATTR_REDECL_PROH</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_WARN_SKIP_SCHEMA">XML_SCHEMAP_WARN_SKIP_SCHEMA</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_WARN_UNLOCATED_SCHEMA">XML_SCHEMAP_WARN_UNLOCATED_SCHEMA</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER">XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_LAX">XML_SCHEMAS_ANYATTR_LAX</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_SKIP">XML_SCHEMAS_ANYATTR_SKIP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYSIMPLETYPE">XML_SCHEMAS_ANYSIMPLETYPE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYTYPE">XML_SCHEMAS_ANYTYPE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANYURI">XML_SCHEMAS_ANYURI</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_SKIP">XML_SCHEMAS_ANY_SKIP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_HAS_REFS">XML_SCHEMAS_ATTRGROUP_HAS_REFS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_REDEFINED">XML_SCHEMAS_ATTRGROUP_REDEFINED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_FIXED">XML_SCHEMAS_ATTR_FIXED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_GLOBAL">XML_SCHEMAS_ATTR_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_NSDEFAULT">XML_SCHEMAS_ATTR_NSDEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_OPTIONAL">XML_SCHEMAS_ATTR_USE_OPTIONAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_PROHIBITED">XML_SCHEMAS_ATTR_USE_PROHIBITED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_USE_REQUIRED">XML_SCHEMAS_ATTR_USE_REQUIRED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BASE64BINARY">XML_SCHEMAS_BASE64BINARY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION">XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION">XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BOOLEAN">XML_SCHEMAS_BOOLEAN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BYTE">XML_SCHEMAS_BYTE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_DATE">XML_SCHEMAS_DATE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_DATETIME">XML_SCHEMAS_DATETIME</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_DECIMAL">XML_SCHEMAS_DECIMAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_DOUBLE">XML_SCHEMAS_DOUBLE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_DURATION">XML_SCHEMAS_DURATION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_ABSTRACT">XML_SCHEMAS_ELEM_ABSTRACT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_ABSENT">XML_SCHEMAS_ELEM_BLOCK_ABSENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_EXTENSION">XML_SCHEMAS_ELEM_BLOCK_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION">XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_DEFAULT">XML_SCHEMAS_ELEM_DEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_EXTENSION">XML_SCHEMAS_ELEM_FINAL_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_RESTRICTION">XML_SCHEMAS_ELEM_FINAL_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FIXED">XML_SCHEMAS_ELEM_FIXED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_GLOBAL">XML_SCHEMAS_ELEM_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_CHECKED">XML_SCHEMAS_ELEM_INTERNAL_CHECKED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_NILLABLE">XML_SCHEMAS_ELEM_NILLABLE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_NSDEFAULT">XML_SCHEMAS_ELEM_NSDEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_REF">XML_SCHEMAS_ELEM_REF</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD">XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_TOPLEVEL">XML_SCHEMAS_ELEM_TOPLEVEL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ENTITIES">XML_SCHEMAS_ENTITIES</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ENTITY">XML_SCHEMAS_ENTITY</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_">XML_SCHEMAS_ERR_</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_ATTRINVALID">XML_SCHEMAS_ERR_ATTRINVALID</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_ATTRUNKNOWN">XML_SCHEMAS_ERR_ATTRUNKNOWN</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_CONSTRUCT">XML_SCHEMAS_ERR_CONSTRUCT</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_ELEMCONT">XML_SCHEMAS_ERR_ELEMCONT</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_EXTRACONTENT">XML_SCHEMAS_ERR_EXTRACONTENT</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_FACET">XML_SCHEMAS_ERR_FACET</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_HAVEDEFAULT">XML_SCHEMAS_ERR_HAVEDEFAULT</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_INTERNAL">XML_SCHEMAS_ERR_INTERNAL</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_INVALIDATTR">XML_SCHEMAS_ERR_INVALIDATTR</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_INVALIDELEM">XML_SCHEMAS_ERR_INVALIDELEM</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_ISABSTRACT">XML_SCHEMAS_ERR_ISABSTRACT</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_MISSING">XML_SCHEMAS_ERR_MISSING</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOROLLBACK">XML_SCHEMAS_ERR_NOROLLBACK</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOROOT">XML_SCHEMAS_ERR_NOROOT</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTDETERMINIST">XML_SCHEMAS_ERR_NOTDETERMINIST</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTEMPTY">XML_SCHEMAS_ERR_NOTEMPTY</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTNILLABLE">XML_SCHEMAS_ERR_NOTNILLABLE</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTSIMPLE">XML_SCHEMAS_ERR_NOTSIMPLE</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTTOPLEVEL">XML_SCHEMAS_ERR_NOTTOPLEVEL</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_NOTYPE">XML_SCHEMAS_ERR_NOTYPE</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_OK">XML_SCHEMAS_ERR_OK</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_UNDECLAREDELEM">XML_SCHEMAS_ERR_UNDECLAREDELEM</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_VALUE">XML_SCHEMAS_ERR_VALUE</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_WRONGELEM">XML_SCHEMAS_ERR_WRONGELEM</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_XXX">XML_SCHEMAS_ERR_XXX</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_COLLAPSE">XML_SCHEMAS_FACET_COLLAPSE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_PRESERVE">XML_SCHEMAS_FACET_PRESERVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_REPLACE">XML_SCHEMAS_FACET_REPLACE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FACET_UNKNOWN">XML_SCHEMAS_FACET_UNKNOWN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_LIST">XML_SCHEMAS_FINAL_DEFAULT_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION">XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_UNION">XML_SCHEMAS_FINAL_DEFAULT_UNION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FLOAT">XML_SCHEMAS_FLOAT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_GDAY">XML_SCHEMAS_GDAY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_GMONTH">XML_SCHEMAS_GMONTH</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_GMONTHDAY">XML_SCHEMAS_GMONTHDAY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_GYEAR">XML_SCHEMAS_GYEAR</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_GYEARMONTH">XML_SCHEMAS_GYEARMONTH</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_HEXBINARY">XML_SCHEMAS_HEXBINARY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ID">XML_SCHEMAS_ID</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_IDREF">XML_SCHEMAS_IDREF</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_IDREFS">XML_SCHEMAS_IDREFS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_INCLUDING_CONVERT_NS">XML_SCHEMAS_INCLUDING_CONVERT_NS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_INT">XML_SCHEMAS_INT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_INTEGER">XML_SCHEMAS_INTEGER</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_LANGUAGE">XML_SCHEMAS_LANGUAGE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_LONG">XML_SCHEMAS_LONG</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NAME">XML_SCHEMAS_NAME</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NCNAME">XML_SCHEMAS_NCNAME</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NINTEGER">XML_SCHEMAS_NINTEGER</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NMTOKEN">XML_SCHEMAS_NMTOKEN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NMTOKENS">XML_SCHEMAS_NMTOKENS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NNINTEGER">XML_SCHEMAS_NNINTEGER</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NORMSTRING">XML_SCHEMAS_NORMSTRING</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NOTATION">XML_SCHEMAS_NOTATION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_NPINTEGER">XML_SCHEMAS_NPINTEGER</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_PINTEGER">XML_SCHEMAS_PINTEGER</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_QNAME">XML_SCHEMAS_QNAME</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_QUALIF_ATTR">XML_SCHEMAS_QUALIF_ATTR</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_QUALIF_ELEM">XML_SCHEMAS_QUALIF_ELEM</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_SHORT">XML_SCHEMAS_SHORT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_STRING">XML_SCHEMAS_STRING</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TIME">XML_SCHEMAS_TIME</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TOKEN">XML_SCHEMAS_TOKEN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FACETSNEEDVALUE">XML_SCHEMAS_TYPE_FACETSNEEDVALUE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_DEFAULT">XML_SCHEMAS_TYPE_FINAL_DEFAULT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_LIST">XML_SCHEMAS_TYPE_FINAL_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FIXUP_1">XML_SCHEMAS_TYPE_FIXUP_1</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_GLOBAL">XML_SCHEMAS_TYPE_GLOBAL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_HAS_FACETS">XML_SCHEMAS_TYPE_HAS_FACETS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_INTERNAL_INVALID">XML_SCHEMAS_TYPE_INTERNAL_INVALID</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_INTERNAL_RESOLVED">XML_SCHEMAS_TYPE_INTERNAL_RESOLVED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MIXED">XML_SCHEMAS_TYPE_MIXED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_NORMVALUENEEDED">XML_SCHEMAS_TYPE_NORMVALUENEEDED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_REDEFINED">XML_SCHEMAS_TYPE_REDEFINED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ATOMIC">XML_SCHEMAS_TYPE_VARIETY_ATOMIC</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_LIST">XML_SCHEMAS_TYPE_VARIETY_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_UNION">XML_SCHEMAS_TYPE_VARIETY_UNION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE">XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE">XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_WHITESPACE_REPLACE">XML_SCHEMAS_TYPE_WHITESPACE_REPLACE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_UBYTE">XML_SCHEMAS_UBYTE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_UINT">XML_SCHEMAS_UINT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ULONG">XML_SCHEMAS_ULONG</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_UNKNOWN">XML_SCHEMAS_UNKNOWN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_USHORT">XML_SCHEMAS_USHORT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_WILDCARD_COMPLETE">XML_SCHEMAS_WILDCARD_COMPLETE</a><br /> -<a href="html/libxml-schematron.html#XML_SCHEMATRON_OUT_BUFFER">XML_SCHEMATRON_OUT_BUFFER</a><br /> -<a href="html/libxml-schematron.html#XML_SCHEMATRON_OUT_FILE">XML_SCHEMATRON_OUT_FILE</a><br /> -<a href="html/libxml-schematron.html#XML_SCHEMATRON_OUT_IO">XML_SCHEMATRON_OUT_IO</a><br /> -<a href="html/libxml-schematron.html#XML_SCHEMATRON_OUT_QUIET">XML_SCHEMATRON_OUT_QUIET</a><br /> -<a href="html/libxml-schematron.html#XML_SCHEMATRON_OUT_TEXT">XML_SCHEMATRON_OUT_TEXT</a><br /> -<a href="html/libxml-schematron.html#XML_SCHEMATRON_OUT_XML">XML_SCHEMATRON_OUT_XML</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_ATTRINVALID">XML_SCHEMAV_ATTRINVALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_ATTRUNKNOWN">XML_SCHEMAV_ATTRUNKNOWN</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CONSTRUCT">XML_SCHEMAV_CONSTRUCT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_1">XML_SCHEMAV_CVC_ATTRIBUTE_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_2">XML_SCHEMAV_CVC_ATTRIBUTE_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_3">XML_SCHEMAV_CVC_ATTRIBUTE_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_4">XML_SCHEMAV_CVC_ATTRIBUTE_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_AU">XML_SCHEMAV_CVC_AU</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_4">XML_SCHEMAV_CVC_COMPLEX_TYPE_4</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1">XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2">XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3">XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_1">XML_SCHEMAV_CVC_ELT_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_2">XML_SCHEMAV_CVC_ELT_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_3_1">XML_SCHEMAV_CVC_ELT_3_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_3_2_1">XML_SCHEMAV_CVC_ELT_3_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_3_2_2">XML_SCHEMAV_CVC_ELT_3_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_4_1">XML_SCHEMAV_CVC_ELT_4_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_4_2">XML_SCHEMAV_CVC_ELT_4_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_4_3">XML_SCHEMAV_CVC_ELT_4_3</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_1_1">XML_SCHEMAV_CVC_ELT_5_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_1_2">XML_SCHEMAV_CVC_ELT_5_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_2_1">XML_SCHEMAV_CVC_ELT_5_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_2_2_1">XML_SCHEMAV_CVC_ELT_5_2_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_2_2_2_1">XML_SCHEMAV_CVC_ELT_5_2_2_2_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_5_2_2_2_2">XML_SCHEMAV_CVC_ELT_5_2_2_2_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_6">XML_SCHEMAV_CVC_ELT_6</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ELT_7">XML_SCHEMAV_CVC_ELT_7</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ENUMERATION_VALID">XML_SCHEMAV_CVC_ENUMERATION_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_FACET_VALID">XML_SCHEMAV_CVC_FACET_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID">XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_IDC">XML_SCHEMAV_CVC_IDC</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_LENGTH_VALID">XML_SCHEMAV_CVC_LENGTH_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID">XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID">XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MAXLENGTH_VALID">XML_SCHEMAV_CVC_MAXLENGTH_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID">XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MININCLUSIVE_VALID">XML_SCHEMAV_CVC_MININCLUSIVE_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MINLENGTH_VALID">XML_SCHEMAV_CVC_MINLENGTH_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_PATTERN_VALID">XML_SCHEMAV_CVC_PATTERN_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TOTALDIGITS_VALID">XML_SCHEMAV_CVC_TOTALDIGITS_VALID</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_1">XML_SCHEMAV_CVC_TYPE_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_2">XML_SCHEMAV_CVC_TYPE_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_3_1_1">XML_SCHEMAV_CVC_TYPE_3_1_1</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_3_1_2">XML_SCHEMAV_CVC_TYPE_3_1_2</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_WILDCARD">XML_SCHEMAV_CVC_WILDCARD</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING">XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_ELEMCONT">XML_SCHEMAV_ELEMCONT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_ELEMENT_CONTENT">XML_SCHEMAV_ELEMENT_CONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_EXTRACONTENT">XML_SCHEMAV_EXTRACONTENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_FACET">XML_SCHEMAV_FACET</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_HAVEDEFAULT">XML_SCHEMAV_HAVEDEFAULT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_INTERNAL">XML_SCHEMAV_INTERNAL</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_INVALIDATTR">XML_SCHEMAV_INVALIDATTR</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_INVALIDELEM">XML_SCHEMAV_INVALIDELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_ISABSTRACT">XML_SCHEMAV_ISABSTRACT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_MISC">XML_SCHEMAV_MISC</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_MISSING">XML_SCHEMAV_MISSING</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOROLLBACK">XML_SCHEMAV_NOROLLBACK</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOROOT">XML_SCHEMAV_NOROOT</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOTDETERMINIST">XML_SCHEMAV_NOTDETERMINIST</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOTEMPTY">XML_SCHEMAV_NOTEMPTY</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOTNILLABLE">XML_SCHEMAV_NOTNILLABLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOTSIMPLE">XML_SCHEMAV_NOTSIMPLE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOTTOPLEVEL">XML_SCHEMAV_NOTTOPLEVEL</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_NOTYPE">XML_SCHEMAV_NOTYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_UNDECLAREDELEM">XML_SCHEMAV_UNDECLAREDELEM</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_VALUE">XML_SCHEMAV_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_SCHEMAV_WRONGELEM">XML_SCHEMAV_WRONGELEM</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_ANY">XML_SCHEMA_CONTENT_ANY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_BASIC">XML_SCHEMA_CONTENT_BASIC</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_ELEMENTS">XML_SCHEMA_CONTENT_ELEMENTS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_EMPTY">XML_SCHEMA_CONTENT_EMPTY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_MIXED">XML_SCHEMA_CONTENT_MIXED</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS">XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_SIMPLE">XML_SCHEMA_CONTENT_SIMPLE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_CONTENT_UNKNOWN">XML_SCHEMA_CONTENT_UNKNOWN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_EXTRA_ATTR_USE_PROHIB">XML_SCHEMA_EXTRA_ATTR_USE_PROHIB</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_EXTRA_QNAMEREF">XML_SCHEMA_EXTRA_QNAMEREF</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_ENUMERATION">XML_SCHEMA_FACET_ENUMERATION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_FRACTIONDIGITS">XML_SCHEMA_FACET_FRACTIONDIGITS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_LENGTH">XML_SCHEMA_FACET_LENGTH</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MAXEXCLUSIVE">XML_SCHEMA_FACET_MAXEXCLUSIVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MAXINCLUSIVE">XML_SCHEMA_FACET_MAXINCLUSIVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MAXLENGTH">XML_SCHEMA_FACET_MAXLENGTH</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MINEXCLUSIVE">XML_SCHEMA_FACET_MINEXCLUSIVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MININCLUSIVE">XML_SCHEMA_FACET_MININCLUSIVE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_MINLENGTH">XML_SCHEMA_FACET_MINLENGTH</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_PATTERN">XML_SCHEMA_FACET_PATTERN</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_TOTALDIGITS">XML_SCHEMA_FACET_TOTALDIGITS</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_FACET_WHITESPACE">XML_SCHEMA_FACET_WHITESPACE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ALL">XML_SCHEMA_TYPE_ALL</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ANY">XML_SCHEMA_TYPE_ANY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ANY_ATTRIBUTE">XML_SCHEMA_TYPE_ANY_ATTRIBUTE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ATTRIBUTE">XML_SCHEMA_TYPE_ATTRIBUTE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ATTRIBUTEGROUP">XML_SCHEMA_TYPE_ATTRIBUTEGROUP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ATTRIBUTE_USE">XML_SCHEMA_TYPE_ATTRIBUTE_USE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_BASIC">XML_SCHEMA_TYPE_BASIC</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_CHOICE">XML_SCHEMA_TYPE_CHOICE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_COMPLEX">XML_SCHEMA_TYPE_COMPLEX</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_COMPLEX_CONTENT">XML_SCHEMA_TYPE_COMPLEX_CONTENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_ELEMENT">XML_SCHEMA_TYPE_ELEMENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_EXTENSION">XML_SCHEMA_TYPE_EXTENSION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_FACET">XML_SCHEMA_TYPE_FACET</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_GROUP">XML_SCHEMA_TYPE_GROUP</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_IDC_KEY">XML_SCHEMA_TYPE_IDC_KEY</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_IDC_KEYREF">XML_SCHEMA_TYPE_IDC_KEYREF</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_IDC_UNIQUE">XML_SCHEMA_TYPE_IDC_UNIQUE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_LIST">XML_SCHEMA_TYPE_LIST</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_NOTATION">XML_SCHEMA_TYPE_NOTATION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_PARTICLE">XML_SCHEMA_TYPE_PARTICLE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_RESTRICTION">XML_SCHEMA_TYPE_RESTRICTION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_SEQUENCE">XML_SCHEMA_TYPE_SEQUENCE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_SIMPLE">XML_SCHEMA_TYPE_SIMPLE</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_SIMPLE_CONTENT">XML_SCHEMA_TYPE_SIMPLE_CONTENT</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_UNION">XML_SCHEMA_TYPE_UNION</a><br /> -<a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_UR">XML_SCHEMA_TYPE_UR</a><br /> -<a href="html/libxml-xmlschemas.html#XML_SCHEMA_VAL_VC_I_CREATE">XML_SCHEMA_VAL_VC_I_CREATE</a><br /> -<a href="html/libxml-xmlschemastypes.html#XML_SCHEMA_WHITESPACE_COLLAPSE">XML_SCHEMA_WHITESPACE_COLLAPSE</a><br /> -<a href="html/libxml-xmlschemastypes.html#XML_SCHEMA_WHITESPACE_PRESERVE">XML_SCHEMA_WHITESPACE_PRESERVE</a><br /> -<a href="html/libxml-xmlschemastypes.html#XML_SCHEMA_WHITESPACE_REPLACE">XML_SCHEMA_WHITESPACE_REPLACE</a><br /> -<a href="html/libxml-xmlschemastypes.html#XML_SCHEMA_WHITESPACE_UNKNOWN">XML_SCHEMA_WHITESPACE_UNKNOWN</a><br /> -<a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_BOTH">XML_SUBSTITUTE_BOTH</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_NONE">XML_SUBSTITUTE_NONE</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_PEREF">XML_SUBSTITUTE_PEREF</a><br /> -<a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_REF">XML_SUBSTITUTE_REF</a><br /> -<a href="html/libxml-xmlreader.html#XML_TEXTREADER_MODE_CLOSED">XML_TEXTREADER_MODE_CLOSED</a><br /> -<a href="html/libxml-xmlreader.html#XML_TEXTREADER_MODE_EOF">XML_TEXTREADER_MODE_EOF</a><br /> -<a href="html/libxml-xmlreader.html#XML_TEXTREADER_MODE_ERROR">XML_TEXTREADER_MODE_ERROR</a><br /> -<a href="html/libxml-xmlreader.html#XML_TEXTREADER_MODE_INITIAL">XML_TEXTREADER_MODE_INITIAL</a><br /> -<a href="html/libxml-xmlreader.html#XML_TEXTREADER_MODE_INTERACTIVE">XML_TEXTREADER_MODE_INTERACTIVE</a><br /> -<a href="html/libxml-xmlreader.html#XML_TEXTREADER_MODE_READING">XML_TEXTREADER_MODE_READING</a><br /> -<a href="html/libxml-tree.html#XML_TEXT_NODE">XML_TEXT_NODE</a><br /> -<a href="html/libxml-xmlerror.html#XML_TREE_INVALID_DEC">XML_TREE_INVALID_DEC</a><br /> -<a href="html/libxml-xmlerror.html#XML_TREE_INVALID_HEX">XML_TREE_INVALID_HEX</a><br /> -<a href="html/libxml-xmlerror.html#XML_TREE_UNTERMINATED_ENTITY">XML_TREE_UNTERMINATED_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_CATALOG_PI">XML_WAR_CATALOG_PI</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_ENTITY_REDEFINED">XML_WAR_ENTITY_REDEFINED</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_LANG_VALUE">XML_WAR_LANG_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_NS_COLUMN">XML_WAR_NS_COLUMN</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_NS_URI">XML_WAR_NS_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_NS_URI_RELATIVE">XML_WAR_NS_URI_RELATIVE</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_SPACE_VALUE">XML_WAR_SPACE_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_UNDECLARED_ENTITY">XML_WAR_UNDECLARED_ENTITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_WAR_UNKNOWN_VERSION">XML_WAR_UNKNOWN_VERSION</a><br /> -<a href="html/libxml-parser.html#XML_WITH_AUTOMATA">XML_WITH_AUTOMATA</a><br /> -<a href="html/libxml-parser.html#XML_WITH_C14N">XML_WITH_C14N</a><br /> -<a href="html/libxml-parser.html#XML_WITH_CATALOG">XML_WITH_CATALOG</a><br /> -<a href="html/libxml-parser.html#XML_WITH_DEBUG">XML_WITH_DEBUG</a><br /> -<a href="html/libxml-parser.html#XML_WITH_DEBUG_MEM">XML_WITH_DEBUG_MEM</a><br /> -<a href="html/libxml-parser.html#XML_WITH_DEBUG_RUN">XML_WITH_DEBUG_RUN</a><br /> -<a href="html/libxml-parser.html#XML_WITH_EXPR">XML_WITH_EXPR</a><br /> -<a href="html/libxml-parser.html#XML_WITH_FTP">XML_WITH_FTP</a><br /> -<a href="html/libxml-parser.html#XML_WITH_HTML">XML_WITH_HTML</a><br /> -<a href="html/libxml-parser.html#XML_WITH_HTTP">XML_WITH_HTTP</a><br /> -<a href="html/libxml-parser.html#XML_WITH_ICONV">XML_WITH_ICONV</a><br /> -<a href="html/libxml-parser.html#XML_WITH_ISO8859X">XML_WITH_ISO8859X</a><br /> -<a href="html/libxml-parser.html#XML_WITH_LEGACY">XML_WITH_LEGACY</a><br /> -<a href="html/libxml-parser.html#XML_WITH_MODULES">XML_WITH_MODULES</a><br /> -<a href="html/libxml-parser.html#XML_WITH_NONE">XML_WITH_NONE</a><br /> -<a href="html/libxml-parser.html#XML_WITH_OUTPUT">XML_WITH_OUTPUT</a><br /> -<a href="html/libxml-parser.html#XML_WITH_PATTERN">XML_WITH_PATTERN</a><br /> -<a href="html/libxml-parser.html#XML_WITH_PUSH">XML_WITH_PUSH</a><br /> -<a href="html/libxml-parser.html#XML_WITH_READER">XML_WITH_READER</a><br /> -<a href="html/libxml-parser.html#XML_WITH_REGEXP">XML_WITH_REGEXP</a><br /> -<a href="html/libxml-parser.html#XML_WITH_SAX1">XML_WITH_SAX1</a><br /> -<a href="html/libxml-parser.html#XML_WITH_SCHEMAS">XML_WITH_SCHEMAS</a><br /> -<a href="html/libxml-parser.html#XML_WITH_SCHEMATRON">XML_WITH_SCHEMATRON</a><br /> -<a href="html/libxml-parser.html#XML_WITH_THREAD">XML_WITH_THREAD</a><br /> -<a href="html/libxml-parser.html#XML_WITH_TREE">XML_WITH_TREE</a><br /> -<a href="html/libxml-parser.html#XML_WITH_UNICODE">XML_WITH_UNICODE</a><br /> -<a href="html/libxml-parser.html#XML_WITH_VALID">XML_WITH_VALID</a><br /> -<a href="html/libxml-parser.html#XML_WITH_WRITER">XML_WITH_WRITER</a><br /> -<a href="html/libxml-parser.html#XML_WITH_XINCLUDE">XML_WITH_XINCLUDE</a><br /> -<a href="html/libxml-parser.html#XML_WITH_XPATH">XML_WITH_XPATH</a><br /> -<a href="html/libxml-parser.html#XML_WITH_XPTR">XML_WITH_XPTR</a><br /> -<a href="html/libxml-parser.html#XML_WITH_ZLIB">XML_WITH_ZLIB</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_BUILD_FAILED">XML_XINCLUDE_BUILD_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_DEPRECATED_NS">XML_XINCLUDE_DEPRECATED_NS</a><br /> -<a href="html/libxml-tree.html#XML_XINCLUDE_END">XML_XINCLUDE_END</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_ENTITY_DEF_MISMATCH">XML_XINCLUDE_ENTITY_DEF_MISMATCH</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_FALLBACKS_IN_INCLUDE">XML_XINCLUDE_FALLBACKS_IN_INCLUDE</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE">XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_FRAGMENT_ID">XML_XINCLUDE_FRAGMENT_ID</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_HREF_URI">XML_XINCLUDE_HREF_URI</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_INCLUDE_IN_INCLUDE">XML_XINCLUDE_INCLUDE_IN_INCLUDE</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_INVALID_CHAR">XML_XINCLUDE_INVALID_CHAR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_MULTIPLE_ROOT">XML_XINCLUDE_MULTIPLE_ROOT</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_NO_FALLBACK">XML_XINCLUDE_NO_FALLBACK</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_NO_HREF">XML_XINCLUDE_NO_HREF</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_PARSE_VALUE">XML_XINCLUDE_PARSE_VALUE</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_RECURSION">XML_XINCLUDE_RECURSION</a><br /> -<a href="html/libxml-tree.html#XML_XINCLUDE_START">XML_XINCLUDE_START</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_TEXT_DOCUMENT">XML_XINCLUDE_TEXT_DOCUMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_TEXT_FRAGMENT">XML_XINCLUDE_TEXT_FRAGMENT</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_UNKNOWN_ENCODING">XML_XINCLUDE_UNKNOWN_ENCODING</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_XPTR_FAILED">XML_XINCLUDE_XPTR_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_XINCLUDE_XPTR_RESULT">XML_XINCLUDE_XPTR_RESULT</a><br /> -<a href="html/libxml-tree.html#XML_XML_ID">XML_XML_ID</a><br /> -<a href="html/libxml-tree.html#XML_XML_NAMESPACE">XML_XML_NAMESPACE</a><br /> -<a href="html/libxml-xpath.html#XML_XPATH_CHECKNS">XML_XPATH_CHECKNS</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_ENCODING_ERROR">XML_XPATH_ENCODING_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_EXPRESSION_OK">XML_XPATH_EXPRESSION_OK</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_EXPR_ERROR">XML_XPATH_EXPR_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_ARITY">XML_XPATH_INVALID_ARITY</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_CHAR_ERROR">XML_XPATH_INVALID_CHAR_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_CTXT_POSITION">XML_XPATH_INVALID_CTXT_POSITION</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_CTXT_SIZE">XML_XPATH_INVALID_CTXT_SIZE</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_OPERAND">XML_XPATH_INVALID_OPERAND</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_PREDICATE_ERROR">XML_XPATH_INVALID_PREDICATE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_INVALID_TYPE">XML_XPATH_INVALID_TYPE</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_MEMORY_ERROR">XML_XPATH_MEMORY_ERROR</a><br /> -<a href="html/libxml-xpath.html#XML_XPATH_NOVAR">XML_XPATH_NOVAR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_NUMBER_ERROR">XML_XPATH_NUMBER_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_START_LITERAL_ERROR">XML_XPATH_START_LITERAL_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_UNCLOSED_ERROR">XML_XPATH_UNCLOSED_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_UNDEF_PREFIX_ERROR">XML_XPATH_UNDEF_PREFIX_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_UNDEF_VARIABLE_ERROR">XML_XPATH_UNDEF_VARIABLE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_UNFINISHED_LITERAL_ERROR">XML_XPATH_UNFINISHED_LITERAL_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_UNKNOWN_FUNC_ERROR">XML_XPATH_UNKNOWN_FUNC_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPATH_VARIABLE_REF_ERROR">XML_XPATH_VARIABLE_REF_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_CHILDSEQ_START">XML_XPTR_CHILDSEQ_START</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_EVAL_FAILED">XML_XPTR_EVAL_FAILED</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_EXTRA_OBJECTS">XML_XPTR_EXTRA_OBJECTS</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_RESOURCE_ERROR">XML_XPTR_RESOURCE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_SUB_RESOURCE_ERROR">XML_XPTR_SUB_RESOURCE_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_SYNTAX_ERROR">XML_XPTR_SYNTAX_ERROR</a><br /> -<a href="html/libxml-xmlerror.html#XML_XPTR_UNKNOWN_SCHEME">XML_XPTR_UNKNOWN_SCHEME</a><br /> -<a href="html/libxml-xpath.html#XPATH_BOOLEAN">XPATH_BOOLEAN</a><br /> -<a href="html/libxml-xpath.html#XPATH_ENCODING_ERROR">XPATH_ENCODING_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_EXPRESSION_OK">XPATH_EXPRESSION_OK</a><br /> -<a href="html/libxml-xpath.html#XPATH_EXPR_ERROR">XPATH_EXPR_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_ARITY">XPATH_INVALID_ARITY</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_CHAR_ERROR">XPATH_INVALID_CHAR_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_CTXT">XPATH_INVALID_CTXT</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_CTXT_POSITION">XPATH_INVALID_CTXT_POSITION</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_CTXT_SIZE">XPATH_INVALID_CTXT_SIZE</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_OPERAND">XPATH_INVALID_OPERAND</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_PREDICATE_ERROR">XPATH_INVALID_PREDICATE_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_INVALID_TYPE">XPATH_INVALID_TYPE</a><br /> -<a href="html/libxml-xpath.html#XPATH_LOCATIONSET">XPATH_LOCATIONSET</a><br /> -<a href="html/libxml-xpath.html#XPATH_MEMORY_ERROR">XPATH_MEMORY_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_NODESET">XPATH_NODESET</a><br /> -<a href="html/libxml-xpath.html#XPATH_NUMBER">XPATH_NUMBER</a><br /> -<a href="html/libxml-xpath.html#XPATH_NUMBER_ERROR">XPATH_NUMBER_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_POINT">XPATH_POINT</a><br /> -<a href="html/libxml-xpath.html#XPATH_RANGE">XPATH_RANGE</a><br /> -<a href="html/libxml-xpath.html#XPATH_START_LITERAL_ERROR">XPATH_START_LITERAL_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_STRING">XPATH_STRING</a><br /> -<a href="html/libxml-xpath.html#XPATH_UNCLOSED_ERROR">XPATH_UNCLOSED_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_UNDEFINED">XPATH_UNDEFINED</a><br /> -<a href="html/libxml-xpath.html#XPATH_UNDEF_PREFIX_ERROR">XPATH_UNDEF_PREFIX_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_UNDEF_VARIABLE_ERROR">XPATH_UNDEF_VARIABLE_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_UNFINISHED_LITERAL_ERROR">XPATH_UNFINISHED_LITERAL_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_UNKNOWN_FUNC_ERROR">XPATH_UNKNOWN_FUNC_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_USERS">XPATH_USERS</a><br /> -<a href="html/libxml-xpath.html#XPATH_VARIABLE_REF_ERROR">XPATH_VARIABLE_REF_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPATH_XSLT_TREE">XPATH_XSLT_TREE</a><br /> -<a href="html/libxml-xpath.html#XPTR_RESOURCE_ERROR">XPTR_RESOURCE_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPTR_SUB_RESOURCE_ERROR">XPTR_SUB_RESOURCE_ERROR</a><br /> -<a href="html/libxml-xpath.html#XPTR_SYNTAX_ERROR">XPTR_SYNTAX_ERROR</a><br /> -<a href="html/libxml-xpathInternals.html#XP_ERROR">XP_ERROR</a><br /> -<a href="html/libxml-xpathInternals.html#XP_ERROR0">XP_ERROR0</a><br /> -</p><h2>Letter _:</h2><p><a href="html/libxml-xmlexports.html#_REENTRANT">_REENTRANT</a><br /> -<a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> -<a href="html/libxml-HTMLparser.html#_htmlEntityDesc">_htmlEntityDesc</a><br /> -<a href="html/libxml-xlink.html#_xlinkHandler">_xlinkHandler</a><br /> -<a href="html/libxml-tree.html#_xmlAttr">_xmlAttr</a><br /> -<a href="html/libxml-tree.html#_xmlAttribute">_xmlAttribute</a><br /> -<a href="html/libxml-tree.html#_xmlBuffer">_xmlBuffer</a><br /> -<a href="html/libxml-chvalid.html#_xmlChLRange">_xmlChLRange</a><br /> -<a href="html/libxml-chvalid.html#_xmlChRangeGroup">_xmlChRangeGroup</a><br /> -<a href="html/libxml-chvalid.html#_xmlChSRange">_xmlChSRange</a><br /> -<a href="html/libxml-encoding.html#_xmlCharEncodingHandler">_xmlCharEncodingHandler</a><br /> -<a href="html/libxml-tree.html#_xmlDOMWrapCtxt">_xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> -<a href="html/libxml-tree.html#_xmlDtd">_xmlDtd</a><br /> -<a href="html/libxml-tree.html#_xmlElement">_xmlElement</a><br /> -<a href="html/libxml-tree.html#_xmlElementContent">_xmlElementContent</a><br /> -<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> -<a href="html/libxml-tree.html#_xmlEnumeration">_xmlEnumeration</a><br /> -<a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> -<a href="html/libxml-globals.html#_xmlGlobalState">_xmlGlobalState</a><br /> -<a href="html/libxml-tree.html#_xmlID">_xmlID</a><br /> -<a href="html/libxml-xpointer.html#_xmlLocationSet">_xmlLocationSet</a><br /> -<a href="html/libxml-tree.html#_xmlNode">_xmlNode</a><br /> -<a href="html/libxml-xpath.html#_xmlNodeSet">_xmlNodeSet</a><br /> -<a href="html/libxml-tree.html#_xmlNotation">_xmlNotation</a><br /> -<a href="html/libxml-tree.html#_xmlNs">_xmlNs</a><br /> -<a href="html/libxml-xmlIO.html#_xmlOutputBuffer">_xmlOutputBuffer</a><br /> -<a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> -<a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> -<a href="html/libxml-xmlIO.html#_xmlParserInputBuffer">_xmlParserInputBuffer</a><br /> -<a href="html/libxml-parser.html#_xmlParserNodeInfo">_xmlParserNodeInfo</a><br /> -<a href="html/libxml-parser.html#_xmlParserNodeInfoSeq">_xmlParserNodeInfoSeq</a><br /> -<a href="html/libxml-tree.html#_xmlRef">_xmlRef</a><br /> -<a href="html/libxml-parser.html#_xmlSAXHandler">_xmlSAXHandler</a><br /> -<a href="html/libxml-parser.html#_xmlSAXHandlerV1">_xmlSAXHandlerV1</a><br /> -<a href="html/libxml-parser.html#_xmlSAXLocator">_xmlSAXLocator</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaAnnot">_xmlSchemaAnnot</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaAttribute">_xmlSchemaAttribute</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaAttributeGroup">_xmlSchemaAttributeGroup</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaAttributeLink">_xmlSchemaAttributeLink</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaElement">_xmlSchemaElement</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaFacet">_xmlSchemaFacet</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaFacetLink">_xmlSchemaFacetLink</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaNotation">_xmlSchemaNotation</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaType">_xmlSchemaType</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaTypeLink">_xmlSchemaTypeLink</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaWildcard">_xmlSchemaWildcard</a><br /> -<a href="html/libxml-schemasInternals.html#_xmlSchemaWildcardNs">_xmlSchemaWildcardNs</a><br /> -<a href="html/libxml-debugXML.html#_xmlShellCtxt">_xmlShellCtxt</a><br /> -<a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> -<a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathAxis">_xmlXPathAxis</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathFunct">_xmlXPathFunct</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathObject">_xmlXPathObject</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathParserContext">_xmlXPathParserContext</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathType">_xmlXPathType</a><br /> -<a href="html/libxml-xpath.html#_xmlXPathVariable">_xmlXPathVariable</a><br /> -</p><h2>Letter a:</h2><p><a href="html/libxml-SAX.html#attribute">attribute</a><br /> -<a href="html/libxml-SAX.html#attributeDecl">attributeDecl</a><br /> -<a href="html/libxml-parser.html#attributeDeclSAXFunc">attributeDeclSAXFunc</a><br /> -<a href="html/libxml-parser.html#attributeSAXFunc">attributeSAXFunc</a><br /> -</p><h2>Letter c:</h2><p><a href="html/libxml-SAX.html#cdataBlock">cdataBlock</a><br /> -<a href="html/libxml-parser.html#cdataBlockSAXFunc">cdataBlockSAXFunc</a><br /> -<a href="html/libxml-SAX.html#characters">characters</a><br /> -<a href="html/libxml-parser.html#charactersSAXFunc">charactersSAXFunc</a><br /> -<a href="html/libxml-SAX.html#checkNamespace">checkNamespace</a><br /> -<a href="html/libxml-SAX.html#comment">comment</a><br /> -<a href="html/libxml-parser.html#commentSAXFunc">commentSAXFunc</a><br /> -</p><h2>Letter d:</h2><p><a href="html/libxml-DOCBparser.html#docbCreateFileParserCtxt">docbCreateFileParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbCreatePushParserCtxt">docbCreatePushParserCtxt</a><br /> -<a href="html/libxml-globals.html#docbDefaultSAXHandler">docbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#docbDefaultSAXHandlerInit">docbDefaultSAXHandlerInit</a><br /> -<a href="html/libxml-DOCBparser.html#docbDocPtr">docbDocPtr</a><br /> -<a href="html/libxml-DOCBparser.html#docbEncodeEntities">docbEncodeEntities</a><br /> -<a href="html/libxml-DOCBparser.html#docbFreeParserCtxt">docbFreeParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseChunk">docbParseChunk</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseDoc">docbParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseDocument">docbParseDocument</a><br /> -<a href="html/libxml-DOCBparser.html#docbParseFile">docbParseFile</a><br /> -<a href="html/libxml-DOCBparser.html#docbParserCtxt">docbParserCtxt</a><br /> -<a href="html/libxml-DOCBparser.html#docbParserCtxtPtr">docbParserCtxtPtr</a><br /> -<a href="html/libxml-DOCBparser.html#docbParserInput">docbParserInput</a><br /> -<a href="html/libxml-DOCBparser.html#docbParserInputPtr">docbParserInputPtr</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXHandler">docbSAXHandler</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXHandlerPtr">docbSAXHandlerPtr</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseDoc">docbSAXParseDoc</a><br /> -<a href="html/libxml-DOCBparser.html#docbSAXParseFile">docbSAXParseFile</a><br /> -</p><h2>Letter e:</h2><p><a href="html/libxml-SAX.html#elementDecl">elementDecl</a><br /> -<a href="html/libxml-parser.html#elementDeclSAXFunc">elementDeclSAXFunc</a><br /> -<a href="html/libxml-xmlregexp.html#emptyExp">emptyExp</a><br /> -<a href="html/libxml-SAX.html#endDocument">endDocument</a><br /> -<a href="html/libxml-parser.html#endDocumentSAXFunc">endDocumentSAXFunc</a><br /> -<a href="html/libxml-SAX.html#endElement">endElement</a><br /> -<a href="html/libxml-parser.html#endElementNsSAX2Func">endElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#endElementSAXFunc">endElementSAXFunc</a><br /> -<a href="html/libxml-SAX.html#entityDecl">entityDecl</a><br /> -<a href="html/libxml-parser.html#entityDeclSAXFunc">entityDeclSAXFunc</a><br /> -<a href="html/libxml-parser.html#errorSAXFunc">errorSAXFunc</a><br /> -<a href="html/libxml-SAX.html#externalSubset">externalSubset</a><br /> -<a href="html/libxml-parser.html#externalSubsetSAXFunc">externalSubsetSAXFunc</a><br /> -</p><h2>Letter f:</h2><p><a href="html/libxml-parser.html#fatalErrorSAXFunc">fatalErrorSAXFunc</a><br /> -<a href="html/libxml-xmlregexp.html#forbiddenExp">forbiddenExp</a><br /> -<a href="html/libxml-nanoftp.html#ftpDataCallback">ftpDataCallback</a><br /> -<a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> -</p><h2>Letter g:</h2><p><a href="html/libxml-SAX.html#getColumnNumber">getColumnNumber</a><br /> -<a href="html/libxml-SAX.html#getEntity">getEntity</a><br /> -<a href="html/libxml-parser.html#getEntitySAXFunc">getEntitySAXFunc</a><br /> -<a href="html/libxml-SAX.html#getLineNumber">getLineNumber</a><br /> -<a href="html/libxml-SAX.html#getNamespace">getNamespace</a><br /> -<a href="html/libxml-SAX.html#getParameterEntity">getParameterEntity</a><br /> -<a href="html/libxml-parser.html#getParameterEntitySAXFunc">getParameterEntitySAXFunc</a><br /> -<a href="html/libxml-SAX.html#getPublicId">getPublicId</a><br /> -<a href="html/libxml-SAX.html#getSystemId">getSystemId</a><br /> -<a href="html/libxml-SAX.html#globalNamespace">globalNamespace</a><br /> -</p><h2>Letter h:</h2><p><a href="html/libxml-SAX.html#hasExternalSubset">hasExternalSubset</a><br /> -<a href="html/libxml-parser.html#hasExternalSubsetSAXFunc">hasExternalSubsetSAXFunc</a><br /> -<a href="html/libxml-SAX.html#hasInternalSubset">hasInternalSubset</a><br /> -<a href="html/libxml-parser.html#hasInternalSubsetSAXFunc">hasInternalSubsetSAXFunc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAttrAllowed">htmlAttrAllowed</a><br /> -<a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> -<a href="html/libxml-parserInternals.html#htmlCreateFileParserCtxt">htmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreateMemoryParserCtxt">htmlCreateMemoryParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCreatePushParserCtxt">htmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadDoc">htmlCtxtReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadFd">htmlCtxtReadFd</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadFile">htmlCtxtReadFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadIO">htmlCtxtReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReadMemory">htmlCtxtReadMemory</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtReset">htmlCtxtReset</a><br /> -<a href="html/libxml-HTMLparser.html#htmlCtxtUseOptions">htmlCtxtUseOptions</a><br /> -<a href="html/libxml-globals.html#htmlDefaultSAXHandler">htmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#htmlDefaultSAXHandlerInit">htmlDefaultSAXHandlerInit</a><br /> -<a href="html/libxml-HTMLparser.html#htmlDefaultSubelement">htmlDefaultSubelement</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocContentDumpFormatOutput">htmlDocContentDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocContentDumpOutput">htmlDocContentDumpOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDump">htmlDocDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemory">htmlDocDumpMemory</a><br /> -<a href="html/libxml-HTMLtree.html#htmlDocDumpMemoryFormat">htmlDocDumpMemoryFormat</a><br /> -<a href="html/libxml-HTMLparser.html#htmlDocPtr">htmlDocPtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElemDesc">htmlElemDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElemDescPtr">htmlElemDescPtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHere">htmlElementAllowedHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementAllowedHereDesc">htmlElementAllowedHereDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlElementStatusHere">htmlElementStatusHere</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEncodeEntities">htmlEncodeEntities</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityDesc">htmlEntityDesc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityDescPtr">htmlEntityDescPtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityLookup">htmlEntityLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlEntityValueLookup">htmlEntityValueLookup</a><br /> -<a href="html/libxml-HTMLparser.html#htmlFreeParserCtxt">htmlFreeParserCtxt</a><br /> -<a href="html/libxml-HTMLtree.html#htmlGetMetaEncoding">htmlGetMetaEncoding</a><br /> -<a href="html/libxml-HTMLparser.html#htmlHandleOmittedElem">htmlHandleOmittedElem</a><br /> -<a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> -<a href="html/libxml-HTMLtree.html#htmlIsBooleanAttr">htmlIsBooleanAttr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlIsScriptAttribute">htmlIsScriptAttribute</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDoc">htmlNewDoc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNewDocNoDtD">htmlNewDocNoDtD</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNewParserCtxt">htmlNewParserCtxt</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDump">htmlNodeDump</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFile">htmlNodeDumpFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFileFormat">htmlNodeDumpFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpFormatOutput">htmlNodeDumpFormatOutput</a><br /> -<a href="html/libxml-HTMLtree.html#htmlNodeDumpOutput">htmlNodeDumpOutput</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodePtr">htmlNodePtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseCharRef">htmlParseCharRef</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseChunk">htmlParseChunk</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDoc">htmlParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseDocument">htmlParseDocument</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseElement">htmlParseElement</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParseFile">htmlParseFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParserCtxt">htmlParserCtxt</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParserCtxtPtr">htmlParserCtxtPtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParserInput">htmlParserInput</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParserInputPtr">htmlParserInputPtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParserNodeInfo">htmlParserNodeInfo</a><br /> -<a href="html/libxml-HTMLparser.html#htmlParserOption">htmlParserOption</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadDoc">htmlReadDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadFd">htmlReadFd</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadFile">htmlReadFile</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadIO">htmlReadIO</a><br /> -<a href="html/libxml-HTMLparser.html#htmlReadMemory">htmlReadMemory</a><br /> -<a href="html/libxml-HTMLparser.html#htmlRequiredAttrs">htmlRequiredAttrs</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXHandler">htmlSAXHandler</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXHandlerPtr">htmlSAXHandlerPtr</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> -<a href="html/libxml-HTMLparser.html#htmlSAXParseFile">htmlSAXParseFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFile">htmlSaveFile</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFileEnc">htmlSaveFileEnc</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSaveFileFormat">htmlSaveFileFormat</a><br /> -<a href="html/libxml-HTMLtree.html#htmlSetMetaEncoding">htmlSetMetaEncoding</a><br /> -<a href="html/libxml-HTMLparser.html#htmlStatus">htmlStatus</a><br /> -<a href="html/libxml-HTMLparser.html#htmlTagLookup">htmlTagLookup</a><br /> -</p><h2>Letter i:</h2><p><a href="html/libxml-SAX.html#ignorableWhitespace">ignorableWhitespace</a><br /> -<a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> -<a href="html/libxml-xmlerror.html#initGenericErrorDefaultFunc">initGenericErrorDefaultFunc</a><br /> -<a href="html/libxml-SAX.html#initdocbDefaultSAXHandler">initdocbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#inithtmlDefaultSAXHandler">inithtmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> -<a href="html/libxml-parserInternals.html#inputPop">inputPop</a><br /> -<a href="html/libxml-parserInternals.html#inputPush">inputPush</a><br /> -<a href="html/libxml-SAX.html#internalSubset">internalSubset</a><br /> -<a href="html/libxml-parser.html#internalSubsetSAXFunc">internalSubsetSAXFunc</a><br /> -<a href="html/libxml-SAX.html#isStandalone">isStandalone</a><br /> -<a href="html/libxml-parser.html#isStandaloneSAXFunc">isStandaloneSAXFunc</a><br /> -<a href="html/libxml-encoding.html#isolat1ToUTF8">isolat1ToUTF8</a><br /> -</p><h2>Letter n:</h2><p><a href="html/libxml-parserInternals.html#namePop">namePop</a><br /> -<a href="html/libxml-parserInternals.html#namePush">namePush</a><br /> -<a href="html/libxml-SAX.html#namespaceDecl">namespaceDecl</a><br /> -<a href="html/libxml-parserInternals.html#nodePop">nodePop</a><br /> -<a href="html/libxml-parserInternals.html#nodePush">nodePush</a><br /> -<a href="html/libxml-SAX.html#notationDecl">notationDecl</a><br /> -<a href="html/libxml-parser.html#notationDeclSAXFunc">notationDeclSAXFunc</a><br /> -</p><h2>Letter o:</h2><p><a href="html/libxml-globals.html#oldXMLWDcompatibility">oldXMLWDcompatibility</a><br /> -</p><h2>Letter p:</h2><p><a href="html/libxml-SAX.html#processingInstruction">processingInstruction</a><br /> -<a href="html/libxml-parser.html#processingInstructionSAXFunc">processingInstructionSAXFunc</a><br /> -</p><h2>Letter r:</h2><p><a href="html/libxml-SAX.html#reference">reference</a><br /> -<a href="html/libxml-parser.html#referenceSAXFunc">referenceSAXFunc</a><br /> -<a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> -<a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -</p><h2>Letter s:</h2><p><a href="html/libxml-SAX.html#setDocumentLocator">setDocumentLocator</a><br /> -<a href="html/libxml-parser.html#setDocumentLocatorSAXFunc">setDocumentLocatorSAXFunc</a><br /> -<a href="html/libxml-SAX.html#setNamespace">setNamespace</a><br /> -<a href="html/libxml-SAX.html#startDocument">startDocument</a><br /> -<a href="html/libxml-parser.html#startDocumentSAXFunc">startDocumentSAXFunc</a><br /> -<a href="html/libxml-SAX.html#startElement">startElement</a><br /> -<a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> -<a href="html/libxml-parser.html#startElementSAXFunc">startElementSAXFunc</a><br /> -</p><h2>Letter u:</h2><p><a href="html/libxml-SAX.html#unparsedEntityDecl">unparsedEntityDecl</a><br /> -<a href="html/libxml-parser.html#unparsedEntityDeclSAXFunc">unparsedEntityDeclSAXFunc</a><br /> -</p><h2>Letter v:</h2><p><a href="html/libxml-xpathInternals.html#valuePop">valuePop</a><br /> -<a href="html/libxml-xpathInternals.html#valuePush">valuePush</a><br /> -</p><h2>Letter w:</h2><p><a href="html/libxml-parser.html#warningSAXFunc">warningSAXFunc</a><br /> -</p><h2>Letter x:</h2><p><a href="html/libxml-xlink.html#xlinkActuate">xlinkActuate</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkGetDefaultDetect">xlinkGetDefaultDetect</a><br /> -<a href="html/libxml-xlink.html#xlinkGetDefaultHandler">xlinkGetDefaultHandler</a><br /> -<a href="html/libxml-xlink.html#xlinkHRef">xlinkHRef</a><br /> -<a href="html/libxml-xlink.html#xlinkHandler">xlinkHandler</a><br /> -<a href="html/libxml-xlink.html#xlinkHandlerPtr">xlinkHandlerPtr</a><br /> -<a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -<a href="html/libxml-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a><br /> -<a href="html/libxml-xlink.html#xlinkRole">xlinkRole</a><br /> -<a href="html/libxml-xlink.html#xlinkSetDefaultDetect">xlinkSetDefaultDetect</a><br /> -<a href="html/libxml-xlink.html#xlinkSetDefaultHandler">xlinkSetDefaultHandler</a><br /> -<a href="html/libxml-xlink.html#xlinkShow">xlinkShow</a><br /> -<a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> -<a href="html/libxml-xlink.html#xlinkTitle">xlinkTitle</a><br /> -<a href="html/libxml-xlink.html#xlinkType">xlinkType</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogDump">xmlACatalogDump</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogRemove">xmlACatalogRemove</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolve">xmlACatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolvePublic">xmlACatalogResolvePublic</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveSystem">xmlACatalogResolveSystem</a><br /> -<a href="html/libxml-catalog.html#xmlACatalogResolveURI">xmlACatalogResolveURI</a><br /> -<a href="html/libxml-valid.html#xmlAddAttributeDecl">xmlAddAttributeDecl</a><br /> -<a href="html/libxml-tree.html#xmlAddChild">xmlAddChild</a><br /> -<a href="html/libxml-tree.html#xmlAddChildList">xmlAddChildList</a><br /> -<a href="html/libxml-entities.html#xmlAddDocEntity">xmlAddDocEntity</a><br /> -<a href="html/libxml-entities.html#xmlAddDtdEntity">xmlAddDtdEntity</a><br /> -<a href="html/libxml-valid.html#xmlAddElementDecl">xmlAddElementDecl</a><br /> -<a href="html/libxml-encoding.html#xmlAddEncodingAlias">xmlAddEncodingAlias</a><br /> -<a href="html/libxml-valid.html#xmlAddID">xmlAddID</a><br /> -<a href="html/libxml-tree.html#xmlAddNextSibling">xmlAddNextSibling</a><br /> -<a href="html/libxml-valid.html#xmlAddNotationDecl">xmlAddNotationDecl</a><br /> -<a href="html/libxml-tree.html#xmlAddPrevSibling">xmlAddPrevSibling</a><br /> -<a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> -<a href="html/libxml-tree.html#xmlAddSibling">xmlAddSibling</a><br /> -<a href="html/libxml-xmlIO.html#xmlAllocOutputBuffer">xmlAllocOutputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlAllocParserInputBuffer">xmlAllocParserInputBuffer</a><br /> -<a href="html/libxml-tree.html#xmlAttr">xmlAttr</a><br /> -<a href="html/libxml-tree.html#xmlAttrPtr">xmlAttrPtr</a><br /> -<a href="html/libxml-tree.html#xmlAttrSerializeTxtContent">xmlAttrSerializeTxtContent</a><br /> -<a href="html/libxml-tree.html#xmlAttribute">xmlAttribute</a><br /> -<a href="html/libxml-tree.html#xmlAttributeDefault">xmlAttributeDefault</a><br /> -<a href="html/libxml-tree.html#xmlAttributePtr">xmlAttributePtr</a><br /> -<a href="html/libxml-valid.html#xmlAttributeTable">xmlAttributeTable</a><br /> -<a href="html/libxml-valid.html#xmlAttributeTablePtr">xmlAttributeTablePtr</a><br /> -<a href="html/libxml-tree.html#xmlAttributeType">xmlAttributeType</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomata">xmlAutomata</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataCompile">xmlAutomataCompile</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataGetInitState">xmlAutomataGetInitState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataIsDeterminist">xmlAutomataIsDeterminist</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounter">xmlAutomataNewCounter</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewNegTrans">xmlAutomataNewNegTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewState">xmlAutomataNewState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataSetFinalState">xmlAutomataSetFinalState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataState">xmlAutomataState</a><br /> -<a href="html/libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a><br /> -<a href="html/libxml-debugXML.html#xmlBoolToText">xmlBoolToText</a><br /> -<a href="html/libxml-tree.html#xmlBuffer">xmlBuffer</a><br /> -<a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> -<a href="html/libxml-tree.html#xmlBufferAddHead">xmlBufferAddHead</a><br /> -<a href="html/libxml-globals.html#xmlBufferAllocScheme">xmlBufferAllocScheme</a><br /> -<a href="html/libxml-tree.html#xmlBufferAllocationScheme">xmlBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlBufferCCat">xmlBufferCCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferCat">xmlBufferCat</a><br /> -<a href="html/libxml-tree.html#xmlBufferContent">xmlBufferContent</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreate">xmlBufferCreate</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateSize">xmlBufferCreateSize</a><br /> -<a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> -<a href="html/libxml-tree.html#xmlBufferDump">xmlBufferDump</a><br /> -<a href="html/libxml-tree.html#xmlBufferEmpty">xmlBufferEmpty</a><br /> -<a href="html/libxml-tree.html#xmlBufferFree">xmlBufferFree</a><br /> -<a href="html/libxml-tree.html#xmlBufferGrow">xmlBufferGrow</a><br /> -<a href="html/libxml-tree.html#xmlBufferLength">xmlBufferLength</a><br /> -<a href="html/libxml-tree.html#xmlBufferPtr">xmlBufferPtr</a><br /> -<a href="html/libxml-tree.html#xmlBufferResize">xmlBufferResize</a><br /> -<a href="html/libxml-tree.html#xmlBufferSetAllocationScheme">xmlBufferSetAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlBufferShrink">xmlBufferShrink</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteCHAR">xmlBufferWriteCHAR</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteChar">xmlBufferWriteChar</a><br /> -<a href="html/libxml-tree.html#xmlBufferWriteQuotedString">xmlBufferWriteQuotedString</a><br /> -<a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> -<a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> -<a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> -<a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSave">xmlC14NDocSave</a><br /> -<a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> -<a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> -<a href="html/libxml-c14n.html#xmlC14NIsVisibleCallback">xmlC14NIsVisibleCallback</a><br /> -<a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> -<a href="html/libxml-catalog.html#xmlCatalog">xmlCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAdd">xmlCatalogAdd</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAddLocal">xmlCatalogAddLocal</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogAllow">xmlCatalogAllow</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogCleanup">xmlCatalogCleanup</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogConvert">xmlCatalogConvert</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogDump">xmlCatalogDump</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogFreeLocal">xmlCatalogFreeLocal</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetDefaults">xmlCatalogGetDefaults</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetPublic">xmlCatalogGetPublic</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogGetSystem">xmlCatalogGetSystem</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogIsEmpty">xmlCatalogIsEmpty</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolve">xmlCatalogLocalResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogLocalResolveURI">xmlCatalogLocalResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogPrefer">xmlCatalogPrefer</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogPtr">xmlCatalogPtr</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogRemove">xmlCatalogRemove</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolve">xmlCatalogResolve</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolvePublic">xmlCatalogResolvePublic</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolveSystem">xmlCatalogResolveSystem</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogResolveURI">xmlCatalogResolveURI</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDebug">xmlCatalogSetDebug</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> -<a href="html/libxml-catalog.html#xmlCatalogSetDefaults">xmlCatalogSetDefaults</a><br /> -<a href="html/libxml-chvalid.html#xmlChLRange">xmlChLRange</a><br /> -<a href="html/libxml-chvalid.html#xmlChLRangePtr">xmlChLRangePtr</a><br /> -<a href="html/libxml-chvalid.html#xmlChRangeGroup">xmlChRangeGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlChRangeGroupPtr">xmlChRangeGroupPtr</a><br /> -<a href="html/libxml-chvalid.html#xmlChSRange">xmlChSRange</a><br /> -<a href="html/libxml-chvalid.html#xmlChSRangePtr">xmlChSRangePtr</a><br /> -<a href="html/libxml-xmlstring.html#xmlChar">xmlChar</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncCloseFunc">xmlCharEncCloseFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncFirstLine">xmlCharEncFirstLine</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncInFunc">xmlCharEncInFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncOutFunc">xmlCharEncOutFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncoding">xmlCharEncoding</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingHandler">xmlCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingHandlerPtr">xmlCharEncodingHandlerPtr</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingInputFunc">xmlCharEncodingInputFunc</a><br /> -<a href="html/libxml-encoding.html#xmlCharEncodingOutputFunc">xmlCharEncodingOutputFunc</a><br /> -<a href="html/libxml-chvalid.html#xmlCharInRange">xmlCharInRange</a><br /> -<a href="html/libxml-xmlstring.html#xmlCharStrdup">xmlCharStrdup</a><br /> -<a href="html/libxml-xmlstring.html#xmlCharStrndup">xmlCharStrndup</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> -<a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> -<a href="html/libxml-parserInternals.html#xmlCheckLanguageID">xmlCheckLanguageID</a><br /> -<a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> -<a href="html/libxml-xmlversion.html#xmlCheckVersion">xmlCheckVersion</a><br /> -<a href="html/libxml-tree.html#xmlChildrenNode">xmlChildrenNode</a><br /> -<a href="html/libxml-encoding.html#xmlCleanupCharEncodingHandlers">xmlCleanupCharEncodingHandlers</a><br /> -<a href="html/libxml-encoding.html#xmlCleanupEncodingAliases">xmlCleanupEncodingAliases</a><br /> -<a href="html/libxml-globals.html#xmlCleanupGlobals">xmlCleanupGlobals</a><br /> -<a href="html/libxml-xmlIO.html#xmlCleanupInputCallbacks">xmlCleanupInputCallbacks</a><br /> -<a href="html/libxml-xmlmemory.html#xmlCleanupMemory">xmlCleanupMemory</a><br /> -<a href="html/libxml-xmlIO.html#xmlCleanupOutputCallbacks">xmlCleanupOutputCallbacks</a><br /> -<a href="html/libxml-parser.html#xmlCleanupParser">xmlCleanupParser</a><br /> -<a href="html/libxml-entities.html#xmlCleanupPredefinedEntities">xmlCleanupPredefinedEntities</a><br /> -<a href="html/libxml-threads.html#xmlCleanupThreads">xmlCleanupThreads</a><br /> -<a href="html/libxml-parser.html#xmlClearNodeInfoSeq">xmlClearNodeInfoSeq</a><br /> -<a href="html/libxml-parser.html#xmlClearParserCtxt">xmlClearParserCtxt</a><br /> -<a href="html/libxml-catalog.html#xmlConvertSGMLCatalog">xmlConvertSGMLCatalog</a><br /> -<a href="html/libxml-valid.html#xmlCopyAttributeTable">xmlCopyAttributeTable</a><br /> -<a href="html/libxml-parserInternals.html#xmlCopyChar">xmlCopyChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlCopyCharMultiByte">xmlCopyCharMultiByte</a><br /> -<a href="html/libxml-tree.html#xmlCopyDoc">xmlCopyDoc</a><br /> -<a href="html/libxml-valid.html#xmlCopyDocElementContent">xmlCopyDocElementContent</a><br /> -<a href="html/libxml-tree.html#xmlCopyDtd">xmlCopyDtd</a><br /> -<a href="html/libxml-valid.html#xmlCopyElementContent">xmlCopyElementContent</a><br /> -<a href="html/libxml-valid.html#xmlCopyElementTable">xmlCopyElementTable</a><br /> -<a href="html/libxml-entities.html#xmlCopyEntitiesTable">xmlCopyEntitiesTable</a><br /> -<a href="html/libxml-valid.html#xmlCopyEnumeration">xmlCopyEnumeration</a><br /> -<a href="html/libxml-xmlerror.html#xmlCopyError">xmlCopyError</a><br /> -<a href="html/libxml-tree.html#xmlCopyNamespace">xmlCopyNamespace</a><br /> -<a href="html/libxml-tree.html#xmlCopyNamespaceList">xmlCopyNamespaceList</a><br /> -<a href="html/libxml-tree.html#xmlCopyNode">xmlCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlCopyNodeList">xmlCopyNodeList</a><br /> -<a href="html/libxml-valid.html#xmlCopyNotationTable">xmlCopyNotationTable</a><br /> -<a href="html/libxml-tree.html#xmlCopyProp">xmlCopyProp</a><br /> -<a href="html/libxml-tree.html#xmlCopyPropList">xmlCopyPropList</a><br /> -<a href="html/libxml-parser.html#xmlCreateDocParserCtxt">xmlCreateDocParserCtxt</a><br /> -<a href="html/libxml-entities.html#xmlCreateEntitiesTable">xmlCreateEntitiesTable</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateEntityParserCtxt">xmlCreateEntityParserCtxt</a><br /> -<a href="html/libxml-valid.html#xmlCreateEnumeration">xmlCreateEnumeration</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateFileParserCtxt">xmlCreateFileParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreateIOParserCtxt">xmlCreateIOParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlCreateIntSubset">xmlCreateIntSubset</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateMemoryParserCtxt">xmlCreateMemoryParserCtxt</a><br /> -<a href="html/libxml-parser.html#xmlCreatePushParserCtxt">xmlCreatePushParserCtxt</a><br /> -<a href="html/libxml-uri.html#xmlCreateURI">xmlCreateURI</a><br /> -<a href="html/libxml-parserInternals.html#xmlCreateURLParserCtxt">xmlCreateURLParserCtxt</a><br /> -<a href="html/libxml-xmlerror.html#xmlCtxtGetLastError">xmlCtxtGetLastError</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadDoc">xmlCtxtReadDoc</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFd">xmlCtxtReadFd</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadFile">xmlCtxtReadFile</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadIO">xmlCtxtReadIO</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReadMemory">xmlCtxtReadMemory</a><br /> -<a href="html/libxml-parser.html#xmlCtxtReset">xmlCtxtReset</a><br /> -<a href="html/libxml-xmlerror.html#xmlCtxtResetLastError">xmlCtxtResetLastError</a><br /> -<a href="html/libxml-parser.html#xmlCtxtResetPush">xmlCtxtResetPush</a><br /> -<a href="html/libxml-parser.html#xmlCtxtUseOptions">xmlCtxtUseOptions</a><br /> -<a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAcquireNsFunction">xmlDOMWrapAcquireNsFunction</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapAdoptNode">xmlDOMWrapAdoptNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCloneNode">xmlDOMWrapCloneNode</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCtxt">xmlDOMWrapCtxt</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapCtxtPtr">xmlDOMWrapCtxtPtr</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapFreeCtxt">xmlDOMWrapFreeCtxt</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapNewCtxt">xmlDOMWrapNewCtxt</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapReconcileNamespaces">xmlDOMWrapReconcileNamespaces</a><br /> -<a href="html/libxml-tree.html#xmlDOMWrapRemoveNode">xmlDOMWrapRemoveNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugCheckDocument">xmlDebugCheckDocument</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttr">xmlDebugDumpAttr</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpAttrList">xmlDebugDumpAttrList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDTD">xmlDebugDumpDTD</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocument">xmlDebugDumpDocument</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpDocumentHead">xmlDebugDumpDocumentHead</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpEntities">xmlDebugDumpEntities</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNode">xmlDebugDumpNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpNodeList">xmlDebugDumpNodeList</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpOneNode">xmlDebugDumpOneNode</a><br /> -<a href="html/libxml-debugXML.html#xmlDebugDumpString">xmlDebugDumpString</a><br /> -<a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> -<a href="html/libxml-globals.html#xmlDefaultBufferSize">xmlDefaultBufferSize</a><br /> -<a href="html/libxml-globals.html#xmlDefaultSAXHandler">xmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlDefaultSAXHandlerInit">xmlDefaultSAXHandlerInit</a><br /> -<a href="html/libxml-globals.html#xmlDefaultSAXLocator">xmlDefaultSAXLocator</a><br /> -<a href="html/libxml-encoding.html#xmlDelEncodingAlias">xmlDelEncodingAlias</a><br /> -<a href="html/libxml-globals.html#xmlDeregisterNodeDefault">xmlDeregisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlDeregisterNodeDefaultValue">xmlDeregisterNodeDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlDeregisterNodeFunc">xmlDeregisterNodeFunc</a><br /> -<a href="html/libxml-encoding.html#xmlDetectCharEncoding">xmlDetectCharEncoding</a><br /> -<a href="html/libxml-dict.html#xmlDict">xmlDict</a><br /> -<a href="html/libxml-dict.html#xmlDictCleanup">xmlDictCleanup</a><br /> -<a href="html/libxml-dict.html#xmlDictCreate">xmlDictCreate</a><br /> -<a href="html/libxml-dict.html#xmlDictCreateSub">xmlDictCreateSub</a><br /> -<a href="html/libxml-dict.html#xmlDictExists">xmlDictExists</a><br /> -<a href="html/libxml-dict.html#xmlDictFree">xmlDictFree</a><br /> -<a href="html/libxml-dict.html#xmlDictLookup">xmlDictLookup</a><br /> -<a href="html/libxml-dict.html#xmlDictOwns">xmlDictOwns</a><br /> -<a href="html/libxml-dict.html#xmlDictPtr">xmlDictPtr</a><br /> -<a href="html/libxml-dict.html#xmlDictQLookup">xmlDictQLookup</a><br /> -<a href="html/libxml-dict.html#xmlDictReference">xmlDictReference</a><br /> -<a href="html/libxml-dict.html#xmlDictSize">xmlDictSize</a><br /> -<a href="html/libxml-threads.html#xmlDllMain">xmlDllMain</a><br /> -<a href="html/libxml-globals.html#xmlDoValidityCheckingDefaultValue">xmlDoValidityCheckingDefaultValue</a><br /> -<a href="html/libxml-tree.html#xmlDoc">xmlDoc</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNode">xmlDocCopyNode</a><br /> -<a href="html/libxml-tree.html#xmlDocCopyNodeList">xmlDocCopyNodeList</a><br /> -<a href="html/libxml-tree.html#xmlDocDump">xmlDocDump</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemory">xmlDocDumpFormatMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemory">xmlDocDumpMemory</a><br /> -<a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> -<a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> -<a href="html/libxml-tree.html#xmlDocGetRootElement">xmlDocGetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlDocPtr">xmlDocPtr</a><br /> -<a href="html/libxml-tree.html#xmlDocSetRootElement">xmlDocSetRootElement</a><br /> -<a href="html/libxml-tree.html#xmlDtd">xmlDtd</a><br /> -<a href="html/libxml-tree.html#xmlDtdPtr">xmlDtdPtr</a><br /> -<a href="html/libxml-valid.html#xmlDumpAttributeDecl">xmlDumpAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpAttributeTable">xmlDumpAttributeTable</a><br /> -<a href="html/libxml-valid.html#xmlDumpElementDecl">xmlDumpElementDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpElementTable">xmlDumpElementTable</a><br /> -<a href="html/libxml-entities.html#xmlDumpEntitiesTable">xmlDumpEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlDumpEntityDecl">xmlDumpEntityDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpNotationDecl">xmlDumpNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlDumpNotationTable">xmlDumpNotationTable</a><br /> -<a href="html/libxml-tree.html#xmlElemDump">xmlElemDump</a><br /> -<a href="html/libxml-tree.html#xmlElement">xmlElement</a><br /> -<a href="html/libxml-tree.html#xmlElementContent">xmlElementContent</a><br /> -<a href="html/libxml-tree.html#xmlElementContentOccur">xmlElementContentOccur</a><br /> -<a href="html/libxml-tree.html#xmlElementContentPtr">xmlElementContentPtr</a><br /> -<a href="html/libxml-tree.html#xmlElementContentType">xmlElementContentType</a><br /> -<a href="html/libxml-tree.html#xmlElementPtr">xmlElementPtr</a><br /> -<a href="html/libxml-valid.html#xmlElementTable">xmlElementTable</a><br /> -<a href="html/libxml-valid.html#xmlElementTablePtr">xmlElementTablePtr</a><br /> -<a href="html/libxml-tree.html#xmlElementType">xmlElementType</a><br /> -<a href="html/libxml-tree.html#xmlElementTypeVal">xmlElementTypeVal</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> -<a href="html/libxml-entities.html#xmlEncodeEntitiesReentrant">xmlEncodeEntitiesReentrant</a><br /> -<a href="html/libxml-entities.html#xmlEncodeSpecialChars">xmlEncodeSpecialChars</a><br /> -<a href="html/libxml-entities.html#xmlEntitiesTable">xmlEntitiesTable</a><br /> -<a href="html/libxml-entities.html#xmlEntitiesTablePtr">xmlEntitiesTablePtr</a><br /> -<a href="html/libxml-tree.html#xmlEntity">xmlEntity</a><br /> -<a href="html/libxml-tree.html#xmlEntityPtr">xmlEntityPtr</a><br /> -<a href="html/libxml-parserInternals.html#xmlEntityReferenceFunc">xmlEntityReferenceFunc</a><br /> -<a href="html/libxml-entities.html#xmlEntityType">xmlEntityType</a><br /> -<a href="html/libxml-tree.html#xmlEnumeration">xmlEnumeration</a><br /> -<a href="html/libxml-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a><br /> -<a href="html/libxml-parserInternals.html#xmlErrMemory">xmlErrMemory</a><br /> -<a href="html/libxml-xmlerror.html#xmlError">xmlError</a><br /> -<a href="html/libxml-xmlerror.html#xmlErrorDomain">xmlErrorDomain</a><br /> -<a href="html/libxml-xmlerror.html#xmlErrorLevel">xmlErrorLevel</a><br /> -<a href="html/libxml-xmlerror.html#xmlErrorPtr">xmlErrorPtr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxt">xmlExpCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtNbCons">xmlExpCtxtNbCons</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtNbNodes">xmlExpCtxtNbNodes</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpCtxtPtr">xmlExpCtxtPtr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpDump">xmlExpDump</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpExpDerive">xmlExpExpDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpFree">xmlExpFree</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpFreeCtxt">xmlExpFreeCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetLanguage">xmlExpGetLanguage</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpGetStart">xmlExpGetStart</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpIsNillable">xmlExpIsNillable</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpMaxToken">xmlExpMaxToken</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewAtom">xmlExpNewAtom</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewCtxt">xmlExpNewCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewOr">xmlExpNewOr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewRange">xmlExpNewRange</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNewSeq">xmlExpNewSeq</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNode">xmlExpNode</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNodePtr">xmlExpNodePtr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpNodeType">xmlExpNodeType</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpParse">xmlExpParse</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpRef">xmlExpRef</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpStringDerive">xmlExpStringDerive</a><br /> -<a href="html/libxml-xmlregexp.html#xmlExpSubsume">xmlExpSubsume</a><br /> -<a href="html/libxml-parser.html#xmlExternalEntityLoader">xmlExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlFeature">xmlFeature</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileClose">xmlFileClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileMatch">xmlFileMatch</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileOpen">xmlFileOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlFileRead">xmlFileRead</a><br /> -<a href="html/libxml-encoding.html#xmlFindCharEncodingHandler">xmlFindCharEncodingHandler</a><br /> -<a href="html/libxml-globals.html#xmlFree">xmlFree</a><br /> -<a href="html/libxml-valid.html#xmlFreeAttributeTable">xmlFreeAttributeTable</a><br /> -<a href="html/libxml-xmlautomata.html#xmlFreeAutomata">xmlFreeAutomata</a><br /> -<a href="html/libxml-catalog.html#xmlFreeCatalog">xmlFreeCatalog</a><br /> -<a href="html/libxml-tree.html#xmlFreeDoc">xmlFreeDoc</a><br /> -<a href="html/libxml-valid.html#xmlFreeDocElementContent">xmlFreeDocElementContent</a><br /> -<a href="html/libxml-tree.html#xmlFreeDtd">xmlFreeDtd</a><br /> -<a href="html/libxml-valid.html#xmlFreeElementContent">xmlFreeElementContent</a><br /> -<a href="html/libxml-valid.html#xmlFreeElementTable">xmlFreeElementTable</a><br /> -<a href="html/libxml-entities.html#xmlFreeEntitiesTable">xmlFreeEntitiesTable</a><br /> -<a href="html/libxml-valid.html#xmlFreeEnumeration">xmlFreeEnumeration</a><br /> -<a href="html/libxml-xmlmemory.html#xmlFreeFunc">xmlFreeFunc</a><br /> -<a href="html/libxml-valid.html#xmlFreeIDTable">xmlFreeIDTable</a><br /> -<a href="html/libxml-parserInternals.html#xmlFreeInputStream">xmlFreeInputStream</a><br /> -<a href="html/libxml-threads.html#xmlFreeMutex">xmlFreeMutex</a><br /> -<a href="html/libxml-tree.html#xmlFreeNode">xmlFreeNode</a><br /> -<a href="html/libxml-tree.html#xmlFreeNodeList">xmlFreeNodeList</a><br /> -<a href="html/libxml-valid.html#xmlFreeNotationTable">xmlFreeNotationTable</a><br /> -<a href="html/libxml-tree.html#xmlFreeNs">xmlFreeNs</a><br /> -<a href="html/libxml-tree.html#xmlFreeNsList">xmlFreeNsList</a><br /> -<a href="html/libxml-parser.html#xmlFreeParserCtxt">xmlFreeParserCtxt</a><br /> -<a href="html/libxml-xmlIO.html#xmlFreeParserInputBuffer">xmlFreeParserInputBuffer</a><br /> -<a href="html/libxml-pattern.html#xmlFreePattern">xmlFreePattern</a><br /> -<a href="html/libxml-pattern.html#xmlFreePatternList">xmlFreePatternList</a><br /> -<a href="html/libxml-tree.html#xmlFreeProp">xmlFreeProp</a><br /> -<a href="html/libxml-tree.html#xmlFreePropList">xmlFreePropList</a><br /> -<a href="html/libxml-threads.html#xmlFreeRMutex">xmlFreeRMutex</a><br /> -<a href="html/libxml-valid.html#xmlFreeRefTable">xmlFreeRefTable</a><br /> -<a href="html/libxml-pattern.html#xmlFreeStreamCtxt">xmlFreeStreamCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlFreeTextReader">xmlFreeTextReader</a><br /> -<a href="html/libxml-xmlwriter.html#xmlFreeTextWriter">xmlFreeTextWriter</a><br /> -<a href="html/libxml-uri.html#xmlFreeURI">xmlFreeURI</a><br /> -<a href="html/libxml-valid.html#xmlFreeValidCtxt">xmlFreeValidCtxt</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> -<a href="html/libxml-globals.html#xmlGenericError">xmlGenericError</a><br /> -<a href="html/libxml-globals.html#xmlGenericErrorContext">xmlGenericErrorContext</a><br /> -<a href="html/libxml-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a><br /> -<a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingHandler">xmlGetCharEncodingHandler</a><br /> -<a href="html/libxml-encoding.html#xmlGetCharEncodingName">xmlGetCharEncodingName</a><br /> -<a href="html/libxml-tree.html#xmlGetCompressMode">xmlGetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlGetDocCompressMode">xmlGetDocCompressMode</a><br /> -<a href="html/libxml-entities.html#xmlGetDocEntity">xmlGetDocEntity</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdAttrDesc">xmlGetDtdAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdElementDesc">xmlGetDtdElementDesc</a><br /> -<a href="html/libxml-entities.html#xmlGetDtdEntity">xmlGetDtdEntity</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdNotationDesc">xmlGetDtdNotationDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQAttrDesc">xmlGetDtdQAttrDesc</a><br /> -<a href="html/libxml-valid.html#xmlGetDtdQElementDesc">xmlGetDtdQElementDesc</a><br /> -<a href="html/libxml-encoding.html#xmlGetEncodingAlias">xmlGetEncodingAlias</a><br /> -<a href="html/libxml-parser.html#xmlGetExternalEntityLoader">xmlGetExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlGetFeature">xmlGetFeature</a><br /> -<a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> -<a href="html/libxml-threads.html#xmlGetGlobalState">xmlGetGlobalState</a><br /> -<a href="html/libxml-valid.html#xmlGetID">xmlGetID</a><br /> -<a href="html/libxml-tree.html#xmlGetIntSubset">xmlGetIntSubset</a><br /> -<a href="html/libxml-tree.html#xmlGetLastChild">xmlGetLastChild</a><br /> -<a href="html/libxml-xmlerror.html#xmlGetLastError">xmlGetLastError</a><br /> -<a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> -<a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> -<a href="html/libxml-tree.html#xmlGetNodePath">xmlGetNodePath</a><br /> -<a href="html/libxml-tree.html#xmlGetNsList">xmlGetNsList</a><br /> -<a href="html/libxml-tree.html#xmlGetNsProp">xmlGetNsProp</a><br /> -<a href="html/libxml-entities.html#xmlGetParameterEntity">xmlGetParameterEntity</a><br /> -<a href="html/libxml-entities.html#xmlGetPredefinedEntity">xmlGetPredefinedEntity</a><br /> -<a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -<a href="html/libxml-valid.html#xmlGetRefs">xmlGetRefs</a><br /> -<a href="html/libxml-threads.html#xmlGetThreadId">xmlGetThreadId</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> -<a href="html/libxml-globals.html#xmlGetWarningsDefaultValue">xmlGetWarningsDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlGlobalState">xmlGlobalState</a><br /> -<a href="html/libxml-globals.html#xmlGlobalStatePtr">xmlGlobalStatePtr</a><br /> -<a href="html/libxml-parserInternals.html#xmlHandleEntity">xmlHandleEntity</a><br /> -<a href="html/libxml-parser.html#xmlHasFeature">xmlHasFeature</a><br /> -<a href="html/libxml-tree.html#xmlHasNsProp">xmlHasNsProp</a><br /> -<a href="html/libxml-tree.html#xmlHasProp">xmlHasProp</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry2">xmlHashAddEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashAddEntry3">xmlHashAddEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashCopier">xmlHashCopier</a><br /> -<a href="html/libxml-hash.html#xmlHashCopy">xmlHashCopy</a><br /> -<a href="html/libxml-hash.html#xmlHashCreate">xmlHashCreate</a><br /> -<a href="html/libxml-hash.html#xmlHashCreateDict">xmlHashCreateDict</a><br /> -<a href="html/libxml-hash.html#xmlHashDeallocator">xmlHashDeallocator</a><br /> -<a href="html/libxml-hash.html#xmlHashFree">xmlHashFree</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup">xmlHashLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup2">xmlHashLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashLookup3">xmlHashLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup">xmlHashQLookup</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup2">xmlHashQLookup2</a><br /> -<a href="html/libxml-hash.html#xmlHashQLookup3">xmlHashQLookup3</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> -<a href="html/libxml-hash.html#xmlHashScan">xmlHashScan</a><br /> -<a href="html/libxml-hash.html#xmlHashScan3">xmlHashScan3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull">xmlHashScanFull</a><br /> -<a href="html/libxml-hash.html#xmlHashScanFull3">xmlHashScanFull3</a><br /> -<a href="html/libxml-hash.html#xmlHashScanner">xmlHashScanner</a><br /> -<a href="html/libxml-hash.html#xmlHashScannerFull">xmlHashScannerFull</a><br /> -<a href="html/libxml-hash.html#xmlHashSize">xmlHashSize</a><br /> -<a href="html/libxml-hash.html#xmlHashTable">xmlHashTable</a><br /> -<a href="html/libxml-hash.html#xmlHashTablePtr">xmlHashTablePtr</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry">xmlHashUpdateEntry</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry2">xmlHashUpdateEntry2</a><br /> -<a href="html/libxml-hash.html#xmlHashUpdateEntry3">xmlHashUpdateEntry3</a><br /> -<a href="html/libxml-tree.html#xmlID">xmlID</a><br /> -<a href="html/libxml-tree.html#xmlIDPtr">xmlIDPtr</a><br /> -<a href="html/libxml-valid.html#xmlIDTable">xmlIDTable</a><br /> -<a href="html/libxml-valid.html#xmlIDTablePtr">xmlIDTablePtr</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPClose">xmlIOFTPClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPMatch">xmlIOFTPMatch</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPOpen">xmlIOFTPOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOFTPRead">xmlIOFTPRead</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPClose">xmlIOHTTPClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPMatch">xmlIOHTTPMatch</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpen">xmlIOHTTPOpen</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPOpenW">xmlIOHTTPOpenW</a><br /> -<a href="html/libxml-xmlIO.html#xmlIOHTTPRead">xmlIOHTTPRead</a><br /> -<a href="html/libxml-parser.html#xmlIOParseDTD">xmlIOParseDTD</a><br /> -<a href="html/libxml-globals.html#xmlIndentTreeOutput">xmlIndentTreeOutput</a><br /> -<a href="html/libxml-encoding.html#xmlInitCharEncodingHandlers">xmlInitCharEncodingHandlers</a><br /> -<a href="html/libxml-globals.html#xmlInitGlobals">xmlInitGlobals</a><br /> -<a href="html/libxml-xmlmemory.html#xmlInitMemory">xmlInitMemory</a><br /> -<a href="html/libxml-parser.html#xmlInitNodeInfoSeq">xmlInitNodeInfoSeq</a><br /> -<a href="html/libxml-parser.html#xmlInitParser">xmlInitParser</a><br /> -<a href="html/libxml-parser.html#xmlInitParserCtxt">xmlInitParserCtxt</a><br /> -<a href="html/libxml-threads.html#xmlInitThreads">xmlInitThreads</a><br /> -<a href="html/libxml-catalog.html#xmlInitializeCatalog">xmlInitializeCatalog</a><br /> -<a href="html/libxml-globals.html#xmlInitializeGlobalState">xmlInitializeGlobalState</a><br /> -<a href="html/libxml-entities.html#xmlInitializePredefinedEntities">xmlInitializePredefinedEntities</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputCloseCallback">xmlInputCloseCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputMatchCallback">xmlInputMatchCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputOpenCallback">xmlInputOpenCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlInputReadCallback">xmlInputReadCallback</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseChar">xmlIsBaseChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseCharGroup">xmlIsBaseCharGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseCharQ">xmlIsBaseCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBaseChar_ch">xmlIsBaseChar_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlank">xmlIsBlank</a><br /> -<a href="html/libxml-tree.html#xmlIsBlankNode">xmlIsBlankNode</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlankQ">xmlIsBlankQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsBlank_ch">xmlIsBlank_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsChar">xmlIsChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCharGroup">xmlIsCharGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCharQ">xmlIsCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsChar_ch">xmlIsChar_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombining">xmlIsCombining</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombiningGroup">xmlIsCombiningGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlIsCombiningQ">xmlIsCombiningQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigit">xmlIsDigit</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigitGroup">xmlIsDigitGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigitQ">xmlIsDigitQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsDigit_ch">xmlIsDigit_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtender">xmlIsExtender</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtenderGroup">xmlIsExtenderGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtenderQ">xmlIsExtenderQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsExtender_ch">xmlIsExtender_ch</a><br /> -<a href="html/libxml-valid.html#xmlIsID">xmlIsID</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographic">xmlIsIdeographic</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographicGroup">xmlIsIdeographicGroup</a><br /> -<a href="html/libxml-chvalid.html#xmlIsIdeographicQ">xmlIsIdeographicQ</a><br /> -<a href="html/libxml-parserInternals.html#xmlIsLetter">xmlIsLetter</a><br /> -<a href="html/libxml-threads.html#xmlIsMainThread">xmlIsMainThread</a><br /> -<a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar">xmlIsPubidChar</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidCharQ">xmlIsPubidCharQ</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar_ch">xmlIsPubidChar_ch</a><br /> -<a href="html/libxml-chvalid.html#xmlIsPubidChar_tab">xmlIsPubidChar_tab</a><br /> -<a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> -<a href="html/libxml-tree.html#xmlIsXHTML">xmlIsXHTML</a><br /> -<a href="html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault</a><br /> -<a href="html/libxml-globals.html#xmlKeepBlanksDefaultValue">xmlKeepBlanksDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlLastError">xmlLastError</a><br /> -<a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> -<a href="html/libxml-globals.html#xmlLineNumbersDefaultValue">xmlLineNumbersDefaultValue</a><br /> -<a href="html/libxml-list.html#xmlLink">xmlLink</a><br /> -<a href="html/libxml-list.html#xmlLinkGetData">xmlLinkGetData</a><br /> -<a href="html/libxml-list.html#xmlLinkPtr">xmlLinkPtr</a><br /> -<a href="html/libxml-list.html#xmlList">xmlList</a><br /> -<a href="html/libxml-list.html#xmlListAppend">xmlListAppend</a><br /> -<a href="html/libxml-list.html#xmlListClear">xmlListClear</a><br /> -<a href="html/libxml-list.html#xmlListCopy">xmlListCopy</a><br /> -<a href="html/libxml-list.html#xmlListCreate">xmlListCreate</a><br /> -<a href="html/libxml-list.html#xmlListDataCompare">xmlListDataCompare</a><br /> -<a href="html/libxml-list.html#xmlListDeallocator">xmlListDeallocator</a><br /> -<a href="html/libxml-list.html#xmlListDelete">xmlListDelete</a><br /> -<a href="html/libxml-list.html#xmlListDup">xmlListDup</a><br /> -<a href="html/libxml-list.html#xmlListEmpty">xmlListEmpty</a><br /> -<a href="html/libxml-list.html#xmlListEnd">xmlListEnd</a><br /> -<a href="html/libxml-list.html#xmlListFront">xmlListFront</a><br /> -<a href="html/libxml-list.html#xmlListInsert">xmlListInsert</a><br /> -<a href="html/libxml-list.html#xmlListMerge">xmlListMerge</a><br /> -<a href="html/libxml-list.html#xmlListPopBack">xmlListPopBack</a><br /> -<a href="html/libxml-list.html#xmlListPopFront">xmlListPopFront</a><br /> -<a href="html/libxml-list.html#xmlListPtr">xmlListPtr</a><br /> -<a href="html/libxml-list.html#xmlListPushBack">xmlListPushBack</a><br /> -<a href="html/libxml-list.html#xmlListPushFront">xmlListPushFront</a><br /> -<a href="html/libxml-list.html#xmlListRemoveAll">xmlListRemoveAll</a><br /> -<a href="html/libxml-list.html#xmlListRemoveFirst">xmlListRemoveFirst</a><br /> -<a href="html/libxml-list.html#xmlListRemoveLast">xmlListRemoveLast</a><br /> -<a href="html/libxml-list.html#xmlListReverse">xmlListReverse</a><br /> -<a href="html/libxml-list.html#xmlListReverseSearch">xmlListReverseSearch</a><br /> -<a href="html/libxml-list.html#xmlListReverseWalk">xmlListReverseWalk</a><br /> -<a href="html/libxml-list.html#xmlListSearch">xmlListSearch</a><br /> -<a href="html/libxml-list.html#xmlListSize">xmlListSize</a><br /> -<a href="html/libxml-list.html#xmlListSort">xmlListSort</a><br /> -<a href="html/libxml-list.html#xmlListWalk">xmlListWalk</a><br /> -<a href="html/libxml-list.html#xmlListWalker">xmlListWalker</a><br /> -<a href="html/libxml-catalog.html#xmlLoadACatalog">xmlLoadACatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalog">xmlLoadCatalog</a><br /> -<a href="html/libxml-catalog.html#xmlLoadCatalogs">xmlLoadCatalogs</a><br /> -<a href="html/libxml-globals.html#xmlLoadExtDtdDefaultValue">xmlLoadExtDtdDefaultValue</a><br /> -<a href="html/libxml-parser.html#xmlLoadExternalEntity">xmlLoadExternalEntity</a><br /> -<a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> -<a href="html/libxml-xpointer.html#xmlLocationSet">xmlLocationSet</a><br /> -<a href="html/libxml-xpointer.html#xmlLocationSetPtr">xmlLocationSetPtr</a><br /> -<a href="html/libxml-threads.html#xmlLockLibrary">xmlLockLibrary</a><br /> -<a href="html/libxml-debugXML.html#xmlLsCountNode">xmlLsCountNode</a><br /> -<a href="html/libxml-debugXML.html#xmlLsOneNode">xmlLsOneNode</a><br /> -<a href="html/libxml-globals.html#xmlMalloc">xmlMalloc</a><br /> -<a href="html/libxml-globals.html#xmlMallocAtomic">xmlMallocAtomic</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocFunc">xmlMallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemBlocks">xmlMemBlocks</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemDisplay">xmlMemDisplay</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemFree">xmlMemFree</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemMalloc">xmlMemMalloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemRealloc">xmlMemRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemSetup">xmlMemSetup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemShow">xmlMemShow</a><br /> -<a href="html/libxml-globals.html#xmlMemStrdup">xmlMemStrdup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemStrdupLoc">xmlMemStrdupLoc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemUsed">xmlMemUsed</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryDump">xmlMemoryDump</a><br /> -<a href="html/libxml-xmlmemory.html#xmlMemoryStrdup">xmlMemoryStrdup</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModule">xmlModule</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleClose">xmlModuleClose</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleFree">xmlModuleFree</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleOpen">xmlModuleOpen</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleOption">xmlModuleOption</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModulePtr">xmlModulePtr</a><br /> -<a href="html/libxml-xmlmodule.html#xmlModuleSymbol">xmlModuleSymbol</a><br /> -<a href="html/libxml-threads.html#xmlMutex">xmlMutex</a><br /> -<a href="html/libxml-threads.html#xmlMutexLock">xmlMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlMutexPtr">xmlMutexPtr</a><br /> -<a href="html/libxml-threads.html#xmlMutexUnlock">xmlMutexUnlock</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNCName">xmlNamespaceParseNCName</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseNSDef">xmlNamespaceParseNSDef</a><br /> -<a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCheckResponse">xmlNanoFTPCheckResponse</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCleanup">xmlNanoFTPCleanup</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPClose">xmlNanoFTPClose</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCloseConnection">xmlNanoFTPCloseConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnect">xmlNanoFTPConnect</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPConnectTo">xmlNanoFTPConnectTo</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPCwd">xmlNanoFTPCwd</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPDele">xmlNanoFTPDele</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPFreeCtxt">xmlNanoFTPFreeCtxt</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGet">xmlNanoFTPGet</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetConnection">xmlNanoFTPGetConnection</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetResponse">xmlNanoFTPGetResponse</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPGetSocket">xmlNanoFTPGetSocket</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPInit">xmlNanoFTPInit</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPList">xmlNanoFTPList</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPNewCtxt">xmlNanoFTPNewCtxt</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPOpen">xmlNanoFTPOpen</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPProxy">xmlNanoFTPProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPQuit">xmlNanoFTPQuit</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPRead">xmlNanoFTPRead</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> -<a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPCleanup">xmlNanoHTTPCleanup</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPClose">xmlNanoHTTPClose</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPEncoding">xmlNanoHTTPEncoding</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPInit">xmlNanoHTTPInit</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethod">xmlNanoHTTPMethod</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMethodRedir">xmlNanoHTTPMethodRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPMimeType">xmlNanoHTTPMimeType</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpen">xmlNanoHTTPOpen</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPOpenRedir">xmlNanoHTTPOpenRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRead">xmlNanoHTTPRead</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPRedir">xmlNanoHTTPRedir</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPReturnCode">xmlNanoHTTPReturnCode</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPSave">xmlNanoHTTPSave</a><br /> -<a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> -<a href="html/libxml-xmlautomata.html#xmlNewAutomata">xmlNewAutomata</a><br /> -<a href="html/libxml-tree.html#xmlNewCDataBlock">xmlNewCDataBlock</a><br /> -<a href="html/libxml-catalog.html#xmlNewCatalog">xmlNewCatalog</a><br /> -<a href="html/libxml-encoding.html#xmlNewCharEncodingHandler">xmlNewCharEncodingHandler</a><br /> -<a href="html/libxml-tree.html#xmlNewCharRef">xmlNewCharRef</a><br /> -<a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> -<a href="html/libxml-tree.html#xmlNewComment">xmlNewComment</a><br /> -<a href="html/libxml-tree.html#xmlNewDoc">xmlNewDoc</a><br /> -<a href="html/libxml-tree.html#xmlNewDocComment">xmlNewDocComment</a><br /> -<a href="html/libxml-valid.html#xmlNewDocElementContent">xmlNewDocElementContent</a><br /> -<a href="html/libxml-tree.html#xmlNewDocFragment">xmlNewDocFragment</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewDocPI">xmlNewDocPI</a><br /> -<a href="html/libxml-tree.html#xmlNewDocProp">xmlNewDocProp</a><br /> -<a href="html/libxml-tree.html#xmlNewDocRawNode">xmlNewDocRawNode</a><br /> -<a href="html/libxml-tree.html#xmlNewDocText">xmlNewDocText</a><br /> -<a href="html/libxml-tree.html#xmlNewDocTextLen">xmlNewDocTextLen</a><br /> -<a href="html/libxml-tree.html#xmlNewDtd">xmlNewDtd</a><br /> -<a href="html/libxml-valid.html#xmlNewElementContent">xmlNewElementContent</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewEntityInputStream">xmlNewEntityInputStream</a><br /> -<a href="html/libxml-tree.html#xmlNewGlobalNs">xmlNewGlobalNs</a><br /> -<a href="html/libxml-parser.html#xmlNewIOInputStream">xmlNewIOInputStream</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewInputFromFile">xmlNewInputFromFile</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewInputStream">xmlNewInputStream</a><br /> -<a href="html/libxml-threads.html#xmlNewMutex">xmlNewMutex</a><br /> -<a href="html/libxml-tree.html#xmlNewNode">xmlNewNode</a><br /> -<a href="html/libxml-tree.html#xmlNewNodeEatName">xmlNewNodeEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> -<a href="html/libxml-tree.html#xmlNewNsProp">xmlNewNsProp</a><br /> -<a href="html/libxml-tree.html#xmlNewNsPropEatName">xmlNewNsPropEatName</a><br /> -<a href="html/libxml-tree.html#xmlNewPI">xmlNewPI</a><br /> -<a href="html/libxml-parser.html#xmlNewParserCtxt">xmlNewParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlNewProp">xmlNewProp</a><br /> -<a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> -<a href="html/libxml-tree.html#xmlNewReference">xmlNewReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlNewStringInputStream">xmlNewStringInputStream</a><br /> -<a href="html/libxml-tree.html#xmlNewText">xmlNewText</a><br /> -<a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -<a href="html/libxml-tree.html#xmlNewTextLen">xmlNewTextLen</a><br /> -<a href="html/libxml-xmlreader.html#xmlNewTextReader">xmlNewTextReader</a><br /> -<a href="html/libxml-xmlreader.html#xmlNewTextReaderFilename">xmlNewTextReaderFilename</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriter">xmlNewTextWriter</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterFilename">xmlNewTextWriterFilename</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterMemory">xmlNewTextWriterMemory</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterPushParser">xmlNewTextWriterPushParser</a><br /> -<a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> -<a href="html/libxml-valid.html#xmlNewValidCtxt">xmlNewValidCtxt</a><br /> -<a href="html/libxml-parserInternals.html#xmlNextChar">xmlNextChar</a><br /> -<a href="html/libxml-xmlIO.html#xmlNoNetExternalEntityLoader">xmlNoNetExternalEntityLoader</a><br /> -<a href="html/libxml-tree.html#xmlNode">xmlNode</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContent">xmlNodeAddContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeAddContentLen">xmlNodeAddContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeBufGetContent">xmlNodeBufGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> -<a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetContent">xmlNodeGetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetLang">xmlNodeGetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeGetSpacePreserve">xmlNodeGetSpacePreserve</a><br /> -<a href="html/libxml-tree.html#xmlNodeIsText">xmlNodeIsText</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> -<a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> -<a href="html/libxml-tree.html#xmlNodePtr">xmlNodePtr</a><br /> -<a href="html/libxml-xpath.html#xmlNodeSet">xmlNodeSet</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetBase">xmlNodeSetBase</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContent">xmlNodeSetContent</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetContentLen">xmlNodeSetContentLen</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetLang">xmlNodeSetLang</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetName">xmlNodeSetName</a><br /> -<a href="html/libxml-xpath.html#xmlNodeSetPtr">xmlNodeSetPtr</a><br /> -<a href="html/libxml-tree.html#xmlNodeSetSpacePreserve">xmlNodeSetSpacePreserve</a><br /> -<a href="html/libxml-uri.html#xmlNormalizeURIPath">xmlNormalizeURIPath</a><br /> -<a href="html/libxml-xmlIO.html#xmlNormalizeWindowsPath">xmlNormalizeWindowsPath</a><br /> -<a href="html/libxml-tree.html#xmlNotation">xmlNotation</a><br /> -<a href="html/libxml-tree.html#xmlNotationPtr">xmlNotationPtr</a><br /> -<a href="html/libxml-valid.html#xmlNotationTable">xmlNotationTable</a><br /> -<a href="html/libxml-valid.html#xmlNotationTablePtr">xmlNotationTablePtr</a><br /> -<a href="html/libxml-tree.html#xmlNs">xmlNs</a><br /> -<a href="html/libxml-tree.html#xmlNsPtr">xmlNsPtr</a><br /> -<a href="html/libxml-tree.html#xmlNsType">xmlNsType</a><br /> -<a href="html/libxml-tree.html#xmlOutputBuffer">xmlOutputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferClose">xmlOutputBufferClose</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateBuffer">xmlOutputBufferCreateBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFd">xmlOutputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFile">xmlOutputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateFilename">xmlOutputBufferCreateFilename</a><br /> -<a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameDefault">xmlOutputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameFunc">xmlOutputBufferCreateFilenameFunc</a><br /> -<a href="html/libxml-globals.html#xmlOutputBufferCreateFilenameValue">xmlOutputBufferCreateFilenameValue</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferCreateIO">xmlOutputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferFlush">xmlOutputBufferFlush</a><br /> -<a href="html/libxml-tree.html#xmlOutputBufferPtr">xmlOutputBufferPtr</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWrite">xmlOutputBufferWrite</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputBufferWriteString">xmlOutputBufferWriteString</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputCloseCallback">xmlOutputCloseCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputOpenCallback">xmlOutputOpenCallback</a><br /> -<a href="html/libxml-xmlIO.html#xmlOutputWriteCallback">xmlOutputWriteCallback</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttribute">xmlParseAttribute</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeListDecl">xmlParseAttributeListDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemory">xmlParseBalancedChunkMemory</a><br /> -<a href="html/libxml-parser.html#xmlParseBalancedChunkMemoryRecover">xmlParseBalancedChunkMemoryRecover</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> -<a href="html/libxml-catalog.html#xmlParseCatalogFile">xmlParseCatalogFile</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> -<a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> -<a href="html/libxml-parser.html#xmlParseChunk">xmlParseChunk</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseContent">xmlParseContent</a><br /> -<a href="html/libxml-parser.html#xmlParseCtxtExternalEntity">xmlParseCtxtExternalEntity</a><br /> -<a href="html/libxml-parser.html#xmlParseDTD">xmlParseDTD</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> -<a href="html/libxml-parser.html#xmlParseDoc">xmlParseDoc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseDocTypeDecl">xmlParseDocTypeDecl</a><br /> -<a href="html/libxml-parser.html#xmlParseDocument">xmlParseDocument</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementContentDecl">xmlParseElementContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementDecl">xmlParseElementDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEncName">xmlParseEncName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEncodingDecl">xmlParseEncodingDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEndTag">xmlParseEndTag</a><br /> -<a href="html/libxml-parser.html#xmlParseEntity">xmlParseEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityDecl">xmlParseEntityDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEntityValue">xmlParseEntityValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumeratedType">xmlParseEnumeratedType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseEnumerationType">xmlParseEnumerationType</a><br /> -<a href="html/libxml-parser.html#xmlParseExtParsedEnt">xmlParseExtParsedEnt</a><br /> -<a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalID">xmlParseExternalID</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> -<a href="html/libxml-parser.html#xmlParseFile">xmlParseFile</a><br /> -<a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> -<a href="html/libxml-parser.html#xmlParseMemory">xmlParseMemory</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseMisc">xmlParseMisc</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseName">xmlParseName</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNamespace">xmlParseNamespace</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNmtoken">xmlParseNmtoken</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationDecl">xmlParseNotationDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePI">xmlParsePI</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePITarget">xmlParsePITarget</a><br /> -<a href="html/libxml-parserInternals.html#xmlParsePubidLiteral">xmlParsePubidLiteral</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseReference">xmlParseReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseStartTag">xmlParseStartTag</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseSystemLiteral">xmlParseSystemLiteral</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseTextDecl">xmlParseTextDecl</a><br /> -<a href="html/libxml-uri.html#xmlParseURI">xmlParseURI</a><br /> -<a href="html/libxml-uri.html#xmlParseURIRaw">xmlParseURIRaw</a><br /> -<a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseVersionInfo">xmlParseVersionInfo</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseVersionNum">xmlParseVersionNum</a><br /> -<a href="html/libxml-parserInternals.html#xmlParseXMLDecl">xmlParseXMLDecl</a><br /> -<a href="html/libxml-parser.html#xmlParserAddNodeInfo">xmlParserAddNodeInfo</a><br /> -<a href="html/libxml-tree.html#xmlParserCtxt">xmlParserCtxt</a><br /> -<a href="html/libxml-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a><br /> -<a href="html/libxml-globals.html#xmlParserDebugEntities">xmlParserDebugEntities</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserError">xmlParserError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserErrors">xmlParserErrors</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfo">xmlParserFindNodeInfo</a><br /> -<a href="html/libxml-parser.html#xmlParserFindNodeInfoIndex">xmlParserFindNodeInfoIndex</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserGetDirectory">xmlParserGetDirectory</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandlePEReference">xmlParserHandlePEReference</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserHandleReference">xmlParserHandleReference</a><br /> -<a href="html/libxml-tree.html#xmlParserInput">xmlParserInput</a><br /> -<a href="html/libxml-tree.html#xmlParserInputBuffer">xmlParserInputBuffer</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFd">xmlParserInputBufferCreateFd</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFile">xmlParserInputBufferCreateFile</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateFilename">xmlParserInputBufferCreateFilename</a><br /> -<a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameDefault">xmlParserInputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameFunc">xmlParserInputBufferCreateFilenameFunc</a><br /> -<a href="html/libxml-globals.html#xmlParserInputBufferCreateFilenameValue">xmlParserInputBufferCreateFilenameValue</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateIO">xmlParserInputBufferCreateIO</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateMem">xmlParserInputBufferCreateMem</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferCreateStatic">xmlParserInputBufferCreateStatic</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> -<a href="html/libxml-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferPush">xmlParserInputBufferPush</a><br /> -<a href="html/libxml-xmlIO.html#xmlParserInputBufferRead">xmlParserInputBufferRead</a><br /> -<a href="html/libxml-parser.html#xmlParserInputDeallocate">xmlParserInputDeallocate</a><br /> -<a href="html/libxml-parser.html#xmlParserInputGrow">xmlParserInputGrow</a><br /> -<a href="html/libxml-tree.html#xmlParserInputPtr">xmlParserInputPtr</a><br /> -<a href="html/libxml-parser.html#xmlParserInputRead">xmlParserInputRead</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserInputShrink">xmlParserInputShrink</a><br /> -<a href="html/libxml-parser.html#xmlParserInputState">xmlParserInputState</a><br /> -<a href="html/libxml-parserInternals.html#xmlParserMaxDepth">xmlParserMaxDepth</a><br /> -<a href="html/libxml-parser.html#xmlParserMode">xmlParserMode</a><br /> -<a href="html/libxml-parser.html#xmlParserNodeInfo">xmlParserNodeInfo</a><br /> -<a href="html/libxml-parser.html#xmlParserNodeInfoPtr">xmlParserNodeInfoPtr</a><br /> -<a href="html/libxml-parser.html#xmlParserNodeInfoSeq">xmlParserNodeInfoSeq</a><br /> -<a href="html/libxml-parser.html#xmlParserNodeInfoSeqPtr">xmlParserNodeInfoSeqPtr</a><br /> -<a href="html/libxml-parser.html#xmlParserOption">xmlParserOption</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserPrintFileContext">xmlParserPrintFileContext</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserPrintFileInfo">xmlParserPrintFileInfo</a><br /> -<a href="html/libxml-xmlreader.html#xmlParserProperties">xmlParserProperties</a><br /> -<a href="html/libxml-xmlreader.html#xmlParserSeverities">xmlParserSeverities</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> -<a href="html/libxml-globals.html#xmlParserVersion">xmlParserVersion</a><br /> -<a href="html/libxml-xmlerror.html#xmlParserWarning">xmlParserWarning</a><br /> -<a href="html/libxml-uri.html#xmlPathToURI">xmlPathToURI</a><br /> -<a href="html/libxml-pattern.html#xmlPattern">xmlPattern</a><br /> -<a href="html/libxml-pattern.html#xmlPatternFlags">xmlPatternFlags</a><br /> -<a href="html/libxml-pattern.html#xmlPatternFromRoot">xmlPatternFromRoot</a><br /> -<a href="html/libxml-pattern.html#xmlPatternGetStreamCtxt">xmlPatternGetStreamCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMatch">xmlPatternMatch</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMaxDepth">xmlPatternMaxDepth</a><br /> -<a href="html/libxml-pattern.html#xmlPatternMinDepth">xmlPatternMinDepth</a><br /> -<a href="html/libxml-pattern.html#xmlPatternPtr">xmlPatternPtr</a><br /> -<a href="html/libxml-pattern.html#xmlPatternStreamable">xmlPatternStreamable</a><br /> -<a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -<a href="html/libxml-parser.html#xmlPedanticParserDefault">xmlPedanticParserDefault</a><br /> -<a href="html/libxml-globals.html#xmlPedanticParserDefaultValue">xmlPedanticParserDefaultValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlPopInput">xmlPopInput</a><br /> -<a href="html/libxml-xmlIO.html#xmlPopInputCallbacks">xmlPopInputCallbacks</a><br /> -<a href="html/libxml-uri.html#xmlPrintURI">xmlPrintURI</a><br /> -<a href="html/libxml-parserInternals.html#xmlPushInput">xmlPushInput</a><br /> -<a href="html/libxml-threads.html#xmlRMutex">xmlRMutex</a><br /> -<a href="html/libxml-threads.html#xmlRMutexLock">xmlRMutexLock</a><br /> -<a href="html/libxml-threads.html#xmlRMutexPtr">xmlRMutexPtr</a><br /> -<a href="html/libxml-threads.html#xmlRMutexUnlock">xmlRMutexUnlock</a><br /> -<a href="html/libxml-parser.html#xmlReadDoc">xmlReadDoc</a><br /> -<a href="html/libxml-parser.html#xmlReadFd">xmlReadFd</a><br /> -<a href="html/libxml-parser.html#xmlReadFile">xmlReadFile</a><br /> -<a href="html/libxml-parser.html#xmlReadIO">xmlReadIO</a><br /> -<a href="html/libxml-parser.html#xmlReadMemory">xmlReadMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForDoc">xmlReaderForDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFd">xmlReaderForFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForFile">xmlReaderForFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForIO">xmlReaderForIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderForMemory">xmlReaderForMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewDoc">xmlReaderNewDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFd">xmlReaderNewFd</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewFile">xmlReaderNewFile</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewIO">xmlReaderNewIO</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewMemory">xmlReaderNewMemory</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderNewWalker">xmlReaderNewWalker</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderTypes">xmlReaderTypes</a><br /> -<a href="html/libxml-xmlreader.html#xmlReaderWalker">xmlReaderWalker</a><br /> -<a href="html/libxml-globals.html#xmlRealloc">xmlRealloc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocFunc">xmlReallocFunc</a><br /> -<a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> -<a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> -<a href="html/libxml-parser.html#xmlRecoverDoc">xmlRecoverDoc</a><br /> -<a href="html/libxml-parser.html#xmlRecoverFile">xmlRecoverFile</a><br /> -<a href="html/libxml-parser.html#xmlRecoverMemory">xmlRecoverMemory</a><br /> -<a href="html/libxml-tree.html#xmlRef">xmlRef</a><br /> -<a href="html/libxml-tree.html#xmlRefPtr">xmlRefPtr</a><br /> -<a href="html/libxml-valid.html#xmlRefTable">xmlRefTable</a><br /> -<a href="html/libxml-valid.html#xmlRefTablePtr">xmlRefTablePtr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecCallbacks">xmlRegExecCallbacks</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecCtxt">xmlRegExecCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecCtxtPtr">xmlRegExecCtxtPtr</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecErrInfo">xmlRegExecErrInfo</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecNextValues">xmlRegExecNextValues</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString">xmlRegExecPushString</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegExecPushString2">xmlRegExecPushString2</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegFreeExecCtxt">xmlRegFreeExecCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegFreeRegexp">xmlRegFreeRegexp</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexp">xmlRegexp</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpCompile">xmlRegexpCompile</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpExec">xmlRegexpExec</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpIsDeterminist">xmlRegexpIsDeterminist</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpPrint">xmlRegexpPrint</a><br /> -<a href="html/libxml-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a><br /> -<a href="html/libxml-encoding.html#xmlRegisterCharEncodingHandler">xmlRegisterCharEncodingHandler</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterDefaultInputCallbacks">xmlRegisterDefaultInputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterDefaultOutputCallbacks">xmlRegisterDefaultOutputCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterHTTPPostCallbacks">xmlRegisterHTTPPostCallbacks</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterInputCallbacks">xmlRegisterInputCallbacks</a><br /> -<a href="html/libxml-globals.html#xmlRegisterNodeDefault">xmlRegisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlRegisterNodeDefaultValue">xmlRegisterNodeDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlRegisterNodeFunc">xmlRegisterNodeFunc</a><br /> -<a href="html/libxml-xmlIO.html#xmlRegisterOutputCallbacks">xmlRegisterOutputCallbacks</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNG">xmlRelaxNG</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGCleanupTypes">xmlRelaxNGCleanupTypes</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGDump">xmlRelaxNGDump</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGDumpTree">xmlRelaxNGDumpTree</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGFree">xmlRelaxNGFree</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGFreeParserCtxt">xmlRelaxNGFreeParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGFreeValidCtxt">xmlRelaxNGFreeValidCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGInitTypes">xmlRelaxNGInitTypes</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewMemParserCtxt">xmlRelaxNGNewMemParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewParserCtxt">xmlRelaxNGNewParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGNewValidCtxt">xmlRelaxNGNewValidCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParse">xmlRelaxNGParse</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParserCtxt">xmlRelaxNGParserCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParserCtxtPtr">xmlRelaxNGParserCtxtPtr</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGParserFlag">xmlRelaxNGParserFlag</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGPtr">xmlRelaxNGPtr</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetParserStructuredErrors">xmlRelaxNGSetParserStructuredErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGSetValidStructuredErrors">xmlRelaxNGSetValidStructuredErrors</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidCtxt">xmlRelaxNGValidCtxt</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidCtxtPtr">xmlRelaxNGValidCtxtPtr</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidErr">xmlRelaxNGValidErr</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateDoc">xmlRelaxNGValidateDoc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePopElement">xmlRelaxNGValidatePopElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushCData">xmlRelaxNGValidatePushCData</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidatePushElement">xmlRelaxNGValidatePushElement</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidityErrorFunc">xmlRelaxNGValidityErrorFunc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxNGValidityWarningFunc">xmlRelaxNGValidityWarningFunc</a><br /> -<a href="html/libxml-relaxng.html#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a><br /> -<a href="html/libxml-valid.html#xmlRemoveID">xmlRemoveID</a><br /> -<a href="html/libxml-tree.html#xmlRemoveProp">xmlRemoveProp</a><br /> -<a href="html/libxml-valid.html#xmlRemoveRef">xmlRemoveRef</a><br /> -<a href="html/libxml-tree.html#xmlReplaceNode">xmlReplaceNode</a><br /> -<a href="html/libxml-xmlerror.html#xmlResetError">xmlResetError</a><br /> -<a href="html/libxml-xmlerror.html#xmlResetLastError">xmlResetLastError</a><br /> -<a href="html/libxml-tree.html#xmlRootNode">xmlRootNode</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2AttributeDecl">xmlSAX2AttributeDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2CDataBlock">xmlSAX2CDataBlock</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Characters">xmlSAX2Characters</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Comment">xmlSAX2Comment</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ElementDecl">xmlSAX2ElementDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndDocument">xmlSAX2EndDocument</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElement">xmlSAX2EndElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EndElementNs">xmlSAX2EndElementNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2EntityDecl">xmlSAX2EntityDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ExternalSubset">xmlSAX2ExternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetColumnNumber">xmlSAX2GetColumnNumber</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetEntity">xmlSAX2GetEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetLineNumber">xmlSAX2GetLineNumber</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetParameterEntity">xmlSAX2GetParameterEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetPublicId">xmlSAX2GetPublicId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2GetSystemId">xmlSAX2GetSystemId</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2HasExternalSubset">xmlSAX2HasExternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2HasInternalSubset">xmlSAX2HasInternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitDocbDefaultSAXHandler">xmlSAX2InitDocbDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InitHtmlDefaultSAXHandler">xmlSAX2InitHtmlDefaultSAXHandler</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2InternalSubset">xmlSAX2InternalSubset</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2IsStandalone">xmlSAX2IsStandalone</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2NotationDecl">xmlSAX2NotationDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ProcessingInstruction">xmlSAX2ProcessingInstruction</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2Reference">xmlSAX2Reference</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2SetDocumentLocator">xmlSAX2SetDocumentLocator</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartDocument">xmlSAX2StartDocument</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElement">xmlSAX2StartElement</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> -<a href="html/libxml-SAX2.html#xmlSAX2UnparsedEntityDecl">xmlSAX2UnparsedEntityDecl</a><br /> -<a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> -<a href="html/libxml-tree.html#xmlSAXHandler">xmlSAXHandler</a><br /> -<a href="html/libxml-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a><br /> -<a href="html/libxml-parser.html#xmlSAXHandlerV1">xmlSAXHandlerV1</a><br /> -<a href="html/libxml-parser.html#xmlSAXHandlerV1Ptr">xmlSAXHandlerV1Ptr</a><br /> -<a href="html/libxml-tree.html#xmlSAXLocator">xmlSAXLocator</a><br /> -<a href="html/libxml-tree.html#xmlSAXLocatorPtr">xmlSAXLocatorPtr</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDTD">xmlSAXParseDTD</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseDoc">xmlSAXParseDoc</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFile">xmlSAXParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemory">xmlSAXParseMemory</a><br /> -<a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseFile">xmlSAXUserParseFile</a><br /> -<a href="html/libxml-parser.html#xmlSAXUserParseMemory">xmlSAXUserParseMemory</a><br /> -<a href="html/libxml-SAX2.html#xmlSAXVersion">xmlSAXVersion</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveClose">xmlSaveClose</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveCtxt">xmlSaveCtxt</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveCtxtPtr">xmlSaveCtxtPtr</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveDoc">xmlSaveDoc</a><br /> -<a href="html/libxml-tree.html#xmlSaveFile">xmlSaveFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFileEnc">xmlSaveFileEnc</a><br /> -<a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveFlush">xmlSaveFlush</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a><br /> -<a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> -<a href="html/libxml-globals.html#xmlSaveNoEmptyTags">xmlSaveNoEmptyTags</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveOption">xmlSaveOption</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetAttrEscape">xmlSaveSetAttrEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveSetEscape">xmlSaveSetEscape</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToBuffer">xmlSaveToBuffer</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFd">xmlSaveToFd</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToFilename">xmlSaveToFilename</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveToIO">xmlSaveToIO</a><br /> -<a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> -<a href="html/libxml-uri.html#xmlSaveUri">xmlSaveUri</a><br /> -<a href="html/libxml-parserInternals.html#xmlScanName">xmlScanName</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchema">xmlSchema</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAnnot">xmlSchemaAnnot</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAnnotPtr">xmlSchemaAnnotPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAttribute">xmlSchemaAttribute</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAttributeGroup">xmlSchemaAttributeGroup</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAttributeGroupPtr">xmlSchemaAttributeGroupPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAttributeLink">xmlSchemaAttributeLink</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAttributeLinkPtr">xmlSchemaAttributeLinkPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaAttributePtr">xmlSchemaAttributePtr</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCheckFacet">xmlSchemaCheckFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCleanupTypes">xmlSchemaCleanupTypes</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCollapseString">xmlSchemaCollapseString</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCompareValues">xmlSchemaCompareValues</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCompareValuesWhtsp">xmlSchemaCompareValuesWhtsp</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaContentType">xmlSchemaContentType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaCopyValue">xmlSchemaCopyValue</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaDump">xmlSchemaDump</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaElement">xmlSchemaElement</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaElementPtr">xmlSchemaElementPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFacet">xmlSchemaFacet</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFacetLink">xmlSchemaFacetLink</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFacetLinkPtr">xmlSchemaFacetLinkPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFacetPtr">xmlSchemaFacetPtr</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaFree">xmlSchemaFree</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeFacet">xmlSchemaFreeFacet</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaFreeParserCtxt">xmlSchemaFreeParserCtxt</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFreeType">xmlSchemaFreeType</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaFreeValidCtxt">xmlSchemaFreeValidCtxt</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaFreeValue">xmlSchemaFreeValue</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaFreeWildcard">xmlSchemaFreeWildcard</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInListSimpleTypeItemType">xmlSchemaGetBuiltInListSimpleTypeItemType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetBuiltInType">xmlSchemaGetBuiltInType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValue">xmlSchemaGetCanonValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetCanonValueWhtsp">xmlSchemaGetCanonValueWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetFacetValueAsULong">xmlSchemaGetFacetValueAsULong</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaGetValType">xmlSchemaGetValType</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaInitTypes">xmlSchemaInitTypes</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaIsBuiltInTypeFacet">xmlSchemaIsBuiltInTypeFacet</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaIsValid">xmlSchemaIsValid</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewDocParserCtxt">xmlSchemaNewDocParserCtxt</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewFacet">xmlSchemaNewFacet</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewMemParserCtxt">xmlSchemaNewMemParserCtxt</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewNOTATIONValue">xmlSchemaNewNOTATIONValue</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewParserCtxt">xmlSchemaNewParserCtxt</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewQNameValue">xmlSchemaNewQNameValue</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaNewStringValue">xmlSchemaNewStringValue</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaNewValidCtxt">xmlSchemaNewValidCtxt</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaNotation">xmlSchemaNotation</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaNotationPtr">xmlSchemaNotationPtr</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaParse">xmlSchemaParse</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaParserCtxt">xmlSchemaParserCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSAXPlug">xmlSchemaSAXPlug</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSAXPlugPtr">xmlSchemaSAXPlugPtr</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSAXPlugStruct">xmlSchemaSAXPlugStruct</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSAXUnplug">xmlSchemaSAXUnplug</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetParserStructuredErrors">xmlSchemaSetParserStructuredErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidOptions">xmlSchemaSetValidOptions</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidStructuredErrors">xmlSchemaSetValidStructuredErrors</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaType">xmlSchemaType</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaTypeLink">xmlSchemaTypeLink</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaTypeLinkPtr">xmlSchemaTypeLinkPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaTypeType">xmlSchemaTypeType</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaVal">xmlSchemaVal</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxt">xmlSchemaValidCtxt</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxtGetOptions">xmlSchemaValidCtxtGetOptions</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidError">xmlSchemaValidError</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidOption">xmlSchemaValidOption</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacetWhtsp">xmlSchemaValidateFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateFile">xmlSchemaValidateFile</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacetWhtsp">xmlSchemaValidateLengthFacetWhtsp</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a><br /> -<a href="html/libxml-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueAppend">xmlSchemaValueAppend</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsBoolean">xmlSchemaValueGetAsBoolean</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetAsString">xmlSchemaValueGetAsString</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaValueGetNext">xmlSchemaValueGetNext</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaWhiteSpaceReplace">xmlSchemaWhiteSpaceReplace</a><br /> -<a href="html/libxml-xmlschemastypes.html#xmlSchemaWhitespaceValueType">xmlSchemaWhitespaceValueType</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaWildcard">xmlSchemaWildcard</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaWildcardNs">xmlSchemaWildcardNs</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaWildcardNsPtr">xmlSchemaWildcardNsPtr</a><br /> -<a href="html/libxml-schemasInternals.html#xmlSchemaWildcardPtr">xmlSchemaWildcardPtr</a><br /> -<a href="html/libxml-schematron.html#xmlSchematron">xmlSchematron</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronFree">xmlSchematronFree</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronFreeParserCtxt">xmlSchematronFreeParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronFreeValidCtxt">xmlSchematronFreeValidCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewDocParserCtxt">xmlSchematronNewDocParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewMemParserCtxt">xmlSchematronNewMemParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewParserCtxt">xmlSchematronNewParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronNewValidCtxt">xmlSchematronNewValidCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronParse">xmlSchematronParse</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronParserCtxt">xmlSchematronParserCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronParserCtxtPtr">xmlSchematronParserCtxtPtr</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronPtr">xmlSchematronPtr</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidCtxt">xmlSchematronValidCtxt</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidCtxtPtr">xmlSchematronValidCtxtPtr</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidOptions">xmlSchematronValidOptions</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidateDoc">xmlSchematronValidateDoc</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidityErrorFunc">xmlSchematronValidityErrorFunc</a><br /> -<a href="html/libxml-schematron.html#xmlSchematronValidityWarningFunc">xmlSchematronValidityWarningFunc</a><br /> -<a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> -<a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> -<a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> -<a href="html/libxml-tree.html#xmlSetCompressMode">xmlSetCompressMode</a><br /> -<a href="html/libxml-tree.html#xmlSetDocCompressMode">xmlSetDocCompressMode</a><br /> -<a href="html/libxml-parserInternals.html#xmlSetEntityReferenceFunc">xmlSetEntityReferenceFunc</a><br /> -<a href="html/libxml-parser.html#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a><br /> -<a href="html/libxml-parser.html#xmlSetFeature">xmlSetFeature</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> -<a href="html/libxml-tree.html#xmlSetListDoc">xmlSetListDoc</a><br /> -<a href="html/libxml-tree.html#xmlSetNs">xmlSetNs</a><br /> -<a href="html/libxml-tree.html#xmlSetNsProp">xmlSetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlSetProp">xmlSetProp</a><br /> -<a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> -<a href="html/libxml-tree.html#xmlSetTreeDoc">xmlSetTreeDoc</a><br /> -<a href="html/libxml-parser.html#xmlSetupParserForBuffer">xmlSetupParserForBuffer</a><br /> -<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> -<a href="html/libxml-debugXML.html#xmlShellBase">xmlShellBase</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCat">xmlShellCat</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCmd">xmlShellCmd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCtxt">xmlShellCtxt</a><br /> -<a href="html/libxml-debugXML.html#xmlShellCtxtPtr">xmlShellCtxtPtr</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDir">xmlShellDir</a><br /> -<a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> -<a href="html/libxml-debugXML.html#xmlShellList">xmlShellList</a><br /> -<a href="html/libxml-debugXML.html#xmlShellLoad">xmlShellLoad</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintNode">xmlShellPrintNode</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathError">xmlShellPrintXPathError</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPrintXPathResult">xmlShellPrintXPathResult</a><br /> -<a href="html/libxml-debugXML.html#xmlShellPwd">xmlShellPwd</a><br /> -<a href="html/libxml-debugXML.html#xmlShellReadlineFunc">xmlShellReadlineFunc</a><br /> -<a href="html/libxml-debugXML.html#xmlShellSave">xmlShellSave</a><br /> -<a href="html/libxml-debugXML.html#xmlShellValidate">xmlShellValidate</a><br /> -<a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> -<a href="html/libxml-parserInternals.html#xmlSkipBlankChars">xmlSkipBlankChars</a><br /> -<a href="html/libxml-valid.html#xmlSnprintfElementContent">xmlSnprintfElementContent</a><br /> -<a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -<a href="html/libxml-tree.html#xmlSplitQName3">xmlSplitQName3</a><br /> -<a href="html/libxml-valid.html#xmlSprintfElementContent">xmlSprintfElementContent</a><br /> -<a href="html/libxml-parser.html#xmlStopParser">xmlStopParser</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrEqual">xmlStrEqual</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrPrintf">xmlStrPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrQEqual">xmlStrQEqual</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrVPrintf">xmlStrVPrintf</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcasecmp">xmlStrcasecmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcasestr">xmlStrcasestr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrchr">xmlStrchr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrcmp">xmlStrcmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> -<a href="html/libxml-xmlmemory.html#xmlStrdupFunc">xmlStrdupFunc</a><br /> -<a href="html/libxml-pattern.html#xmlStreamCtxt">xmlStreamCtxt</a><br /> -<a href="html/libxml-pattern.html#xmlStreamCtxtPtr">xmlStreamCtxtPtr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPop">xmlStreamPop</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPush">xmlStreamPush</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushAttr">xmlStreamPushAttr</a><br /> -<a href="html/libxml-pattern.html#xmlStreamPushNode">xmlStreamPushNode</a><br /> -<a href="html/libxml-pattern.html#xmlStreamWantsAnyNode">xmlStreamWantsAnyNode</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringComment">xmlStringComment</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringCurrentChar">xmlStringCurrentChar</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> -<a href="html/libxml-tree.html#xmlStringGetNodeList">xmlStringGetNodeList</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> -<a href="html/libxml-tree.html#xmlStringLenGetNodeList">xmlStringLenGetNodeList</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringText">xmlStringText</a><br /> -<a href="html/libxml-parserInternals.html#xmlStringTextNoenc">xmlStringTextNoenc</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrlen">xmlStrlen</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncasecmp">xmlStrncasecmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncat">xmlStrncat</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncatNew">xmlStrncatNew</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrncmp">xmlStrncmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrndup">xmlStrndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrstr">xmlStrstr</a><br /> -<a href="html/libxml-xmlstring.html#xmlStrsub">xmlStrsub</a><br /> -<a href="html/libxml-globals.html#xmlStructuredError">xmlStructuredError</a><br /> -<a href="html/libxml-xmlerror.html#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a><br /> -<a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault</a><br /> -<a href="html/libxml-globals.html#xmlSubstituteEntitiesDefaultValue">xmlSubstituteEntitiesDefaultValue</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchEncoding">xmlSwitchEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchInputEncoding">xmlSwitchInputEncoding</a><br /> -<a href="html/libxml-parserInternals.html#xmlSwitchToEncoding">xmlSwitchToEncoding</a><br /> -<a href="html/libxml-tree.html#xmlTextConcat">xmlTextConcat</a><br /> -<a href="html/libxml-tree.html#xmlTextMerge">xmlTextMerge</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReader">xmlTextReader</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderAttributeCount">xmlTextReaderAttributeCount</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderBaseUri">xmlTextReaderBaseUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderByteConsumed">xmlTextReaderByteConsumed</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderClose">xmlTextReaderClose</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstBaseUri">xmlTextReaderConstBaseUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstEncoding">xmlTextReaderConstEncoding</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstLocalName">xmlTextReaderConstLocalName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstName">xmlTextReaderConstName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstNamespaceUri">xmlTextReaderConstNamespaceUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstPrefix">xmlTextReaderConstPrefix</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstValue">xmlTextReaderConstValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlLang">xmlTextReaderConstXmlLang</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderConstXmlVersion">xmlTextReaderConstXmlVersion</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentDoc">xmlTextReaderCurrentDoc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderCurrentNode">xmlTextReaderCurrentNode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderDepth">xmlTextReaderDepth</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderErrorFunc">xmlTextReaderErrorFunc</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderExpand">xmlTextReaderExpand</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttribute">xmlTextReaderGetAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNo">xmlTextReaderGetAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetAttributeNs">xmlTextReaderGetAttributeNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetErrorHandler">xmlTextReaderGetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserColumnNumber">xmlTextReaderGetParserColumnNumber</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserLineNumber">xmlTextReaderGetParserLineNumber</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetParserProp">xmlTextReaderGetParserProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderHasAttributes">xmlTextReaderHasAttributes</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderHasValue">xmlTextReaderHasValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsDefault">xmlTextReaderIsDefault</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsEmptyElement">xmlTextReaderIsEmptyElement</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsNamespaceDecl">xmlTextReaderIsNamespaceDecl</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderIsValid">xmlTextReaderIsValid</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocalName">xmlTextReaderLocalName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorBaseURI">xmlTextReaderLocatorBaseURI</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorLineNumber">xmlTextReaderLocatorLineNumber</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLocatorPtr">xmlTextReaderLocatorPtr</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMode">xmlTextReaderMode</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttribute">xmlTextReaderMoveToAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNo">xmlTextReaderMoveToAttributeNo</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToAttributeNs">xmlTextReaderMoveToAttributeNs</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToElement">xmlTextReaderMoveToElement</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToFirstAttribute">xmlTextReaderMoveToFirstAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderMoveToNextAttribute">xmlTextReaderMoveToNextAttribute</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderName">xmlTextReaderName</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNamespaceUri">xmlTextReaderNamespaceUri</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNext">xmlTextReaderNext</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPrefix">xmlTextReaderPrefix</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreserve">xmlTextReaderPreserve</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderPtr">xmlTextReaderPtr</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderQuoteChar">xmlTextReaderQuoteChar</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRead">xmlTextReaderRead</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadAttributeValue">xmlTextReaderReadAttributeValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadInnerXml">xmlTextReaderReadInnerXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadOuterXml">xmlTextReaderReadOuterXml</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadState">xmlTextReaderReadState</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderReadString">xmlTextReaderReadString</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidate">xmlTextReaderSchemaValidate</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSchemaValidateCtxt">xmlTextReaderSchemaValidateCtxt</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetParserProp">xmlTextReaderSetParserProp</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetSchema">xmlTextReaderSetSchema</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderSetup">xmlTextReaderSetup</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderStandalone">xmlTextReaderStandalone</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderValue">xmlTextReaderValue</a><br /> -<a href="html/libxml-xmlreader.html#xmlTextReaderXmlLang">xmlTextReaderXmlLang</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriter">xmlTextWriter</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndAttribute">xmlTextWriterEndAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndCDATA">xmlTextWriterEndCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndComment">xmlTextWriterEndComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTD">xmlTextWriterEndDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTDAttlist">xmlTextWriterEndDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTDElement">xmlTextWriterEndDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDTDEntity">xmlTextWriterEndDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndDocument">xmlTextWriterEndDocument</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndElement">xmlTextWriterEndElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterEndPI">xmlTextWriterEndPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterFlush">xmlTextWriterFlush</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterFullEndElement">xmlTextWriterFullEndElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterPtr">xmlTextWriterPtr</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterSetIndent">xmlTextWriterSetIndent</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterSetIndentString">xmlTextWriterSetIndentString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartAttribute">xmlTextWriterStartAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartAttributeNS">xmlTextWriterStartAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartCDATA">xmlTextWriterStartCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartComment">xmlTextWriterStartComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTD">xmlTextWriterStartDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDAttlist">xmlTextWriterStartDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDElement">xmlTextWriterStartDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDTDEntity">xmlTextWriterStartDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartDocument">xmlTextWriterStartDocument</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartElement">xmlTextWriterStartElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartElementNS">xmlTextWriterStartElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterStartPI">xmlTextWriterStartPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteAttribute">xmlTextWriterWriteAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteAttributeNS">xmlTextWriterWriteAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBase64">xmlTextWriterWriteBase64</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteBinHex">xmlTextWriterWriteBinHex</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteCDATA">xmlTextWriterWriteCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteComment">xmlTextWriterWriteComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTD">xmlTextWriterWriteDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDAttlist">xmlTextWriterWriteDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDElement">xmlTextWriterWriteDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDEntity">xmlTextWriterWriteDTDEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntity">xmlTextWriterWriteDTDExternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntityContents">xmlTextWriterWriteDTDExternalEntityContents</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDInternalEntity">xmlTextWriterWriteDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDNotation">xmlTextWriterWriteDTDNotation</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDocType">xmlTextWriterWriteDocType</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteElement">xmlTextWriterWriteElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteElementNS">xmlTextWriterWriteElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttribute">xmlTextWriterWriteFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatAttributeNS">xmlTextWriterWriteFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatCDATA">xmlTextWriterWriteFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatComment">xmlTextWriterWriteFormatComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTD">xmlTextWriterWriteFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDAttlist">xmlTextWriterWriteFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDElement">xmlTextWriterWriteFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatDTDInternalEntity">xmlTextWriterWriteFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElement">xmlTextWriterWriteFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatElementNS">xmlTextWriterWriteFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatPI">xmlTextWriterWriteFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatRaw">xmlTextWriterWriteFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteFormatString">xmlTextWriterWriteFormatString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWritePI">xmlTextWriterWritePI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteProcessingInstruction">xmlTextWriterWriteProcessingInstruction</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRaw">xmlTextWriterWriteRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteRawLen">xmlTextWriterWriteRawLen</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteString">xmlTextWriterWriteString</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttribute">xmlTextWriterWriteVFormatAttribute</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatAttributeNS">xmlTextWriterWriteVFormatAttributeNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatCDATA">xmlTextWriterWriteVFormatCDATA</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatComment">xmlTextWriterWriteVFormatComment</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTD">xmlTextWriterWriteVFormatDTD</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDAttlist">xmlTextWriterWriteVFormatDTDAttlist</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDElement">xmlTextWriterWriteVFormatDTDElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatDTDInternalEntity">xmlTextWriterWriteVFormatDTDInternalEntity</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElement">xmlTextWriterWriteVFormatElement</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatElementNS">xmlTextWriterWriteVFormatElementNS</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatPI">xmlTextWriterWriteVFormatPI</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatRaw">xmlTextWriterWriteVFormatRaw</a><br /> -<a href="html/libxml-xmlwriter.html#xmlTextWriterWriteVFormatString">xmlTextWriterWriteVFormatString</a><br /> -<a href="html/libxml-globals.html#xmlThrDefBufferAllocScheme">xmlThrDefBufferAllocScheme</a><br /> -<a href="html/libxml-globals.html#xmlThrDefDefaultBufferSize">xmlThrDefDefaultBufferSize</a><br /> -<a href="html/libxml-globals.html#xmlThrDefDeregisterNodeDefault">xmlThrDefDeregisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefDoValidityCheckingDefaultValue">xmlThrDefDoValidityCheckingDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefGetWarningsDefaultValue">xmlThrDefGetWarningsDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefIndentTreeOutput">xmlThrDefIndentTreeOutput</a><br /> -<a href="html/libxml-globals.html#xmlThrDefKeepBlanksDefaultValue">xmlThrDefKeepBlanksDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefLineNumbersDefaultValue">xmlThrDefLineNumbersDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefLoadExtDtdDefaultValue">xmlThrDefLoadExtDtdDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefOutputBufferCreateFilenameDefault">xmlThrDefOutputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefParserDebugEntities">xmlThrDefParserDebugEntities</a><br /> -<a href="html/libxml-globals.html#xmlThrDefParserInputBufferCreateFilenameDefault">xmlThrDefParserInputBufferCreateFilenameDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefPedanticParserDefaultValue">xmlThrDefPedanticParserDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefRegisterNodeDefault">xmlThrDefRegisterNodeDefault</a><br /> -<a href="html/libxml-globals.html#xmlThrDefSaveNoEmptyTags">xmlThrDefSaveNoEmptyTags</a><br /> -<a href="html/libxml-globals.html#xmlThrDefSetGenericErrorFunc">xmlThrDefSetGenericErrorFunc</a><br /> -<a href="html/libxml-globals.html#xmlThrDefSetStructuredErrorFunc">xmlThrDefSetStructuredErrorFunc</a><br /> -<a href="html/libxml-globals.html#xmlThrDefSubstituteEntitiesDefaultValue">xmlThrDefSubstituteEntitiesDefaultValue</a><br /> -<a href="html/libxml-globals.html#xmlThrDefTreeIndentString">xmlThrDefTreeIndentString</a><br /> -<a href="html/libxml-globals.html#xmlTreeIndentString">xmlTreeIndentString</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsAegeanNumbers">xmlUCSIsAegeanNumbers</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsAlphabeticPresentationForms">xmlUCSIsAlphabeticPresentationForms</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsArabic">xmlUCSIsArabic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsArabicPresentationFormsA">xmlUCSIsArabicPresentationFormsA</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsArabicPresentationFormsB">xmlUCSIsArabicPresentationFormsB</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsArmenian">xmlUCSIsArmenian</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsArrows">xmlUCSIsArrows</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBasicLatin">xmlUCSIsBasicLatin</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBengali">xmlUCSIsBengali</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBlock">xmlUCSIsBlock</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBlockElements">xmlUCSIsBlockElements</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBopomofo">xmlUCSIsBopomofo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBopomofoExtended">xmlUCSIsBopomofoExtended</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBoxDrawing">xmlUCSIsBoxDrawing</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBraillePatterns">xmlUCSIsBraillePatterns</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsBuhid">xmlUCSIsBuhid</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsByzantineMusicalSymbols">xmlUCSIsByzantineMusicalSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibility">xmlUCSIsCJKCompatibility</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibilityForms">xmlUCSIsCJKCompatibilityForms</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibilityIdeographs">xmlUCSIsCJKCompatibilityIdeographs</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKCompatibilityIdeographsSupplement">xmlUCSIsCJKCompatibilityIdeographsSupplement</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKRadicalsSupplement">xmlUCSIsCJKRadicalsSupplement</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKSymbolsandPunctuation">xmlUCSIsCJKSymbolsandPunctuation</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKUnifiedIdeographs">xmlUCSIsCJKUnifiedIdeographs</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKUnifiedIdeographsExtensionA">xmlUCSIsCJKUnifiedIdeographsExtensionA</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCJKUnifiedIdeographsExtensionB">xmlUCSIsCJKUnifiedIdeographsExtensionB</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCat">xmlUCSIsCat</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatC">xmlUCSIsCatC</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatCc">xmlUCSIsCatCc</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatCf">xmlUCSIsCatCf</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatCo">xmlUCSIsCatCo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatCs">xmlUCSIsCatCs</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatL">xmlUCSIsCatL</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatLl">xmlUCSIsCatLl</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatLm">xmlUCSIsCatLm</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatLo">xmlUCSIsCatLo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatLt">xmlUCSIsCatLt</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatLu">xmlUCSIsCatLu</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatM">xmlUCSIsCatM</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatMc">xmlUCSIsCatMc</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatMe">xmlUCSIsCatMe</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatMn">xmlUCSIsCatMn</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatN">xmlUCSIsCatN</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatNd">xmlUCSIsCatNd</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatNl">xmlUCSIsCatNl</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatNo">xmlUCSIsCatNo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatP">xmlUCSIsCatP</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPc">xmlUCSIsCatPc</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPd">xmlUCSIsCatPd</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPe">xmlUCSIsCatPe</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPf">xmlUCSIsCatPf</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPi">xmlUCSIsCatPi</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPo">xmlUCSIsCatPo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatPs">xmlUCSIsCatPs</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatS">xmlUCSIsCatS</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatSc">xmlUCSIsCatSc</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatSk">xmlUCSIsCatSk</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatSm">xmlUCSIsCatSm</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatSo">xmlUCSIsCatSo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatZ">xmlUCSIsCatZ</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatZl">xmlUCSIsCatZl</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatZp">xmlUCSIsCatZp</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCatZs">xmlUCSIsCatZs</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCherokee">xmlUCSIsCherokee</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCombiningDiacriticalMarks">xmlUCSIsCombiningDiacriticalMarks</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCombiningDiacriticalMarksforSymbols">xmlUCSIsCombiningDiacriticalMarksforSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCombiningHalfMarks">xmlUCSIsCombiningHalfMarks</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCombiningMarksforSymbols">xmlUCSIsCombiningMarksforSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsControlPictures">xmlUCSIsControlPictures</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCurrencySymbols">xmlUCSIsCurrencySymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCypriotSyllabary">xmlUCSIsCypriotSyllabary</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCyrillic">xmlUCSIsCyrillic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsCyrillicSupplement">xmlUCSIsCyrillicSupplement</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsDeseret">xmlUCSIsDeseret</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsDevanagari">xmlUCSIsDevanagari</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsDingbats">xmlUCSIsDingbats</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsEnclosedAlphanumerics">xmlUCSIsEnclosedAlphanumerics</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsEnclosedCJKLettersandMonths">xmlUCSIsEnclosedCJKLettersandMonths</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsEthiopic">xmlUCSIsEthiopic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGeneralPunctuation">xmlUCSIsGeneralPunctuation</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGeometricShapes">xmlUCSIsGeometricShapes</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGeorgian">xmlUCSIsGeorgian</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGothic">xmlUCSIsGothic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGreek">xmlUCSIsGreek</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGreekExtended">xmlUCSIsGreekExtended</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGreekandCoptic">xmlUCSIsGreekandCoptic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGujarati">xmlUCSIsGujarati</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsGurmukhi">xmlUCSIsGurmukhi</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHalfwidthandFullwidthForms">xmlUCSIsHalfwidthandFullwidthForms</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHangulCompatibilityJamo">xmlUCSIsHangulCompatibilityJamo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHangulJamo">xmlUCSIsHangulJamo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHangulSyllables">xmlUCSIsHangulSyllables</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHanunoo">xmlUCSIsHanunoo</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHebrew">xmlUCSIsHebrew</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHighPrivateUseSurrogates">xmlUCSIsHighPrivateUseSurrogates</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHighSurrogates">xmlUCSIsHighSurrogates</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsHiragana">xmlUCSIsHiragana</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsIPAExtensions">xmlUCSIsIPAExtensions</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsIdeographicDescriptionCharacters">xmlUCSIsIdeographicDescriptionCharacters</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKanbun">xmlUCSIsKanbun</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKangxiRadicals">xmlUCSIsKangxiRadicals</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKannada">xmlUCSIsKannada</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKatakana">xmlUCSIsKatakana</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKatakanaPhoneticExtensions">xmlUCSIsKatakanaPhoneticExtensions</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKhmer">xmlUCSIsKhmer</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsKhmerSymbols">xmlUCSIsKhmerSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLao">xmlUCSIsLao</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLatin1Supplement">xmlUCSIsLatin1Supplement</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLatinExtendedA">xmlUCSIsLatinExtendedA</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLatinExtendedAdditional">xmlUCSIsLatinExtendedAdditional</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLatinExtendedB">xmlUCSIsLatinExtendedB</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLetterlikeSymbols">xmlUCSIsLetterlikeSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLimbu">xmlUCSIsLimbu</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLinearBIdeograms">xmlUCSIsLinearBIdeograms</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLinearBSyllabary">xmlUCSIsLinearBSyllabary</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsLowSurrogates">xmlUCSIsLowSurrogates</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMalayalam">xmlUCSIsMalayalam</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMathematicalAlphanumericSymbols">xmlUCSIsMathematicalAlphanumericSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMathematicalOperators">xmlUCSIsMathematicalOperators</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousMathematicalSymbolsA">xmlUCSIsMiscellaneousMathematicalSymbolsA</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousMathematicalSymbolsB">xmlUCSIsMiscellaneousMathematicalSymbolsB</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousSymbols">xmlUCSIsMiscellaneousSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousSymbolsandArrows">xmlUCSIsMiscellaneousSymbolsandArrows</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMiscellaneousTechnical">xmlUCSIsMiscellaneousTechnical</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMongolian">xmlUCSIsMongolian</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMusicalSymbols">xmlUCSIsMusicalSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsMyanmar">xmlUCSIsMyanmar</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsNumberForms">xmlUCSIsNumberForms</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsOgham">xmlUCSIsOgham</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsOldItalic">xmlUCSIsOldItalic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsOpticalCharacterRecognition">xmlUCSIsOpticalCharacterRecognition</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsOriya">xmlUCSIsOriya</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsOsmanya">xmlUCSIsOsmanya</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsPhoneticExtensions">xmlUCSIsPhoneticExtensions</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsPrivateUse">xmlUCSIsPrivateUse</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsPrivateUseArea">xmlUCSIsPrivateUseArea</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsRunic">xmlUCSIsRunic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsShavian">xmlUCSIsShavian</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSinhala">xmlUCSIsSinhala</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSmallFormVariants">xmlUCSIsSmallFormVariants</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSpacingModifierLetters">xmlUCSIsSpacingModifierLetters</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSpecials">xmlUCSIsSpecials</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSuperscriptsandSubscripts">xmlUCSIsSuperscriptsandSubscripts</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementalArrowsA">xmlUCSIsSupplementalArrowsA</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementalArrowsB">xmlUCSIsSupplementalArrowsB</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementalMathematicalOperators">xmlUCSIsSupplementalMathematicalOperators</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementaryPrivateUseAreaA">xmlUCSIsSupplementaryPrivateUseAreaA</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSupplementaryPrivateUseAreaB">xmlUCSIsSupplementaryPrivateUseAreaB</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsSyriac">xmlUCSIsSyriac</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTagalog">xmlUCSIsTagalog</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTagbanwa">xmlUCSIsTagbanwa</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTags">xmlUCSIsTags</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTaiLe">xmlUCSIsTaiLe</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTaiXuanJingSymbols">xmlUCSIsTaiXuanJingSymbols</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTamil">xmlUCSIsTamil</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTelugu">xmlUCSIsTelugu</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsThaana">xmlUCSIsThaana</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsThai">xmlUCSIsThai</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsTibetan">xmlUCSIsTibetan</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsUgaritic">xmlUCSIsUgaritic</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsUnifiedCanadianAboriginalSyllabics">xmlUCSIsUnifiedCanadianAboriginalSyllabics</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsVariationSelectors">xmlUCSIsVariationSelectors</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsVariationSelectorsSupplement">xmlUCSIsVariationSelectorsSupplement</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsYiRadicals">xmlUCSIsYiRadicals</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsYiSyllables">xmlUCSIsYiSyllables</a><br /> -<a href="html/libxml-xmlunicode.html#xmlUCSIsYijingHexagramSymbols">xmlUCSIsYijingHexagramSymbols</a><br /> -<a href="html/libxml-uri.html#xmlURI">xmlURI</a><br /> -<a href="html/libxml-uri.html#xmlURIEscape">xmlURIEscape</a><br /> -<a href="html/libxml-uri.html#xmlURIEscapeStr">xmlURIEscapeStr</a><br /> -<a href="html/libxml-uri.html#xmlURIPtr">xmlURIPtr</a><br /> -<a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Charcmp">xmlUTF8Charcmp</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Size">xmlUTF8Size</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strlen">xmlUTF8Strlen</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strloc">xmlUTF8Strloc</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strndup">xmlUTF8Strndup</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strpos">xmlUTF8Strpos</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsize">xmlUTF8Strsize</a><br /> -<a href="html/libxml-xmlstring.html#xmlUTF8Strsub">xmlUTF8Strsub</a><br /> -<a href="html/libxml-tree.html#xmlUnlinkNode">xmlUnlinkNode</a><br /> -<a href="html/libxml-threads.html#xmlUnlockLibrary">xmlUnlockLibrary</a><br /> -<a href="html/libxml-tree.html#xmlUnsetNsProp">xmlUnsetNsProp</a><br /> -<a href="html/libxml-tree.html#xmlUnsetProp">xmlUnsetProp</a><br /> -<a href="html/libxml-valid.html#xmlValidBuildContentModel">xmlValidBuildContentModel</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxt">xmlValidCtxt</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidCtxtPtr">xmlValidCtxtPtr</a><br /> -<a href="html/libxml-valid.html#xmlValidGetPotentialChildren">xmlValidGetPotentialChildren</a><br /> -<a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> -<a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidState">xmlValidState</a><br /> -<a href="html/libxml-valid.html#xmlValidStatePtr">xmlValidStatePtr</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeDecl">xmlValidateAttributeDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocument">xmlValidateDocument</a><br /> -<a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd</a><br /> -<a href="html/libxml-valid.html#xmlValidateDtdFinal">xmlValidateDtdFinal</a><br /> -<a href="html/libxml-valid.html#xmlValidateElement">xmlValidateElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateElementDecl">xmlValidateElementDecl</a><br /> -<a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> -<a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> -<a href="html/libxml-tree.html#xmlValidateName">xmlValidateName</a><br /> -<a href="html/libxml-valid.html#xmlValidateNameValue">xmlValidateNameValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNamesValue">xmlValidateNamesValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNmtokenValue">xmlValidateNmtokenValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNmtokensValue">xmlValidateNmtokensValue</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> -<a href="html/libxml-valid.html#xmlValidateNotationUse">xmlValidateNotationUse</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneAttribute">xmlValidateOneAttribute</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -<a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> -<a href="html/libxml-valid.html#xmlValidatePopElement">xmlValidatePopElement</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushCData">xmlValidatePushCData</a><br /> -<a href="html/libxml-valid.html#xmlValidatePushElement">xmlValidatePushElement</a><br /> -<a href="html/libxml-tree.html#xmlValidateQName">xmlValidateQName</a><br /> -<a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> -<a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> -<a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeCtxt">xmlXIncludeCtxt</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeCtxtPtr">xmlXIncludeCtxtPtr</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeFreeContext">xmlXIncludeFreeContext</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeNewContext">xmlXIncludeNewContext</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcess">xmlXIncludeProcess</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlags">xmlXIncludeProcessFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessFlagsData">xmlXIncludeProcessFlagsData</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTree">xmlXIncludeProcessTree</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeProcessTreeFlags">xmlXIncludeProcessTreeFlags</a><br /> -<a href="html/libxml-xinclude.html#xmlXIncludeSetFlags">xmlXIncludeSetFlags</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathAddValues">xmlXPathAddValues</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxis">xmlXPathAxis</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxisFunc">xmlXPathAxisFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathAxisPtr">xmlXPathAxisPtr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathBooleanFunction">xmlXPathBooleanFunction</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastBooleanToNumber">xmlXPathCastBooleanToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastBooleanToString">xmlXPathCastBooleanToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToBoolean">xmlXPathCastNodeSetToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToNumber">xmlXPathCastNodeSetToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeSetToString">xmlXPathCastNodeSetToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeToNumber">xmlXPathCastNodeToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNodeToString">xmlXPathCastNodeToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNumberToBoolean">xmlXPathCastNumberToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastNumberToString">xmlXPathCastNumberToString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastStringToBoolean">xmlXPathCastStringToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastStringToNumber">xmlXPathCastStringToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToBoolean">xmlXPathCastToBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToNumber">xmlXPathCastToNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCastToString">xmlXPathCastToString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCeilingFunction">xmlXPathCeilingFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCheckError">xmlXPathCheckError</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCmpNodes">xmlXPathCmpNodes</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompExpr">xmlXPathCompExpr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompExprPtr">xmlXPathCompExprPtr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCompareValues">xmlXPathCompareValues</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompile">xmlXPathCompile</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompiledEval">xmlXPathCompiledEval</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCompiledEvalToBoolean">xmlXPathCompiledEvalToBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathConcatFunction">xmlXPathConcatFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathContainsFunction">xmlXPathContainsFunction</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContext">xmlXPathContext</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextPtr">xmlXPathContextPtr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathContextSetCache">xmlXPathContextSetCache</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertBoolean">xmlXPathConvertBoolean</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertFunc">xmlXPathConvertFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertNumber">xmlXPathConvertNumber</a><br /> -<a href="html/libxml-xpath.html#xmlXPathConvertString">xmlXPathConvertString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathCountFunction">xmlXPathCountFunction</a><br /> -<a href="html/libxml-xpath.html#xmlXPathCtxtCompile">xmlXPathCtxtCompile</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpCompExpr">xmlXPathDebugDumpCompExpr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpObject">xmlXPathDebugDumpObject</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinct">xmlXPathDistinct</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDistinctSorted">xmlXPathDistinctSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathDivValues">xmlXPathDivValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEmptyNodeSet">xmlXPathEmptyNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEqualValues">xmlXPathEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathErr">xmlXPathErr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathError">xmlXPathError</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEval">xmlXPathEval</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvalExpr">xmlXPathEvalExpr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalExpression">xmlXPathEvalExpression</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalFunc">xmlXPathEvalFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathEvalPredicate">xmlXPathEvalPredicate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathEvaluatePredicateResult">xmlXPathEvaluatePredicateResult</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFalseFunction">xmlXPathFalseFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFloorFunction">xmlXPathFloorFunction</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeCompExpr">xmlXPathFreeCompExpr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeContext">xmlXPathFreeContext</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeNodeSet">xmlXPathFreeNodeSet</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeNodeSetList">xmlXPathFreeNodeSetList</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFreeObject">xmlXPathFreeObject</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFreeParserContext">xmlXPathFreeParserContext</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFuncLookupFunc">xmlXPathFuncLookupFunc</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFuncPtr">xmlXPathFuncPtr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFunct">xmlXPathFunct</a><br /> -<a href="html/libxml-xpath.html#xmlXPathFunction">xmlXPathFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookup">xmlXPathFunctionLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathFunctionLookupNS">xmlXPathFunctionLookupNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathGetContextNode">xmlXPathGetContextNode</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathGetDocument">xmlXPathGetDocument</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathGetError">xmlXPathGetError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> -<a href="html/libxml-xpath.html#xmlXPathInit">xmlXPathInit</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> -<a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathIsNodeType">xmlXPathIsNodeType</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLangFunction">xmlXPathLangFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLastFunction">xmlXPathLastFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeading">xmlXPathLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLeadingSorted">xmlXPathLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathLocalNameFunction">xmlXPathLocalNameFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathModValues">xmlXPathModValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathMultValues">xmlXPathMultValues</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNAN">xmlXPathNAN</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNINF">xmlXPathNINF</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNamespaceURIFunction">xmlXPathNamespaceURIFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewBoolean">xmlXPathNewBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewCString">xmlXPathNewCString</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNewContext">xmlXPathNewContext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewFloat">xmlXPathNewFloat</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSet">xmlXPathNewNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewNodeSetList">xmlXPathNewNodeSetList</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewParserContext">xmlXPathNewParserContext</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewString">xmlXPathNewString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNewValueTree">xmlXPathNewValueTree</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestor">xmlXPathNextAncestor</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAncestorOrSelf">xmlXPathNextAncestorOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextAttribute">xmlXPathNextAttribute</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextChild">xmlXPathNextChild</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendant">xmlXPathNextDescendant</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextDescendantOrSelf">xmlXPathNextDescendantOrSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowing">xmlXPathNextFollowing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextFollowingSibling">xmlXPathNextFollowingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextNamespace">xmlXPathNextNamespace</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextParent">xmlXPathNextParent</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPreceding">xmlXPathNextPreceding</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextPrecedingSibling">xmlXPathNextPrecedingSibling</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNextSelf">xmlXPathNextSelf</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeading">xmlXPathNodeLeading</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeLeadingSorted">xmlXPathNodeLeadingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAdd">xmlXPathNodeSetAdd</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddNs">xmlXPathNodeSetAddNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetAddUnique">xmlXPathNodeSetAddUnique</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetContains">xmlXPathNodeSetContains</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetCreate">xmlXPathNodeSetCreate</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetDel">xmlXPathNodeSetDel</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetFreeNs">xmlXPathNodeSetFreeNs</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetGetLength">xmlXPathNodeSetGetLength</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetIsEmpty">xmlXPathNodeSetIsEmpty</a><br /> -<a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetMerge">xmlXPathNodeSetMerge</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetRemove">xmlXPathNodeSetRemove</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeSetSort">xmlXPathNodeSetSort</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailing">xmlXPathNodeTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNodeTrailingSorted">xmlXPathNodeTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNormalizeFunction">xmlXPathNormalizeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotEqualValues">xmlXPathNotEqualValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNotFunction">xmlXPathNotFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNsLookup">xmlXPathNsLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathNumberFunction">xmlXPathNumberFunction</a><br /> -<a href="html/libxml-xpath.html#xmlXPathObject">xmlXPathObject</a><br /> -<a href="html/libxml-xpath.html#xmlXPathObjectCopy">xmlXPathObjectCopy</a><br /> -<a href="html/libxml-xpath.html#xmlXPathObjectPtr">xmlXPathObjectPtr</a><br /> -<a href="html/libxml-xpath.html#xmlXPathObjectType">xmlXPathObjectType</a><br /> -<a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> -<a href="html/libxml-xpath.html#xmlXPathPINF">xmlXPathPINF</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseNCName">xmlXPathParseNCName</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathParseName">xmlXPathParseName</a><br /> -<a href="html/libxml-xpath.html#xmlXPathParserContext">xmlXPathParserContext</a><br /> -<a href="html/libxml-xpath.html#xmlXPathParserContextPtr">xmlXPathParserContextPtr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopBoolean">xmlXPathPopBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopExternal">xmlXPathPopExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNodeSet">xmlXPathPopNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopNumber">xmlXPathPopNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPopString">xmlXPathPopString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathPositionFunction">xmlXPathPositionFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterAllFunctions">xmlXPathRegisterAllFunctions</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFunc">xmlXPathRegisterFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncLookup">xmlXPathRegisterFuncLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterFuncNS">xmlXPathRegisterFuncNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterNs">xmlXPathRegisterNs</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariable">xmlXPathRegisterVariable</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableLookup">xmlXPathRegisterVariableLookup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisterVariableNS">xmlXPathRegisterVariableNS</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredFuncsCleanup">xmlXPathRegisteredFuncsCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredNsCleanup">xmlXPathRegisteredNsCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRegisteredVariablesCleanup">xmlXPathRegisteredVariablesCleanup</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnBoolean">xmlXPathReturnBoolean</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnEmptyNodeSet">xmlXPathReturnEmptyNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnEmptyString">xmlXPathReturnEmptyString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnExternal">xmlXPathReturnExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnFalse">xmlXPathReturnFalse</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnNodeSet">xmlXPathReturnNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnNumber">xmlXPathReturnNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnString">xmlXPathReturnString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathReturnTrue">xmlXPathReturnTrue</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoot">xmlXPathRoot</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathRoundFunction">xmlXPathRoundFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSetArityError">xmlXPathSetArityError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSetError">xmlXPathSetError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSetTypeError">xmlXPathSetTypeError</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStackIsExternal">xmlXPathStackIsExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStackIsNodeSet">xmlXPathStackIsNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStartsWithFunction">xmlXPathStartsWithFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringEvalNumber">xmlXPathStringEvalNumber</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubValues">xmlXPathSubValues</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringAfterFunction">xmlXPathSubstringAfterFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathSumFunction">xmlXPathSumFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTranslateFunction">xmlXPathTranslateFunction</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathTrueFunction">xmlXPathTrueFunction</a><br /> -<a href="html/libxml-xpath.html#xmlXPathType">xmlXPathType</a><br /> -<a href="html/libxml-xpath.html#xmlXPathTypePtr">xmlXPathTypePtr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathValueFlipSign">xmlXPathValueFlipSign</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariable">xmlXPathVariable</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookup">xmlXPathVariableLookup</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariableLookupFunc">xmlXPathVariableLookupFunc</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathVariableLookupNS">xmlXPathVariableLookupNS</a><br /> -<a href="html/libxml-xpath.html#xmlXPathVariablePtr">xmlXPathVariablePtr</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapCString">xmlXPathWrapCString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapExternal">xmlXPathWrapExternal</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapNodeSet">xmlXPathWrapNodeSet</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPathWrapString">xmlXPathWrapString</a><br /> -<a href="html/libxml-xpathInternals.html#xmlXPatherror">xmlXPatherror</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrBuildNodeList">xmlXPtrBuildNodeList</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEval">xmlXPtrEval</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrEvalRangePredicate">xmlXPtrEvalRangePredicate</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrFreeLocationSet">xmlXPtrFreeLocationSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetAdd">xmlXPtrLocationSetAdd</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetCreate">xmlXPtrLocationSetCreate</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetDel">xmlXPtrLocationSetDel</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrLocationSetRemove">xmlXPtrLocationSetRemove</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewCollapsedRange">xmlXPtrNewCollapsedRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewContext">xmlXPtrNewContext</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodeSet">xmlXPtrNewLocationSetNodeSet</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewLocationSetNodes">xmlXPtrNewLocationSetNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRange">xmlXPtrNewRange</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodeObject">xmlXPtrNewRangeNodeObject</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodePoint">xmlXPtrNewRangeNodePoint</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangeNodes">xmlXPtrNewRangeNodes</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePointNode">xmlXPtrNewRangePointNode</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrNewRangePoints">xmlXPtrNewRangePoints</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrRangeToFunction">xmlXPtrRangeToFunction</a><br /> -<a href="html/libxml-xpointer.html#xmlXPtrWrapLocationSet">xmlXPtrWrapLocationSet</a><br /> -</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/DOM.gif b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/DOM.gif Binary files differdeleted file mode 100644 index a44882fe..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/DOM.gif +++ /dev/null diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/DOM.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/DOM.html deleted file mode 100644 index 8bfc9163..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/DOM.html +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>DOM Principles</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>DOM Principles</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p><a href="http://www.w3.org/DOM/">DOM</a> stands for the <em>Document -Object Model</em>; this is an API for accessing XML or HTML structured -documents. Native support for DOM in Gnome is on the way (module gnome-dom), -and will be based on gnome-xml. This will be a far cleaner interface to -manipulate XML files within Gnome since it won't expose the internal -structure.</p><p>The current DOM implementation on top of libxml2 is the <a href="http:///svn.gnome.org/viewcvs/gdome2/trunk/">gdome2 Gnome module</a>, this -is a full DOM interface, thanks to Paolo Casarini, check the <a href="http://gdome2.cs.unibo.it/">Gdome2 homepage</a> for more -information.</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/FAQ.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/FAQ.html deleted file mode 100644 index 3b434324..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/FAQ.html +++ /dev/null @@ -1,294 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>FAQ</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>FAQ</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Table of Contents:</p><ul><li><a href="FAQ.html#License">License(s)</a></li> - <li><a href="FAQ.html#Installati">Installation</a></li> - <li><a href="FAQ.html#Compilatio">Compilation</a></li> - <li><a href="FAQ.html#Developer">Developer corner</a></li> -</ul><h3><a name="License" id="License">License</a>(s)</h3><ol><li><em>Licensing Terms for libxml</em> - <p>libxml2 is released under the <a href="http://www.opensource.org/licenses/mit-license.html">MIT - License</a>; see the file Copyright in the distribution for the precise - wording</p> - </li> - <li><em>Can I embed libxml2 in a proprietary application ?</em> - <p>Yes. The MIT License allows you to keep proprietary the changes you - made to libxml, but it would be graceful to send-back bug fixes and - improvements as patches for possible incorporation in the main - development tree.</p> - </li> -</ol><h3><a name="Installati" id="Installati">Installation</a></h3><ol><li><strong><span style="background-color: #FF0000">Do Not Use - libxml1</span></strong>, use libxml2</li> - <p></p> - <li><em>Where can I get libxml</em> ? - <p>The original distribution comes from <a href="ftp://xmlsoft.org/libxml2/">xmlsoft.org</a> or <a href="ftp://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/">gnome.org</a></p> - <p>Most Linux and BSD distributions include libxml, this is probably the - safer way for end-users to use libxml.</p> - <p>David Doolin provides precompiled Windows versions at <a href="http://www.ce.berkeley.edu/~doolin/code/libxmlwin32/ ">http://www.ce.berkeley.edu/~doolin/code/libxmlwin32/</a></p> - </li> - <p></p> - <li><em>I see libxml and libxml2 releases, which one should I install ?</em> - <ul><li>If you are not constrained by backward compatibility issues with - existing applications, install libxml2 only</li> - <li>If you are not doing development, you can safely install both. - Usually the packages <a href="http://rpmfind.net/linux/RPM/libxml.html">libxml</a> and <a href="http://rpmfind.net/linux/RPM/libxml2.html">libxml2</a> are - compatible (this is not the case for development packages).</li> - <li>If you are a developer and your system provides separate packaging - for shared libraries and the development components, it is possible - to install libxml and libxml2, and also <a href="http://rpmfind.net/linux/RPM/libxml-devel.html">libxml-devel</a> - and <a href="http://rpmfind.net/linux/RPM/libxml2-devel.html">libxml2-devel</a> - too for libxml2 >= 2.3.0</li> - <li>If you are developing a new application, please develop against - libxml2(-devel)</li> - </ul></li> - <li><em>I can't install the libxml package, it conflicts with libxml0</em> - <p>You probably have an old libxml0 package used to provide the shared - library for libxml.so.0, you can probably safely remove it. The libxml - packages provided on <a href="ftp://xmlsoft.org/libxml2/">xmlsoft.org</a> provide - libxml.so.0</p> - </li> - <li><em>I can't install the libxml(2) RPM package due to failed - dependencies</em> - <p>The most generic solution is to re-fetch the latest src.rpm , and - rebuild it locally with</p> - <p><code>rpm --rebuild libxml(2)-xxx.src.rpm</code>.</p> - <p>If everything goes well it will generate two binary rpm packages (one - providing the shared libs and xmllint, and the other one, the -devel - package, providing includes, static libraries and scripts needed to build - applications with libxml(2)) that you can install locally.</p> - </li> -</ol><h3><a name="Compilatio" id="Compilatio">Compilation</a></h3><ol><li><em>What is the process to compile libxml2 ?</em> - <p>As most UNIX libraries libxml2 follows the "standard":</p> - <p><code>gunzip -c xxx.tar.gz | tar xvf -</code></p> - <p><code>cd libxml-xxxx</code></p> - <p><code>./configure --help</code></p> - <p>to see the options, then the compilation/installation proper</p> - <p><code>./configure [possible options]</code></p> - <p><code>make</code></p> - <p><code>make install</code></p> - <p>At that point you may have to rerun ldconfig or a similar utility to - update your list of installed shared libs.</p> - </li> - <li><em>What other libraries are needed to compile/install libxml2 ?</em> - <p>Libxml2 does not require any other library, the normal C ANSI API - should be sufficient (please report any violation to this rule you may - find).</p> - <p>However if found at configuration time libxml2 will detect and use the - following libs:</p> - <ul><li><a href="http://www.info-zip.org/pub/infozip/zlib/">libz</a> : a - highly portable and available widely compression library.</li> - <li>iconv: a powerful character encoding conversion library. It is - included by default in recent glibc libraries, so it doesn't need to - be installed specifically on Linux. It now seems a <a href="http://www.opennc.org/onlinepubs/7908799/xsh/iconv.html">part - of the official UNIX</a> specification. Here is one <a href="http://www.gnu.org/software/libiconv/">implementation of the - library</a> which source can be found <a href="ftp://ftp.ilog.fr/pub/Users/haible/gnu/">here</a>.</li> - </ul></li> - <p></p> - <li><em>Make check fails on some platforms</em> - <p>Sometimes the regression tests' results don't completely match the - value produced by the parser, and the makefile uses diff to print the - delta. On some platforms the diff return breaks the compilation process; - if the diff is small this is probably not a serious problem.</p> - <p>Sometimes (especially on Solaris) make checks fail due to limitations - in make. Try using GNU-make instead.</p> - </li> - <li><em>I use the SVN version and there is no configure script</em> - <p>The configure script (and other Makefiles) are generated. Use the - autogen.sh script to regenerate the configure script and Makefiles, - like:</p> - <p><code>./autogen.sh --prefix=/usr --disable-shared</code></p> - </li> - <li><em>I have troubles when running make tests with gcc-3.0</em> - <p>It seems the initial release of gcc-3.0 has a problem with the - optimizer which miscompiles the URI module. Please use another - compiler.</p> - </li> -</ol><h3><a name="Developer" id="Developer">Developer</a> corner</h3><ol><li><em>Troubles compiling or linking programs using libxml2</em> - <p>Usually the problem comes from the fact that the compiler doesn't get - the right compilation or linking flags. There is a small shell script - <code>xml2-config</code> which is installed as part of libxml2 usual - install process which provides those flags. Use</p> - <p><code>xml2-config --cflags</code></p> - <p>to get the compilation flags and</p> - <p><code>xml2-config --libs</code></p> - <p>to get the linker flags. Usually this is done directly from the - Makefile as:</p> - <p><code>CFLAGS=`xml2-config --cflags`</code></p> - <p><code>LIBS=`xml2-config --libs`</code></p> - </li> - <li><em>I want to install my own copy of libxml2 in my home directory and - link my programs against it, but it doesn't work</em> - <p>There are many different ways to accomplish this. Here is one way to - do this under Linux. Suppose your home directory is <code>/home/user. - </code>Then:</p> - <ul><li>Create a subdirectory, let's call it <code>myxml</code></li> - <li>unpack the libxml2 distribution into that subdirectory</li> - <li>chdir into the unpacked distribution - (<code>/home/user/myxml/libxml2 </code>)</li> - <li>configure the library using the "<code>--prefix</code>" switch, - specifying an installation subdirectory in - <code>/home/user/myxml</code>, e.g. - <p><code>./configure --prefix /home/user/myxml/xmlinst</code> {other - configuration options}</p> - </li> - <li>now run <code>make</code> followed by <code>make install</code></li> - <li>At this point, the installation subdirectory contains the complete - "private" include files, library files and binary program files (e.g. - xmllint), located in - <p><code>/home/user/myxml/xmlinst/lib, - /home/user/myxml/xmlinst/include </code> and <code> - /home/user/myxml/xmlinst/bin</code></p> - respectively.</li> - <li>In order to use this "private" library, you should first add it to - the beginning of your default PATH (so that your own private program - files such as xmllint will be used instead of the normal system - ones). To do this, the Bash command would be - <p><code>export PATH=/home/user/myxml/xmlinst/bin:$PATH</code></p> - </li> - <li>Now suppose you have a program <code>test1.c</code> that you would - like to compile with your "private" library. Simply compile it using - the command - <p><code>gcc `xml2-config --cflags --libs` -o test test.c</code></p> - Note that, because your PATH has been set with <code> - /home/user/myxml/xmlinst/bin</code> at the beginning, the xml2-config - program which you just installed will be used instead of the system - default one, and this will <em>automatically</em> get the correct - libraries linked with your program.</li> - </ul></li> - - <p></p> - <li><em>xmlDocDump() generates output on one line.</em> - <p>Libxml2 will not <strong>invent</strong> spaces in the content of a - document since <strong>all spaces in the content of a document are - significant</strong>. If you build a tree from the API and want - indentation:</p> - <ol><li>the correct way is to generate those yourself too.</li> - <li>the dangerous way is to ask libxml2 to add those blanks to your - content <strong>modifying the content of your document in the - process</strong>. The result may not be what you expect. There is - <strong>NO</strong> way to guarantee that such a modification won't - affect other parts of the content of your document. See <a href="http://xmlsoft.org/html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault - ()</a> and <a href="http://xmlsoft.org/html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile - ()</a></li> - </ol></li> - <p></p> - <li><em>Extra nodes in the document:</em> - <p><em>For an XML file as below:</em></p> - <pre><?xml version="1.0"?> -<PLAN xmlns="http://www.argus.ca/autotest/1.0/"> -<NODE CommFlag="0"/> -<NODE CommFlag="1"/> -</PLAN></pre> - <p><em>after parsing it with the function - pxmlDoc=xmlParseFile(...);</em></p> - <p><em>I want to the get the content of the first node (node with the - CommFlag="0")</em></p> - <p><em>so I did it as following;</em></p> - <pre>xmlNodePtr pnode; -pnode=pxmlDoc->children->children;</pre> - <p><em>but it does not work. If I change it to</em></p> - <pre>pnode=pxmlDoc->children->children->next;</pre> - <p><em>then it works. Can someone explain it to me.</em></p> - <p></p> - <p>In XML all characters in the content of the document are significant - <strong>including blanks and formatting line breaks</strong>.</p> - <p>The extra nodes you are wondering about are just that, text nodes with - the formatting spaces which are part of the document but that people tend - to forget. There is a function <a href="http://xmlsoft.org/html/libxml-parser.html">xmlKeepBlanksDefault - ()</a> to remove those at parse time, but that's an heuristic, and its - use should be limited to cases where you are certain there is no - mixed-content in the document.</p> - </li> - <li><em>I get compilation errors of existing code like when accessing - <strong>root</strong> or <strong>child fields</strong> of nodes.</em> - <p>You are compiling code developed for libxml version 1 and using a - libxml2 development environment. Either switch back to libxml v1 devel or - even better fix the code to compile with libxml2 (or both) by <a href="upgrade.html">following the instructions</a>.</p> - </li> - <li><em>I get compilation errors about non existing - <strong>xmlRootNode</strong> or <strong>xmlChildrenNode</strong> - fields.</em> - <p>The source code you are using has been <a href="upgrade.html">upgraded</a> to be able to compile with both libxml - and libxml2, but you need to install a more recent version: - libxml(-devel) >= 1.8.8 or libxml2(-devel) >= 2.1.0</p> - </li> - <li><em>XPath implementation looks seriously broken</em> - <p>XPath implementation prior to 2.3.0 was really incomplete. Upgrade to - a recent version, there are no known bugs in the current version.</p> - </li> - <li><em>The example provided in the web page does not compile.</em> - <p>It's hard to maintain the documentation in sync with the code - <grin/> ...</p> - <p>Check the previous points 1/ and 2/ raised before, and please send - patches.</p> - </li> - <li><em>Where can I get more examples and information than provided on the - web page?</em> - <p>Ideally a libxml2 book would be nice. I have no such plan ... But you - can:</p> - <ul><li>check more deeply the <a href="html/libxml-lib.html">existing - generated doc</a></li> - <li>have a look at <a href="examples/index.html">the set of - examples</a>.</li> - <li>look for examples of use for libxml2 function using the Gnome code. -<!-- - For example the following will query the full Gnome CVS base for the - use of the <strong>xmlAddChild()</strong> function: - <p><a - href="http://cvs.gnome.org/lxr/search?string=xmlAddChild">http://cvs.gnome.org/lxr/search?string=xmlAddChild</a></p> - <p>This may be slow, a large hardware donation to the gnome project - could cure this :-)</p> ---> - </li> - <li><a href="http://svn.gnome.org/viewcvs/libxml2/trunk/">Browse - the libxml2 source</a> , I try to write code as clean and documented - as possible, so looking at it may be helpful. In particular the code - of <a href="http://svn.gnome.org/viewcvs/libxml2/trunk/xmllint.c?view=markup">xmllint.c</a> and of the various testXXX.c test programs should - provide good examples of how to do things with the library.</li> - </ul></li> - <p></p> - <li><em>What about C++ ?</em> - <p>libxml2 is written in pure C in order to allow easy reuse on a number - of platforms, including embedded systems. I don't intend to convert to - C++.</p> - <p>There is however a C++ wrapper which may fulfill your needs:</p> - <ul><li>by Ari Johnson <ari@btigate.com>: - <p>Website: <a href="http://libxmlplusplus.sourceforge.net/">http://libxmlplusplus.sourceforge.net/</a></p> - <p>Download: <a href="http://sourceforge.net/project/showfiles.php?group_id=12999">http://sourceforge.net/project/showfiles.php?group_id=12999</a></p> - </li> - <!-- Website is currently unavailable as of 2003-08-02 - <li>by Peter Jones <pjones@pmade.org> - <p>Website: <a - href="http://pmade.org/pjones/software/xmlwrapp/">http://pmade.org/pjones/software/xmlwrapp/</a></p> - </li> - --> - </ul></li> - <li><em>How to validate a document a posteriori ?</em> - <p>It is possible to validate documents which had not been validated at - initial parsing time or documents which have been built from scratch - using the API. Use the <a href="http://xmlsoft.org/html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd()</a> - function. It is also possible to simply add a DTD to an existing - document:</p> - <pre>xmlDocPtr doc; /* your existing document */ -xmlDtdPtr dtd = xmlParseDTD(NULL, filename_of_dtd); /* parse the DTD */ - - dtd->name = xmlStrDup((xmlChar*)"root_name"); /* use the given root */ - - doc->intSubset = dtd; - if (doc->children == NULL) xmlAddChild((xmlNodePtr)doc, (xmlNodePtr)dtd); - else xmlAddPrevSibling(doc->children, (xmlNodePtr)dtd); - </pre> - </li> - <li><em>So what is this funky "xmlChar" used all the time?</em> - <p>It is a null terminated sequence of utf-8 characters. And only utf-8! - You need to convert strings encoded in different ways to utf-8 before - passing them to the API. This can be accomplished with the iconv library - for instance.</p> - </li> - <li>etc ...</li> -</ol><p></p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/Libxml2-Logo-180x168.gif b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/Libxml2-Logo-180x168.gif Binary files differdeleted file mode 100644 index ebded4ff..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/Libxml2-Logo-180x168.gif +++ /dev/null diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/Libxml2-Logo-90x34.gif b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/Libxml2-Logo-90x34.gif Binary files differdeleted file mode 100644 index b96fff0b..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/Libxml2-Logo-90x34.gif +++ /dev/null diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/README.docs b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/README.docs deleted file mode 100644 index d0b993ce..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/README.docs +++ /dev/null @@ -1,24 +0,0 @@ - - XML toolkit from the GNOME project - -Full documentation is available on-line at - http://xmlsoft.org/ - -This code is released under the MIT Licence see the Copyright file. - -To report bugs, follow the instructions at: - http://xmlsoft.org/bugs.html - -A mailing-list xml@gnome.org is available, to subscribe: - http://mail.gnome.org/mailman/listinfo/xml - -The list archive is at: - http://mail.gnome.org/archives/xml/ - -All technical answers asked privately will be automatically answered on -the list and archived for public access unless pricacy is explicitely -required and justified. - -Daniel Veillard - -$Id: README.docs,v 1.1 2003/09/01 04:58:15 wbrack Exp $ diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/XMLinfo.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/XMLinfo.html deleted file mode 100644 index 996b1b4e..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/XMLinfo.html +++ /dev/null @@ -1,35 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>XML</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>XML</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p><a href="http://www.w3.org/TR/REC-xml">XML is a standard</a> for -markup-based structured documents. Here is <a name="example" id="example">an example XML -document</a>:</p><pre><?xml version="1.0"?> -<EXAMPLE prop1="gnome is great" prop2="&amp; linux too"> - <head> - <title>Welcome to Gnome</title> - </head> - <chapter> - <title>The Linux adventure</title> - <p>bla bla bla ...</p> - <image href="linus.gif"/> - <p>...</p> - </chapter> -</EXAMPLE></pre><p>The first line specifies that it is an XML document and gives useful -information about its encoding. Then the rest of the document is a text -format whose structure is specified by tags between brackets. <strong>Each -tag opened has to be closed</strong>. XML is pedantic about this. However, if -a tag is empty (no content), a single tag can serve as both the opening and -closing tag if it ends with <code>/></code> rather than with -<code>></code>. Note that, for example, the image tag has no content (just -an attribute) and is closed by ending the tag with <code>/></code>.</p><p>XML can be applied successfully to a wide range of tasks, ranging from -long term structured document maintenance (where it follows the steps of -SGML) to simple data encoding mechanisms like configuration file formatting -(glade), spreadsheets (gnumeric), or even shorter lived documents such as -WebDAV where it is used to encode remote calls between a client and a -server.</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/XSLT.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/XSLT.html deleted file mode 100644 index 5edd1b18..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/XSLT.html +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>XSLT</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>XSLT</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Check <a href="http://xmlsoft.org/XSLT">the separate libxslt page</a></p><p><a href="http://www.w3.org/TR/xslt">XSL Transformations</a>, is a -language for transforming XML documents into other XML documents (or -HTML/textual output).</p><p>A separate library called libxslt is available implementing XSLT-1.0 for -libxml2. This module "libxslt" too can be found in the Gnome SVN base.</p><p>You can check the progresses on the libxslt <a href="http://xmlsoft.org/XSLT/ChangeLog.html">Changelog</a>.</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/architecture.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/architecture.html deleted file mode 100644 index 7316fbda..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/architecture.html +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>libxml2 architecture</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>libxml2 architecture</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Libxml2 is made of multiple components; some of them are optional, and -most of the block interfaces are public. The main components are:</p><ul><li>an Input/Output layer</li> - <li>FTP and HTTP client layers (optional)</li> - <li>an Internationalization layer managing the encodings support</li> - <li>a URI module</li> - <li>the XML parser and its basic SAX interface</li> - <li>an HTML parser using the same SAX interface (optional)</li> - <li>a SAX tree module to build an in-memory DOM representation</li> - <li>a tree module to manipulate the DOM representation</li> - <li>a validation module using the DOM representation (optional)</li> - <li>an XPath module for global lookup in a DOM representation - (optional)</li> - <li>a debug module (optional)</li> -</ul><p>Graphically this gives the following:</p><p><img src="libxml.gif" alt="a graphical view of the various" /></p><p></p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/bugs.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/bugs.html deleted file mode 100644 index 6b8f309b..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/bugs.html +++ /dev/null @@ -1,68 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Reporting bugs and getting help</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Reporting bugs and getting help</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Well, bugs or missing features are always possible, and I will make a -point of fixing them in a timely fashion. The best way to report a bug is to -use the <a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Gnome -bug tracking database</a> (make sure to use the "libxml2" module name). I -look at reports there regularly and it's good to have a reminder when a bug -is still open. Be sure to specify that the bug is for the package libxml2.</p><p>For small problems you can try to get help on IRC, the #xml channel on -irc.gnome.org (port 6667) usually have a few person subscribed which may help -(but there is no guarantee and if a real issue is raised it should go on the -mailing-list for archival).</p><p>There is also a mailing-list <a href="mailto:xml@gnome.org">xml@gnome.org</a> for libxml, with an <a href="http://mail.gnome.org/archives/xml/">on-line archive</a> (<a href="http://xmlsoft.org/messages">old</a>). To subscribe to this list, -please visit the <a href="http://mail.gnome.org/mailman/listinfo/xml">associated Web</a> page and -follow the instructions. <strong>Do not send code, I won't debug it</strong> -(but patches are really appreciated!).</p><p>Please note that with the current amount of virus and SPAM, sending mail -to the list without being subscribed won't work. There is *far too many -bounces* (in the order of a thousand a day !) I cannot approve them manually -anymore. If your mail to the list bounced waiting for administrator approval, -it is LOST ! Repost it and fix the problem triggering the error. Also please -note that <span style="color: #FF0000; background-color: #FFFFFF">emails with -a legal warning asking to not copy or redistribute freely the information -they contain</span> are <strong>NOT</strong> acceptable for the mailing-list, -such mail will as much as possible be discarded automatically, and are less -likely to be answered if they made it to the list, <strong>DO NOT</strong> -post to the list from an email address where such legal requirements are -automatically added, get private paying support if you can't share -information.</p><p>Check the following <strong><span style="color: #FF0000">before -posting</span></strong>:</p><ul><li>Read the <a href="FAQ.html">FAQ</a> and <a href="search.php">use the - search engine</a> to get information related to your problem.</li> - <li>Make sure you are <a href="ftp://xmlsoft.org/libxml2/">using a recent - version</a>, and that the problem still shows up in a recent version.</li> - <li>Check the <a href="http://mail.gnome.org/archives/xml/">list - archives</a> to see if the problem was reported already. In this case - there is probably a fix available, similarly check the <a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">registered - open bugs</a>.</li> - <li>Make sure you can reproduce the bug with xmllint or one of the test - programs found in source in the distribution.</li> - <li>Please send the command showing the error as well as the input (as an - attachment)</li> -</ul><p>Then send the bug with associated information to reproduce it to the <a href="mailto:xml@gnome.org">xml@gnome.org</a> list; if it's really libxml -related I will approve it. Please do not send mail to me directly, it makes -things really hard to track and in some cases I am not the best person to -answer a given question, ask on the list.</p><p>To <span style="color: #E50000">be really clear about support</span>:</p><ul><li>Support or help <span style="color: #E50000">requests MUST be sent to - the list or on bugzilla</span> in case of problems, so that the Question - and Answers can be shared publicly. Failing to do so carries the implicit - message "I want free support but I don't want to share the benefits with - others" and is not welcome. I will automatically Carbon-Copy the - xml@gnome.org mailing list for any technical reply made about libxml2 or - libxslt.</li> - <li>There is <span style="color: #E50000">no guarantee of support</span>. If - your question remains unanswered after a week, repost it, making sure you - gave all the detail needed and the information requested.</li> - <li>Failing to provide information as requested or double checking first - for prior feedback also carries the implicit message "the time of the - library maintainers is less valuable than my time" and might not be - welcome.</li> -</ul><p>Of course, bugs reported with a suggested patch for fixing them will -probably be processed faster than those without.</p><p>If you're looking for help, a quick look at <a href="http://mail.gnome.org/archives/xml/">the list archive</a> may actually -provide the answer. I usually send source samples when answering libxml2 -usage questions. The <a href="http://xmlsoft.org/html/book1.html">auto-generated documentation</a> is -not as polished as I would like (i need to learn more about DocBook), but -it's a good starting point.</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/catalog.gif b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/catalog.gif Binary files differdeleted file mode 100644 index f2e2bd34..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/catalog.gif +++ /dev/null diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/catalog.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/catalog.html deleted file mode 100644 index 0b5aaea7..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/catalog.html +++ /dev/null @@ -1,256 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Catalog support</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Catalog support</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Table of Content:</p><ol><li><a href="General2">General overview</a></li> - <li><a href="#definition">The definition</a></li> - <li><a href="#Simple">Using catalogs</a></li> - <li><a href="#Some">Some examples</a></li> - <li><a href="#reference">How to tune catalog usage</a></li> - <li><a href="#validate">How to debug catalog processing</a></li> - <li><a href="#Declaring">How to create and maintain catalogs</a></li> - <li><a href="#implemento">The implementor corner quick review of the - API</a></li> - <li><a href="#Other">Other resources</a></li> -</ol><h3><a name="General2" id="General2">General overview</a></h3><p>What is a catalog? Basically it's a lookup mechanism used when an entity -(a file or a remote resource) references another entity. The catalog lookup -is inserted between the moment the reference is recognized by the software -(XML parser, stylesheet processing, or even images referenced for inclusion -in a rendering) and the time where loading that resource is actually -started.</p><p>It is basically used for 3 things:</p><ul><li>mapping from "logical" names, the public identifiers and a more - concrete name usable for download (and URI). For example it can associate - the logical name - <p>"-//OASIS//DTD DocBook XML V4.1.2//EN"</p> - <p>of the DocBook 4.1.2 XML DTD with the actual URL where it can be - downloaded</p> - <p>http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd</p> - </li> - <li>remapping from a given URL to another one, like an HTTP indirection - saying that - <p>"http://www.oasis-open.org/committes/tr.xsl"</p> - <p>should really be looked at</p> - <p>"http://www.oasis-open.org/committes/entity/stylesheets/base/tr.xsl"</p> - </li> - <li>providing a local cache mechanism allowing to load the entities - associated to public identifiers or remote resources, this is a really - important feature for any significant deployment of XML or SGML since it - allows to avoid the aleas and delays associated to fetching remote - resources.</li> -</ul><h3><a name="definition" id="definition">The definitions</a></h3><p>Libxml, as of 2.4.3 implements 2 kind of catalogs:</p><ul><li>the older SGML catalogs, the official spec is SGML Open Technical - Resolution TR9401:1997, but is better understood by reading <a href="http://www.jclark.com/sp/catalog.htm">the SP Catalog page</a> from - James Clark. This is relatively old and not the preferred mode of - operation of libxml.</li> - <li><a href="http://www.oasis-open.org/committees/entity/spec.html">XML - Catalogs</a> is far more flexible, more recent, uses an XML syntax and - should scale quite better. This is the default option of libxml.</li> -</ul><p></p><h3><a name="Simple" id="Simple">Using catalog</a></h3><p>In a normal environment libxml2 will by default check the presence of a -catalog in /etc/xml/catalog, and assuming it has been correctly populated, -the processing is completely transparent to the document user. To take a -concrete example, suppose you are authoring a DocBook document, this one -starts with the following DOCTYPE definition:</p><pre><?xml version='1.0'?> -<!DOCTYPE book PUBLIC "-//Norman Walsh//DTD DocBk XML V3.1.4//EN" - "http://nwalsh.com/docbook/xml/3.1.4/db3xml.dtd"></pre><p>When validating the document with libxml, the catalog will be -automatically consulted to lookup the public identifier "-//Norman Walsh//DTD -DocBk XML V3.1.4//EN" and the system identifier -"http://nwalsh.com/docbook/xml/3.1.4/db3xml.dtd", and if these entities have -been installed on your system and the catalogs actually point to them, libxml -will fetch them from the local disk.</p><p style="font-size: 10pt"><strong>Note</strong>: Really don't use this -DOCTYPE example it's a really old version, but is fine as an example.</p><p>Libxml2 will check the catalog each time that it is requested to load an -entity, this includes DTD, external parsed entities, stylesheets, etc ... If -your system is correctly configured all the authoring phase and processing -should use only local files, even if your document stays portable because it -uses the canonical public and system ID, referencing the remote document.</p><h3><a name="Some" id="Some">Some examples:</a></h3><p>Here is a couple of fragments from XML Catalogs used in libxml2 early -regression tests in <code>test/catalogs</code> :</p><pre><?xml version="1.0"?> -<!DOCTYPE catalog PUBLIC - "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" - "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"> -<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"> - <public publicId="-//OASIS//DTD DocBook XML V4.1.2//EN" - uri="http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"/> -...</pre><p>This is the beginning of a catalog for DocBook 4.1.2, XML Catalogs are -written in XML, there is a specific namespace for catalog elements -"urn:oasis:names:tc:entity:xmlns:xml:catalog". The first entry in this -catalog is a <code>public</code> mapping it allows to associate a Public -Identifier with an URI.</p><pre>... - <rewriteSystem systemIdStartString="http://www.oasis-open.org/docbook/" - rewritePrefix="file:///usr/share/xml/docbook/"/> -...</pre><p>A <code>rewriteSystem</code> is a very powerful instruction, it says that -any URI starting with a given prefix should be looked at another URI -constructed by replacing the prefix with an new one. In effect this acts like -a cache system for a full area of the Web. In practice it is extremely useful -with a file prefix if you have installed a copy of those resources on your -local system.</p><pre>... -<delegatePublic publicIdStartString="-//OASIS//DTD XML Catalog //" - catalog="file:///usr/share/xml/docbook.xml"/> -<delegatePublic publicIdStartString="-//OASIS//ENTITIES DocBook XML" - catalog="file:///usr/share/xml/docbook.xml"/> -<delegatePublic publicIdStartString="-//OASIS//DTD DocBook XML" - catalog="file:///usr/share/xml/docbook.xml"/> -<delegateSystem systemIdStartString="http://www.oasis-open.org/docbook/" - catalog="file:///usr/share/xml/docbook.xml"/> -<delegateURI uriStartString="http://www.oasis-open.org/docbook/" - catalog="file:///usr/share/xml/docbook.xml"/> -...</pre><p>Delegation is the core features which allows to build a tree of catalogs, -easier to maintain than a single catalog, based on Public Identifier, System -Identifier or URI prefixes it instructs the catalog software to look up -entries in another resource. This feature allow to build hierarchies of -catalogs, the set of entries presented should be sufficient to redirect the -resolution of all DocBook references to the specific catalog in -<code>/usr/share/xml/docbook.xml</code> this one in turn could delegate all -references for DocBook 4.2.1 to a specific catalog installed at the same time -as the DocBook resources on the local machine.</p><h3><a name="reference" id="reference">How to tune catalog usage:</a></h3><p>The user can change the default catalog behaviour by redirecting queries -to its own set of catalogs, this can be done by setting the -<code>XML_CATALOG_FILES</code> environment variable to a list of catalogs, an -empty one should deactivate loading the default <code>/etc/xml/catalog</code> -default catalog</p><h3><a name="validate" id="validate">How to debug catalog processing:</a></h3><p>Setting up the <code>XML_DEBUG_CATALOG</code> environment variable will -make libxml2 output debugging information for each catalog operations, for -example:</p><pre>orchis:~/XML -> xmllint --memory --noout test/ent2 -warning: failed to load external entity "title.xml" -orchis:~/XML -> export XML_DEBUG_CATALOG= -orchis:~/XML -> xmllint --memory --noout test/ent2 -Failed to parse catalog /etc/xml/catalog -Failed to parse catalog /etc/xml/catalog -warning: failed to load external entity "title.xml" -Catalogs cleanup -orchis:~/XML -> </pre><p>The test/ent2 references an entity, running the parser from memory makes -the base URI unavailable and the the "title.xml" entity cannot be loaded. -Setting up the debug environment variable allows to detect that an attempt is -made to load the <code>/etc/xml/catalog</code> but since it's not present the -resolution fails.</p><p>But the most advanced way to debug XML catalog processing is to use the -<strong>xmlcatalog</strong> command shipped with libxml2, it allows to load -catalogs and make resolution queries to see what is going on. This is also -used for the regression tests:</p><pre>orchis:~/XML -> ./xmlcatalog test/catalogs/docbook.xml \ - "-//OASIS//DTD DocBook XML V4.1.2//EN" -http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd -orchis:~/XML -> </pre><p>For debugging what is going on, adding one -v flags increase the verbosity -level to indicate the processing done (adding a second flag also indicate -what elements are recognized at parsing):</p><pre>orchis:~/XML -> ./xmlcatalog -v test/catalogs/docbook.xml \ - "-//OASIS//DTD DocBook XML V4.1.2//EN" -Parsing catalog test/catalogs/docbook.xml's content -Found public match -//OASIS//DTD DocBook XML V4.1.2//EN -http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd -Catalogs cleanup -orchis:~/XML -> </pre><p>A shell interface is also available to debug and process multiple queries -(and for regression tests):</p><pre>orchis:~/XML -> ./xmlcatalog -shell test/catalogs/docbook.xml \ - "-//OASIS//DTD DocBook XML V4.1.2//EN" -> help -Commands available: -public PublicID: make a PUBLIC identifier lookup -system SystemID: make a SYSTEM identifier lookup -resolve PublicID SystemID: do a full resolver lookup -add 'type' 'orig' 'replace' : add an entry -del 'values' : remove values -dump: print the current catalog state -debug: increase the verbosity level -quiet: decrease the verbosity level -exit: quit the shell -> public "-//OASIS//DTD DocBook XML V4.1.2//EN" -http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd -> quit -orchis:~/XML -> </pre><p>This should be sufficient for most debugging purpose, this was actually -used heavily to debug the XML Catalog implementation itself.</p><h3><a name="Declaring" id="Declaring">How to create and maintain</a> catalogs:</h3><p>Basically XML Catalogs are XML files, you can either use XML tools to -manage them or use <strong>xmlcatalog</strong> for this. The basic step is -to create a catalog the -create option provide this facility:</p><pre>orchis:~/XML -> ./xmlcatalog --create tst.xml -<?xml version="1.0"?> -<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" - "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"> -<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"/> -orchis:~/XML -> </pre><p>By default xmlcatalog does not overwrite the original catalog and save the -result on the standard output, this can be overridden using the -noout -option. The <code>-add</code> command allows to add entries in the -catalog:</p><pre>orchis:~/XML -> ./xmlcatalog --noout --create --add "public" \ - "-//OASIS//DTD DocBook XML V4.1.2//EN" \ - http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd tst.xml -orchis:~/XML -> cat tst.xml -<?xml version="1.0"?> -<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" \ - "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"> -<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"> -<public publicId="-//OASIS//DTD DocBook XML V4.1.2//EN" - uri="http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"/> -</catalog> -orchis:~/XML -> </pre><p>The <code>-add</code> option will always take 3 parameters even if some of -the XML Catalog constructs (like nextCatalog) will have only a single -argument, just pass a third empty string, it will be ignored.</p><p>Similarly the <code>-del</code> option remove matching entries from the -catalog:</p><pre>orchis:~/XML -> ./xmlcatalog --del \ - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" tst.xml -<?xml version="1.0"?> -<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" - "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"> -<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"/> -orchis:~/XML -> </pre><p>The catalog is now empty. Note that the matching of <code>-del</code> is -exact and would have worked in a similar fashion with the Public ID -string.</p><p>This is rudimentary but should be sufficient to manage a not too complex -catalog tree of resources.</p><h3><a name="implemento" id="implemento">The implementor corner quick review of the -API:</a></h3><p>First, and like for every other module of libxml, there is an -automatically generated <a href="html/libxml-catalog.html">API page for -catalog support</a>.</p><p>The header for the catalog interfaces should be included as:</p><pre>#include <libxml/catalog.h></pre><p>The API is voluntarily kept very simple. First it is not obvious that -applications really need access to it since it is the default behaviour of -libxml2 (Note: it is possible to completely override libxml2 default catalog -by using <a href="html/libxml-parser.html">xmlSetExternalEntityLoader</a> to -plug an application specific resolver).</p><p>Basically libxml2 support 2 catalog lists:</p><ul><li>the default one, global shared by all the application</li> - <li>a per-document catalog, this one is built if the document uses the - <code>oasis-xml-catalog</code> PIs to specify its own catalog list, it is - associated to the parser context and destroyed when the parsing context - is destroyed.</li> -</ul><p>the document one will be used first if it exists.</p><h4>Initialization routines:</h4><p>xmlInitializeCatalog(), xmlLoadCatalog() and xmlLoadCatalogs() should be -used at startup to initialize the catalog, if the catalog should be -initialized with specific values xmlLoadCatalog() or xmlLoadCatalogs() -should be called before xmlInitializeCatalog() which would otherwise do a -default initialization first.</p><p>The xmlCatalogAddLocal() call is used by the parser to grow the document -own catalog list if needed.</p><h4>Preferences setup:</h4><p>The XML Catalog spec requires the possibility to select default -preferences between public and system delegation, -xmlCatalogSetDefaultPrefer() allows this, xmlCatalogSetDefaults() and -xmlCatalogGetDefaults() allow to control if XML Catalogs resolution should -be forbidden, allowed for global catalog, for document catalog or both, the -default is to allow both.</p><p>And of course xmlCatalogSetDebug() allows to generate debug messages -(through the xmlGenericError() mechanism).</p><h4>Querying routines:</h4><p>xmlCatalogResolve(), xmlCatalogResolveSystem(), xmlCatalogResolvePublic() -and xmlCatalogResolveURI() are relatively explicit if you read the XML -Catalog specification they correspond to section 7 algorithms, they should -also work if you have loaded an SGML catalog with a simplified semantic.</p><p>xmlCatalogLocalResolve() and xmlCatalogLocalResolveURI() are the same but -operate on the document catalog list</p><h4>Cleanup and Miscellaneous:</h4><p>xmlCatalogCleanup() free-up the global catalog, xmlCatalogFreeLocal() is -the per-document equivalent.</p><p>xmlCatalogAdd() and xmlCatalogRemove() are used to dynamically modify the -first catalog in the global list, and xmlCatalogDump() allows to dump a -catalog state, those routines are primarily designed for xmlcatalog, I'm not -sure that exposing more complex interfaces (like navigation ones) would be -really useful.</p><p>The xmlParseCatalogFile() is a function used to load XML Catalog files, -it's similar as xmlParseFile() except it bypass all catalog lookups, it's -provided because this functionality may be useful for client tools.</p><h4>threaded environments:</h4><p>Since the catalog tree is built progressively, some care has been taken to -try to avoid troubles in multithreaded environments. The code is now thread -safe assuming that the libxml2 library has been compiled with threads -support.</p><p></p><h3><a name="Other" id="Other">Other resources</a></h3><p>The XML Catalog specification is relatively recent so there isn't much -literature to point at:</p><ul><li>You can find a good rant from Norm Walsh about <a href="http://www.arbortext.com/Think_Tank/XML_Resources/Issue_Three/issue_three.html">the - need for catalogs</a>, it provides a lot of context information even if - I don't agree with everything presented. Norm also wrote a more recent - article <a href="http://wwws.sun.com/software/xml/developers/resolver/article/">XML - entities and URI resolvers</a> describing them.</li> - <li>An <a href="http://home.ccil.org/~cowan/XML/XCatalog.html">old XML - catalog proposal</a> from John Cowan</li> - <li>The <a href="http://www.rddl.org/">Resource Directory Description - Language</a> (RDDL) another catalog system but more oriented toward - providing metadata for XML namespaces.</li> - <li>the page from the OASIS Technical <a href="http://www.oasis-open.org/committees/entity/">Committee on Entity - Resolution</a> who maintains XML Catalog, you will find pointers to the - specification update, some background and pointers to others tools - providing XML Catalog support</li> - <li>There is a <a href="buildDocBookCatalog">shell script</a> to generate - XML Catalogs for DocBook 4.1.2 . If it can write to the /etc/xml/ - directory, it will set-up /etc/xml/catalog and /etc/xml/docbook based on - the resources found on the system. Otherwise it will just create - ~/xmlcatalog and ~/dbkxmlcatalog and doing: - <p><code>export XML_CATALOG_FILES=$HOME/xmlcatalog</code></p> - <p>should allow to process DocBook documentations without requiring - network accesses for the DTD or stylesheets</p> - </li> - <li>I have uploaded <a href="ftp://xmlsoft.org/libxml2/test/dbk412catalog.tar.gz">a - small tarball</a> containing XML Catalogs for DocBook 4.1.2 which seems - to work fine for me too</li> - <li>The <a href="http://www.xmlsoft.org/xmlcatalog_man.html">xmlcatalog - manual page</a></li> -</ul><p>If you have suggestions for corrections or additions, simply contact -me:</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/contribs.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/contribs.html deleted file mode 100644 index 97bf430f..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/contribs.html +++ /dev/null @@ -1,40 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Contributions</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Contributions</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><ul><li>Bjorn Reese, William Brack and Thomas Broyer have provided a number of - patches, Gary Pennington worked on the validation API, threading support - and Solaris port.</li> - <li>John Fleck helps maintaining the documentation and man pages.</li> - <li><a href="mailto:igor@zlatkovic.com">Igor Zlatkovic</a> is now the - maintainer of the Windows port, <a href="http://www.zlatkovic.com/projects/libxml/index.html">he provides - binaries</a></li> - <li><a href="mailto:Gary.Pennington@sun.com">Gary Pennington</a> provides - <a href="http://garypennington.net/libxml2/">Solaris binaries</a></li> - <li><a href="http://mail.gnome.org/archives/xml/2001-March/msg00014.html">Matt - Sergeant</a> developed <a href="http://axkit.org/download/">XML::LibXSLT</a>, a Perl wrapper for - libxml2/libxslt as part of the <a href="http://axkit.com/">AxKit XML - application server</a></li> - <li><a href="mailto:fnatter@gmx.net">Felix Natter</a> and <a href="mailto:geertk@ai.rug.nl">Geert Kloosterman</a> provide <a href="libxml-doc.el">an emacs module</a> to lookup libxml(2) functions - documentation</li> - <li><a href="mailto:sherwin@nlm.nih.gov">Ziying Sherwin</a> provided <a href="http://xmlsoft.org/messages/0488.html">man pages</a></li> - <li>there is a module for <a href="http://acs-misc.sourceforge.net/nsxml.html">libxml/libxslt support - in OpenNSD/AOLServer</a></li> - <li><a href="mailto:dkuhlman@cutter.rexx.com">Dave Kuhlman</a> provided the - first version of libxml/libxslt <a href="http://www.rexx.com/~dkuhlman">wrappers for Python</a></li> - <li>Petr Kozelka provides <a href="http://sourceforge.net/projects/libxml2-pas">Pascal units to glue - libxml2</a> with Kylix and Delphi and other Pascal compilers</li> - <li><a href="mailto:aleksey@aleksey.com">Aleksey Sanin</a> implemented the - <a href="http://www.w3.org/Signature/">XML Canonicalization and XML - Digital Signature</a> <a href="http://www.aleksey.com/xmlsec/">implementations for libxml2</a></li> - <li><a href="mailto:Steve.Ball@explain.com.au">Steve Ball</a> and - contributors maintain <a href="http://tclxml.sourceforge.net/">tcl - bindings for libxml2 and libxslt</a>, as well as <a href="http://tclxml.sf.net/tkxmllint.html">tkxmllint</a> a GUI for - xmllint and <a href="http://tclxml.sf.net/tkxsltproc.html">tkxsltproc</a> - a GUI for xsltproc.</li> -</ul><p></p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/docs.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/docs.html deleted file mode 100644 index f548f4c6..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/docs.html +++ /dev/null @@ -1,33 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Developer Menu</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Developer Menu</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>There are several on-line resources related to using libxml:</p><ol><li>Use the <a href="search.php">search engine</a> to look up - information.</li> - <li>Check the <a href="FAQ.html">FAQ.</a></li> - <li>Check the <a href="http://xmlsoft.org/html/libxml-lib.html">extensive - documentation</a> automatically extracted from code comments.</li> - <li>Look at the documentation about <a href="encoding.html">libxml - internationalization support</a>.</li> - <li>This page provides a global overview and <a href="example.html">some - examples</a> on how to use libxml.</li> - <li><a href="examples/index.html">Code examples</a></li> - <li>John Fleck's libxml2 tutorial: <a href="tutorial/index.html">html</a> - or <a href="tutorial/xmltutorial.pdf">pdf</a>.</li> - <li>If you need to parse large files, check the <a href="xmlreader.html">xmlReader</a> API tutorial</li> - <li><a href="mailto:james@daa.com.au">James Henstridge</a> wrote <a href="http://www.daa.com.au/~james/gnome/xml-sax/xml-sax.html">some nice - documentation</a> explaining how to use the libxml SAX interface.</li> - <li>George Lebl wrote <a href="http://www-106.ibm.com/developerworks/library/l-gnome3/">an article - for IBM developerWorks</a> about using libxml.</li> - <li>Check <a href="http://svn.gnome.org/viewcvs/libxml2/trunk/TODO?view=markup">the TODO - file</a>.</li> - <li>Read the <a href="upgrade.html">1.x to 2.x upgrade path</a> - description. If you are starting a new project using libxml you should - really use the 2.x version.</li> - <li>And don't forget to look at the <a href="http://mail.gnome.org/archives/xml/">mailing-list archive</a>.</li> -</ol><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/downloads.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/downloads.html deleted file mode 100644 index 4b4adfa3..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/downloads.html +++ /dev/null @@ -1,36 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Downloads</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Downloads</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>The latest versions of libxml2 can be found on the <a href="ftp://xmlsoft.org/libxml2/">xmlsoft.org</a> server ( <a href="ftp://xmlsoft.org/libxml2/">FTP</a> and rsync are available), there are also -mirrors (<a href="ftp://ftp.planetmirror.com/pub/xmlsoft/">Australia</a>( <a href="http://xmlsoft.planetmirror.com/">Web</a>), <a href="ftp://fr.rpmfind.net/pub/libxml/">France</a>) or on the <a href="ftp://ftp.gnome.org/pub/GNOME/MIRRORS.html">Gnome FTP server</a> as <a href="ftp://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/">source archive</a> -, Antonin Sprinzl also provide <a href="ftp://gd.tuwien.ac.at/pub/libxml/">a -mirror in Austria</a>. (NOTE that you need both the <a href="http://rpmfind.net/linux/RPM/libxml2.html">libxml(2)</a> and <a href="http://rpmfind.net/linux/RPM/libxml2-devel.html">libxml(2)-devel</a> -packages installed to compile applications using libxml.)</p><p>You can find all the history of libxml(2) and libxslt releases in the <a href="http://xmlsoft.org/sources/old/">old</a> directory. The precompiled -Windows binaries made by Igor Zlatovic are available in the <a href="http://xmlsoft.org/sources/win32/">win32</a> directory.</p><p>Binary ports:</p><ul><li>Red Hat RPMs for i386 are available directly on <a href="ftp://xmlsoft.org/libxml2/">xmlsoft.org</a>, the source RPM will compile on - any architecture supported by Red Hat.</li> - <li><a href="mailto:igor@zlatkovic.com">Igor Zlatkovic</a> is now the - maintainer of the Windows port, <a href="http://www.zlatkovic.com/projects/libxml/index.html">he provides - binaries</a>.</li> - <li>Blastwave provides <a href="http://www.blastwave.org/packages.php/libxml2">Solaris - binaries</a>.</li> - <li><a href="mailto:Steve.Ball@explain.com.au">Steve Ball</a> provides <a href="http://www.explain.com.au/oss/libxml2xslt.html">Mac Os X - binaries</a>.</li> - <li>The HP-UX porting center provides <a href="http://hpux.connect.org.uk/hppd/hpux/Gnome/">HP-UX binaries</a></li> - <li>Bull provides precompiled <a href="http://gnome.bullfreeware.com/new_index.html">RPMs for AIX</a> as - patr of their GNOME packages</li> -</ul><p>If you know other supported binary ports, please <a href="http://veillard.com/">contact me</a>.</p><p><a name="Snapshot" id="Snapshot">Snapshot:</a></p><ul><li>Code from the W3C svn base libxml2 module, updated hourly <a href="ftp://xmlsoft.org/libxml2/libxml2-cvs-snapshot.tar.gz">libxml2-cvs-snapshot.tar.gz</a>.</li> - <li>Docs, content of the web site, the list archive included <a href="ftp://xmlsoft.org/libxml2/libxml-docs.tar.gz">libxml-docs.tar.gz</a>.</li> -</ul><p><a name="Contribs" id="Contribs">Contributions:</a></p><p>I do accept external contributions, especially if compiling on another -platform, get in touch with the list to upload the package, wrappers for -various languages have been provided, and can be found in the <a href="python.html">bindings section</a></p><p>Libxml2 is also available from SVN:</p><ul><li><p>The <a href="http://svn.gnome.org/viewcvs/libxml2/trunk/">Gnome SVN - base</a>. Check the <a href="http://developer.gnome.org/tools/svn.html">Gnome SVN Tools</a> - page; the SVN module is <b>libxml2</b>.</p> - </li> - <li>The <strong>libxslt</strong> module is also present there</li> -</ul><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/elfgcchack.xsl b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/elfgcchack.xsl deleted file mode 100644 index 11169f99..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/elfgcchack.xsl +++ /dev/null @@ -1,160 +0,0 @@ -<?xml version="1.0"?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:xhtml="http://www.w3.org/1999/xhtml" - version="1.0"> - <xsl:output method="text" encoding="ISO-8859-1"/> - - <xsl:template match="/"> - <xsl:text>/* - * elfgcchack.h: hack by Arjan van de Ven <arjanv@redhat.com> to speed - * up the code when using gcc for call within the library. - * - * Based on the analysis http://people.redhat.com/drepper/dsohowto.pdf - * from Ulrich drepper. Rewritten to be generated from the XML description - * file for libxml2 API - * autogenerated with xsltproc doc/elfgcchack.xsl doc/libxml2-api.xml - */ - -#ifdef IN_LIBXML -#ifdef __GNUC__ -#ifdef PIC -#ifdef linux -#if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || (__GNUC__ > 3) - -#include "libxml/c14n.h" -#include "libxml/catalog.h" -#include "libxml/chvalid.h" -#include "libxml/debugXML.h" -#include "libxml/dict.h" -#include "libxml/DOCBparser.h" -#include "libxml/encoding.h" -#include "libxml/entities.h" -#include "libxml/globals.h" -#include "libxml/hash.h" -#include "libxml/HTMLparser.h" -#include "libxml/HTMLtree.h" -#include "libxml/list.h" -#include "libxml/nanoftp.h" -#include "libxml/nanohttp.h" -#include "libxml/parser.h" -#include "libxml/parserInternals.h" -#include "libxml/pattern.h" -#include "libxml/relaxng.h" -#include "libxml/SAX2.h" -#include "libxml/SAX.h" -#include "libxml/schemasInternals.h" -#include "libxml/schematron.h" -#include "libxml/threads.h" -#include "libxml/tree.h" -#include "libxml/uri.h" -#include "libxml/valid.h" -#include "libxml/xinclude.h" -#include "libxml/xlink.h" -#include "libxml/xmlautomata.h" -#include "libxml/xmlerror.h" -#include "libxml/xmlexports.h" -#include "libxml/xmlIO.h" -#include "libxml/xmlmemory.h" -#include "libxml/xmlreader.h" -#include "libxml/xmlregexp.h" -#include "libxml/xmlsave.h" -#include "libxml/xmlschemas.h" -#include "libxml/xmlschemastypes.h" -#include "libxml/xmlstring.h" -#include "libxml/xmlunicode.h" -#include "libxml/xmlversion.h" -#include "libxml/xmlwriter.h" -#include "libxml/xpath.h" -#include "libxml/xpathInternals.h" -#include "libxml/xpointer.h" -#include "libxml/xmlmodule.h" - -/* special hot spot not exported ones */ - -#ifdef bottom_globals -#undef __xmlGenericError -extern __typeof (__xmlGenericError) __xmlGenericError __attribute((alias("__xmlGenericError__internal_alias"))); -#else -#ifndef __xmlGenericError -extern __typeof (__xmlGenericError) __xmlGenericError__internal_alias __attribute((visibility("hidden"))); -#define __xmlGenericError __xmlGenericError__internal_alias -#endif -#endif - -#ifdef bottom_globals -#undef __xmlGenericErrorContext -extern __typeof (__xmlGenericErrorContext) __xmlGenericErrorContext __attribute((alias("__xmlGenericErrorContext__internal_alias"))); -#else -#ifndef __xmlGenericErrorContext -extern __typeof (__xmlGenericErrorContext) __xmlGenericErrorContext__internal_alias __attribute((visibility("hidden"))); -#define __xmlGenericErrorContext __xmlGenericErrorContext__internal_alias -#endif -#endif - -/* list generated from libxml2-api.xml */ -</xsl:text> - <xsl:apply-templates select="/api/symbols/function"/> - <xsl:text> -#endif -#endif -#endif -#endif -#endif - -</xsl:text> - </xsl:template> - - <xsl:template match="function"> - <xsl:variable name="str" select="string(@name)"/> - <xsl:if test="starts-with(@name, 'xml') or starts-with(@name, 'html') or contains(@name, 'Push') or contains(@name, 'Pop')"> - <xsl:variable name="alias" select="concat($str, '__internal_alias')"/> - <xsl:apply-templates select="cond"/> - <xsl:text>#ifdef bottom_</xsl:text> - <xsl:value-of select="string(@module)"/> - <xsl:text> -#undef </xsl:text> - <xsl:value-of select="$str"/> - <xsl:text> -extern __typeof (</xsl:text> - <xsl:value-of select="$str"/> - <xsl:text>) </xsl:text> - <xsl:value-of select="$str"/> - <xsl:text> __attribute((alias("</xsl:text> - <xsl:value-of select="$alias"/> - <xsl:text>"))); -#else -#ifndef </xsl:text> - <xsl:value-of select="$str"/> - <xsl:text> -</xsl:text> - <xsl:text>extern __typeof (</xsl:text> - <xsl:value-of select="$str"/> - <xsl:text>) </xsl:text> - <xsl:value-of select="$alias"/> - <xsl:text> __attribute((visibility("hidden"))); -</xsl:text> - <xsl:text>#define </xsl:text> - <xsl:value-of select="$str"/> - <xsl:text> </xsl:text> - <xsl:value-of select="$alias"/> - <xsl:text> -#endif -#endif -</xsl:text> - <xsl:apply-templates select="cond" mode="end"/> - <xsl:text> -</xsl:text> - </xsl:if> - </xsl:template> - <xsl:template match="cond"> - <xsl:text>#if </xsl:text> - <xsl:value-of select="."/> - <xsl:text> -</xsl:text> - </xsl:template> - <xsl:template match="cond" mode="end"> - <xsl:text>#endif -</xsl:text> - </xsl:template> -</xsl:stylesheet> - diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/encoding.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/encoding.html deleted file mode 100644 index b74ddbc6..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/encoding.html +++ /dev/null @@ -1,206 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Encodings support</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Encodings support</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>If you are not really familiar with Internationalization (usual shortcut -is I18N) , Unicode, characters and glyphs, I suggest you read a <a href="http://www.tbray.org/ongoing/When/200x/2003/04/06/Unicode">presentation</a> -by Tim Bray on Unicode and why you should care about it.</p><p>If you don't understand why <b>it does not make sense to have a string -without knowing what encoding it uses</b>, then as Joel Spolsky said <a href="http://www.joelonsoftware.com/articles/Unicode.html">please do not -write another line of code until you finish reading that article.</a>. It is -a prerequisite to understand this page, and avoid a lot of problems with -libxml2, XML or text processing in general.</p><p>Table of Content:</p><ol><li><a href="encoding.html#What">What does internationalization support - mean ?</a></li> - <li><a href="encoding.html#internal">The internal encoding, how and - why</a></li> - <li><a href="encoding.html#implemente">How is it implemented ?</a></li> - <li><a href="encoding.html#Default">Default supported encodings</a></li> - <li><a href="encoding.html#extend">How to extend the existing - support</a></li> -</ol><h3><a name="What" id="What">What does internationalization support mean ?</a></h3><p>XML was designed from the start to allow the support of any character set -by using Unicode. Any conformant XML parser has to support the UTF-8 and -UTF-16 default encodings which can both express the full unicode ranges. UTF8 -is a variable length encoding whose greatest points are to reuse the same -encoding for ASCII and to save space for Western encodings, but it is a bit -more complex to handle in practice. UTF-16 use 2 bytes per character (and -sometimes combines two pairs), it makes implementation easier, but looks a -bit overkill for Western languages encoding. Moreover the XML specification -allows the document to be encoded in other encodings at the condition that -they are clearly labeled as such. For example the following is a wellformed -XML document encoded in ISO-8859-1 and using accentuated letters that we -French like for both markup and content:</p><pre><?xml version="1.0" encoding="ISO-8859-1"?> -<très>là</très></pre><p>Having internationalization support in libxml2 means the following:</p><ul><li>the document is properly parsed</li> - <li>information about it's encoding is saved</li> - <li>it can be modified</li> - <li>it can be saved in its original encoding</li> - <li>it can also be saved in another encoding supported by libxml2 (for - example straight UTF8 or even an ASCII form)</li> -</ul><p>Another very important point is that the whole libxml2 API, with the -exception of a few routines to read with a specific encoding or save to a -specific encoding, is completely agnostic about the original encoding of the -document.</p><p>It should be noted too that the HTML parser embedded in libxml2 now obey -the same rules too, the following document will be (as of 2.2.2) handled in -an internationalized fashion by libxml2 too:</p><pre><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" - "http://www.w3.org/TR/REC-html40/loose.dtd"> -<html lang="fr"> -<head> - <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> -</head> -<body> -<p>W3C crée des standards pour le Web.</body> -</html></pre><h3><a name="internal" id="internal">The internal encoding, how and why</a></h3><p>One of the core decisions was to force all documents to be converted to a -default internal encoding, and that encoding to be UTF-8, here are the -rationales for those choices:</p><ul><li>keeping the native encoding in the internal form would force the libxml - users (or the code associated) to be fully aware of the encoding of the - original document, for examples when adding a text node to a document, - the content would have to be provided in the document encoding, i.e. the - client code would have to check it before hand, make sure it's conformant - to the encoding, etc ... Very hard in practice, though in some specific - cases this may make sense.</li> - <li>the second decision was which encoding. From the XML spec only UTF8 and - UTF16 really makes sense as being the two only encodings for which there - is mandatory support. UCS-4 (32 bits fixed size encoding) could be - considered an intelligent choice too since it's a direct Unicode mapping - support. I selected UTF-8 on the basis of efficiency and compatibility - with surrounding software: - <ul><li>UTF-8 while a bit more complex to convert from/to (i.e. slightly - more costly to import and export CPU wise) is also far more compact - than UTF-16 (and UCS-4) for a majority of the documents I see it used - for right now (RPM RDF catalogs, advogato data, various configuration - file formats, etc.) and the key point for today's computer - architecture is efficient uses of caches. If one nearly double the - memory requirement to store the same amount of data, this will trash - caches (main memory/external caches/internal caches) and my take is - that this harms the system far more than the CPU requirements needed - for the conversion to UTF-8</li> - <li>Most of libxml2 version 1 users were using it with straight ASCII - most of the time, doing the conversion with an internal encoding - requiring all their code to be rewritten was a serious show-stopper - for using UTF-16 or UCS-4.</li> - <li>UTF-8 is being used as the de-facto internal encoding standard for - related code like the <a href="http://www.pango.org/">pango</a> - upcoming Gnome text widget, and a lot of Unix code (yet another place - where Unix programmer base takes a different approach from Microsoft - - they are using UTF-16)</li> - </ul></li> -</ul><p>What does this mean in practice for the libxml2 user:</p><ul><li>xmlChar, the libxml2 data type is a byte, those bytes must be assembled - as UTF-8 valid strings. The proper way to terminate an xmlChar * string - is simply to append 0 byte, as usual.</li> - <li>One just need to make sure that when using chars outside the ASCII set, - the values has been properly converted to UTF-8</li> -</ul><h3><a name="implemente" id="implemente">How is it implemented ?</a></h3><p>Let's describe how all this works within libxml, basically the I18N -(internationalization) support get triggered only during I/O operation, i.e. -when reading a document or saving one. Let's look first at the reading -sequence:</p><ol><li>when a document is processed, we usually don't know the encoding, a - simple heuristic allows to detect UTF-16 and UCS-4 from encodings where - the ASCII range (0-0x7F) maps with ASCII</li> - <li>the xml declaration if available is parsed, including the encoding - declaration. At that point, if the autodetected encoding is different - from the one declared a call to xmlSwitchEncoding() is issued.</li> - <li>If there is no encoding declaration, then the input has to be in either - UTF-8 or UTF-16, if it is not then at some point when processing the - input, the converter/checker of UTF-8 form will raise an encoding error. - You may end-up with a garbled document, or no document at all ! Example: - <pre>~/XML -> ./xmllint err.xml -err.xml:1: error: Input is not proper UTF-8, indicate encoding ! -<très>là</très> - ^ -err.xml:1: error: Bytes: 0xE8 0x73 0x3E 0x6C -<très>là</très> - ^</pre> - </li> - <li>xmlSwitchEncoding() does an encoding name lookup, canonicalize it, and - then search the default registered encoding converters for that encoding. - If it's not within the default set and iconv() support has been compiled - it, it will ask iconv for such an encoder. If this fails then the parser - will report an error and stops processing: - <pre>~/XML -> ./xmllint err2.xml -err2.xml:1: error: Unsupported encoding UnsupportedEnc -<?xml version="1.0" encoding="UnsupportedEnc"?> - ^</pre> - </li> - <li>From that point the encoder processes progressively the input (it is - plugged as a front-end to the I/O module) for that entity. It captures - and converts on-the-fly the document to be parsed to UTF-8. The parser - itself just does UTF-8 checking of this input and process it - transparently. The only difference is that the encoding information has - been added to the parsing context (more precisely to the input - corresponding to this entity).</li> - <li>The result (when using DOM) is an internal form completely in UTF-8 - with just an encoding information on the document node.</li> -</ol><p>Ok then what happens when saving the document (assuming you -collected/built an xmlDoc DOM like structure) ? It depends on the function -called, xmlSaveFile() will just try to save in the original encoding, while -xmlSaveFileTo() and xmlSaveFileEnc() can optionally save to a given -encoding:</p><ol><li>if no encoding is given, libxml2 will look for an encoding value - associated to the document and if it exists will try to save to that - encoding, - <p>otherwise everything is written in the internal form, i.e. UTF-8</p> - </li> - <li>so if an encoding was specified, either at the API level or on the - document, libxml2 will again canonicalize the encoding name, lookup for a - converter in the registered set or through iconv. If not found the - function will return an error code</li> - <li>the converter is placed before the I/O buffer layer, as another kind of - buffer, then libxml2 will simply push the UTF-8 serialization to through - that buffer, which will then progressively be converted and pushed onto - the I/O layer.</li> - <li>It is possible that the converter code fails on some input, for example - trying to push an UTF-8 encoded Chinese character through the UTF-8 to - ISO-8859-1 converter won't work. Since the encoders are progressive they - will just report the error and the number of bytes converted, at that - point libxml2 will decode the offending character, remove it from the - buffer and replace it with the associated charRef encoding &#123; and - resume the conversion. This guarantees that any document will be saved - without losses (except for markup names where this is not legal, this is - a problem in the current version, in practice avoid using non-ascii - characters for tag or attribute names). A special "ascii" encoding name - is used to save documents to a pure ascii form can be used when - portability is really crucial</li> -</ol><p>Here are a few examples based on the same test document:</p><pre>~/XML -> ./xmllint isolat1 -<?xml version="1.0" encoding="ISO-8859-1"?> -<très>là</très> -~/XML -> ./xmllint --encode UTF-8 isolat1 -<?xml version="1.0" encoding="UTF-8"?> -<très>là </très> -~/XML -> </pre><p>The same processing is applied (and reuse most of the code) for HTML I18N -processing. Looking up and modifying the content encoding is a bit more -difficult since it is located in a <meta> tag under the <head>, -so a couple of functions htmlGetMetaEncoding() and htmlSetMetaEncoding() have -been provided. The parser also attempts to switch encoding on the fly when -detecting such a tag on input. Except for that the processing is the same -(and again reuses the same code).</p><h3><a name="Default" id="Default">Default supported encodings</a></h3><p>libxml2 has a set of default converters for the following encodings -(located in encoding.c):</p><ol><li>UTF-8 is supported by default (null handlers)</li> - <li>UTF-16, both little and big endian</li> - <li>ISO-Latin-1 (ISO-8859-1) covering most western languages</li> - <li>ASCII, useful mostly for saving</li> - <li>HTML, a specific handler for the conversion of UTF-8 to ASCII with HTML - predefined entities like &copy; for the Copyright sign.</li> -</ol><p>More over when compiled on an Unix platform with iconv support the full -set of encodings supported by iconv can be instantly be used by libxml. On a -linux machine with glibc-2.1 the list of supported encodings and aliases fill -3 full pages, and include UCS-4, the full set of ISO-Latin encodings, and the -various Japanese ones.</p><p>To convert from the UTF-8 values returned from the API to another encoding -then it is possible to use the function provided from <a href="html/libxml-encoding.html">the encoding module</a> like <a href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a>, or use the -POSIX <a href="http://www.opengroup.org/onlinepubs/009695399/functions/iconv.html">iconv()</a> -API directly.</p><h4>Encoding aliases</h4><p>From 2.2.3, libxml2 has support to register encoding names aliases. The -goal is to be able to parse document whose encoding is supported but where -the name differs (for example from the default set of names accepted by -iconv). The following functions allow to register and handle new aliases for -existing encodings. Once registered libxml2 will automatically lookup the -aliases when handling a document:</p><ul><li>int xmlAddEncodingAlias(const char *name, const char *alias);</li> - <li>int xmlDelEncodingAlias(const char *alias);</li> - <li>const char * xmlGetEncodingAlias(const char *alias);</li> - <li>void xmlCleanupEncodingAliases(void);</li> -</ul><h3><a name="extend" id="extend">How to extend the existing support</a></h3><p>Well adding support for new encoding, or overriding one of the encoders -(assuming it is buggy) should not be hard, just write input and output -conversion routines to/from UTF-8, and register them using -xmlNewCharEncodingHandler(name, xxxToUTF8, UTF8Toxxx), and they will be -called automatically if the parser(s) encounter such an encoding name -(register it uppercase, this will help). The description of the encoders, -their arguments and expected return values are described in the encoding.h -header.</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/entities.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/entities.html deleted file mode 100644 index 37bb4deb..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/entities.html +++ /dev/null @@ -1,64 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Entities or no entities</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Entities or no entities</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Entities in principle are similar to simple C macros. An entity defines an -abbreviation for a given string that you can reuse many times throughout the -content of your document. Entities are especially useful when a given string -may occur frequently within a document, or to confine the change needed to a -document to a restricted area in the internal subset of the document (at the -beginning). Example:</p><pre>1 <?xml version="1.0"?> -2 <!DOCTYPE EXAMPLE SYSTEM "example.dtd" [ -3 <!ENTITY xml "Extensible Markup Language"> -4 ]> -5 <EXAMPLE> -6 &xml; -7 </EXAMPLE></pre><p>Line 3 declares the xml entity. Line 6 uses the xml entity, by prefixing -its name with '&' and following it by ';' without any spaces added. There -are 5 predefined entities in libxml2 allowing you to escape characters with -predefined meaning in some parts of the xml document content: -<strong>&lt;</strong> for the character '<', <strong>&gt;</strong> -for the character '>', <strong>&apos;</strong> for the character ''', -<strong>&quot;</strong> for the character '"', and -<strong>&amp;</strong> for the character '&'.</p><p>One of the problems related to entities is that you may want the parser to -substitute an entity's content so that you can see the replacement text in -your application. Or you may prefer to keep entity references as such in the -content to be able to save the document back without losing this usually -precious information (if the user went through the pain of explicitly -defining entities, he may have a a rather negative attitude if you blindly -substitute them as saving time). The <a href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault()</a> -function allows you to check and change the behaviour, which is to not -substitute entities by default.</p><p>Here is the DOM tree built by libxml2 for the previous document in the -default case:</p><pre>/gnome/src/gnome-xml -> ./xmllint --debug test/ent1 -DOCUMENT -version=1.0 - ELEMENT EXAMPLE - TEXT - content= - ENTITY_REF - INTERNAL_GENERAL_ENTITY xml - content=Extensible Markup Language - TEXT - content=</pre><p>And here is the result when substituting entities:</p><pre>/gnome/src/gnome-xml -> ./tester --debug --noent test/ent1 -DOCUMENT -version=1.0 - ELEMENT EXAMPLE - TEXT - content= Extensible Markup Language</pre><p>So, entities or no entities? Basically, it depends on your use case. I -suggest that you keep the non-substituting default behaviour and avoid using -entities in your XML document or data if you are not willing to handle the -entity references elements in the DOM tree.</p><p>Note that at save time libxml2 enforces the conversion of the predefined -entities where necessary to prevent well-formedness problems, and will also -transparently replace those with chars (i.e. it will not generate entity -reference elements in the DOM tree or call the reference() SAX callback when -finding them in the input).</p><p><span style="background-color: #FF0000">WARNING</span>: handling entities -on top of the libxml2 SAX interface is difficult!!! If you plan to use -non-predefined entities in your documents, then the learning curve to handle -then using the SAX API may be long. If you plan to use complex documents, I -strongly suggest you consider using the DOM interface instead and let libxml -deal with the complexity rather than trying to do it yourself.</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/example.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/example.html deleted file mode 100644 index 533b6a8c..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/example.html +++ /dev/null @@ -1,186 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>A real example</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>A real example</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Here is a real size example, where the actual content of the application -data is not kept in the DOM tree but uses internal structures. It is based on -a proposal to keep a database of jobs related to Gnome, with an XML based -storage structure. Here is an <a href="gjobs.xml">XML encoded jobs -base</a>:</p><pre><?xml version="1.0"?> -<gjob:Helping xmlns:gjob="http://www.gnome.org/some-location"> - <gjob:Jobs> - - <gjob:Job> - <gjob:Project ID="3"/> - <gjob:Application>GBackup</gjob:Application> - <gjob:Category>Development</gjob:Category> - - <gjob:Update> - <gjob:Status>Open</gjob:Status> - <gjob:Modified>Mon, 07 Jun 1999 20:27:45 -0400 MET DST</gjob:Modified> - <gjob:Salary>USD 0.00</gjob:Salary> - </gjob:Update> - - <gjob:Developers> - <gjob:Developer> - </gjob:Developer> - </gjob:Developers> - - <gjob:Contact> - <gjob:Person>Nathan Clemons</gjob:Person> - <gjob:Email>nathan@windsofstorm.net</gjob:Email> - <gjob:Company> - </gjob:Company> - <gjob:Organisation> - </gjob:Organisation> - <gjob:Webpage> - </gjob:Webpage> - <gjob:Snailmail> - </gjob:Snailmail> - <gjob:Phone> - </gjob:Phone> - </gjob:Contact> - - <gjob:Requirements> - The program should be released as free software, under the GPL. - </gjob:Requirements> - - <gjob:Skills> - </gjob:Skills> - - <gjob:Details> - A GNOME based system that will allow a superuser to configure - compressed and uncompressed files and/or file systems to be backed - up with a supported media in the system. This should be able to - perform via find commands generating a list of files that are passed - to tar, dd, cpio, cp, gzip, etc., to be directed to the tape machine - or via operations performed on the filesystem itself. Email - notification and GUI status display very important. - </gjob:Details> - - </gjob:Job> - - </gjob:Jobs> -</gjob:Helping></pre><p>While loading the XML file into an internal DOM tree is a matter of -calling only a couple of functions, browsing the tree to gather the data and -generate the internal structures is harder, and more error prone.</p><p>The suggested principle is to be tolerant with respect to the input -structure. For example, the ordering of the attributes is not significant, -the XML specification is clear about it. It's also usually a good idea not to -depend on the order of the children of a given node, unless it really makes -things harder. Here is some code to parse the information for a person:</p><pre>/* - * A person record - */ -typedef struct person { - char *name; - char *email; - char *company; - char *organisation; - char *smail; - char *webPage; - char *phone; -} person, *personPtr; - -/* - * And the code needed to parse it - */ -personPtr parsePerson(xmlDocPtr doc, xmlNsPtr ns, xmlNodePtr cur) { - personPtr ret = NULL; - -DEBUG("parsePerson\n"); - /* - * allocate the struct - */ - ret = (personPtr) malloc(sizeof(person)); - if (ret == NULL) { - fprintf(stderr,"out of memory\n"); - return(NULL); - } - memset(ret, 0, sizeof(person)); - - /* We don't care what the top level element name is */ - cur = cur->xmlChildrenNode; - while (cur != NULL) { - if ((!strcmp(cur->name, "Person")) && (cur->ns == ns)) - ret->name = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1); - if ((!strcmp(cur->name, "Email")) && (cur->ns == ns)) - ret->email = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1); - cur = cur->next; - } - - return(ret); -}</pre><p>Here are a couple of things to notice:</p><ul><li>Usually a recursive parsing style is the more convenient one: XML data - is by nature subject to repetitive constructs and usually exhibits highly - structured patterns.</li> - <li>The two arguments of type <em>xmlDocPtr</em> and <em>xmlNsPtr</em>, - i.e. the pointer to the global XML document and the namespace reserved to - the application. Document wide information are needed for example to - decode entities and it's a good coding practice to define a namespace for - your application set of data and test that the element and attributes - you're analyzing actually pertains to your application space. This is - done by a simple equality test (cur->ns == ns).</li> - <li>To retrieve text and attributes value, you can use the function - <em>xmlNodeListGetString</em> to gather all the text and entity reference - nodes generated by the DOM output and produce an single text string.</li> -</ul><p>Here is another piece of code used to parse another level of the -structure:</p><pre>#include <libxml/tree.h> -/* - * a Description for a Job - */ -typedef struct job { - char *projectID; - char *application; - char *category; - personPtr contact; - int nbDevelopers; - personPtr developers[100]; /* using dynamic alloc is left as an exercise */ -} job, *jobPtr; - -/* - * And the code needed to parse it - */ -jobPtr parseJob(xmlDocPtr doc, xmlNsPtr ns, xmlNodePtr cur) { - jobPtr ret = NULL; - -DEBUG("parseJob\n"); - /* - * allocate the struct - */ - ret = (jobPtr) malloc(sizeof(job)); - if (ret == NULL) { - fprintf(stderr,"out of memory\n"); - return(NULL); - } - memset(ret, 0, sizeof(job)); - - /* We don't care what the top level element name is */ - cur = cur->xmlChildrenNode; - while (cur != NULL) { - - if ((!strcmp(cur->name, "Project")) && (cur->ns == ns)) { - ret->projectID = xmlGetProp(cur, "ID"); - if (ret->projectID == NULL) { - fprintf(stderr, "Project has no ID\n"); - } - } - if ((!strcmp(cur->name, "Application")) && (cur->ns == ns)) - ret->application = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1); - if ((!strcmp(cur->name, "Category")) && (cur->ns == ns)) - ret->category = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1); - if ((!strcmp(cur->name, "Contact")) && (cur->ns == ns)) - ret->contact = parsePerson(doc, ns, cur); - cur = cur->next; - } - - return(ret); -}</pre><p>Once you are used to it, writing this kind of code is quite simple, but -boring. Ultimately, it could be possible to write stubbers taking either C -data structure definitions, a set of XML examples or an XML DTD and produce -the code needed to import and export the content between C data and XML -storage. This is left as an exercise to the reader :-)</p><p>Feel free to use <a href="example/gjobread.c">the code for the full C -parsing example</a> as a template, it is also available with Makefile in the -Gnome SVN base under libxml2/example</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/guidelines.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/guidelines.html deleted file mode 100644 index 06f96922..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/guidelines.html +++ /dev/null @@ -1,374 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" - "http://www.w3.org/TR/html4/loose.dtd"> -<html> -<head> - <meta http-equiv="Content-Type" content="text/html"> - <style type="text/css"></style> -<!-- -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } - </style> ---> - <title>XML resources publication guidelines</title> -</head> - -<body bgcolor="#fffacd" text="#000000"> -<h1 align="center">XML resources publication guidelines</h1> - -<p></p> - -<p>The goal of this document is to provide a set of guidelines and tips -helping the publication and deployment of <a -href="http://www.w3.org/XML/">XML</a> resources for the <a -href="http://www.gnome.org/">GNOME project</a>. However it is not tied to -GNOME and might be helpful more generally. I welcome <a -href="mailto:veillard@redhat.com">feedback</a> on this document.</p> - -<p>The intended audience is the software developers who started using XML -for some of the resources of their project, as a storage format, for data -exchange, checking or transformations. There have been an increasing number -of new XML formats defined, but not all steps have been taken, possibly because of -lack of documentation, to truly gain all the benefits of the use of XML. -These guidelines hope to improve the matter and provide a better overview of -the overall XML processing and associated steps needed to deploy it -successfully:</p> - -<p>Table of contents:</p> -<ol> - <li><a href="#Design">Design guidelines</a></li> - <li><a href="#Canonical">Canonical URL</a></li> - <li><a href="#Catalog">Catalog setup</a></li> - <li><a href="#Package">Package integration</a></li> -</ol> - -<h2><a name="Design">Design guidelines</a></h2> - -<p>This part intends to focus on the format itself of XML. It may arrive -a bit too late since the structure of the document may already be cast in -existing and deployed code. Still, here are a few rules which might be helpful -when designing a new XML vocabulary or making the revision of an existing -format:</p> - -<h3>Reuse existing formats:</h3> - -<p>This may sounds a bit simplistic, but before designing your own format, -try to lookup existing XML vocabularies on similar data. Ideally this allows -you to reuse them, in which case a lot of the existing tools like DTD, schemas -and stylesheets may already be available. If you are looking at a -documentation format, <a href="http://www.docbook.org/">DocBook</a> should -handle your needs. If reuse is not possible because some semantic or use case -aspects are too different this will be helpful avoiding design errors like -targeting the vocabulary to the wrong abstraction level. In this format -design phase try to be synthetic and be sure to express the real content of -your data and use the XML structure to express the semantic and context of -those data.</p> - -<h3>DTD rules:</h3> - -<p>Building a DTD (Document Type Definition) or a Schema describing the -structure allowed by instances is the core of the design process of the -vocabulary. Here are a few tips:</p> -<ul> - <li>use significant words for the element and attributes names.</li> - <li>do not use attributes for general textual content, attributes - will be modified by the parser before reaching the application, - spaces and line informations will be modified.</li> - <li>use single elements for every string that might be subject to - localization. The canonical way to localize XML content is to use - siblings element carrying different xml:lang attributes like in the - following: - <pre><welcome> - <msg xml:lang="en">hello</msg> - <msg xml:lang="fr">bonjour</msg> -</welcome></pre> - </li> - <li>use attributes to refine the content of an element but avoid them for - more complex tasks, attribute parsing is not cheaper than an element and - it is far easier to make an element content more complex while attribute - will have to remain very simple.</li> -</ul> - -<h3>Versioning:</h3> - -<p>As part of the design, make sure the structure you define will be usable -for future extension that you may not consider for the current version. There -are two parts to this:</p> -<ul> - <li>Make sure the instance contains a version number which will allow to - make backward compatibility easy. Something as simple as having a - <code>version="1.0"</code> on the root document of the instance is - sufficient.</li> - <li>While designing the code doing the analysis of the data provided by the - XML parser, make sure you can work with unknown versions, generate a UI - warning and process only the tags recognized by your version but keep in - mind that you should not break on unknown elements if the version - attribute was not in the recognized set.</li> -</ul> - -<h3>Other design parts:</h3> - -<p>While defining you vocabulary, try to think in term of other usage of your -data, for example how using XSLT stylesheets could be used to make an HTML -view of your data, or to convert it into a different format. Checking XML -Schemas and looking at defining an XML Schema with a more complete -validation and datatyping of your data structures is important, this helps -avoiding some mistakes in the design phase.</p> - -<h3>Namespace:</h3> - -<p>If you expect your XML vocabulary to be used or recognized outside of your -application (for example binding a specific processing from a graphic shell -like Nautilus to an instance of your data) then you should really define an <a -href="http://www.w3.org/TR/REC-xml-names/">XML namespace</a> for your -vocabulary. A namespace name is an URL (absolute URI more precisely). It is -generally recommended to anchor it as an HTTP resource to a server associated -with the software project. See the next section about this. In practice this -will mean that XML parsers will not handle your element names as-is but as a -couple based on the namespace name and the element name. This allows it to -recognize and disambiguate processing. Unicity of the namespace name can be -for the most part guaranteed by the use of the DNS registry. Namespace can -also be used to carry versioning information like:</p> - -<p><code>"http://www.gnome.org/project/projectname/1.0/"</code></p> - -<p>An easy way to use them is to make them the default namespace on the -root element of the XML instance like:</p> -<pre><structure xmlns="http://www.gnome.org/project/projectname/1.0/"> - <data> - ... - </data> -</structure></pre> - -<p>In that document, structure and all descendant elements like data are in -the given namespace.</p> - -<h2><a name="Canonical">Canonical URL</a></h2> - -<p>As seen in the previous namespace section, while XML processing is not -tied to the Web there is a natural synergy between both. XML was designed to -be available on the Web, and keeping the infrastructure that way helps -deploying the XML resources. The core of this issue is the notion of -"Canonical URL" of an XML resource. The resource can be an XML document, a -DTD, a stylesheet, a schema, or even non-XML data associated with an XML -resource, the canonical URL is the URL where the "master" copy of that -resource is expected to be present on the Web. Usually when processing XML a -copy of the resource will be present on the local disk, maybe in -/usr/share/xml or /usr/share/sgml maybe in /opt or even on C:\projectname\ -(horror !). The key point is that the way to name that resource should be -independent of the actual place where it resides on disk if it is available, -and the fact that the processing will still work if there is no local copy -(and that the machine where the processing is connected to the Internet).</p> - -<p>What this really means is that one should never use the local name of a -resource to reference it but always use the canonical URL. For example in a -DocBook instance the following should not be used:</p> -<pre><!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"<br> - - - "/usr/share/xml/docbook/4.2/docbookx.dtd"></pre> - -<p>But always reference the canonical URL for the DTD:</p> -<pre><!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"<br> - - - "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> </pre> - -<p>Similarly, the document instance may reference the <a -href="http://www.w3.org/TR/xslt">XSLT</a> stylesheets needed to process it to -generate HTML, and the canonical URL should be used:</p> -<pre><?xml-stylesheet - href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl" - type="text/xsl"?></pre> - -<p>Defining the canonical URL for the resources needed should obey a few -simple rules similar to those used to design namespace names:</p> -<ul> - <li>use a DNS name you know is associated to the project and will be - available on the long term</li> - <li>within that server space, reserve the right to the subtree where you - intend to keep those data</li> - <li>version the URL so that multiple concurrent versions of the resources - can be hosted simultaneously</li> -</ul> - -<h2><a name="Catalog">Catalog setup</a></h2> - -<h3>How catalogs work:</h3> - -<p>The catalogs are the technical mechanism which allow the XML processing -tools to use a local copy of the resources if it is available even if the -instance document references the canonical URL. <a -href="http://www.oasis-open.org/committees/entity/">XML Catalogs</a> are -anchored in the root catalog (usually <code>/etc/xml/catalog</code> or -defined by the user). They are a tree of XML documents defining the mappings -between the canonical naming space and the local installed ones, this can be -seen as a static cache structure.</p> - -<p>When the XML processor is asked to process a resource it will -automatically test for a locally available version in the catalog, starting -from the root catalog, and possibly fetching sub-catalog resources until it -finds that the catalog has that resource or not. If not the default -processing of fetching the resource from the Web is done, allowing in most -case to recover from a catalog miss. The key point is that the document -instances are totally independent of the availability of a catalog or from -the actual place where the local resource they reference may be installed. -This greatly improves the management of the documents in the long run, making -them independent of the platform or toolchain used to process them. The -figure below tries to express that mechanism:<img src="catalog.gif" -alt="Picture describing the catalog "></p> - -<h3>Usual catalog setup:</h3> - -<p>Usually catalogs for a project are setup as a 2 level hierarchical cache, -the root catalog containing only "delegates" indicating a separate subcatalog -dedicated to the project. The goal is to keep the root catalog clean and -simplify the maintenance of the catalog by using separate catalogs per -project. For example when creating a catalog for the <a -href="http://www.w3.org/TR/xhtml1">XHTML1</a> DTDs, only 3 items are added to -the root catalog:</p> -<pre> <delegatePublic publicIdStartString="-//W3C//DTD XHTML 1.0" - catalog="file:///usr/share/sgml/xhtml1/xmlcatalog"/> - <delegateSystem systemIdStartString="http://www.w3.org/TR/xhtml1/DTD" - catalog="file:///usr/share/sgml/xhtml1/xmlcatalog"/> - <delegateURI uriStartString="http://www.w3.org/TR/xhtml1/DTD" - catalog="file:///usr/share/sgml/xhtml1/xmlcatalog"/></pre> - -<p>They are all "delegates" meaning that if the catalog system is asked to -resolve a reference corresponding to them, it has to lookup a sub catalog. -Here the subcatalog was installed as -<code>/usr/share/sgml/xhtml1/xmlcatalog</code> in the local tree. That -decision is left to the sysadmin or the packager for that system and may -obey different rules, but the actual place on the filesystem (or on a -resource cache on the local network) will not influence the processing as -long as it is available. The first rule indicate that if the reference uses a -PUBLIC identifier beginning with the</p> - -<p><code>"-//W3C//DTD XHTML 1.0"</code></p> - -<p>substring, then the catalog lookup should be limited to the specific given -lookup catalog. Similarly the second and third entries indicate those -delegation rules for SYSTEM, DOCTYPE or normal URI references when the URL -starts with the <code>"http://www.w3.org/TR/xhtml1/DTD"</code> substring -which indicates the location on the W3C server where the XHTML1 resources are -stored. Those are the beginning of all Canonical URLs for XHTML1 resources. -Those three rules are sufficient in practice to capture all references to XHTML1 -resources and direct the processing tools to the right subcatalog.</p> - -<h3>A subcatalog example:</h3> - -<p>Here is the complete subcatalog used for XHTML1:</p> -<pre><?xml version="1.0"?> -<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" - "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"> -<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"> - <public publicId="-//W3C//DTD XHTML 1.0 Strict//EN" - uri="xhtml1-20020801/DTD/xhtml1-strict.dtd"/> - <public publicId="-//W3C//DTD XHTML 1.0 Transitional//EN" - uri="xhtml1-20020801/DTD/xhtml1-transitional.dtd"/> - <public publicId="-//W3C//DTD XHTML 1.0 Frameset//EN" - uri="xhtml1-20020801/DTD/xhtml1-frameset.dtd"/> - <rewriteSystem systemIdStartString="http://www.w3.org/TR/xhtml1/DTD" - rewritePrefix="xhtml1-20020801/DTD"/> - <rewriteURI uriStartString="http://www.w3.org/TR/xhtml1/DTD" - rewritePrefix="xhtml1-20020801/DTD"/> -</catalog></pre> - -<p>There are a few things to notice:</p> -<ul> - <li>this is an XML resource, it points to the DTD using Canonical URLs, the - root element defines a namespace (but based on an URN not an HTTP - URL).</li> - <li>it contains 5 rules, the 3 first ones are direct mapping for the 3 - PUBLIC identifiers defined by the XHTML1 specification and associating - them with the local resource containing the DTD, the 2 last ones are - rewrite rules allowing to build the local filename for any URL based on - "http://www.w3.org/TR/xhtml1/DTD", the local cache simplifies the rules by - keeping the same structure as the on-line server at the Canonical URL</li> - <li>the local resources are designated using URI references (the uri or - rewritePrefix attributes), the base being the containing sub-catalog URL, - which means that in practice the copy of the XHTML1 strict DTD is stored - locally in - <code>/usr/share/sgml/xhtml1/xmlcatalog/xhtml1-20020801/DTD/xhtml1-strict.dtd</code></li> -</ul> - -<p>Those 5 rules are sufficient to cover all references to the resources held -at the Canonical URL for the XHTML1 DTDs.</p> - -<h2><a name="Package">Package integration</a></h2> - -<p>Creating and removing catalogs should be handled as part of the process of -(un)installing the local copy of the resources. The catalog files being XML -resources should be processed with XML based tools to avoid problems with the -generated files, the xmlcatalog command coming with libxml2 allows you to create -catalogs, and add or remove rules at that time. Here is a complete example -coming from the RPM for the XHTML1 DTDs post install script. While this example -is platform and packaging specific, this can be useful as a an example in -other contexts:</p> -<pre>%post -CATALOG=/usr/share/sgml/xhtml1/xmlcatalog -# -# Register it in the super catalog with the appropriate delegates -# -ROOTCATALOG=/etc/xml/catalog - -if [ ! -r $ROOTCATALOG ] -then - /usr/bin/xmlcatalog --noout --create $ROOTCATALOG -fi - -if [ -w $ROOTCATALOG ] -then - /usr/bin/xmlcatalog --noout --add "delegatePublic" \ - "-//W3C//DTD XHTML 1.0" \ - "file://$CATALOG" $ROOTCATALOG - /usr/bin/xmlcatalog --noout --add "delegateSystem" \ - "http://www.w3.org/TR/xhtml1/DTD" \ - "file://$CATALOG" $ROOTCATALOG - /usr/bin/xmlcatalog --noout --add "delegateURI" \ - "http://www.w3.org/TR/xhtml1/DTD" \ - "file://$CATALOG" $ROOTCATALOG -fi</pre> - -<p>The XHTML1 subcatalog is not created on-the-fly in that case, it is -installed as part of the files of the packages. So the only work needed is to -make sure the root catalog exists and register the delegate rules.</p> - -<p>Similarly, the script for the post-uninstall just remove the rules from the -catalog:</p> -<pre>%postun -# -# On removal, unregister the xmlcatalog from the supercatalog -# -if [ "$1" = 0 ]; then - CATALOG=/usr/share/sgml/xhtml1/xmlcatalog - ROOTCATALOG=/etc/xml/catalog - - if [ -w $ROOTCATALOG ] - then - /usr/bin/xmlcatalog --noout --del \ - "-//W3C//DTD XHTML 1.0" $ROOTCATALOG - /usr/bin/xmlcatalog --noout --del \ - "http://www.w3.org/TR/xhtml1/DTD" $ROOTCATALOG - /usr/bin/xmlcatalog --noout --del \ - "http://www.w3.org/TR/xhtml1/DTD" $ROOTCATALOG - fi -fi</pre> - -<p>Note the test against $1, this is needed to not remove the delegate rules -in case of upgrade of the package.</p> - -<p>Following the set of guidelines and tips provided in this document should -help deploy the XML resources in the GNOME framework without much pain and -ensure a smooth evolution of the resource and instances.</p> - -<p><a href="mailto:veillard@redhat.com">Daniel Veillard</a></p> - -<p>$Id: guidelines.html 2912 2004-12-26 21:01:48Z veillard $</p> - -<p></p> -</body> -</html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/help.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/help.html deleted file mode 100644 index ff0c36c6..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/help.html +++ /dev/null @@ -1,25 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>How to help</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>How to help</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>You can help the project in various ways, the best thing to do first is to -subscribe to the mailing-list as explained before, check the <a href="http://mail.gnome.org/archives/xml/">archives </a>and the <a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Gnome bug -database</a>:</p><ol><li>Provide patches when you find problems.</li> - <li>Provide the diffs when you port libxml2 to a new platform. They may not - be integrated in all cases but help pinpointing portability problems - and</li> - <li>Provide documentation fixes (either as patches to the code comments or - as HTML diffs).</li> - <li>Provide new documentations pieces (translations, examples, etc - ...).</li> - <li>Check the TODO file and try to close one of the items.</li> - <li>Take one of the points raised in the archive or the bug database and - provide a fix. <a href="mailto:daniel@veillard.com">Get in touch with me - </a>before to avoid synchronization problems and check that the suggested - fix will fit in nicely :-)</li> -</ol><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/index.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/index.html deleted file mode 100644 index 0b654e38..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/index.html +++ /dev/null @@ -1,314 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> - <link rel="SHORTCUT ICON" href="/favicon.ico" /> - <style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style> - <title>The XML C parser and toolkit of Gnome</title> - </head> - <body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"> - <table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"> - <tr> - <td width="120"> - <a href="http://swpat.ffii.org/"> - <img src="epatents.png" alt="Action against software patents" /> - </a> - </td> - <td width="180"> - <a href="http://www.gnome.org/"> - <img src="gnome2.png" alt="Gnome2 Logo" /> - </a> - <a href="http://www.w3.org/Status"> - <img src="w3c.png" alt="W3C Logo" /> - </a> - <a href="http://www.redhat.com/"> - <img src="redhat.gif" alt="Red Hat Logo" /> - </a> - <div align="left"> - <a href="http://xmlsoft.org/"> - <img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /> - </a> - </div> - </td> - <td> - <table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"> - <tr> - <td> - <table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"> - <tr> - <td align="center"> - <h1>The XML C parser and toolkit of Gnome</h1> - <h2>libxml</h2> - </td> - </tr> - </table> - </td> - </tr> - </table> - </td> - </tr> - </table> - <table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"> - <tr> - <td bgcolor="#8b7765"> - <table border="0" cellspacing="0" cellpadding="2" width="100%"> - <tr> - <td valign="top" width="200" bgcolor="#8b7765"> - <table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"> - <tr> - <td> - <table width="100%" border="0" cellspacing="1" cellpadding="3"> - <tr> - <td colspan="1" bgcolor="#eecfa1" align="center"> - <center> - <b>Main Menu</b> - </center> - </td> - </tr> - <tr> - <td bgcolor="#fffacd"> - <form action="search.php" enctype="application/x-www-form-urlencoded" method="get"> - <input name="query" type="text" size="20" value="" /> - <input name="submit" type="submit" value="Search ..." /> - </form> - <ul> - <li> - <a href="index.html">Home</a> - </li> - <li> - <a href="html/index.html">Reference Manual</a> - </li> - <li> - <a href="intro.html">Introduction</a> - </li> - <li> - <a href="FAQ.html">FAQ</a> - </li> - <li> - <a href="docs.html" style="font-weight:bold">Developer Menu</a> - </li> - <li> - <a href="bugs.html">Reporting bugs and getting help</a> - </li> - <li> - <a href="help.html">How to help</a> - </li> - <li> - <a href="downloads.html">Downloads</a> - </li> - <li> - <a href="news.html">Releases</a> - </li> - <li> - <a href="XMLinfo.html">XML</a> - </li> - <li> - <a href="XSLT.html">XSLT</a> - </li> - <li> - <a href="xmldtd.html">Validation & DTDs</a> - </li> - <li> - <a href="encoding.html">Encodings support</a> - </li> - <li> - <a href="catalog.html">Catalog support</a> - </li> - <li> - <a href="namespaces.html">Namespaces</a> - </li> - <li> - <a href="contribs.html">Contributions</a> - </li> - <li> - <a href="examples/index.html" style="font-weight:bold">Code Examples</a> - </li> - <li> - <a href="html/index.html" style="font-weight:bold">API Menu</a> - </li> - <li> - <a href="guidelines.html">XML Guidelines</a> - </li> - <li> - <a href="ChangeLog.html">Recent Changes</a> - </li> - </ul> - </td> - </tr> - </table> - <table width="100%" border="0" cellspacing="1" cellpadding="3"> - <tr> - <td colspan="1" bgcolor="#eecfa1" align="center"> - <center> - <b>Related links</b> - </center> - </td> - </tr> - <tr> - <td bgcolor="#fffacd"> - <ul> - <li> - <a href="http://mail.gnome.org/archives/xml/">Mail archive</a> - </li> - <li> - <a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a> - </li> - <li> - <a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a> - </li> - <li> - <a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a> - </li> - <li> - <a href="ftp://xmlsoft.org/">FTP</a> - </li> - <li> - <a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a> - </li> - <li> - <a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a> - </li> - <li> - <a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a> - </li> - <li> - <a href="http://codespeak.net/lxml/">lxml Python bindings</a> - </li> - <li> - <a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a> - </li> - <li> - <a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a> - </li> - <li> - <a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a> - </li> - <li> - <a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a> - </li> - <li> - <a href="http://libxml.rubyforge.org/">Ruby bindings</a> - </li> - <li> - <a href="http://tclxml.sourceforge.net/">Tcl bindings</a> - </li> - <li> - <a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a> - </li> - </ul> - </td> - </tr> - </table> - </td> - </tr> - </table> - </td> - <td valign="top" bgcolor="#8b7765"> - <table border="0" cellspacing="0" cellpadding="1" width="100%"> - <tr> - <td> - <table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"> - <tr> - <td> - <table border="0" cellpadding="3" cellspacing="1" width="100%"> - <tr> - <td bgcolor="#fffacd"> - <p></p> - <p style="text-align: right; font-style: italic; font-size: 10pt">"Programming -with libxml2 is like the thrilling embrace of an exotic stranger." <a href="http://diveintomark.org/archives/2004/02/18/libxml2">Mark -Pilgrim</a></p> - <p>Libxml2 is the XML C parser and toolkit developed for the Gnome project -(but usable outside of the Gnome platform), it is free software available -under the <a href="http://www.opensource.org/licenses/mit-license.html">MIT -License</a>. XML itself is a metalanguage to design markup languages, i.e. -text language where semantic and structure are added to the content using -extra "markup" information enclosed between angle brackets. HTML is the most -well-known markup language. Though the library is written in C <a href="python.html">a variety of language bindings</a> make it available in -other environments.</p> - <p>Libxml2 is known to be very portable, the library should build and work -without serious troubles on a variety of systems (Linux, Unix, Windows, -CygWin, MacOS, MacOS X, RISC Os, OS/2, VMS, QNX, MVS, ...)</p> - <p>Libxml2 implements a number of existing standards related to markup -languages:</p> - <ul><li>the XML standard: <a href="http://www.w3.org/TR/REC-xml">http://www.w3.org/TR/REC-xml</a></li> - <li>Namespaces in XML: <a href="http://www.w3.org/TR/REC-xml-names/">http://www.w3.org/TR/REC-xml-names/</a></li> - <li>XML Base: <a href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/</a></li> - <li><a href="http://www.cis.ohio-state.edu/rfc/rfc2396.txt">RFC 2396</a> : - Uniform Resource Identifiers <a href="http://www.ietf.org/rfc/rfc2396.txt">http://www.ietf.org/rfc/rfc2396.txt</a></li> - <li>XML Path Language (XPath) 1.0: <a href="http://www.w3.org/TR/xpath">http://www.w3.org/TR/xpath</a></li> - <li>HTML4 parser: <a href="http://www.w3.org/TR/html401/">http://www.w3.org/TR/html401/</a></li> - <li>XML Pointer Language (XPointer) Version 1.0: <a href="http://www.w3.org/TR/xptr">http://www.w3.org/TR/xptr</a></li> - <li>XML Inclusions (XInclude) Version 1.0: <a href="http://www.w3.org/TR/xinclude/">http://www.w3.org/TR/xinclude/</a></li> - <li>ISO-8859-x encodings, as well as <a href="http://www.cis.ohio-state.edu/rfc/rfc2044.txt">rfc2044</a> [UTF-8] - and <a href="http://www.cis.ohio-state.edu/rfc/rfc2781.txt">rfc2781</a> - [UTF-16] Unicode encodings, and more if using iconv support</li> - <li>part of SGML Open Technical Resolution TR9401:1997</li> - <li>XML Catalogs Working Draft 06 August 2001: <a href="http://www.oasis-open.org/committees/entity/spec-2001-08-06.html">http://www.oasis-open.org/committees/entity/spec-2001-08-06.html</a></li> - <li>Canonical XML Version 1.0: <a href="http://www.w3.org/TR/xml-c14n">http://www.w3.org/TR/xml-c14n</a> - and the Exclusive XML Canonicalization CR draft <a href="http://www.w3.org/TR/xml-exc-c14n">http://www.w3.org/TR/xml-exc-c14n</a></li> - <li>Relax NG, ISO/IEC 19757-2:2003, <a href="http://www.oasis-open.org/committees/relax-ng/spec-20011203.html">http://www.oasis-open.org/committees/relax-ng/spec-20011203.html</a></li> - <li>W3C XML Schemas Part 2: Datatypes <a href="http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/">REC 02 May - 2001</a></li> - <li>W3C <a href="http://www.w3.org/TR/xml-id/">xml:id</a> Working Draft 7 - April 2004</li> -</ul> - <p>In most cases libxml2 tries to implement the specifications in a -relatively strictly compliant way. As of release 2.4.16, libxml2 passed all -1800+ tests from the <a href="http://www.oasis-open.org/committees/xml-conformance/">OASIS XML Tests -Suite</a>.</p> - <p>To some extent libxml2 provides support for the following additional -specifications but doesn't claim to implement them completely:</p> - <ul><li>Document Object Model (DOM) <a href="http://www.w3.org/TR/DOM-Level-2-Core/">http://www.w3.org/TR/DOM-Level-2-Core/</a> - the document model, but it doesn't implement the API itself, gdome2 does - this on top of libxml2</li> - <li><a href="http://www.cis.ohio-state.edu/rfc/rfc959.txt">RFC 959</a> : - libxml2 implements a basic FTP client code</li> - <li><a href="http://www.cis.ohio-state.edu/rfc/rfc1945.txt">RFC 1945</a> : - HTTP/1.0, again a basic HTTP client code</li> - <li>SAX: a SAX2 like interface and a minimal SAX1 implementation compatible - with early expat versions</li> -</ul> - <p>A partial implementation of <a href="http://www.w3.org/TR/2001/REC-xmlschema-1-20010502/">XML Schemas Part -1: Structure</a> is being worked on but it would be far too early to make any -conformance statement about it at the moment.</p> - <p>Separate documents:</p> - <ul><li><a href="http://xmlsoft.org/XSLT/">the libxslt page</a> providing an - implementation of XSLT 1.0 and common extensions like EXSLT for - libxml2</li> - <li><a href="http://gdome2.cs.unibo.it/">the gdome2 page</a> - : a standard DOM2 implementation for libxml2</li> - <li><a href="http://www.aleksey.com/xmlsec/">the XMLSec page</a>: an - implementation of <a href="http://www.w3.org/TR/xmldsig-core/">W3C XML - Digital Signature</a> for libxml2</li> - <li>also check the related links section below for more related and active - projects.</li> -</ul> - <p>Logo designed by <a href="mailto:liyanage@access.ch">Marc Liyanage</a>.</p> - <p> - <a href="bugs.html">Daniel Veillard</a> - </p> - </td> - </tr> - </table> - </td> - </tr> - </table> - </td> - </tr> - </table> - </td> - </tr> - </table> - </td> - </tr> - </table> - </body> -</html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/interface.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/interface.html deleted file mode 100644 index f6fc2a99..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/interface.html +++ /dev/null @@ -1,59 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>The SAX interface</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>The SAX interface</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Sometimes the DOM tree output is just too large to fit reasonably into -memory. In that case (and if you don't expect to save back the XML document -loaded using libxml), it's better to use the SAX interface of libxml. SAX is -a <strong>callback-based interface</strong> to the parser. Before parsing, -the application layer registers a customized set of callbacks which are -called by the library as it progresses through the XML input.</p><p>To get more detailed step-by-step guidance on using the SAX interface of -libxml, see the <a href="http://www.daa.com.au/~james/gnome/xml-sax/xml-sax.html">nice -documentation</a>.written by <a href="mailto:james@daa.com.au">James -Henstridge</a>.</p><p>You can debug the SAX behaviour by using the <strong>testSAX</strong> -program located in the gnome-xml module (it's usually not shipped in the -binary packages of libxml, but you can find it in the tar source -distribution). Here is the sequence of callbacks that would be reported by -testSAX when parsing the example XML document shown earlier:</p><pre>SAX.setDocumentLocator() -SAX.startDocument() -SAX.getEntity(amp) -SAX.startElement(EXAMPLE, prop1='gnome is great', prop2='&amp; linux too') -SAX.characters( , 3) -SAX.startElement(head) -SAX.characters( , 4) -SAX.startElement(title) -SAX.characters(Welcome to Gnome, 16) -SAX.endElement(title) -SAX.characters( , 3) -SAX.endElement(head) -SAX.characters( , 3) -SAX.startElement(chapter) -SAX.characters( , 4) -SAX.startElement(title) -SAX.characters(The Linux adventure, 19) -SAX.endElement(title) -SAX.characters( , 4) -SAX.startElement(p) -SAX.characters(bla bla bla ..., 15) -SAX.endElement(p) -SAX.characters( , 4) -SAX.startElement(image, href='linus.gif') -SAX.endElement(image) -SAX.characters( , 4) -SAX.startElement(p) -SAX.characters(..., 3) -SAX.endElement(p) -SAX.characters( , 3) -SAX.endElement(chapter) -SAX.characters( , 1) -SAX.endElement(EXAMPLE) -SAX.endDocument()</pre><p>Most of the other interfaces of libxml2 are based on the DOM tree-building -facility, so nearly everything up to the end of this document presupposes the -use of the standard DOM tree build. Note that the DOM tree itself is built by -a set of registered default callbacks, without internal specific -interface.</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/intro.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/intro.html deleted file mode 100644 index b03cfdc8..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/intro.html +++ /dev/null @@ -1,31 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Introduction</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Introduction</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>This document describes libxml, the <a href="http://www.w3.org/XML/">XML</a> C parser and toolkit developed for the -<a href="http://www.gnome.org/">Gnome</a> project. <a href="http://www.w3.org/XML/">XML is a standard</a> for building tag-based -structured documents/data.</p><p>Here are some key points about libxml:</p><ul><li>Libxml2 exports Push (progressive) and Pull (blocking) type parser - interfaces for both XML and HTML.</li> - <li>Libxml2 can do DTD validation at parse time, using a parsed document - instance, or with an arbitrary DTD.</li> - <li>Libxml2 includes complete <a href="http://www.w3.org/TR/xpath">XPath</a>, <a href="http://www.w3.org/TR/xptr">XPointer</a> and <a href="http://www.w3.org/TR/xinclude">XInclude</a> implementations.</li> - <li>It is written in plain C, making as few assumptions as possible, and - sticking closely to ANSI C/POSIX for easy embedding. Works on - Linux/Unix/Windows, ported to a number of other platforms.</li> - <li>Basic support for HTTP and FTP client allowing applications to fetch - remote resources.</li> - <li>The design is modular, most of the extensions can be compiled out.</li> - <li>The internal document representation is as close as possible to the <a href="http://www.w3.org/DOM/">DOM</a> interfaces.</li> - <li>Libxml2 also has a <a href="http://www.megginson.com/SAX/index.html">SAX like interface</a>; - the interface is designed to be compatible with <a href="http://www.jclark.com/xml/expat.html">Expat</a>.</li> - <li>This library is released under the <a href="http://www.opensource.org/licenses/mit-license.html">MIT - License</a>. See the Copyright file in the distribution for the precise - wording.</li> -</ul><p>Warning: unless you are forced to because your application links with a -Gnome-1.X library requiring it, <strong><span style="background-color: #FF0000">Do Not Use libxml1</span></strong>, use -libxml2</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/library.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/library.html deleted file mode 100644 index 04f236de..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/library.html +++ /dev/null @@ -1,145 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>The parser interfaces</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>The parser interfaces</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>This section is directly intended to help programmers getting bootstrapped -using the XML tollkit from the C language. It is not intended to be -extensive. I hope the automatically generated documents will provide the -completeness required, but as a separate set of documents. The interfaces of -the XML parser are by principle low level, Those interested in a higher level -API should <a href="#DOM">look at DOM</a>.</p><p>The <a href="html/libxml-parser.html">parser interfaces for XML</a> are -separated from the <a href="html/libxml-htmlparser.html">HTML parser -interfaces</a>. Let's have a look at how the XML parser can be called:</p><h3><a name="Invoking" id="Invoking">Invoking the parser : the pull method</a></h3><p>Usually, the first thing to do is to read an XML input. The parser accepts -documents either from in-memory strings or from files. The functions are -defined in "parser.h":</p><dl><dt><code>xmlDocPtr xmlParseMemory(char *buffer, int size);</code></dt> - <dd><p>Parse a null-terminated string containing the document.</p> - </dd> -</dl><dl><dt><code>xmlDocPtr xmlParseFile(const char *filename);</code></dt> - <dd><p>Parse an XML document contained in a (possibly compressed) - file.</p> - </dd> -</dl><p>The parser returns a pointer to the document structure (or NULL in case of -failure).</p><h3 id="Invoking1">Invoking the parser: the push method</h3><p>In order for the application to keep the control when the document is -being fetched (which is common for GUI based programs) libxml2 provides a -push interface, too, as of version 1.8.3. Here are the interface -functions:</p><pre>xmlParserCtxtPtr xmlCreatePushParserCtxt(xmlSAXHandlerPtr sax, - void *user_data, - const char *chunk, - int size, - const char *filename); -int xmlParseChunk (xmlParserCtxtPtr ctxt, - const char *chunk, - int size, - int terminate);</pre><p>and here is a simple example showing how to use the interface:</p><pre> FILE *f; - - f = fopen(filename, "r"); - if (f != NULL) { - int res, size = 1024; - char chars[1024]; - xmlParserCtxtPtr ctxt; - - res = fread(chars, 1, 4, f); - if (res > 0) { - ctxt = xmlCreatePushParserCtxt(NULL, NULL, - chars, res, filename); - while ((res = fread(chars, 1, size, f)) > 0) { - xmlParseChunk(ctxt, chars, res, 0); - } - xmlParseChunk(ctxt, chars, 0, 1); - doc = ctxt->myDoc; - xmlFreeParserCtxt(ctxt); - } - }</pre><p>The HTML parser embedded into libxml2 also has a push interface; the -functions are just prefixed by "html" rather than "xml".</p><h3 id="Invoking2">Invoking the parser: the SAX interface</h3><p>The tree-building interface makes the parser memory-hungry, first loading -the document in memory and then building the tree itself. Reading a document -without building the tree is possible using the SAX interfaces (see SAX.h and -<a href="http://www.daa.com.au/~james/gnome/xml-sax/xml-sax.html">James -Henstridge's documentation</a>). Note also that the push interface can be -limited to SAX: just use the two first arguments of -<code>xmlCreatePushParserCtxt()</code>.</p><h3><a name="Building" id="Building">Building a tree from scratch</a></h3><p>The other way to get an XML tree in memory is by building it. Basically -there is a set of functions dedicated to building new elements. (These are -also described in <libxml/tree.h>.) For example, here is a piece of -code that produces the XML document used in the previous examples:</p><pre> #include <libxml/tree.h> - xmlDocPtr doc; - xmlNodePtr tree, subtree; - - doc = xmlNewDoc("1.0"); - doc->children = xmlNewDocNode(doc, NULL, "EXAMPLE", NULL); - xmlSetProp(doc->children, "prop1", "gnome is great"); - xmlSetProp(doc->children, "prop2", "& linux too"); - tree = xmlNewChild(doc->children, NULL, "head", NULL); - subtree = xmlNewChild(tree, NULL, "title", "Welcome to Gnome"); - tree = xmlNewChild(doc->children, NULL, "chapter", NULL); - subtree = xmlNewChild(tree, NULL, "title", "The Linux adventure"); - subtree = xmlNewChild(tree, NULL, "p", "bla bla bla ..."); - subtree = xmlNewChild(tree, NULL, "image", NULL); - xmlSetProp(subtree, "href", "linus.gif");</pre><p>Not really rocket science ...</p><h3><a name="Traversing" id="Traversing">Traversing the tree</a></h3><p>Basically by <a href="html/libxml-tree.html">including "tree.h"</a> your -code has access to the internal structure of all the elements of the tree. -The names should be somewhat simple like <strong>parent</strong>, -<strong>children</strong>, <strong>next</strong>, <strong>prev</strong>, -<strong>properties</strong>, etc... For example, still with the previous -example:</p><pre><code>doc->children->children->children</code></pre><p>points to the title element,</p><pre>doc->children->children->next->children->children</pre><p>points to the text node containing the chapter title "The Linux -adventure".</p><p><strong>NOTE</strong>: XML allows <em>PI</em>s and <em>comments</em> to be -present before the document root, so <code>doc->children</code> may point -to an element which is not the document Root Element; a function -<code>xmlDocGetRootElement()</code> was added for this purpose.</p><h3><a name="Modifying" id="Modifying">Modifying the tree</a></h3><p>Functions are provided for reading and writing the document content. Here -is an excerpt from the <a href="html/libxml-tree.html">tree API</a>:</p><dl><dt><code>xmlAttrPtr xmlSetProp(xmlNodePtr node, const xmlChar *name, const - xmlChar *value);</code></dt> - <dd><p>This sets (or changes) an attribute carried by an ELEMENT node. - The value can be NULL.</p> - </dd> -</dl><dl><dt><code>const xmlChar *xmlGetProp(xmlNodePtr node, const xmlChar - *name);</code></dt> - <dd><p>This function returns a pointer to new copy of the property - content. Note that the user must deallocate the result.</p> - </dd> -</dl><p>Two functions are provided for reading and writing the text associated -with elements:</p><dl><dt><code>xmlNodePtr xmlStringGetNodeList(xmlDocPtr doc, const xmlChar - *value);</code></dt> - <dd><p>This function takes an "external" string and converts it to one - text node or possibly to a list of entity and text nodes. All - non-predefined entity references like &Gnome; will be stored - internally as entity nodes, hence the result of the function may not be - a single node.</p> - </dd> -</dl><dl><dt><code>xmlChar *xmlNodeListGetString(xmlDocPtr doc, xmlNodePtr list, int - inLine);</code></dt> - <dd><p>This function is the inverse of - <code>xmlStringGetNodeList()</code>. It generates a new string - containing the content of the text and entity nodes. Note the extra - argument inLine. If this argument is set to 1, the function will expand - entity references. For example, instead of returning the &Gnome; - XML encoding in the string, it will substitute it with its value (say, - "GNU Network Object Model Environment").</p> - </dd> -</dl><h3><a name="Saving" id="Saving">Saving a tree</a></h3><p>Basically 3 options are possible:</p><dl><dt><code>void xmlDocDumpMemory(xmlDocPtr cur, xmlChar**mem, int - *size);</code></dt> - <dd><p>Returns a buffer into which the document has been saved.</p> - </dd> -</dl><dl><dt><code>extern void xmlDocDump(FILE *f, xmlDocPtr doc);</code></dt> - <dd><p>Dumps a document to an open file descriptor.</p> - </dd> -</dl><dl><dt><code>int xmlSaveFile(const char *filename, xmlDocPtr cur);</code></dt> - <dd><p>Saves the document to a file. In this case, the compression - interface is triggered if it has been turned on.</p> - </dd> -</dl><h3><a name="Compressio" id="Compressio">Compression</a></h3><p>The library transparently handles compression when doing file-based -accesses. The level of compression on saves can be turned on either globally -or individually for one file:</p><dl><dt><code>int xmlGetDocCompressMode (xmlDocPtr doc);</code></dt> - <dd><p>Gets the document compression ratio (0-9).</p> - </dd> -</dl><dl><dt><code>void xmlSetDocCompressMode (xmlDocPtr doc, int mode);</code></dt> - <dd><p>Sets the document compression ratio.</p> - </dd> -</dl><dl><dt><code>int xmlGetCompressMode(void);</code></dt> - <dd><p>Gets the default compression ratio.</p> - </dd> -</dl><dl><dt><code>void xmlSetCompressMode(int mode);</code></dt> - <dd><p>Sets the default compression ratio.</p> - </dd> -</dl><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/libxml.gif b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/libxml.gif Binary files differdeleted file mode 100644 index e24adf8f..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/libxml.gif +++ /dev/null diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/libxml2-api.xml b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/libxml2-api.xml deleted file mode 100644 index 4e031bc9..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/libxml2-api.xml +++ /dev/null @@ -1,18116 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<api name='libxml2'> - <files> - <file name='DOCBparser'> - <summary>old DocBook SGML parser</summary> - <description>interface for a DocBook SGML non-verifying parser This code is DEPRECATED, and should not be used anymore. </description> - <author>Daniel Veillard </author> - <deprecated/> - <exports symbol='docbParserInputPtr' type='typedef'/> - <exports symbol='docbParserCtxt' type='typedef'/> - <exports symbol='docbParserCtxtPtr' type='typedef'/> - <exports symbol='docbParserInput' type='typedef'/> - <exports symbol='docbDocPtr' type='typedef'/> - <exports symbol='docbSAXHandler' type='typedef'/> - <exports symbol='docbSAXHandlerPtr' type='typedef'/> - <exports symbol='docbFreeParserCtxt' type='function'/> - <exports symbol='docbParseDoc' type='function'/> - <exports symbol='docbCreateFileParserCtxt' type='function'/> - <exports symbol='docbSAXParseFile' type='function'/> - <exports symbol='docbSAXParseDoc' type='function'/> - <exports symbol='docbCreatePushParserCtxt' type='function'/> - <exports symbol='docbEncodeEntities' type='function'/> - <exports symbol='docbParseFile' type='function'/> - <exports symbol='docbParseDocument' type='function'/> - <exports symbol='docbParseChunk' type='function'/> - </file> - <file name='HTMLparser'> - <summary>interface for an HTML 4.0 non-verifying parser</summary> - <description>this module implements an HTML 4.0 non-verifying parser with API compatible with the XML parser ones. It should be able to parse "real world" HTML, even if severely broken from a specification point of view. </description> - <author>Daniel Veillard </author> - <exports symbol='htmlDefaultSubelement' type='macro'/> - <exports symbol='htmlElementAllowedHereDesc' type='macro'/> - <exports symbol='htmlRequiredAttrs' type='macro'/> - <exports symbol='HTML_REQUIRED' type='enum'/> - <exports symbol='HTML_INVALID' type='enum'/> - <exports symbol='HTML_PARSE_NONET' type='enum'/> - <exports symbol='HTML_NA' type='enum'/> - <exports symbol='HTML_PARSE_COMPACT' type='enum'/> - <exports symbol='HTML_VALID' type='enum'/> - <exports symbol='HTML_PARSE_NOERROR' type='enum'/> - <exports symbol='HTML_PARSE_NOBLANKS' type='enum'/> - <exports symbol='HTML_DEPRECATED' type='enum'/> - <exports symbol='HTML_PARSE_PEDANTIC' type='enum'/> - <exports symbol='HTML_PARSE_RECOVER' type='enum'/> - <exports symbol='HTML_PARSE_NOWARNING' type='enum'/> - <exports symbol='htmlParserNodeInfo' type='typedef'/> - <exports symbol='htmlParserInput' type='typedef'/> - <exports symbol='htmlParserCtxtPtr' type='typedef'/> - <exports symbol='htmlEntityDesc' type='typedef'/> - <exports symbol='htmlDocPtr' type='typedef'/> - <exports symbol='htmlSAXHandlerPtr' type='typedef'/> - <exports symbol='htmlStatus' type='typedef'/> - <exports symbol='htmlNodePtr' type='typedef'/> - <exports symbol='htmlElemDescPtr' type='typedef'/> - <exports symbol='htmlElemDesc' type='typedef'/> - <exports symbol='htmlSAXHandler' type='typedef'/> - <exports symbol='htmlParserInputPtr' type='typedef'/> - <exports symbol='htmlParserOption' type='typedef'/> - <exports symbol='htmlEntityDescPtr' type='typedef'/> - <exports symbol='htmlParserCtxt' type='typedef'/> - <exports symbol='_htmlEntityDesc' type='struct'/> - <exports symbol='_htmlElemDesc' type='struct'/> - <exports symbol='htmlIsScriptAttribute' type='function'/> - <exports symbol='htmlHandleOmittedElem' type='function'/> - <exports symbol='htmlReadFd' type='function'/> - <exports symbol='htmlReadIO' type='function'/> - <exports symbol='htmlParseFile' type='function'/> - <exports symbol='htmlCtxtReadDoc' type='function'/> - <exports symbol='htmlAutoCloseTag' type='function'/> - <exports symbol='htmlParseChunk' type='function'/> - <exports symbol='htmlTagLookup' type='function'/> - <exports symbol='htmlCreateMemoryParserCtxt' type='function'/> - <exports symbol='htmlCtxtReset' type='function'/> - <exports symbol='htmlElementAllowedHere' type='function'/> - <exports symbol='htmlCtxtReadIO' type='function'/> - <exports symbol='htmlCreatePushParserCtxt' type='function'/> - <exports symbol='htmlReadMemory' type='function'/> - <exports symbol='htmlIsAutoClosed' type='function'/> - <exports symbol='htmlParseCharRef' type='function'/> - <exports symbol='htmlReadDoc' type='function'/> - <exports symbol='htmlEncodeEntities' type='function'/> - <exports symbol='htmlNodeStatus' type='function'/> - <exports symbol='htmlAttrAllowed' type='function'/> - <exports symbol='htmlSAXParseFile' type='function'/> - <exports symbol='htmlParseEntityRef' type='function'/> - <exports symbol='htmlElementStatusHere' type='function'/> - <exports symbol='htmlEntityValueLookup' type='function'/> - <exports symbol='htmlParseElement' type='function'/> - <exports symbol='UTF8ToHtml' type='function'/> - <exports symbol='htmlEntityLookup' type='function'/> - <exports symbol='htmlFreeParserCtxt' type='function'/> - <exports symbol='htmlCtxtReadMemory' type='function'/> - <exports symbol='htmlCtxtReadFd' type='function'/> - <exports symbol='htmlReadFile' type='function'/> - <exports symbol='htmlCtxtReadFile' type='function'/> - <exports symbol='htmlParseDocument' type='function'/> - <exports symbol='htmlNewParserCtxt' type='function'/> - <exports symbol='htmlSAXParseDoc' type='function'/> - <exports symbol='htmlCtxtUseOptions' type='function'/> - <exports symbol='htmlParseDoc' type='function'/> - </file> - <file name='HTMLtree'> - <summary>specific APIs to process HTML tree, especially serialization</summary> - <description>this module implements a few function needed to process tree in an HTML specific way. </description> - <author>Daniel Veillard </author> - <exports symbol='HTML_ENTITY_REF_NODE' type='macro'/> - <exports symbol='HTML_COMMENT_NODE' type='macro'/> - <exports symbol='HTML_PRESERVE_NODE' type='macro'/> - <exports symbol='HTML_TEXT_NODE' type='macro'/> - <exports symbol='HTML_PI_NODE' type='macro'/> - <exports symbol='htmlNodeDumpFileFormat' type='function'/> - <exports symbol='htmlDocDumpMemory' type='function'/> - <exports symbol='htmlSaveFile' type='function'/> - <exports symbol='htmlDocDump' type='function'/> - <exports symbol='htmlDocDumpMemoryFormat' type='function'/> - <exports symbol='htmlIsBooleanAttr' type='function'/> - <exports symbol='htmlSaveFileFormat' type='function'/> - <exports symbol='htmlNodeDumpFormatOutput' type='function'/> - <exports symbol='htmlSetMetaEncoding' type='function'/> - <exports symbol='htmlSaveFileEnc' type='function'/> - <exports symbol='htmlNodeDumpOutput' type='function'/> - <exports symbol='htmlNodeDump' type='function'/> - <exports symbol='htmlNewDoc' type='function'/> - <exports symbol='htmlGetMetaEncoding' type='function'/> - <exports symbol='htmlNodeDumpFile' type='function'/> - <exports symbol='htmlDocContentDumpFormatOutput' type='function'/> - <exports symbol='htmlNewDocNoDtD' type='function'/> - <exports symbol='htmlDocContentDumpOutput' type='function'/> - </file> - <file name='SAX'> - <summary>Old SAX version 1 handler, deprecated</summary> - <description>DEPRECATED set of SAX version 1 interfaces used to build the DOM tree. </description> - <author>Daniel Veillard </author> - <deprecated/> - <exports symbol='comment' type='function'/> - <exports symbol='checkNamespace' type='function'/> - <exports symbol='getColumnNumber' type='function'/> - <exports symbol='entityDecl' type='function'/> - <exports symbol='attribute' type='function'/> - <exports symbol='getNamespace' type='function'/> - <exports symbol='setDocumentLocator' type='function'/> - <exports symbol='initxmlDefaultSAXHandler' type='function'/> - <exports symbol='ignorableWhitespace' type='function'/> - <exports symbol='hasExternalSubset' type='function'/> - <exports symbol='unparsedEntityDecl' type='function'/> - <exports symbol='globalNamespace' type='function'/> - <exports symbol='hasInternalSubset' type='function'/> - <exports symbol='reference' type='function'/> - <exports symbol='notationDecl' type='function'/> - <exports symbol='getSystemId' type='function'/> - <exports symbol='externalSubset' type='function'/> - <exports symbol='resolveEntity' type='function'/> - <exports symbol='startDocument' type='function'/> - <exports symbol='setNamespace' type='function'/> - <exports symbol='cdataBlock' type='function'/> - <exports symbol='getPublicId' type='function'/> - <exports symbol='inithtmlDefaultSAXHandler' type='function'/> - <exports symbol='processingInstruction' type='function'/> - <exports symbol='endElement' type='function'/> - <exports symbol='namespaceDecl' type='function'/> - <exports symbol='initdocbDefaultSAXHandler' type='function'/> - <exports symbol='getEntity' type='function'/> - <exports symbol='characters' type='function'/> - <exports symbol='elementDecl' type='function'/> - <exports symbol='startElement' type='function'/> - <exports symbol='getParameterEntity' type='function'/> - <exports symbol='attributeDecl' type='function'/> - <exports symbol='isStandalone' type='function'/> - <exports symbol='internalSubset' type='function'/> - <exports symbol='endDocument' type='function'/> - <exports symbol='getLineNumber' type='function'/> - </file> - <file name='SAX2'> - <summary>SAX2 parser interface used to build the DOM tree</summary> - <description>those are the default SAX2 interfaces used by the library when building DOM tree. </description> - <author>Daniel Veillard </author> - <exports symbol='xmlSAX2EndElementNs' type='function'/> - <exports symbol='xmlSAX2Reference' type='function'/> - <exports symbol='xmlSAX2ElementDecl' type='function'/> - <exports symbol='xmlSAX2AttributeDecl' type='function'/> - <exports symbol='xmlSAX2Comment' type='function'/> - <exports symbol='xmlSAX2GetColumnNumber' type='function'/> - <exports symbol='xmlSAX2GetEntity' type='function'/> - <exports symbol='xmlSAX2UnparsedEntityDecl' type='function'/> - <exports symbol='xmlSAX2InitDocbDefaultSAXHandler' type='function'/> - <exports symbol='xmlSAXVersion' type='function'/> - <exports symbol='xmlSAX2IgnorableWhitespace' type='function'/> - <exports symbol='xmlSAX2NotationDecl' type='function'/> - <exports symbol='xmlSAX2StartDocument' type='function'/> - <exports symbol='xmlSAX2EndElement' type='function'/> - <exports symbol='xmlSAX2ResolveEntity' type='function'/> - <exports symbol='xmlSAX2ExternalSubset' type='function'/> - <exports symbol='xmlSAX2GetPublicId' type='function'/> - <exports symbol='xmlSAX2IsStandalone' type='function'/> - <exports symbol='xmlSAX2EndDocument' type='function'/> - <exports symbol='xmlSAX2ProcessingInstruction' type='function'/> - <exports symbol='xmlSAX2InternalSubset' type='function'/> - <exports symbol='xmlSAX2Characters' type='function'/> - <exports symbol='xmlSAXDefaultVersion' type='function'/> - <exports symbol='xmlSAX2StartElement' type='function'/> - <exports symbol='xmlSAX2SetDocumentLocator' type='function'/> - <exports symbol='xmlSAX2CDataBlock' type='function'/> - <exports symbol='xmlSAX2StartElementNs' type='function'/> - <exports symbol='xmlSAX2HasExternalSubset' type='function'/> - <exports symbol='htmlDefaultSAXHandlerInit' type='function'/> - <exports symbol='xmlSAX2GetLineNumber' type='function'/> - <exports symbol='xmlSAX2HasInternalSubset' type='function'/> - <exports symbol='xmlSAX2InitHtmlDefaultSAXHandler' type='function'/> - <exports symbol='docbDefaultSAXHandlerInit' type='function'/> - <exports symbol='xmlDefaultSAXHandlerInit' type='function'/> - <exports symbol='xmlSAX2InitDefaultSAXHandler' type='function'/> - <exports symbol='xmlSAX2GetParameterEntity' type='function'/> - <exports symbol='xmlSAX2GetSystemId' type='function'/> - <exports symbol='xmlSAX2EntityDecl' type='function'/> - </file> - <file name='c14n'> - <summary>Provide Canonical XML and Exclusive XML Canonicalization</summary> - <description>the c14n modules provides a "Canonical XML" implementation</description> - <author>Aleksey Sanin <aleksey@aleksey.com> </author> - <exports symbol='xmlC14NExecute' type='function'/> - <exports symbol='xmlC14NDocSaveTo' type='function'/> - <exports symbol='xmlC14NIsVisibleCallback' type='function'/> - <exports symbol='xmlC14NDocSave' type='function'/> - <exports symbol='xmlC14NDocDumpMemory' type='function'/> - </file> - <file name='catalog'> - <summary>interfaces to the Catalog handling system</summary> - <description>the catalog module implements the support for XML Catalogs and SGML catalogs </description> - <author>Daniel Veillard </author> - <exports symbol='XML_CATALOG_PI' type='macro'/> - <exports symbol='XML_CATALOGS_NAMESPACE' type='macro'/> - <exports symbol='XML_CATA_ALLOW_NONE' type='enum'/> - <exports symbol='XML_CATA_PREFER_NONE' type='enum'/> - <exports symbol='XML_CATA_ALLOW_GLOBAL' type='enum'/> - <exports symbol='XML_CATA_PREFER_PUBLIC' type='enum'/> - <exports symbol='XML_CATA_ALLOW_DOCUMENT' type='enum'/> - <exports symbol='XML_CATA_ALLOW_ALL' type='enum'/> - <exports symbol='XML_CATA_PREFER_SYSTEM' type='enum'/> - <exports symbol='xmlCatalogAllow' type='typedef'/> - <exports symbol='xmlCatalogPrefer' type='typedef'/> - <exports symbol='xmlCatalog' type='typedef'/> - <exports symbol='xmlCatalogPtr' type='typedef'/> - <exports symbol='xmlFreeCatalog' type='function'/> - <exports symbol='xmlLoadCatalogs' type='function'/> - <exports symbol='xmlCatalogLocalResolve' type='function'/> - <exports symbol='xmlACatalogAdd' type='function'/> - <exports symbol='xmlACatalogResolvePublic' type='function'/> - <exports symbol='xmlCatalogGetDefaults' type='function'/> - <exports symbol='xmlACatalogRemove' type='function'/> - <exports symbol='xmlCatalogSetDefaultPrefer' type='function'/> - <exports symbol='xmlACatalogResolveURI' type='function'/> - <exports symbol='xmlCatalogAdd' type='function'/> - <exports symbol='xmlCatalogResolvePublic' type='function'/> - <exports symbol='xmlCatalogGetSystem' type='function'/> - <exports symbol='xmlInitializeCatalog' type='function'/> - <exports symbol='xmlLoadCatalog' type='function'/> - <exports symbol='xmlCatalogRemove' type='function'/> - <exports symbol='xmlCatalogIsEmpty' type='function'/> - <exports symbol='xmlACatalogDump' type='function'/> - <exports symbol='xmlCatalogFreeLocal' type='function'/> - <exports symbol='xmlACatalogResolve' type='function'/> - <exports symbol='xmlCatalogResolveSystem' type='function'/> - <exports symbol='xmlLoadSGMLSuperCatalog' type='function'/> - <exports symbol='xmlCatalogConvert' type='function'/> - <exports symbol='xmlCatalogGetPublic' type='function'/> - <exports symbol='xmlLoadACatalog' type='function'/> - <exports symbol='xmlACatalogResolveSystem' type='function'/> - <exports symbol='xmlCatalogLocalResolveURI' type='function'/> - <exports symbol='xmlConvertSGMLCatalog' type='function'/> - <exports symbol='xmlCatalogAddLocal' type='function'/> - <exports symbol='xmlNewCatalog' type='function'/> - <exports symbol='xmlParseCatalogFile' type='function'/> - <exports symbol='xmlCatalogSetDebug' type='function'/> - <exports symbol='xmlCatalogResolve' type='function'/> - <exports symbol='xmlCatalogSetDefaults' type='function'/> - <exports symbol='xmlCatalogDump' type='function'/> - <exports symbol='xmlCatalogCleanup' type='function'/> - <exports symbol='xmlCatalogResolveURI' type='function'/> - </file> - <file name='chvalid'> - <summary>Unicode character range checking</summary> - <description>this module exports interfaces for the character range validation APIs This file is automatically generated from the cvs source definition files using the genChRanges.py Python script </description> - <author>William Brack <wbrack@mmm.com.hk> </author> - <exports symbol='xmlIsExtender_ch' type='macro'/> - <exports symbol='xmlIsPubidCharQ' type='macro'/> - <exports symbol='xmlIsPubidChar_ch' type='macro'/> - <exports symbol='xmlIsIdeographicQ' type='macro'/> - <exports symbol='xmlIsExtenderQ' type='macro'/> - <exports symbol='xmlIsChar_ch' type='macro'/> - <exports symbol='xmlIsDigitQ' type='macro'/> - <exports symbol='xmlIsDigit_ch' type='macro'/> - <exports symbol='xmlIsBaseChar_ch' type='macro'/> - <exports symbol='xmlIsCombiningQ' type='macro'/> - <exports symbol='xmlIsBlankQ' type='macro'/> - <exports symbol='xmlIsCharQ' type='macro'/> - <exports symbol='xmlIsBaseCharQ' type='macro'/> - <exports symbol='xmlIsBlank_ch' type='macro'/> - <exports symbol='xmlChLRange' type='typedef'/> - <exports symbol='xmlChSRangePtr' type='typedef'/> - <exports symbol='xmlChLRangePtr' type='typedef'/> - <exports symbol='xmlChRangeGroupPtr' type='typedef'/> - <exports symbol='xmlChSRange' type='typedef'/> - <exports symbol='xmlChRangeGroup' type='typedef'/> - <exports symbol='_xmlChSRange' type='struct'/> - <exports symbol='_xmlChLRange' type='struct'/> - <exports symbol='_xmlChRangeGroup' type='struct'/> - <exports symbol='xmlIsBaseCharGroup' type='variable'/> - <exports symbol='xmlIsIdeographicGroup' type='variable'/> - <exports symbol='xmlIsDigitGroup' type='variable'/> - <exports symbol='xmlIsExtenderGroup' type='variable'/> - <exports symbol='xmlIsPubidChar_tab' type='variable'/> - <exports symbol='xmlIsCharGroup' type='variable'/> - <exports symbol='xmlIsCombiningGroup' type='variable'/> - <exports symbol='xmlIsChar' type='function'/> - <exports symbol='xmlIsDigit' type='function'/> - <exports symbol='xmlIsBlank' type='function'/> - <exports symbol='xmlIsIdeographic' type='function'/> - <exports symbol='xmlCharInRange' type='function'/> - <exports symbol='xmlIsPubidChar' type='function'/> - <exports symbol='xmlIsCombining' type='function'/> - <exports symbol='xmlIsBaseChar' type='function'/> - <exports symbol='xmlIsExtender' type='function'/> - </file> - <file name='debugXML'> - <summary>Tree debugging APIs</summary> - <description>Interfaces to a set of routines used for debugging the tree produced by the XML parser. </description> - <author>Daniel Veillard </author> - <exports symbol='xmlShellCtxt' type='typedef'/> - <exports symbol='xmlShellCtxtPtr' type='typedef'/> - <exports symbol='_xmlShellCtxt' type='struct'/> - <exports symbol='xmlDebugDumpAttrList' type='function'/> - <exports symbol='xmlLsOneNode' type='function'/> - <exports symbol='xmlShellReadlineFunc' type='function'/> - <exports symbol='xmlShellSave' type='function'/> - <exports symbol='xmlBoolToText' type='function'/> - <exports symbol='xmlShellWrite' type='function'/> - <exports symbol='xmlShellDu' type='function'/> - <exports symbol='xmlShellValidate' type='function'/> - <exports symbol='xmlDebugCheckDocument' type='function'/> - <exports symbol='xmlShellPrintXPathResult' type='function'/> - <exports symbol='xmlShellCmd' type='function'/> - <exports symbol='xmlShellLoad' type='function'/> - <exports symbol='xmlDebugDumpString' type='function'/> - <exports symbol='xmlShellBase' type='function'/> - <exports symbol='xmlShellCat' type='function'/> - <exports symbol='xmlDebugDumpDTD' type='function'/> - <exports symbol='xmlDebugDumpNode' type='function'/> - <exports symbol='xmlDebugDumpEntities' type='function'/> - <exports symbol='xmlShellPrintNode' type='function'/> - <exports symbol='xmlShellPwd' type='function'/> - <exports symbol='xmlDebugDumpNodeList' type='function'/> - <exports symbol='xmlDebugDumpAttr' type='function'/> - <exports symbol='xmlDebugDumpDocument' type='function'/> - <exports symbol='xmlLsCountNode' type='function'/> - <exports symbol='xmlShellPrintXPathError' type='function'/> - <exports symbol='xmlShellDir' type='function'/> - <exports symbol='xmlDebugDumpOneNode' type='function'/> - <exports symbol='xmlShellList' type='function'/> - <exports symbol='xmlDebugDumpDocumentHead' type='function'/> - <exports symbol='xmlShell' type='function'/> - </file> - <file name='dict'> - <summary>string dictionnary</summary> - <description>dictionary of reusable strings, just used to avoid allocation and freeing operations. </description> - <author>Daniel Veillard </author> - <exports symbol='xmlDict' type='typedef'/> - <exports symbol='xmlDictPtr' type='typedef'/> - <exports symbol='xmlDictReference' type='function'/> - <exports symbol='xmlDictCleanup' type='function'/> - <exports symbol='xmlDictSize' type='function'/> - <exports symbol='xmlDictExists' type='function'/> - <exports symbol='xmlDictOwns' type='function'/> - <exports symbol='xmlDictQLookup' type='function'/> - <exports symbol='xmlDictCreateSub' type='function'/> - <exports symbol='xmlDictFree' type='function'/> - <exports symbol='xmlDictLookup' type='function'/> - <exports symbol='xmlDictCreate' type='function'/> - </file> - <file name='encoding'> - <summary>interface for the encoding conversion functions</summary> - <description>interface for the encoding conversion functions needed for XML basic encoding and iconv() support. Related specs are rfc2044 (UTF-8 and UTF-16) F. Yergeau Alis Technologies [ISO-10646] UTF-8 and UTF-16 in Annexes [ISO-8859-1] ISO Latin-1 characters codes. [UNICODE] The Unicode Consortium, "The Unicode Standard -- Worldwide Character Encoding -- Version 1.0", Addison- Wesley, Volume 1, 1991, Volume 2, 1992. UTF-8 is described in Unicode Technical Report #4. [US-ASCII] Coded Character Set--7-bit American Standard Code for Information Interchange, ANSI X3.4-1986. </description> - <author>Daniel Veillard </author> - <exports symbol='XML_CHAR_ENCODING_UCS4LE' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_ERROR' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_8859_5' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_EBCDIC' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_ASCII' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_UCS4_2143' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_NONE' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_UTF16BE' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_2022_JP' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_SHIFT_JIS' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_UCS4BE' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_UTF16LE' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_UCS4_3412' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_8859_8' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_8859_9' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_8859_6' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_8859_7' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_8859_4' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_EUC_JP' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_8859_2' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_8859_3' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_8859_1' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_UTF8' type='enum'/> - <exports symbol='XML_CHAR_ENCODING_UCS2' type='enum'/> - <exports symbol='xmlCharEncoding' type='typedef'/> - <exports symbol='xmlCharEncodingHandler' type='typedef'/> - <exports symbol='xmlCharEncodingHandlerPtr' type='typedef'/> - <exports symbol='_xmlCharEncodingHandler' type='struct'/> - <exports symbol='xmlDelEncodingAlias' type='function'/> - <exports symbol='xmlGetEncodingAlias' type='function'/> - <exports symbol='xmlRegisterCharEncodingHandler' type='function'/> - <exports symbol='UTF8Toisolat1' type='function'/> - <exports symbol='xmlInitCharEncodingHandlers' type='function'/> - <exports symbol='xmlAddEncodingAlias' type='function'/> - <exports symbol='xmlCleanupEncodingAliases' type='function'/> - <exports symbol='xmlCharEncOutFunc' type='function'/> - <exports symbol='xmlParseCharEncoding' type='function'/> - <exports symbol='xmlCharEncodingInputFunc' type='function'/> - <exports symbol='xmlCleanupCharEncodingHandlers' type='function'/> - <exports symbol='xmlNewCharEncodingHandler' type='function'/> - <exports symbol='xmlCharEncodingOutputFunc' type='function'/> - <exports symbol='isolat1ToUTF8' type='function'/> - <exports symbol='xmlFindCharEncodingHandler' type='function'/> - <exports symbol='xmlCharEncInFunc' type='function'/> - <exports symbol='xmlGetCharEncodingHandler' type='function'/> - <exports symbol='xmlCharEncFirstLine' type='function'/> - <exports symbol='xmlDetectCharEncoding' type='function'/> - <exports symbol='xmlCharEncCloseFunc' type='function'/> - <exports symbol='xmlGetCharEncodingName' type='function'/> - </file> - <file name='entities'> - <summary>interface for the XML entities handling</summary> - <description>this module provides some of the entity API needed for the parser and applications. </description> - <author>Daniel Veillard </author> - <exports symbol='XML_EXTERNAL_GENERAL_PARSED_ENTITY' type='enum'/> - <exports symbol='XML_EXTERNAL_GENERAL_UNPARSED_ENTITY' type='enum'/> - <exports symbol='XML_INTERNAL_PREDEFINED_ENTITY' type='enum'/> - <exports symbol='XML_EXTERNAL_PARAMETER_ENTITY' type='enum'/> - <exports symbol='XML_INTERNAL_PARAMETER_ENTITY' type='enum'/> - <exports symbol='XML_INTERNAL_GENERAL_ENTITY' type='enum'/> - <exports symbol='xmlEntityType' type='typedef'/> - <exports symbol='xmlEntitiesTable' type='typedef'/> - <exports symbol='xmlEntitiesTablePtr' type='typedef'/> - <exports symbol='_xmlEntity' type='struct'/> - <exports symbol='xmlAddDocEntity' type='function'/> - <exports symbol='xmlEncodeEntitiesReentrant' type='function'/> - <exports symbol='xmlGetDocEntity' type='function'/> - <exports symbol='xmlGetDtdEntity' type='function'/> - <exports symbol='xmlAddDtdEntity' type='function'/> - <exports symbol='xmlCopyEntitiesTable' type='function'/> - <exports symbol='xmlFreeEntitiesTable' type='function'/> - <exports symbol='xmlGetParameterEntity' type='function'/> - <exports symbol='xmlDumpEntitiesTable' type='function'/> - <exports symbol='xmlDumpEntityDecl' type='function'/> - <exports symbol='xmlCleanupPredefinedEntities' type='function'/> - <exports symbol='xmlCreateEntitiesTable' type='function'/> - <exports symbol='xmlEncodeEntities' type='function'/> - <exports symbol='xmlEncodeSpecialChars' type='function'/> - <exports symbol='xmlGetPredefinedEntity' type='function'/> - <exports symbol='xmlInitializePredefinedEntities' type='function'/> - </file> - <file name='globals'> - <summary>interface for all global variables of the library</summary> - <description>all the global variables and thread handling for those variables is handled by this module. The bottom of this file is automatically generated by build_glob.py based on the description file global.data </description> - <author>Gary Pennington <Gary.Pennington@uk.sun.com>, Daniel Veillard </author> - <exports symbol='xmlGlobalStatePtr' type='typedef'/> - <exports symbol='xmlGlobalState' type='typedef'/> - <exports symbol='_xmlGlobalState' type='struct'/> - <exports symbol='xmlTreeIndentString' type='variable'/> - <exports symbol='xmlIndentTreeOutput' type='variable'/> - <exports symbol='xmlDefaultBufferSize' type='variable'/> - <exports symbol='xmlRegisterNodeDefaultValue' type='variable'/> - <exports symbol='xmlGetWarningsDefaultValue' type='variable'/> - <exports symbol='docbDefaultSAXHandler' type='variable'/> - <exports symbol='xmlGenericErrorContext' type='variable'/> - <exports symbol='xmlDeregisterNodeDefaultValue' type='variable'/> - <exports symbol='xmlGenericError' type='variable'/> - <exports symbol='xmlMalloc' type='variable'/> - <exports symbol='xmlParserVersion' type='variable'/> - <exports symbol='xmlStructuredError' type='variable'/> - <exports symbol='xmlDoValidityCheckingDefaultValue' type='variable'/> - <exports symbol='xmlOutputBufferCreateFilenameValue' type='variable'/> - <exports symbol='xmlPedanticParserDefaultValue' type='variable'/> - <exports symbol='oldXMLWDcompatibility' type='variable'/> - <exports symbol='xmlRealloc' type='variable'/> - <exports symbol='xmlMemStrdup' type='variable'/> - <exports symbol='htmlDefaultSAXHandler' type='variable'/> - <exports symbol='xmlSaveNoEmptyTags' type='variable'/> - <exports symbol='xmlParserInputBufferCreateFilenameValue' type='variable'/> - <exports symbol='xmlKeepBlanksDefaultValue' type='variable'/> - <exports symbol='xmlSubstituteEntitiesDefaultValue' type='variable'/> - <exports symbol='xmlMallocAtomic' type='variable'/> - <exports symbol='xmlBufferAllocScheme' type='variable'/> - <exports symbol='xmlParserDebugEntities' type='variable'/> - <exports symbol='xmlFree' type='variable'/> - <exports symbol='xmlLoadExtDtdDefaultValue' type='variable'/> - <exports symbol='xmlLastError' type='variable'/> - <exports symbol='xmlLineNumbersDefaultValue' type='variable'/> - <exports symbol='xmlDefaultSAXHandler' type='variable'/> - <exports symbol='xmlDefaultSAXLocator' type='variable'/> - <exports symbol='xmlThrDefSetStructuredErrorFunc' type='function'/> - <exports symbol='xmlInitializeGlobalState' type='function'/> - <exports symbol='xmlThrDefBufferAllocScheme' type='function'/> - <exports symbol='xmlThrDefPedanticParserDefaultValue' type='function'/> - <exports symbol='xmlRegisterNodeDefault' type='function'/> - <exports symbol='xmlParserInputBufferCreateFilenameFunc' type='function'/> - <exports symbol='xmlThrDefOutputBufferCreateFilenameDefault' type='function'/> - <exports symbol='xmlDeregisterNodeDefault' type='function'/> - <exports symbol='xmlThrDefDefaultBufferSize' type='function'/> - <exports symbol='xmlOutputBufferCreateFilenameDefault' type='function'/> - <exports symbol='xmlThrDefLoadExtDtdDefaultValue' type='function'/> - <exports symbol='xmlThrDefRegisterNodeDefault' type='function'/> - <exports symbol='xmlThrDefKeepBlanksDefaultValue' type='function'/> - <exports symbol='xmlDeregisterNodeFunc' type='function'/> - <exports symbol='xmlThrDefParserDebugEntities' type='function'/> - <exports symbol='xmlThrDefParserInputBufferCreateFilenameDefault' type='function'/> - <exports symbol='xmlThrDefSetGenericErrorFunc' type='function'/> - <exports symbol='xmlParserInputBufferCreateFilenameDefault' type='function'/> - <exports symbol='xmlThrDefDoValidityCheckingDefaultValue' type='function'/> - <exports symbol='xmlCleanupGlobals' type='function'/> - <exports symbol='xmlThrDefGetWarningsDefaultValue' type='function'/> - <exports symbol='xmlThrDefDeregisterNodeDefault' type='function'/> - <exports symbol='xmlThrDefSubstituteEntitiesDefaultValue' type='function'/> - <exports symbol='xmlRegisterNodeFunc' type='function'/> - <exports symbol='xmlThrDefSaveNoEmptyTags' type='function'/> - <exports symbol='xmlThrDefIndentTreeOutput' type='function'/> - <exports symbol='xmlOutputBufferCreateFilenameFunc' type='function'/> - <exports symbol='xmlInitGlobals' type='function'/> - <exports symbol='xmlThrDefLineNumbersDefaultValue' type='function'/> - <exports symbol='xmlThrDefTreeIndentString' type='function'/> - </file> - <file name='hash'> - <summary>Chained hash tables</summary> - <description>This module implements the hash table support used in various places in the library. </description> - <author>Bjorn Reese <bjorn.reese@systematic.dk> </author> - <exports symbol='XML_CAST_FPTR' type='macro'/> - <exports symbol='xmlHashTable' type='typedef'/> - <exports symbol='xmlHashTablePtr' type='typedef'/> - <exports symbol='xmlHashScanFull' type='function'/> - <exports symbol='xmlHashScan' type='function'/> - <exports symbol='xmlHashScannerFull' type='function'/> - <exports symbol='xmlHashCreateDict' type='function'/> - <exports symbol='xmlHashAddEntry' type='function'/> - <exports symbol='xmlHashUpdateEntry' type='function'/> - <exports symbol='xmlHashQLookup3' type='function'/> - <exports symbol='xmlHashQLookup2' type='function'/> - <exports symbol='xmlHashScan3' type='function'/> - <exports symbol='xmlHashScanner' type='function'/> - <exports symbol='xmlHashDeallocator' type='function'/> - <exports symbol='xmlHashCreate' type='function'/> - <exports symbol='xmlHashFree' type='function'/> - <exports symbol='xmlHashLookup' type='function'/> - <exports symbol='xmlHashQLookup' type='function'/> - <exports symbol='xmlHashUpdateEntry2' type='function'/> - <exports symbol='xmlHashRemoveEntry2' type='function'/> - <exports symbol='xmlHashRemoveEntry3' type='function'/> - <exports symbol='xmlHashCopy' type='function'/> - <exports symbol='xmlHashScanFull3' type='function'/> - <exports symbol='xmlHashUpdateEntry3' type='function'/> - <exports symbol='xmlHashLookup3' type='function'/> - <exports symbol='xmlHashLookup2' type='function'/> - <exports symbol='xmlHashRemoveEntry' type='function'/> - <exports symbol='xmlHashCopier' type='function'/> - <exports symbol='xmlHashAddEntry2' type='function'/> - <exports symbol='xmlHashAddEntry3' type='function'/> - <exports symbol='xmlHashSize' type='function'/> - </file> - <file name='list'> - <summary>lists interfaces</summary> - <description>this module implement the list support used in various place in the library. </description> - <author>Gary Pennington <Gary.Pennington@uk.sun.com> </author> - <exports symbol='xmlLink' type='typedef'/> - <exports symbol='xmlLinkPtr' type='typedef'/> - <exports symbol='xmlList' type='typedef'/> - <exports symbol='xmlListPtr' type='typedef'/> - <exports symbol='xmlListInsert' type='function'/> - <exports symbol='xmlListEmpty' type='function'/> - <exports symbol='xmlListSort' type='function'/> - <exports symbol='xmlListDeallocator' type='function'/> - <exports symbol='xmlListMerge' type='function'/> - <exports symbol='xmlListCreate' type='function'/> - <exports symbol='xmlListDup' type='function'/> - <exports symbol='xmlListRemoveLast' type='function'/> - <exports symbol='xmlListWalk' type='function'/> - <exports symbol='xmlListRemoveAll' type='function'/> - <exports symbol='xmlListCopy' type='function'/> - <exports symbol='xmlListPopFront' type='function'/> - <exports symbol='xmlListSearch' type='function'/> - <exports symbol='xmlListWalker' type='function'/> - <exports symbol='xmlListRemoveFirst' type='function'/> - <exports symbol='xmlListReverseWalk' type='function'/> - <exports symbol='xmlLinkGetData' type='function'/> - <exports symbol='xmlListClear' type='function'/> - <exports symbol='xmlListAppend' type='function'/> - <exports symbol='xmlListReverse' type='function'/> - <exports symbol='xmlListDataCompare' type='function'/> - <exports symbol='xmlListSize' type='function'/> - <exports symbol='xmlListPushFront' type='function'/> - <exports symbol='xmlListEnd' type='function'/> - <exports symbol='xmlListPopBack' type='function'/> - <exports symbol='xmlListReverseSearch' type='function'/> - <exports symbol='xmlListPushBack' type='function'/> - <exports symbol='xmlListFront' type='function'/> - <exports symbol='xmlListDelete' type='function'/> - </file> - <file name='nanoftp'> - <summary>minimal FTP implementation</summary> - <description>minimal FTP implementation allowing to fetch resources like external subset. </description> - <author>Daniel Veillard </author> - <exports symbol='xmlNanoFTPQuit' type='function'/> - <exports symbol='xmlNanoFTPClose' type='function'/> - <exports symbol='ftpListCallback' type='function'/> - <exports symbol='xmlNanoFTPCloseConnection' type='function'/> - <exports symbol='xmlNanoFTPProxy' type='function'/> - <exports symbol='xmlNanoFTPUpdateURL' type='function'/> - <exports symbol='xmlNanoFTPGetConnection' type='function'/> - <exports symbol='xmlNanoFTPDele' type='function'/> - <exports symbol='xmlNanoFTPNewCtxt' type='function'/> - <exports symbol='xmlNanoFTPCheckResponse' type='function'/> - <exports symbol='xmlNanoFTPScanProxy' type='function'/> - <exports symbol='ftpDataCallback' type='function'/> - <exports symbol='xmlNanoFTPGetResponse' type='function'/> - <exports symbol='xmlNanoFTPCwd' type='function'/> - <exports symbol='xmlNanoFTPInit' type='function'/> - <exports symbol='xmlNanoFTPConnectTo' type='function'/> - <exports symbol='xmlNanoFTPList' type='function'/> - <exports symbol='xmlNanoFTPOpen' type='function'/> - <exports symbol='xmlNanoFTPConnect' type='function'/> - <exports symbol='xmlNanoFTPGetSocket' type='function'/> - <exports symbol='xmlNanoFTPGet' type='function'/> - <exports symbol='xmlNanoFTPRead' type='function'/> - <exports symbol='xmlNanoFTPFreeCtxt' type='function'/> - <exports symbol='xmlNanoFTPCleanup' type='function'/> - </file> - <file name='nanohttp'> - <summary>minimal HTTP implementation</summary> - <description>minimal HTTP implementation allowing to fetch resources like external subset. </description> - <author>Daniel Veillard </author> - <exports symbol='xmlNanoHTTPRead' type='function'/> - <exports symbol='xmlNanoHTTPSave' type='function'/> - <exports symbol='xmlNanoHTTPRedir' type='function'/> - <exports symbol='xmlNanoHTTPAuthHeader' type='function'/> - <exports symbol='xmlNanoHTTPFetch' type='function'/> - <exports symbol='xmlNanoHTTPContentLength' type='function'/> - <exports symbol='xmlNanoHTTPMimeType' type='function'/> - <exports symbol='xmlNanoHTTPClose' type='function'/> - <exports symbol='xmlNanoHTTPCleanup' type='function'/> - <exports symbol='xmlNanoHTTPMethod' type='function'/> - <exports symbol='xmlNanoHTTPInit' type='function'/> - <exports symbol='xmlNanoHTTPOpen' type='function'/> - <exports symbol='xmlNanoHTTPOpenRedir' type='function'/> - <exports symbol='xmlNanoHTTPMethodRedir' type='function'/> - <exports symbol='xmlNanoHTTPScanProxy' type='function'/> - <exports symbol='xmlNanoHTTPEncoding' type='function'/> - <exports symbol='xmlNanoHTTPReturnCode' type='function'/> - </file> - <file name='parser'> - <summary>the core parser module</summary> - <description>Interfaces, constants and types related to the XML parser </description> - <author>Daniel Veillard </author> - <exports symbol='XML_COMPLETE_ATTRS' type='macro'/> - <exports symbol='XML_SKIP_IDS' type='macro'/> - <exports symbol='XML_SAX2_MAGIC' type='macro'/> - <exports symbol='XML_DETECT_IDS' type='macro'/> - <exports symbol='XML_DEFAULT_VERSION' type='macro'/> - <exports symbol='XML_WITH_SCHEMATRON' type='enum'/> - <exports symbol='XML_PARSER_ENTITY_DECL' type='enum'/> - <exports symbol='XML_PARSER_CONTENT' type='enum'/> - <exports symbol='XML_PARSE_NOBLANKS' type='enum'/> - <exports symbol='XML_WITH_PATTERN' type='enum'/> - <exports symbol='XML_PARSE_NODICT' type='enum'/> - <exports symbol='XML_PARSER_SYSTEM_LITERAL' type='enum'/> - <exports symbol='XML_WITH_REGEXP' type='enum'/> - <exports symbol='XML_PARSER_PI' type='enum'/> - <exports symbol='XML_WITH_FTP' type='enum'/> - <exports symbol='XML_WITH_XPATH' type='enum'/> - <exports symbol='XML_WITH_HTML' type='enum'/> - <exports symbol='XML_WITH_WRITER' type='enum'/> - <exports symbol='XML_WITH_C14N' type='enum'/> - <exports symbol='XML_PARSE_PUSH_DOM' type='enum'/> - <exports symbol='XML_PARSER_PROLOG' type='enum'/> - <exports symbol='XML_PARSE_NONET' type='enum'/> - <exports symbol='XML_WITH_HTTP' type='enum'/> - <exports symbol='XML_PARSER_EPILOG' type='enum'/> - <exports symbol='XML_PARSER_END_TAG' type='enum'/> - <exports symbol='XML_WITH_DEBUG' type='enum'/> - <exports symbol='XML_PARSE_DTDVALID' type='enum'/> - <exports symbol='XML_PARSE_DOM' type='enum'/> - <exports symbol='XML_PARSER_ATTRIBUTE_VALUE' type='enum'/> - <exports symbol='XML_PARSE_PUSH_SAX' type='enum'/> - <exports symbol='XML_WITH_TREE' type='enum'/> - <exports symbol='XML_PARSE_RECOVER' type='enum'/> - <exports symbol='XML_WITH_SCHEMAS' type='enum'/> - <exports symbol='XML_PARSE_PEDANTIC' type='enum'/> - <exports symbol='XML_PARSER_EOF' type='enum'/> - <exports symbol='XML_PARSER_CDATA_SECTION' type='enum'/> - <exports symbol='XML_WITH_LEGACY' type='enum'/> - <exports symbol='XML_PARSE_XINCLUDE' type='enum'/> - <exports symbol='XML_PARSE_NOXINCNODE' type='enum'/> - <exports symbol='XML_WITH_NONE' type='enum'/> - <exports symbol='XML_WITH_OUTPUT' type='enum'/> - <exports symbol='XML_WITH_XINCLUDE' type='enum'/> - <exports symbol='XML_WITH_PUSH' type='enum'/> - <exports symbol='XML_PARSE_READER' type='enum'/> - <exports symbol='XML_WITH_THREAD' type='enum'/> - <exports symbol='XML_PARSE_SAX' type='enum'/> - <exports symbol='XML_PARSE_NOENT' type='enum'/> - <exports symbol='XML_PARSER_ENTITY_VALUE' type='enum'/> - <exports symbol='XML_PARSE_DTDLOAD' type='enum'/> - <exports symbol='XML_PARSE_DTDATTR' type='enum'/> - <exports symbol='XML_PARSE_NOWARNING' type='enum'/> - <exports symbol='XML_WITH_VALID' type='enum'/> - <exports symbol='XML_PARSE_NOERROR' type='enum'/> - <exports symbol='XML_WITH_ISO8859X' type='enum'/> - <exports symbol='XML_WITH_EXPR' type='enum'/> - <exports symbol='XML_PARSE_NSCLEAN' type='enum'/> - <exports symbol='XML_WITH_UNICODE' type='enum'/> - <exports symbol='XML_WITH_CATALOG' type='enum'/> - <exports symbol='XML_WITH_MODULES' type='enum'/> - <exports symbol='XML_WITH_XPTR' type='enum'/> - <exports symbol='XML_PARSE_NOCDATA' type='enum'/> - <exports symbol='XML_PARSE_COMPACT' type='enum'/> - <exports symbol='XML_PARSE_SAX1' type='enum'/> - <exports symbol='XML_WITH_ZLIB' type='enum'/> - <exports symbol='XML_WITH_READER' type='enum'/> - <exports symbol='XML_PARSER_DTD' type='enum'/> - <exports symbol='XML_PARSER_MISC' type='enum'/> - <exports symbol='XML_PARSER_START' type='enum'/> - <exports symbol='XML_WITH_DEBUG_MEM' type='enum'/> - <exports symbol='XML_PARSE_UNKNOWN' type='enum'/> - <exports symbol='XML_PARSER_START_TAG' type='enum'/> - <exports symbol='XML_PARSER_IGNORE' type='enum'/> - <exports symbol='XML_PARSER_COMMENT' type='enum'/> - <exports symbol='XML_PARSER_PUBLIC_LITERAL' type='enum'/> - <exports symbol='XML_WITH_ICONV' type='enum'/> - <exports symbol='XML_WITH_AUTOMATA' type='enum'/> - <exports symbol='XML_WITH_DEBUG_RUN' type='enum'/> - <exports symbol='XML_WITH_SAX1' type='enum'/> - <exports symbol='xmlParserNodeInfoSeqPtr' type='typedef'/> - <exports symbol='xmlSAXHandlerV1' type='typedef'/> - <exports symbol='xmlParserInputState' type='typedef'/> - <exports symbol='xmlParserNodeInfoPtr' type='typedef'/> - <exports symbol='xmlParserNodeInfoSeq' type='typedef'/> - <exports symbol='xmlFeature' type='typedef'/> - <exports symbol='xmlParserMode' type='typedef'/> - <exports symbol='xmlParserOption' type='typedef'/> - <exports symbol='xmlSAXHandlerV1Ptr' type='typedef'/> - <exports symbol='xmlParserNodeInfo' type='typedef'/> - <exports symbol='_xmlParserNodeInfo' type='struct'/> - <exports symbol='_xmlParserCtxt' type='struct'/> - <exports symbol='_xmlSAXHandlerV1' type='struct'/> - <exports symbol='_xmlParserInput' type='struct'/> - <exports symbol='_xmlSAXHandler' type='struct'/> - <exports symbol='_xmlParserNodeInfoSeq' type='struct'/> - <exports symbol='_xmlSAXLocator' type='struct'/> - <exports symbol='xmlSetupParserForBuffer' type='function'/> - <exports symbol='xmlCtxtReadFile' type='function'/> - <exports symbol='xmlParseCtxtExternalEntity' type='function'/> - <exports symbol='attributeDeclSAXFunc' type='function'/> - <exports symbol='getEntitySAXFunc' type='function'/> - <exports symbol='startElementSAXFunc' type='function'/> - <exports symbol='charactersSAXFunc' type='function'/> - <exports symbol='xmlClearNodeInfoSeq' type='function'/> - <exports symbol='xmlParseChunk' type='function'/> - <exports symbol='xmlParseEntity' type='function'/> - <exports symbol='xmlRecoverFile' type='function'/> - <exports symbol='xmlCtxtReadDoc' type='function'/> - <exports symbol='startElementNsSAX2Func' type='function'/> - <exports symbol='xmlCreateIOParserCtxt' type='function'/> - <exports symbol='xmlParseInNodeContext' type='function'/> - <exports symbol='referenceSAXFunc' type='function'/> - <exports symbol='hasExternalSubsetSAXFunc' type='function'/> - <exports symbol='xmlSAXParseDoc' type='function'/> - <exports symbol='xmlReadMemory' type='function'/> - <exports symbol='xmlParseMemory' type='function'/> - <exports symbol='xmlNewIOInputStream' type='function'/> - <exports symbol='processingInstructionSAXFunc' type='function'/> - <exports symbol='xmlParseBalancedChunkMemoryRecover' type='function'/> - <exports symbol='xmlInitParser' type='function'/> - <exports symbol='xmlCreateDocParserCtxt' type='function'/> - <exports symbol='errorSAXFunc' type='function'/> - <exports symbol='xmlSAXParseMemory' type='function'/> - <exports symbol='xmlRecoverMemory' type='function'/> - <exports symbol='xmlExternalEntityLoader' type='function'/> - <exports symbol='hasInternalSubsetSAXFunc' type='function'/> - <exports symbol='cdataBlockSAXFunc' type='function'/> - <exports symbol='xmlSAXParseFile' type='function'/> - <exports symbol='xmlParserInputDeallocate' type='function'/> - <exports symbol='xmlCtxtReadIO' type='function'/> - <exports symbol='xmlSAXParseMemoryWithData' type='function'/> - <exports symbol='xmlGetFeature' type='function'/> - <exports symbol='xmlIOParseDTD' type='function'/> - <exports symbol='xmlFreeParserCtxt' type='function'/> - <exports symbol='xmlParseDTD' type='function'/> - <exports symbol='xmlRecoverDoc' type='function'/> - <exports symbol='commentSAXFunc' type='function'/> - <exports symbol='xmlInitParserCtxt' type='function'/> - <exports symbol='attributeSAXFunc' type='function'/> - <exports symbol='xmlParserInputGrow' type='function'/> - <exports symbol='xmlCtxtReadMemory' type='function'/> - <exports symbol='externalSubsetSAXFunc' type='function'/> - <exports symbol='resolveEntitySAXFunc' type='function'/> - <exports symbol='xmlPedanticParserDefault' type='function'/> - <exports symbol='xmlSAXParseEntity' type='function'/> - <exports symbol='xmlParseDoc' type='function'/> - <exports symbol='xmlSAXParseFileWithData' type='function'/> - <exports symbol='xmlLineNumbersDefault' type='function'/> - <exports symbol='xmlGetExternalEntityLoader' type='function'/> - <exports symbol='elementDeclSAXFunc' type='function'/> - <exports symbol='xmlCtxtUseOptions' type='function'/> - <exports symbol='xmlCreatePushParserCtxt' type='function'/> - <exports symbol='xmlParserAddNodeInfo' type='function'/> - <exports symbol='xmlCtxtReadFd' type='function'/> - <exports symbol='internalSubsetSAXFunc' type='function'/> - <exports symbol='xmlNewParserCtxt' type='function'/> - <exports symbol='endDocumentSAXFunc' type='function'/> - <exports symbol='xmlParseFile' type='function'/> - <exports symbol='xmlParseDocument' type='function'/> - <exports symbol='setDocumentLocatorSAXFunc' type='function'/> - <exports symbol='getParameterEntitySAXFunc' type='function'/> - <exports symbol='ignorableWhitespaceSAXFunc' type='function'/> - <exports symbol='xmlInitNodeInfoSeq' type='function'/> - <exports symbol='xmlSubstituteEntitiesDefault' type='function'/> - <exports symbol='endElementSAXFunc' type='function'/> - <exports symbol='xmlParserFindNodeInfoIndex' type='function'/> - <exports symbol='xmlByteConsumed' type='function'/> - <exports symbol='xmlCtxtReset' type='function'/> - <exports symbol='xmlSetFeature' type='function'/> - <exports symbol='xmlKeepBlanksDefault' type='function'/> - <exports symbol='xmlParserInputRead' type='function'/> - <exports symbol='xmlReadFile' type='function'/> - <exports symbol='xmlGetFeaturesList' type='function'/> - <exports symbol='xmlHasFeature' type='function'/> - <exports symbol='unparsedEntityDeclSAXFunc' type='function'/> - <exports symbol='xmlSAXUserParseFile' type='function'/> - <exports symbol='fatalErrorSAXFunc' type='function'/> - <exports symbol='xmlSAXParseDTD' type='function'/> - <exports symbol='xmlParserFindNodeInfo' type='function'/> - <exports symbol='entityDeclSAXFunc' type='function'/> - <exports symbol='xmlLoadExternalEntity' type='function'/> - <exports symbol='xmlStopParser' type='function'/> - <exports symbol='xmlReadFd' type='function'/> - <exports symbol='xmlParseExtParsedEnt' type='function'/> - <exports symbol='xmlReadIO' type='function'/> - <exports symbol='xmlReadDoc' type='function'/> - <exports symbol='xmlSAXUserParseMemory' type='function'/> - <exports symbol='xmlParseBalancedChunkMemory' type='function'/> - <exports symbol='endElementNsSAX2Func' type='function'/> - <exports symbol='xmlCleanupParser' type='function'/> - <exports symbol='xmlCtxtResetPush' type='function'/> - <exports symbol='isStandaloneSAXFunc' type='function'/> - <exports symbol='startDocumentSAXFunc' type='function'/> - <exports symbol='xmlClearParserCtxt' type='function'/> - <exports symbol='xmlParseExternalEntity' type='function'/> - <exports symbol='notationDeclSAXFunc' type='function'/> - <exports symbol='warningSAXFunc' type='function'/> - <exports symbol='xmlSetExternalEntityLoader' type='function'/> - </file> - <file name='parserInternals'> - <summary>internals routines exported by the parser.</summary> - <description>this module exports a number of internal parsing routines they are not really all intended for applications but can prove useful doing low level processing. </description> - <author>Daniel Veillard </author> - <exports symbol='XML_SUBSTITUTE_REF' type='macro'/> - <exports symbol='IS_BLANK' type='macro'/> - <exports symbol='IS_BYTE_CHAR' type='macro'/> - <exports symbol='IS_PUBIDCHAR' type='macro'/> - <exports symbol='IS_DIGIT_CH' type='macro'/> - <exports symbol='IS_EXTENDER' type='macro'/> - <exports symbol='IS_ASCII_DIGIT' type='macro'/> - <exports symbol='IS_COMBINING_CH' type='macro'/> - <exports symbol='IS_CHAR' type='macro'/> - <exports symbol='IS_LETTER' type='macro'/> - <exports symbol='IS_IDEOGRAPHIC' type='macro'/> - <exports symbol='MOVETO_STARTTAG' type='macro'/> - <exports symbol='IS_ASCII_LETTER' type='macro'/> - <exports symbol='IS_DIGIT' type='macro'/> - <exports symbol='XML_SUBSTITUTE_PEREF' type='macro'/> - <exports symbol='MOVETO_ENDTAG' type='macro'/> - <exports symbol='SKIP_EOL' type='macro'/> - <exports symbol='IS_EXTENDER_CH' type='macro'/> - <exports symbol='IS_BLANK_CH' type='macro'/> - <exports symbol='IS_LETTER_CH' type='macro'/> - <exports symbol='XML_SUBSTITUTE_NONE' type='macro'/> - <exports symbol='IS_COMBINING' type='macro'/> - <exports symbol='XML_MAX_NAMELEN' type='macro'/> - <exports symbol='IS_BASECHAR' type='macro'/> - <exports symbol='INPUT_CHUNK' type='macro'/> - <exports symbol='IS_PUBIDCHAR_CH' type='macro'/> - <exports symbol='IS_CHAR_CH' type='macro'/> - <exports symbol='XML_SUBSTITUTE_BOTH' type='macro'/> - <exports symbol='xmlStringTextNoenc' type='variable'/> - <exports symbol='xmlStringComment' type='variable'/> - <exports symbol='xmlStringText' type='variable'/> - <exports symbol='xmlParserMaxDepth' type='variable'/> - <exports symbol='nodePop' type='function'/> - <exports symbol='xmlParseNotationDecl' type='function'/> - <exports symbol='xmlParseExternalSubset' type='function'/> - <exports symbol='xmlParseMisc' type='function'/> - <exports symbol='xmlSwitchInputEncoding' type='function'/> - <exports symbol='xmlNewStringInputStream' type='function'/> - <exports symbol='xmlParseExternalID' type='function'/> - <exports symbol='xmlScanName' type='function'/> - <exports symbol='xmlParseElementDecl' type='function'/> - <exports symbol='xmlParseMarkupDecl' type='function'/> - <exports symbol='htmlCreateFileParserCtxt' type='function'/> - <exports symbol='inputPush' type='function'/> - <exports symbol='xmlStringLenDecodeEntities' type='function'/> - <exports symbol='namePop' type='function'/> - <exports symbol='xmlParseContent' type='function'/> - <exports symbol='xmlNewInputStream' type='function'/> - <exports symbol='xmlNamespaceParseQName' type='function'/> - <exports symbol='xmlNewInputFromFile' type='function'/> - <exports symbol='xmlParserHandlePEReference' type='function'/> - <exports symbol='xmlStringDecodeEntities' type='function'/> - <exports symbol='xmlCreateFileParserCtxt' type='function'/> - <exports symbol='xmlParseCharRef' type='function'/> - <exports symbol='xmlParseElement' type='function'/> - <exports symbol='xmlParseTextDecl' type='function'/> - <exports symbol='xmlNewEntityInputStream' type='function'/> - <exports symbol='xmlCopyCharMultiByte' type='function'/> - <exports symbol='xmlParseElementChildrenContentDecl' type='function'/> - <exports symbol='xmlParseCharData' type='function'/> - <exports symbol='xmlParseVersionInfo' type='function'/> - <exports symbol='xmlParseSDDecl' type='function'/> - <exports symbol='xmlParseEnumeratedType' type='function'/> - <exports symbol='xmlHandleEntity' type='function'/> - <exports symbol='xmlCurrentChar' type='function'/> - <exports symbol='xmlSkipBlankChars' type='function'/> - <exports symbol='xmlParseNotationType' type='function'/> - <exports symbol='xmlParserInputShrink' type='function'/> - <exports symbol='xmlSetEntityReferenceFunc' type='function'/> - <exports symbol='xmlFreeInputStream' type='function'/> - <exports symbol='xmlParsePEReference' type='function'/> - <exports symbol='xmlCreateURLParserCtxt' type='function'/> - <exports symbol='xmlIsLetter' type='function'/> - <exports symbol='xmlCheckLanguageID' type='function'/> - <exports symbol='xmlNextChar' type='function'/> - <exports symbol='xmlParseEnumerationType' type='function'/> - <exports symbol='xmlParseAttributeType' type='function'/> - <exports symbol='xmlParseDefaultDecl' type='function'/> - <exports symbol='xmlParseSystemLiteral' type='function'/> - <exports symbol='xmlParseAttValue' type='function'/> - <exports symbol='xmlCreateMemoryParserCtxt' type='function'/> - <exports symbol='xmlParseAttributeListDecl' type='function'/> - <exports symbol='xmlParseName' type='function'/> - <exports symbol='xmlParseEncName' type='function'/> - <exports symbol='nodePush' type='function'/> - <exports symbol='xmlSwitchEncoding' type='function'/> - <exports symbol='xmlSwitchToEncoding' type='function'/> - <exports symbol='xmlParseEntityRef' type='function'/> - <exports symbol='xmlParseAttribute' type='function'/> - <exports symbol='xmlParseEndTag' type='function'/> - <exports symbol='xmlParseEncodingDecl' type='function'/> - <exports symbol='htmlInitAutoClose' type='function'/> - <exports symbol='xmlCreateEntityParserCtxt' type='function'/> - <exports symbol='xmlSplitQName' type='function'/> - <exports symbol='xmlParserHandleReference' type='function'/> - <exports symbol='xmlParsePITarget' type='function'/> - <exports symbol='xmlParseElementContentDecl' type='function'/> - <exports symbol='inputPop' type='function'/> - <exports symbol='xmlPopInput' type='function'/> - <exports symbol='xmlParsePubidLiteral' type='function'/> - <exports symbol='xmlPushInput' type='function'/> - <exports symbol='xmlParseEntityValue' type='function'/> - <exports symbol='xmlDecodeEntities' type='function'/> - <exports symbol='xmlParseVersionNum' type='function'/> - <exports symbol='xmlParseXMLDecl' type='function'/> - <exports symbol='xmlEntityReferenceFunc' type='function'/> - <exports symbol='xmlParseElementMixedContentDecl' type='function'/> - <exports symbol='xmlParseQuotedString' type='function'/> - <exports symbol='xmlNamespaceParseNSDef' type='function'/> - <exports symbol='xmlParseCDSect' type='function'/> - <exports symbol='xmlStringCurrentChar' type='function'/> - <exports symbol='xmlParseComment' type='function'/> - <exports symbol='xmlErrMemory' type='function'/> - <exports symbol='xmlNamespaceParseNCName' type='function'/> - <exports symbol='xmlParseNmtoken' type='function'/> - <exports symbol='xmlParseReference' type='function'/> - <exports symbol='namePush' type='function'/> - <exports symbol='xmlParseNamespace' type='function'/> - <exports symbol='xmlCopyChar' type='function'/> - <exports symbol='xmlParsePI' type='function'/> - <exports symbol='xmlParseDocTypeDecl' type='function'/> - <exports symbol='xmlParseStartTag' type='function'/> - <exports symbol='xmlParseEntityDecl' type='function'/> - </file> - <file name='pattern'> - <summary>pattern expression handling</summary> - <description>allows to compile and test pattern expressions for nodes either in a tree or based on a parser state. </description> - <author>Daniel Veillard </author> - <exports symbol='XML_PATTERN_DEFAULT' type='enum'/> - <exports symbol='XML_PATTERN_XSFIELD' type='enum'/> - <exports symbol='XML_PATTERN_XSSEL' type='enum'/> - <exports symbol='XML_PATTERN_XPATH' type='enum'/> - <exports symbol='xmlStreamCtxtPtr' type='typedef'/> - <exports symbol='xmlPatternFlags' type='typedef'/> - <exports symbol='xmlStreamCtxt' type='typedef'/> - <exports symbol='xmlPattern' type='typedef'/> - <exports symbol='xmlPatternPtr' type='typedef'/> - <exports symbol='xmlPatternMinDepth' type='function'/> - <exports symbol='xmlPatternGetStreamCtxt' type='function'/> - <exports symbol='xmlPatternFromRoot' type='function'/> - <exports symbol='xmlFreePatternList' type='function'/> - <exports symbol='xmlPatternStreamable' type='function'/> - <exports symbol='xmlStreamPushAttr' type='function'/> - <exports symbol='xmlPatternMatch' type='function'/> - <exports symbol='xmlStreamWantsAnyNode' type='function'/> - <exports symbol='xmlStreamPop' type='function'/> - <exports symbol='xmlFreePattern' type='function'/> - <exports symbol='xmlStreamPush' type='function'/> - <exports symbol='xmlPatternMaxDepth' type='function'/> - <exports symbol='xmlPatterncompile' type='function'/> - <exports symbol='xmlStreamPushNode' type='function'/> - <exports symbol='xmlFreeStreamCtxt' type='function'/> - </file> - <file name='relaxng'> - <summary>implementation of the Relax-NG validation</summary> - <description>implementation of the Relax-NG validation </description> - <author>Daniel Veillard </author> - <exports symbol='XML_RELAXNG_ERR_DUPID' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_VALELEM' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_ATTRVALID' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_LISTELEM' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_LISTEXTRA' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_ATTRNONS' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_EXTRADATA' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_ELEMNONS' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_ELEMEXTRANS' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_DATATYPE' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_TYPECMP' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_VALUE' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_NOGRAMMAR' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_INTERSEQ' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_LACKDATA' type='enum'/> - <exports symbol='XML_RELAXNGP_FREE_DOC' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_ATTRNAME' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_ELEMNOTEMPTY' type='enum'/> - <exports symbol='XML_RELAXNG_OK' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_INTERNODATA' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_ATTRWRONGNS' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_EXTRACONTENT' type='enum'/> - <exports symbol='XML_RELAXNGP_NONE' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_ELEMWRONG' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_LISTEMPTY' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_ATTREXTRANS' type='enum'/> - <exports symbol='XML_RELAXNGP_CRNG' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_TEXTWRONG' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_INVALIDATTR' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_ELEMWRONGNS' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_CONTENTVALID' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_TYPEVAL' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_LIST' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_TYPE' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_NOELEM' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_MEMORY' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_ELEMNAME' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_DATAELEM' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_NODEFINE' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_NOSTATE' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_INTEREXTRA' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_INTERNAL' type='enum'/> - <exports symbol='XML_RELAXNG_ERR_NOTELEM' type='enum'/> - <exports symbol='xmlRelaxNG' type='typedef'/> - <exports symbol='xmlRelaxNGPtr' type='typedef'/> - <exports symbol='xmlRelaxNGValidErr' type='typedef'/> - <exports symbol='xmlRelaxNGParserCtxt' type='typedef'/> - <exports symbol='xmlRelaxNGParserCtxtPtr' type='typedef'/> - <exports symbol='xmlRelaxNGParserFlag' type='typedef'/> - <exports symbol='xmlRelaxNGValidCtxt' type='typedef'/> - <exports symbol='xmlRelaxNGValidCtxtPtr' type='typedef'/> - <exports symbol='xmlRelaxNGFreeValidCtxt' type='function'/> - <exports symbol='xmlRelaxNGNewDocParserCtxt' type='function'/> - <exports symbol='xmlRelaxNGSetValidErrors' type='function'/> - <exports symbol='xmlRelaxNGNewParserCtxt' type='function'/> - <exports symbol='xmlRelaxNGGetParserErrors' type='function'/> - <exports symbol='xmlRelaxNGValidatePopElement' type='function'/> - <exports symbol='xmlRelaxNGNewValidCtxt' type='function'/> - <exports symbol='xmlRelaxNGNewMemParserCtxt' type='function'/> - <exports symbol='xmlRelaxNGDump' type='function'/> - <exports symbol='xmlRelaxNGSetParserErrors' type='function'/> - <exports symbol='xmlRelaxNGParse' type='function'/> - <exports symbol='xmlRelaxNGSetParserStructuredErrors' type='function'/> - <exports symbol='xmlRelaxNGValidateFullElement' type='function'/> - <exports symbol='xmlRelaxNGValidityErrorFunc' type='function'/> - <exports symbol='xmlRelaxNGValidatePushElement' type='function'/> - <exports symbol='xmlRelaxNGFree' type='function'/> - <exports symbol='xmlRelaxNGValidateDoc' type='function'/> - <exports symbol='xmlRelaxNGSetValidStructuredErrors' type='function'/> - <exports symbol='xmlRelaxNGFreeParserCtxt' type='function'/> - <exports symbol='xmlRelaxNGGetValidErrors' type='function'/> - <exports symbol='xmlRelaxNGInitTypes' type='function'/> - <exports symbol='xmlRelaxNGDumpTree' type='function'/> - <exports symbol='xmlRelaxNGCleanupTypes' type='function'/> - <exports symbol='xmlRelaxNGValidatePushCData' type='function'/> - <exports symbol='xmlRelaxParserSetFlag' type='function'/> - <exports symbol='xmlRelaxNGValidityWarningFunc' type='function'/> - </file> - <file name='schemasInternals'> - <summary>internal interfaces for XML Schemas</summary> - <description>internal interfaces for the XML Schemas handling and schema validity checking The Schemas development is a Work In Progress. Some of those interfaces are not garanteed to be API or ABI stable ! </description> - <author>Daniel Veillard </author> - <exports symbol='XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION' type='macro'/> - <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_EXTENSION' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_FIXUP_1' type='macro'/> - <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_CIRCULAR' type='macro'/> - <exports symbol='XML_SCHEMAS_QUALIF_ATTR' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION' type='macro'/> - <exports symbol='XML_SCHEMAS_ATTR_USE_REQUIRED' type='macro'/> - <exports symbol='XML_SCHEMAS_FACET_COLLAPSE' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_VARIETY_UNION' type='macro'/> - <exports symbol='XML_SCHEMAS_ANY_STRICT' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_INTERNAL_RESOLVED' type='macro'/> - <exports symbol='XML_SCHEMAS_QUALIF_ELEM' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_VARIETY_LIST' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_INTERNAL_CHECKED' type='macro'/> - <exports symbol='XML_SCHEMAS_INCLUDING_CONVERT_NS' type='macro'/> - <exports symbol='XML_SCHEMAS_ATTR_INTERNAL_RESOLVED' type='macro'/> - <exports symbol='XML_SCHEMAS_ATTR_USE_PROHIBITED' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_NILLABLE' type='macro'/> - <exports symbol='XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION' type='macro'/> - <exports symbol='XML_SCHEMAS_ATTRGROUP_REDEFINED' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_BLOCK_DEFAULT' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_FINAL_EXTENSION' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_REDEFINED' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_FIXED' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_VARIETY_ATOMIC' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_FINAL_LIST' type='macro'/> - <exports symbol='XML_SCHEMAS_ATTR_USE_OPTIONAL' type='macro'/> - <exports symbol='XML_SCHEMAS_ATTR_NSDEFAULT' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_WHITESPACE_REPLACE' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_BLOCK_RESTRICTION' type='macro'/> - <exports symbol='XML_SCHEMAS_ANYATTR_STRICT' type='macro'/> - <exports symbol='XML_SCHEMAS_FACET_UNKNOWN' type='macro'/> - <exports symbol='XML_SCHEMAS_ATTRGROUP_MARKED' type='macro'/> - <exports symbol='XML_SCHEMAS_FACET_PRESERVE' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_BLOCK_EXTENSION' type='macro'/> - <exports symbol='XML_SCHEMAS_ATTR_GLOBAL' type='macro'/> - <exports symbol='XML_SCHEMAS_ANYATTR_SKIP' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION' type='macro'/> - <exports symbol='XML_SCHEMAS_ANYATTR_LAX' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_GLOBAL' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_ABSTRACT' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_MIXED' type='macro'/> - <exports symbol='XML_SCHEMAS_ATTR_FIXED' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_INTERNAL_RESOLVED' type='macro'/> - <exports symbol='XML_SCHEMAS_ANY_SKIP' type='macro'/> - <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_LIST' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_VARIETY_ABSENT' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_FINAL_RESTRICTION' type='macro'/> - <exports symbol='XML_SCHEMAS_WILDCARD_COMPLETE' type='macro'/> - <exports symbol='XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_NSDEFAULT' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_GLOBAL' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_TOPLEVEL' type='macro'/> - <exports symbol='XML_SCHEMAS_ANY_LAX' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_FINAL_RESTRICTION' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_HAS_FACETS' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_FINAL_EXTENSION' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_NORMVALUENEEDED' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_FINAL_ABSENT' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_BLOCK_EXTENSION' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_INTERNAL_INVALID' type='macro'/> - <exports symbol='XML_SCHEMAS_ATTRGROUP_HAS_REFS' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_ABSTRACT' type='macro'/> - <exports symbol='XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_FINAL_UNION' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_FINAL_DEFAULT' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_FACETSNEEDVALUE' type='macro'/> - <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_UNION' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_BLOCK_RESTRICTION' type='macro'/> - <exports symbol='XML_SCHEMAS_FACET_REPLACE' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_DEFAULT' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_MARKED' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_BLOCK_ABSENT' type='macro'/> - <exports symbol='XML_SCHEMAS_ATTRGROUP_GLOBAL' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_REF' type='macro'/> - <exports symbol='XML_SCHEMA_EXTRA_QNAMEREF' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_EXTENSION' type='enum'/> - <exports symbol='XML_SCHEMAS_NMTOKEN' type='enum'/> - <exports symbol='XML_SCHEMAS_ID' type='enum'/> - <exports symbol='XML_SCHEMAS_TIME' type='enum'/> - <exports symbol='XML_SCHEMAS_UBYTE' type='enum'/> - <exports symbol='XML_SCHEMAS_DATETIME' type='enum'/> - <exports symbol='XML_SCHEMAS_NNINTEGER' type='enum'/> - <exports symbol='XML_SCHEMAS_HEXBINARY' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_UNION' type='enum'/> - <exports symbol='XML_SCHEMAS_UNKNOWN' type='enum'/> - <exports symbol='XML_SCHEMAS_UINT' type='enum'/> - <exports symbol='XML_SCHEMAS_NPINTEGER' type='enum'/> - <exports symbol='XML_SCHEMAS_GMONTHDAY' type='enum'/> - <exports symbol='XML_SCHEMA_FACET_MAXEXCLUSIVE' type='enum'/> - <exports symbol='XML_SCHEMAS_ULONG' type='enum'/> - <exports symbol='XML_SCHEMAS_PINTEGER' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_CHOICE' type='enum'/> - <exports symbol='XML_SCHEMAS_DECIMAL' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_UR' type='enum'/> - <exports symbol='XML_SCHEMAS_DOUBLE' type='enum'/> - <exports symbol='XML_SCHEMAS_NINTEGER' type='enum'/> - <exports symbol='XML_SCHEMAS_NORMSTRING' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_PARTICLE' type='enum'/> - <exports symbol='XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_SIMPLE' type='enum'/> - <exports symbol='XML_SCHEMAS_NCNAME' type='enum'/> - <exports symbol='XML_SCHEMAS_LONG' type='enum'/> - <exports symbol='XML_SCHEMA_FACET_FRACTIONDIGITS' type='enum'/> - <exports symbol='XML_SCHEMAS_BOOLEAN' type='enum'/> - <exports symbol='XML_SCHEMAS_ENTITY' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_GROUP' type='enum'/> - <exports symbol='XML_SCHEMAS_GYEARMONTH' type='enum'/> - <exports symbol='XML_SCHEMAS_BASE64BINARY' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_ANY_ATTRIBUTE' type='enum'/> - <exports symbol='XML_SCHEMA_FACET_WHITESPACE' type='enum'/> - <exports symbol='XML_SCHEMAS_IDREF' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_ATTRIBUTE' type='enum'/> - <exports symbol='XML_SCHEMA_FACET_TOTALDIGITS' type='enum'/> - <exports symbol='XML_SCHEMAS_QNAME' type='enum'/> - <exports symbol='XML_SCHEMAS_TOKEN' type='enum'/> - <exports symbol='XML_SCHEMA_CONTENT_BASIC' type='enum'/> - <exports symbol='XML_SCHEMA_CONTENT_EMPTY' type='enum'/> - <exports symbol='XML_SCHEMA_FACET_ENUMERATION' type='enum'/> - <exports symbol='XML_SCHEMA_CONTENT_UNKNOWN' type='enum'/> - <exports symbol='XML_SCHEMA_FACET_MININCLUSIVE' type='enum'/> - <exports symbol='XML_SCHEMAS_GMONTH' type='enum'/> - <exports symbol='XML_SCHEMA_CONTENT_ELEMENTS' type='enum'/> - <exports symbol='XML_SCHEMAS_GYEAR' type='enum'/> - <exports symbol='XML_SCHEMA_EXTRA_ATTR_USE_PROHIB' type='enum'/> - <exports symbol='XML_SCHEMAS_BYTE' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_ALL' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_IDC_KEYREF' type='enum'/> - <exports symbol='XML_SCHEMAS_NOTATION' type='enum'/> - <exports symbol='XML_SCHEMA_FACET_MAXINCLUSIVE' type='enum'/> - <exports symbol='XML_SCHEMAS_NAME' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_LIST' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_ATTRIBUTE_USE' type='enum'/> - <exports symbol='XML_SCHEMAS_GDAY' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_ANY' type='enum'/> - <exports symbol='XML_SCHEMAS_ANYURI' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_COMPLEX' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_ATTRIBUTEGROUP' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_BASIC' type='enum'/> - <exports symbol='XML_SCHEMAS_IDREFS' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_IDC_UNIQUE' type='enum'/> - <exports symbol='XML_SCHEMA_FACET_LENGTH' type='enum'/> - <exports symbol='XML_SCHEMA_CONTENT_SIMPLE' type='enum'/> - <exports symbol='XML_SCHEMA_FACET_PATTERN' type='enum'/> - <exports symbol='XML_SCHEMAS_SHORT' type='enum'/> - <exports symbol='XML_SCHEMAS_LANGUAGE' type='enum'/> - <exports symbol='XML_SCHEMAS_ANYSIMPLETYPE' type='enum'/> - <exports symbol='XML_SCHEMA_CONTENT_MIXED' type='enum'/> - <exports symbol='XML_SCHEMAS_ANYTYPE' type='enum'/> - <exports symbol='XML_SCHEMAS_DURATION' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_FACET' type='enum'/> - <exports symbol='XML_SCHEMAS_NMTOKENS' type='enum'/> - <exports symbol='XML_SCHEMAS_USHORT' type='enum'/> - <exports symbol='XML_SCHEMAS_INTEGER' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_COMPLEX_CONTENT' type='enum'/> - <exports symbol='XML_SCHEMA_FACET_MINEXCLUSIVE' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_IDC_KEY' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_SIMPLE_CONTENT' type='enum'/> - <exports symbol='XML_SCHEMAS_FLOAT' type='enum'/> - <exports symbol='XML_SCHEMAS_ENTITIES' type='enum'/> - <exports symbol='XML_SCHEMAS_DATE' type='enum'/> - <exports symbol='XML_SCHEMAS_STRING' type='enum'/> - <exports symbol='XML_SCHEMAS_INT' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_NOTATION' type='enum'/> - <exports symbol='XML_SCHEMA_CONTENT_ANY' type='enum'/> - <exports symbol='XML_SCHEMA_FACET_MINLENGTH' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_RESTRICTION' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_SEQUENCE' type='enum'/> - <exports symbol='XML_SCHEMA_TYPE_ELEMENT' type='enum'/> - <exports symbol='XML_SCHEMA_FACET_MAXLENGTH' type='enum'/> - <exports symbol='xmlSchemaAttributeGroupPtr' type='typedef'/> - <exports symbol='xmlSchemaElementPtr' type='typedef'/> - <exports symbol='xmlSchemaFacetLinkPtr' type='typedef'/> - <exports symbol='xmlSchemaVal' type='typedef'/> - <exports symbol='xmlSchemaAttributeLinkPtr' type='typedef'/> - <exports symbol='xmlSchemaType' type='typedef'/> - <exports symbol='xmlSchemaAnnot' type='typedef'/> - <exports symbol='xmlSchemaAnnotPtr' type='typedef'/> - <exports symbol='xmlSchemaElement' type='typedef'/> - <exports symbol='xmlSchemaWildcard' type='typedef'/> - <exports symbol='xmlSchemaWildcardPtr' type='typedef'/> - <exports symbol='xmlSchemaFacetPtr' type='typedef'/> - <exports symbol='xmlSchemaTypeLink' type='typedef'/> - <exports symbol='xmlSchemaAttributeLink' type='typedef'/> - <exports symbol='xmlSchemaValPtr' type='typedef'/> - <exports symbol='xmlSchemaFacetLink' type='typedef'/> - <exports symbol='xmlSchemaWildcardNsPtr' type='typedef'/> - <exports symbol='xmlSchemaAttributeGroup' type='typedef'/> - <exports symbol='xmlSchemaTypeLinkPtr' type='typedef'/> - <exports symbol='xmlSchemaWildcardNs' type='typedef'/> - <exports symbol='xmlSchemaAttributePtr' type='typedef'/> - <exports symbol='xmlSchemaNotationPtr' type='typedef'/> - <exports symbol='xmlSchemaValType' type='typedef'/> - <exports symbol='xmlSchemaTypePtr' type='typedef'/> - <exports symbol='xmlSchemaNotation' type='typedef'/> - <exports symbol='xmlSchemaFacet' type='typedef'/> - <exports symbol='xmlSchemaContentType' type='typedef'/> - <exports symbol='xmlSchemaTypeType' type='typedef'/> - <exports symbol='xmlSchemaAttribute' type='typedef'/> - <exports symbol='_xmlSchemaWildcardNs' type='struct'/> - <exports symbol='_xmlSchemaNotation' type='struct'/> - <exports symbol='_xmlSchemaAttribute' type='struct'/> - <exports symbol='_xmlSchemaType' type='struct'/> - <exports symbol='_xmlSchemaAttributeGroup' type='struct'/> - <exports symbol='_xmlSchemaFacetLink' type='struct'/> - <exports symbol='_xmlSchemaElement' type='struct'/> - <exports symbol='_xmlSchema' type='struct'/> - <exports symbol='_xmlSchemaAttributeLink' type='struct'/> - <exports symbol='_xmlSchemaFacet' type='struct'/> - <exports symbol='_xmlSchemaWildcard' type='struct'/> - <exports symbol='_xmlSchemaTypeLink' type='struct'/> - <exports symbol='_xmlSchemaAnnot' type='struct'/> - <exports symbol='xmlSchemaFreeType' type='function'/> - <exports symbol='xmlSchemaFreeWildcard' type='function'/> - </file> - <file name='schematron'> - <summary>XML Schemastron implementation</summary> - <description>interface to the XML Schematron validity checking. </description> - <author>Daniel Veillard </author> - <exports symbol='XML_SCHEMATRON_OUT_IO' type='enum'/> - <exports symbol='XML_SCHEMATRON_OUT_BUFFER' type='enum'/> - <exports symbol='XML_SCHEMATRON_OUT_FILE' type='enum'/> - <exports symbol='XML_SCHEMATRON_OUT_XML' type='enum'/> - <exports symbol='XML_SCHEMATRON_OUT_TEXT' type='enum'/> - <exports symbol='XML_SCHEMATRON_OUT_QUIET' type='enum'/> - <exports symbol='xmlSchematronValidCtxt' type='typedef'/> - <exports symbol='xmlSchematronValidOptions' type='typedef'/> - <exports symbol='xmlSchematronPtr' type='typedef'/> - <exports symbol='xmlSchematronParserCtxt' type='typedef'/> - <exports symbol='xmlSchematron' type='typedef'/> - <exports symbol='xmlSchematronValidCtxtPtr' type='typedef'/> - <exports symbol='xmlSchematronParserCtxtPtr' type='typedef'/> - <exports symbol='xmlSchematronValidateDoc' type='function'/> - <exports symbol='xmlSchematronFreeParserCtxt' type='function'/> - <exports symbol='xmlSchematronNewMemParserCtxt' type='function'/> - <exports symbol='xmlSchematronValidityErrorFunc' type='function'/> - <exports symbol='xmlSchematronNewParserCtxt' type='function'/> - <exports symbol='xmlSchematronValidityWarningFunc' type='function'/> - <exports symbol='xmlSchematronFree' type='function'/> - <exports symbol='xmlSchematronFreeValidCtxt' type='function'/> - <exports symbol='xmlSchematronParse' type='function'/> - <exports symbol='xmlSchematronNewDocParserCtxt' type='function'/> - <exports symbol='xmlSchematronNewValidCtxt' type='function'/> - </file> - <file name='threads'> - <summary>interfaces for thread handling</summary> - <description>set of generic threading related routines should work with pthreads, Windows native or TLS threads </description> - <author>Daniel Veillard </author> - <exports symbol='xmlMutex' type='typedef'/> - <exports symbol='xmlRMutex' type='typedef'/> - <exports symbol='xmlRMutexPtr' type='typedef'/> - <exports symbol='xmlMutexPtr' type='typedef'/> - <exports symbol='xmlFreeRMutex' type='function'/> - <exports symbol='xmlGetThreadId' type='function'/> - <exports symbol='xmlMutexUnlock' type='function'/> - <exports symbol='xmlCleanupThreads' type='function'/> - <exports symbol='xmlLockLibrary' type='function'/> - <exports symbol='xmlNewRMutex' type='function'/> - <exports symbol='xmlMutexLock' type='function'/> - <exports symbol='xmlIsMainThread' type='function'/> - <exports symbol='xmlRMutexUnlock' type='function'/> - <exports symbol='xmlGetGlobalState' type='function'/> - <exports symbol='xmlNewMutex' type='function'/> - <exports symbol='xmlDllMain' type='function'/> - <exports symbol='xmlFreeMutex' type='function'/> - <exports symbol='xmlUnlockLibrary' type='function'/> - <exports symbol='xmlInitThreads' type='function'/> - <exports symbol='xmlRMutexLock' type='function'/> - </file> - <file name='tree'> - <summary>interfaces for tree manipulation</summary> - <description>this module describes the structures found in an tree resulting from an XML or HTML parsing, as well as the API provided for various processing on that tree </description> - <author>Daniel Veillard </author> - <exports symbol='XML_LOCAL_NAMESPACE' type='macro'/> - <exports symbol='XML_XML_NAMESPACE' type='macro'/> - <exports symbol='XML_XML_ID' type='macro'/> - <exports symbol='xmlRootNode' type='macro'/> - <exports symbol='XML_GET_LINE' type='macro'/> - <exports symbol='XML_GET_CONTENT' type='macro'/> - <exports symbol='xmlChildrenNode' type='macro'/> - <exports symbol='BASE_BUFFER_SIZE' type='macro'/> - <exports symbol='XML_ATTRIBUTE_IMPLIED' type='enum'/> - <exports symbol='XML_ELEMENT_CONTENT_ELEMENT' type='enum'/> - <exports symbol='XML_ATTRIBUTE_IDREFS' type='enum'/> - <exports symbol='XML_BUFFER_ALLOC_DOUBLEIT' type='enum'/> - <exports symbol='XML_XINCLUDE_END' type='enum'/> - <exports symbol='XML_ATTRIBUTE_NODE' type='enum'/> - <exports symbol='XML_ATTRIBUTE_IDREF' type='enum'/> - <exports symbol='XML_ELEMENT_TYPE_ELEMENT' type='enum'/> - <exports symbol='XML_CDATA_SECTION_NODE' type='enum'/> - <exports symbol='XML_ELEMENT_NODE' type='enum'/> - <exports symbol='XML_ELEMENT_DECL' type='enum'/> - <exports symbol='XML_ELEMENT_CONTENT_SEQ' type='enum'/> - <exports symbol='XML_ATTRIBUTE_REQUIRED' type='enum'/> - <exports symbol='XML_DOCUMENT_FRAG_NODE' type='enum'/> - <exports symbol='XML_ELEMENT_TYPE_ANY' type='enum'/> - <exports symbol='XML_ELEMENT_CONTENT_ONCE' type='enum'/> - <exports symbol='XML_ELEMENT_CONTENT_PCDATA' type='enum'/> - <exports symbol='XML_ATTRIBUTE_FIXED' type='enum'/> - <exports symbol='XML_DOCUMENT_TYPE_NODE' type='enum'/> - <exports symbol='XML_ELEMENT_CONTENT_OPT' type='enum'/> - <exports symbol='XML_NAMESPACE_DECL' type='enum'/> - <exports symbol='XML_ATTRIBUTE_NOTATION' type='enum'/> - <exports symbol='XML_ELEMENT_TYPE_MIXED' type='enum'/> - <exports symbol='XML_XINCLUDE_START' type='enum'/> - <exports symbol='XML_TEXT_NODE' type='enum'/> - <exports symbol='XML_BUFFER_ALLOC_EXACT' type='enum'/> - <exports symbol='XML_ATTRIBUTE_ENTITIES' type='enum'/> - <exports symbol='XML_BUFFER_ALLOC_IMMUTABLE' type='enum'/> - <exports symbol='XML_NOTATION_NODE' type='enum'/> - <exports symbol='XML_ENTITY_REF_NODE' type='enum'/> - <exports symbol='XML_ELEMENT_TYPE_EMPTY' type='enum'/> - <exports symbol='XML_ATTRIBUTE_ENUMERATION' type='enum'/> - <exports symbol='XML_HTML_DOCUMENT_NODE' type='enum'/> - <exports symbol='XML_ELEMENT_TYPE_UNDEFINED' type='enum'/> - <exports symbol='XML_DOCUMENT_NODE' type='enum'/> - <exports symbol='XML_DOCB_DOCUMENT_NODE' type='enum'/> - <exports symbol='XML_COMMENT_NODE' type='enum'/> - <exports symbol='XML_ATTRIBUTE_NONE' type='enum'/> - <exports symbol='XML_DTD_NODE' type='enum'/> - <exports symbol='XML_ELEMENT_CONTENT_OR' type='enum'/> - <exports symbol='XML_ATTRIBUTE_NMTOKEN' type='enum'/> - <exports symbol='XML_PI_NODE' type='enum'/> - <exports symbol='XML_ATTRIBUTE_NMTOKENS' type='enum'/> - <exports symbol='XML_ENTITY_NODE' type='enum'/> - <exports symbol='XML_ATTRIBUTE_ENTITY' type='enum'/> - <exports symbol='XML_ATTRIBUTE_DECL' type='enum'/> - <exports symbol='XML_ENTITY_DECL' type='enum'/> - <exports symbol='XML_ATTRIBUTE_ID' type='enum'/> - <exports symbol='XML_ATTRIBUTE_CDATA' type='enum'/> - <exports symbol='XML_ELEMENT_CONTENT_MULT' type='enum'/> - <exports symbol='XML_ELEMENT_CONTENT_PLUS' type='enum'/> - <exports symbol='xmlNs' type='typedef'/> - <exports symbol='xmlBufferPtr' type='typedef'/> - <exports symbol='xmlEnumerationPtr' type='typedef'/> - <exports symbol='xmlBuffer' type='typedef'/> - <exports symbol='xmlParserInputPtr' type='typedef'/> - <exports symbol='xmlSAXLocatorPtr' type='typedef'/> - <exports symbol='xmlParserInput' type='typedef'/> - <exports symbol='xmlElement' type='typedef'/> - <exports symbol='xmlNsType' type='typedef'/> - <exports symbol='xmlBufferAllocationScheme' type='typedef'/> - <exports symbol='xmlNode' type='typedef'/> - <exports symbol='xmlDocPtr' type='typedef'/> - <exports symbol='xmlElementContent' type='typedef'/> - <exports symbol='xmlDOMWrapCtxtPtr' type='typedef'/> - <exports symbol='xmlRefPtr' type='typedef'/> - <exports symbol='xmlParserInputBuffer' type='typedef'/> - <exports symbol='xmlRef' type='typedef'/> - <exports symbol='xmlDOMWrapCtxt' type='typedef'/> - <exports symbol='xmlNodePtr' type='typedef'/> - <exports symbol='xmlParserCtxt' type='typedef'/> - <exports symbol='xmlDtdPtr' type='typedef'/> - <exports symbol='xmlAttributeDefault' type='typedef'/> - <exports symbol='xmlNotation' type='typedef'/> - <exports symbol='xmlElementType' type='typedef'/> - <exports symbol='xmlEntity' type='typedef'/> - <exports symbol='xmlAttr' type='typedef'/> - <exports symbol='xmlAttributePtr' type='typedef'/> - <exports symbol='xmlElementTypeVal' type='typedef'/> - <exports symbol='xmlNotationPtr' type='typedef'/> - <exports symbol='xmlElementPtr' type='typedef'/> - <exports symbol='xmlElementContentOccur' type='typedef'/> - <exports symbol='xmlAttrPtr' type='typedef'/> - <exports symbol='xmlDoc' type='typedef'/> - <exports symbol='xmlID' type='typedef'/> - <exports symbol='xmlParserCtxtPtr' type='typedef'/> - <exports symbol='xmlEntityPtr' type='typedef'/> - <exports symbol='xmlEnumeration' type='typedef'/> - <exports symbol='xmlAttributeType' type='typedef'/> - <exports symbol='xmlNsPtr' type='typedef'/> - <exports symbol='xmlParserInputBufferPtr' type='typedef'/> - <exports symbol='xmlSAXHandler' type='typedef'/> - <exports symbol='xmlOutputBuffer' type='typedef'/> - <exports symbol='xmlSAXLocator' type='typedef'/> - <exports symbol='xmlElementContentPtr' type='typedef'/> - <exports symbol='xmlElementContentType' type='typedef'/> - <exports symbol='xmlIDPtr' type='typedef'/> - <exports symbol='xmlDtd' type='typedef'/> - <exports symbol='xmlAttribute' type='typedef'/> - <exports symbol='xmlOutputBufferPtr' type='typedef'/> - <exports symbol='xmlSAXHandlerPtr' type='typedef'/> - <exports symbol='_xmlBuffer' type='struct'/> - <exports symbol='_xmlAttribute' type='struct'/> - <exports symbol='_xmlEnumeration' type='struct'/> - <exports symbol='_xmlNs' type='struct'/> - <exports symbol='_xmlNode' type='struct'/> - <exports symbol='_xmlDoc' type='struct'/> - <exports symbol='_xmlElement' type='struct'/> - <exports symbol='_xmlID' type='struct'/> - <exports symbol='_xmlNotation' type='struct'/> - <exports symbol='_xmlDtd' type='struct'/> - <exports symbol='_xmlRef' type='struct'/> - <exports symbol='_xmlAttr' type='struct'/> - <exports symbol='_xmlDOMWrapCtxt' type='struct'/> - <exports symbol='_xmlElementContent' type='struct'/> - <exports symbol='xmlDocCopyNode' type='function'/> - <exports symbol='xmlNewDocRawNode' type='function'/> - <exports symbol='xmlGetProp' type='function'/> - <exports symbol='xmlNewNsPropEatName' type='function'/> - <exports symbol='xmlNewCDataBlock' type='function'/> - <exports symbol='xmlBufferWriteCHAR' type='function'/> - <exports symbol='xmlNodeGetBase' type='function'/> - <exports symbol='xmlBufferEmpty' type='function'/> - <exports symbol='xmlBuildQName' type='function'/> - <exports symbol='xmlSaveFormatFileEnc' type='function'/> - <exports symbol='xmlAddSibling' type='function'/> - <exports symbol='xmlBufferCreate' type='function'/> - <exports symbol='xmlNewDocFragment' type='function'/> - <exports symbol='xmlDocGetRootElement' type='function'/> - <exports symbol='xmlStringGetNodeList' type='function'/> - <exports symbol='xmlValidateName' type='function'/> - <exports symbol='xmlSetBufferAllocationScheme' type='function'/> - <exports symbol='xmlValidateQName' type='function'/> - <exports symbol='xmlHasNsProp' type='function'/> - <exports symbol='xmlAddPrevSibling' type='function'/> - <exports symbol='xmlBufferAddHead' type='function'/> - <exports symbol='xmlNewPI' type='function'/> - <exports symbol='xmlDocDumpFormatMemoryEnc' type='function'/> - <exports symbol='xmlUnsetNsProp' type='function'/> - <exports symbol='xmlElemDump' type='function'/> - <exports symbol='xmlSaveFormatFileTo' type='function'/> - <exports symbol='xmlGetIntSubset' type='function'/> - <exports symbol='xmlNodeBufGetContent' type='function'/> - <exports symbol='xmlBufferWriteChar' type='function'/> - <exports symbol='xmlBufferFree' type='function'/> - <exports symbol='xmlDOMWrapCloneNode' type='function'/> - <exports symbol='xmlNewNode' type='function'/> - <exports symbol='xmlSaveFileTo' type='function'/> - <exports symbol='xmlNewTextLen' type='function'/> - <exports symbol='xmlNewTextChild' type='function'/> - <exports symbol='xmlNodeSetContent' type='function'/> - <exports symbol='xmlBufferAdd' type='function'/> - <exports symbol='xmlNodeDumpOutput' type='function'/> - <exports symbol='xmlCopyNamespace' type='function'/> - <exports symbol='xmlSearchNsByHref' type='function'/> - <exports symbol='xmlAddChild' type='function'/> - <exports symbol='xmlReconciliateNs' type='function'/> - <exports symbol='xmlValidateNCName' type='function'/> - <exports symbol='xmlNewDocComment' type='function'/> - <exports symbol='xmlGetCompressMode' type='function'/> - <exports symbol='xmlNodeDump' type='function'/> - <exports symbol='xmlBufferCreateSize' type='function'/> - <exports symbol='xmlNodeListGetString' type='function'/> - <exports symbol='xmlSetCompressMode' type='function'/> - <exports symbol='xmlSetTreeDoc' type='function'/> - <exports symbol='xmlDOMWrapAdoptNode' type='function'/> - <exports symbol='xmlCopyNodeList' type='function'/> - <exports symbol='xmlNewDocNodeEatName' type='function'/> - <exports symbol='xmlAddChildList' type='function'/> - <exports symbol='xmlGetNodePath' type='function'/> - <exports symbol='xmlFreePropList' type='function'/> - <exports symbol='xmlNodeAddContent' type='function'/> - <exports symbol='xmlAddNextSibling' type='function'/> - <exports symbol='xmlIsBlankNode' type='function'/> - <exports symbol='xmlNewGlobalNs' type='function'/> - <exports symbol='xmlBufferDump' type='function'/> - <exports symbol='xmlNodeGetContent' type='function'/> - <exports symbol='xmlCopyDoc' type='function'/> - <exports symbol='xmlDOMWrapNewCtxt' type='function'/> - <exports symbol='xmlDocDumpMemoryEnc' type='function'/> - <exports symbol='xmlTextMerge' type='function'/> - <exports symbol='xmlDocDumpMemory' type='function'/> - <exports symbol='xmlNewDocPI' type='function'/> - <exports symbol='xmlFreeNs' type='function'/> - <exports symbol='xmlDocDump' type='function'/> - <exports symbol='xmlFreeProp' type='function'/> - <exports symbol='xmlGetNoNsProp' type='function'/> - <exports symbol='xmlSplitQName2' type='function'/> - <exports symbol='xmlNewProp' type='function'/> - <exports symbol='xmlTextConcat' type='function'/> - <exports symbol='xmlNodeGetSpacePreserve' type='function'/> - <exports symbol='xmlBufferShrink' type='function'/> - <exports symbol='xmlNodeSetContentLen' type='function'/> - <exports symbol='xmlNodeAddContentLen' type='function'/> - <exports symbol='xmlBufferWriteQuotedString' type='function'/> - <exports symbol='xmlCopyProp' type='function'/> - <exports symbol='xmlReplaceNode' type='function'/> - <exports symbol='xmlSetDocCompressMode' type='function'/> - <exports symbol='xmlCopyNode' type='function'/> - <exports symbol='xmlUnlinkNode' type='function'/> - <exports symbol='xmlSplitQName3' type='function'/> - <exports symbol='xmlDOMWrapAcquireNsFunction' type='function'/> - <exports symbol='xmlDocSetRootElement' type='function'/> - <exports symbol='xmlGetLineNo' type='function'/> - <exports symbol='xmlBufferContent' type='function'/> - <exports symbol='xmlRemoveProp' type='function'/> - <exports symbol='xmlNodeGetLang' type='function'/> - <exports symbol='xmlGetDocCompressMode' type='function'/> - <exports symbol='xmlGetNsProp' type='function'/> - <exports symbol='xmlNewDocProp' type='function'/> - <exports symbol='xmlFreeNode' type='function'/> - <exports symbol='xmlNewNsProp' type='function'/> - <exports symbol='xmlDOMWrapFreeCtxt' type='function'/> - <exports symbol='xmlValidateNMToken' type='function'/> - <exports symbol='xmlBufferSetAllocationScheme' type='function'/> - <exports symbol='xmlNewChild' type='function'/> - <exports symbol='xmlSearchNs' type='function'/> - <exports symbol='xmlStringLenGetNodeList' type='function'/> - <exports symbol='xmlSaveFormatFile' type='function'/> - <exports symbol='xmlCopyPropList' type='function'/> - <exports symbol='xmlDocFormatDump' type='function'/> - <exports symbol='xmlNodeSetSpacePreserve' type='function'/> - <exports symbol='xmlHasProp' type='function'/> - <exports symbol='xmlBufferCat' type='function'/> - <exports symbol='xmlCreateIntSubset' type='function'/> - <exports symbol='xmlNewDoc' type='function'/> - <exports symbol='xmlNewCharRef' type='function'/> - <exports symbol='xmlCopyNamespaceList' type='function'/> - <exports symbol='xmlNewNodeEatName' type='function'/> - <exports symbol='xmlBufferResize' type='function'/> - <exports symbol='xmlNodeSetBase' type='function'/> - <exports symbol='xmlNewComment' type='function'/> - <exports symbol='xmlBufferLength' type='function'/> - <exports symbol='xmlNewText' type='function'/> - <exports symbol='xmlUnsetProp' type='function'/> - <exports symbol='xmlGetBufferAllocationScheme' type='function'/> - <exports symbol='xmlSaveFile' type='function'/> - <exports symbol='xmlDocCopyNodeList' type='function'/> - <exports symbol='xmlSetNs' type='function'/> - <exports symbol='xmlNewNs' type='function'/> - <exports symbol='xmlDOMWrapRemoveNode' type='function'/> - <exports symbol='xmlAttrSerializeTxtContent' type='function'/> - <exports symbol='xmlCopyDtd' type='function'/> - <exports symbol='xmlNewDocText' type='function'/> - <exports symbol='xmlNodeListGetRawString' type='function'/> - <exports symbol='xmlBufferCreateStatic' type='function'/> - <exports symbol='xmlNewReference' type='function'/> - <exports symbol='xmlDOMWrapReconcileNamespaces' type='function'/> - <exports symbol='xmlBufferCCat' type='function'/> - <exports symbol='xmlGetNsList' type='function'/> - <exports symbol='xmlBufferGrow' type='function'/> - <exports symbol='xmlNodeIsText' type='function'/> - <exports symbol='xmlSetProp' type='function'/> - <exports symbol='xmlIsXHTML' type='function'/> - <exports symbol='xmlNodeSetLang' type='function'/> - <exports symbol='xmlFreeDtd' type='function'/> - <exports symbol='xmlFreeNodeList' type='function'/> - <exports symbol='xmlFreeDoc' type='function'/> - <exports symbol='xmlNewDocNode' type='function'/> - <exports symbol='xmlSaveFileEnc' type='function'/> - <exports symbol='xmlSetNsProp' type='function'/> - <exports symbol='xmlDocDumpFormatMemory' type='function'/> - <exports symbol='xmlSetListDoc' type='function'/> - <exports symbol='xmlNodeSetName' type='function'/> - <exports symbol='xmlNewDocTextLen' type='function'/> - <exports symbol='xmlNewDtd' type='function'/> - <exports symbol='xmlFreeNsList' type='function'/> - <exports symbol='xmlGetLastChild' type='function'/> - </file> - <file name='uri'> - <summary>library of generic URI related routines</summary> - <description>library of generic URI related routines Implements RFC 2396 </description> - <author>Daniel Veillard </author> - <exports symbol='xmlURI' type='typedef'/> - <exports symbol='xmlURIPtr' type='typedef'/> - <exports symbol='_xmlURI' type='struct'/> - <exports symbol='xmlNormalizeURIPath' type='function'/> - <exports symbol='xmlPrintURI' type='function'/> - <exports symbol='xmlParseURIRaw' type='function'/> - <exports symbol='xmlURIUnescapeString' type='function'/> - <exports symbol='xmlParseURI' type='function'/> - <exports symbol='xmlCreateURI' type='function'/> - <exports symbol='xmlURIEscapeStr' type='function'/> - <exports symbol='xmlPathToURI' type='function'/> - <exports symbol='xmlCanonicPath' type='function'/> - <exports symbol='xmlFreeURI' type='function'/> - <exports symbol='xmlParseURIReference' type='function'/> - <exports symbol='xmlBuildRelativeURI' type='function'/> - <exports symbol='xmlSaveUri' type='function'/> - <exports symbol='xmlURIEscape' type='function'/> - <exports symbol='xmlBuildURI' type='function'/> - </file> - <file name='valid'> - <summary>The DTD validation</summary> - <description>API for the DTD handling and the validity checking </description> - <author>Daniel Veillard </author> - <exports symbol='XML_CTXT_FINISH_DTD_0' type='macro'/> - <exports symbol='XML_CTXT_FINISH_DTD_1' type='macro'/> - <exports symbol='xmlElementTable' type='typedef'/> - <exports symbol='xmlValidStatePtr' type='typedef'/> - <exports symbol='xmlIDTablePtr' type='typedef'/> - <exports symbol='xmlNotationTablePtr' type='typedef'/> - <exports symbol='xmlValidCtxt' type='typedef'/> - <exports symbol='xmlElementTablePtr' type='typedef'/> - <exports symbol='xmlRefTablePtr' type='typedef'/> - <exports symbol='xmlNotationTable' type='typedef'/> - <exports symbol='xmlRefTable' type='typedef'/> - <exports symbol='xmlValidState' type='typedef'/> - <exports symbol='xmlAttributeTable' type='typedef'/> - <exports symbol='xmlAttributeTablePtr' type='typedef'/> - <exports symbol='xmlIDTable' type='typedef'/> - <exports symbol='xmlValidCtxtPtr' type='typedef'/> - <exports symbol='_xmlValidCtxt' type='struct'/> - <exports symbol='xmlFreeNotationTable' type='function'/> - <exports symbol='xmlValidateNameValue' type='function'/> - <exports symbol='xmlSnprintfElementContent' type='function'/> - <exports symbol='xmlAddRef' type='function'/> - <exports symbol='xmlDumpAttributeDecl' type='function'/> - <exports symbol='xmlValidateDocumentFinal' type='function'/> - <exports symbol='xmlValidateDtdFinal' type='function'/> - <exports symbol='xmlDumpAttributeTable' type='function'/> - <exports symbol='xmlCreateEnumeration' type='function'/> - <exports symbol='xmlValidateOneAttribute' type='function'/> - <exports symbol='xmlValidGetValidElements' type='function'/> - <exports symbol='xmlIsMixedElement' type='function'/> - <exports symbol='xmlDumpNotationDecl' type='function'/> - <exports symbol='xmlIsID' type='function'/> - <exports symbol='xmlGetDtdQAttrDesc' type='function'/> - <exports symbol='xmlNewDocElementContent' type='function'/> - <exports symbol='xmlFreeAttributeTable' type='function'/> - <exports symbol='xmlValidityErrorFunc' type='function'/> - <exports symbol='xmlValidateAttributeDecl' type='function'/> - <exports symbol='xmlGetDtdQElementDesc' type='function'/> - <exports symbol='xmlCopyNotationTable' type='function'/> - <exports symbol='xmlValidateDocument' type='function'/> - <exports symbol='xmlValidGetPotentialChildren' type='function'/> - <exports symbol='xmlAddNotationDecl' type='function'/> - <exports symbol='xmlValidateElementDecl' type='function'/> - <exports symbol='xmlAddAttributeDecl' type='function'/> - <exports symbol='xmlGetID' type='function'/> - <exports symbol='xmlCopyElementTable' type='function'/> - <exports symbol='xmlGetRefs' type='function'/> - <exports symbol='xmlSprintfElementContent' type='function'/> - <exports symbol='xmlValidateOneElement' type='function'/> - <exports symbol='xmlValidateNmtokenValue' type='function'/> - <exports symbol='xmlDumpElementTable' type='function'/> - <exports symbol='xmlValidCtxtNormalizeAttributeValue' type='function'/> - <exports symbol='xmlDumpElementDecl' type='function'/> - <exports symbol='xmlFreeElementContent' type='function'/> - <exports symbol='xmlValidateOneNamespace' type='function'/> - <exports symbol='xmlValidatePushElement' type='function'/> - <exports symbol='xmlIsRef' type='function'/> - <exports symbol='xmlCopyDocElementContent' type='function'/> - <exports symbol='xmlAddID' type='function'/> - <exports symbol='xmlFreeRefTable' type='function'/> - <exports symbol='xmlRemoveID' type='function'/> - <exports symbol='xmlFreeElementTable' type='function'/> - <exports symbol='xmlFreeIDTable' type='function'/> - <exports symbol='xmlFreeValidCtxt' type='function'/> - <exports symbol='xmlCopyAttributeTable' type='function'/> - <exports symbol='xmlCopyElementContent' type='function'/> - <exports symbol='xmlValidateAttributeValue' type='function'/> - <exports symbol='xmlRemoveRef' type='function'/> - <exports symbol='xmlValidityWarningFunc' type='function'/> - <exports symbol='xmlValidatePopElement' type='function'/> - <exports symbol='xmlFreeEnumeration' type='function'/> - <exports symbol='xmlValidateNamesValue' type='function'/> - <exports symbol='xmlCopyEnumeration' type='function'/> - <exports symbol='xmlGetDtdAttrDesc' type='function'/> - <exports symbol='xmlValidateDtd' type='function'/> - <exports symbol='xmlNewValidCtxt' type='function'/> - <exports symbol='xmlDumpNotationTable' type='function'/> - <exports symbol='xmlAddElementDecl' type='function'/> - <exports symbol='xmlValidNormalizeAttributeValue' type='function'/> - <exports symbol='xmlValidBuildContentModel' type='function'/> - <exports symbol='xmlValidateElement' type='function'/> - <exports symbol='xmlValidateNotationUse' type='function'/> - <exports symbol='xmlValidateRoot' type='function'/> - <exports symbol='xmlValidateNotationDecl' type='function'/> - <exports symbol='xmlNewElementContent' type='function'/> - <exports symbol='xmlGetDtdElementDesc' type='function'/> - <exports symbol='xmlGetDtdNotationDesc' type='function'/> - <exports symbol='xmlValidatePushCData' type='function'/> - <exports symbol='xmlValidateNmtokensValue' type='function'/> - <exports symbol='xmlFreeDocElementContent' type='function'/> - </file> - <file name='xinclude'> - <summary>implementation of XInclude</summary> - <description>API to handle XInclude processing, implements the World Wide Web Consortium Last Call Working Draft 10 November 2003</description> - <author>Daniel Veillard </author> - <exports symbol='XINCLUDE_PARSE_TEXT' type='macro'/> - <exports symbol='XINCLUDE_PARSE_XPOINTER' type='macro'/> - <exports symbol='XINCLUDE_HREF' type='macro'/> - <exports symbol='XINCLUDE_FALLBACK' type='macro'/> - <exports symbol='XINCLUDE_NS' type='macro'/> - <exports symbol='XINCLUDE_PARSE' type='macro'/> - <exports symbol='XINCLUDE_NODE' type='macro'/> - <exports symbol='XINCLUDE_PARSE_XML' type='macro'/> - <exports symbol='XINCLUDE_PARSE_ENCODING' type='macro'/> - <exports symbol='XINCLUDE_OLD_NS' type='macro'/> - <exports symbol='xmlXIncludeCtxt' type='typedef'/> - <exports symbol='xmlXIncludeCtxtPtr' type='typedef'/> - <exports symbol='xmlXIncludeProcessFlagsData' type='function'/> - <exports symbol='xmlXIncludeProcessFlags' type='function'/> - <exports symbol='xmlXIncludeProcessTree' type='function'/> - <exports symbol='xmlXIncludeProcessNode' type='function'/> - <exports symbol='xmlXIncludeFreeContext' type='function'/> - <exports symbol='xmlXIncludeSetFlags' type='function'/> - <exports symbol='xmlXIncludeProcess' type='function'/> - <exports symbol='xmlXIncludeNewContext' type='function'/> - <exports symbol='xmlXIncludeProcessTreeFlags' type='function'/> - </file> - <file name='xlink'> - <summary>unfinished XLink detection module</summary> - <description>unfinished XLink detection module </description> - <author>Daniel Veillard </author> - <exports symbol='XLINK_ACTUATE_NONE' type='enum'/> - <exports symbol='XLINK_SHOW_NEW' type='enum'/> - <exports symbol='XLINK_ACTUATE_AUTO' type='enum'/> - <exports symbol='XLINK_TYPE_NONE' type='enum'/> - <exports symbol='XLINK_SHOW_REPLACE' type='enum'/> - <exports symbol='XLINK_ACTUATE_ONREQUEST' type='enum'/> - <exports symbol='XLINK_TYPE_EXTENDED' type='enum'/> - <exports symbol='XLINK_TYPE_EXTENDED_SET' type='enum'/> - <exports symbol='XLINK_SHOW_NONE' type='enum'/> - <exports symbol='XLINK_SHOW_EMBED' type='enum'/> - <exports symbol='XLINK_TYPE_SIMPLE' type='enum'/> - <exports symbol='xlinkTitle' type='typedef'/> - <exports symbol='xlinkShow' type='typedef'/> - <exports symbol='xlinkHRef' type='typedef'/> - <exports symbol='xlinkActuate' type='typedef'/> - <exports symbol='xlinkHandler' type='typedef'/> - <exports symbol='xlinkRole' type='typedef'/> - <exports symbol='xlinkHandlerPtr' type='typedef'/> - <exports symbol='xlinkType' type='typedef'/> - <exports symbol='_xlinkHandler' type='struct'/> - <exports symbol='xlinkSetDefaultDetect' type='function'/> - <exports symbol='xlinkSetDefaultHandler' type='function'/> - <exports symbol='xlinkExtendedLinkFunk' type='function'/> - <exports symbol='xlinkExtendedLinkSetFunk' type='function'/> - <exports symbol='xlinkSimpleLinkFunk' type='function'/> - <exports symbol='xlinkNodeDetectFunc' type='function'/> - <exports symbol='xlinkGetDefaultHandler' type='function'/> - <exports symbol='xlinkIsLink' type='function'/> - <exports symbol='xlinkGetDefaultDetect' type='function'/> - </file> - <file name='xmlIO'> - <summary>interface for the I/O interfaces used by the parser</summary> - <description>interface for the I/O interfaces used by the parser </description> - <author>Daniel Veillard </author> - <exports symbol='_xmlParserInputBuffer' type='struct'/> - <exports symbol='_xmlOutputBuffer' type='struct'/> - <exports symbol='xmlIOHTTPRead' type='function'/> - <exports symbol='xmlInputMatchCallback' type='function'/> - <exports symbol='xmlRegisterDefaultOutputCallbacks' type='function'/> - <exports symbol='xmlFileClose' type='function'/> - <exports symbol='xmlOutputMatchCallback' type='function'/> - <exports symbol='xmlParserInputBufferPush' type='function'/> - <exports symbol='xmlIOFTPRead' type='function'/> - <exports symbol='xmlRegisterHTTPPostCallbacks' type='function'/> - <exports symbol='xmlIOFTPOpen' type='function'/> - <exports symbol='xmlIOFTPClose' type='function'/> - <exports symbol='xmlFileOpen' type='function'/> - <exports symbol='xmlOutputBufferCreateFile' type='function'/> - <exports symbol='xmlCheckFilename' type='function'/> - <exports symbol='xmlOutputOpenCallback' type='function'/> - <exports symbol='xmlParserInputBufferCreateFilename' type='function'/> - <exports symbol='xmlOutputBufferClose' type='function'/> - <exports symbol='xmlAllocParserInputBuffer' type='function'/> - <exports symbol='xmlOutputBufferCreateIO' type='function'/> - <exports symbol='xmlOutputWriteCallback' type='function'/> - <exports symbol='xmlOutputBufferFlush' type='function'/> - <exports symbol='xmlCheckHTTPInput' type='function'/> - <exports symbol='xmlRegisterOutputCallbacks' type='function'/> - <exports symbol='xmlParserInputBufferCreateMem' type='function'/> - <exports symbol='xmlIOFTPMatch' type='function'/> - <exports symbol='xmlRegisterInputCallbacks' type='function'/> - <exports symbol='xmlFreeParserInputBuffer' type='function'/> - <exports symbol='xmlRegisterDefaultInputCallbacks' type='function'/> - <exports symbol='xmlParserInputBufferGrow' type='function'/> - <exports symbol='xmlOutputCloseCallback' type='function'/> - <exports symbol='xmlAllocOutputBuffer' type='function'/> - <exports symbol='xmlNoNetExternalEntityLoader' type='function'/> - <exports symbol='xmlOutputBufferCreateBuffer' type='function'/> - <exports symbol='xmlIOHTTPMatch' type='function'/> - <exports symbol='xmlIOHTTPOpen' type='function'/> - <exports symbol='xmlParserInputBufferCreateIO' type='function'/> - <exports symbol='xmlOutputBufferCreateFd' type='function'/> - <exports symbol='xmlNormalizeWindowsPath' type='function'/> - <exports symbol='xmlInputReadCallback' type='function'/> - <exports symbol='xmlParserInputBufferCreateStatic' type='function'/> - <exports symbol='xmlIOHTTPClose' type='function'/> - <exports symbol='xmlOutputBufferWriteEscape' type='function'/> - <exports symbol='xmlOutputBufferCreateFilename' type='function'/> - <exports symbol='xmlCleanupOutputCallbacks' type='function'/> - <exports symbol='xmlInputOpenCallback' type='function'/> - <exports symbol='xmlParserInputBufferRead' type='function'/> - <exports symbol='xmlOutputBufferWriteString' type='function'/> - <exports symbol='xmlFileMatch' type='function'/> - <exports symbol='xmlPopInputCallbacks' type='function'/> - <exports symbol='xmlFileRead' type='function'/> - <exports symbol='xmlParserInputBufferCreateFile' type='function'/> - <exports symbol='xmlParserGetDirectory' type='function'/> - <exports symbol='xmlOutputBufferWrite' type='function'/> - <exports symbol='xmlCleanupInputCallbacks' type='function'/> - <exports symbol='xmlInputCloseCallback' type='function'/> - <exports symbol='xmlIOHTTPOpenW' type='function'/> - <exports symbol='xmlParserInputBufferCreateFd' type='function'/> - </file> - <file name='xmlautomata'> - <summary>API to build regexp automata</summary> - <description>the API to build regexp automata </description> - <author>Daniel Veillard </author> - <exports symbol='xmlAutomataStatePtr' type='typedef'/> - <exports symbol='xmlAutomata' type='typedef'/> - <exports symbol='xmlAutomataPtr' type='typedef'/> - <exports symbol='xmlAutomataState' type='typedef'/> - <exports symbol='xmlFreeAutomata' type='function'/> - <exports symbol='xmlAutomataNewCounter' type='function'/> - <exports symbol='xmlAutomataGetInitState' type='function'/> - <exports symbol='xmlAutomataNewTransition2' type='function'/> - <exports symbol='xmlAutomataNewState' type='function'/> - <exports symbol='xmlAutomataNewCountTrans' type='function'/> - <exports symbol='xmlAutomataNewOnceTrans2' type='function'/> - <exports symbol='xmlAutomataNewAllTrans' type='function'/> - <exports symbol='xmlAutomataNewCountedTrans' type='function'/> - <exports symbol='xmlAutomataNewCounterTrans' type='function'/> - <exports symbol='xmlAutomataCompile' type='function'/> - <exports symbol='xmlAutomataNewNegTrans' type='function'/> - <exports symbol='xmlAutomataNewEpsilon' type='function'/> - <exports symbol='xmlAutomataNewCountTrans2' type='function'/> - <exports symbol='xmlNewAutomata' type='function'/> - <exports symbol='xmlAutomataSetFinalState' type='function'/> - <exports symbol='xmlAutomataNewOnceTrans' type='function'/> - <exports symbol='xmlAutomataNewTransition' type='function'/> - <exports symbol='xmlAutomataIsDeterminist' type='function'/> - </file> - <file name='xmlerror'> - <summary>error handling</summary> - <description>the API used to report errors </description> - <author>Daniel Veillard </author> - <exports symbol='XML_DTD_ATTRIBUTE_VALUE' type='enum'/> - <exports symbol='XML_RNGP_PARAM_NAME_MISSING' type='enum'/> - <exports symbol='XML_RNGP_PARENTREF_NO_PARENT' type='enum'/> - <exports symbol='XML_IO_EISCONN' type='enum'/> - <exports symbol='XML_RNGP_VALUE_EMPTY' type='enum'/> - <exports symbol='XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI' type='enum'/> - <exports symbol='XML_SCHEMAP_ELEM_NONAME_NOREF' type='enum'/> - <exports symbol='XML_CHECK_NOT_DTD' type='enum'/> - <exports symbol='XML_SCHEMAP_S4S_ATTR_MISSING' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_IMPORT' type='enum'/> - <exports symbol='XML_SCHEMAV_VALUE' type='enum'/> - <exports symbol='XML_XPATH_UNKNOWN_FUNC_ERROR' type='enum'/> - <exports symbol='XML_ERR_DOCUMENT_START' type='enum'/> - <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_TEXT' type='enum'/> - <exports symbol='XML_SCHEMAP_AG_PROPS_CORRECT' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_IMPORT_2_1' type='enum'/> - <exports symbol='XML_DTD_NOT_STANDALONE' type='enum'/> - <exports symbol='XML_HTTP_USE_IP' type='enum'/> - <exports symbol='XML_ERR_XMLDECL_NOT_STARTED' type='enum'/> - <exports symbol='XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING' type='enum'/> - <exports symbol='XML_SCHEMAV_ELEMENT_CONTENT' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_IMPORT_2' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD' type='enum'/> - <exports symbol='XML_ERR_LT_IN_ATTRIBUTE' type='enum'/> - <exports symbol='XML_XINCLUDE_ENTITY_DEF_MISMATCH' type='enum'/> - <exports symbol='XML_SAVE_NOT_UTF8' type='enum'/> - <exports symbol='XML_ERR_GT_REQUIRED' type='enum'/> - <exports symbol='XML_XPTR_EXTRA_OBJECTS' type='enum'/> - <exports symbol='XML_SCHEMAP_INVALID_ATTR_USE' type='enum'/> - <exports symbol='XML_IO_UNKNOWN' type='enum'/> - <exports symbol='XML_RNGP_INTERLEAVE_EMPTY' type='enum'/> - <exports symbol='XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION' type='enum'/> - <exports symbol='XML_IO_ECHILD' type='enum'/> - <exports symbol='XML_RNGP_NAME_MISSING' type='enum'/> - <exports symbol='XML_ERR_CONDSEC_NOT_STARTED' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_SIMPLE_TYPE_2' type='enum'/> - <exports symbol='XML_IO_EINTR' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_SIMPLE_TYPE_1' type='enum'/> - <exports symbol='XML_RNGP_XMLNS_NAME' type='enum'/> - <exports symbol='XML_RNGP_ATTRIBUTE_NOOP' type='enum'/> - <exports symbol='XML_SCHEMAP_REDEFINED_GROUP' type='enum'/> - <exports symbol='XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI' type='enum'/> - <exports symbol='XML_ERR_CHARREF_IN_EPILOG' type='enum'/> - <exports symbol='XML_DTD_ID_SUBSET' type='enum'/> - <exports symbol='XML_SCHEMAP_FAILED_BUILD_IMPORT' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD' type='enum'/> - <exports symbol='XML_XPTR_CHILDSEQ_START' type='enum'/> - <exports symbol='XML_ERR_EXT_SUBSET_NOT_FINISHED' type='enum'/> - <exports symbol='XML_FROM_DTD' type='enum'/> - <exports symbol='XML_CHECK_NOT_ATTR' type='enum'/> - <exports symbol='XML_DTD_ATTRIBUTE_DEFAULT' type='enum'/> - <exports symbol='XML_FROM_MODULE' type='enum'/> - <exports symbol='XML_SCHEMAV_EXTRACONTENT' type='enum'/> - <exports symbol='XML_RNGP_ELEM_CONTENT_EMPTY' type='enum'/> - <exports symbol='XML_SCHEMAP_WARN_UNLOCATED_SCHEMA' type='enum'/> - <exports symbol='XML_IO_EMLINK' type='enum'/> - <exports symbol='XML_CHECK_X' type='enum'/> - <exports symbol='XML_RNGP_ANYNAME_ATTR_ANCESTOR' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_3_1' type='enum'/> - <exports symbol='XML_ERR_PI_NOT_STARTED' type='enum'/> - <exports symbol='XML_RNGP_START_CONTENT' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_3_2' type='enum'/> - <exports symbol='XML_RNGP_GROUP_ATTR_CONFLICT' type='enum'/> - <exports symbol='XML_RNGP_EMPTY' type='enum'/> - <exports symbol='XML_ERR_DOCUMENT_EMPTY' type='enum'/> - <exports symbol='XML_XINCLUDE_RECURSION' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_RESOLVE' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_FACET_VALID' type='enum'/> - <exports symbol='XML_SCHEMAP_RESTRICTION_NONAME_NOREF' type='enum'/> - <exports symbol='XML_I18N_NO_OUTPUT' type='enum'/> - <exports symbol='XML_CHECK_FOUND_ATTRIBUTE' type='enum'/> - <exports symbol='XML_ERR_STANDALONE_VALUE' type='enum'/> - <exports symbol='XML_SCHEMAP_REDEFINED_ATTR' type='enum'/> - <exports symbol='XML_ERR_ENTITY_LOOP' type='enum'/> - <exports symbol='XML_IO_EINPROGRESS' type='enum'/> - <exports symbol='XML_SCHEMAP_REDEFINED_NOTATION' type='enum'/> - <exports symbol='XML_IO_EFAULT' type='enum'/> - <exports symbol='XML_HTML_STRUCURE_ERROR' type='enum'/> - <exports symbol='XML_DTD_INVALID_DEFAULT' type='enum'/> - <exports symbol='XML_DTD_EMPTY_NOTATION' type='enum'/> - <exports symbol='XML_RNGP_ELEMENT_EMPTY' type='enum'/> - <exports symbol='XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED' type='enum'/> - <exports symbol='XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI' type='enum'/> - <exports symbol='XML_RNGP_INVALID_VALUE' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_1_2' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_1_1' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD' type='enum'/> - <exports symbol='XML_ERR_PEREF_AT_EOF' type='enum'/> - <exports symbol='XML_IO_LOAD_ERROR' type='enum'/> - <exports symbol='XML_RNGP_PAT_START_LIST' type='enum'/> - <exports symbol='XML_ERR_LT_REQUIRED' type='enum'/> - <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2' type='enum'/> - <exports symbol='XML_SCHEMAP_AU_PROPS_CORRECT_2' type='enum'/> - <exports symbol='XML_ERR_ATTLIST_NOT_STARTED' type='enum'/> - <exports symbol='XML_ERR_PCDATA_REQUIRED' type='enum'/> - <exports symbol='XML_SCHEMAV_INTERNAL' type='enum'/> - <exports symbol='XML_ERR_STRING_NOT_CLOSED' type='enum'/> - <exports symbol='XML_ERR_ENTITYREF_IN_DTD' type='enum'/> - <exports symbol='XML_XPATH_VARIABLE_REF_ERROR' type='enum'/> - <exports symbol='XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME' type='enum'/> - <exports symbol='XML_IO_ECANCELED' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1' type='enum'/> - <exports symbol='XML_SCHEMAV_NOTSIMPLE' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID' type='enum'/> - <exports symbol='XML_IO_EADDRINUSE' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_LIST_CHILD' type='enum'/> - <exports symbol='XML_DTD_UNKNOWN_ID' type='enum'/> - <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2' type='enum'/> - <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3' type='enum'/> - <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1' type='enum'/> - <exports symbol='XML_IO_EDOM' type='enum'/> - <exports symbol='XML_CHECK_NOT_ELEM_DECL' type='enum'/> - <exports symbol='XML_RNGP_DEFINE_CREATE_FAILED' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_ELEMENT_2_2' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_ELEMENT_2_1' type='enum'/> - <exports symbol='XML_RNGP_INVALID_URI' type='enum'/> - <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_LIST' type='enum'/> - <exports symbol='XML_RNGP_EXCEPT_NO_CONTENT' type='enum'/> - <exports symbol='XML_RNGP_EXTERNALREF_EMTPY' type='enum'/> - <exports symbol='XML_ERR_SPACE_REQUIRED' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_MAXLENGTH_VALID' type='enum'/> - <exports symbol='XML_DTD_DIFFERENT_PREFIX' type='enum'/> - <exports symbol='XML_SCHEMAV_NOTDETERMINIST' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD' type='enum'/> - <exports symbol='XML_SCHEMAV_MISSING' type='enum'/> - <exports symbol='XML_RNGP_GRAMMAR_CONTENT' type='enum'/> - <exports symbol='XML_XINCLUDE_XPTR_FAILED' type='enum'/> - <exports symbol='XML_FROM_FTP' type='enum'/> - <exports symbol='XML_RNGP_PARENTREF_CREATE_FAILED' type='enum'/> - <exports symbol='XML_ERR_RESERVED_XML_NAME' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_IMPORT_3_2' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_IMPORT_3_1' type='enum'/> - <exports symbol='XML_IO_EBADMSG' type='enum'/> - <exports symbol='XML_XPTR_RESOURCE_ERROR' type='enum'/> - <exports symbol='XML_RNGP_ATTR_CONFLICT' type='enum'/> - <exports symbol='XML_DTD_ELEM_REDEFINED' type='enum'/> - <exports symbol='XML_XINCLUDE_UNKNOWN_ENCODING' type='enum'/> - <exports symbol='XML_CATALOG_PREFER_VALUE' type='enum'/> - <exports symbol='XML_ERR_PEREF_SEMICOL_MISSING' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_IMPORT_1_1' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_IMPORT_1_2' type='enum'/> - <exports symbol='XML_SCHEMAP_TYPE_AND_SUBTYPE' type='enum'/> - <exports symbol='XML_SCHEMAP_NO_XMLNS' type='enum'/> - <exports symbol='XML_IO_ENOTDIR' type='enum'/> - <exports symbol='XML_SAVE_CHAR_INVALID' type='enum'/> - <exports symbol='XML_ERR_ENTITYREF_NO_NAME' type='enum'/> - <exports symbol='XML_DTD_ID_FIXED' type='enum'/> - <exports symbol='XML_SCHEMAP_A_PROPS_CORRECT_3' type='enum'/> - <exports symbol='XML_SCHEMAP_A_PROPS_CORRECT_2' type='enum'/> - <exports symbol='XML_WAR_NS_COLUMN' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_VALID_DEFAULT_2_1' type='enum'/> - <exports symbol='XML_ERR_EXTRA_CONTENT' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD' type='enum'/> - <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_GROUP' type='enum'/> - <exports symbol='XML_ERR_LITERAL_NOT_STARTED' type='enum'/> - <exports symbol='XML_SCHEMAP_INVALID_REF_AND_SUBTYPE' type='enum'/> - <exports symbol='XML_RNGP_ELEM_TEXT_CONFLICT' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_TYPE_1' type='enum'/> - <exports symbol='XML_XPATH_INVALID_CHAR_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3' type='enum'/> - <exports symbol='XML_CHECK_NO_DICT' type='enum'/> - <exports symbol='XML_XINCLUDE_XPTR_RESULT' type='enum'/> - <exports symbol='XML_IO_ENXIO' type='enum'/> - <exports symbol='XML_XINCLUDE_FRAGMENT_ID' type='enum'/> - <exports symbol='XML_FROM_HTTP' type='enum'/> - <exports symbol='XML_DTD_NOTATION_REDEFINED' type='enum'/> - <exports symbol='XML_WAR_LANG_VALUE' type='enum'/> - <exports symbol='XML_SCHEMAP_AU_PROPS_CORRECT' type='enum'/> - <exports symbol='XML_ERR_SEPARATOR_REQUIRED' type='enum'/> - <exports symbol='XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED' type='enum'/> - <exports symbol='XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE' type='enum'/> - <exports symbol='XML_RNGP_ATTRIBUTE_CONTENT' type='enum'/> - <exports symbol='XML_DTD_XMLID_TYPE' type='enum'/> - <exports symbol='XML_RNGP_INTERLEAVE_ADD' type='enum'/> - <exports symbol='XML_DTD_ATTRIBUTE_REDEFINED' type='enum'/> - <exports symbol='XML_RNGP_UNKNOWN_ATTRIBUTE' type='enum'/> - <exports symbol='XML_ERR_UNDECLARED_ENTITY' type='enum'/> - <exports symbol='XML_ERR_PUBID_REQUIRED' type='enum'/> - <exports symbol='XML_IO_ENOTSOCK' type='enum'/> - <exports symbol='XML_RNGP_PAT_START_GROUP' type='enum'/> - <exports symbol='XML_RNGP_NOTALLOWED_NOT_EMPTY' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ATTRIBUTE_4' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ATTRIBUTE_3' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ATTRIBUTE_2' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ATTRIBUTE_1' type='enum'/> - <exports symbol='XML_SCHEMAP_PREFIX_UNDEFINED' type='enum'/> - <exports symbol='XML_RNGP_PAT_ATTR_ELEM' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_4_3' type='enum'/> - <exports symbol='XML_FTP_ACCNT' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_4_1' type='enum'/> - <exports symbol='XML_RNGP_PAT_START_DATA' type='enum'/> - <exports symbol='XML_IO_ENOENT' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2' type='enum'/> - <exports symbol='XML_FROM_C14N' type='enum'/> - <exports symbol='XML_IO_EIO' type='enum'/> - <exports symbol='XML_DTD_NOT_PCDATA' type='enum'/> - <exports symbol='XML_SCHEMAP_INVALID_ATTR_COMBINATION' type='enum'/> - <exports symbol='XML_RNGP_PARAM_FORBIDDEN' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD' type='enum'/> - <exports symbol='XML_FROM_WRITER' type='enum'/> - <exports symbol='XML_ERR_UNSUPPORTED_ENCODING' type='enum'/> - <exports symbol='XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME' type='enum'/> - <exports symbol='XML_ERR_ENTITYREF_IN_PROLOG' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_IDC' type='enum'/> - <exports symbol='XML_IO_ENOTTY' type='enum'/> - <exports symbol='XML_SCHEMAP_WARN_SKIP_SCHEMA' type='enum'/> - <exports symbol='XML_DTD_UNKNOWN_NOTATION' type='enum'/> - <exports symbol='XML_FROM_DATATYPE' type='enum'/> - <exports symbol='XML_ERR_WARNING' type='enum'/> - <exports symbol='XML_SCHEMAP_ATTRFORMDEFAULT_VALUE' type='enum'/> - <exports symbol='XML_IO_EISDIR' type='enum'/> - <exports symbol='XML_XINCLUDE_MULTIPLE_ROOT' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_UNION_CHILD' type='enum'/> - <exports symbol='XML_XPATH_MEMORY_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAP_NOROOT' type='enum'/> - <exports symbol='XML_SCHEMAP_WARN_ATTR_REDECL_PROH' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_3_2_1' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_3_2_2' type='enum'/> - <exports symbol='XML_XPATH_UNCLOSED_ERROR' type='enum'/> - <exports symbol='XML_CHECK_FOUND_NOTATION' type='enum'/> - <exports symbol='XML_CHECK_NO_NEXT' type='enum'/> - <exports symbol='XML_CHECK_NOT_ATTR_DECL' type='enum'/> - <exports symbol='XML_CHECK_NO_PARENT' type='enum'/> - <exports symbol='XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_TOTALDIGITS_VALID' type='enum'/> - <exports symbol='XML_IO_ENOLCK' type='enum'/> - <exports symbol='XML_XINCLUDE_DEPRECATED_NS' type='enum'/> - <exports symbol='XML_RNGP_CHOICE_EMPTY' type='enum'/> - <exports symbol='XML_ERR_LITERAL_NOT_FINISHED' type='enum'/> - <exports symbol='XML_ERR_ENTITYREF_SEMICOL_MISSING' type='enum'/> - <exports symbol='XML_DTD_MULTIPLE_ID' type='enum'/> - <exports symbol='XML_FROM_XPATH' type='enum'/> - <exports symbol='XML_TREE_INVALID_DEC' type='enum'/> - <exports symbol='XML_SCHEMAP_EXTENSION_NO_BASE' type='enum'/> - <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_5' type='enum'/> - <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_4' type='enum'/> - <exports symbol='XML_CHECK_FOUND_DOCTYPE' type='enum'/> - <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_3' type='enum'/> - <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_2' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP' type='enum'/> - <exports symbol='XML_SCHEMAP_NO_XSI' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_SIMPLE_TYPE_3' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_1' type='enum'/> - <exports symbol='XML_CHECK_NO_NAME' type='enum'/> - <exports symbol='XML_ERR_CONDSEC_NOT_FINISHED' type='enum'/> - <exports symbol='XML_CHECK_FOUND_PI' type='enum'/> - <exports symbol='XML_ERR_EQUAL_REQUIRED' type='enum'/> - <exports symbol='XML_SCHEMAP_INVALID_WHITE_SPACE' type='enum'/> - <exports symbol='XML_DTD_UNKNOWN_ATTRIBUTE' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_5_1_2' type='enum'/> - <exports symbol='XML_RNGP_INTERLEAVE_CREATE_FAILED' type='enum'/> - <exports symbol='XML_IO_EAGAIN' type='enum'/> - <exports symbol='XML_ERR_NOTATION_NOT_STARTED' type='enum'/> - <exports symbol='XML_DTD_ENTITY_TYPE' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_SIMPLE_TYPE_4' type='enum'/> - <exports symbol='XML_FTP_URL_SYNTAX' type='enum'/> - <exports symbol='XML_ERR_NONE' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD' type='enum'/> - <exports symbol='XML_XPATH_NUMBER_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_FACET_TYPE' type='enum'/> - <exports symbol='XML_RNGP_PAT_START_ONEMORE' type='enum'/> - <exports symbol='XML_ERR_CONDSEC_INVALID' type='enum'/> - <exports symbol='XML_XINCLUDE_INCLUDE_IN_INCLUDE' type='enum'/> - <exports symbol='XML_ERR_ENTITYREF_IN_EPILOG' type='enum'/> - <exports symbol='XML_RNGP_GRAMMAR_MISSING' type='enum'/> - <exports symbol='XML_RNGP_GRAMMAR_NO_START' type='enum'/> - <exports symbol='XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER' type='enum'/> - <exports symbol='XML_RNGP_PAT_LIST_INTERLEAVE' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_ELEMENT_3' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_REF' type='enum'/> - <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_EMPTY' type='enum'/> - <exports symbol='XML_FROM_I18N' type='enum'/> - <exports symbol='XML_DTD_MISSING_ATTRIBUTE' type='enum'/> - <exports symbol='XML_IO_EMFILE' type='enum'/> - <exports symbol='XML_RNGP_EMPTY_NOT_EMPTY' type='enum'/> - <exports symbol='XML_ERR_VERSION_MISSING' type='enum'/> - <exports symbol='XML_IO_NO_INPUT' type='enum'/> - <exports symbol='XML_NS_ERR_UNDEFINED_NAMESPACE' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_MINLENGTH_VALID' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_WILDCARD' type='enum'/> - <exports symbol='XML_IO_WRITE' type='enum'/> - <exports symbol='XML_ERR_ENTITY_PE_INTERNAL' type='enum'/> - <exports symbol='XML_DTD_XMLID_VALUE' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_DERIVED_OK_2_2' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_DERIVED_OK_2_1' type='enum'/> - <exports symbol='XML_CHECK_NOT_NS_DECL' type='enum'/> - <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_ELEM' type='enum'/> - <exports symbol='XML_IO_NETWORK_ATTEMPT' type='enum'/> - <exports symbol='XML_MODULE_CLOSE' type='enum'/> - <exports symbol='XML_RNGP_PAT_START_EMPTY' type='enum'/> - <exports symbol='XML_ERR_ATTLIST_NOT_FINISHED' type='enum'/> - <exports symbol='XML_XINCLUDE_TEXT_FRAGMENT' type='enum'/> - <exports symbol='XML_C14N_RELATIVE_NAMESPACE' type='enum'/> - <exports symbol='XML_SCHEMAP_FAILED_LOAD' type='enum'/> - <exports symbol='XML_ERR_ATTRIBUTE_WITHOUT_VALUE' type='enum'/> - <exports symbol='XML_XPTR_SYNTAX_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_TYPE' type='enum'/> - <exports symbol='XML_CHECK_WRONG_DOC' type='enum'/> - <exports symbol='XML_NS_ERR_XML_NAMESPACE' type='enum'/> - <exports symbol='XML_ERR_DOCTYPE_NOT_FINISHED' type='enum'/> - <exports symbol='XML_XINCLUDE_PARSE_VALUE' type='enum'/> - <exports symbol='XML_RNGP_NSNAME_NO_NS' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_IMPORT_2_2' type='enum'/> - <exports symbol='XML_CHECK_FOUND_ELEMENT' type='enum'/> - <exports symbol='XML_RNGP_PARENTREF_NAME_INVALID' type='enum'/> - <exports symbol='XML_NS_ERR_QNAME' type='enum'/> - <exports symbol='XML_DTD_NOTATION_VALUE' type='enum'/> - <exports symbol='XML_SCHEMAP_ST_PROPS_CORRECT_2' type='enum'/> - <exports symbol='XML_SCHEMAP_ST_PROPS_CORRECT_3' type='enum'/> - <exports symbol='XML_I18N_NO_NAME' type='enum'/> - <exports symbol='XML_SCHEMAP_ST_PROPS_CORRECT_1' type='enum'/> - <exports symbol='XML_RNGP_EXCEPT_MISSING' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_CT_EXTENDS_1_2' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_ALL_CHILD' type='enum'/> - <exports symbol='XML_DTD_MIXED_CORRUPT' type='enum'/> - <exports symbol='XML_ERR_ENTITY_BOUNDARY' type='enum'/> - <exports symbol='XML_SCHEMAP_ELEMFORMDEFAULT_VALUE' type='enum'/> - <exports symbol='XML_I18N_EXCESS_HANDLER' type='enum'/> - <exports symbol='XML_RNGP_DATA_CONTENT' type='enum'/> - <exports symbol='XML_ERR_STRING_NOT_STARTED' type='enum'/> - <exports symbol='XML_RNGP_EXCEPT_MULTIPLE' type='enum'/> - <exports symbol='XML_IO_EDEADLK' type='enum'/> - <exports symbol='XML_ERR_ATTRIBUTE_NOT_FINISHED' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE' type='enum'/> - <exports symbol='XML_RNGP_GRAMMAR_EMPTY' type='enum'/> - <exports symbol='XML_IO_ENAMETOOLONG' type='enum'/> - <exports symbol='XML_RNGP_EXTERNAL_REF_FAILURE' type='enum'/> - <exports symbol='XML_RNGP_PAT_START_TEXT' type='enum'/> - <exports symbol='XML_CHECK_NO_DOC' type='enum'/> - <exports symbol='XML_DTD_INVALID_CHILD' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_PATTERN_VALID' type='enum'/> - <exports symbol='XML_RNGP_TYPE_MISSING' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1' type='enum'/> - <exports symbol='XML_ERR_TAG_NAME_MISMATCH' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3' type='enum'/> - <exports symbol='XML_ERR_ENCODING_NAME' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5' type='enum'/> - <exports symbol='XML_SCHEMAV_MISC' type='enum'/> - <exports symbol='XML_IO_ECONNREFUSED' type='enum'/> - <exports symbol='XML_ERR_XMLDECL_NOT_FINISHED' type='enum'/> - <exports symbol='XML_SCHEMAP_P_PROPS_CORRECT_1' type='enum'/> - <exports symbol='XML_CHECK_FOUND_ENTITYREF' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_5_2_2_1' type='enum'/> - <exports symbol='XML_XINCLUDE_BUILD_FAILED' type='enum'/> - <exports symbol='XML_ERR_PEREF_NO_NAME' type='enum'/> - <exports symbol='XML_ERR_ENTITYREF_AT_EOF' type='enum'/> - <exports symbol='XML_SCHEMAP_NOATTR_NOREF' type='enum'/> - <exports symbol='XML_RNGP_ATTRIBUTE_CHILDREN' type='enum'/> - <exports symbol='XML_XPATH_UNDEF_PREFIX_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_1' type='enum'/> - <exports symbol='XML_SAVE_NO_DOCTYPE' type='enum'/> - <exports symbol='XML_ERR_PEREF_IN_EPILOG' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_2' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_4' type='enum'/> - <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_4' type='enum'/> - <exports symbol='XML_ERR_URI_FRAGMENT' type='enum'/> - <exports symbol='XML_IO_ESPIPE' type='enum'/> - <exports symbol='XML_DTD_NO_DOC' type='enum'/> - <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_1' type='enum'/> - <exports symbol='XML_SCHEMAP_NOT_SCHEMA' type='enum'/> - <exports symbol='XML_FROM_SCHEMASV' type='enum'/> - <exports symbol='XML_FROM_SCHEMASP' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_3_1' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_VALID_DEFAULT_1' type='enum'/> - <exports symbol='XML_ERR_MIXED_NOT_FINISHED' type='enum'/> - <exports symbol='XML_DTD_STANDALONE_WHITE_SPACE' type='enum'/> - <exports symbol='XML_SCHEMAP_INVALID_FACET' type='enum'/> - <exports symbol='XML_IO_ENOTEMPTY' type='enum'/> - <exports symbol='XML_SCHEMAV_WRONGELEM' type='enum'/> - <exports symbol='XML_RNGP_TYPE_NOT_FOUND' type='enum'/> - <exports symbol='XML_IO_BUFFER_FULL' type='enum'/> - <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_6' type='enum'/> - <exports symbol='XML_DTD_CONTENT_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_MEMBER_TYPE' type='enum'/> - <exports symbol='XML_SCHEMAV_NOROOT' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_6' type='enum'/> - <exports symbol='XML_SCHEMAP_REDEFINED_TYPE' type='enum'/> - <exports symbol='XML_ERR_CDATA_NOT_FINISHED' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_TYPE_3_1_2' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_TYPE_3_1_1' type='enum'/> - <exports symbol='XML_CHECK_NS_ANCESTOR' type='enum'/> - <exports symbol='XML_ERR_DOCUMENT_END' type='enum'/> - <exports symbol='XML_ERR_ENTITY_NOT_STARTED' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ENUMERATION_VALID' type='enum'/> - <exports symbol='XML_ERR_CHARREF_IN_PROLOG' type='enum'/> - <exports symbol='XML_RNGP_INVALID_DEFINE_NAME' type='enum'/> - <exports symbol='XML_SAVE_UNKNOWN_ENCODING' type='enum'/> - <exports symbol='XML_ERR_CONDSEC_INVALID_KEYWORD' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_7' type='enum'/> - <exports symbol='XML_SCHEMAV_NOTYPE' type='enum'/> - <exports symbol='XML_ERR_NO_MEMORY' type='enum'/> - <exports symbol='XML_FROM_IO' type='enum'/> - <exports symbol='XML_HTML_UNKNOWN_TAG' type='enum'/> - <exports symbol='XML_SCHEMAP_INVALID_ATTR_NAME' type='enum'/> - <exports symbol='XML_RNGP_PAT_START_ATTR' type='enum'/> - <exports symbol='XML_CHECK_WRONG_NAME' type='enum'/> - <exports symbol='XML_SCHEMAV_NOTEMPTY' type='enum'/> - <exports symbol='XML_ERR_NMTOKEN_REQUIRED' type='enum'/> - <exports symbol='XML_IO_EROFS' type='enum'/> - <exports symbol='XML_IO_EXDEV' type='enum'/> - <exports symbol='XML_XINCLUDE_NO_FALLBACK' type='enum'/> - <exports symbol='XML_RNGP_URI_FRAGMENT' type='enum'/> - <exports symbol='XML_FROM_MEMORY' type='enum'/> - <exports symbol='XML_ERR_MISSING_ENCODING' type='enum'/> - <exports symbol='XML_RNGP_ELEMENT_CONTENT' type='enum'/> - <exports symbol='XML_RNGP_UNKNOWN_TYPE_LIB' type='enum'/> - <exports symbol='XML_SCHEMAP_NOT_DETERMINISTIC' type='enum'/> - <exports symbol='XML_XPATH_EXPRESSION_OK' type='enum'/> - <exports symbol='XML_HTTP_UNKNOWN_HOST' type='enum'/> - <exports symbol='XML_ERR_ENTITY_NOT_FINISHED' type='enum'/> - <exports symbol='XML_DTD_NO_DTD' type='enum'/> - <exports symbol='XML_RNGP_PAT_ONEMORE_GROUP_ATTR' type='enum'/> - <exports symbol='XML_ERR_VALUE_REQUIRED' type='enum'/> - <exports symbol='XML_RNGP_PAT_LIST_TEXT' type='enum'/> - <exports symbol='XML_RNGP_URI_NOT_ABSOLUTE' type='enum'/> - <exports symbol='XML_SCHEMAP_UNION_NOT_EXPRESSIBLE' type='enum'/> - <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_ATTR' type='enum'/> - <exports symbol='XML_FTP_PASV_ANSWER' type='enum'/> - <exports symbol='XML_SCHEMAP_INVALID_BOOLEAN' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_4_2' type='enum'/> - <exports symbol='XML_DTD_ELEM_DEFAULT_NAMESPACE' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_4' type='enum'/> - <exports symbol='XML_SCHEMAP_REGEXP_INVALID' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_1' type='enum'/> - <exports symbol='XML_C14N_CREATE_STACK' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_5_2_1' type='enum'/> - <exports symbol='XML_FROM_RELAXNGV' type='enum'/> - <exports symbol='XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME' type='enum'/> - <exports symbol='XML_CHECK_ENTITY_TYPE' type='enum'/> - <exports symbol='XML_SCHEMAV_CONSTRUCT' type='enum'/> - <exports symbol='XML_RNGP_EXTERNALREF_RECURSE' type='enum'/> - <exports symbol='XML_RNGP_CHOICE_CONTENT' type='enum'/> - <exports symbol='XML_RNGP_UNKNOWN_COMBINE' type='enum'/> - <exports symbol='XML_RNGP_START_EMPTY' type='enum'/> - <exports symbol='XML_IO_ENCODER' type='enum'/> - <exports symbol='XML_WAR_NS_URI' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES' type='enum'/> - <exports symbol='XML_SCHEMAP_ATTRGRP_NONAME_NOREF' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1' type='enum'/> - <exports symbol='XML_ERR_ENTITY_IS_EXTERNAL' type='enum'/> - <exports symbol='XML_WAR_UNDECLARED_ENTITY' type='enum'/> - <exports symbol='XML_SCHEMAV_ATTRUNKNOWN' type='enum'/> - <exports symbol='XML_IO_ENODEV' type='enum'/> - <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_REF' type='enum'/> - <exports symbol='XML_FROM_PARSER' type='enum'/> - <exports symbol='XML_C14N_CREATE_CTXT' type='enum'/> - <exports symbol='XML_XINCLUDE_TEXT_DOCUMENT' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_PREFIX' type='enum'/> - <exports symbol='XML_XINCLUDE_FALLBACKS_IN_INCLUDE' type='enum'/> - <exports symbol='XML_XPATH_INVALID_TYPE' type='enum'/> - <exports symbol='XML_CHECK_NS_SCOPE' type='enum'/> - <exports symbol='XML_IO_FLUSH' type='enum'/> - <exports symbol='XML_CATALOG_ENTRY_BROKEN' type='enum'/> - <exports symbol='XML_XPATH_INVALID_CTXT_POSITION' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_LENGTH_VALID' type='enum'/> - <exports symbol='XML_DTD_STANDALONE_DEFAULTED' type='enum'/> - <exports symbol='XML_DTD_UNKNOWN_ELEM' type='enum'/> - <exports symbol='XML_WAR_SPACE_VALUE' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_FACET_CHILD' type='enum'/> - <exports symbol='XML_SCHEMAP_NOTATION_NO_NAME' type='enum'/> - <exports symbol='XML_XPATH_START_LITERAL_ERROR' type='enum'/> - <exports symbol='XML_ERR_ELEMCONTENT_NOT_STARTED' type='enum'/> - <exports symbol='XML_RNGP_INCLUDE_FAILURE' type='enum'/> - <exports symbol='XML_ERR_COMMENT_NOT_FINISHED' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1' type='enum'/> - <exports symbol='XML_IO_EMSGSIZE' type='enum'/> - <exports symbol='XML_FROM_CATALOG' type='enum'/> - <exports symbol='XML_SCHEMAV_ATTRINVALID' type='enum'/> - <exports symbol='XML_NS_ERR_EMPTY' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_2' type='enum'/> - <exports symbol='XML_FROM_HTML' type='enum'/> - <exports symbol='XML_SCHEMAP_INVALID_MAXOCCURS' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD' type='enum'/> - <exports symbol='XML_RNGP_ELEMENT_NAME' type='enum'/> - <exports symbol='XML_RNGP_PAT_START_VALUE' type='enum'/> - <exports symbol='XML_XPATH_INVALID_ARITY' type='enum'/> - <exports symbol='XML_RNGP_ERROR_TYPE_LIB' type='enum'/> - <exports symbol='XML_XPTR_EVAL_FAILED' type='enum'/> - <exports symbol='XML_DTD_NO_ROOT' type='enum'/> - <exports symbol='XML_SCHEMAP_IMPORT_REDEFINE_NSNAME' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_ATTR_CHILD' type='enum'/> - <exports symbol='XML_ERR_UNKNOWN_ENCODING' type='enum'/> - <exports symbol='XML_RNGP_REF_NO_NAME' type='enum'/> - <exports symbol='XML_C14N_UNKNOW_NODE' type='enum'/> - <exports symbol='XML_SCHEMAP_REF_AND_SUBTYPE' type='enum'/> - <exports symbol='XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR' type='enum'/> - <exports symbol='XML_C14N_INVALID_NODE' type='enum'/> - <exports symbol='XML_RNGP_TEXT_EXPECTED' type='enum'/> - <exports symbol='XML_XPATH_UNDEF_VARIABLE_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAV_NOROLLBACK' type='enum'/> - <exports symbol='XML_SCHEMAV_FACET' type='enum'/> - <exports symbol='XML_ERR_INVALID_DEC_CHARREF' type='enum'/> - <exports symbol='XML_RNGP_NEED_COMBINE' type='enum'/> - <exports symbol='XML_SCHEMAV_NOTTOPLEVEL' type='enum'/> - <exports symbol='XML_CATALOG_MISSING_ATTR' type='enum'/> - <exports symbol='XML_RNGP_PAT_LIST_LIST' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_TYPE_2' type='enum'/> - <exports symbol='XML_RNGP_EXCEPT_EMPTY' type='enum'/> - <exports symbol='XML_XPATH_UNFINISHED_LITERAL_ERROR' type='enum'/> - <exports symbol='XML_RNGP_INTERLEAVE_NO_CONTENT' type='enum'/> - <exports symbol='XML_ERR_INVALID_HEX_CHARREF' type='enum'/> - <exports symbol='XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF' type='enum'/> - <exports symbol='XML_ERR_CHARREF_IN_DTD' type='enum'/> - <exports symbol='XML_IO_ENFILE' type='enum'/> - <exports symbol='XML_ERR_ENTITY_IS_PARAMETER' type='enum'/> - <exports symbol='XML_I18N_CONV_FAILED' type='enum'/> - <exports symbol='XML_CHECK_WRONG_PARENT' type='enum'/> - <exports symbol='XML_RNGP_PARENTREF_NO_NAME' type='enum'/> - <exports symbol='XML_IO_EPERM' type='enum'/> - <exports symbol='XML_IO_ENETUNREACH' type='enum'/> - <exports symbol='XML_ERR_CHARREF_AT_EOF' type='enum'/> - <exports symbol='XML_IO_ENOMEM' type='enum'/> - <exports symbol='XML_IO_ENOSPC' type='enum'/> - <exports symbol='XML_FROM_NONE' type='enum'/> - <exports symbol='XML_RNGP_TYPE_VALUE' type='enum'/> - <exports symbol='XML_FROM_REGEXP' type='enum'/> - <exports symbol='XML_RNGP_DEF_CHOICE_AND_INTERLEAVE' type='enum'/> - <exports symbol='XML_TREE_UNTERMINATED_ENTITY' type='enum'/> - <exports symbol='XML_ERR_URI_REQUIRED' type='enum'/> - <exports symbol='XML_FROM_TREE' type='enum'/> - <exports symbol='XML_ERR_EXT_ENTITY_STANDALONE' type='enum'/> - <exports symbol='XML_TREE_INVALID_HEX' type='enum'/> - <exports symbol='XML_C14N_REQUIRES_UTF8' type='enum'/> - <exports symbol='XML_ERR_ENTITY_PROCESSING' type='enum'/> - <exports symbol='XML_FROM_XINCLUDE' type='enum'/> - <exports symbol='XML_SCHEMAP_CVC_SIMPLE_TYPE' type='enum'/> - <exports symbol='XML_IO_EINVAL' type='enum'/> - <exports symbol='XML_CHECK_NOT_NCNAME' type='enum'/> - <exports symbol='XML_RNGP_ELEMENT_NO_CONTENT' type='enum'/> - <exports symbol='XML_XINCLUDE_NO_HREF' type='enum'/> - <exports symbol='XML_XPATH_INVALID_OPERAND' type='enum'/> - <exports symbol='XML_IO_ENOEXEC' type='enum'/> - <exports symbol='XML_RNGP_PAT_LIST_REF' type='enum'/> - <exports symbol='XML_XINCLUDE_HREF_URI' type='enum'/> - <exports symbol='XML_SCHEMAP_FAILED_PARSE' type='enum'/> - <exports symbol='XML_RNGP_HREF_ERROR' type='enum'/> - <exports symbol='XML_ERR_ATTRIBUTE_NOT_STARTED' type='enum'/> - <exports symbol='XML_SCHEMAP_ATTR_NONAME_NOREF' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_ELEMENT_1' type='enum'/> - <exports symbol='XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE' type='enum'/> - <exports symbol='XML_MODULE_OPEN' type='enum'/> - <exports symbol='XML_ERR_ENTITY_CHAR_ERROR' type='enum'/> - <exports symbol='XML_DTD_UNKNOWN_ENTITY' type='enum'/> - <exports symbol='XML_RNGP_PARSE_ERROR' type='enum'/> - <exports symbol='XML_ERR_NOTATION_PROCESSING' type='enum'/> - <exports symbol='XML_RNGP_XML_NS' type='enum'/> - <exports symbol='XML_ERR_MISPLACED_CDATA_END' type='enum'/> - <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_ONEMORE' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_CT_EXTENDS_1_1' type='enum'/> - <exports symbol='XML_RNGP_REF_CREATE_FAILED' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_CT_EXTENDS_1_3' type='enum'/> - <exports symbol='XML_DTD_ROOT_NAME' type='enum'/> - <exports symbol='XML_RNGP_REF_NOT_EMPTY' type='enum'/> - <exports symbol='XML_CHECK_NO_HREF' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_CHOICE_CHILD' type='enum'/> - <exports symbol='XML_RNGP_ELEM_CONTENT_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAV_HAVEDEFAULT' type='enum'/> - <exports symbol='XML_I18N_NO_HANDLER' type='enum'/> - <exports symbol='XML_RNGP_MISSING_HREF' type='enum'/> - <exports symbol='XML_ERR_PI_NOT_FINISHED' type='enum'/> - <exports symbol='XML_FROM_RELAXNGP' type='enum'/> - <exports symbol='XML_FROM_VALID' type='enum'/> - <exports symbol='XML_SCHEMAP_S4S_ATTR_INVALID_VALUE' type='enum'/> - <exports symbol='XML_CHECK_FOUND_TEXT' type='enum'/> - <exports symbol='XML_ERR_NO_DTD' type='enum'/> - <exports symbol='XML_RNGP_START_CHOICE_AND_INTERLEAVE' type='enum'/> - <exports symbol='XML_FROM_XSLT' type='enum'/> - <exports symbol='XML_RNGP_PAT_LIST_ATTR' type='enum'/> - <exports symbol='XML_IO_EACCES' type='enum'/> - <exports symbol='XML_ERR_NOTATION_NOT_FINISHED' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2' type='enum'/> - <exports symbol='XML_SCHEMAV_INVALIDATTR' type='enum'/> - <exports symbol='XML_SCHEMAP_RECURSIVE' type='enum'/> - <exports symbol='XML_HTTP_URL_SYNTAX' type='enum'/> - <exports symbol='XML_SCHEMAP_GROUP_NONAME_NOREF' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4' type='enum'/> - <exports symbol='XML_SCHEMAP_S4S_ELEM_MISSING' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_5_1_1' type='enum'/> - <exports symbol='XML_CHECK_FOUND_FRAGMENT' type='enum'/> - <exports symbol='XML_DTD_LOAD_ERROR' type='enum'/> - <exports symbol='XML_CHECK_UNKNOWN_NODE' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_NOTATION_CHILD' type='enum'/> - <exports symbol='XML_SCHEMAP_C_PROPS_CORRECT' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_CT_1' type='enum'/> - <exports symbol='XML_RNGP_EMPTY_CONTENT' type='enum'/> - <exports symbol='XML_IO_EALREADY' type='enum'/> - <exports symbol='XML_IO_ERANGE' type='enum'/> - <exports symbol='XML_IO_ENOSYS' type='enum'/> - <exports symbol='XML_SCHEMAP_NOTHING_TO_PARSE' type='enum'/> - <exports symbol='XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1' type='enum'/> - <exports symbol='XML_XPATH_INVALID_CTXT_SIZE' type='enum'/> - <exports symbol='XML_CHECK_NO_ELEM' type='enum'/> - <exports symbol='XML_XPATH_EXPR_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI' type='enum'/> - <exports symbol='XML_RNGP_DEFINE_EMPTY' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2' type='enum'/> - <exports symbol='XML_CHECK_FOUND_ENTITY' type='enum'/> - <exports symbol='XML_CHECK_NAME_NOT_NULL' type='enum'/> - <exports symbol='XML_SCHEMAP_INVALID_MINOCCURS' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_1' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ALL_LIMITED' type='enum'/> - <exports symbol='XML_CHECK_' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID' type='enum'/> - <exports symbol='XML_IO_EPIPE' type='enum'/> - <exports symbol='XML_SCHEMAP_NOTYPE_NOREF' type='enum'/> - <exports symbol='XML_RNGP_ATTRIBUTE_EMPTY' type='enum'/> - <exports symbol='XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD' type='enum'/> - <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1' type='enum'/> - <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3' type='enum'/> - <exports symbol='XML_DTD_NOT_EMPTY' type='enum'/> - <exports symbol='XML_CHECK_NOT_ENTITY_DECL' type='enum'/> - <exports symbol='XML_RNGP_CREATE_FAILURE' type='enum'/> - <exports symbol='XML_IO_EBADF' type='enum'/> - <exports symbol='XML_RNGP_PREFIX_UNDEFINED' type='enum'/> - <exports symbol='XML_ERR_HYPHEN_IN_COMMENT' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE' type='enum'/> - <exports symbol='XML_RNGP_INCLUDE_EMPTY' type='enum'/> - <exports symbol='XML_RNGP_PARENTREF_NOT_EMPTY' type='enum'/> - <exports symbol='XML_SCHEMAP_FACET_NO_VALUE' type='enum'/> - <exports symbol='XML_XPTR_SUB_RESOURCE_ERROR' type='enum'/> - <exports symbol='XML_ERR_NOT_STANDALONE' type='enum'/> - <exports symbol='XML_RNGP_START_MISSING' type='enum'/> - <exports symbol='XML_DTD_NO_PREFIX' type='enum'/> - <exports symbol='XML_CATALOG_RECURSION' type='enum'/> - <exports symbol='XML_RNGP_UNKNOWN_CONSTRUCT' type='enum'/> - <exports symbol='XML_ERR_UNPARSED_ENTITY' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_IMPORT_CHILD' type='enum'/> - <exports symbol='XML_FTP_EPSV_ANSWER' type='enum'/> - <exports symbol='XML_CHECK_NOT_UTF8' type='enum'/> - <exports symbol='XML_ERR_FATAL' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_1' type='enum'/> - <exports symbol='XML_DTD_ID_REDEFINED' type='enum'/> - <exports symbol='XML_XPATH_ENCODING_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_INCLUDE' type='enum'/> - <exports symbol='XML_RNGP_NSNAME_ATTR_ANCESTOR' type='enum'/> - <exports symbol='XML_SCHEMAP_SRC_REDEFINE' type='enum'/> - <exports symbol='XML_RNGP_REF_CYCLE' type='enum'/> - <exports symbol='XML_RNGP_PAT_ATTR_ATTR' type='enum'/> - <exports symbol='XML_XPTR_UNKNOWN_SCHEME' type='enum'/> - <exports symbol='XML_SCHEMAP_INVALID_FACET_VALUE' type='enum'/> - <exports symbol='XML_FROM_CHECK' type='enum'/> - <exports symbol='XML_SCHEMAV_ELEMCONT' type='enum'/> - <exports symbol='XML_SCHEMAP_REF_AND_CONTENT' type='enum'/> - <exports symbol='XML_RNGP_PAT_START_INTERLEAVE' type='enum'/> - <exports symbol='XML_DTD_CONTENT_NOT_DETERMINIST' type='enum'/> - <exports symbol='XML_DTD_NO_ELEM_NAME' type='enum'/> - <exports symbol='XML_CHECK_NO_PREV' type='enum'/> - <exports symbol='XML_RNGP_VALUE_NO_CONTENT' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD' type='enum'/> - <exports symbol='XML_IO_EAFNOSUPPORT' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1' type='enum'/> - <exports symbol='XML_CATALOG_NOT_CATALOG' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4' type='enum'/> - <exports symbol='XML_IO_EFBIG' type='enum'/> - <exports symbol='XML_CHECK_FOUND_COMMENT' type='enum'/> - <exports symbol='XML_RNGP_REF_NAME_INVALID' type='enum'/> - <exports symbol='XML_ERR_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1' type='enum'/> - <exports symbol='XML_DTD_ELEM_NAMESPACE' type='enum'/> - <exports symbol='XML_CHECK_OUTSIDE_DICT' type='enum'/> - <exports symbol='XML_SCHEMAP_P_PROPS_CORRECT_2_1' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_5_2_2_2_2' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_ELT_5_2_2_2_1' type='enum'/> - <exports symbol='XML_SCHEMAP_P_PROPS_CORRECT_2_2' type='enum'/> - <exports symbol='XML_WAR_CATALOG_PI' type='enum'/> - <exports symbol='XML_REGEXP_COMPILE_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_MININCLUSIVE_VALID' type='enum'/> - <exports symbol='XML_SCHEMAV_ISABSTRACT' type='enum'/> - <exports symbol='XML_RNGP_DEFINE_MISSING' type='enum'/> - <exports symbol='XML_ERR_NS_DECL_ERROR' type='enum'/> - <exports symbol='XML_ERR_INTERNAL_ERROR' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1' type='enum'/> - <exports symbol='XML_ERR_ELEMCONTENT_NOT_FINISHED' type='enum'/> - <exports symbol='XML_FROM_NAMESPACE' type='enum'/> - <exports symbol='XML_IO_EBUSY' type='enum'/> - <exports symbol='XML_RNGP_INCLUDE_RECURSE' type='enum'/> - <exports symbol='XML_ERR_INVALID_URI' type='enum'/> - <exports symbol='XML_IO_ESRCH' type='enum'/> - <exports symbol='XML_FROM_XPOINTER' type='enum'/> - <exports symbol='XML_ERR_PEREF_IN_PROLOG' type='enum'/> - <exports symbol='XML_RNGP_TEXT_HAS_CHILD' type='enum'/> - <exports symbol='XML_SCHEMAV_NOTNILLABLE' type='enum'/> - <exports symbol='XML_SCHEMAP_ELEM_DEFAULT_FIXED' type='enum'/> - <exports symbol='XML_SCHEMAP_REDEFINED_ELEMENT' type='enum'/> - <exports symbol='XML_RNGP_REF_NO_DEF' type='enum'/> - <exports symbol='XML_ERR_NOT_WELL_BALANCED' type='enum'/> - <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_5' type='enum'/> - <exports symbol='XML_ERR_INVALID_CHARREF' type='enum'/> - <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_2' type='enum'/> - <exports symbol='XML_ERR_INVALID_CHAR' type='enum'/> - <exports symbol='XML_RNGP_FOREIGN_ELEMENT' type='enum'/> - <exports symbol='XML_SCHEMAP_DEF_AND_PREFIX' type='enum'/> - <exports symbol='XML_ERR_MIXED_NOT_STARTED' type='enum'/> - <exports symbol='XML_CHECK_FOUND_CDATA' type='enum'/> - <exports symbol='XML_SCHEMAP_INTERNAL' type='enum'/> - <exports symbol='XML_SCHEMAV_INVALIDELEM' type='enum'/> - <exports symbol='XML_ERR_INVALID_ENCODING' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_AU' type='enum'/> - <exports symbol='XML_CHECK_WRONG_NEXT' type='enum'/> - <exports symbol='XML_ERR_TAG_NOT_FINISHED' type='enum'/> - <exports symbol='XML_ERR_LTSLASH_REQUIRED' type='enum'/> - <exports symbol='XML_SCHEMAP_REDEFINED_ATTRGROUP' type='enum'/> - <exports symbol='XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH' type='enum'/> - <exports symbol='XML_ERR_PEREF_IN_INT_SUBSET' type='enum'/> - <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2' type='enum'/> - <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3' type='enum'/> - <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_BASE_TYPE' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_ELEM_CHILD' type='enum'/> - <exports symbol='XML_WAR_UNKNOWN_VERSION' type='enum'/> - <exports symbol='XML_DTD_CONTENT_MODEL' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1' type='enum'/> - <exports symbol='XML_ERR_OK' type='enum'/> - <exports symbol='XML_WAR_ENTITY_REDEFINED' type='enum'/> - <exports symbol='XML_ERR_ATTRIBUTE_REDEFINED' type='enum'/> - <exports symbol='XML_SCHEMAP_SIMPLETYPE_NONAME' type='enum'/> - <exports symbol='XML_SCHEMAP_UNKNOWN_GROUP_CHILD' type='enum'/> - <exports symbol='XML_IO_ENOTSUP' type='enum'/> - <exports symbol='XML_WAR_NS_URI_RELATIVE' type='enum'/> - <exports symbol='XML_NS_ERR_ATTRIBUTE_REDEFINED' type='enum'/> - <exports symbol='XML_ERR_NAME_REQUIRED' type='enum'/> - <exports symbol='XML_IO_ETIMEDOUT' type='enum'/> - <exports symbol='XML_SCHEMAP_INVALID_ENUM' type='enum'/> - <exports symbol='XML_RNGP_DEFINE_NAME_MISSING' type='enum'/> - <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2' type='enum'/> - <exports symbol='XML_RNGP_EMPTY_CONSTRUCT' type='enum'/> - <exports symbol='XML_RNGP_FORBIDDEN_ATTRIBUTE' type='enum'/> - <exports symbol='XML_FROM_OUTPUT' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1' type='enum'/> - <exports symbol='XML_CHECK_WRONG_PREV' type='enum'/> - <exports symbol='XML_IO_EEXIST' type='enum'/> - <exports symbol='XML_SCHEMAP_MG_PROPS_CORRECT_2' type='enum'/> - <exports symbol='XML_SCHEMAP_MG_PROPS_CORRECT_1' type='enum'/> - <exports symbol='XML_RNGP_PAT_LIST_ELEM' type='enum'/> - <exports symbol='XML_SCHEMAV_UNDECLAREDELEM' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3' type='enum'/> - <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_3' type='enum'/> - <exports symbol='XML_XINCLUDE_INVALID_CHAR' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4' type='enum'/> - <exports symbol='XML_XPATH_INVALID_PREDICATE_ERROR' type='enum'/> - <exports symbol='xmlErrorPtr' type='typedef'/> - <exports symbol='xmlErrorLevel' type='typedef'/> - <exports symbol='xmlParserErrors' type='typedef'/> - <exports symbol='xmlErrorDomain' type='typedef'/> - <exports symbol='xmlError' type='typedef'/> - <exports symbol='_xmlError' type='struct'/> - <exports symbol='xmlParserValidityError' type='function'/> - <exports symbol='xmlGenericErrorFunc' type='function'/> - <exports symbol='xmlSetGenericErrorFunc' type='function'/> - <exports symbol='xmlParserPrintFileInfo' type='function'/> - <exports symbol='xmlCtxtResetLastError' type='function'/> - <exports symbol='xmlResetLastError' type='function'/> - <exports symbol='initGenericErrorDefaultFunc' type='function'/> - <exports symbol='xmlCopyError' type='function'/> - <exports symbol='xmlParserValidityWarning' type='function'/> - <exports symbol='xmlParserPrintFileContext' type='function'/> - <exports symbol='xmlParserError' type='function'/> - <exports symbol='xmlParserWarning' type='function'/> - <exports symbol='xmlStructuredErrorFunc' type='function'/> - <exports symbol='xmlSetStructuredErrorFunc' type='function'/> - <exports symbol='xmlResetError' type='function'/> - <exports symbol='xmlGetLastError' type='function'/> - <exports symbol='xmlCtxtGetLastError' type='function'/> - </file> - <file name='xmlexports'> - <summary>macros for marking symbols as exportable/importable.</summary> - <description>macros for marking symbols as exportable/importable. </description> - <author>Igor Zlatovic <igor@zlatkovic.com> </author> - <exports symbol='_REENTRANT' type='macro'/> - <exports symbol='XMLCDECL' type='macro'/> - <exports symbol='XMLPUBVAR' type='macro'/> - <exports symbol='LIBXML_DLL_IMPORT' type='macro'/> - <exports symbol='XMLCALL' type='macro'/> - <exports symbol='XMLPUBFUN' type='macro'/> - </file> - <file name='xmlmemory'> - <summary>interface for the memory allocator</summary> - <description>provides interfaces for the memory allocator, including debugging capabilities. </description> - <author>Daniel Veillard </author> - <exports symbol='xmlRealloc' type='macro'/> - <exports symbol='xmlMalloc' type='macro'/> - <exports symbol='xmlMallocAtomic' type='macro'/> - <exports symbol='DEBUG_MEMORY' type='macro'/> - <exports symbol='xmlMemStrdup' type='macro'/> - <exports symbol='xmlMemRealloc' type='function'/> - <exports symbol='xmlInitMemory' type='function'/> - <exports symbol='xmlMemFree' type='function'/> - <exports symbol='xmlMemMalloc' type='function'/> - <exports symbol='xmlMemGet' type='function'/> - <exports symbol='xmlMemoryDump' type='function'/> - <exports symbol='xmlMallocLoc' type='function'/> - <exports symbol='xmlMemDisplay' type='function'/> - <exports symbol='xmlMemBlocks' type='function'/> - <exports symbol='xmlGcMemGet' type='function'/> - <exports symbol='xmlStrdupFunc' type='function'/> - <exports symbol='xmlFreeFunc' type='function'/> - <exports symbol='xmlMemShow' type='function'/> - <exports symbol='xmlMallocAtomicLoc' type='function'/> - <exports symbol='xmlReallocLoc' type='function'/> - <exports symbol='xmlCleanupMemory' type='function'/> - <exports symbol='xmlMemUsed' type='function'/> - <exports symbol='xmlMemSetup' type='function'/> - <exports symbol='xmlReallocFunc' type='function'/> - <exports symbol='xmlMallocFunc' type='function'/> - <exports symbol='xmlGcMemSetup' type='function'/> - <exports symbol='xmlMemoryStrdup' type='function'/> - <exports symbol='xmlMemStrdupLoc' type='function'/> - </file> - <file name='xmlmodule'> - <summary>dynamic module loading</summary> - <description>basic API for dynamic module loading, used by libexslt added in 2.6.17 </description> - <author>Joel W. Reed </author> - <exports symbol='XML_MODULE_LAZY' type='enum'/> - <exports symbol='XML_MODULE_LOCAL' type='enum'/> - <exports symbol='xmlModule' type='typedef'/> - <exports symbol='xmlModulePtr' type='typedef'/> - <exports symbol='xmlModuleOption' type='typedef'/> - <exports symbol='xmlModuleFree' type='function'/> - <exports symbol='xmlModuleSymbol' type='function'/> - <exports symbol='xmlModuleOpen' type='function'/> - <exports symbol='xmlModuleClose' type='function'/> - </file> - <file name='xmlreader'> - <summary>the XMLReader implementation</summary> - <description>API of the XML streaming API based on C# interfaces. </description> - <author>Daniel Veillard </author> - <exports symbol='XML_READER_TYPE_DOCUMENT_FRAGMENT' type='enum'/> - <exports symbol='XML_PARSER_SEVERITY_ERROR' type='enum'/> - <exports symbol='XML_READER_TYPE_ELEMENT' type='enum'/> - <exports symbol='XML_READER_TYPE_TEXT' type='enum'/> - <exports symbol='XML_READER_TYPE_XML_DECLARATION' type='enum'/> - <exports symbol='XML_READER_TYPE_NONE' type='enum'/> - <exports symbol='XML_PARSER_SEVERITY_VALIDITY_ERROR' type='enum'/> - <exports symbol='XML_READER_TYPE_PROCESSING_INSTRUCTION' type='enum'/> - <exports symbol='XML_TEXTREADER_MODE_ERROR' type='enum'/> - <exports symbol='XML_READER_TYPE_ATTRIBUTE' type='enum'/> - <exports symbol='XML_PARSER_SEVERITY_WARNING' type='enum'/> - <exports symbol='XML_READER_TYPE_DOCUMENT' type='enum'/> - <exports symbol='XML_READER_TYPE_DOCUMENT_TYPE' type='enum'/> - <exports symbol='XML_READER_TYPE_END_ELEMENT' type='enum'/> - <exports symbol='XML_READER_TYPE_WHITESPACE' type='enum'/> - <exports symbol='XML_READER_TYPE_NOTATION' type='enum'/> - <exports symbol='XML_PARSER_SUBST_ENTITIES' type='enum'/> - <exports symbol='XML_READER_TYPE_ENTITY_REFERENCE' type='enum'/> - <exports symbol='XML_TEXTREADER_MODE_INITIAL' type='enum'/> - <exports symbol='XML_READER_TYPE_COMMENT' type='enum'/> - <exports symbol='XML_TEXTREADER_MODE_CLOSED' type='enum'/> - <exports symbol='XML_PARSER_DEFAULTATTRS' type='enum'/> - <exports symbol='XML_READER_TYPE_ENTITY' type='enum'/> - <exports symbol='XML_READER_TYPE_SIGNIFICANT_WHITESPACE' type='enum'/> - <exports symbol='XML_READER_TYPE_END_ENTITY' type='enum'/> - <exports symbol='XML_PARSER_VALIDATE' type='enum'/> - <exports symbol='XML_PARSER_SEVERITY_VALIDITY_WARNING' type='enum'/> - <exports symbol='XML_TEXTREADER_MODE_READING' type='enum'/> - <exports symbol='XML_TEXTREADER_MODE_EOF' type='enum'/> - <exports symbol='XML_READER_TYPE_CDATA' type='enum'/> - <exports symbol='XML_PARSER_LOADDTD' type='enum'/> - <exports symbol='XML_TEXTREADER_MODE_INTERACTIVE' type='enum'/> - <exports symbol='xmlTextReaderPtr' type='typedef'/> - <exports symbol='xmlParserSeverities' type='typedef'/> - <exports symbol='xmlParserProperties' type='typedef'/> - <exports symbol='xmlTextReaderMode' type='typedef'/> - <exports symbol='xmlTextReader' type='typedef'/> - <exports symbol='xmlTextReaderLocatorPtr' type='typedef'/> - <exports symbol='xmlReaderTypes' type='typedef'/> - <exports symbol='xmlNewTextReaderFilename' type='function'/> - <exports symbol='xmlTextReaderHasAttributes' type='function'/> - <exports symbol='xmlTextReaderReadState' type='function'/> - <exports symbol='xmlReaderForFile' type='function'/> - <exports symbol='xmlTextReaderConstNamespaceUri' type='function'/> - <exports symbol='xmlTextReaderCurrentDoc' type='function'/> - <exports symbol='xmlTextReaderGetParserLineNumber' type='function'/> - <exports symbol='xmlTextReaderExpand' type='function'/> - <exports symbol='xmlTextReaderXmlLang' type='function'/> - <exports symbol='xmlReaderForDoc' type='function'/> - <exports symbol='xmlReaderNewIO' type='function'/> - <exports symbol='xmlTextReaderClose' type='function'/> - <exports symbol='xmlTextReaderReadInnerXml' type='function'/> - <exports symbol='xmlTextReaderConstEncoding' type='function'/> - <exports symbol='xmlTextReaderNormalization' type='function'/> - <exports symbol='xmlTextReaderGetParserProp' type='function'/> - <exports symbol='xmlTextReaderMoveToAttribute' type='function'/> - <exports symbol='xmlTextReaderQuoteChar' type='function'/> - <exports symbol='xmlTextReaderSetSchema' type='function'/> - <exports symbol='xmlTextReaderValue' type='function'/> - <exports symbol='xmlTextReaderIsValid' type='function'/> - <exports symbol='xmlTextReaderMoveToFirstAttribute' type='function'/> - <exports symbol='xmlTextReaderGetParserColumnNumber' type='function'/> - <exports symbol='xmlTextReaderConstValue' type='function'/> - <exports symbol='xmlNewTextReader' type='function'/> - <exports symbol='xmlTextReaderGetAttributeNo' type='function'/> - <exports symbol='xmlTextReaderGetAttributeNs' type='function'/> - <exports symbol='xmlTextReaderConstName' type='function'/> - <exports symbol='xmlTextReaderConstString' type='function'/> - <exports symbol='xmlTextReaderConstXmlVersion' type='function'/> - <exports symbol='xmlTextReaderDepth' type='function'/> - <exports symbol='xmlTextReaderReadString' type='function'/> - <exports symbol='xmlTextReaderIsDefault' type='function'/> - <exports symbol='xmlTextReaderMoveToNextAttribute' type='function'/> - <exports symbol='xmlReaderNewWalker' type='function'/> - <exports symbol='xmlTextReaderConstPrefix' type='function'/> - <exports symbol='xmlReaderWalker' type='function'/> - <exports symbol='xmlTextReaderConstLocalName' type='function'/> - <exports symbol='xmlTextReaderNodeType' type='function'/> - <exports symbol='xmlFreeTextReader' type='function'/> - <exports symbol='xmlTextReaderName' type='function'/> - <exports symbol='xmlTextReaderRead' type='function'/> - <exports symbol='xmlTextReaderIsEmptyElement' type='function'/> - <exports symbol='xmlReaderNewMemory' type='function'/> - <exports symbol='xmlTextReaderSchemaValidateCtxt' type='function'/> - <exports symbol='xmlTextReaderHasValue' type='function'/> - <exports symbol='xmlTextReaderConstBaseUri' type='function'/> - <exports symbol='xmlTextReaderBaseUri' type='function'/> - <exports symbol='xmlTextReaderMoveToAttributeNo' type='function'/> - <exports symbol='xmlTextReaderLocatorLineNumber' type='function'/> - <exports symbol='xmlTextReaderMoveToAttributeNs' type='function'/> - <exports symbol='xmlTextReaderNext' type='function'/> - <exports symbol='xmlTextReaderAttributeCount' type='function'/> - <exports symbol='xmlTextReaderLookupNamespace' type='function'/> - <exports symbol='xmlTextReaderMoveToElement' type='function'/> - <exports symbol='xmlReaderForIO' type='function'/> - <exports symbol='xmlTextReaderReadOuterXml' type='function'/> - <exports symbol='xmlTextReaderPrefix' type='function'/> - <exports symbol='xmlTextReaderReadAttributeValue' type='function'/> - <exports symbol='xmlTextReaderNextSibling' type='function'/> - <exports symbol='xmlTextReaderErrorFunc' type='function'/> - <exports symbol='xmlReaderForFd' type='function'/> - <exports symbol='xmlTextReaderGetAttribute' type='function'/> - <exports symbol='xmlTextReaderLocalName' type='function'/> - <exports symbol='xmlTextReaderPreserve' type='function'/> - <exports symbol='xmlTextReaderCurrentNode' type='function'/> - <exports symbol='xmlTextReaderSetParserProp' type='function'/> - <exports symbol='xmlTextReaderGetRemainder' type='function'/> - <exports symbol='xmlTextReaderSetErrorHandler' type='function'/> - <exports symbol='xmlTextReaderIsNamespaceDecl' type='function'/> - <exports symbol='xmlReaderNewDoc' type='function'/> - <exports symbol='xmlTextReaderPreservePattern' type='function'/> - <exports symbol='xmlTextReaderConstXmlLang' type='function'/> - <exports symbol='xmlTextReaderGetErrorHandler' type='function'/> - <exports symbol='xmlTextReaderSetStructuredErrorHandler' type='function'/> - <exports symbol='xmlReaderNewFile' type='function'/> - <exports symbol='xmlTextReaderRelaxNGSetSchema' type='function'/> - <exports symbol='xmlReaderNewFd' type='function'/> - <exports symbol='xmlTextReaderRelaxNGValidate' type='function'/> - <exports symbol='xmlReaderForMemory' type='function'/> - <exports symbol='xmlTextReaderSetup' type='function'/> - <exports symbol='xmlTextReaderByteConsumed' type='function'/> - <exports symbol='xmlTextReaderLocatorBaseURI' type='function'/> - <exports symbol='xmlTextReaderNamespaceUri' type='function'/> - <exports symbol='xmlTextReaderSchemaValidate' type='function'/> - <exports symbol='xmlTextReaderStandalone' type='function'/> - </file> - <file name='xmlregexp'> - <summary>regular expressions handling</summary> - <description>basic API for libxml regular expressions handling used for XML Schemas and validation. </description> - <author>Daniel Veillard </author> - <exports symbol='XML_EXP_COUNT' type='enum'/> - <exports symbol='XML_EXP_EMPTY' type='enum'/> - <exports symbol='XML_EXP_SEQ' type='enum'/> - <exports symbol='XML_EXP_ATOM' type='enum'/> - <exports symbol='XML_EXP_OR' type='enum'/> - <exports symbol='XML_EXP_FORBID' type='enum'/> - <exports symbol='xmlRegExecCtxtPtr' type='typedef'/> - <exports symbol='xmlExpCtxt' type='typedef'/> - <exports symbol='xmlExpNodePtr' type='typedef'/> - <exports symbol='xmlExpCtxtPtr' type='typedef'/> - <exports symbol='xmlExpNodeType' type='typedef'/> - <exports symbol='xmlRegExecCtxt' type='typedef'/> - <exports symbol='xmlExpNode' type='typedef'/> - <exports symbol='xmlRegexp' type='typedef'/> - <exports symbol='xmlRegexpPtr' type='typedef'/> - <exports symbol='forbiddenExp' type='variable'/> - <exports symbol='emptyExp' type='variable'/> - <exports symbol='xmlRegExecCallbacks' type='function'/> - <exports symbol='xmlRegNewExecCtxt' type='function'/> - <exports symbol='xmlExpNewOr' type='function'/> - <exports symbol='xmlRegFreeRegexp' type='function'/> - <exports symbol='xmlExpRef' type='function'/> - <exports symbol='xmlRegexpIsDeterminist' type='function'/> - <exports symbol='xmlRegExecErrInfo' type='function'/> - <exports symbol='xmlRegFreeExecCtxt' type='function'/> - <exports symbol='xmlExpCtxtNbCons' type='function'/> - <exports symbol='xmlExpSubsume' type='function'/> - <exports symbol='xmlRegExecPushString2' type='function'/> - <exports symbol='xmlRegExecNextValues' type='function'/> - <exports symbol='xmlExpExpDerive' type='function'/> - <exports symbol='xmlExpIsNillable' type='function'/> - <exports symbol='xmlExpFreeCtxt' type='function'/> - <exports symbol='xmlExpDump' type='function'/> - <exports symbol='xmlExpNewSeq' type='function'/> - <exports symbol='xmlExpFree' type='function'/> - <exports symbol='xmlExpNewRange' type='function'/> - <exports symbol='xmlRegexpCompile' type='function'/> - <exports symbol='xmlExpNewAtom' type='function'/> - <exports symbol='xmlRegexpExec' type='function'/> - <exports symbol='xmlRegExecPushString' type='function'/> - <exports symbol='xmlExpGetStart' type='function'/> - <exports symbol='xmlExpParse' type='function'/> - <exports symbol='xmlExpNewCtxt' type='function'/> - <exports symbol='xmlExpGetLanguage' type='function'/> - <exports symbol='xmlExpStringDerive' type='function'/> - <exports symbol='xmlExpCtxtNbNodes' type='function'/> - <exports symbol='xmlExpMaxToken' type='function'/> - <exports symbol='xmlRegexpPrint' type='function'/> - </file> - <file name='xmlsave'> - <summary>the XML document serializer</summary> - <description>API to save document or subtree of document </description> - <author>Daniel Veillard </author> - <exports symbol='XML_SAVE_NO_EMPTY' type='enum'/> - <exports symbol='XML_SAVE_NO_DECL' type='enum'/> - <exports symbol='XML_SAVE_NO_XHTML' type='enum'/> - <exports symbol='XML_SAVE_FORMAT' type='enum'/> - <exports symbol='xmlSaveOption' type='typedef'/> - <exports symbol='xmlSaveCtxt' type='typedef'/> - <exports symbol='xmlSaveCtxtPtr' type='typedef'/> - <exports symbol='xmlSaveToIO' type='function'/> - <exports symbol='xmlSaveToFd' type='function'/> - <exports symbol='xmlSaveClose' type='function'/> - <exports symbol='xmlSaveSetAttrEscape' type='function'/> - <exports symbol='xmlSaveToBuffer' type='function'/> - <exports symbol='xmlSaveToFilename' type='function'/> - <exports symbol='xmlSaveFlush' type='function'/> - <exports symbol='xmlSaveDoc' type='function'/> - <exports symbol='xmlSaveSetEscape' type='function'/> - <exports symbol='xmlSaveTree' type='function'/> - </file> - <file name='xmlschemas'> - <summary>incomplete XML Schemas structure implementation</summary> - <description>interface to the XML Schemas handling and schema validity checking, it is incomplete right now. </description> - <author>Daniel Veillard </author> - <exports symbol='XML_SCHEMAS_ERR_NOTNILLABLE' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_OK' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_NOROOT' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_XXX' type='enum'/> - <exports symbol='XML_SCHEMA_VAL_VC_I_CREATE' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_ISABSTRACT' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_ATTRUNKNOWN' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_WRONGELEM' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_NOTDETERMINIST' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_INTERNAL' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_MISSING' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_INVALIDATTR' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_CONSTRUCT' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_FACET' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_NOTYPE' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_VALUE' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_NOROLLBACK' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_NOTTOPLEVEL' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_NOTEMPTY' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_INVALIDELEM' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_ATTRINVALID' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_EXTRACONTENT' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_NOTSIMPLE' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_UNDECLAREDELEM' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_HAVEDEFAULT' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_ELEMCONT' type='enum'/> - <exports symbol='XML_SCHEMAS_ERR_' type='enum'/> - <exports symbol='xmlSchemaPtr' type='typedef'/> - <exports symbol='xmlSchemaParserCtxt' type='typedef'/> - <exports symbol='xmlSchemaValidOption' type='typedef'/> - <exports symbol='xmlSchemaSAXPlugPtr' type='typedef'/> - <exports symbol='xmlSchemaSAXPlugStruct' type='typedef'/> - <exports symbol='xmlSchemaValidCtxtPtr' type='typedef'/> - <exports symbol='xmlSchemaParserCtxtPtr' type='typedef'/> - <exports symbol='xmlSchema' type='typedef'/> - <exports symbol='xmlSchemaValidError' type='typedef'/> - <exports symbol='xmlSchemaValidCtxt' type='typedef'/> - <exports symbol='xmlSchemaNewDocParserCtxt' type='function'/> - <exports symbol='xmlSchemaSAXUnplug' type='function'/> - <exports symbol='xmlSchemaParse' type='function'/> - <exports symbol='xmlSchemaFreeParserCtxt' type='function'/> - <exports symbol='xmlSchemaNewParserCtxt' type='function'/> - <exports symbol='xmlSchemaIsValid' type='function'/> - <exports symbol='xmlSchemaValidityErrorFunc' type='function'/> - <exports symbol='xmlSchemaSAXPlug' type='function'/> - <exports symbol='xmlSchemaValidateStream' type='function'/> - <exports symbol='xmlSchemaGetParserErrors' type='function'/> - <exports symbol='xmlSchemaValidateOneElement' type='function'/> - <exports symbol='xmlSchemaSetValidStructuredErrors' type='function'/> - <exports symbol='xmlSchemaSetValidErrors' type='function'/> - <exports symbol='xmlSchemaValidCtxtGetOptions' type='function'/> - <exports symbol='xmlSchemaValidateFile' type='function'/> - <exports symbol='xmlSchemaValidateDoc' type='function'/> - <exports symbol='xmlSchemaFree' type='function'/> - <exports symbol='xmlSchemaNewMemParserCtxt' type='function'/> - <exports symbol='xmlSchemaGetValidErrors' type='function'/> - <exports symbol='xmlSchemaSetValidOptions' type='function'/> - <exports symbol='xmlSchemaSetParserErrors' type='function'/> - <exports symbol='xmlSchemaValidityWarningFunc' type='function'/> - <exports symbol='xmlSchemaDump' type='function'/> - <exports symbol='xmlSchemaFreeValidCtxt' type='function'/> - <exports symbol='xmlSchemaSetParserStructuredErrors' type='function'/> - <exports symbol='xmlSchemaNewValidCtxt' type='function'/> - </file> - <file name='xmlschemastypes'> - <summary>implementation of XML Schema Datatypes</summary> - <description>module providing the XML Schema Datatypes implementation both definition and validity checking </description> - <author>Daniel Veillard </author> - <exports symbol='XML_SCHEMA_WHITESPACE_UNKNOWN' type='enum'/> - <exports symbol='XML_SCHEMA_WHITESPACE_COLLAPSE' type='enum'/> - <exports symbol='XML_SCHEMA_WHITESPACE_REPLACE' type='enum'/> - <exports symbol='XML_SCHEMA_WHITESPACE_PRESERVE' type='enum'/> - <exports symbol='xmlSchemaWhitespaceValueType' type='typedef'/> - <exports symbol='xmlSchemaValPredefTypeNode' type='function'/> - <exports symbol='xmlSchemaGetCanonValueWhtsp' type='function'/> - <exports symbol='xmlSchemaValidateLengthFacetWhtsp' type='function'/> - <exports symbol='xmlSchemaIsBuiltInTypeFacet' type='function'/> - <exports symbol='xmlSchemaGetCanonValue' type='function'/> - <exports symbol='xmlSchemaGetBuiltInListSimpleTypeItemType' type='function'/> - <exports symbol='xmlSchemaCompareValuesWhtsp' type='function'/> - <exports symbol='xmlSchemaValueGetAsBoolean' type='function'/> - <exports symbol='xmlSchemaCollapseString' type='function'/> - <exports symbol='xmlSchemaValPredefTypeNodeNoNorm' type='function'/> - <exports symbol='xmlSchemaValidateFacet' type='function'/> - <exports symbol='xmlSchemaNewFacet' type='function'/> - <exports symbol='xmlSchemaValueAppend' type='function'/> - <exports symbol='xmlSchemaCompareValues' type='function'/> - <exports symbol='xmlSchemaValidateLengthFacet' type='function'/> - <exports symbol='xmlSchemaGetValType' type='function'/> - <exports symbol='xmlSchemaGetPredefinedType' type='function'/> - <exports symbol='xmlSchemaValidatePredefinedType' type='function'/> - <exports symbol='xmlSchemaFreeFacet' type='function'/> - <exports symbol='xmlSchemaValidateListSimpleTypeFacet' type='function'/> - <exports symbol='xmlSchemaGetFacetValueAsULong' type='function'/> - <exports symbol='xmlSchemaFreeValue' type='function'/> - <exports symbol='xmlSchemaValueGetNext' type='function'/> - <exports symbol='xmlSchemaValueGetAsString' type='function'/> - <exports symbol='xmlSchemaCopyValue' type='function'/> - <exports symbol='xmlSchemaNewNOTATIONValue' type='function'/> - <exports symbol='xmlSchemaNewQNameValue' type='function'/> - <exports symbol='xmlSchemaCleanupTypes' type='function'/> - <exports symbol='xmlSchemaWhiteSpaceReplace' type='function'/> - <exports symbol='xmlSchemaNewStringValue' type='function'/> - <exports symbol='xmlSchemaGetBuiltInType' type='function'/> - <exports symbol='xmlSchemaInitTypes' type='function'/> - <exports symbol='xmlSchemaValidateFacetWhtsp' type='function'/> - <exports symbol='xmlSchemaCheckFacet' type='function'/> - </file> - <file name='xmlstring'> - <summary>set of routines to process strings</summary> - <description>type and interfaces needed for the internal string handling of the library, especially UTF8 processing. </description> - <author>Daniel Veillard </author> - <exports symbol='BAD_CAST' type='macro'/> - <exports symbol='xmlChar' type='typedef'/> - <exports symbol='xmlStrcmp' type='function'/> - <exports symbol='xmlCharStrndup' type='function'/> - <exports symbol='xmlStrcasestr' type='function'/> - <exports symbol='xmlStrcat' type='function'/> - <exports symbol='xmlStrPrintf' type='function'/> - <exports symbol='xmlStrstr' type='function'/> - <exports symbol='xmlUTF8Size' type='function'/> - <exports symbol='xmlStrQEqual' type='function'/> - <exports symbol='xmlStrncatNew' type='function'/> - <exports symbol='xmlUTF8Strpos' type='function'/> - <exports symbol='xmlStrdup' type='function'/> - <exports symbol='xmlCharStrdup' type='function'/> - <exports symbol='xmlStrchr' type='function'/> - <exports symbol='xmlStrlen' type='function'/> - <exports symbol='xmlStrncmp' type='function'/> - <exports symbol='xmlStrsub' type='function'/> - <exports symbol='xmlStrncat' type='function'/> - <exports symbol='xmlGetUTF8Char' type='function'/> - <exports symbol='xmlStrcasecmp' type='function'/> - <exports symbol='xmlStrndup' type='function'/> - <exports symbol='xmlStrVPrintf' type='function'/> - <exports symbol='xmlUTF8Strsize' type='function'/> - <exports symbol='xmlCheckUTF8' type='function'/> - <exports symbol='xmlStrncasecmp' type='function'/> - <exports symbol='xmlUTF8Strlen' type='function'/> - <exports symbol='xmlUTF8Strsub' type='function'/> - <exports symbol='xmlStrEqual' type='function'/> - <exports symbol='xmlUTF8Charcmp' type='function'/> - <exports symbol='xmlUTF8Strndup' type='function'/> - <exports symbol='xmlUTF8Strloc' type='function'/> - </file> - <file name='xmlunicode'> - <summary>Unicode character APIs</summary> - <description>API for the Unicode character APIs This file is automatically generated from the UCS description files of the Unicode Character Database</description> - <author>Daniel Veillard </author> - <exports symbol='xmlUCSIsBlockElements' type='function'/> - <exports symbol='xmlUCSIsBopomofo' type='function'/> - <exports symbol='xmlUCSIsDingbats' type='function'/> - <exports symbol='xmlUCSIsSuperscriptsandSubscripts' type='function'/> - <exports symbol='xmlUCSIsCombiningHalfMarks' type='function'/> - <exports symbol='xmlUCSIsTibetan' type='function'/> - <exports symbol='xmlUCSIsYiRadicals' type='function'/> - <exports symbol='xmlUCSIsCombiningMarksforSymbols' type='function'/> - <exports symbol='xmlUCSIsHangulSyllables' type='function'/> - <exports symbol='xmlUCSIsBasicLatin' type='function'/> - <exports symbol='xmlUCSIsCatSc' type='function'/> - <exports symbol='xmlUCSIsCatSo' type='function'/> - <exports symbol='xmlUCSIsLimbu' type='function'/> - <exports symbol='xmlUCSIsCatSm' type='function'/> - <exports symbol='xmlUCSIsCatSk' type='function'/> - <exports symbol='xmlUCSIsKhmerSymbols' type='function'/> - <exports symbol='xmlUCSIsMongolian' type='function'/> - <exports symbol='xmlUCSIsMalayalam' type='function'/> - <exports symbol='xmlUCSIsMathematicalAlphanumericSymbols' type='function'/> - <exports symbol='xmlUCSIsThaana' type='function'/> - <exports symbol='xmlUCSIsMyanmar' type='function'/> - <exports symbol='xmlUCSIsTags' type='function'/> - <exports symbol='xmlUCSIsCJKCompatibilityIdeographs' type='function'/> - <exports symbol='xmlUCSIsTelugu' type='function'/> - <exports symbol='xmlUCSIsLowSurrogates' type='function'/> - <exports symbol='xmlUCSIsOsmanya' type='function'/> - <exports symbol='xmlUCSIsSyriac' type='function'/> - <exports symbol='xmlUCSIsEthiopic' type='function'/> - <exports symbol='xmlUCSIsBoxDrawing' type='function'/> - <exports symbol='xmlUCSIsGreekExtended' type='function'/> - <exports symbol='xmlUCSIsGreekandCoptic' type='function'/> - <exports symbol='xmlUCSIsKannada' type='function'/> - <exports symbol='xmlUCSIsByzantineMusicalSymbols' type='function'/> - <exports symbol='xmlUCSIsEnclosedCJKLettersandMonths' type='function'/> - <exports symbol='xmlUCSIsCJKCompatibilityForms' type='function'/> - <exports symbol='xmlUCSIsCatCs' type='function'/> - <exports symbol='xmlUCSIsCJKRadicalsSupplement' type='function'/> - <exports symbol='xmlUCSIsCatCf' type='function'/> - <exports symbol='xmlUCSIsSmallFormVariants' type='function'/> - <exports symbol='xmlUCSIsHangulCompatibilityJamo' type='function'/> - <exports symbol='xmlUCSIsCatCc' type='function'/> - <exports symbol='xmlUCSIsCatCo' type='function'/> - <exports symbol='xmlUCSIsCherokee' type='function'/> - <exports symbol='xmlUCSIsGothic' type='function'/> - <exports symbol='xmlUCSIsKhmer' type='function'/> - <exports symbol='xmlUCSIsCombiningDiacriticalMarksforSymbols' type='function'/> - <exports symbol='xmlUCSIsOgham' type='function'/> - <exports symbol='xmlUCSIsOriya' type='function'/> - <exports symbol='xmlUCSIsLinearBIdeograms' type='function'/> - <exports symbol='xmlUCSIsBlock' type='function'/> - <exports symbol='xmlUCSIsBopomofoExtended' type='function'/> - <exports symbol='xmlUCSIsHangulJamo' type='function'/> - <exports symbol='xmlUCSIsTagbanwa' type='function'/> - <exports symbol='xmlUCSIsGeneralPunctuation' type='function'/> - <exports symbol='xmlUCSIsCyrillic' type='function'/> - <exports symbol='xmlUCSIsArrows' type='function'/> - <exports symbol='xmlUCSIsControlPictures' type='function'/> - <exports symbol='xmlUCSIsCJKUnifiedIdeographs' type='function'/> - <exports symbol='xmlUCSIsCatNl' type='function'/> - <exports symbol='xmlUCSIsCatNo' type='function'/> - <exports symbol='xmlUCSIsYijingHexagramSymbols' type='function'/> - <exports symbol='xmlUCSIsVariationSelectorsSupplement' type='function'/> - <exports symbol='xmlUCSIsBengali' type='function'/> - <exports symbol='xmlUCSIsPrivateUse' type='function'/> - <exports symbol='xmlUCSIsMusicalSymbols' type='function'/> - <exports symbol='xmlUCSIsMiscellaneousSymbols' type='function'/> - <exports symbol='xmlUCSIsCJKCompatibility' type='function'/> - <exports symbol='xmlUCSIsAegeanNumbers' type='function'/> - <exports symbol='xmlUCSIsDevanagari' type='function'/> - <exports symbol='xmlUCSIsSupplementalArrowsA' type='function'/> - <exports symbol='xmlUCSIsSupplementalArrowsB' type='function'/> - <exports symbol='xmlUCSIsNumberForms' type='function'/> - <exports symbol='xmlUCSIsSpacingModifierLetters' type='function'/> - <exports symbol='xmlUCSIsOpticalCharacterRecognition' type='function'/> - <exports symbol='xmlUCSIsCatPc' type='function'/> - <exports symbol='xmlUCSIsCatPf' type='function'/> - <exports symbol='xmlUCSIsCyrillicSupplement' type='function'/> - <exports symbol='xmlUCSIsCatPd' type='function'/> - <exports symbol='xmlUCSIsCatPi' type='function'/> - <exports symbol='xmlUCSIsCatPo' type='function'/> - <exports symbol='xmlUCSIsHighPrivateUseSurrogates' type='function'/> - <exports symbol='xmlUCSIsLatinExtendedAdditional' type='function'/> - <exports symbol='xmlUCSIsCatPs' type='function'/> - <exports symbol='xmlUCSIsHighSurrogates' type='function'/> - <exports symbol='xmlUCSIsLao' type='function'/> - <exports symbol='xmlUCSIsBraillePatterns' type='function'/> - <exports symbol='xmlUCSIsDeseret' type='function'/> - <exports symbol='xmlUCSIsEnclosedAlphanumerics' type='function'/> - <exports symbol='xmlUCSIsCombiningDiacriticalMarks' type='function'/> - <exports symbol='xmlUCSIsIdeographicDescriptionCharacters' type='function'/> - <exports symbol='xmlUCSIsPrivateUseArea' type='function'/> - <exports symbol='xmlUCSIsCat' type='function'/> - <exports symbol='xmlUCSIsCatLu' type='function'/> - <exports symbol='xmlUCSIsCatLt' type='function'/> - <exports symbol='xmlUCSIsYiSyllables' type='function'/> - <exports symbol='xmlUCSIsShavian' type='function'/> - <exports symbol='xmlUCSIsCatLo' type='function'/> - <exports symbol='xmlUCSIsCatLm' type='function'/> - <exports symbol='xmlUCSIsCatLl' type='function'/> - <exports symbol='xmlUCSIsMiscellaneousTechnical' type='function'/> - <exports symbol='xmlUCSIsUgaritic' type='function'/> - <exports symbol='xmlUCSIsCJKCompatibilityIdeographsSupplement' type='function'/> - <exports symbol='xmlUCSIsCypriotSyllabary' type='function'/> - <exports symbol='xmlUCSIsTamil' type='function'/> - <exports symbol='xmlUCSIsCatC' type='function'/> - <exports symbol='xmlUCSIsCatN' type='function'/> - <exports symbol='xmlUCSIsCatL' type='function'/> - <exports symbol='xmlUCSIsCatM' type='function'/> - <exports symbol='xmlUCSIsUnifiedCanadianAboriginalSyllabics' type='function'/> - <exports symbol='xmlUCSIsCatS' type='function'/> - <exports symbol='xmlUCSIsCatP' type='function'/> - <exports symbol='xmlUCSIsSinhala' type='function'/> - <exports symbol='xmlUCSIsGeorgian' type='function'/> - <exports symbol='xmlUCSIsCatZ' type='function'/> - <exports symbol='xmlUCSIsIPAExtensions' type='function'/> - <exports symbol='xmlUCSIsKangxiRadicals' type='function'/> - <exports symbol='xmlUCSIsGreek' type='function'/> - <exports symbol='xmlUCSIsCatPe' type='function'/> - <exports symbol='xmlUCSIsHanunoo' type='function'/> - <exports symbol='xmlUCSIsArmenian' type='function'/> - <exports symbol='xmlUCSIsSupplementaryPrivateUseAreaB' type='function'/> - <exports symbol='xmlUCSIsSupplementaryPrivateUseAreaA' type='function'/> - <exports symbol='xmlUCSIsKatakanaPhoneticExtensions' type='function'/> - <exports symbol='xmlUCSIsLetterlikeSymbols' type='function'/> - <exports symbol='xmlUCSIsPhoneticExtensions' type='function'/> - <exports symbol='xmlUCSIsArabic' type='function'/> - <exports symbol='xmlUCSIsHebrew' type='function'/> - <exports symbol='xmlUCSIsOldItalic' type='function'/> - <exports symbol='xmlUCSIsArabicPresentationFormsA' type='function'/> - <exports symbol='xmlUCSIsCatZp' type='function'/> - <exports symbol='xmlUCSIsCatZs' type='function'/> - <exports symbol='xmlUCSIsArabicPresentationFormsB' type='function'/> - <exports symbol='xmlUCSIsGeometricShapes' type='function'/> - <exports symbol='xmlUCSIsCatZl' type='function'/> - <exports symbol='xmlUCSIsTagalog' type='function'/> - <exports symbol='xmlUCSIsSpecials' type='function'/> - <exports symbol='xmlUCSIsGujarati' type='function'/> - <exports symbol='xmlUCSIsKatakana' type='function'/> - <exports symbol='xmlUCSIsHalfwidthandFullwidthForms' type='function'/> - <exports symbol='xmlUCSIsLatinExtendedB' type='function'/> - <exports symbol='xmlUCSIsLatinExtendedA' type='function'/> - <exports symbol='xmlUCSIsBuhid' type='function'/> - <exports symbol='xmlUCSIsMiscellaneousSymbolsandArrows' type='function'/> - <exports symbol='xmlUCSIsTaiLe' type='function'/> - <exports symbol='xmlUCSIsCJKSymbolsandPunctuation' type='function'/> - <exports symbol='xmlUCSIsTaiXuanJingSymbols' type='function'/> - <exports symbol='xmlUCSIsGurmukhi' type='function'/> - <exports symbol='xmlUCSIsMathematicalOperators' type='function'/> - <exports symbol='xmlUCSIsAlphabeticPresentationForms' type='function'/> - <exports symbol='xmlUCSIsCurrencySymbols' type='function'/> - <exports symbol='xmlUCSIsSupplementalMathematicalOperators' type='function'/> - <exports symbol='xmlUCSIsCJKUnifiedIdeographsExtensionA' type='function'/> - <exports symbol='xmlUCSIsKanbun' type='function'/> - <exports symbol='xmlUCSIsCJKUnifiedIdeographsExtensionB' type='function'/> - <exports symbol='xmlUCSIsThai' type='function'/> - <exports symbol='xmlUCSIsRunic' type='function'/> - <exports symbol='xmlUCSIsCatNd' type='function'/> - <exports symbol='xmlUCSIsLatin1Supplement' type='function'/> - <exports symbol='xmlUCSIsLinearBSyllabary' type='function'/> - <exports symbol='xmlUCSIsHiragana' type='function'/> - <exports symbol='xmlUCSIsMiscellaneousMathematicalSymbolsB' type='function'/> - <exports symbol='xmlUCSIsMiscellaneousMathematicalSymbolsA' type='function'/> - <exports symbol='xmlUCSIsCatMn' type='function'/> - <exports symbol='xmlUCSIsVariationSelectors' type='function'/> - <exports symbol='xmlUCSIsCatMc' type='function'/> - <exports symbol='xmlUCSIsCatMe' type='function'/> - </file> - <file name='xmlversion'> - <summary>compile-time version informations</summary> - <description>compile-time version informations for the XML library </description> - <author>Daniel Veillard </author> - <exports symbol='LIBXML_VERSION_EXTRA' type='macro'/> - <exports symbol='LIBXML_MODULES_ENABLED' type='macro'/> - <exports symbol='LIBXML_LEGACY_ENABLED' type='macro'/> - <exports symbol='LIBXML_READER_ENABLED' type='macro'/> - <exports symbol='LIBXML_THREAD_ENABLED' type='macro'/> - <exports symbol='LIBXML_DOTTED_VERSION' type='macro'/> - <exports symbol='LIBXML_ISO8859X_ENABLED' type='macro'/> - <exports symbol='LIBXML_DEBUG_ENABLED' type='macro'/> - <exports symbol='LIBXML_XINCLUDE_ENABLED' type='macro'/> - <exports symbol='ATTRIBUTE_UNUSED' type='macro'/> - <exports symbol='LIBXML_DOCB_ENABLED' type='macro'/> - <exports symbol='LIBXML_PUSH_ENABLED' type='macro'/> - <exports symbol='LIBXML_SAX1_ENABLED' type='macro'/> - <exports symbol='WITHOUT_TRIO' type='macro'/> - <exports symbol='LIBXML_SCHEMATRON_ENABLED' type='macro'/> - <exports symbol='LIBXML_HTTP_ENABLED' type='macro'/> - <exports symbol='LIBXML_OUTPUT_ENABLED' type='macro'/> - <exports symbol='WITH_TRIO' type='macro'/> - <exports symbol='LIBXML_DEBUG_RUNTIME' type='macro'/> - <exports symbol='LIBXML_VERSION' type='macro'/> - <exports symbol='LIBXML_XPTR_ENABLED' type='macro'/> - <exports symbol='LIBXML_VERSION_STRING' type='macro'/> - <exports symbol='LIBXML_CATALOG_ENABLED' type='macro'/> - <exports symbol='LIBXML_REGEXP_ENABLED' type='macro'/> - <exports symbol='LIBXML_MODULE_EXTENSION' type='macro'/> - <exports symbol='LIBXML_ICONV_ENABLED' type='macro'/> - <exports symbol='LIBXML_HTML_ENABLED' type='macro'/> - <exports symbol='LIBXML_UNICODE_ENABLED' type='macro'/> - <exports symbol='LIBXML_FTP_ENABLED' type='macro'/> - <exports symbol='LIBXML_AUTOMATA_ENABLED' type='macro'/> - <exports symbol='LIBXML_ZLIB_ENABLED' type='macro'/> - <exports symbol='LIBXML_WRITER_ENABLED' type='macro'/> - <exports symbol='LIBXML_C14N_ENABLED' type='macro'/> - <exports symbol='LIBXML_SCHEMAS_ENABLED' type='macro'/> - <exports symbol='DEBUG_MEMORY_LOCATION' type='macro'/> - <exports symbol='LIBXML_TEST_VERSION' type='macro'/> - <exports symbol='LIBXML_XPATH_ENABLED' type='macro'/> - <exports symbol='LIBXML_EXPR_ENABLED' type='macro'/> - <exports symbol='LIBXML_VALID_ENABLED' type='macro'/> - <exports symbol='LIBXML_TREE_ENABLED' type='macro'/> - <exports symbol='LIBXML_PATTERN_ENABLED' type='macro'/> - <exports symbol='xmlCheckVersion' type='function'/> - </file> - <file name='xmlwriter'> - <summary>text writing API for XML</summary> - <description>text writing API for XML </description> - <author>Alfred Mickautsch <alfred@mickautsch.de> </author> - <exports symbol='xmlTextWriterWriteProcessingInstruction' type='macro'/> - <exports symbol='xmlTextWriterWriteDocType' type='macro'/> - <exports symbol='xmlTextWriter' type='typedef'/> - <exports symbol='xmlTextWriterPtr' type='typedef'/> - <exports symbol='xmlTextWriterStartDocument' type='function'/> - <exports symbol='xmlTextWriterEndPI' type='function'/> - <exports symbol='xmlTextWriterWriteBase64' type='function'/> - <exports symbol='xmlTextWriterSetIndentString' type='function'/> - <exports symbol='xmlFreeTextWriter' type='function'/> - <exports symbol='xmlTextWriterEndComment' type='function'/> - <exports symbol='xmlTextWriterWriteRawLen' type='function'/> - <exports symbol='xmlTextWriterWriteDTDExternalEntityContents' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatCDATA' type='function'/> - <exports symbol='xmlTextWriterStartAttributeNS' type='function'/> - <exports symbol='xmlNewTextWriterPushParser' type='function'/> - <exports symbol='xmlTextWriterWriteFormatAttributeNS' type='function'/> - <exports symbol='xmlTextWriterWriteDTDEntity' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatPI' type='function'/> - <exports symbol='xmlTextWriterWriteBinHex' type='function'/> - <exports symbol='xmlTextWriterEndAttribute' type='function'/> - <exports symbol='xmlTextWriterSetIndent' type='function'/> - <exports symbol='xmlTextWriterWriteFormatPI' type='function'/> - <exports symbol='xmlTextWriterEndDocument' type='function'/> - <exports symbol='xmlTextWriterWriteDTDAttlist' type='function'/> - <exports symbol='xmlTextWriterStartComment' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatDTD' type='function'/> - <exports symbol='xmlTextWriterEndCDATA' type='function'/> - <exports symbol='xmlTextWriterStartElementNS' type='function'/> - <exports symbol='xmlTextWriterEndDTDEntity' type='function'/> - <exports symbol='xmlNewTextWriter' type='function'/> - <exports symbol='xmlTextWriterStartAttribute' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatDTDAttlist' type='function'/> - <exports symbol='xmlTextWriterStartPI' type='function'/> - <exports symbol='xmlTextWriterStartElement' type='function'/> - <exports symbol='xmlTextWriterWriteDTDExternalEntity' type='function'/> - <exports symbol='xmlTextWriterWriteFormatRaw' type='function'/> - <exports symbol='xmlTextWriterWriteCDATA' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatDTDInternalEntity' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatAttribute' type='function'/> - <exports symbol='xmlTextWriterEndDTDElement' type='function'/> - <exports symbol='xmlTextWriterEndDTD' type='function'/> - <exports symbol='xmlTextWriterWriteElement' type='function'/> - <exports symbol='xmlTextWriterEndElement' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatComment' type='function'/> - <exports symbol='xmlTextWriterStartCDATA' type='function'/> - <exports symbol='xmlNewTextWriterFilename' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatElement' type='function'/> - <exports symbol='xmlTextWriterWriteFormatComment' type='function'/> - <exports symbol='xmlTextWriterWriteAttributeNS' type='function'/> - <exports symbol='xmlTextWriterWritePI' type='function'/> - <exports symbol='xmlTextWriterWriteFormatDTDInternalEntity' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatString' type='function'/> - <exports symbol='xmlTextWriterWriteDTDInternalEntity' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatElementNS' type='function'/> - <exports symbol='xmlTextWriterWriteDTDNotation' type='function'/> - <exports symbol='xmlTextWriterWriteFormatElement' type='function'/> - <exports symbol='xmlTextWriterWriteElementNS' type='function'/> - <exports symbol='xmlTextWriterWriteString' type='function'/> - <exports symbol='xmlTextWriterFullEndElement' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatAttributeNS' type='function'/> - <exports symbol='xmlTextWriterFlush' type='function'/> - <exports symbol='xmlTextWriterStartDTD' type='function'/> - <exports symbol='xmlTextWriterWriteAttribute' type='function'/> - <exports symbol='xmlNewTextWriterDoc' type='function'/> - <exports symbol='xmlTextWriterWriteFormatDTDElement' type='function'/> - <exports symbol='xmlTextWriterEndDTDAttlist' type='function'/> - <exports symbol='xmlNewTextWriterTree' type='function'/> - <exports symbol='xmlNewTextWriterMemory' type='function'/> - <exports symbol='xmlTextWriterWriteFormatCDATA' type='function'/> - <exports symbol='xmlTextWriterStartDTDAttlist' type='function'/> - <exports symbol='xmlTextWriterWriteFormatString' type='function'/> - <exports symbol='xmlTextWriterWriteComment' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatRaw' type='function'/> - <exports symbol='xmlTextWriterWriteFormatDTD' type='function'/> - <exports symbol='xmlTextWriterWriteFormatDTDAttlist' type='function'/> - <exports symbol='xmlTextWriterWriteRaw' type='function'/> - <exports symbol='xmlTextWriterWriteDTDElement' type='function'/> - <exports symbol='xmlTextWriterWriteDTD' type='function'/> - <exports symbol='xmlTextWriterWriteFormatAttribute' type='function'/> - <exports symbol='xmlTextWriterStartDTDEntity' type='function'/> - <exports symbol='xmlTextWriterWriteVFormatDTDElement' type='function'/> - <exports symbol='xmlTextWriterStartDTDElement' type='function'/> - <exports symbol='xmlTextWriterWriteFormatElementNS' type='function'/> - </file> - <file name='xpath'> - <summary>XML Path Language implementation</summary> - <description>API for the XML Path Language implementation XML Path Language implementation XPath is a language for addressing parts of an XML document, designed to be used by both XSLT and XPointer</description> - <author>Daniel Veillard </author> - <exports symbol='xmlXPathNodeSetGetLength' type='macro'/> - <exports symbol='XML_XPATH_CHECKNS' type='macro'/> - <exports symbol='XML_XPATH_NOVAR' type='macro'/> - <exports symbol='xmlXPathNodeSetItem' type='macro'/> - <exports symbol='xmlXPathNodeSetIsEmpty' type='macro'/> - <exports symbol='XPATH_NUMBER_ERROR' type='enum'/> - <exports symbol='XPATH_BOOLEAN' type='enum'/> - <exports symbol='XPATH_START_LITERAL_ERROR' type='enum'/> - <exports symbol='XPATH_UNCLOSED_ERROR' type='enum'/> - <exports symbol='XPATH_INVALID_CHAR_ERROR' type='enum'/> - <exports symbol='XPATH_UNDEF_VARIABLE_ERROR' type='enum'/> - <exports symbol='XPATH_EXPRESSION_OK' type='enum'/> - <exports symbol='XPATH_NODESET' type='enum'/> - <exports symbol='XPTR_SUB_RESOURCE_ERROR' type='enum'/> - <exports symbol='XPATH_VARIABLE_REF_ERROR' type='enum'/> - <exports symbol='XPATH_ENCODING_ERROR' type='enum'/> - <exports symbol='XPTR_RESOURCE_ERROR' type='enum'/> - <exports symbol='XPATH_NUMBER' type='enum'/> - <exports symbol='XPATH_INVALID_CTXT_SIZE' type='enum'/> - <exports symbol='XPATH_USERS' type='enum'/> - <exports symbol='XPATH_UNDEF_PREFIX_ERROR' type='enum'/> - <exports symbol='XPATH_UNKNOWN_FUNC_ERROR' type='enum'/> - <exports symbol='XPATH_RANGE' type='enum'/> - <exports symbol='XPTR_SYNTAX_ERROR' type='enum'/> - <exports symbol='XPATH_LOCATIONSET' type='enum'/> - <exports symbol='XPATH_INVALID_CTXT' type='enum'/> - <exports symbol='XPATH_POINT' type='enum'/> - <exports symbol='XPATH_INVALID_ARITY' type='enum'/> - <exports symbol='XPATH_STRING' type='enum'/> - <exports symbol='XPATH_INVALID_PREDICATE_ERROR' type='enum'/> - <exports symbol='XPATH_XSLT_TREE' type='enum'/> - <exports symbol='XPATH_EXPR_ERROR' type='enum'/> - <exports symbol='XPATH_INVALID_TYPE' type='enum'/> - <exports symbol='XPATH_INVALID_CTXT_POSITION' type='enum'/> - <exports symbol='XPATH_UNDEFINED' type='enum'/> - <exports symbol='XPATH_MEMORY_ERROR' type='enum'/> - <exports symbol='XPATH_UNFINISHED_LITERAL_ERROR' type='enum'/> - <exports symbol='XPATH_INVALID_OPERAND' type='enum'/> - <exports symbol='xmlXPathObjectType' type='typedef'/> - <exports symbol='xmlXPathVariablePtr' type='typedef'/> - <exports symbol='xmlXPathContext' type='typedef'/> - <exports symbol='xmlXPathError' type='typedef'/> - <exports symbol='xmlXPathFunct' type='typedef'/> - <exports symbol='xmlXPathTypePtr' type='typedef'/> - <exports symbol='xmlXPathType' type='typedef'/> - <exports symbol='xmlNodeSetPtr' type='typedef'/> - <exports symbol='xmlXPathFuncPtr' type='typedef'/> - <exports symbol='xmlXPathCompExprPtr' type='typedef'/> - <exports symbol='xmlXPathObject' type='typedef'/> - <exports symbol='xmlXPathCompExpr' type='typedef'/> - <exports symbol='xmlXPathContextPtr' type='typedef'/> - <exports symbol='xmlXPathParserContextPtr' type='typedef'/> - <exports symbol='xmlNodeSet' type='typedef'/> - <exports symbol='xmlXPathVariable' type='typedef'/> - <exports symbol='xmlXPathObjectPtr' type='typedef'/> - <exports symbol='xmlXPathAxis' type='typedef'/> - <exports symbol='xmlXPathAxisPtr' type='typedef'/> - <exports symbol='xmlXPathParserContext' type='typedef'/> - <exports symbol='_xmlXPathFunct' type='struct'/> - <exports symbol='_xmlXPathVariable' type='struct'/> - <exports symbol='_xmlXPathParserContext' type='struct'/> - <exports symbol='_xmlXPathType' type='struct'/> - <exports symbol='_xmlXPathObject' type='struct'/> - <exports symbol='_xmlXPathContext' type='struct'/> - <exports symbol='_xmlXPathAxis' type='struct'/> - <exports symbol='_xmlNodeSet' type='struct'/> - <exports symbol='xmlXPathNAN' type='variable'/> - <exports symbol='xmlXPathPINF' type='variable'/> - <exports symbol='xmlXPathNINF' type='variable'/> - <exports symbol='xmlXPathCastNodeSetToBoolean' type='function'/> - <exports symbol='xmlXPathFuncLookupFunc' type='function'/> - <exports symbol='xmlXPathCastNodeToString' type='function'/> - <exports symbol='xmlXPathIsNaN' type='function'/> - <exports symbol='xmlXPathContextSetCache' type='function'/> - <exports symbol='xmlXPathConvertString' type='function'/> - <exports symbol='xmlXPathCompiledEvalToBoolean' type='function'/> - <exports symbol='xmlXPathIsInf' type='function'/> - <exports symbol='xmlXPathOrderDocElems' type='function'/> - <exports symbol='xmlXPathNodeSetCreate' type='function'/> - <exports symbol='xmlXPathCastBooleanToNumber' type='function'/> - <exports symbol='xmlXPathCastNodeToNumber' type='function'/> - <exports symbol='xmlXPathCastStringToNumber' type='function'/> - <exports symbol='xmlXPathAxisFunc' type='function'/> - <exports symbol='xmlXPathCastToNumber' type='function'/> - <exports symbol='xmlXPathCastStringToBoolean' type='function'/> - <exports symbol='xmlXPathCastNumberToString' type='function'/> - <exports symbol='xmlXPathVariableLookupFunc' type='function'/> - <exports symbol='xmlXPathFreeObject' type='function'/> - <exports symbol='xmlXPathEvalPredicate' type='function'/> - <exports symbol='xmlXPathFreeContext' type='function'/> - <exports symbol='xmlXPathObjectCopy' type='function'/> - <exports symbol='xmlXPathFreeNodeSetList' type='function'/> - <exports symbol='xmlXPathEval' type='function'/> - <exports symbol='xmlXPathCastNodeSetToString' type='function'/> - <exports symbol='xmlXPathCompiledEval' type='function'/> - <exports symbol='xmlXPathEvalExpression' type='function'/> - <exports symbol='xmlXPathInit' type='function'/> - <exports symbol='xmlXPathConvertBoolean' type='function'/> - <exports symbol='xmlXPathConvertFunc' type='function'/> - <exports symbol='xmlXPathFunction' type='function'/> - <exports symbol='xmlXPathCmpNodes' type='function'/> - <exports symbol='xmlXPathCastToString' type='function'/> - <exports symbol='xmlXPathCtxtCompile' type='function'/> - <exports symbol='xmlXPathEvalFunc' type='function'/> - <exports symbol='xmlXPathCastBooleanToString' type='function'/> - <exports symbol='xmlXPathCastNumberToBoolean' type='function'/> - <exports symbol='xmlXPathFreeNodeSet' type='function'/> - <exports symbol='xmlXPathFreeCompExpr' type='function'/> - <exports symbol='xmlXPathNewContext' type='function'/> - <exports symbol='xmlXPathConvertNumber' type='function'/> - <exports symbol='xmlXPathCompile' type='function'/> - <exports symbol='xmlXPathCastNodeSetToNumber' type='function'/> - <exports symbol='xmlXPathCastToBoolean' type='function'/> - </file> - <file name='xpathInternals'> - <summary>internal interfaces for XML Path Language implementation</summary> - <description>internal interfaces for XML Path Language implementation used to build new modules on top of XPath like XPointer and XSLT </description> - <author>Daniel Veillard </author> - <exports symbol='xmlXPathStackIsExternal' type='macro'/> - <exports symbol='xmlXPathReturnEmptyString' type='macro'/> - <exports symbol='XP_ERROR0' type='macro'/> - <exports symbol='xmlXPathSetTypeError' type='macro'/> - <exports symbol='xmlXPathReturnEmptyNodeSet' type='macro'/> - <exports symbol='xmlXPathReturnTrue' type='macro'/> - <exports symbol='xmlXPathReturnBoolean' type='macro'/> - <exports symbol='xmlXPathGetContextNode' type='macro'/> - <exports symbol='CAST_TO_NUMBER' type='macro'/> - <exports symbol='CHECK_ARITY' type='macro'/> - <exports symbol='CHECK_TYPE0' type='macro'/> - <exports symbol='CAST_TO_STRING' type='macro'/> - <exports symbol='xmlXPathReturnExternal' type='macro'/> - <exports symbol='xmlXPathStackIsNodeSet' type='macro'/> - <exports symbol='xmlXPathCheckError' type='macro'/> - <exports symbol='xmlXPathSetError' type='macro'/> - <exports symbol='CHECK_ERROR' type='macro'/> - <exports symbol='xmlXPathReturnString' type='macro'/> - <exports symbol='CAST_TO_BOOLEAN' type='macro'/> - <exports symbol='xmlXPathSetArityError' type='macro'/> - <exports symbol='CHECK_TYPE' type='macro'/> - <exports symbol='xmlXPathReturnFalse' type='macro'/> - <exports symbol='xmlXPathReturnNumber' type='macro'/> - <exports symbol='CHECK_ERROR0' type='macro'/> - <exports symbol='xmlXPathGetDocument' type='macro'/> - <exports symbol='xmlXPathGetError' type='macro'/> - <exports symbol='XP_ERROR' type='macro'/> - <exports symbol='xmlXPathEmptyNodeSet' type='macro'/> - <exports symbol='xmlXPathReturnNodeSet' type='macro'/> - <exports symbol='xmlXPathNodeSetMerge' type='function'/> - <exports symbol='xmlXPathNumberFunction' type='function'/> - <exports symbol='xmlXPathNsLookup' type='function'/> - <exports symbol='xmlXPathNewNodeSet' type='function'/> - <exports symbol='xmlXPathNextAncestorOrSelf' type='function'/> - <exports symbol='xmlXPathNodeSetRemove' type='function'/> - <exports symbol='xmlXPathNewNodeSetList' type='function'/> - <exports symbol='xmlXPathPopBoolean' type='function'/> - <exports symbol='xmlXPathNewString' type='function'/> - <exports symbol='xmlXPathNodeLeadingSorted' type='function'/> - <exports symbol='xmlXPathNextChild' type='function'/> - <exports symbol='xmlXPathNextFollowingSibling' type='function'/> - <exports symbol='xmlXPathPopString' type='function'/> - <exports symbol='xmlXPathNamespaceURIFunction' type='function'/> - <exports symbol='xmlXPathCompareValues' type='function'/> - <exports symbol='xmlXPathConcatFunction' type='function'/> - <exports symbol='xmlXPathNodeSetContains' type='function'/> - <exports symbol='xmlXPatherror' type='function'/> - <exports symbol='xmlXPathNextAncestor' type='function'/> - <exports symbol='xmlXPathBooleanFunction' type='function'/> - <exports symbol='xmlXPathRoot' type='function'/> - <exports symbol='xmlXPathRegisteredNsCleanup' type='function'/> - <exports symbol='xmlXPathIsNodeType' type='function'/> - <exports symbol='xmlXPathNextFollowing' type='function'/> - <exports symbol='xmlXPathAddValues' type='function'/> - <exports symbol='xmlXPathRegisterVariable' type='function'/> - <exports symbol='valuePop' type='function'/> - <exports symbol='xmlXPathCeilingFunction' type='function'/> - <exports symbol='xmlXPathIntersection' type='function'/> - <exports symbol='xmlXPathContainsFunction' type='function'/> - <exports symbol='xmlXPathNodeSetSort' type='function'/> - <exports symbol='xmlXPathStartsWithFunction' type='function'/> - <exports symbol='xmlXPathNodeLeading' type='function'/> - <exports symbol='xmlXPathSumFunction' type='function'/> - <exports symbol='xmlXPathNotEqualValues' type='function'/> - <exports symbol='xmlXPathEvaluatePredicateResult' type='function'/> - <exports symbol='xmlXPathErr' type='function'/> - <exports symbol='xmlXPathNextPreceding' type='function'/> - <exports symbol='xmlXPathFunctionLookupNS' type='function'/> - <exports symbol='xmlXPathRegisteredFuncsCleanup' type='function'/> - <exports symbol='xmlXPathRegisterAllFunctions' type='function'/> - <exports symbol='xmlXPathFunctionLookup' type='function'/> - <exports symbol='xmlXPathPositionFunction' type='function'/> - <exports symbol='xmlXPathSubstringBeforeFunction' type='function'/> - <exports symbol='xmlXPathRegisteredVariablesCleanup' type='function'/> - <exports symbol='xmlXPathNewFloat' type='function'/> - <exports symbol='xmlXPathRegisterNs' type='function'/> - <exports symbol='xmlXPathNextParent' type='function'/> - <exports symbol='xmlXPathNodeSetFreeNs' type='function'/> - <exports symbol='xmlXPathHasSameNodes' type='function'/> - <exports symbol='xmlXPathDistinctSorted' type='function'/> - <exports symbol='valuePush' type='function'/> - <exports symbol='xmlXPathSubstringFunction' type='function'/> - <exports symbol='xmlXPathStringFunction' type='function'/> - <exports symbol='xmlXPathFloorFunction' type='function'/> - <exports symbol='xmlXPathIdFunction' type='function'/> - <exports symbol='xmlXPathLastFunction' type='function'/> - <exports symbol='xmlXPathStringLengthFunction' type='function'/> - <exports symbol='xmlXPathNextSelf' type='function'/> - <exports symbol='xmlXPathDebugDumpCompExpr' type='function'/> - <exports symbol='xmlXPathFalseFunction' type='function'/> - <exports symbol='xmlXPathValueFlipSign' type='function'/> - <exports symbol='xmlXPathTranslateFunction' type='function'/> - <exports symbol='xmlXPathRegisterFuncLookup' type='function'/> - <exports symbol='xmlXPathPopNumber' type='function'/> - <exports symbol='xmlXPathRoundFunction' type='function'/> - <exports symbol='xmlXPathPopNodeSet' type='function'/> - <exports symbol='xmlXPathCountFunction' type='function'/> - <exports symbol='xmlXPathParseNCName' type='function'/> - <exports symbol='xmlXPathTrueFunction' type='function'/> - <exports symbol='xmlXPathNewBoolean' type='function'/> - <exports symbol='xmlXPathSubValues' type='function'/> - <exports symbol='xmlXPathEqualValues' type='function'/> - <exports symbol='xmlXPathTrailingSorted' type='function'/> - <exports symbol='xmlXPathMultValues' type='function'/> - <exports symbol='xmlXPathModValues' type='function'/> - <exports symbol='xmlXPathNewParserContext' type='function'/> - <exports symbol='xmlXPathWrapNodeSet' type='function'/> - <exports symbol='xmlXPathWrapString' type='function'/> - <exports symbol='xmlXPathLangFunction' type='function'/> - <exports symbol='xmlXPathRegisterFuncNS' type='function'/> - <exports symbol='xmlXPathNodeSetAddNs' type='function'/> - <exports symbol='xmlXPathLocalNameFunction' type='function'/> - <exports symbol='xmlXPathDifference' type='function'/> - <exports symbol='xmlXPathLeadingSorted' type='function'/> - <exports symbol='xmlXPathNextPrecedingSibling' type='function'/> - <exports symbol='xmlXPathPopExternal' type='function'/> - <exports symbol='xmlXPathNormalizeFunction' type='function'/> - <exports symbol='xmlXPathRegisterVariableLookup' type='function'/> - <exports symbol='xmlXPathNodeSetDel' type='function'/> - <exports symbol='xmlXPathNodeTrailingSorted' type='function'/> - <exports symbol='xmlXPathNewCString' type='function'/> - <exports symbol='xmlXPathRegisterFunc' type='function'/> - <exports symbol='xmlXPathSubstringAfterFunction' type='function'/> - <exports symbol='xmlXPathNextDescendant' type='function'/> - <exports symbol='xmlXPathNextNamespace' type='function'/> - <exports symbol='xmlXPathWrapCString' type='function'/> - <exports symbol='xmlXPathFreeParserContext' type='function'/> - <exports symbol='xmlXPathNodeTrailing' type='function'/> - <exports symbol='xmlXPathNodeSetAdd' type='function'/> - <exports symbol='xmlXPathNodeSetAddUnique' type='function'/> - <exports symbol='xmlXPathNewValueTree' type='function'/> - <exports symbol='xmlXPathDistinct' type='function'/> - <exports symbol='xmlXPathVariableLookup' type='function'/> - <exports symbol='xmlXPathNotFunction' type='function'/> - <exports symbol='xmlXPathStringEvalNumber' type='function'/> - <exports symbol='xmlXPathNextDescendantOrSelf' type='function'/> - <exports symbol='xmlXPathWrapExternal' type='function'/> - <exports symbol='xmlXPathNextAttribute' type='function'/> - <exports symbol='xmlXPathDivValues' type='function'/> - <exports symbol='xmlXPathVariableLookupNS' type='function'/> - <exports symbol='xmlXPathRegisterVariableNS' type='function'/> - <exports symbol='xmlXPathTrailing' type='function'/> - <exports symbol='xmlXPathEvalExpr' type='function'/> - <exports symbol='xmlXPathDebugDumpObject' type='function'/> - <exports symbol='xmlXPathLeading' type='function'/> - <exports symbol='xmlXPathParseName' type='function'/> - </file> - <file name='xpointer'> - <summary>API to handle XML Pointers</summary> - <description>API to handle XML Pointers Base implementation was made accordingly to W3C Candidate Recommendation 7 June 2000</description> - <author>Daniel Veillard </author> - <exports symbol='xmlLocationSet' type='typedef'/> - <exports symbol='xmlLocationSetPtr' type='typedef'/> - <exports symbol='_xmlLocationSet' type='struct'/> - <exports symbol='xmlXPtrNewRange' type='function'/> - <exports symbol='xmlXPtrFreeLocationSet' type='function'/> - <exports symbol='xmlXPtrWrapLocationSet' type='function'/> - <exports symbol='xmlXPtrBuildNodeList' type='function'/> - <exports symbol='xmlXPtrEval' type='function'/> - <exports symbol='xmlXPtrNewRangeNodes' type='function'/> - <exports symbol='xmlXPtrLocationSetAdd' type='function'/> - <exports symbol='xmlXPtrRangeToFunction' type='function'/> - <exports symbol='xmlXPtrNewCollapsedRange' type='function'/> - <exports symbol='xmlXPtrNewRangePoints' type='function'/> - <exports symbol='xmlXPtrNewLocationSetNodeSet' type='function'/> - <exports symbol='xmlXPtrNewRangePointNode' type='function'/> - <exports symbol='xmlXPtrLocationSetCreate' type='function'/> - <exports symbol='xmlXPtrNewRangeNodeObject' type='function'/> - <exports symbol='xmlXPtrNewContext' type='function'/> - <exports symbol='xmlXPtrLocationSetRemove' type='function'/> - <exports symbol='xmlXPtrNewRangeNodePoint' type='function'/> - <exports symbol='xmlXPtrLocationSetDel' type='function'/> - <exports symbol='xmlXPtrLocationSetMerge' type='function'/> - <exports symbol='xmlXPtrEvalRangePredicate' type='function'/> - <exports symbol='xmlXPtrNewLocationSetNodes' type='function'/> - </file> - </files> - <symbols> - <macro name='ATTRIBUTE_UNUSED' file='xmlversion'> - <info>Macro used to signal to GCC unused function parameters</info> - </macro> - <macro name='BAD_CAST' file='xmlstring'> - <info>Macro to cast a string to an xmlChar * when one know its safe.</info> - </macro> - <macro name='BASE_BUFFER_SIZE' file='tree'> - <info>default buffer size 4000.</info> - </macro> - <macro name='CAST_TO_BOOLEAN' file='xpathInternals'> - <info>Macro to try to cast the value on the top of the XPath stack to a boolean.</info> - </macro> - <macro name='CAST_TO_NUMBER' file='xpathInternals'> - <info>Macro to try to cast the value on the top of the XPath stack to a number.</info> - </macro> - <macro name='CAST_TO_STRING' file='xpathInternals'> - <info>Macro to try to cast the value on the top of the XPath stack to a string.</info> - </macro> - <macro name='CHECK_ARITY' file='xpathInternals'> - <info>Macro to check that the number of args passed to an XPath function matches.</info> - <arg name='x' info='the number of expected args'/> - </macro> - <macro name='CHECK_ERROR' file='xpathInternals'> - <info>Macro to return from the function if an XPath error was detected.</info> - </macro> - <macro name='CHECK_ERROR0' file='xpathInternals'> - <info>Macro to return 0 from the function if an XPath error was detected.</info> - </macro> - <macro name='CHECK_TYPE' file='xpathInternals'> - <info>Macro to check that the value on top of the XPath stack is of a given type.</info> - <arg name='typeval' info='the XPath type'/> - </macro> - <macro name='CHECK_TYPE0' file='xpathInternals'> - <info>Macro to check that the value on top of the XPath stack is of a given type. Return(0) in case of failure</info> - <arg name='typeval' info='the XPath type'/> - </macro> - <macro name='DEBUG_MEMORY' file='xmlmemory'> - <info>DEBUG_MEMORY replaces the allocator with a collect and debug shell to the libc allocator. DEBUG_MEMORY should only be activated when debugging libxml i.e. if libxml has been configured with --with-debug-mem too. #define DEBUG_MEMORY_FREED #define DEBUG_MEMORY_LOCATION</info> - </macro> - <macro name='DEBUG_MEMORY_LOCATION' file='xmlversion'> - <info>Whether the memory debugging is configured in</info> - </macro> - <macro name='HTML_COMMENT_NODE' file='HTMLtree'> - <info>Macro. A comment in a HTML document is really implemented the same way as a comment in an XML document.</info> - </macro> - <macro name='HTML_ENTITY_REF_NODE' file='HTMLtree'> - <info>Macro. An entity reference in a HTML document is really implemented the same way as an entity reference in an XML document.</info> - </macro> - <macro name='HTML_PI_NODE' file='HTMLtree'> - <info>Macro. A processing instruction in a HTML document is really implemented the same way as a processing instruction in an XML document.</info> - </macro> - <macro name='HTML_PRESERVE_NODE' file='HTMLtree'> - <info>Macro. A preserved node in a HTML document is really implemented the same way as a CDATA section in an XML document.</info> - </macro> - <macro name='HTML_TEXT_NODE' file='HTMLtree'> - <info>Macro. A text node in a HTML document is really implemented the same way as a text node in an XML document.</info> - </macro> - <macro name='INPUT_CHUNK' file='parserInternals'> - <info>The parser tries to always have that amount of input ready. One of the point is providing context when reporting errors.</info> - </macro> - <macro name='IS_ASCII_DIGIT' file='parserInternals'> - <info>Macro to check [0-9]</info> - <arg name='c' info='an xmlChar value'/> - </macro> - <macro name='IS_ASCII_LETTER' file='parserInternals'> - <info>Macro to check [a-zA-Z]</info> - <arg name='c' info='an xmlChar value'/> - </macro> - <macro name='IS_BASECHAR' file='parserInternals'> - <info>Macro to check the following production in the XML spec: [85] BaseChar ::= ... long list see REC ...</info> - <arg name='c' info='an UNICODE value (int)'/> - </macro> - <macro name='IS_BLANK' file='parserInternals'> - <info>Macro to check the following production in the XML spec: [3] S ::= (#x20 | #x9 | #xD | #xA)+</info> - <arg name='c' info='an UNICODE value (int)'/> - </macro> - <macro name='IS_BLANK_CH' file='parserInternals'> - <info>Behaviour same as IS_BLANK</info> - <arg name='c' info='an xmlChar value (normally unsigned char)'/> - </macro> - <macro name='IS_BYTE_CHAR' file='parserInternals'> - <info>Macro to check the following production in the XML spec: [2] Char ::= #x9 | #xA | #xD | [#x20...] any byte character in the accepted range</info> - <arg name='c' info='an byte value (int)'/> - </macro> - <macro name='IS_CHAR' file='parserInternals'> - <info>Macro to check the following production in the XML spec: [2] Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF] any Unicode character, excluding the surrogate blocks, FFFE, and FFFF.</info> - <arg name='c' info='an UNICODE value (int)'/> - </macro> - <macro name='IS_CHAR_CH' file='parserInternals'> - <info>Behaves like IS_CHAR on single-byte value</info> - <arg name='c' info='an xmlChar (usually an unsigned char)'/> - </macro> - <macro name='IS_COMBINING' file='parserInternals'> - <info>Macro to check the following production in the XML spec: [87] CombiningChar ::= ... long list see REC ...</info> - <arg name='c' info='an UNICODE value (int)'/> - </macro> - <macro name='IS_COMBINING_CH' file='parserInternals'> - <info>Always false (all combining chars > 0xff)</info> - <arg name='c' info='an xmlChar (usually an unsigned char)'/> - </macro> - <macro name='IS_DIGIT' file='parserInternals'> - <info>Macro to check the following production in the XML spec: [88] Digit ::= ... long list see REC ...</info> - <arg name='c' info='an UNICODE value (int)'/> - </macro> - <macro name='IS_DIGIT_CH' file='parserInternals'> - <info>Behaves like IS_DIGIT but with a single byte argument</info> - <arg name='c' info='an xmlChar value (usually an unsigned char)'/> - </macro> - <macro name='IS_EXTENDER' file='parserInternals'> - <info>Macro to check the following production in the XML spec: [89] Extender ::= #x00B7 | #x02D0 | #x02D1 | #x0387 | #x0640 | #x0E46 | #x0EC6 | #x3005 | [#x3031-#x3035] | [#x309D-#x309E] | [#x30FC-#x30FE]</info> - <arg name='c' info='an UNICODE value (int)'/> - </macro> - <macro name='IS_EXTENDER_CH' file='parserInternals'> - <info>Behaves like IS_EXTENDER but with a single-byte argument</info> - <arg name='c' info='an xmlChar value (usually an unsigned char)'/> - </macro> - <macro name='IS_IDEOGRAPHIC' file='parserInternals'> - <info>Macro to check the following production in the XML spec: [86] Ideographic ::= [#x4E00-#x9FA5] | #x3007 | [#x3021-#x3029]</info> - <arg name='c' info='an UNICODE value (int)'/> - </macro> - <macro name='IS_LETTER' file='parserInternals'> - <info>Macro to check the following production in the XML spec: [84] Letter ::= BaseChar | Ideographic</info> - <arg name='c' info='an UNICODE value (int)'/> - </macro> - <macro name='IS_LETTER_CH' file='parserInternals'> - <info>Macro behaves like IS_LETTER, but only check base chars</info> - <arg name='c' info='an xmlChar value (normally unsigned char)'/> - </macro> - <macro name='IS_PUBIDCHAR' file='parserInternals'> - <info>Macro to check the following production in the XML spec: [13] PubidChar ::= #x20 | #xD | #xA | [a-zA-Z0-9] | [-'()+,./:=?;!*#@$_%]</info> - <arg name='c' info='an UNICODE value (int)'/> - </macro> - <macro name='IS_PUBIDCHAR_CH' file='parserInternals'> - <info>Same as IS_PUBIDCHAR but for single-byte value</info> - <arg name='c' info='an xmlChar value (normally unsigned char)'/> - </macro> - <macro name='LIBXML_AUTOMATA_ENABLED' file='xmlversion'> - <info>Whether the automata interfaces are compiled in</info> - </macro> - <macro name='LIBXML_C14N_ENABLED' file='xmlversion'> - <info>Whether the Canonicalization support is configured in</info> - </macro> - <macro name='LIBXML_CATALOG_ENABLED' file='xmlversion'> - <info>Whether the Catalog support is configured in</info> - </macro> - <macro name='LIBXML_DEBUG_ENABLED' file='xmlversion'> - <info>Whether Debugging module is configured in</info> - </macro> - <macro name='LIBXML_DEBUG_RUNTIME' file='xmlversion'> - <info>Whether the runtime debugging is configured in</info> - </macro> - <macro name='LIBXML_DLL_IMPORT' file='xmlexports'> - </macro> - <macro name='LIBXML_DOCB_ENABLED' file='xmlversion'> - <info>Whether the SGML Docbook support is configured in</info> - </macro> - <macro name='LIBXML_DOTTED_VERSION' file='xmlversion'> - <info>the version string like "1.2.3"</info> - </macro> - <macro name='LIBXML_EXPR_ENABLED' file='xmlversion'> - <info>Whether the formal expressions interfaces are compiled in</info> - </macro> - <macro name='LIBXML_FTP_ENABLED' file='xmlversion'> - <info>Whether the FTP support is configured in</info> - </macro> - <macro name='LIBXML_HTML_ENABLED' file='xmlversion'> - <info>Whether the HTML support is configured in</info> - </macro> - <macro name='LIBXML_HTTP_ENABLED' file='xmlversion'> - <info>Whether the HTTP support is configured in</info> - </macro> - <macro name='LIBXML_ICONV_ENABLED' file='xmlversion'> - <info>Whether iconv support is available</info> - </macro> - <macro name='LIBXML_ISO8859X_ENABLED' file='xmlversion'> - <info>Whether ISO-8859-* support is made available in case iconv is not</info> - </macro> - <macro name='LIBXML_LEGACY_ENABLED' file='xmlversion'> - <info>Whether the deprecated APIs are compiled in for compatibility</info> - </macro> - <macro name='LIBXML_MODULES_ENABLED' file='xmlversion'> - <info>Whether the module interfaces are compiled in</info> - </macro> - <macro name='LIBXML_MODULE_EXTENSION' file='xmlversion'> - <info>the string suffix used by dynamic modules (usually shared libraries)</info> - </macro> - <macro name='LIBXML_OUTPUT_ENABLED' file='xmlversion'> - <info>Whether the serialization/saving support is configured in</info> - </macro> - <macro name='LIBXML_PATTERN_ENABLED' file='xmlversion'> - <info>Whether the xmlPattern node selection interface is configured in</info> - </macro> - <macro name='LIBXML_PUSH_ENABLED' file='xmlversion'> - <info>Whether the push parsing interfaces are configured in</info> - </macro> - <macro name='LIBXML_READER_ENABLED' file='xmlversion'> - <info>Whether the xmlReader parsing interface is configured in</info> - </macro> - <macro name='LIBXML_REGEXP_ENABLED' file='xmlversion'> - <info>Whether the regular expressions interfaces are compiled in</info> - </macro> - <macro name='LIBXML_SAX1_ENABLED' file='xmlversion'> - <info>Whether the older SAX1 interface is configured in</info> - </macro> - <macro name='LIBXML_SCHEMAS_ENABLED' file='xmlversion'> - <info>Whether the Schemas validation interfaces are compiled in</info> - </macro> - <macro name='LIBXML_SCHEMATRON_ENABLED' file='xmlversion'> - <info>Whether the Schematron validation interfaces are compiled in</info> - </macro> - <macro name='LIBXML_TEST_VERSION' file='xmlversion'> - <info>Macro to check that the libxml version in use is compatible with the version the software has been compiled against</info> - </macro> - <macro name='LIBXML_THREAD_ENABLED' file='xmlversion'> - <info>Whether the thread support is configured in</info> - </macro> - <macro name='LIBXML_TREE_ENABLED' file='xmlversion'> - <info>Whether the DOM like tree manipulation API support is configured in</info> - </macro> - <macro name='LIBXML_UNICODE_ENABLED' file='xmlversion'> - <info>Whether the Unicode related interfaces are compiled in</info> - </macro> - <macro name='LIBXML_VALID_ENABLED' file='xmlversion'> - <info>Whether the DTD validation support is configured in</info> - </macro> - <macro name='LIBXML_VERSION' file='xmlversion'> - <info>the version number: 1.2.3 value is 10203</info> - </macro> - <macro name='LIBXML_VERSION_EXTRA' file='xmlversion'> - <info>extra version information, used to show a CVS compilation</info> - </macro> - <macro name='LIBXML_VERSION_STRING' file='xmlversion'> - <info>the version number string, 1.2.3 value is "10203"</info> - </macro> - <macro name='LIBXML_WRITER_ENABLED' file='xmlversion'> - <info>Whether the xmlWriter saving interface is configured in</info> - </macro> - <macro name='LIBXML_XINCLUDE_ENABLED' file='xmlversion'> - <info>Whether XInclude is configured in</info> - </macro> - <macro name='LIBXML_XPATH_ENABLED' file='xmlversion'> - <info>Whether XPath is configured in</info> - </macro> - <macro name='LIBXML_XPTR_ENABLED' file='xmlversion'> - <info>Whether XPointer is configured in</info> - </macro> - <macro name='LIBXML_ZLIB_ENABLED' file='xmlversion'> - <info>Whether the Zlib support is compiled in</info> - </macro> - <macro name='MOVETO_ENDTAG' file='parserInternals'> - <info>Skips to the next '>' char.</info> - <arg name='p' info='and UTF8 string pointer'/> - </macro> - <macro name='MOVETO_STARTTAG' file='parserInternals'> - <info>Skips to the next '<' char.</info> - <arg name='p' info='and UTF8 string pointer'/> - </macro> - <macro name='SKIP_EOL' file='parserInternals'> - <info>Skips the end of line chars.</info> - <arg name='p' info='and UTF8 string pointer'/> - </macro> - <macro name='WITHOUT_TRIO' file='xmlversion'> - <info>defined if the trio support should not be configured in</info> - </macro> - <macro name='WITH_TRIO' file='xmlversion'> - <info>defined if the trio support need to be configured in</info> - </macro> - <macro name='XINCLUDE_FALLBACK' file='xinclude'> - <info>Macro defining "fallback"</info> - </macro> - <macro name='XINCLUDE_HREF' file='xinclude'> - <info>Macro defining "href"</info> - </macro> - <macro name='XINCLUDE_NODE' file='xinclude'> - <info>Macro defining "include"</info> - </macro> - <macro name='XINCLUDE_NS' file='xinclude'> - <info>Macro defining the Xinclude namespace: http://www.w3.org/2003/XInclude</info> - </macro> - <macro name='XINCLUDE_OLD_NS' file='xinclude'> - <info>Macro defining the draft Xinclude namespace: http://www.w3.org/2001/XInclude</info> - </macro> - <macro name='XINCLUDE_PARSE' file='xinclude'> - <info>Macro defining "parse"</info> - </macro> - <macro name='XINCLUDE_PARSE_ENCODING' file='xinclude'> - <info>Macro defining "encoding"</info> - </macro> - <macro name='XINCLUDE_PARSE_TEXT' file='xinclude'> - <info>Macro defining "text"</info> - </macro> - <macro name='XINCLUDE_PARSE_XML' file='xinclude'> - <info>Macro defining "xml"</info> - </macro> - <macro name='XINCLUDE_PARSE_XPOINTER' file='xinclude'> - <info>Macro defining "xpointer"</info> - </macro> - <macro name='XMLCALL' file='xmlexports'> - </macro> - <macro name='XMLCDECL' file='xmlexports'> - </macro> - <macro name='XMLPUBFUN' file='xmlexports'> - </macro> - <macro name='XMLPUBVAR' file='xmlexports'> - </macro> - <macro name='XML_CAST_FPTR' file='hash'> - <info>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</info> - <arg name='fptr' info='pointer to a function'/> - </macro> - <macro name='XML_CATALOGS_NAMESPACE' file='catalog'> - <info>The namespace for the XML Catalogs elements.</info> - </macro> - <macro name='XML_CATALOG_PI' file='catalog'> - <info>The specific XML Catalog Processing Instuction name.</info> - </macro> - <macro name='XML_COMPLETE_ATTRS' file='parser'> - <info>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.</info> - </macro> - <macro name='XML_CTXT_FINISH_DTD_0' file='valid'> - <info>Special value for finishDtd field when embedded in an xmlParserCtxt</info> - </macro> - <macro name='XML_CTXT_FINISH_DTD_1' file='valid'> - <info>Special value for finishDtd field when embedded in an xmlParserCtxt</info> - </macro> - <macro name='XML_DEFAULT_VERSION' file='parser'> - <info>The default version of XML used: 1.0</info> - </macro> - <macro name='XML_DETECT_IDS' file='parser'> - <info>Bit in the loadsubset context field to tell to do ID/REFs lookups. Use it to initialize xmlLoadExtDtdDefaultValue.</info> - </macro> - <macro name='XML_GET_CONTENT' file='tree'> - <info>Macro to extract the content pointer of a node.</info> - </macro> - <macro name='XML_GET_LINE' file='tree'> - <info>Macro to extract the line number of an element node.</info> - </macro> - <macro name='XML_LOCAL_NAMESPACE' file='tree'> - <info>A namespace declaration node.</info> - </macro> - <macro name='XML_MAX_NAMELEN' file='parserInternals'> - <info>Identifiers can be longer, but this will be more costly at runtime.</info> - </macro> - <macro name='XML_SAX2_MAGIC' file='parser'> - <info>Special constant found in SAX2 blocks initialized fields</info> - </macro> - <macro name='XML_SCHEMAS_ANYATTR_LAX' file='schemasInternals'> - <info>Ignore validation non definition on attributes Obsolete, not used anymore.</info> - </macro> - <macro name='XML_SCHEMAS_ANYATTR_SKIP' file='schemasInternals'> - <info>Skip unknown attribute from validation Obsolete, not used anymore.</info> - </macro> - <macro name='XML_SCHEMAS_ANYATTR_STRICT' file='schemasInternals'> - <info>Apply strict validation rules on attributes Obsolete, not used anymore.</info> - </macro> - <macro name='XML_SCHEMAS_ANY_LAX' file='schemasInternals'> - <info>Used by wildcards. Validate if type found, don't worry if not found</info> - </macro> - <macro name='XML_SCHEMAS_ANY_SKIP' file='schemasInternals'> - <info>Skip unknown attribute from validation</info> - </macro> - <macro name='XML_SCHEMAS_ANY_STRICT' file='schemasInternals'> - <info>Used by wildcards. Apply strict validation rules</info> - </macro> - <macro name='XML_SCHEMAS_ATTRGROUP_GLOBAL' file='schemasInternals'> - <info>The attribute wildcard has been already builded.</info> - </macro> - <macro name='XML_SCHEMAS_ATTRGROUP_HAS_REFS' file='schemasInternals'> - <info>Whether this attr. group contains attr. group references.</info> - </macro> - <macro name='XML_SCHEMAS_ATTRGROUP_MARKED' file='schemasInternals'> - <info>Marks the attr group as marked; used for circular checks.</info> - </macro> - <macro name='XML_SCHEMAS_ATTRGROUP_REDEFINED' file='schemasInternals'> - <info>The attr group was redefined.</info> - </macro> - <macro name='XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED' file='schemasInternals'> - <info>The attribute wildcard has been already builded.</info> - </macro> - <macro name='XML_SCHEMAS_ATTR_FIXED' file='schemasInternals'> - <info>the attribute has a fixed value</info> - </macro> - <macro name='XML_SCHEMAS_ATTR_GLOBAL' file='schemasInternals'> - <info>allow elements in no namespace</info> - </macro> - <macro name='XML_SCHEMAS_ATTR_INTERNAL_RESOLVED' file='schemasInternals'> - <info>this is set when the "type" and "ref" references have been resolved.</info> - </macro> - <macro name='XML_SCHEMAS_ATTR_NSDEFAULT' file='schemasInternals'> - <info>allow elements in no namespace</info> - </macro> - <macro name='XML_SCHEMAS_ATTR_USE_OPTIONAL' file='schemasInternals'> - <info>The attribute is optional.</info> - </macro> - <macro name='XML_SCHEMAS_ATTR_USE_PROHIBITED' file='schemasInternals'> - <info>Used by wildcards. The attribute is prohibited.</info> - </macro> - <macro name='XML_SCHEMAS_ATTR_USE_REQUIRED' file='schemasInternals'> - <info>The attribute is required.</info> - </macro> - <macro name='XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION' file='schemasInternals'> - <info>the schema has "extension" in the set of blockDefault.</info> - </macro> - <macro name='XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION' file='schemasInternals'> - <info>the schema has "restriction" in the set of blockDefault.</info> - </macro> - <macro name='XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION' file='schemasInternals'> - <info>the schema has "substitution" in the set of blockDefault.</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_ABSTRACT' file='schemasInternals'> - <info>the element is abstract</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_BLOCK_ABSENT' file='schemasInternals'> - <info>the "block" attribute is absent</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_BLOCK_EXTENSION' file='schemasInternals'> - <info>disallowed substitutions are absent</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_BLOCK_RESTRICTION' file='schemasInternals'> - <info>disallowed substitutions: "restriction"</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION' file='schemasInternals'> - <info>disallowed substitutions: "substituion"</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_CIRCULAR' file='schemasInternals'> - <info>a helper flag for the search of circular references.</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_DEFAULT' file='schemasInternals'> - <info>the element has a default value</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_FINAL_ABSENT' file='schemasInternals'> - <info>substitution group exclusions are absent</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_FINAL_EXTENSION' file='schemasInternals'> - <info>substitution group exclusions: "extension"</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_FINAL_RESTRICTION' file='schemasInternals'> - <info>substitution group exclusions: "restriction"</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_FIXED' file='schemasInternals'> - <info>the element has a fixed value</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_GLOBAL' file='schemasInternals'> - <info>the element is global</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_INTERNAL_CHECKED' file='schemasInternals'> - <info>this is set when the elem decl has been checked against all constraints</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_INTERNAL_RESOLVED' file='schemasInternals'> - <info>this is set when "type", "ref", "substitutionGroup" references have been resolved.</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_NILLABLE' file='schemasInternals'> - <info>the element is nillable</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_NSDEFAULT' file='schemasInternals'> - <info>allow elements in no namespace Obsolete, not used anymore.</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_REF' file='schemasInternals'> - <info>the element is a reference to a type</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD' file='schemasInternals'> - <info>the declaration is a substitution group head</info> - </macro> - <macro name='XML_SCHEMAS_ELEM_TOPLEVEL' file='schemasInternals'> - <info>the element is top level obsolete: use XML_SCHEMAS_ELEM_GLOBAL instead</info> - </macro> - <macro name='XML_SCHEMAS_FACET_COLLAPSE' file='schemasInternals'> - <info>collapse the types of the facet</info> - </macro> - <macro name='XML_SCHEMAS_FACET_PRESERVE' file='schemasInternals'> - <info>preserve the type of the facet</info> - </macro> - <macro name='XML_SCHEMAS_FACET_REPLACE' file='schemasInternals'> - <info>replace the type of the facet</info> - </macro> - <macro name='XML_SCHEMAS_FACET_UNKNOWN' file='schemasInternals'> - <info>unknown facet handling</info> - </macro> - <macro name='XML_SCHEMAS_FINAL_DEFAULT_EXTENSION' file='schemasInternals'> - <info>the schema has "extension" in the set of finalDefault.</info> - </macro> - <macro name='XML_SCHEMAS_FINAL_DEFAULT_LIST' file='schemasInternals'> - <info>the cshema has "list" in the set of finalDefault.</info> - </macro> - <macro name='XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION' file='schemasInternals'> - <info>the schema has "restriction" in the set of finalDefault.</info> - </macro> - <macro name='XML_SCHEMAS_FINAL_DEFAULT_UNION' file='schemasInternals'> - <info>the schema has "union" in the set of finalDefault.</info> - </macro> - <macro name='XML_SCHEMAS_INCLUDING_CONVERT_NS' file='schemasInternals'> - <info>the schema is currently including an other schema with no target namespace.</info> - </macro> - <macro name='XML_SCHEMAS_QUALIF_ATTR' file='schemasInternals'> - <info>Reflects attributeFormDefault == qualified in an XML schema document.</info> - </macro> - <macro name='XML_SCHEMAS_QUALIF_ELEM' file='schemasInternals'> - <info>Reflects elementFormDefault == qualified in an XML schema document.</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_ABSTRACT' file='schemasInternals'> - <info>the simple/complexType is abstract.</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_BLOCK_DEFAULT' file='schemasInternals'> - <info>the complexType did not specify 'block' so use the default of the <schema> item.</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_BLOCK_EXTENSION' file='schemasInternals'> - <info>the complexType has a 'block' of "extension".</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_BLOCK_RESTRICTION' file='schemasInternals'> - <info>the complexType has a 'block' of "restriction".</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE' file='schemasInternals'> - <info>Marks the item as a builtin primitive.</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION' file='schemasInternals'> - <info>the simple or complex type has a derivation method of "extension".</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION' file='schemasInternals'> - <info>the simple or complex type has a derivation method of "restriction".</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_FACETSNEEDVALUE' file='schemasInternals'> - <info>indicates if the facets need a computed value</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_FINAL_DEFAULT' file='schemasInternals'> - <info>the simpleType has a final of "default".</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_FINAL_EXTENSION' file='schemasInternals'> - <info>the complexType has a final of "extension".</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_FINAL_LIST' file='schemasInternals'> - <info>the simpleType has a final of "list".</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_FINAL_RESTRICTION' file='schemasInternals'> - <info>the simpleType/complexType has a final of "restriction".</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_FINAL_UNION' file='schemasInternals'> - <info>the simpleType has a final of "union".</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_FIXUP_1' file='schemasInternals'> - <info>First stage of fixup was done.</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_GLOBAL' file='schemasInternals'> - <info>the type is global</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_HAS_FACETS' file='schemasInternals'> - <info>has facets</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_INTERNAL_INVALID' file='schemasInternals'> - <info>indicates that the type is invalid</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_INTERNAL_RESOLVED' file='schemasInternals'> - <info>indicates that the type was typefixed</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_MARKED' file='schemasInternals'> - <info>Marks the item as marked; used for circular checks.</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_MIXED' file='schemasInternals'> - <info>the element content type is mixed</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_NORMVALUENEEDED' file='schemasInternals'> - <info>indicates if the facets (pattern) need a normalized value</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD' file='schemasInternals'> - <info>the complexType owns an attribute wildcard, i.e. it can be freed by the complexType</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_REDEFINED' file='schemasInternals'> - <info>The type was redefined.</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_VARIETY_ABSENT' file='schemasInternals'> - <info>the simpleType has a variety of "absent". TODO: Actually not necessary :-/, since if none of the variety flags occur then it's automatically absent.</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_VARIETY_ATOMIC' file='schemasInternals'> - <info>the simpleType has a variety of "union".</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_VARIETY_LIST' file='schemasInternals'> - <info>the simpleType has a variety of "list".</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_VARIETY_UNION' file='schemasInternals'> - <info>the simpleType has a variety of "union".</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE' file='schemasInternals'> - <info>a whitespace-facet value of "collapse"</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE' file='schemasInternals'> - <info>a whitespace-facet value of "preserve"</info> - </macro> - <macro name='XML_SCHEMAS_TYPE_WHITESPACE_REPLACE' file='schemasInternals'> - <info>a whitespace-facet value of "replace"</info> - </macro> - <macro name='XML_SCHEMAS_WILDCARD_COMPLETE' file='schemasInternals'> - <info>If the wildcard is complete.</info> - </macro> - <macro name='XML_SKIP_IDS' file='parser'> - <info>Bit in the loadsubset context field to tell to not do ID/REFs registration. Used to initialize xmlLoadExtDtdDefaultValue in some special cases.</info> - </macro> - <macro name='XML_SUBSTITUTE_BOTH' file='parserInternals'> - <info>Both general and parameter entities need to be substituted.</info> - </macro> - <macro name='XML_SUBSTITUTE_NONE' file='parserInternals'> - <info>If no entities need to be substituted.</info> - </macro> - <macro name='XML_SUBSTITUTE_PEREF' file='parserInternals'> - <info>Whether parameter entities need to be substituted.</info> - </macro> - <macro name='XML_SUBSTITUTE_REF' file='parserInternals'> - <info>Whether general entities need to be substituted.</info> - </macro> - <macro name='XML_XML_ID' file='tree'> - <info>This is the name for the special xml:id attribute</info> - </macro> - <macro name='XML_XML_NAMESPACE' file='tree'> - <info>This is the namespace for the special xml: prefix predefined in the XML Namespace specification.</info> - </macro> - <macro name='XML_XPATH_CHECKNS' file='xpath'> - <info>check namespaces at compilation</info> - </macro> - <macro name='XML_XPATH_NOVAR' file='xpath'> - <info>forbid variables in expression</info> - </macro> - <macro name='XP_ERROR' file='xpathInternals'> - <info>Macro to raise an XPath error and return.</info> - <arg name='X' info='the error code'/> - </macro> - <macro name='XP_ERROR0' file='xpathInternals'> - <info>Macro to raise an XPath error and return 0.</info> - <arg name='X' info='the error code'/> - </macro> - <macro name='_REENTRANT' file='xmlexports'> - </macro> - <macro name='htmlDefaultSubelement' file='HTMLparser'> - <info>Returns the default subelement for this element</info> - <arg name='elt' info='HTML element'/> - </macro> - <macro name='htmlElementAllowedHereDesc' file='HTMLparser'> - <info>Checks whether an HTML element description may be a direct child of the specified element. Returns 1 if allowed; 0 otherwise.</info> - <arg name='parent' info='HTML parent element'/> - <arg name='elt' info='HTML element'/> - </macro> - <macro name='htmlRequiredAttrs' file='HTMLparser'> - <info>Returns the attributes required for the specified element.</info> - <arg name='elt' info='HTML element'/> - </macro> - <macro name='xmlChildrenNode' file='tree'> - <info>Macro for compatibility naming layer with libxml1. Maps to "children."</info> - </macro> - <macro name='xmlIsBaseCharQ' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsBaseChar_ch' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsBlankQ' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsBlank_ch' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsCharQ' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsChar_ch' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsCombiningQ' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsDigitQ' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsDigit_ch' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsExtenderQ' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsExtender_ch' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsIdeographicQ' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsPubidCharQ' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlIsPubidChar_ch' file='chvalid'> - <info>Automatically generated by genChRanges.py</info> - <arg name='c' info='char to validate'/> - </macro> - <macro name='xmlRootNode' file='tree'> - <info>Macro for compatibility naming layer with libxml1. Maps to "children".</info> - </macro> - <macro name='xmlTextWriterWriteDocType' file='xmlwriter'> - <info>this macro maps to xmlTextWriterWriteDTD</info> - </macro> - <macro name='xmlTextWriterWriteProcessingInstruction' file='xmlwriter'> - <info>This macro maps to xmlTextWriterWritePI</info> - </macro> - <macro name='xmlXPathCheckError' file='xpathInternals'> - <info>Check if an XPath error was raised. Returns true if an error has been raised, false otherwise.</info> - <arg name='ctxt' info='an XPath parser context'/> - </macro> - <macro name='xmlXPathEmptyNodeSet' file='xpathInternals'> - <info>Empties a node-set.</info> - <arg name='ns' info='a node-set'/> - </macro> - <macro name='xmlXPathGetContextNode' file='xpathInternals'> - <info>Get the context node of an XPath context. Returns the context node.</info> - <arg name='ctxt' info='an XPath parser context'/> - </macro> - <macro name='xmlXPathGetDocument' file='xpathInternals'> - <info>Get the document of an XPath context. Returns the context document.</info> - <arg name='ctxt' info='an XPath parser context'/> - </macro> - <macro name='xmlXPathGetError' file='xpathInternals'> - <info>Get the error code of an XPath context. Returns the context error.</info> - <arg name='ctxt' info='an XPath parser context'/> - </macro> - <macro name='xmlXPathNodeSetGetLength' file='xpath'> - <info>Implement a functionality similar to the DOM NodeList.length. Returns the number of nodes in the node-set.</info> - <arg name='ns' info='a node-set'/> - </macro> - <macro name='xmlXPathNodeSetIsEmpty' file='xpath'> - <info>Checks whether @ns is empty or not. Returns %TRUE if @ns is an empty node-set.</info> - <arg name='ns' info='a node-set'/> - </macro> - <macro name='xmlXPathNodeSetItem' file='xpath'> - <info>Implements a functionality similar to the DOM NodeList.item(). Returns the xmlNodePtr at the given @index in @ns or NULL if @index is out of range (0 to length-1)</info> - <arg name='ns' info='a node-set'/> - <arg name='index' info='index of a node in the set'/> - </macro> - <macro name='xmlXPathReturnBoolean' file='xpathInternals'> - <info>Pushes the boolean @val on the context stack.</info> - <arg name='ctxt' info='an XPath parser context'/> - <arg name='val' info='a boolean'/> - </macro> - <macro name='xmlXPathReturnEmptyNodeSet' file='xpathInternals'> - <info>Pushes an empty node-set on the context stack.</info> - <arg name='ctxt' info='an XPath parser context'/> - </macro> - <macro name='xmlXPathReturnEmptyString' file='xpathInternals'> - <info>Pushes an empty string on the stack.</info> - <arg name='ctxt' info='an XPath parser context'/> - </macro> - <macro name='xmlXPathReturnExternal' file='xpathInternals'> - <info>Pushes user data on the context stack.</info> - <arg name='ctxt' info='an XPath parser context'/> - <arg name='val' info='user data'/> - </macro> - <macro name='xmlXPathReturnFalse' file='xpathInternals'> - <info>Pushes false on the context stack.</info> - <arg name='ctxt' info='an XPath parser context'/> - </macro> - <macro name='xmlXPathReturnNodeSet' file='xpathInternals'> - <info>Pushes the node-set @ns on the context stack.</info> - <arg name='ctxt' info='an XPath parser context'/> - <arg name='ns' info='a node-set'/> - </macro> - <macro name='xmlXPathReturnNumber' file='xpathInternals'> - <info>Pushes the double @val on the context stack.</info> - <arg name='ctxt' info='an XPath parser context'/> - <arg name='val' info='a double'/> - </macro> - <macro name='xmlXPathReturnString' file='xpathInternals'> - <info>Pushes the string @str on the context stack.</info> - <arg name='ctxt' info='an XPath parser context'/> - <arg name='str' info='a string'/> - </macro> - <macro name='xmlXPathReturnTrue' file='xpathInternals'> - <info>Pushes true on the context stack.</info> - <arg name='ctxt' info='an XPath parser context'/> - </macro> - <macro name='xmlXPathSetArityError' file='xpathInternals'> - <info>Raises an XPATH_INVALID_ARITY error.</info> - <arg name='ctxt' info='an XPath parser context'/> - </macro> - <macro name='xmlXPathSetError' file='xpathInternals'> - <info>Raises an error.</info> - <arg name='ctxt' info='an XPath parser context'/> - <arg name='err' info='an xmlXPathError code'/> - </macro> - <macro name='xmlXPathSetTypeError' file='xpathInternals'> - <info>Raises an XPATH_INVALID_TYPE error.</info> - <arg name='ctxt' info='an XPath parser context'/> - </macro> - <macro name='xmlXPathStackIsExternal' file='xpathInternals'> - <info>Checks if the current value on the XPath stack is an external object. Returns true if the current object on the stack is an external object.</info> - <arg name='ctxt' info='an XPath parser context'/> - </macro> - <macro name='xmlXPathStackIsNodeSet' file='xpathInternals'> - <info>Check if the current value on the XPath stack is a node set or an XSLT value tree. Returns true if the current object on the stack is a node-set.</info> - <arg name='ctxt' info='an XPath parser context'/> - </macro> - <enum name='HTML_DEPRECATED' file='HTMLparser' value='2' type='htmlStatus'/> - <enum name='HTML_INVALID' file='HTMLparser' value='1' type='htmlStatus'/> - <enum name='HTML_NA' file='HTMLparser' value='0' type='htmlStatus' info='something we don't check at all'/> - <enum name='HTML_PARSE_COMPACT' file='HTMLparser' value='65536' type='htmlParserOption' info=' compact small text nodes'/> - <enum name='HTML_PARSE_NOBLANKS' file='HTMLparser' value='256' type='htmlParserOption' info='remove blank nodes'/> - <enum name='HTML_PARSE_NOERROR' file='HTMLparser' value='32' type='htmlParserOption' info='suppress error reports'/> - <enum name='HTML_PARSE_NONET' file='HTMLparser' value='2048' type='htmlParserOption' info='Forbid network access'/> - <enum name='HTML_PARSE_NOWARNING' file='HTMLparser' value='64' type='htmlParserOption' info='suppress warning reports'/> - <enum name='HTML_PARSE_PEDANTIC' file='HTMLparser' value='128' type='htmlParserOption' info='pedantic error reporting'/> - <enum name='HTML_PARSE_RECOVER' file='HTMLparser' value='1' type='htmlParserOption' info='Relaxed parsing'/> - <enum name='HTML_REQUIRED' file='HTMLparser' value='12' type='htmlStatus' info=' VALID bit set so ( & HTML_VALID ) is TRUE'/> - <enum name='HTML_VALID' file='HTMLparser' value='4' type='htmlStatus'/> - <enum name='XLINK_ACTUATE_AUTO' file='xlink' value='1' type='xlinkActuate'/> - <enum name='XLINK_ACTUATE_NONE' file='xlink' value='0' type='xlinkActuate'/> - <enum name='XLINK_ACTUATE_ONREQUEST' file='xlink' value='2' type='xlinkActuate'/> - <enum name='XLINK_SHOW_EMBED' file='xlink' value='2' type='xlinkShow'/> - <enum name='XLINK_SHOW_NEW' file='xlink' value='1' type='xlinkShow'/> - <enum name='XLINK_SHOW_NONE' file='xlink' value='0' type='xlinkShow'/> - <enum name='XLINK_SHOW_REPLACE' file='xlink' value='3' type='xlinkShow'/> - <enum name='XLINK_TYPE_EXTENDED' file='xlink' value='2' type='xlinkType'/> - <enum name='XLINK_TYPE_EXTENDED_SET' file='xlink' value='3' type='xlinkType'/> - <enum name='XLINK_TYPE_NONE' file='xlink' value='0' type='xlinkType'/> - <enum name='XLINK_TYPE_SIMPLE' file='xlink' value='1' type='xlinkType'/> - <enum name='XML_ATTRIBUTE_CDATA' file='tree' value='1' type='xmlAttributeType'/> - <enum name='XML_ATTRIBUTE_DECL' file='tree' value='16' type='xmlElementType'/> - <enum name='XML_ATTRIBUTE_ENTITIES' file='tree' value='6' type='xmlAttributeType'/> - <enum name='XML_ATTRIBUTE_ENTITY' file='tree' value='5' type='xmlAttributeType'/> - <enum name='XML_ATTRIBUTE_ENUMERATION' file='tree' value='9' type='xmlAttributeType'/> - <enum name='XML_ATTRIBUTE_FIXED' file='tree' value='4' type='xmlAttributeDefault'/> - <enum name='XML_ATTRIBUTE_ID' file='tree' value='2' type='xmlAttributeType'/> - <enum name='XML_ATTRIBUTE_IDREF' file='tree' value='3' type='xmlAttributeType'/> - <enum name='XML_ATTRIBUTE_IDREFS' file='tree' value='4' type='xmlAttributeType'/> - <enum name='XML_ATTRIBUTE_IMPLIED' file='tree' value='3' type='xmlAttributeDefault'/> - <enum name='XML_ATTRIBUTE_NMTOKEN' file='tree' value='7' type='xmlAttributeType'/> - <enum name='XML_ATTRIBUTE_NMTOKENS' file='tree' value='8' type='xmlAttributeType'/> - <enum name='XML_ATTRIBUTE_NODE' file='tree' value='2' type='xmlElementType'/> - <enum name='XML_ATTRIBUTE_NONE' file='tree' value='1' type='xmlAttributeDefault'/> - <enum name='XML_ATTRIBUTE_NOTATION' file='tree' value='10' type='xmlAttributeType'/> - <enum name='XML_ATTRIBUTE_REQUIRED' file='tree' value='2' type='xmlAttributeDefault'/> - <enum name='XML_BUFFER_ALLOC_DOUBLEIT' file='tree' value='1' type='xmlBufferAllocationScheme'/> - <enum name='XML_BUFFER_ALLOC_EXACT' file='tree' value='2' type='xmlBufferAllocationScheme'/> - <enum name='XML_BUFFER_ALLOC_IMMUTABLE' file='tree' value='3' type='xmlBufferAllocationScheme'/> - <enum name='XML_C14N_CREATE_CTXT' file='xmlerror' value='1950' type='xmlParserErrors'/> - <enum name='XML_C14N_CREATE_STACK' file='xmlerror' value='1952' type='xmlParserErrors' info='1952'/> - <enum name='XML_C14N_INVALID_NODE' file='xmlerror' value='1953' type='xmlParserErrors' info='1953'/> - <enum name='XML_C14N_RELATIVE_NAMESPACE' file='xmlerror' value='1955' type='xmlParserErrors' info='1955'/> - <enum name='XML_C14N_REQUIRES_UTF8' file='xmlerror' value='1951' type='xmlParserErrors' info='1951'/> - <enum name='XML_C14N_UNKNOW_NODE' file='xmlerror' value='1954' type='xmlParserErrors' info='1954'/> - <enum name='XML_CATALOG_ENTRY_BROKEN' file='xmlerror' value='1651' type='xmlParserErrors' info='1651'/> - <enum name='XML_CATALOG_MISSING_ATTR' file='xmlerror' value='1650' type='xmlParserErrors'/> - <enum name='XML_CATALOG_NOT_CATALOG' file='xmlerror' value='1653' type='xmlParserErrors' info='1653'/> - <enum name='XML_CATALOG_PREFER_VALUE' file='xmlerror' value='1652' type='xmlParserErrors' info='1652'/> - <enum name='XML_CATALOG_RECURSION' file='xmlerror' value='1654' type='xmlParserErrors' info='1654'/> - <enum name='XML_CATA_ALLOW_ALL' file='catalog' value='3' type='xmlCatalogAllow'/> - <enum name='XML_CATA_ALLOW_DOCUMENT' file='catalog' value='2' type='xmlCatalogAllow'/> - <enum name='XML_CATA_ALLOW_GLOBAL' file='catalog' value='1' type='xmlCatalogAllow'/> - <enum name='XML_CATA_ALLOW_NONE' file='catalog' value='0' type='xmlCatalogAllow'/> - <enum name='XML_CATA_PREFER_NONE' file='catalog' value='0' type='xmlCatalogPrefer'/> - <enum name='XML_CATA_PREFER_PUBLIC' file='catalog' value='1' type='xmlCatalogPrefer'/> - <enum name='XML_CATA_PREFER_SYSTEM' file='catalog' value='2' type='xmlCatalogPrefer'/> - <enum name='XML_CDATA_SECTION_NODE' file='tree' value='4' type='xmlElementType'/> - <enum name='XML_CHAR_ENCODING_2022_JP' file='encoding' value='19' type='xmlCharEncoding' info='ISO-2022-JP'/> - <enum name='XML_CHAR_ENCODING_8859_1' file='encoding' value='10' type='xmlCharEncoding' info='ISO-8859-1 ISO Latin 1'/> - <enum name='XML_CHAR_ENCODING_8859_2' file='encoding' value='11' type='xmlCharEncoding' info='ISO-8859-2 ISO Latin 2'/> - <enum name='XML_CHAR_ENCODING_8859_3' file='encoding' value='12' type='xmlCharEncoding' info='ISO-8859-3'/> - <enum name='XML_CHAR_ENCODING_8859_4' file='encoding' value='13' type='xmlCharEncoding' info='ISO-8859-4'/> - <enum name='XML_CHAR_ENCODING_8859_5' file='encoding' value='14' type='xmlCharEncoding' info='ISO-8859-5'/> - <enum name='XML_CHAR_ENCODING_8859_6' file='encoding' value='15' type='xmlCharEncoding' info='ISO-8859-6'/> - <enum name='XML_CHAR_ENCODING_8859_7' file='encoding' value='16' type='xmlCharEncoding' info='ISO-8859-7'/> - <enum name='XML_CHAR_ENCODING_8859_8' file='encoding' value='17' type='xmlCharEncoding' info='ISO-8859-8'/> - <enum name='XML_CHAR_ENCODING_8859_9' file='encoding' value='18' type='xmlCharEncoding' info='ISO-8859-9'/> - <enum name='XML_CHAR_ENCODING_ASCII' file='encoding' value='22' type='xmlCharEncoding' info=' pure ASCII'/> - <enum name='XML_CHAR_ENCODING_EBCDIC' file='encoding' value='6' type='xmlCharEncoding' info='EBCDIC uh!'/> - <enum name='XML_CHAR_ENCODING_ERROR' file='encoding' value='-1' type='xmlCharEncoding' info='No char encoding detected'/> - <enum name='XML_CHAR_ENCODING_EUC_JP' file='encoding' value='21' type='xmlCharEncoding' info='EUC-JP'/> - <enum name='XML_CHAR_ENCODING_NONE' file='encoding' value='0' type='xmlCharEncoding' info='No char encoding detected'/> - <enum name='XML_CHAR_ENCODING_SHIFT_JIS' file='encoding' value='20' type='xmlCharEncoding' info='Shift_JIS'/> - <enum name='XML_CHAR_ENCODING_UCS2' file='encoding' value='9' type='xmlCharEncoding' info='UCS-2'/> - <enum name='XML_CHAR_ENCODING_UCS4BE' file='encoding' value='5' type='xmlCharEncoding' info='UCS-4 big endian'/> - <enum name='XML_CHAR_ENCODING_UCS4LE' file='encoding' value='4' type='xmlCharEncoding' info='UCS-4 little endian'/> - <enum name='XML_CHAR_ENCODING_UCS4_2143' file='encoding' value='7' type='xmlCharEncoding' info='UCS-4 unusual ordering'/> - <enum name='XML_CHAR_ENCODING_UCS4_3412' file='encoding' value='8' type='xmlCharEncoding' info='UCS-4 unusual ordering'/> - <enum name='XML_CHAR_ENCODING_UTF16BE' file='encoding' value='3' type='xmlCharEncoding' info='UTF-16 big endian'/> - <enum name='XML_CHAR_ENCODING_UTF16LE' file='encoding' value='2' type='xmlCharEncoding' info='UTF-16 little endian'/> - <enum name='XML_CHAR_ENCODING_UTF8' file='encoding' value='1' type='xmlCharEncoding' info='UTF-8'/> - <enum name='XML_CHECK_' file='xmlerror' value='6005' type='xmlParserErrors' info='5033'/> - <enum name='XML_CHECK_ENTITY_TYPE' file='xmlerror' value='5012' type='xmlParserErrors' info='5012'/> - <enum name='XML_CHECK_FOUND_ATTRIBUTE' file='xmlerror' value='5001' type='xmlParserErrors' info='5001'/> - <enum name='XML_CHECK_FOUND_CDATA' file='xmlerror' value='5003' type='xmlParserErrors' info='5003'/> - <enum name='XML_CHECK_FOUND_COMMENT' file='xmlerror' value='5007' type='xmlParserErrors' info='5007'/> - <enum name='XML_CHECK_FOUND_DOCTYPE' file='xmlerror' value='5008' type='xmlParserErrors' info='5008'/> - <enum name='XML_CHECK_FOUND_ELEMENT' file='xmlerror' value='5000' type='xmlParserErrors'/> - <enum name='XML_CHECK_FOUND_ENTITY' file='xmlerror' value='5005' type='xmlParserErrors' info='5005'/> - <enum name='XML_CHECK_FOUND_ENTITYREF' file='xmlerror' value='5004' type='xmlParserErrors' info='5004'/> - <enum name='XML_CHECK_FOUND_FRAGMENT' file='xmlerror' value='5009' type='xmlParserErrors' info='5009'/> - <enum name='XML_CHECK_FOUND_NOTATION' file='xmlerror' value='5010' type='xmlParserErrors' info='5010'/> - <enum name='XML_CHECK_FOUND_PI' file='xmlerror' value='5006' type='xmlParserErrors' info='5006'/> - <enum name='XML_CHECK_FOUND_TEXT' file='xmlerror' value='5002' type='xmlParserErrors' info='5002'/> - <enum name='XML_CHECK_NAME_NOT_NULL' file='xmlerror' value='5037' type='xmlParserErrors' info='5037'/> - <enum name='XML_CHECK_NOT_ATTR' file='xmlerror' value='5023' type='xmlParserErrors' info='5023'/> - <enum name='XML_CHECK_NOT_ATTR_DECL' file='xmlerror' value='5024' type='xmlParserErrors' info='5024'/> - <enum name='XML_CHECK_NOT_DTD' file='xmlerror' value='5022' type='xmlParserErrors' info='5022'/> - <enum name='XML_CHECK_NOT_ELEM_DECL' file='xmlerror' value='5025' type='xmlParserErrors' info='5025'/> - <enum name='XML_CHECK_NOT_ENTITY_DECL' file='xmlerror' value='5026' type='xmlParserErrors' info='5026'/> - <enum name='XML_CHECK_NOT_NCNAME' file='xmlerror' value='5034' type='xmlParserErrors' info='5034'/> - <enum name='XML_CHECK_NOT_NS_DECL' file='xmlerror' value='5027' type='xmlParserErrors' info='5027'/> - <enum name='XML_CHECK_NOT_UTF8' file='xmlerror' value='5032' type='xmlParserErrors' info='5032'/> - <enum name='XML_CHECK_NO_DICT' file='xmlerror' value='5033' type='xmlParserErrors' info='5033'/> - <enum name='XML_CHECK_NO_DOC' file='xmlerror' value='5014' type='xmlParserErrors' info='5014'/> - <enum name='XML_CHECK_NO_ELEM' file='xmlerror' value='5016' type='xmlParserErrors' info='5016'/> - <enum name='XML_CHECK_NO_HREF' file='xmlerror' value='5028' type='xmlParserErrors' info='5028'/> - <enum name='XML_CHECK_NO_NAME' file='xmlerror' value='5015' type='xmlParserErrors' info='5015'/> - <enum name='XML_CHECK_NO_NEXT' file='xmlerror' value='5020' type='xmlParserErrors' info='5020'/> - <enum name='XML_CHECK_NO_PARENT' file='xmlerror' value='5013' type='xmlParserErrors' info='5013'/> - <enum name='XML_CHECK_NO_PREV' file='xmlerror' value='5018' type='xmlParserErrors' info='5018'/> - <enum name='XML_CHECK_NS_ANCESTOR' file='xmlerror' value='5031' type='xmlParserErrors' info='5031'/> - <enum name='XML_CHECK_NS_SCOPE' file='xmlerror' value='5030' type='xmlParserErrors' info='5030'/> - <enum name='XML_CHECK_OUTSIDE_DICT' file='xmlerror' value='5035' type='xmlParserErrors' info='5035'/> - <enum name='XML_CHECK_UNKNOWN_NODE' file='xmlerror' value='5011' type='xmlParserErrors' info='5011'/> - <enum name='XML_CHECK_WRONG_DOC' file='xmlerror' value='5017' type='xmlParserErrors' info='5017'/> - <enum name='XML_CHECK_WRONG_NAME' file='xmlerror' value='5036' type='xmlParserErrors' info='5036'/> - <enum name='XML_CHECK_WRONG_NEXT' file='xmlerror' value='5021' type='xmlParserErrors' info='5021'/> - <enum name='XML_CHECK_WRONG_PARENT' file='xmlerror' value='5029' type='xmlParserErrors' info='5029'/> - <enum name='XML_CHECK_WRONG_PREV' file='xmlerror' value='5019' type='xmlParserErrors' info='5019'/> - <enum name='XML_CHECK_X' file='xmlerror' value='6006' type='xmlParserErrors' info=' 503'/> - <enum name='XML_COMMENT_NODE' file='tree' value='8' type='xmlElementType'/> - <enum name='XML_DOCB_DOCUMENT_NODE' file='tree' value='21' type='xmlElementType'/> - <enum name='XML_DOCUMENT_FRAG_NODE' file='tree' value='11' type='xmlElementType'/> - <enum name='XML_DOCUMENT_NODE' file='tree' value='9' type='xmlElementType'/> - <enum name='XML_DOCUMENT_TYPE_NODE' file='tree' value='10' type='xmlElementType'/> - <enum name='XML_DTD_ATTRIBUTE_DEFAULT' file='xmlerror' value='500' type='xmlParserErrors'/> - <enum name='XML_DTD_ATTRIBUTE_REDEFINED' file='xmlerror' value='501' type='xmlParserErrors' info='501'/> - <enum name='XML_DTD_ATTRIBUTE_VALUE' file='xmlerror' value='502' type='xmlParserErrors' info='502'/> - <enum name='XML_DTD_CONTENT_ERROR' file='xmlerror' value='503' type='xmlParserErrors' info='503'/> - <enum name='XML_DTD_CONTENT_MODEL' file='xmlerror' value='504' type='xmlParserErrors' info='504'/> - <enum name='XML_DTD_CONTENT_NOT_DETERMINIST' file='xmlerror' value='505' type='xmlParserErrors' info='505'/> - <enum name='XML_DTD_DIFFERENT_PREFIX' file='xmlerror' value='506' type='xmlParserErrors' info='506'/> - <enum name='XML_DTD_ELEM_DEFAULT_NAMESPACE' file='xmlerror' value='507' type='xmlParserErrors' info='507'/> - <enum name='XML_DTD_ELEM_NAMESPACE' file='xmlerror' value='508' type='xmlParserErrors' info='508'/> - <enum name='XML_DTD_ELEM_REDEFINED' file='xmlerror' value='509' type='xmlParserErrors' info='509'/> - <enum name='XML_DTD_EMPTY_NOTATION' file='xmlerror' value='510' type='xmlParserErrors' info='510'/> - <enum name='XML_DTD_ENTITY_TYPE' file='xmlerror' value='511' type='xmlParserErrors' info='511'/> - <enum name='XML_DTD_ID_FIXED' file='xmlerror' value='512' type='xmlParserErrors' info='512'/> - <enum name='XML_DTD_ID_REDEFINED' file='xmlerror' value='513' type='xmlParserErrors' info='513'/> - <enum name='XML_DTD_ID_SUBSET' file='xmlerror' value='514' type='xmlParserErrors' info='514'/> - <enum name='XML_DTD_INVALID_CHILD' file='xmlerror' value='515' type='xmlParserErrors' info='515'/> - <enum name='XML_DTD_INVALID_DEFAULT' file='xmlerror' value='516' type='xmlParserErrors' info='516'/> - <enum name='XML_DTD_LOAD_ERROR' file='xmlerror' value='517' type='xmlParserErrors' info='517'/> - <enum name='XML_DTD_MISSING_ATTRIBUTE' file='xmlerror' value='518' type='xmlParserErrors' info='518'/> - <enum name='XML_DTD_MIXED_CORRUPT' file='xmlerror' value='519' type='xmlParserErrors' info='519'/> - <enum name='XML_DTD_MULTIPLE_ID' file='xmlerror' value='520' type='xmlParserErrors' info='520'/> - <enum name='XML_DTD_NODE' file='tree' value='14' type='xmlElementType'/> - <enum name='XML_DTD_NOTATION_REDEFINED' file='xmlerror' value='526' type='xmlParserErrors' info='526'/> - <enum name='XML_DTD_NOTATION_VALUE' file='xmlerror' value='527' type='xmlParserErrors' info='527'/> - <enum name='XML_DTD_NOT_EMPTY' file='xmlerror' value='528' type='xmlParserErrors' info='528'/> - <enum name='XML_DTD_NOT_PCDATA' file='xmlerror' value='529' type='xmlParserErrors' info='529'/> - <enum name='XML_DTD_NOT_STANDALONE' file='xmlerror' value='530' type='xmlParserErrors' info='530'/> - <enum name='XML_DTD_NO_DOC' file='xmlerror' value='521' type='xmlParserErrors' info='521'/> - <enum name='XML_DTD_NO_DTD' file='xmlerror' value='522' type='xmlParserErrors' info='522'/> - <enum name='XML_DTD_NO_ELEM_NAME' file='xmlerror' value='523' type='xmlParserErrors' info='523'/> - <enum name='XML_DTD_NO_PREFIX' file='xmlerror' value='524' type='xmlParserErrors' info='524'/> - <enum name='XML_DTD_NO_ROOT' file='xmlerror' value='525' type='xmlParserErrors' info='525'/> - <enum name='XML_DTD_ROOT_NAME' file='xmlerror' value='531' type='xmlParserErrors' info='531'/> - <enum name='XML_DTD_STANDALONE_DEFAULTED' file='xmlerror' value='538' type='xmlParserErrors' info='538'/> - <enum name='XML_DTD_STANDALONE_WHITE_SPACE' file='xmlerror' value='532' type='xmlParserErrors' info='532'/> - <enum name='XML_DTD_UNKNOWN_ATTRIBUTE' file='xmlerror' value='533' type='xmlParserErrors' info='533'/> - <enum name='XML_DTD_UNKNOWN_ELEM' file='xmlerror' value='534' type='xmlParserErrors' info='534'/> - <enum name='XML_DTD_UNKNOWN_ENTITY' file='xmlerror' value='535' type='xmlParserErrors' info='535'/> - <enum name='XML_DTD_UNKNOWN_ID' file='xmlerror' value='536' type='xmlParserErrors' info='536'/> - <enum name='XML_DTD_UNKNOWN_NOTATION' file='xmlerror' value='537' type='xmlParserErrors' info='537'/> - <enum name='XML_DTD_XMLID_TYPE' file='xmlerror' value='540' type='xmlParserErrors' info='540'/> - <enum name='XML_DTD_XMLID_VALUE' file='xmlerror' value='539' type='xmlParserErrors' info='539'/> - <enum name='XML_ELEMENT_CONTENT_ELEMENT' file='tree' value='2' type='xmlElementContentType'/> - <enum name='XML_ELEMENT_CONTENT_MULT' file='tree' value='3' type='xmlElementContentOccur'/> - <enum name='XML_ELEMENT_CONTENT_ONCE' file='tree' value='1' type='xmlElementContentOccur'/> - <enum name='XML_ELEMENT_CONTENT_OPT' file='tree' value='2' type='xmlElementContentOccur'/> - <enum name='XML_ELEMENT_CONTENT_OR' file='tree' value='4' type='xmlElementContentType'/> - <enum name='XML_ELEMENT_CONTENT_PCDATA' file='tree' value='1' type='xmlElementContentType'/> - <enum name='XML_ELEMENT_CONTENT_PLUS' file='tree' value='4' type='xmlElementContentOccur'/> - <enum name='XML_ELEMENT_CONTENT_SEQ' file='tree' value='3' type='xmlElementContentType'/> - <enum name='XML_ELEMENT_DECL' file='tree' value='15' type='xmlElementType'/> - <enum name='XML_ELEMENT_NODE' file='tree' value='1' type='xmlElementType'/> - <enum name='XML_ELEMENT_TYPE_ANY' file='tree' value='2' type='xmlElementTypeVal'/> - <enum name='XML_ELEMENT_TYPE_ELEMENT' file='tree' value='4' type='xmlElementTypeVal'/> - <enum name='XML_ELEMENT_TYPE_EMPTY' file='tree' value='1' type='xmlElementTypeVal'/> - <enum name='XML_ELEMENT_TYPE_MIXED' file='tree' value='3' type='xmlElementTypeVal'/> - <enum name='XML_ELEMENT_TYPE_UNDEFINED' file='tree' value='0' type='xmlElementTypeVal'/> - <enum name='XML_ENTITY_DECL' file='tree' value='17' type='xmlElementType'/> - <enum name='XML_ENTITY_NODE' file='tree' value='6' type='xmlElementType'/> - <enum name='XML_ENTITY_REF_NODE' file='tree' value='5' type='xmlElementType'/> - <enum name='XML_ERR_ATTLIST_NOT_FINISHED' file='xmlerror' value='51' type='xmlParserErrors' info='51'/> - <enum name='XML_ERR_ATTLIST_NOT_STARTED' file='xmlerror' value='50' type='xmlParserErrors' info='50'/> - <enum name='XML_ERR_ATTRIBUTE_NOT_FINISHED' file='xmlerror' value='40' type='xmlParserErrors' info='40'/> - <enum name='XML_ERR_ATTRIBUTE_NOT_STARTED' file='xmlerror' value='39' type='xmlParserErrors' info='39'/> - <enum name='XML_ERR_ATTRIBUTE_REDEFINED' file='xmlerror' value='42' type='xmlParserErrors' info='42'/> - <enum name='XML_ERR_ATTRIBUTE_WITHOUT_VALUE' file='xmlerror' value='41' type='xmlParserErrors' info='41'/> - <enum name='XML_ERR_CDATA_NOT_FINISHED' file='xmlerror' value='63' type='xmlParserErrors' info='63'/> - <enum name='XML_ERR_CHARREF_AT_EOF' file='xmlerror' value='10' type='xmlParserErrors' info='10'/> - <enum name='XML_ERR_CHARREF_IN_DTD' file='xmlerror' value='13' type='xmlParserErrors' info='13'/> - <enum name='XML_ERR_CHARREF_IN_EPILOG' file='xmlerror' value='12' type='xmlParserErrors' info='12'/> - <enum name='XML_ERR_CHARREF_IN_PROLOG' file='xmlerror' value='11' type='xmlParserErrors' info='11'/> - <enum name='XML_ERR_COMMENT_NOT_FINISHED' file='xmlerror' value='45' type='xmlParserErrors' info='45'/> - <enum name='XML_ERR_CONDSEC_INVALID' file='xmlerror' value='83' type='xmlParserErrors' info='83'/> - <enum name='XML_ERR_CONDSEC_INVALID_KEYWORD' file='xmlerror' value='95' type='xmlParserErrors' info='95'/> - <enum name='XML_ERR_CONDSEC_NOT_FINISHED' file='xmlerror' value='59' type='xmlParserErrors' info='59'/> - <enum name='XML_ERR_CONDSEC_NOT_STARTED' file='xmlerror' value='58' type='xmlParserErrors' info='58'/> - <enum name='XML_ERR_DOCTYPE_NOT_FINISHED' file='xmlerror' value='61' type='xmlParserErrors' info='61'/> - <enum name='XML_ERR_DOCUMENT_EMPTY' file='xmlerror' value='4' type='xmlParserErrors' info='4'/> - <enum name='XML_ERR_DOCUMENT_END' file='xmlerror' value='5' type='xmlParserErrors' info='5'/> - <enum name='XML_ERR_DOCUMENT_START' file='xmlerror' value='3' type='xmlParserErrors' info='3'/> - <enum name='XML_ERR_ELEMCONTENT_NOT_FINISHED' file='xmlerror' value='55' type='xmlParserErrors' info='55'/> - <enum name='XML_ERR_ELEMCONTENT_NOT_STARTED' file='xmlerror' value='54' type='xmlParserErrors' info='54'/> - <enum name='XML_ERR_ENCODING_NAME' file='xmlerror' value='79' type='xmlParserErrors' info='79'/> - <enum name='XML_ERR_ENTITYREF_AT_EOF' file='xmlerror' value='14' type='xmlParserErrors' info='14'/> - <enum name='XML_ERR_ENTITYREF_IN_DTD' file='xmlerror' value='17' type='xmlParserErrors' info='17'/> - <enum name='XML_ERR_ENTITYREF_IN_EPILOG' file='xmlerror' value='16' type='xmlParserErrors' info='16'/> - <enum name='XML_ERR_ENTITYREF_IN_PROLOG' file='xmlerror' value='15' type='xmlParserErrors' info='15'/> - <enum name='XML_ERR_ENTITYREF_NO_NAME' file='xmlerror' value='22' type='xmlParserErrors' info='22'/> - <enum name='XML_ERR_ENTITYREF_SEMICOL_MISSING' file='xmlerror' value='23' type='xmlParserErrors' info='23'/> - <enum name='XML_ERR_ENTITY_BOUNDARY' file='xmlerror' value='90' type='xmlParserErrors' info='90'/> - <enum name='XML_ERR_ENTITY_CHAR_ERROR' file='xmlerror' value='87' type='xmlParserErrors' info='87'/> - <enum name='XML_ERR_ENTITY_IS_EXTERNAL' file='xmlerror' value='29' type='xmlParserErrors' info='29'/> - <enum name='XML_ERR_ENTITY_IS_PARAMETER' file='xmlerror' value='30' type='xmlParserErrors' info='30'/> - <enum name='XML_ERR_ENTITY_LOOP' file='xmlerror' value='89' type='xmlParserErrors' info='89'/> - <enum name='XML_ERR_ENTITY_NOT_FINISHED' file='xmlerror' value='37' type='xmlParserErrors' info='37'/> - <enum name='XML_ERR_ENTITY_NOT_STARTED' file='xmlerror' value='36' type='xmlParserErrors' info='36'/> - <enum name='XML_ERR_ENTITY_PE_INTERNAL' file='xmlerror' value='88' type='xmlParserErrors' info='88'/> - <enum name='XML_ERR_ENTITY_PROCESSING' file='xmlerror' value='104' type='xmlParserErrors' info='104'/> - <enum name='XML_ERR_EQUAL_REQUIRED' file='xmlerror' value='75' type='xmlParserErrors' info='75'/> - <enum name='XML_ERR_ERROR' file='xmlerror' value='2' type='xmlErrorLevel' info='A recoverable error'/> - <enum name='XML_ERR_EXTRA_CONTENT' file='xmlerror' value='86' type='xmlParserErrors' info='86'/> - <enum name='XML_ERR_EXT_ENTITY_STANDALONE' file='xmlerror' value='82' type='xmlParserErrors' info='82'/> - <enum name='XML_ERR_EXT_SUBSET_NOT_FINISHED' file='xmlerror' value='60' type='xmlParserErrors' info='60'/> - <enum name='XML_ERR_FATAL' file='xmlerror' value='3' type='xmlErrorLevel' info=' A fatal error'/> - <enum name='XML_ERR_GT_REQUIRED' file='xmlerror' value='73' type='xmlParserErrors' info='73'/> - <enum name='XML_ERR_HYPHEN_IN_COMMENT' file='xmlerror' value='80' type='xmlParserErrors' info='80'/> - <enum name='XML_ERR_INTERNAL_ERROR' file='xmlerror' value='1' type='xmlParserErrors' info='1'/> - <enum name='XML_ERR_INVALID_CHAR' file='xmlerror' value='9' type='xmlParserErrors' info='9'/> - <enum name='XML_ERR_INVALID_CHARREF' file='xmlerror' value='8' type='xmlParserErrors' info='8'/> - <enum name='XML_ERR_INVALID_DEC_CHARREF' file='xmlerror' value='7' type='xmlParserErrors' info='7'/> - <enum name='XML_ERR_INVALID_ENCODING' file='xmlerror' value='81' type='xmlParserErrors' info='81'/> - <enum name='XML_ERR_INVALID_HEX_CHARREF' file='xmlerror' value='6' type='xmlParserErrors' info='6'/> - <enum name='XML_ERR_INVALID_URI' file='xmlerror' value='91' type='xmlParserErrors' info='91'/> - <enum name='XML_ERR_LITERAL_NOT_FINISHED' file='xmlerror' value='44' type='xmlParserErrors' info='44'/> - <enum name='XML_ERR_LITERAL_NOT_STARTED' file='xmlerror' value='43' type='xmlParserErrors' info='43'/> - <enum name='XML_ERR_LTSLASH_REQUIRED' file='xmlerror' value='74' type='xmlParserErrors' info='74'/> - <enum name='XML_ERR_LT_IN_ATTRIBUTE' file='xmlerror' value='38' type='xmlParserErrors' info='38'/> - <enum name='XML_ERR_LT_REQUIRED' file='xmlerror' value='72' type='xmlParserErrors' info='72'/> - <enum name='XML_ERR_MISPLACED_CDATA_END' file='xmlerror' value='62' type='xmlParserErrors' info='62'/> - <enum name='XML_ERR_MISSING_ENCODING' file='xmlerror' value='101' type='xmlParserErrors' info='101'/> - <enum name='XML_ERR_MIXED_NOT_FINISHED' file='xmlerror' value='53' type='xmlParserErrors' info='53'/> - <enum name='XML_ERR_MIXED_NOT_STARTED' file='xmlerror' value='52' type='xmlParserErrors' info='52'/> - <enum name='XML_ERR_NAME_REQUIRED' file='xmlerror' value='68' type='xmlParserErrors' info='68'/> - <enum name='XML_ERR_NMTOKEN_REQUIRED' file='xmlerror' value='67' type='xmlParserErrors' info='67'/> - <enum name='XML_ERR_NONE' file='xmlerror' value='0' type='xmlErrorLevel'/> - <enum name='XML_ERR_NOTATION_NOT_FINISHED' file='xmlerror' value='49' type='xmlParserErrors' info='49'/> - <enum name='XML_ERR_NOTATION_NOT_STARTED' file='xmlerror' value='48' type='xmlParserErrors' info='48'/> - <enum name='XML_ERR_NOTATION_PROCESSING' file='xmlerror' value='105' type='xmlParserErrors' info='105'/> - <enum name='XML_ERR_NOT_STANDALONE' file='xmlerror' value='103' type='xmlParserErrors' info='103'/> - <enum name='XML_ERR_NOT_WELL_BALANCED' file='xmlerror' value='85' type='xmlParserErrors' info='85'/> - <enum name='XML_ERR_NO_DTD' file='xmlerror' value='94' type='xmlParserErrors' info='94'/> - <enum name='XML_ERR_NO_MEMORY' file='xmlerror' value='2' type='xmlParserErrors' info='2'/> - <enum name='XML_ERR_NS_DECL_ERROR' file='xmlerror' value='35' type='xmlParserErrors' info='35'/> - <enum name='XML_ERR_OK' file='xmlerror' value='0' type='xmlParserErrors'/> - <enum name='XML_ERR_PCDATA_REQUIRED' file='xmlerror' value='69' type='xmlParserErrors' info='69'/> - <enum name='XML_ERR_PEREF_AT_EOF' file='xmlerror' value='18' type='xmlParserErrors' info='18'/> - <enum name='XML_ERR_PEREF_IN_EPILOG' file='xmlerror' value='20' type='xmlParserErrors' info='20'/> - <enum name='XML_ERR_PEREF_IN_INT_SUBSET' file='xmlerror' value='21' type='xmlParserErrors' info='21'/> - <enum name='XML_ERR_PEREF_IN_PROLOG' file='xmlerror' value='19' type='xmlParserErrors' info='19'/> - <enum name='XML_ERR_PEREF_NO_NAME' file='xmlerror' value='24' type='xmlParserErrors' info='24'/> - <enum name='XML_ERR_PEREF_SEMICOL_MISSING' file='xmlerror' value='25' type='xmlParserErrors' info='25'/> - <enum name='XML_ERR_PI_NOT_FINISHED' file='xmlerror' value='47' type='xmlParserErrors' info='47'/> - <enum name='XML_ERR_PI_NOT_STARTED' file='xmlerror' value='46' type='xmlParserErrors' info='46'/> - <enum name='XML_ERR_PUBID_REQUIRED' file='xmlerror' value='71' type='xmlParserErrors' info='71'/> - <enum name='XML_ERR_RESERVED_XML_NAME' file='xmlerror' value='64' type='xmlParserErrors' info='64'/> - <enum name='XML_ERR_SEPARATOR_REQUIRED' file='xmlerror' value='66' type='xmlParserErrors' info='66'/> - <enum name='XML_ERR_SPACE_REQUIRED' file='xmlerror' value='65' type='xmlParserErrors' info='65'/> - <enum name='XML_ERR_STANDALONE_VALUE' file='xmlerror' value='78' type='xmlParserErrors' info='78'/> - <enum name='XML_ERR_STRING_NOT_CLOSED' file='xmlerror' value='34' type='xmlParserErrors' info='34'/> - <enum name='XML_ERR_STRING_NOT_STARTED' file='xmlerror' value='33' type='xmlParserErrors' info='33'/> - <enum name='XML_ERR_TAG_NAME_MISMATCH' file='xmlerror' value='76' type='xmlParserErrors' info='76'/> - <enum name='XML_ERR_TAG_NOT_FINISHED' file='xmlerror' value='77' type='xmlParserErrors' info='77'/> - <enum name='XML_ERR_UNDECLARED_ENTITY' file='xmlerror' value='26' type='xmlParserErrors' info='26'/> - <enum name='XML_ERR_UNKNOWN_ENCODING' file='xmlerror' value='31' type='xmlParserErrors' info='31'/> - <enum name='XML_ERR_UNPARSED_ENTITY' file='xmlerror' value='28' type='xmlParserErrors' info='28'/> - <enum name='XML_ERR_UNSUPPORTED_ENCODING' file='xmlerror' value='32' type='xmlParserErrors' info='32'/> - <enum name='XML_ERR_URI_FRAGMENT' file='xmlerror' value='92' type='xmlParserErrors' info='92'/> - <enum name='XML_ERR_URI_REQUIRED' file='xmlerror' value='70' type='xmlParserErrors' info='70'/> - <enum name='XML_ERR_VALUE_REQUIRED' file='xmlerror' value='84' type='xmlParserErrors' info='84'/> - <enum name='XML_ERR_VERSION_MISSING' file='xmlerror' value='96' type='xmlParserErrors' info='96'/> - <enum name='XML_ERR_WARNING' file='xmlerror' value='1' type='xmlErrorLevel' info='A simple warning'/> - <enum name='XML_ERR_XMLDECL_NOT_FINISHED' file='xmlerror' value='57' type='xmlParserErrors' info='57'/> - <enum name='XML_ERR_XMLDECL_NOT_STARTED' file='xmlerror' value='56' type='xmlParserErrors' info='56'/> - <enum name='XML_EXP_ATOM' file='xmlregexp' value='2' type='xmlExpNodeType'/> - <enum name='XML_EXP_COUNT' file='xmlregexp' value='5' type='xmlExpNodeType'/> - <enum name='XML_EXP_EMPTY' file='xmlregexp' value='0' type='xmlExpNodeType'/> - <enum name='XML_EXP_FORBID' file='xmlregexp' value='1' type='xmlExpNodeType'/> - <enum name='XML_EXP_OR' file='xmlregexp' value='4' type='xmlExpNodeType'/> - <enum name='XML_EXP_SEQ' file='xmlregexp' value='3' type='xmlExpNodeType'/> - <enum name='XML_EXTERNAL_GENERAL_PARSED_ENTITY' file='entities' value='2' type='xmlEntityType'/> - <enum name='XML_EXTERNAL_GENERAL_UNPARSED_ENTITY' file='entities' value='3' type='xmlEntityType'/> - <enum name='XML_EXTERNAL_PARAMETER_ENTITY' file='entities' value='5' type='xmlEntityType'/> - <enum name='XML_FROM_C14N' file='xmlerror' value='21' type='xmlErrorDomain' info='The Canonicalization module'/> - <enum name='XML_FROM_CATALOG' file='xmlerror' value='20' type='xmlErrorDomain' info='The Catalog module'/> - <enum name='XML_FROM_CHECK' file='xmlerror' value='24' type='xmlErrorDomain' info='The error checking module'/> - <enum name='XML_FROM_DATATYPE' file='xmlerror' value='15' type='xmlErrorDomain' info='The W3C XML Schemas Datatype module'/> - <enum name='XML_FROM_DTD' file='xmlerror' value='4' type='xmlErrorDomain' info='The XML DTD validation with parser contex'/> - <enum name='XML_FROM_FTP' file='xmlerror' value='9' type='xmlErrorDomain' info='The FTP module'/> - <enum name='XML_FROM_HTML' file='xmlerror' value='5' type='xmlErrorDomain' info='The HTML parser'/> - <enum name='XML_FROM_HTTP' file='xmlerror' value='10' type='xmlErrorDomain' info='The HTTP module'/> - <enum name='XML_FROM_I18N' file='xmlerror' value='27' type='xmlErrorDomain' info=' The module handling character conversion'/> - <enum name='XML_FROM_IO' file='xmlerror' value='8' type='xmlErrorDomain' info='The Input/Output stack'/> - <enum name='XML_FROM_MEMORY' file='xmlerror' value='6' type='xmlErrorDomain' info='The memory allocator'/> - <enum name='XML_FROM_MODULE' file='xmlerror' value='26' type='xmlErrorDomain' info='The dynamically loaded module modul'/> - <enum name='XML_FROM_NAMESPACE' file='xmlerror' value='3' type='xmlErrorDomain' info='The XML Namespace module'/> - <enum name='XML_FROM_NONE' file='xmlerror' value='0' type='xmlErrorDomain'/> - <enum name='XML_FROM_OUTPUT' file='xmlerror' value='7' type='xmlErrorDomain' info='The serialization code'/> - <enum name='XML_FROM_PARSER' file='xmlerror' value='1' type='xmlErrorDomain' info='The XML parser'/> - <enum name='XML_FROM_REGEXP' file='xmlerror' value='14' type='xmlErrorDomain' info='The regular expressions module'/> - <enum name='XML_FROM_RELAXNGP' file='xmlerror' value='18' type='xmlErrorDomain' info='The Relax-NG parser module'/> - <enum name='XML_FROM_RELAXNGV' file='xmlerror' value='19' type='xmlErrorDomain' info='The Relax-NG validator module'/> - <enum name='XML_FROM_SCHEMASP' file='xmlerror' value='16' type='xmlErrorDomain' info='The W3C XML Schemas parser module'/> - <enum name='XML_FROM_SCHEMASV' file='xmlerror' value='17' type='xmlErrorDomain' info='The W3C XML Schemas validation module'/> - <enum name='XML_FROM_TREE' file='xmlerror' value='2' type='xmlErrorDomain' info='The tree module'/> - <enum name='XML_FROM_VALID' file='xmlerror' value='23' type='xmlErrorDomain' info='The XML DTD validation with valid context'/> - <enum name='XML_FROM_WRITER' file='xmlerror' value='25' type='xmlErrorDomain' info='The xmlwriter module'/> - <enum name='XML_FROM_XINCLUDE' file='xmlerror' value='11' type='xmlErrorDomain' info='The XInclude processing'/> - <enum name='XML_FROM_XPATH' file='xmlerror' value='12' type='xmlErrorDomain' info='The XPath module'/> - <enum name='XML_FROM_XPOINTER' file='xmlerror' value='13' type='xmlErrorDomain' info='The XPointer module'/> - <enum name='XML_FROM_XSLT' file='xmlerror' value='22' type='xmlErrorDomain' info='The XSLT engine from libxslt'/> - <enum name='XML_FTP_ACCNT' file='xmlerror' value='2002' type='xmlParserErrors' info='2002'/> - <enum name='XML_FTP_EPSV_ANSWER' file='xmlerror' value='2001' type='xmlParserErrors' info='2001'/> - <enum name='XML_FTP_PASV_ANSWER' file='xmlerror' value='2000' type='xmlParserErrors'/> - <enum name='XML_FTP_URL_SYNTAX' file='xmlerror' value='2003' type='xmlParserErrors' info='2003'/> - <enum name='XML_HTML_DOCUMENT_NODE' file='tree' value='13' type='xmlElementType'/> - <enum name='XML_HTML_STRUCURE_ERROR' file='xmlerror' value='800' type='xmlParserErrors'/> - <enum name='XML_HTML_UNKNOWN_TAG' file='xmlerror' value='801' type='xmlParserErrors' info='801'/> - <enum name='XML_HTTP_UNKNOWN_HOST' file='xmlerror' value='2022' type='xmlParserErrors' info='2022'/> - <enum name='XML_HTTP_URL_SYNTAX' file='xmlerror' value='2020' type='xmlParserErrors'/> - <enum name='XML_HTTP_USE_IP' file='xmlerror' value='2021' type='xmlParserErrors' info='2021'/> - <enum name='XML_I18N_CONV_FAILED' file='xmlerror' value='6003' type='xmlParserErrors' info='6003'/> - <enum name='XML_I18N_EXCESS_HANDLER' file='xmlerror' value='6002' type='xmlParserErrors' info='6002'/> - <enum name='XML_I18N_NO_HANDLER' file='xmlerror' value='6001' type='xmlParserErrors' info='6001'/> - <enum name='XML_I18N_NO_NAME' file='xmlerror' value='6000' type='xmlParserErrors'/> - <enum name='XML_I18N_NO_OUTPUT' file='xmlerror' value='6004' type='xmlParserErrors' info='6004'/> - <enum name='XML_INTERNAL_GENERAL_ENTITY' file='entities' value='1' type='xmlEntityType'/> - <enum name='XML_INTERNAL_PARAMETER_ENTITY' file='entities' value='4' type='xmlEntityType'/> - <enum name='XML_INTERNAL_PREDEFINED_ENTITY' file='entities' value='6' type='xmlEntityType'/> - <enum name='XML_IO_BUFFER_FULL' file='xmlerror' value='1548' type='xmlParserErrors' info='1548'/> - <enum name='XML_IO_EACCES' file='xmlerror' value='1501' type='xmlParserErrors' info='1501'/> - <enum name='XML_IO_EADDRINUSE' file='xmlerror' value='1554' type='xmlParserErrors' info='1554'/> - <enum name='XML_IO_EAFNOSUPPORT' file='xmlerror' value='1556' type='xmlParserErrors' info='1556'/> - <enum name='XML_IO_EAGAIN' file='xmlerror' value='1502' type='xmlParserErrors' info='1502'/> - <enum name='XML_IO_EALREADY' file='xmlerror' value='1555' type='xmlParserErrors' info='1555'/> - <enum name='XML_IO_EBADF' file='xmlerror' value='1503' type='xmlParserErrors' info='1503'/> - <enum name='XML_IO_EBADMSG' file='xmlerror' value='1504' type='xmlParserErrors' info='1504'/> - <enum name='XML_IO_EBUSY' file='xmlerror' value='1505' type='xmlParserErrors' info='1505'/> - <enum name='XML_IO_ECANCELED' file='xmlerror' value='1506' type='xmlParserErrors' info='1506'/> - <enum name='XML_IO_ECHILD' file='xmlerror' value='1507' type='xmlParserErrors' info='1507'/> - <enum name='XML_IO_ECONNREFUSED' file='xmlerror' value='1552' type='xmlParserErrors' info='1552'/> - <enum name='XML_IO_EDEADLK' file='xmlerror' value='1508' type='xmlParserErrors' info='1508'/> - <enum name='XML_IO_EDOM' file='xmlerror' value='1509' type='xmlParserErrors' info='1509'/> - <enum name='XML_IO_EEXIST' file='xmlerror' value='1510' type='xmlParserErrors' info='1510'/> - <enum name='XML_IO_EFAULT' file='xmlerror' value='1511' type='xmlParserErrors' info='1511'/> - <enum name='XML_IO_EFBIG' file='xmlerror' value='1512' type='xmlParserErrors' info='1512'/> - <enum name='XML_IO_EINPROGRESS' file='xmlerror' value='1513' type='xmlParserErrors' info='1513'/> - <enum name='XML_IO_EINTR' file='xmlerror' value='1514' type='xmlParserErrors' info='1514'/> - <enum name='XML_IO_EINVAL' file='xmlerror' value='1515' type='xmlParserErrors' info='1515'/> - <enum name='XML_IO_EIO' file='xmlerror' value='1516' type='xmlParserErrors' info='1516'/> - <enum name='XML_IO_EISCONN' file='xmlerror' value='1551' type='xmlParserErrors' info='1551'/> - <enum name='XML_IO_EISDIR' file='xmlerror' value='1517' type='xmlParserErrors' info='1517'/> - <enum name='XML_IO_EMFILE' file='xmlerror' value='1518' type='xmlParserErrors' info='1518'/> - <enum name='XML_IO_EMLINK' file='xmlerror' value='1519' type='xmlParserErrors' info='1519'/> - <enum name='XML_IO_EMSGSIZE' file='xmlerror' value='1520' type='xmlParserErrors' info='1520'/> - <enum name='XML_IO_ENAMETOOLONG' file='xmlerror' value='1521' type='xmlParserErrors' info='1521'/> - <enum name='XML_IO_ENCODER' file='xmlerror' value='1544' type='xmlParserErrors' info='1544'/> - <enum name='XML_IO_ENETUNREACH' file='xmlerror' value='1553' type='xmlParserErrors' info='1553'/> - <enum name='XML_IO_ENFILE' file='xmlerror' value='1522' type='xmlParserErrors' info='1522'/> - <enum name='XML_IO_ENODEV' file='xmlerror' value='1523' type='xmlParserErrors' info='1523'/> - <enum name='XML_IO_ENOENT' file='xmlerror' value='1524' type='xmlParserErrors' info='1524'/> - <enum name='XML_IO_ENOEXEC' file='xmlerror' value='1525' type='xmlParserErrors' info='1525'/> - <enum name='XML_IO_ENOLCK' file='xmlerror' value='1526' type='xmlParserErrors' info='1526'/> - <enum name='XML_IO_ENOMEM' file='xmlerror' value='1527' type='xmlParserErrors' info='1527'/> - <enum name='XML_IO_ENOSPC' file='xmlerror' value='1528' type='xmlParserErrors' info='1528'/> - <enum name='XML_IO_ENOSYS' file='xmlerror' value='1529' type='xmlParserErrors' info='1529'/> - <enum name='XML_IO_ENOTDIR' file='xmlerror' value='1530' type='xmlParserErrors' info='1530'/> - <enum name='XML_IO_ENOTEMPTY' file='xmlerror' value='1531' type='xmlParserErrors' info='1531'/> - <enum name='XML_IO_ENOTSOCK' file='xmlerror' value='1550' type='xmlParserErrors' info='1550'/> - <enum name='XML_IO_ENOTSUP' file='xmlerror' value='1532' type='xmlParserErrors' info='1532'/> - <enum name='XML_IO_ENOTTY' file='xmlerror' value='1533' type='xmlParserErrors' info='1533'/> - <enum name='XML_IO_ENXIO' file='xmlerror' value='1534' type='xmlParserErrors' info='1534'/> - <enum name='XML_IO_EPERM' file='xmlerror' value='1535' type='xmlParserErrors' info='1535'/> - <enum name='XML_IO_EPIPE' file='xmlerror' value='1536' type='xmlParserErrors' info='1536'/> - <enum name='XML_IO_ERANGE' file='xmlerror' value='1537' type='xmlParserErrors' info='1537'/> - <enum name='XML_IO_EROFS' file='xmlerror' value='1538' type='xmlParserErrors' info='1538'/> - <enum name='XML_IO_ESPIPE' file='xmlerror' value='1539' type='xmlParserErrors' info='1539'/> - <enum name='XML_IO_ESRCH' file='xmlerror' value='1540' type='xmlParserErrors' info='1540'/> - <enum name='XML_IO_ETIMEDOUT' file='xmlerror' value='1541' type='xmlParserErrors' info='1541'/> - <enum name='XML_IO_EXDEV' file='xmlerror' value='1542' type='xmlParserErrors' info='1542'/> - <enum name='XML_IO_FLUSH' file='xmlerror' value='1545' type='xmlParserErrors' info='1545'/> - <enum name='XML_IO_LOAD_ERROR' file='xmlerror' value='1549' type='xmlParserErrors' info='1549'/> - <enum name='XML_IO_NETWORK_ATTEMPT' file='xmlerror' value='1543' type='xmlParserErrors' info='1543'/> - <enum name='XML_IO_NO_INPUT' file='xmlerror' value='1547' type='xmlParserErrors' info='1547'/> - <enum name='XML_IO_UNKNOWN' file='xmlerror' value='1500' type='xmlParserErrors'/> - <enum name='XML_IO_WRITE' file='xmlerror' value='1546' type='xmlParserErrors' info='1546'/> - <enum name='XML_MODULE_CLOSE' file='xmlerror' value='4901' type='xmlParserErrors' info='4901'/> - <enum name='XML_MODULE_LAZY' file='xmlmodule' value='1' type='xmlModuleOption' info='lazy binding'/> - <enum name='XML_MODULE_LOCAL' file='xmlmodule' value='2' type='xmlModuleOption' info=' local binding'/> - <enum name='XML_MODULE_OPEN' file='xmlerror' value='4900' type='xmlParserErrors' info='4900'/> - <enum name='XML_NAMESPACE_DECL' file='tree' value='18' type='xmlElementType'/> - <enum name='XML_NOTATION_NODE' file='tree' value='12' type='xmlElementType'/> - <enum name='XML_NS_ERR_ATTRIBUTE_REDEFINED' file='xmlerror' value='203' type='xmlParserErrors' info='203'/> - <enum name='XML_NS_ERR_EMPTY' file='xmlerror' value='204' type='xmlParserErrors' info='204'/> - <enum name='XML_NS_ERR_QNAME' file='xmlerror' value='202' type='xmlParserErrors' info='202'/> - <enum name='XML_NS_ERR_UNDEFINED_NAMESPACE' file='xmlerror' value='201' type='xmlParserErrors' info='201'/> - <enum name='XML_NS_ERR_XML_NAMESPACE' file='xmlerror' value='200' type='xmlParserErrors'/> - <enum name='XML_PARSER_ATTRIBUTE_VALUE' file='parser' value='12' type='xmlParserInputState' info='within an attribute value'/> - <enum name='XML_PARSER_CDATA_SECTION' file='parser' value='8' type='xmlParserInputState' info='within a CDATA section'/> - <enum name='XML_PARSER_COMMENT' file='parser' value='5' type='xmlParserInputState' info='within a comment'/> - <enum name='XML_PARSER_CONTENT' file='parser' value='7' type='xmlParserInputState' info='within the content'/> - <enum name='XML_PARSER_DEFAULTATTRS' file='xmlreader' value='2' type='xmlParserProperties'/> - <enum name='XML_PARSER_DTD' file='parser' value='3' type='xmlParserInputState' info='within some DTD content'/> - <enum name='XML_PARSER_END_TAG' file='parser' value='9' type='xmlParserInputState' info='within a closing tag'/> - <enum name='XML_PARSER_ENTITY_DECL' file='parser' value='10' type='xmlParserInputState' info='within an entity declaration'/> - <enum name='XML_PARSER_ENTITY_VALUE' file='parser' value='11' type='xmlParserInputState' info='within an entity value in a decl'/> - <enum name='XML_PARSER_EOF' file='parser' value='-1' type='xmlParserInputState' info='nothing is to be parsed'/> - <enum name='XML_PARSER_EPILOG' file='parser' value='14' type='xmlParserInputState' info='the Misc* after the last end tag'/> - <enum name='XML_PARSER_IGNORE' file='parser' value='15' type='xmlParserInputState' info='within an IGNORED section'/> - <enum name='XML_PARSER_LOADDTD' file='xmlreader' value='1' type='xmlParserProperties'/> - <enum name='XML_PARSER_MISC' file='parser' value='1' type='xmlParserInputState' info='Misc* before int subset'/> - <enum name='XML_PARSER_PI' file='parser' value='2' type='xmlParserInputState' info='Within a processing instruction'/> - <enum name='XML_PARSER_PROLOG' file='parser' value='4' type='xmlParserInputState' info='Misc* after internal subset'/> - <enum name='XML_PARSER_PUBLIC_LITERAL' file='parser' value='16' type='xmlParserInputState' info=' within a PUBLIC value'/> - <enum name='XML_PARSER_SEVERITY_ERROR' file='xmlreader' value='4' type='xmlParserSeverities'/> - <enum name='XML_PARSER_SEVERITY_VALIDITY_ERROR' file='xmlreader' value='2' type='xmlParserSeverities'/> - <enum name='XML_PARSER_SEVERITY_VALIDITY_WARNING' file='xmlreader' value='1' type='xmlParserSeverities'/> - <enum name='XML_PARSER_SEVERITY_WARNING' file='xmlreader' value='3' type='xmlParserSeverities'/> - <enum name='XML_PARSER_START' file='parser' value='0' type='xmlParserInputState' info='nothing has been parsed'/> - <enum name='XML_PARSER_START_TAG' file='parser' value='6' type='xmlParserInputState' info='within a start tag'/> - <enum name='XML_PARSER_SUBST_ENTITIES' file='xmlreader' value='4' type='xmlParserProperties'/> - <enum name='XML_PARSER_SYSTEM_LITERAL' file='parser' value='13' type='xmlParserInputState' info='within a SYSTEM value'/> - <enum name='XML_PARSER_VALIDATE' file='xmlreader' value='3' type='xmlParserProperties'/> - <enum name='XML_PARSE_COMPACT' file='parser' value='65536' type='xmlParserOption' info=' compact small text nodes; no modification of -the tree allowed afterwards (will possibly -crash if you try to modify the tree)'/> - <enum name='XML_PARSE_DOM' file='parser' value='1' type='xmlParserMode'/> - <enum name='XML_PARSE_DTDATTR' file='parser' value='8' type='xmlParserOption' info='default DTD attributes'/> - <enum name='XML_PARSE_DTDLOAD' file='parser' value='4' type='xmlParserOption' info='load the external subset'/> - <enum name='XML_PARSE_DTDVALID' file='parser' value='16' type='xmlParserOption' info='validate with the DTD'/> - <enum name='XML_PARSE_NOBLANKS' file='parser' value='256' type='xmlParserOption' info='remove blank nodes'/> - <enum name='XML_PARSE_NOCDATA' file='parser' value='16384' type='xmlParserOption' info='merge CDATA as text nodes'/> - <enum name='XML_PARSE_NODICT' file='parser' value='4096' type='xmlParserOption' info='Do not reuse the context dictionnary'/> - <enum name='XML_PARSE_NOENT' file='parser' value='2' type='xmlParserOption' info='substitute entities'/> - <enum name='XML_PARSE_NOERROR' file='parser' value='32' type='xmlParserOption' info='suppress error reports'/> - <enum name='XML_PARSE_NONET' file='parser' value='2048' type='xmlParserOption' info='Forbid network access'/> - <enum name='XML_PARSE_NOWARNING' file='parser' value='64' type='xmlParserOption' info='suppress warning reports'/> - <enum name='XML_PARSE_NOXINCNODE' file='parser' value='32768' type='xmlParserOption' info='do not generate XINCLUDE START/END nodes'/> - <enum name='XML_PARSE_NSCLEAN' file='parser' value='8192' type='xmlParserOption' info='remove redundant namespaces declarations'/> - <enum name='XML_PARSE_PEDANTIC' file='parser' value='128' type='xmlParserOption' info='pedantic error reporting'/> - <enum name='XML_PARSE_PUSH_DOM' file='parser' value='3' type='xmlParserMode'/> - <enum name='XML_PARSE_PUSH_SAX' file='parser' value='4' type='xmlParserMode'/> - <enum name='XML_PARSE_READER' file='parser' value='5' type='xmlParserMode'/> - <enum name='XML_PARSE_RECOVER' file='parser' value='1' type='xmlParserOption' info='recover on errors'/> - <enum name='XML_PARSE_SAX' file='parser' value='2' type='xmlParserMode'/> - <enum name='XML_PARSE_SAX1' file='parser' value='512' type='xmlParserOption' info='use the SAX1 interface internally'/> - <enum name='XML_PARSE_UNKNOWN' file='parser' value='0' type='xmlParserMode'/> - <enum name='XML_PARSE_XINCLUDE' file='parser' value='1024' type='xmlParserOption' info='Implement XInclude substitition'/> - <enum name='XML_PATTERN_DEFAULT' file='pattern' value='0' type='xmlPatternFlags' info='simple pattern match'/> - <enum name='XML_PATTERN_XPATH' file='pattern' value='1' type='xmlPatternFlags' info='standard XPath pattern'/> - <enum name='XML_PATTERN_XSFIELD' file='pattern' value='4' type='xmlPatternFlags' info=' XPath subset for schema field'/> - <enum name='XML_PATTERN_XSSEL' file='pattern' value='2' type='xmlPatternFlags' info='XPath subset for schema selector'/> - <enum name='XML_PI_NODE' file='tree' value='7' type='xmlElementType'/> - <enum name='XML_READER_TYPE_ATTRIBUTE' file='xmlreader' value='2' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_CDATA' file='xmlreader' value='4' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_COMMENT' file='xmlreader' value='8' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_DOCUMENT' file='xmlreader' value='9' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_DOCUMENT_FRAGMENT' file='xmlreader' value='11' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_DOCUMENT_TYPE' file='xmlreader' value='10' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_ELEMENT' file='xmlreader' value='1' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_END_ELEMENT' file='xmlreader' value='15' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_END_ENTITY' file='xmlreader' value='16' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_ENTITY' file='xmlreader' value='6' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_ENTITY_REFERENCE' file='xmlreader' value='5' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_NONE' file='xmlreader' value='0' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_NOTATION' file='xmlreader' value='12' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_PROCESSING_INSTRUCTION' file='xmlreader' value='7' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_SIGNIFICANT_WHITESPACE' file='xmlreader' value='14' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_TEXT' file='xmlreader' value='3' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_WHITESPACE' file='xmlreader' value='13' type='xmlReaderTypes'/> - <enum name='XML_READER_TYPE_XML_DECLARATION' file='xmlreader' value='17' type='xmlReaderTypes'/> - <enum name='XML_REGEXP_COMPILE_ERROR' file='xmlerror' value='1450' type='xmlParserErrors'/> - <enum name='XML_RELAXNGP_CRNG' file='relaxng' value='2' type='xmlRelaxNGParserFlag'/> - <enum name='XML_RELAXNGP_FREE_DOC' file='relaxng' value='1' type='xmlRelaxNGParserFlag'/> - <enum name='XML_RELAXNGP_NONE' file='relaxng' value='0' type='xmlRelaxNGParserFlag'/> - <enum name='XML_RELAXNG_ERR_ATTREXTRANS' file='relaxng' value='20' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_ATTRNAME' file='relaxng' value='14' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_ATTRNONS' file='relaxng' value='16' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_ATTRVALID' file='relaxng' value='24' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_ATTRWRONGNS' file='relaxng' value='18' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_CONTENTVALID' file='relaxng' value='25' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_DATAELEM' file='relaxng' value='28' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_DATATYPE' file='relaxng' value='31' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_DUPID' file='relaxng' value='4' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_ELEMEXTRANS' file='relaxng' value='19' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_ELEMNAME' file='relaxng' value='13' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_ELEMNONS' file='relaxng' value='15' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_ELEMNOTEMPTY' file='relaxng' value='21' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_ELEMWRONG' file='relaxng' value='38' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_ELEMWRONGNS' file='relaxng' value='17' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_EXTRACONTENT' file='relaxng' value='26' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_EXTRADATA' file='relaxng' value='35' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_INTEREXTRA' file='relaxng' value='12' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_INTERNAL' file='relaxng' value='37' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_INTERNODATA' file='relaxng' value='10' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_INTERSEQ' file='relaxng' value='11' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_INVALIDATTR' file='relaxng' value='27' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_LACKDATA' file='relaxng' value='36' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_LIST' file='relaxng' value='33' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_LISTELEM' file='relaxng' value='30' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_LISTEMPTY' file='relaxng' value='9' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_LISTEXTRA' file='relaxng' value='8' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_MEMORY' file='relaxng' value='1' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_NODEFINE' file='relaxng' value='7' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_NOELEM' file='relaxng' value='22' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_NOGRAMMAR' file='relaxng' value='34' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_NOSTATE' file='relaxng' value='6' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_NOTELEM' file='relaxng' value='23' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_TEXTWRONG' file='relaxng' value='39' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_TYPE' file='relaxng' value='2' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_TYPECMP' file='relaxng' value='5' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_TYPEVAL' file='relaxng' value='3' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_VALELEM' file='relaxng' value='29' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_ERR_VALUE' file='relaxng' value='32' type='xmlRelaxNGValidErr'/> - <enum name='XML_RELAXNG_OK' file='relaxng' value='0' type='xmlRelaxNGValidErr'/> - <enum name='XML_RNGP_ANYNAME_ATTR_ANCESTOR' file='xmlerror' value='1000' type='xmlParserErrors'/> - <enum name='XML_RNGP_ATTRIBUTE_CHILDREN' file='xmlerror' value='1002' type='xmlParserErrors' info='1002'/> - <enum name='XML_RNGP_ATTRIBUTE_CONTENT' file='xmlerror' value='1003' type='xmlParserErrors' info='1003'/> - <enum name='XML_RNGP_ATTRIBUTE_EMPTY' file='xmlerror' value='1004' type='xmlParserErrors' info='1004'/> - <enum name='XML_RNGP_ATTRIBUTE_NOOP' file='xmlerror' value='1005' type='xmlParserErrors' info='1005'/> - <enum name='XML_RNGP_ATTR_CONFLICT' file='xmlerror' value='1001' type='xmlParserErrors' info='1001'/> - <enum name='XML_RNGP_CHOICE_CONTENT' file='xmlerror' value='1006' type='xmlParserErrors' info='1006'/> - <enum name='XML_RNGP_CHOICE_EMPTY' file='xmlerror' value='1007' type='xmlParserErrors' info='1007'/> - <enum name='XML_RNGP_CREATE_FAILURE' file='xmlerror' value='1008' type='xmlParserErrors' info='1008'/> - <enum name='XML_RNGP_DATA_CONTENT' file='xmlerror' value='1009' type='xmlParserErrors' info='1009'/> - <enum name='XML_RNGP_DEFINE_CREATE_FAILED' file='xmlerror' value='1011' type='xmlParserErrors' info='1011'/> - <enum name='XML_RNGP_DEFINE_EMPTY' file='xmlerror' value='1012' type='xmlParserErrors' info='1012'/> - <enum name='XML_RNGP_DEFINE_MISSING' file='xmlerror' value='1013' type='xmlParserErrors' info='1013'/> - <enum name='XML_RNGP_DEFINE_NAME_MISSING' file='xmlerror' value='1014' type='xmlParserErrors' info='1014'/> - <enum name='XML_RNGP_DEF_CHOICE_AND_INTERLEAVE' file='xmlerror' value='1010' type='xmlParserErrors' info='1010'/> - <enum name='XML_RNGP_ELEMENT_CONTENT' file='xmlerror' value='1018' type='xmlParserErrors' info='1018'/> - <enum name='XML_RNGP_ELEMENT_EMPTY' file='xmlerror' value='1017' type='xmlParserErrors' info='1017'/> - <enum name='XML_RNGP_ELEMENT_NAME' file='xmlerror' value='1019' type='xmlParserErrors' info='1019'/> - <enum name='XML_RNGP_ELEMENT_NO_CONTENT' file='xmlerror' value='1020' type='xmlParserErrors' info='1020'/> - <enum name='XML_RNGP_ELEM_CONTENT_EMPTY' file='xmlerror' value='1015' type='xmlParserErrors' info='1015'/> - <enum name='XML_RNGP_ELEM_CONTENT_ERROR' file='xmlerror' value='1016' type='xmlParserErrors' info='1016'/> - <enum name='XML_RNGP_ELEM_TEXT_CONFLICT' file='xmlerror' value='1021' type='xmlParserErrors' info='1021'/> - <enum name='XML_RNGP_EMPTY' file='xmlerror' value='1022' type='xmlParserErrors' info='1022'/> - <enum name='XML_RNGP_EMPTY_CONSTRUCT' file='xmlerror' value='1023' type='xmlParserErrors' info='1023'/> - <enum name='XML_RNGP_EMPTY_CONTENT' file='xmlerror' value='1024' type='xmlParserErrors' info='1024'/> - <enum name='XML_RNGP_EMPTY_NOT_EMPTY' file='xmlerror' value='1025' type='xmlParserErrors' info='1025'/> - <enum name='XML_RNGP_ERROR_TYPE_LIB' file='xmlerror' value='1026' type='xmlParserErrors' info='1026'/> - <enum name='XML_RNGP_EXCEPT_EMPTY' file='xmlerror' value='1027' type='xmlParserErrors' info='1027'/> - <enum name='XML_RNGP_EXCEPT_MISSING' file='xmlerror' value='1028' type='xmlParserErrors' info='1028'/> - <enum name='XML_RNGP_EXCEPT_MULTIPLE' file='xmlerror' value='1029' type='xmlParserErrors' info='1029'/> - <enum name='XML_RNGP_EXCEPT_NO_CONTENT' file='xmlerror' value='1030' type='xmlParserErrors' info='1030'/> - <enum name='XML_RNGP_EXTERNALREF_EMTPY' file='xmlerror' value='1031' type='xmlParserErrors' info='1031'/> - <enum name='XML_RNGP_EXTERNALREF_RECURSE' file='xmlerror' value='1033' type='xmlParserErrors' info='1033'/> - <enum name='XML_RNGP_EXTERNAL_REF_FAILURE' file='xmlerror' value='1032' type='xmlParserErrors' info='1032'/> - <enum name='XML_RNGP_FORBIDDEN_ATTRIBUTE' file='xmlerror' value='1034' type='xmlParserErrors' info='1034'/> - <enum name='XML_RNGP_FOREIGN_ELEMENT' file='xmlerror' value='1035' type='xmlParserErrors' info='1035'/> - <enum name='XML_RNGP_GRAMMAR_CONTENT' file='xmlerror' value='1036' type='xmlParserErrors' info='1036'/> - <enum name='XML_RNGP_GRAMMAR_EMPTY' file='xmlerror' value='1037' type='xmlParserErrors' info='1037'/> - <enum name='XML_RNGP_GRAMMAR_MISSING' file='xmlerror' value='1038' type='xmlParserErrors' info='1038'/> - <enum name='XML_RNGP_GRAMMAR_NO_START' file='xmlerror' value='1039' type='xmlParserErrors' info='1039'/> - <enum name='XML_RNGP_GROUP_ATTR_CONFLICT' file='xmlerror' value='1040' type='xmlParserErrors' info='1040'/> - <enum name='XML_RNGP_HREF_ERROR' file='xmlerror' value='1041' type='xmlParserErrors' info='1041'/> - <enum name='XML_RNGP_INCLUDE_EMPTY' file='xmlerror' value='1042' type='xmlParserErrors' info='1042'/> - <enum name='XML_RNGP_INCLUDE_FAILURE' file='xmlerror' value='1043' type='xmlParserErrors' info='1043'/> - <enum name='XML_RNGP_INCLUDE_RECURSE' file='xmlerror' value='1044' type='xmlParserErrors' info='1044'/> - <enum name='XML_RNGP_INTERLEAVE_ADD' file='xmlerror' value='1045' type='xmlParserErrors' info='1045'/> - <enum name='XML_RNGP_INTERLEAVE_CREATE_FAILED' file='xmlerror' value='1046' type='xmlParserErrors' info='1046'/> - <enum name='XML_RNGP_INTERLEAVE_EMPTY' file='xmlerror' value='1047' type='xmlParserErrors' info='1047'/> - <enum name='XML_RNGP_INTERLEAVE_NO_CONTENT' file='xmlerror' value='1048' type='xmlParserErrors' info='1048'/> - <enum name='XML_RNGP_INVALID_DEFINE_NAME' file='xmlerror' value='1049' type='xmlParserErrors' info='1049'/> - <enum name='XML_RNGP_INVALID_URI' file='xmlerror' value='1050' type='xmlParserErrors' info='1050'/> - <enum name='XML_RNGP_INVALID_VALUE' file='xmlerror' value='1051' type='xmlParserErrors' info='1051'/> - <enum name='XML_RNGP_MISSING_HREF' file='xmlerror' value='1052' type='xmlParserErrors' info='1052'/> - <enum name='XML_RNGP_NAME_MISSING' file='xmlerror' value='1053' type='xmlParserErrors' info='1053'/> - <enum name='XML_RNGP_NEED_COMBINE' file='xmlerror' value='1054' type='xmlParserErrors' info='1054'/> - <enum name='XML_RNGP_NOTALLOWED_NOT_EMPTY' file='xmlerror' value='1055' type='xmlParserErrors' info='1055'/> - <enum name='XML_RNGP_NSNAME_ATTR_ANCESTOR' file='xmlerror' value='1056' type='xmlParserErrors' info='1056'/> - <enum name='XML_RNGP_NSNAME_NO_NS' file='xmlerror' value='1057' type='xmlParserErrors' info='1057'/> - <enum name='XML_RNGP_PARAM_FORBIDDEN' file='xmlerror' value='1058' type='xmlParserErrors' info='1058'/> - <enum name='XML_RNGP_PARAM_NAME_MISSING' file='xmlerror' value='1059' type='xmlParserErrors' info='1059'/> - <enum name='XML_RNGP_PARENTREF_CREATE_FAILED' file='xmlerror' value='1060' type='xmlParserErrors' info='1060'/> - <enum name='XML_RNGP_PARENTREF_NAME_INVALID' file='xmlerror' value='1061' type='xmlParserErrors' info='1061'/> - <enum name='XML_RNGP_PARENTREF_NOT_EMPTY' file='xmlerror' value='1064' type='xmlParserErrors' info='1064'/> - <enum name='XML_RNGP_PARENTREF_NO_NAME' file='xmlerror' value='1062' type='xmlParserErrors' info='1062'/> - <enum name='XML_RNGP_PARENTREF_NO_PARENT' file='xmlerror' value='1063' type='xmlParserErrors' info='1063'/> - <enum name='XML_RNGP_PARSE_ERROR' file='xmlerror' value='1065' type='xmlParserErrors' info='1065'/> - <enum name='XML_RNGP_PAT_ANYNAME_EXCEPT_ANYNAME' file='xmlerror' value='1066' type='xmlParserErrors' info='1066'/> - <enum name='XML_RNGP_PAT_ATTR_ATTR' file='xmlerror' value='1067' type='xmlParserErrors' info='1067'/> - <enum name='XML_RNGP_PAT_ATTR_ELEM' file='xmlerror' value='1068' type='xmlParserErrors' info='1068'/> - <enum name='XML_RNGP_PAT_DATA_EXCEPT_ATTR' file='xmlerror' value='1069' type='xmlParserErrors' info='1069'/> - <enum name='XML_RNGP_PAT_DATA_EXCEPT_ELEM' file='xmlerror' value='1070' type='xmlParserErrors' info='1070'/> - <enum name='XML_RNGP_PAT_DATA_EXCEPT_EMPTY' file='xmlerror' value='1071' type='xmlParserErrors' info='1071'/> - <enum name='XML_RNGP_PAT_DATA_EXCEPT_GROUP' file='xmlerror' value='1072' type='xmlParserErrors' info='1072'/> - <enum name='XML_RNGP_PAT_DATA_EXCEPT_INTERLEAVE' file='xmlerror' value='1073' type='xmlParserErrors' info='1073'/> - <enum name='XML_RNGP_PAT_DATA_EXCEPT_LIST' file='xmlerror' value='1074' type='xmlParserErrors' info='1074'/> - <enum name='XML_RNGP_PAT_DATA_EXCEPT_ONEMORE' file='xmlerror' value='1075' type='xmlParserErrors' info='1075'/> - <enum name='XML_RNGP_PAT_DATA_EXCEPT_REF' file='xmlerror' value='1076' type='xmlParserErrors' info='1076'/> - <enum name='XML_RNGP_PAT_DATA_EXCEPT_TEXT' file='xmlerror' value='1077' type='xmlParserErrors' info='1077'/> - <enum name='XML_RNGP_PAT_LIST_ATTR' file='xmlerror' value='1078' type='xmlParserErrors' info='1078'/> - <enum name='XML_RNGP_PAT_LIST_ELEM' file='xmlerror' value='1079' type='xmlParserErrors' info='1079'/> - <enum name='XML_RNGP_PAT_LIST_INTERLEAVE' file='xmlerror' value='1080' type='xmlParserErrors' info='1080'/> - <enum name='XML_RNGP_PAT_LIST_LIST' file='xmlerror' value='1081' type='xmlParserErrors' info='1081'/> - <enum name='XML_RNGP_PAT_LIST_REF' file='xmlerror' value='1082' type='xmlParserErrors' info='1082'/> - <enum name='XML_RNGP_PAT_LIST_TEXT' file='xmlerror' value='1083' type='xmlParserErrors' info='1083'/> - <enum name='XML_RNGP_PAT_NSNAME_EXCEPT_ANYNAME' file='xmlerror' value='1084' type='xmlParserErrors' info='1084'/> - <enum name='XML_RNGP_PAT_NSNAME_EXCEPT_NSNAME' file='xmlerror' value='1085' type='xmlParserErrors' info='1085'/> - <enum name='XML_RNGP_PAT_ONEMORE_GROUP_ATTR' file='xmlerror' value='1086' type='xmlParserErrors' info='1086'/> - <enum name='XML_RNGP_PAT_ONEMORE_INTERLEAVE_ATTR' file='xmlerror' value='1087' type='xmlParserErrors' info='1087'/> - <enum name='XML_RNGP_PAT_START_ATTR' file='xmlerror' value='1088' type='xmlParserErrors' info='1088'/> - <enum name='XML_RNGP_PAT_START_DATA' file='xmlerror' value='1089' type='xmlParserErrors' info='1089'/> - <enum name='XML_RNGP_PAT_START_EMPTY' file='xmlerror' value='1090' type='xmlParserErrors' info='1090'/> - <enum name='XML_RNGP_PAT_START_GROUP' file='xmlerror' value='1091' type='xmlParserErrors' info='1091'/> - <enum name='XML_RNGP_PAT_START_INTERLEAVE' file='xmlerror' value='1092' type='xmlParserErrors' info='1092'/> - <enum name='XML_RNGP_PAT_START_LIST' file='xmlerror' value='1093' type='xmlParserErrors' info='1093'/> - <enum name='XML_RNGP_PAT_START_ONEMORE' file='xmlerror' value='1094' type='xmlParserErrors' info='1094'/> - <enum name='XML_RNGP_PAT_START_TEXT' file='xmlerror' value='1095' type='xmlParserErrors' info='1095'/> - <enum name='XML_RNGP_PAT_START_VALUE' file='xmlerror' value='1096' type='xmlParserErrors' info='1096'/> - <enum name='XML_RNGP_PREFIX_UNDEFINED' file='xmlerror' value='1097' type='xmlParserErrors' info='1097'/> - <enum name='XML_RNGP_REF_CREATE_FAILED' file='xmlerror' value='1098' type='xmlParserErrors' info='1098'/> - <enum name='XML_RNGP_REF_CYCLE' file='xmlerror' value='1099' type='xmlParserErrors' info='1099'/> - <enum name='XML_RNGP_REF_NAME_INVALID' file='xmlerror' value='1100' type='xmlParserErrors' info='1100'/> - <enum name='XML_RNGP_REF_NOT_EMPTY' file='xmlerror' value='1103' type='xmlParserErrors' info='1103'/> - <enum name='XML_RNGP_REF_NO_DEF' file='xmlerror' value='1101' type='xmlParserErrors' info='1101'/> - <enum name='XML_RNGP_REF_NO_NAME' file='xmlerror' value='1102' type='xmlParserErrors' info='1102'/> - <enum name='XML_RNGP_START_CHOICE_AND_INTERLEAVE' file='xmlerror' value='1104' type='xmlParserErrors' info='1104'/> - <enum name='XML_RNGP_START_CONTENT' file='xmlerror' value='1105' type='xmlParserErrors' info='1105'/> - <enum name='XML_RNGP_START_EMPTY' file='xmlerror' value='1106' type='xmlParserErrors' info='1106'/> - <enum name='XML_RNGP_START_MISSING' file='xmlerror' value='1107' type='xmlParserErrors' info='1107'/> - <enum name='XML_RNGP_TEXT_EXPECTED' file='xmlerror' value='1108' type='xmlParserErrors' info='1108'/> - <enum name='XML_RNGP_TEXT_HAS_CHILD' file='xmlerror' value='1109' type='xmlParserErrors' info='1109'/> - <enum name='XML_RNGP_TYPE_MISSING' file='xmlerror' value='1110' type='xmlParserErrors' info='1110'/> - <enum name='XML_RNGP_TYPE_NOT_FOUND' file='xmlerror' value='1111' type='xmlParserErrors' info='1111'/> - <enum name='XML_RNGP_TYPE_VALUE' file='xmlerror' value='1112' type='xmlParserErrors' info='1112'/> - <enum name='XML_RNGP_UNKNOWN_ATTRIBUTE' file='xmlerror' value='1113' type='xmlParserErrors' info='1113'/> - <enum name='XML_RNGP_UNKNOWN_COMBINE' file='xmlerror' value='1114' type='xmlParserErrors' info='1114'/> - <enum name='XML_RNGP_UNKNOWN_CONSTRUCT' file='xmlerror' value='1115' type='xmlParserErrors' info='1115'/> - <enum name='XML_RNGP_UNKNOWN_TYPE_LIB' file='xmlerror' value='1116' type='xmlParserErrors' info='1116'/> - <enum name='XML_RNGP_URI_FRAGMENT' file='xmlerror' value='1117' type='xmlParserErrors' info='1117'/> - <enum name='XML_RNGP_URI_NOT_ABSOLUTE' file='xmlerror' value='1118' type='xmlParserErrors' info='1118'/> - <enum name='XML_RNGP_VALUE_EMPTY' file='xmlerror' value='1119' type='xmlParserErrors' info='1119'/> - <enum name='XML_RNGP_VALUE_NO_CONTENT' file='xmlerror' value='1120' type='xmlParserErrors' info='1120'/> - <enum name='XML_RNGP_XMLNS_NAME' file='xmlerror' value='1121' type='xmlParserErrors' info='1121'/> - <enum name='XML_RNGP_XML_NS' file='xmlerror' value='1122' type='xmlParserErrors' info='1122'/> - <enum name='XML_SAVE_CHAR_INVALID' file='xmlerror' value='1401' type='xmlParserErrors' info='1401'/> - <enum name='XML_SAVE_FORMAT' file='xmlsave' value='1' type='xmlSaveOption' info='format save output'/> - <enum name='XML_SAVE_NOT_UTF8' file='xmlerror' value='1400' type='xmlParserErrors'/> - <enum name='XML_SAVE_NO_DECL' file='xmlsave' value='2' type='xmlSaveOption' info='drop the xml declaration'/> - <enum name='XML_SAVE_NO_DOCTYPE' file='xmlerror' value='1402' type='xmlParserErrors' info='1402'/> - <enum name='XML_SAVE_NO_EMPTY' file='xmlsave' value='4' type='xmlSaveOption' info='no empty tags'/> - <enum name='XML_SAVE_NO_XHTML' file='xmlsave' value='8' type='xmlSaveOption' info=' disable XHTML1 specific rules'/> - <enum name='XML_SAVE_UNKNOWN_ENCODING' file='xmlerror' value='1403' type='xmlParserErrors' info='1403'/> - <enum name='XML_SCHEMAP_AG_PROPS_CORRECT' file='xmlerror' value='3087' type='xmlParserErrors' info='3086'/> - <enum name='XML_SCHEMAP_ATTRFORMDEFAULT_VALUE' file='xmlerror' value='1701' type='xmlParserErrors' info='1701'/> - <enum name='XML_SCHEMAP_ATTRGRP_NONAME_NOREF' file='xmlerror' value='1702' type='xmlParserErrors' info='1702'/> - <enum name='XML_SCHEMAP_ATTR_NONAME_NOREF' file='xmlerror' value='1703' type='xmlParserErrors' info='1703'/> - <enum name='XML_SCHEMAP_AU_PROPS_CORRECT' file='xmlerror' value='3089' type='xmlParserErrors' info='3088'/> - <enum name='XML_SCHEMAP_AU_PROPS_CORRECT_2' file='xmlerror' value='3078' type='xmlParserErrors' info='3078'/> - <enum name='XML_SCHEMAP_A_PROPS_CORRECT_2' file='xmlerror' value='3079' type='xmlParserErrors' info='3079'/> - <enum name='XML_SCHEMAP_A_PROPS_CORRECT_3' file='xmlerror' value='3090' type='xmlParserErrors' info='3089'/> - <enum name='XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF' file='xmlerror' value='1704' type='xmlParserErrors' info='1704'/> - <enum name='XML_SCHEMAP_COS_ALL_LIMITED' file='xmlerror' value='3091' type='xmlParserErrors' info='3090'/> - <enum name='XML_SCHEMAP_COS_CT_EXTENDS_1_1' file='xmlerror' value='3063' type='xmlParserErrors' info='3063'/> - <enum name='XML_SCHEMAP_COS_CT_EXTENDS_1_2' file='xmlerror' value='3088' type='xmlParserErrors' info='3087'/> - <enum name='XML_SCHEMAP_COS_CT_EXTENDS_1_3' file='xmlerror' value='1800' type='xmlParserErrors' info='1800'/> - <enum name='XML_SCHEMAP_COS_ST_DERIVED_OK_2_1' file='xmlerror' value='3031' type='xmlParserErrors' info='3031'/> - <enum name='XML_SCHEMAP_COS_ST_DERIVED_OK_2_2' file='xmlerror' value='3032' type='xmlParserErrors' info='3032'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_1_1' file='xmlerror' value='3011' type='xmlParserErrors' info='3011'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_1_2' file='xmlerror' value='3012' type='xmlParserErrors' info='3012'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_1' file='xmlerror' value='3013' type='xmlParserErrors' info='3013'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_1_3_2' file='xmlerror' value='3014' type='xmlParserErrors' info='3014'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_2_1' file='xmlerror' value='3015' type='xmlParserErrors' info='3015'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_1' file='xmlerror' value='3016' type='xmlParserErrors' info='3016'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_1_2' file='xmlerror' value='3017' type='xmlParserErrors' info='3017'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_1' file='xmlerror' value='3018' type='xmlParserErrors' info='3018'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2' file='xmlerror' value='3019' type='xmlParserErrors' info='3019'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_3' file='xmlerror' value='3020' type='xmlParserErrors' info='3020'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_4' file='xmlerror' value='3021' type='xmlParserErrors' info='3021'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_5' file='xmlerror' value='3022' type='xmlParserErrors' info='3022'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_3_1' file='xmlerror' value='3023' type='xmlParserErrors' info='3023'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1' file='xmlerror' value='3024' type='xmlParserErrors' info='3024'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_1_2' file='xmlerror' value='3025' type='xmlParserErrors' info='3025'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_1' file='xmlerror' value='3027' type='xmlParserErrors' info='3027'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_2' file='xmlerror' value='3026' type='xmlParserErrors' info='3026'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3' file='xmlerror' value='3028' type='xmlParserErrors' info='3028'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4' file='xmlerror' value='3029' type='xmlParserErrors' info='3029'/> - <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5' file='xmlerror' value='3030' type='xmlParserErrors' info='3030'/> - <enum name='XML_SCHEMAP_COS_VALID_DEFAULT_1' file='xmlerror' value='3058' type='xmlParserErrors' info='3058'/> - <enum name='XML_SCHEMAP_COS_VALID_DEFAULT_2_1' file='xmlerror' value='3059' type='xmlParserErrors' info='3059'/> - <enum name='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1' file='xmlerror' value='3060' type='xmlParserErrors' info='3060'/> - <enum name='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2' file='xmlerror' value='3061' type='xmlParserErrors' info='3061'/> - <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_1' file='xmlerror' value='1782' type='xmlParserErrors' info='1782'/> - <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_2' file='xmlerror' value='1783' type='xmlParserErrors' info='1783'/> - <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_3' file='xmlerror' value='1784' type='xmlParserErrors' info='1784'/> - <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_4' file='xmlerror' value='1785' type='xmlParserErrors' info='1785'/> - <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_5' file='xmlerror' value='1786' type='xmlParserErrors' info='1786'/> - <enum name='XML_SCHEMAP_CVC_SIMPLE_TYPE' file='xmlerror' value='3062' type='xmlParserErrors' info='3062'/> - <enum name='XML_SCHEMAP_C_PROPS_CORRECT' file='xmlerror' value='3080' type='xmlParserErrors' info='3080'/> - <enum name='XML_SCHEMAP_DEF_AND_PREFIX' file='xmlerror' value='1768' type='xmlParserErrors' info='1768'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1' file='xmlerror' value='1787' type='xmlParserErrors' info='1787'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1' file='xmlerror' value='1788' type='xmlParserErrors' info='1788'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2' file='xmlerror' value='1789' type='xmlParserErrors' info='1789'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3' file='xmlerror' value='3077' type='xmlParserErrors' info='3077'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2' file='xmlerror' value='1790' type='xmlParserErrors' info='1790'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3' file='xmlerror' value='1791' type='xmlParserErrors' info='1791'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1' file='xmlerror' value='1797' type='xmlParserErrors' info='1797'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2' file='xmlerror' value='1798' type='xmlParserErrors' info='1798'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3' file='xmlerror' value='1799' type='xmlParserErrors' info='1799'/> - <enum name='XML_SCHEMAP_ELEMFORMDEFAULT_VALUE' file='xmlerror' value='1705' type='xmlParserErrors' info='1705'/> - <enum name='XML_SCHEMAP_ELEM_DEFAULT_FIXED' file='xmlerror' value='1755' type='xmlParserErrors' info='1755'/> - <enum name='XML_SCHEMAP_ELEM_NONAME_NOREF' file='xmlerror' value='1706' type='xmlParserErrors' info='1706'/> - <enum name='XML_SCHEMAP_EXTENSION_NO_BASE' file='xmlerror' value='1707' type='xmlParserErrors' info='1707'/> - <enum name='XML_SCHEMAP_E_PROPS_CORRECT_2' file='xmlerror' value='3045' type='xmlParserErrors' info='3045'/> - <enum name='XML_SCHEMAP_E_PROPS_CORRECT_3' file='xmlerror' value='3046' type='xmlParserErrors' info='3046'/> - <enum name='XML_SCHEMAP_E_PROPS_CORRECT_4' file='xmlerror' value='3047' type='xmlParserErrors' info='3047'/> - <enum name='XML_SCHEMAP_E_PROPS_CORRECT_5' file='xmlerror' value='3048' type='xmlParserErrors' info='3048'/> - <enum name='XML_SCHEMAP_E_PROPS_CORRECT_6' file='xmlerror' value='3049' type='xmlParserErrors' info='3049'/> - <enum name='XML_SCHEMAP_FACET_NO_VALUE' file='xmlerror' value='1708' type='xmlParserErrors' info='1708'/> - <enum name='XML_SCHEMAP_FAILED_BUILD_IMPORT' file='xmlerror' value='1709' type='xmlParserErrors' info='1709'/> - <enum name='XML_SCHEMAP_FAILED_LOAD' file='xmlerror' value='1757' type='xmlParserErrors' info='1757'/> - <enum name='XML_SCHEMAP_FAILED_PARSE' file='xmlerror' value='1766' type='xmlParserErrors' info='1766'/> - <enum name='XML_SCHEMAP_GROUP_NONAME_NOREF' file='xmlerror' value='1710' type='xmlParserErrors' info='1710'/> - <enum name='XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI' file='xmlerror' value='1711' type='xmlParserErrors' info='1711'/> - <enum name='XML_SCHEMAP_IMPORT_REDEFINE_NSNAME' file='xmlerror' value='1712' type='xmlParserErrors' info='1712'/> - <enum name='XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI' file='xmlerror' value='1713' type='xmlParserErrors' info='1713'/> - <enum name='XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI' file='xmlerror' value='1770' type='xmlParserErrors' info='1770'/> - <enum name='XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI' file='xmlerror' value='1771' type='xmlParserErrors' info='1771'/> - <enum name='XML_SCHEMAP_INTERNAL' file='xmlerror' value='3069' type='xmlParserErrors' info='3069 non-W3C'/> - <enum name='XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE' file='xmlerror' value='1793' type='xmlParserErrors' info='1793'/> - <enum name='XML_SCHEMAP_INVALID_ATTR_COMBINATION' file='xmlerror' value='1777' type='xmlParserErrors' info='1777'/> - <enum name='XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION' file='xmlerror' value='1778' type='xmlParserErrors' info='1778'/> - <enum name='XML_SCHEMAP_INVALID_ATTR_NAME' file='xmlerror' value='1780' type='xmlParserErrors' info='1780'/> - <enum name='XML_SCHEMAP_INVALID_ATTR_USE' file='xmlerror' value='1774' type='xmlParserErrors' info='1774'/> - <enum name='XML_SCHEMAP_INVALID_BOOLEAN' file='xmlerror' value='1714' type='xmlParserErrors' info='1714'/> - <enum name='XML_SCHEMAP_INVALID_ENUM' file='xmlerror' value='1715' type='xmlParserErrors' info='1715'/> - <enum name='XML_SCHEMAP_INVALID_FACET' file='xmlerror' value='1716' type='xmlParserErrors' info='1716'/> - <enum name='XML_SCHEMAP_INVALID_FACET_VALUE' file='xmlerror' value='1717' type='xmlParserErrors' info='1717'/> - <enum name='XML_SCHEMAP_INVALID_MAXOCCURS' file='xmlerror' value='1718' type='xmlParserErrors' info='1718'/> - <enum name='XML_SCHEMAP_INVALID_MINOCCURS' file='xmlerror' value='1719' type='xmlParserErrors' info='1719'/> - <enum name='XML_SCHEMAP_INVALID_REF_AND_SUBTYPE' file='xmlerror' value='1720' type='xmlParserErrors' info='1720'/> - <enum name='XML_SCHEMAP_INVALID_WHITE_SPACE' file='xmlerror' value='1721' type='xmlParserErrors' info='1721'/> - <enum name='XML_SCHEMAP_MG_PROPS_CORRECT_1' file='xmlerror' value='3074' type='xmlParserErrors' info='3074'/> - <enum name='XML_SCHEMAP_MG_PROPS_CORRECT_2' file='xmlerror' value='3075' type='xmlParserErrors' info='3075'/> - <enum name='XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD' file='xmlerror' value='1779' type='xmlParserErrors' info='1779'/> - <enum name='XML_SCHEMAP_NOATTR_NOREF' file='xmlerror' value='1722' type='xmlParserErrors' info='1722'/> - <enum name='XML_SCHEMAP_NOROOT' file='xmlerror' value='1759' type='xmlParserErrors' info='1759'/> - <enum name='XML_SCHEMAP_NOTATION_NO_NAME' file='xmlerror' value='1723' type='xmlParserErrors' info='1723'/> - <enum name='XML_SCHEMAP_NOTHING_TO_PARSE' file='xmlerror' value='1758' type='xmlParserErrors' info='1758'/> - <enum name='XML_SCHEMAP_NOTYPE_NOREF' file='xmlerror' value='1724' type='xmlParserErrors' info='1724'/> - <enum name='XML_SCHEMAP_NOT_DETERMINISTIC' file='xmlerror' value='3070' type='xmlParserErrors' info='3070 non-W3C'/> - <enum name='XML_SCHEMAP_NOT_SCHEMA' file='xmlerror' value='1772' type='xmlParserErrors' info='1772'/> - <enum name='XML_SCHEMAP_NO_XMLNS' file='xmlerror' value='3056' type='xmlParserErrors' info='3056'/> - <enum name='XML_SCHEMAP_NO_XSI' file='xmlerror' value='3057' type='xmlParserErrors' info='3057'/> - <enum name='XML_SCHEMAP_PREFIX_UNDEFINED' file='xmlerror' value='1700' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_P_PROPS_CORRECT_1' file='xmlerror' value='3042' type='xmlParserErrors' info='3042'/> - <enum name='XML_SCHEMAP_P_PROPS_CORRECT_2_1' file='xmlerror' value='3043' type='xmlParserErrors' info='3043'/> - <enum name='XML_SCHEMAP_P_PROPS_CORRECT_2_2' file='xmlerror' value='3044' type='xmlParserErrors' info='3044'/> - <enum name='XML_SCHEMAP_RECURSIVE' file='xmlerror' value='1775' type='xmlParserErrors' info='1775'/> - <enum name='XML_SCHEMAP_REDEFINED_ATTR' file='xmlerror' value='1764' type='xmlParserErrors' info='1764'/> - <enum name='XML_SCHEMAP_REDEFINED_ATTRGROUP' file='xmlerror' value='1763' type='xmlParserErrors' info='1763'/> - <enum name='XML_SCHEMAP_REDEFINED_ELEMENT' file='xmlerror' value='1762' type='xmlParserErrors' info='1762'/> - <enum name='XML_SCHEMAP_REDEFINED_GROUP' file='xmlerror' value='1760' type='xmlParserErrors' info='1760'/> - <enum name='XML_SCHEMAP_REDEFINED_NOTATION' file='xmlerror' value='1765' type='xmlParserErrors' info='1765'/> - <enum name='XML_SCHEMAP_REDEFINED_TYPE' file='xmlerror' value='1761' type='xmlParserErrors' info='1761'/> - <enum name='XML_SCHEMAP_REF_AND_CONTENT' file='xmlerror' value='1781' type='xmlParserErrors' info='1781'/> - <enum name='XML_SCHEMAP_REF_AND_SUBTYPE' file='xmlerror' value='1725' type='xmlParserErrors' info='1725'/> - <enum name='XML_SCHEMAP_REGEXP_INVALID' file='xmlerror' value='1756' type='xmlParserErrors' info='1756'/> - <enum name='XML_SCHEMAP_RESTRICTION_NONAME_NOREF' file='xmlerror' value='1726' type='xmlParserErrors' info='1726'/> - <enum name='XML_SCHEMAP_S4S_ATTR_INVALID_VALUE' file='xmlerror' value='3037' type='xmlParserErrors' info='3037'/> - <enum name='XML_SCHEMAP_S4S_ATTR_MISSING' file='xmlerror' value='3036' type='xmlParserErrors' info='3036'/> - <enum name='XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED' file='xmlerror' value='3035' type='xmlParserErrors' info='3035'/> - <enum name='XML_SCHEMAP_S4S_ELEM_MISSING' file='xmlerror' value='3034' type='xmlParserErrors' info='3034'/> - <enum name='XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED' file='xmlerror' value='3033' type='xmlParserErrors' info='3033'/> - <enum name='XML_SCHEMAP_SIMPLETYPE_NONAME' file='xmlerror' value='1727' type='xmlParserErrors' info='1727'/> - <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_1' file='xmlerror' value='3051' type='xmlParserErrors' info='3051'/> - <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_2' file='xmlerror' value='3052' type='xmlParserErrors' info='3052'/> - <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_3_1' file='xmlerror' value='3053' type='xmlParserErrors' info='3053'/> - <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_3_2' file='xmlerror' value='3054' type='xmlParserErrors' info='3054'/> - <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_4' file='xmlerror' value='3055' type='xmlParserErrors' info='3055'/> - <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1' file='xmlerror' value='3071' type='xmlParserErrors' info='3071'/> - <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2' file='xmlerror' value='3072' type='xmlParserErrors' info='3072'/> - <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3' file='xmlerror' value='3073' type='xmlParserErrors' info='3073'/> - <enum name='XML_SCHEMAP_SRC_CT_1' file='xmlerror' value='3076' type='xmlParserErrors' info='3076'/> - <enum name='XML_SCHEMAP_SRC_ELEMENT_1' file='xmlerror' value='3038' type='xmlParserErrors' info='3038'/> - <enum name='XML_SCHEMAP_SRC_ELEMENT_2_1' file='xmlerror' value='3039' type='xmlParserErrors' info='3039'/> - <enum name='XML_SCHEMAP_SRC_ELEMENT_2_2' file='xmlerror' value='3040' type='xmlParserErrors' info='3040'/> - <enum name='XML_SCHEMAP_SRC_ELEMENT_3' file='xmlerror' value='3041' type='xmlParserErrors' info='3041'/> - <enum name='XML_SCHEMAP_SRC_IMPORT' file='xmlerror' value='3082' type='xmlParserErrors' info='3082'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_1_1' file='xmlerror' value='3064' type='xmlParserErrors' info='3064'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_1_2' file='xmlerror' value='3065' type='xmlParserErrors' info='3065'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_2' file='xmlerror' value='3066' type='xmlParserErrors' info='3066'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_2_1' file='xmlerror' value='3067' type='xmlParserErrors' info='3067'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_2_2' file='xmlerror' value='3068' type='xmlParserErrors' info='3068'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_3_1' file='xmlerror' value='1795' type='xmlParserErrors' info='1795'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_3_2' file='xmlerror' value='1796' type='xmlParserErrors' info='1796'/> - <enum name='XML_SCHEMAP_SRC_INCLUDE' file='xmlerror' value='3050' type='xmlParserErrors' info='3050'/> - <enum name='XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE' file='xmlerror' value='3006' type='xmlParserErrors' info='3006'/> - <enum name='XML_SCHEMAP_SRC_REDEFINE' file='xmlerror' value='3081' type='xmlParserErrors' info='3081'/> - <enum name='XML_SCHEMAP_SRC_RESOLVE' file='xmlerror' value='3004' type='xmlParserErrors' info='3004'/> - <enum name='XML_SCHEMAP_SRC_RESTRICTION_BASE_OR_SIMPLETYPE' file='xmlerror' value='3005' type='xmlParserErrors' info='3005'/> - <enum name='XML_SCHEMAP_SRC_SIMPLE_TYPE_1' file='xmlerror' value='3000' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_SRC_SIMPLE_TYPE_2' file='xmlerror' value='3001' type='xmlParserErrors' info='3001'/> - <enum name='XML_SCHEMAP_SRC_SIMPLE_TYPE_3' file='xmlerror' value='3002' type='xmlParserErrors' info='3002'/> - <enum name='XML_SCHEMAP_SRC_SIMPLE_TYPE_4' file='xmlerror' value='3003' type='xmlParserErrors' info='3003'/> - <enum name='XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES' file='xmlerror' value='3007' type='xmlParserErrors' info='3007'/> - <enum name='XML_SCHEMAP_ST_PROPS_CORRECT_1' file='xmlerror' value='3008' type='xmlParserErrors' info='3008'/> - <enum name='XML_SCHEMAP_ST_PROPS_CORRECT_2' file='xmlerror' value='3009' type='xmlParserErrors' info='3009'/> - <enum name='XML_SCHEMAP_ST_PROPS_CORRECT_3' file='xmlerror' value='3010' type='xmlParserErrors' info='3010'/> - <enum name='XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE' file='xmlerror' value='1776' type='xmlParserErrors' info='1776'/> - <enum name='XML_SCHEMAP_TYPE_AND_SUBTYPE' file='xmlerror' value='1728' type='xmlParserErrors' info='1728'/> - <enum name='XML_SCHEMAP_UNION_NOT_EXPRESSIBLE' file='xmlerror' value='1794' type='xmlParserErrors' info='1794'/> - <enum name='XML_SCHEMAP_UNKNOWN_ALL_CHILD' file='xmlerror' value='1729' type='xmlParserErrors' info='1729'/> - <enum name='XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD' file='xmlerror' value='1730' type='xmlParserErrors' info='1730'/> - <enum name='XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD' file='xmlerror' value='1732' type='xmlParserErrors' info='1732'/> - <enum name='XML_SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP' file='xmlerror' value='1733' type='xmlParserErrors' info='1733'/> - <enum name='XML_SCHEMAP_UNKNOWN_ATTR_CHILD' file='xmlerror' value='1731' type='xmlParserErrors' info='1731'/> - <enum name='XML_SCHEMAP_UNKNOWN_BASE_TYPE' file='xmlerror' value='1734' type='xmlParserErrors' info='1734'/> - <enum name='XML_SCHEMAP_UNKNOWN_CHOICE_CHILD' file='xmlerror' value='1735' type='xmlParserErrors' info='1735'/> - <enum name='XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD' file='xmlerror' value='1736' type='xmlParserErrors' info='1736'/> - <enum name='XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD' file='xmlerror' value='1737' type='xmlParserErrors' info='1737'/> - <enum name='XML_SCHEMAP_UNKNOWN_ELEM_CHILD' file='xmlerror' value='1738' type='xmlParserErrors' info='1738'/> - <enum name='XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD' file='xmlerror' value='1739' type='xmlParserErrors' info='1739'/> - <enum name='XML_SCHEMAP_UNKNOWN_FACET_CHILD' file='xmlerror' value='1740' type='xmlParserErrors' info='1740'/> - <enum name='XML_SCHEMAP_UNKNOWN_FACET_TYPE' file='xmlerror' value='1741' type='xmlParserErrors' info='1741'/> - <enum name='XML_SCHEMAP_UNKNOWN_GROUP_CHILD' file='xmlerror' value='1742' type='xmlParserErrors' info='1742'/> - <enum name='XML_SCHEMAP_UNKNOWN_IMPORT_CHILD' file='xmlerror' value='1743' type='xmlParserErrors' info='1743'/> - <enum name='XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD' file='xmlerror' value='1769' type='xmlParserErrors' info='1769'/> - <enum name='XML_SCHEMAP_UNKNOWN_LIST_CHILD' file='xmlerror' value='1744' type='xmlParserErrors' info='1744'/> - <enum name='XML_SCHEMAP_UNKNOWN_MEMBER_TYPE' file='xmlerror' value='1773' type='xmlParserErrors' info='1773'/> - <enum name='XML_SCHEMAP_UNKNOWN_NOTATION_CHILD' file='xmlerror' value='1745' type='xmlParserErrors' info='1745'/> - <enum name='XML_SCHEMAP_UNKNOWN_PREFIX' file='xmlerror' value='1767' type='xmlParserErrors' info='1767'/> - <enum name='XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD' file='xmlerror' value='1746' type='xmlParserErrors' info='1746'/> - <enum name='XML_SCHEMAP_UNKNOWN_REF' file='xmlerror' value='1747' type='xmlParserErrors' info='1747'/> - <enum name='XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD' file='xmlerror' value='1748' type='xmlParserErrors' info='1748'/> - <enum name='XML_SCHEMAP_UNKNOWN_SCHEMAS_CHILD' file='xmlerror' value='1749' type='xmlParserErrors' info='1749'/> - <enum name='XML_SCHEMAP_UNKNOWN_SEQUENCE_CHILD' file='xmlerror' value='1750' type='xmlParserErrors' info='1750'/> - <enum name='XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD' file='xmlerror' value='1751' type='xmlParserErrors' info='1751'/> - <enum name='XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD' file='xmlerror' value='1752' type='xmlParserErrors' info='1752'/> - <enum name='XML_SCHEMAP_UNKNOWN_TYPE' file='xmlerror' value='1753' type='xmlParserErrors' info='1753'/> - <enum name='XML_SCHEMAP_UNKNOWN_UNION_CHILD' file='xmlerror' value='1754' type='xmlParserErrors' info='1754'/> - <enum name='XML_SCHEMAP_WARN_ATTR_POINTLESS_PROH' file='xmlerror' value='3086' type='xmlParserErrors' info='3085'/> - <enum name='XML_SCHEMAP_WARN_ATTR_REDECL_PROH' file='xmlerror' value='3085' type='xmlParserErrors' info='3085'/> - <enum name='XML_SCHEMAP_WARN_SKIP_SCHEMA' file='xmlerror' value='3083' type='xmlParserErrors' info='3083'/> - <enum name='XML_SCHEMAP_WARN_UNLOCATED_SCHEMA' file='xmlerror' value='3084' type='xmlParserErrors' info='3084'/> - <enum name='XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER' file='xmlerror' value='1792' type='xmlParserErrors' info='1792'/> - <enum name='XML_SCHEMAS_ANYSIMPLETYPE' file='schemasInternals' value='46' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_ANYTYPE' file='schemasInternals' value='45' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_ANYURI' file='schemasInternals' value='29' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_BASE64BINARY' file='schemasInternals' value='44' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_BOOLEAN' file='schemasInternals' value='15' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_BYTE' file='schemasInternals' value='41' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_DATE' file='schemasInternals' value='10' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_DATETIME' file='schemasInternals' value='11' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_DECIMAL' file='schemasInternals' value='3' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_DOUBLE' file='schemasInternals' value='14' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_DURATION' file='schemasInternals' value='12' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_ENTITIES' file='schemasInternals' value='27' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_ENTITY' file='schemasInternals' value='26' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_ERR_' file='xmlschemas' value='24' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_ATTRINVALID' file='xmlschemas' value='21' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_ATTRUNKNOWN' file='xmlschemas' value='20' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_CONSTRUCT' file='xmlschemas' value='17' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_ELEMCONT' file='xmlschemas' value='10' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_EXTRACONTENT' file='xmlschemas' value='13' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_FACET' file='xmlschemas' value='23' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_HAVEDEFAULT' file='xmlschemas' value='11' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_INTERNAL' file='xmlschemas' value='18' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_INVALIDATTR' file='xmlschemas' value='14' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_INVALIDELEM' file='xmlschemas' value='15' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_ISABSTRACT' file='xmlschemas' value='8' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_MISSING' file='xmlschemas' value='4' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_NOROLLBACK' file='xmlschemas' value='7' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_NOROOT' file='xmlschemas' value='1' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_NOTDETERMINIST' file='xmlschemas' value='16' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_NOTEMPTY' file='xmlschemas' value='9' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_NOTNILLABLE' file='xmlschemas' value='12' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_NOTSIMPLE' file='xmlschemas' value='19' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_NOTTOPLEVEL' file='xmlschemas' value='3' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_NOTYPE' file='xmlschemas' value='6' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_OK' file='xmlschemas' value='0' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_UNDECLAREDELEM' file='xmlschemas' value='2' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_VALUE' file='xmlschemas' value='22' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_WRONGELEM' file='xmlschemas' value='5' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_ERR_XXX' file='xmlschemas' value='25' type='xmlSchemaValidError'/> - <enum name='XML_SCHEMAS_FLOAT' file='schemasInternals' value='13' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_GDAY' file='schemasInternals' value='5' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_GMONTH' file='schemasInternals' value='6' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_GMONTHDAY' file='schemasInternals' value='7' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_GYEAR' file='schemasInternals' value='8' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_GYEARMONTH' file='schemasInternals' value='9' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_HEXBINARY' file='schemasInternals' value='43' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_ID' file='schemasInternals' value='23' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_IDREF' file='schemasInternals' value='24' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_IDREFS' file='schemasInternals' value='25' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_INT' file='schemasInternals' value='35' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_INTEGER' file='schemasInternals' value='30' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_LANGUAGE' file='schemasInternals' value='17' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_LONG' file='schemasInternals' value='37' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_NAME' file='schemasInternals' value='20' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_NCNAME' file='schemasInternals' value='22' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_NINTEGER' file='schemasInternals' value='32' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_NMTOKEN' file='schemasInternals' value='18' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_NMTOKENS' file='schemasInternals' value='19' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_NNINTEGER' file='schemasInternals' value='33' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_NORMSTRING' file='schemasInternals' value='2' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_NOTATION' file='schemasInternals' value='28' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_NPINTEGER' file='schemasInternals' value='31' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_PINTEGER' file='schemasInternals' value='34' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_QNAME' file='schemasInternals' value='21' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_SHORT' file='schemasInternals' value='39' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_STRING' file='schemasInternals' value='1' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_TIME' file='schemasInternals' value='4' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_TOKEN' file='schemasInternals' value='16' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_UBYTE' file='schemasInternals' value='42' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_UINT' file='schemasInternals' value='36' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_ULONG' file='schemasInternals' value='38' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_UNKNOWN' file='schemasInternals' value='0' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAS_USHORT' file='schemasInternals' value='40' type='xmlSchemaValType'/> - <enum name='XML_SCHEMATRON_OUT_BUFFER' file='schematron' value='512' type='xmlSchematronValidOptions' info='output to a buffer'/> - <enum name='XML_SCHEMATRON_OUT_FILE' file='schematron' value='256' type='xmlSchematronValidOptions' info='output to a file descriptor'/> - <enum name='XML_SCHEMATRON_OUT_IO' file='schematron' value='1024' type='xmlSchematronValidOptions' info=' output to I/O mechanism'/> - <enum name='XML_SCHEMATRON_OUT_QUIET' file='schematron' value='1' type='xmlSchematronValidOptions' info='quiet no report'/> - <enum name='XML_SCHEMATRON_OUT_TEXT' file='schematron' value='2' type='xmlSchematronValidOptions' info='build a textual report'/> - <enum name='XML_SCHEMATRON_OUT_XML' file='schematron' value='4' type='xmlSchematronValidOptions' info='output SVRL'/> - <enum name='XML_SCHEMAV_ATTRINVALID' file='xmlerror' value='1821' type='xmlParserErrors' info='1821'/> - <enum name='XML_SCHEMAV_ATTRUNKNOWN' file='xmlerror' value='1820' type='xmlParserErrors' info='1820'/> - <enum name='XML_SCHEMAV_CONSTRUCT' file='xmlerror' value='1817' type='xmlParserErrors' info='1817'/> - <enum name='XML_SCHEMAV_CVC_ATTRIBUTE_1' file='xmlerror' value='1861' type='xmlParserErrors' info='1861'/> - <enum name='XML_SCHEMAV_CVC_ATTRIBUTE_2' file='xmlerror' value='1862' type='xmlParserErrors' info='1862'/> - <enum name='XML_SCHEMAV_CVC_ATTRIBUTE_3' file='xmlerror' value='1863' type='xmlParserErrors' info='1863'/> - <enum name='XML_SCHEMAV_CVC_ATTRIBUTE_4' file='xmlerror' value='1864' type='xmlParserErrors' info='1864'/> - <enum name='XML_SCHEMAV_CVC_AU' file='xmlerror' value='1874' type='xmlParserErrors' info='1874'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_1' file='xmlerror' value='1873' type='xmlParserErrors' info='1873'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1' file='xmlerror' value='1841' type='xmlParserErrors' info='1841'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2' file='xmlerror' value='1842' type='xmlParserErrors' info='1842'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3' file='xmlerror' value='1843' type='xmlParserErrors' info='1843'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4' file='xmlerror' value='1844' type='xmlParserErrors' info='1844'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1' file='xmlerror' value='1865' type='xmlParserErrors' info='1865'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1' file='xmlerror' value='1866' type='xmlParserErrors' info='1866'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2' file='xmlerror' value='1867' type='xmlParserErrors' info='1867'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_4' file='xmlerror' value='1868' type='xmlParserErrors' info='1868'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1' file='xmlerror' value='1869' type='xmlParserErrors' info='1869'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2' file='xmlerror' value='1870' type='xmlParserErrors' info='1870'/> - <enum name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1' file='xmlerror' value='1824' type='xmlParserErrors' info='1824'/> - <enum name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2' file='xmlerror' value='1825' type='xmlParserErrors' info='1825'/> - <enum name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3' file='xmlerror' value='1826' type='xmlParserErrors' info='1826'/> - <enum name='XML_SCHEMAV_CVC_ELT_1' file='xmlerror' value='1845' type='xmlParserErrors' info='1845'/> - <enum name='XML_SCHEMAV_CVC_ELT_2' file='xmlerror' value='1846' type='xmlParserErrors' info='1846'/> - <enum name='XML_SCHEMAV_CVC_ELT_3_1' file='xmlerror' value='1847' type='xmlParserErrors' info='1847'/> - <enum name='XML_SCHEMAV_CVC_ELT_3_2_1' file='xmlerror' value='1848' type='xmlParserErrors' info='1848'/> - <enum name='XML_SCHEMAV_CVC_ELT_3_2_2' file='xmlerror' value='1849' type='xmlParserErrors' info='1849'/> - <enum name='XML_SCHEMAV_CVC_ELT_4_1' file='xmlerror' value='1850' type='xmlParserErrors' info='1850'/> - <enum name='XML_SCHEMAV_CVC_ELT_4_2' file='xmlerror' value='1851' type='xmlParserErrors' info='1851'/> - <enum name='XML_SCHEMAV_CVC_ELT_4_3' file='xmlerror' value='1852' type='xmlParserErrors' info='1852'/> - <enum name='XML_SCHEMAV_CVC_ELT_5_1_1' file='xmlerror' value='1853' type='xmlParserErrors' info='1853'/> - <enum name='XML_SCHEMAV_CVC_ELT_5_1_2' file='xmlerror' value='1854' type='xmlParserErrors' info='1854'/> - <enum name='XML_SCHEMAV_CVC_ELT_5_2_1' file='xmlerror' value='1855' type='xmlParserErrors' info='1855'/> - <enum name='XML_SCHEMAV_CVC_ELT_5_2_2_1' file='xmlerror' value='1856' type='xmlParserErrors' info='1856'/> - <enum name='XML_SCHEMAV_CVC_ELT_5_2_2_2_1' file='xmlerror' value='1857' type='xmlParserErrors' info='1857'/> - <enum name='XML_SCHEMAV_CVC_ELT_5_2_2_2_2' file='xmlerror' value='1858' type='xmlParserErrors' info='1858'/> - <enum name='XML_SCHEMAV_CVC_ELT_6' file='xmlerror' value='1859' type='xmlParserErrors' info='1859'/> - <enum name='XML_SCHEMAV_CVC_ELT_7' file='xmlerror' value='1860' type='xmlParserErrors' info='1860'/> - <enum name='XML_SCHEMAV_CVC_ENUMERATION_VALID' file='xmlerror' value='1840' type='xmlParserErrors' info='1840'/> - <enum name='XML_SCHEMAV_CVC_FACET_VALID' file='xmlerror' value='1829' type='xmlParserErrors' info='1829'/> - <enum name='XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID' file='xmlerror' value='1838' type='xmlParserErrors' info='1838'/> - <enum name='XML_SCHEMAV_CVC_IDC' file='xmlerror' value='1877' type='xmlParserErrors' info='1877'/> - <enum name='XML_SCHEMAV_CVC_LENGTH_VALID' file='xmlerror' value='1830' type='xmlParserErrors' info='1830'/> - <enum name='XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID' file='xmlerror' value='1836' type='xmlParserErrors' info='1836'/> - <enum name='XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID' file='xmlerror' value='1834' type='xmlParserErrors' info='1834'/> - <enum name='XML_SCHEMAV_CVC_MAXLENGTH_VALID' file='xmlerror' value='1832' type='xmlParserErrors' info='1832'/> - <enum name='XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID' file='xmlerror' value='1835' type='xmlParserErrors' info='1835'/> - <enum name='XML_SCHEMAV_CVC_MININCLUSIVE_VALID' file='xmlerror' value='1833' type='xmlParserErrors' info='1833'/> - <enum name='XML_SCHEMAV_CVC_MINLENGTH_VALID' file='xmlerror' value='1831' type='xmlParserErrors' info='1831'/> - <enum name='XML_SCHEMAV_CVC_PATTERN_VALID' file='xmlerror' value='1839' type='xmlParserErrors' info='1839'/> - <enum name='XML_SCHEMAV_CVC_TOTALDIGITS_VALID' file='xmlerror' value='1837' type='xmlParserErrors' info='1837'/> - <enum name='XML_SCHEMAV_CVC_TYPE_1' file='xmlerror' value='1875' type='xmlParserErrors' info='1875'/> - <enum name='XML_SCHEMAV_CVC_TYPE_2' file='xmlerror' value='1876' type='xmlParserErrors' info='1876'/> - <enum name='XML_SCHEMAV_CVC_TYPE_3_1_1' file='xmlerror' value='1827' type='xmlParserErrors' info='1827'/> - <enum name='XML_SCHEMAV_CVC_TYPE_3_1_2' file='xmlerror' value='1828' type='xmlParserErrors' info='1828'/> - <enum name='XML_SCHEMAV_CVC_WILDCARD' file='xmlerror' value='1878' type='xmlParserErrors' info='1878'/> - <enum name='XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING' file='xmlerror' value='1872' type='xmlParserErrors' info='1872'/> - <enum name='XML_SCHEMAV_ELEMCONT' file='xmlerror' value='1810' type='xmlParserErrors' info='1810'/> - <enum name='XML_SCHEMAV_ELEMENT_CONTENT' file='xmlerror' value='1871' type='xmlParserErrors' info='1871'/> - <enum name='XML_SCHEMAV_EXTRACONTENT' file='xmlerror' value='1813' type='xmlParserErrors' info='1813'/> - <enum name='XML_SCHEMAV_FACET' file='xmlerror' value='1823' type='xmlParserErrors' info='1823'/> - <enum name='XML_SCHEMAV_HAVEDEFAULT' file='xmlerror' value='1811' type='xmlParserErrors' info='1811'/> - <enum name='XML_SCHEMAV_INTERNAL' file='xmlerror' value='1818' type='xmlParserErrors' info='1818'/> - <enum name='XML_SCHEMAV_INVALIDATTR' file='xmlerror' value='1814' type='xmlParserErrors' info='1814'/> - <enum name='XML_SCHEMAV_INVALIDELEM' file='xmlerror' value='1815' type='xmlParserErrors' info='1815'/> - <enum name='XML_SCHEMAV_ISABSTRACT' file='xmlerror' value='1808' type='xmlParserErrors' info='1808'/> - <enum name='XML_SCHEMAV_MISC' file='xmlerror' value='1879' type='xmlParserErrors' info='1879'/> - <enum name='XML_SCHEMAV_MISSING' file='xmlerror' value='1804' type='xmlParserErrors' info='1804'/> - <enum name='XML_SCHEMAV_NOROLLBACK' file='xmlerror' value='1807' type='xmlParserErrors' info='1807'/> - <enum name='XML_SCHEMAV_NOROOT' file='xmlerror' value='1801' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_NOTDETERMINIST' file='xmlerror' value='1816' type='xmlParserErrors' info='1816'/> - <enum name='XML_SCHEMAV_NOTEMPTY' file='xmlerror' value='1809' type='xmlParserErrors' info='1809'/> - <enum name='XML_SCHEMAV_NOTNILLABLE' file='xmlerror' value='1812' type='xmlParserErrors' info='1812'/> - <enum name='XML_SCHEMAV_NOTSIMPLE' file='xmlerror' value='1819' type='xmlParserErrors' info='1819'/> - <enum name='XML_SCHEMAV_NOTTOPLEVEL' file='xmlerror' value='1803' type='xmlParserErrors' info='1803'/> - <enum name='XML_SCHEMAV_NOTYPE' file='xmlerror' value='1806' type='xmlParserErrors' info='1806'/> - <enum name='XML_SCHEMAV_UNDECLAREDELEM' file='xmlerror' value='1802' type='xmlParserErrors' info='1802'/> - <enum name='XML_SCHEMAV_VALUE' file='xmlerror' value='1822' type='xmlParserErrors' info='1822'/> - <enum name='XML_SCHEMAV_WRONGELEM' file='xmlerror' value='1805' type='xmlParserErrors' info='1805'/> - <enum name='XML_SCHEMA_CONTENT_ANY' file='schemasInternals' value='7' type='xmlSchemaContentType'/> - <enum name='XML_SCHEMA_CONTENT_BASIC' file='schemasInternals' value='6' type='xmlSchemaContentType'/> - <enum name='XML_SCHEMA_CONTENT_ELEMENTS' file='schemasInternals' value='2' type='xmlSchemaContentType'/> - <enum name='XML_SCHEMA_CONTENT_EMPTY' file='schemasInternals' value='1' type='xmlSchemaContentType'/> - <enum name='XML_SCHEMA_CONTENT_MIXED' file='schemasInternals' value='3' type='xmlSchemaContentType'/> - <enum name='XML_SCHEMA_CONTENT_MIXED_OR_ELEMENTS' file='schemasInternals' value='5' type='xmlSchemaContentType' info='Obsolete'/> - <enum name='XML_SCHEMA_CONTENT_SIMPLE' file='schemasInternals' value='4' type='xmlSchemaContentType'/> - <enum name='XML_SCHEMA_CONTENT_UNKNOWN' file='schemasInternals' value='0' type='xmlSchemaContentType'/> - <enum name='XML_SCHEMA_EXTRA_ATTR_USE_PROHIB' file='schemasInternals' value='2001' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_EXTRA_QNAMEREF' file='schemasInternals' value='2000' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_FACET_ENUMERATION' file='schemasInternals' value='1007' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_FACET_FRACTIONDIGITS' file='schemasInternals' value='1005' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_FACET_LENGTH' file='schemasInternals' value='1009' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_FACET_MAXEXCLUSIVE' file='schemasInternals' value='1003' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_FACET_MAXINCLUSIVE' file='schemasInternals' value='1002' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_FACET_MAXLENGTH' file='schemasInternals' value='1010' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_FACET_MINEXCLUSIVE' file='schemasInternals' value='1001' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_FACET_MININCLUSIVE' file='schemasInternals' value='1000' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_FACET_MINLENGTH' file='schemasInternals' value='1011' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_FACET_PATTERN' file='schemasInternals' value='1006' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_FACET_TOTALDIGITS' file='schemasInternals' value='1004' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_FACET_WHITESPACE' file='schemasInternals' value='1008' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_ALL' file='schemasInternals' value='8' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_ANY' file='schemasInternals' value='2' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_ANY_ATTRIBUTE' file='schemasInternals' value='21' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_ATTRIBUTE' file='schemasInternals' value='15' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_ATTRIBUTEGROUP' file='schemasInternals' value='16' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_ATTRIBUTE_USE' file='schemasInternals' value='26' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_BASIC' file='schemasInternals' value='1' type='xmlSchemaTypeType' info='A built-in datatype'/> - <enum name='XML_SCHEMA_TYPE_CHOICE' file='schemasInternals' value='7' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_COMPLEX' file='schemasInternals' value='5' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_COMPLEX_CONTENT' file='schemasInternals' value='10' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_ELEMENT' file='schemasInternals' value='14' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_EXTENSION' file='schemasInternals' value='13' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_FACET' file='schemasInternals' value='3' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_GROUP' file='schemasInternals' value='17' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_IDC_KEY' file='schemasInternals' value='23' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_IDC_KEYREF' file='schemasInternals' value='24' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_IDC_UNIQUE' file='schemasInternals' value='22' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_LIST' file='schemasInternals' value='19' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_NOTATION' file='schemasInternals' value='18' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_PARTICLE' file='schemasInternals' value='25' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_RESTRICTION' file='schemasInternals' value='12' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_SEQUENCE' file='schemasInternals' value='6' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_SIMPLE' file='schemasInternals' value='4' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_SIMPLE_CONTENT' file='schemasInternals' value='9' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_UNION' file='schemasInternals' value='20' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_TYPE_UR' file='schemasInternals' value='11' type='xmlSchemaTypeType'/> - <enum name='XML_SCHEMA_VAL_VC_I_CREATE' file='xmlschemas' value='1' type='xmlSchemaValidOption' info=' Default/fixed: create an attribute node -* or an element's text node on the instance. -*'/> - <enum name='XML_SCHEMA_WHITESPACE_COLLAPSE' file='xmlschemastypes' value='3' type='xmlSchemaWhitespaceValueType'/> - <enum name='XML_SCHEMA_WHITESPACE_PRESERVE' file='xmlschemastypes' value='1' type='xmlSchemaWhitespaceValueType'/> - <enum name='XML_SCHEMA_WHITESPACE_REPLACE' file='xmlschemastypes' value='2' type='xmlSchemaWhitespaceValueType'/> - <enum name='XML_SCHEMA_WHITESPACE_UNKNOWN' file='xmlschemastypes' value='0' type='xmlSchemaWhitespaceValueType'/> - <enum name='XML_TEXTREADER_MODE_CLOSED' file='xmlreader' value='4' type='xmlTextReaderMode'/> - <enum name='XML_TEXTREADER_MODE_EOF' file='xmlreader' value='3' type='xmlTextReaderMode'/> - <enum name='XML_TEXTREADER_MODE_ERROR' file='xmlreader' value='2' type='xmlTextReaderMode'/> - <enum name='XML_TEXTREADER_MODE_INITIAL' file='xmlreader' value='0' type='xmlTextReaderMode'/> - <enum name='XML_TEXTREADER_MODE_INTERACTIVE' file='xmlreader' value='1' type='xmlTextReaderMode'/> - <enum name='XML_TEXTREADER_MODE_READING' file='xmlreader' value='5' type='xmlTextReaderMode'/> - <enum name='XML_TEXT_NODE' file='tree' value='3' type='xmlElementType'/> - <enum name='XML_TREE_INVALID_DEC' file='xmlerror' value='1301' type='xmlParserErrors' info='1301'/> - <enum name='XML_TREE_INVALID_HEX' file='xmlerror' value='1300' type='xmlParserErrors'/> - <enum name='XML_TREE_UNTERMINATED_ENTITY' file='xmlerror' value='1302' type='xmlParserErrors' info='1302'/> - <enum name='XML_WAR_CATALOG_PI' file='xmlerror' value='93' type='xmlParserErrors' info='93'/> - <enum name='XML_WAR_ENTITY_REDEFINED' file='xmlerror' value='107' type='xmlParserErrors' info='107'/> - <enum name='XML_WAR_LANG_VALUE' file='xmlerror' value='98' type='xmlParserErrors' info='98'/> - <enum name='XML_WAR_NS_COLUMN' file='xmlerror' value='106' type='xmlParserErrors' info='106'/> - <enum name='XML_WAR_NS_URI' file='xmlerror' value='99' type='xmlParserErrors' info='99'/> - <enum name='XML_WAR_NS_URI_RELATIVE' file='xmlerror' value='100' type='xmlParserErrors' info='100'/> - <enum name='XML_WAR_SPACE_VALUE' file='xmlerror' value='102' type='xmlParserErrors' info='102'/> - <enum name='XML_WAR_UNDECLARED_ENTITY' file='xmlerror' value='27' type='xmlParserErrors' info='27'/> - <enum name='XML_WAR_UNKNOWN_VERSION' file='xmlerror' value='97' type='xmlParserErrors' info='97'/> - <enum name='XML_WITH_AUTOMATA' file='parser' value='23' type='xmlFeature'/> - <enum name='XML_WITH_C14N' file='parser' value='14' type='xmlFeature'/> - <enum name='XML_WITH_CATALOG' file='parser' value='15' type='xmlFeature'/> - <enum name='XML_WITH_DEBUG' file='parser' value='28' type='xmlFeature'/> - <enum name='XML_WITH_DEBUG_MEM' file='parser' value='29' type='xmlFeature'/> - <enum name='XML_WITH_DEBUG_RUN' file='parser' value='30' type='xmlFeature'/> - <enum name='XML_WITH_EXPR' file='parser' value='24' type='xmlFeature'/> - <enum name='XML_WITH_FTP' file='parser' value='9' type='xmlFeature'/> - <enum name='XML_WITH_HTML' file='parser' value='12' type='xmlFeature'/> - <enum name='XML_WITH_HTTP' file='parser' value='10' type='xmlFeature'/> - <enum name='XML_WITH_ICONV' file='parser' value='19' type='xmlFeature'/> - <enum name='XML_WITH_ISO8859X' file='parser' value='20' type='xmlFeature'/> - <enum name='XML_WITH_LEGACY' file='parser' value='13' type='xmlFeature'/> - <enum name='XML_WITH_MODULES' file='parser' value='27' type='xmlFeature'/> - <enum name='XML_WITH_NONE' file='parser' value='99999' type='xmlFeature' info=' just to be sure of allocation size'/> - <enum name='XML_WITH_OUTPUT' file='parser' value='3' type='xmlFeature'/> - <enum name='XML_WITH_PATTERN' file='parser' value='6' type='xmlFeature'/> - <enum name='XML_WITH_PUSH' file='parser' value='4' type='xmlFeature'/> - <enum name='XML_WITH_READER' file='parser' value='5' type='xmlFeature'/> - <enum name='XML_WITH_REGEXP' file='parser' value='22' type='xmlFeature'/> - <enum name='XML_WITH_SAX1' file='parser' value='8' type='xmlFeature'/> - <enum name='XML_WITH_SCHEMAS' file='parser' value='25' type='xmlFeature'/> - <enum name='XML_WITH_SCHEMATRON' file='parser' value='26' type='xmlFeature'/> - <enum name='XML_WITH_THREAD' file='parser' value='1' type='xmlFeature'/> - <enum name='XML_WITH_TREE' file='parser' value='2' type='xmlFeature'/> - <enum name='XML_WITH_UNICODE' file='parser' value='21' type='xmlFeature'/> - <enum name='XML_WITH_VALID' file='parser' value='11' type='xmlFeature'/> - <enum name='XML_WITH_WRITER' file='parser' value='7' type='xmlFeature'/> - <enum name='XML_WITH_XINCLUDE' file='parser' value='18' type='xmlFeature'/> - <enum name='XML_WITH_XPATH' file='parser' value='16' type='xmlFeature'/> - <enum name='XML_WITH_XPTR' file='parser' value='17' type='xmlFeature'/> - <enum name='XML_WITH_ZLIB' file='parser' value='31' type='xmlFeature'/> - <enum name='XML_XINCLUDE_BUILD_FAILED' file='xmlerror' value='1609' type='xmlParserErrors' info='1609'/> - <enum name='XML_XINCLUDE_DEPRECATED_NS' file='xmlerror' value='1617' type='xmlParserErrors' info='1617'/> - <enum name='XML_XINCLUDE_END' file='tree' value='20' type='xmlElementType'/> - <enum name='XML_XINCLUDE_ENTITY_DEF_MISMATCH' file='xmlerror' value='1602' type='xmlParserErrors' info='1602'/> - <enum name='XML_XINCLUDE_FALLBACKS_IN_INCLUDE' file='xmlerror' value='1615' type='xmlParserErrors' info='1615'/> - <enum name='XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE' file='xmlerror' value='1616' type='xmlParserErrors' info='1616'/> - <enum name='XML_XINCLUDE_FRAGMENT_ID' file='xmlerror' value='1618' type='xmlParserErrors' info='1618'/> - <enum name='XML_XINCLUDE_HREF_URI' file='xmlerror' value='1605' type='xmlParserErrors' info='1605'/> - <enum name='XML_XINCLUDE_INCLUDE_IN_INCLUDE' file='xmlerror' value='1614' type='xmlParserErrors' info='1614'/> - <enum name='XML_XINCLUDE_INVALID_CHAR' file='xmlerror' value='1608' type='xmlParserErrors' info='1608'/> - <enum name='XML_XINCLUDE_MULTIPLE_ROOT' file='xmlerror' value='1611' type='xmlParserErrors' info='1611'/> - <enum name='XML_XINCLUDE_NO_FALLBACK' file='xmlerror' value='1604' type='xmlParserErrors' info='1604'/> - <enum name='XML_XINCLUDE_NO_HREF' file='xmlerror' value='1603' type='xmlParserErrors' info='1603'/> - <enum name='XML_XINCLUDE_PARSE_VALUE' file='xmlerror' value='1601' type='xmlParserErrors' info='1601'/> - <enum name='XML_XINCLUDE_RECURSION' file='xmlerror' value='1600' type='xmlParserErrors'/> - <enum name='XML_XINCLUDE_START' file='tree' value='19' type='xmlElementType'/> - <enum name='XML_XINCLUDE_TEXT_DOCUMENT' file='xmlerror' value='1607' type='xmlParserErrors' info='1607'/> - <enum name='XML_XINCLUDE_TEXT_FRAGMENT' file='xmlerror' value='1606' type='xmlParserErrors' info='1606'/> - <enum name='XML_XINCLUDE_UNKNOWN_ENCODING' file='xmlerror' value='1610' type='xmlParserErrors' info='1610'/> - <enum name='XML_XINCLUDE_XPTR_FAILED' file='xmlerror' value='1612' type='xmlParserErrors' info='1612'/> - <enum name='XML_XINCLUDE_XPTR_RESULT' file='xmlerror' value='1613' type='xmlParserErrors' info='1613'/> - <enum name='XML_XPATH_ENCODING_ERROR' file='xmlerror' value='1220' type='xmlParserErrors' info='1220'/> - <enum name='XML_XPATH_EXPRESSION_OK' file='xmlerror' value='1200' type='xmlParserErrors'/> - <enum name='XML_XPATH_EXPR_ERROR' file='xmlerror' value='1207' type='xmlParserErrors' info='1207'/> - <enum name='XML_XPATH_INVALID_ARITY' file='xmlerror' value='1212' type='xmlParserErrors' info='1212'/> - <enum name='XML_XPATH_INVALID_CHAR_ERROR' file='xmlerror' value='1221' type='xmlParserErrors' info='1221'/> - <enum name='XML_XPATH_INVALID_CTXT_POSITION' file='xmlerror' value='1214' type='xmlParserErrors' info='1214'/> - <enum name='XML_XPATH_INVALID_CTXT_SIZE' file='xmlerror' value='1213' type='xmlParserErrors' info='1213'/> - <enum name='XML_XPATH_INVALID_OPERAND' file='xmlerror' value='1210' type='xmlParserErrors' info='1210'/> - <enum name='XML_XPATH_INVALID_PREDICATE_ERROR' file='xmlerror' value='1206' type='xmlParserErrors' info='1206'/> - <enum name='XML_XPATH_INVALID_TYPE' file='xmlerror' value='1211' type='xmlParserErrors' info='1211'/> - <enum name='XML_XPATH_MEMORY_ERROR' file='xmlerror' value='1215' type='xmlParserErrors' info='1215'/> - <enum name='XML_XPATH_NUMBER_ERROR' file='xmlerror' value='1201' type='xmlParserErrors' info='1201'/> - <enum name='XML_XPATH_START_LITERAL_ERROR' file='xmlerror' value='1203' type='xmlParserErrors' info='1203'/> - <enum name='XML_XPATH_UNCLOSED_ERROR' file='xmlerror' value='1208' type='xmlParserErrors' info='1208'/> - <enum name='XML_XPATH_UNDEF_PREFIX_ERROR' file='xmlerror' value='1219' type='xmlParserErrors' info='1219'/> - <enum name='XML_XPATH_UNDEF_VARIABLE_ERROR' file='xmlerror' value='1205' type='xmlParserErrors' info='1205'/> - <enum name='XML_XPATH_UNFINISHED_LITERAL_ERROR' file='xmlerror' value='1202' type='xmlParserErrors' info='1202'/> - <enum name='XML_XPATH_UNKNOWN_FUNC_ERROR' file='xmlerror' value='1209' type='xmlParserErrors' info='1209'/> - <enum name='XML_XPATH_VARIABLE_REF_ERROR' file='xmlerror' value='1204' type='xmlParserErrors' info='1204'/> - <enum name='XML_XPTR_CHILDSEQ_START' file='xmlerror' value='1901' type='xmlParserErrors' info='1901'/> - <enum name='XML_XPTR_EVAL_FAILED' file='xmlerror' value='1902' type='xmlParserErrors' info='1902'/> - <enum name='XML_XPTR_EXTRA_OBJECTS' file='xmlerror' value='1903' type='xmlParserErrors' info='1903'/> - <enum name='XML_XPTR_RESOURCE_ERROR' file='xmlerror' value='1217' type='xmlParserErrors' info='1217'/> - <enum name='XML_XPTR_SUB_RESOURCE_ERROR' file='xmlerror' value='1218' type='xmlParserErrors' info='1218'/> - <enum name='XML_XPTR_SYNTAX_ERROR' file='xmlerror' value='1216' type='xmlParserErrors' info='1216'/> - <enum name='XML_XPTR_UNKNOWN_SCHEME' file='xmlerror' value='1900' type='xmlParserErrors'/> - <enum name='XPATH_BOOLEAN' file='xpath' value='2' type='xmlXPathObjectType'/> - <enum name='XPATH_ENCODING_ERROR' file='xpath' value='20' type='xmlXPathError'/> - <enum name='XPATH_EXPRESSION_OK' file='xpath' value='0' type='xmlXPathError'/> - <enum name='XPATH_EXPR_ERROR' file='xpath' value='7' type='xmlXPathError'/> - <enum name='XPATH_INVALID_ARITY' file='xpath' value='12' type='xmlXPathError'/> - <enum name='XPATH_INVALID_CHAR_ERROR' file='xpath' value='21' type='xmlXPathError'/> - <enum name='XPATH_INVALID_CTXT' file='xpath' value='22' type='xmlXPathError'/> - <enum name='XPATH_INVALID_CTXT_POSITION' file='xpath' value='14' type='xmlXPathError'/> - <enum name='XPATH_INVALID_CTXT_SIZE' file='xpath' value='13' type='xmlXPathError'/> - <enum name='XPATH_INVALID_OPERAND' file='xpath' value='10' type='xmlXPathError'/> - <enum name='XPATH_INVALID_PREDICATE_ERROR' file='xpath' value='6' type='xmlXPathError'/> - <enum name='XPATH_INVALID_TYPE' file='xpath' value='11' type='xmlXPathError'/> - <enum name='XPATH_LOCATIONSET' file='xpath' value='7' type='xmlXPathObjectType'/> - <enum name='XPATH_MEMORY_ERROR' file='xpath' value='15' type='xmlXPathError'/> - <enum name='XPATH_NODESET' file='xpath' value='1' type='xmlXPathObjectType'/> - <enum name='XPATH_NUMBER' file='xpath' value='3' type='xmlXPathObjectType'/> - <enum name='XPATH_NUMBER_ERROR' file='xpath' value='1' type='xmlXPathError'/> - <enum name='XPATH_POINT' file='xpath' value='5' type='xmlXPathObjectType'/> - <enum name='XPATH_RANGE' file='xpath' value='6' type='xmlXPathObjectType'/> - <enum name='XPATH_START_LITERAL_ERROR' file='xpath' value='3' type='xmlXPathError'/> - <enum name='XPATH_STRING' file='xpath' value='4' type='xmlXPathObjectType'/> - <enum name='XPATH_UNCLOSED_ERROR' file='xpath' value='8' type='xmlXPathError'/> - <enum name='XPATH_UNDEFINED' file='xpath' value='0' type='xmlXPathObjectType'/> - <enum name='XPATH_UNDEF_PREFIX_ERROR' file='xpath' value='19' type='xmlXPathError'/> - <enum name='XPATH_UNDEF_VARIABLE_ERROR' file='xpath' value='5' type='xmlXPathError'/> - <enum name='XPATH_UNFINISHED_LITERAL_ERROR' file='xpath' value='2' type='xmlXPathError'/> - <enum name='XPATH_UNKNOWN_FUNC_ERROR' file='xpath' value='9' type='xmlXPathError'/> - <enum name='XPATH_USERS' file='xpath' value='8' type='xmlXPathObjectType'/> - <enum name='XPATH_VARIABLE_REF_ERROR' file='xpath' value='4' type='xmlXPathError'/> - <enum name='XPATH_XSLT_TREE' file='xpath' value='9' type='xmlXPathObjectType' info=' An XSLT value tree, non modifiable'/> - <enum name='XPTR_RESOURCE_ERROR' file='xpath' value='17' type='xmlXPathError'/> - <enum name='XPTR_SUB_RESOURCE_ERROR' file='xpath' value='18' type='xmlXPathError'/> - <enum name='XPTR_SYNTAX_ERROR' file='xpath' value='16' type='xmlXPathError'/> - <typedef name='docbDocPtr' file='DOCBparser' type='xmlDocPtr'/> - <typedef name='docbParserCtxt' file='DOCBparser' type='xmlParserCtxt'/> - <typedef name='docbParserCtxtPtr' file='DOCBparser' type='xmlParserCtxtPtr'/> - <typedef name='docbParserInput' file='DOCBparser' type='xmlParserInput'/> - <typedef name='docbParserInputPtr' file='DOCBparser' type='xmlParserInputPtr'/> - <typedef name='docbSAXHandler' file='DOCBparser' type='xmlSAXHandler'/> - <typedef name='docbSAXHandlerPtr' file='DOCBparser' type='xmlSAXHandlerPtr'/> - <typedef name='htmlDocPtr' file='HTMLparser' type='xmlDocPtr'/> - <struct name='htmlElemDesc' file='HTMLparser' type='struct _htmlElemDesc'> - <field name='name' type='const char *' info=' The tag name'/> - <field name='startTag' type='char' info=' Whether the start tag can be implied'/> - <field name='endTag' type='char' info=' Whether the end tag can be implied'/> - <field name='saveEndTag' type='char' info=' Whether the end tag should be saved'/> - <field name='empty' type='char' info=' Is this an empty element ?'/> - <field name='depr' type='char' info=' Is this a deprecated element ?'/> - <field name='dtd' type='char' info=' 1: only in Loose DTD, 2: only Frameset one'/> - <field name='isinline' type='char' info=' is this a block 0 or inline 1 element'/> - <field name='desc' type='const char *' info=' the description NRK Jan.2003 -* New fields encapsulating HTML structure -* -* Bugs: -* This is a very limited representation. It fails to tell us when -* an element *requires* subelements (we only have whether they're -* allowed or not), and it doesn't tell us where CDATA and PCDATA -* are allowed. Some element relationships are not fully represented: -* these are flagged with the word MODIFIER -*'/> - <field name='subelts' type='const char **' info=' allowed sub-elements of this element'/> - <field name='defaultsubelt' type='const char *' info=' subelement for suggested auto-repair -if necessary or NULL'/> - <field name='attrs_opt' type='const char **' info=' Optional Attributes'/> - <field name='attrs_depr' type='const char **' info=' Additional deprecated attributes'/> - <field name='attrs_req' type='const char **' info=' Required attributes'/> - </struct> - <typedef name='htmlElemDescPtr' file='HTMLparser' type='htmlElemDesc *'/> - <struct name='htmlEntityDesc' file='HTMLparser' type='struct _htmlEntityDesc'> - <field name='value' type='unsigned int' info=' the UNICODE value for the character'/> - <field name='name' type='const char *' info=' The entity name'/> - <field name='desc' type='const char *' info=' the description'/> - </struct> - <typedef name='htmlEntityDescPtr' file='HTMLparser' type='htmlEntityDesc *'/> - <typedef name='htmlNodePtr' file='HTMLparser' type='xmlNodePtr'/> - <typedef name='htmlParserCtxt' file='HTMLparser' type='xmlParserCtxt'/> - <typedef name='htmlParserCtxtPtr' file='HTMLparser' type='xmlParserCtxtPtr'/> - <typedef name='htmlParserInput' file='HTMLparser' type='xmlParserInput'/> - <typedef name='htmlParserInputPtr' file='HTMLparser' type='xmlParserInputPtr'/> - <typedef name='htmlParserNodeInfo' file='HTMLparser' type='xmlParserNodeInfo'/> - <typedef name='htmlParserOption' file='HTMLparser' type='enum'/> - <typedef name='htmlSAXHandler' file='HTMLparser' type='xmlSAXHandler'/> - <typedef name='htmlSAXHandlerPtr' file='HTMLparser' type='xmlSAXHandlerPtr'/> - <typedef name='htmlStatus' file='HTMLparser' type='enum'/> - <typedef name='xlinkActuate' file='xlink' type='enum'/> - <typedef name='xlinkHRef' file='xlink' type='xmlChar *'/> - <struct name='xlinkHandler' file='xlink' type='struct _xlinkHandler'> - <field name='simple' type='xlinkSimpleLinkFunk' info=''/> - <field name='extended' type='xlinkExtendedLinkFunk' info=''/> - <field name='set' type='xlinkExtendedLinkSetFunk' info=''/> - </struct> - <typedef name='xlinkHandlerPtr' file='xlink' type='xlinkHandler *'/> - <typedef name='xlinkRole' file='xlink' type='xmlChar *'/> - <typedef name='xlinkShow' file='xlink' type='enum'/> - <typedef name='xlinkTitle' file='xlink' type='xmlChar *'/> - <typedef name='xlinkType' file='xlink' type='enum'/> - <struct name='xmlAttr' file='tree' type='struct _xmlAttr'> - <field name='_private' type='void *' info=' application data'/> - <field name='type' type='xmlElementType' info=' XML_ATTRIBUTE_NODE, must be second !'/> - <field name='name' type='const xmlChar *' info=' the name of the property'/> - <field name='children' type='struct _xmlNode *' info=' the value of the property'/> - <field name='last' type='struct _xmlNode *' info=' NULL'/> - <field name='parent' type='struct _xmlNode *' info=' child->parent link'/> - <field name='next' type='struct _xmlAttr *' info=' next sibling link '/> - <field name='prev' type='struct _xmlAttr *' info=' previous sibling link '/> - <field name='doc' type='struct _xmlDoc *' info=' the containing document'/> - <field name='ns' type='xmlNs *' info=' pointer to the associated namespace'/> - <field name='atype' type='xmlAttributeType' info=' the attribute type if validating'/> - <field name='psvi' type='void *' info=' for type/PSVI informations'/> - </struct> - <typedef name='xmlAttrPtr' file='tree' type='xmlAttr *'/> - <struct name='xmlAttribute' file='tree' type='struct _xmlAttribute'> - <field name='_private' type='void *' info=' application data'/> - <field name='type' type='xmlElementType' info=' XML_ATTRIBUTE_DECL, must be second !'/> - <field name='name' type='const xmlChar *' info=' Attribute name'/> - <field name='children' type='struct _xmlNode *' info=' NULL'/> - <field name='last' type='struct _xmlNode *' info=' NULL'/> - <field name='parent' type='struct _xmlDtd *' info=' -> DTD'/> - <field name='next' type='struct _xmlNode *' info=' next sibling link '/> - <field name='prev' type='struct _xmlNode *' info=' previous sibling link '/> - <field name='doc' type='struct _xmlDoc *' info=' the containing document'/> - <field name='nexth' type='struct _xmlAttribute *' info=' next in hash table'/> - <field name='atype' type='xmlAttributeType' info=' The attribute type'/> - <field name='def' type='xmlAttributeDefault' info=' the default'/> - <field name='defaultValue' type='const xmlChar *' info=' or the default value'/> - <field name='tree' type='xmlEnumerationPtr' info=' or the enumeration tree if any'/> - <field name='prefix' type='const xmlChar *' info=' the namespace prefix if any'/> - <field name='elem' type='const xmlChar *' info=' Element holding the attribute'/> - </struct> - <typedef name='xmlAttributeDefault' file='tree' type='enum'/> - <typedef name='xmlAttributePtr' file='tree' type='xmlAttribute *'/> - <struct name='xmlAttributeTable' file='valid' type='struct _xmlHashTable'/> - <typedef name='xmlAttributeTablePtr' file='valid' type='xmlAttributeTable *'/> - <typedef name='xmlAttributeType' file='tree' type='enum'/> - <struct name='xmlAutomata' file='xmlautomata' type='struct _xmlAutomata'/> - <typedef name='xmlAutomataPtr' file='xmlautomata' type='xmlAutomata *'> - <info>A libxml automata description, It can be compiled into a regexp</info> - </typedef> - <struct name='xmlAutomataState' file='xmlautomata' type='struct _xmlAutomataState'/> - <typedef name='xmlAutomataStatePtr' file='xmlautomata' type='xmlAutomataState *'> - <info>A state int the automata description,</info> - </typedef> - <struct name='xmlBuffer' file='tree' type='struct _xmlBuffer'> - <field name='content' type='xmlChar *' info=' The buffer content UTF8'/> - <field name='use' type='unsigned int' info=' The buffer size used'/> - <field name='size' type='unsigned int' info=' The buffer size'/> - <field name='alloc' type='xmlBufferAllocationScheme' info=' The realloc method'/> - </struct> - <typedef name='xmlBufferAllocationScheme' file='tree' type='enum'/> - <typedef name='xmlBufferPtr' file='tree' type='xmlBuffer *'/> - <struct name='xmlCatalog' file='catalog' type='struct _xmlCatalog'/> - <typedef name='xmlCatalogAllow' file='catalog' type='enum'/> - <typedef name='xmlCatalogPrefer' file='catalog' type='enum'/> - <typedef name='xmlCatalogPtr' file='catalog' type='xmlCatalog *'/> - <struct name='xmlChLRange' file='chvalid' type='struct _xmlChLRange'> - <field name='low' type='unsigned int' info=''/> - <field name='high' type='unsigned int' info=''/> - </struct> - <typedef name='xmlChLRangePtr' file='chvalid' type='xmlChLRange *'/> - <struct name='xmlChRangeGroup' file='chvalid' type='struct _xmlChRangeGroup'> - <field name='nbShortRange' type='int' info=''/> - <field name='nbLongRange' type='int' info=''/> - <field name='shortRange' type='const xmlChSRange *' info=' points to an array of ranges'/> - <field name='longRange' type='const xmlChLRange *' info=''/> - </struct> - <typedef name='xmlChRangeGroupPtr' file='chvalid' type='xmlChRangeGroup *'/> - <struct name='xmlChSRange' file='chvalid' type='struct _xmlChSRange'> - <field name='low' type='unsigned short' info=''/> - <field name='high' type='unsigned short' info=''/> - </struct> - <typedef name='xmlChSRangePtr' file='chvalid' type='xmlChSRange *'/> - <typedef name='xmlChar' file='xmlstring' type='unsigned char'> - <info>This is a basic byte in an UTF-8 encoded string. It's unsigned allowing to pinpoint case where char * are assigned to xmlChar * (possibly making serialization back impossible).</info> - </typedef> - <typedef name='xmlCharEncoding' file='encoding' type='enum'/> - <struct name='xmlCharEncodingHandler' file='encoding' type='struct _xmlCharEncodingHandler'> - <field name='name' type='char *' info=''/> - <field name='input' type='xmlCharEncodingInputFunc' info=''/> - <field name='output' type='xmlCharEncodingOutputFunc' info=''/> - <field name='iconv_in' type='iconv_t' info=''/> - <field name='iconv_out' type='iconv_t' info=''/> - </struct> - <typedef name='xmlCharEncodingHandlerPtr' file='encoding' type='xmlCharEncodingHandler *'/> - <struct name='xmlDOMWrapCtxt' file='tree' type='struct _xmlDOMWrapCtxt'> - <field name='_private' type='void *' info='* The type of this context, just in case we need specialized -* contexts in the future. -*'/> - <field name='type' type='int' info='* Internal namespace map used for various operations. -*'/> - <field name='namespaceMap' type='void *' info='* Use this one to acquire an xmlNsPtr intended for node->ns. -* (Note that this is not intended for elem->nsDef). -*'/> - <field name='getNsForNodeFunc' type='xmlDOMWrapAcquireNsFunction' info=''/> - </struct> - <typedef name='xmlDOMWrapCtxtPtr' file='tree' type='xmlDOMWrapCtxt *'/> - <struct name='xmlDict' file='dict' type='struct _xmlDict'/> - <typedef name='xmlDictPtr' file='dict' type='xmlDict *'/> - <struct name='xmlDoc' file='tree' type='struct _xmlDoc'> - <field name='_private' type='void *' info=' application data'/> - <field name='type' type='xmlElementType' info=' XML_DOCUMENT_NODE, must be second !'/> - <field name='name' type='char *' info=' name/filename/URI of the document'/> - <field name='children' type='struct _xmlNode *' info=' the document tree'/> - <field name='last' type='struct _xmlNode *' info=' last child link'/> - <field name='parent' type='struct _xmlNode *' info=' child->parent link'/> - <field name='next' type='struct _xmlNode *' info=' next sibling link '/> - <field name='prev' type='struct _xmlNode *' info=' previous sibling link '/> - <field name='doc' type='struct _xmlDoc *' info=' autoreference to itself End of common part'/> - <field name='compression' type='int' info=' level of zlib compression'/> - <field name='standalone' type='int' info=' standalone document (no external refs) -1 if standalone="yes" -0 if standalone="no" --1 if there is no XML declaration --2 if there is an XML declaration, but no -standalone attribute was specified'/> - <field name='intSubset' type='struct _xmlDtd *' info=' the document internal subset'/> - <field name='extSubset' type='struct _xmlDtd *' info=' the document external subset'/> - <field name='oldNs' type='struct _xmlNs *' info=' Global namespace, the old way'/> - <field name='version' type='const xmlChar *' info=' the XML version string'/> - <field name='encoding' type='const xmlChar *' info=' external initial encoding, if any'/> - <field name='ids' type='void *' info=' Hash table for ID attributes if any'/> - <field name='refs' type='void *' info=' Hash table for IDREFs attributes if any'/> - <field name='URL' type='const xmlChar *' info=' The URI for that document'/> - <field name='charset' type='int' info=' encoding of the in-memory content -actually an xmlCharEncoding'/> - <field name='dict' type='struct _xmlDict *' info=' dict used to allocate names or NULL'/> - <field name='psvi' type='void *' info=' for type/PSVI informations'/> - </struct> - <typedef name='xmlDocPtr' file='tree' type='xmlDoc *'/> - <struct name='xmlDtd' file='tree' type='struct _xmlDtd'> - <field name='_private' type='void *' info=' application data'/> - <field name='type' type='xmlElementType' info=' XML_DTD_NODE, must be second !'/> - <field name='name' type='const xmlChar *' info=' Name of the DTD'/> - <field name='children' type='struct _xmlNode *' info=' the value of the property link'/> - <field name='last' type='struct _xmlNode *' info=' last child link'/> - <field name='parent' type='struct _xmlDoc *' info=' child->parent link'/> - <field name='next' type='struct _xmlNode *' info=' next sibling link '/> - <field name='prev' type='struct _xmlNode *' info=' previous sibling link '/> - <field name='doc' type='struct _xmlDoc *' info=' the containing document End of common part'/> - <field name='notations' type='void *' info=' Hash table for notations if any'/> - <field name='elements' type='void *' info=' Hash table for elements if any'/> - <field name='attributes' type='void *' info=' Hash table for attributes if any'/> - <field name='entities' type='void *' info=' Hash table for entities if any'/> - <field name='ExternalID' type='const xmlChar *' info=' External identifier for PUBLIC DTD'/> - <field name='SystemID' type='const xmlChar *' info=' URI for a SYSTEM or PUBLIC DTD'/> - <field name='pentities' type='void *' info=' Hash table for param entities if any'/> - </struct> - <typedef name='xmlDtdPtr' file='tree' type='xmlDtd *'/> - <struct name='xmlElement' file='tree' type='struct _xmlElement'> - <field name='_private' type='void *' info=' application data'/> - <field name='type' type='xmlElementType' info=' XML_ELEMENT_DECL, must be second !'/> - <field name='name' type='const xmlChar *' info=' Element name'/> - <field name='children' type='struct _xmlNode *' info=' NULL'/> - <field name='last' type='struct _xmlNode *' info=' NULL'/> - <field name='parent' type='struct _xmlDtd *' info=' -> DTD'/> - <field name='next' type='struct _xmlNode *' info=' next sibling link '/> - <field name='prev' type='struct _xmlNode *' info=' previous sibling link '/> - <field name='doc' type='struct _xmlDoc *' info=' the containing document'/> - <field name='etype' type='xmlElementTypeVal' info=' The type'/> - <field name='content' type='xmlElementContentPtr' info=' the allowed element content'/> - <field name='attributes' type='xmlAttributePtr' info=' List of the declared attributes'/> - <field name='prefix' type='const xmlChar *' info=' the namespace prefix if any'/> - <field name='contModel' type='xmlRegexpPtr' info=' the validating regexp'/> - <field name='contModel' type='void *' info=''/> - </struct> - <struct name='xmlElementContent' file='tree' type='struct _xmlElementContent'> - <field name='type' type='xmlElementContentType' info=' PCDATA, ELEMENT, SEQ or OR'/> - <field name='ocur' type='xmlElementContentOccur' info=' ONCE, OPT, MULT or PLUS'/> - <field name='name' type='const xmlChar *' info=' Element name'/> - <field name='c1' type='struct _xmlElementContent *' info=' first child'/> - <field name='c2' type='struct _xmlElementContent *' info=' second child'/> - <field name='parent' type='struct _xmlElementContent *' info=' parent'/> - <field name='prefix' type='const xmlChar *' info=' Namespace prefix'/> - </struct> - <typedef name='xmlElementContentOccur' file='tree' type='enum'/> - <typedef name='xmlElementContentPtr' file='tree' type='xmlElementContent *'/> - <typedef name='xmlElementContentType' file='tree' type='enum'/> - <typedef name='xmlElementPtr' file='tree' type='xmlElement *'/> - <struct name='xmlElementTable' file='valid' type='struct _xmlHashTable'/> - <typedef name='xmlElementTablePtr' file='valid' type='xmlElementTable *'/> - <typedef name='xmlElementType' file='tree' type='enum'/> - <typedef name='xmlElementTypeVal' file='tree' type='enum'/> - <struct name='xmlEntitiesTable' file='entities' type='struct _xmlHashTable'/> - <typedef name='xmlEntitiesTablePtr' file='entities' type='xmlEntitiesTable *'/> - <struct name='xmlEntity' file='tree' type='struct _xmlEntity'> - <field name='_private' type='void *' info=' application data'/> - <field name='type' type='xmlElementType' info=' XML_ENTITY_DECL, must be second !'/> - <field name='name' type='const xmlChar *' info=' Entity name'/> - <field name='children' type='struct _xmlNode *' info=' First child link'/> - <field name='last' type='struct _xmlNode *' info=' Last child link'/> - <field name='parent' type='struct _xmlDtd *' info=' -> DTD'/> - <field name='next' type='struct _xmlNode *' info=' next sibling link '/> - <field name='prev' type='struct _xmlNode *' info=' previous sibling link '/> - <field name='doc' type='struct _xmlDoc *' info=' the containing document'/> - <field name='orig' type='xmlChar *' info=' content without ref substitution'/> - <field name='content' type='xmlChar *' info=' content or ndata if unparsed'/> - <field name='length' type='int' info=' the content length'/> - <field name='etype' type='xmlEntityType' info=' The entity type'/> - <field name='ExternalID' type='const xmlChar *' info=' External identifier for PUBLIC'/> - <field name='SystemID' type='const xmlChar *' info=' URI for a SYSTEM or PUBLIC Entity'/> - <field name='nexte' type='struct _xmlEntity *' info=' unused'/> - <field name='URI' type='const xmlChar *' info=' the full URI as computed'/> - <field name='owner' type='int' info=' does the entity own the childrens'/> - <field name='checked' type='int' info=' was the entity content checked'/> - </struct> - <typedef name='xmlEntityPtr' file='tree' type='xmlEntity *'/> - <typedef name='xmlEntityType' file='entities' type='enum'/> - <struct name='xmlEnumeration' file='tree' type='struct _xmlEnumeration'> - <field name='next' type='struct _xmlEnumeration *' info=' next one'/> - <field name='name' type='const xmlChar *' info=' Enumeration name'/> - </struct> - <typedef name='xmlEnumerationPtr' file='tree' type='xmlEnumeration *'/> - <struct name='xmlError' file='xmlerror' type='struct _xmlError'> - <field name='domain' type='int' info=' What part of the library raised this error'/> - <field name='code' type='int' info=' The error code, e.g. an xmlParserError'/> - <field name='message' type='char *' info=' human-readable informative error message'/> - <field name='level' type='xmlErrorLevel' info=' how consequent is the error'/> - <field name='file' type='char *' info=' the filename'/> - <field name='line' type='int' info=' the line number if available'/> - <field name='str1' type='char *' info=' extra string information'/> - <field name='str2' type='char *' info=' extra string information'/> - <field name='str3' type='char *' info=' extra string information'/> - <field name='int1' type='int' info=' extra number information'/> - <field name='int2' type='int' info=' column number of the error or 0 if N/A (todo: rename this field when we would break ABI)'/> - <field name='ctxt' type='void *' info=' the parser context if available'/> - <field name='node' type='void *' info=' the node in the tree'/> - </struct> - <typedef name='xmlErrorDomain' file='xmlerror' type='enum'/> - <typedef name='xmlErrorLevel' file='xmlerror' type='enum'/> - <typedef name='xmlErrorPtr' file='xmlerror' type='xmlError *'/> - <struct name='xmlExpCtxt' file='xmlregexp' type='struct _xmlExpCtxt'/> - <typedef name='xmlExpCtxtPtr' file='xmlregexp' type='xmlExpCtxt *'/> - <struct name='xmlExpNode' file='xmlregexp' type='struct _xmlExpNode'/> - <typedef name='xmlExpNodePtr' file='xmlregexp' type='xmlExpNode *'/> - <typedef name='xmlExpNodeType' file='xmlregexp' type='enum'/> - <typedef name='xmlFeature' file='parser' type='enum'/> - <struct name='xmlGlobalState' file='globals' type='struct _xmlGlobalState'> - <field name='xmlParserVersion' type='const char *' info=''/> - <field name='xmlDefaultSAXLocator' type='xmlSAXLocator' info=''/> - <field name='xmlDefaultSAXHandler' type='xmlSAXHandlerV1' info=''/> - <field name='docbDefaultSAXHandler' type='xmlSAXHandlerV1' info=''/> - <field name='htmlDefaultSAXHandler' type='xmlSAXHandlerV1' info=''/> - <field name='xmlFree' type='xmlFreeFunc' info=''/> - <field name='xmlMalloc' type='xmlMallocFunc' info=''/> - <field name='xmlMemStrdup' type='xmlStrdupFunc' info=''/> - <field name='xmlRealloc' type='xmlReallocFunc' info=''/> - <field name='xmlGenericError' type='xmlGenericErrorFunc' info=''/> - <field name='xmlStructuredError' type='xmlStructuredErrorFunc' info=''/> - <field name='xmlGenericErrorContext' type='void *' info=''/> - <field name='oldXMLWDcompatibility' type='int' info=''/> - <field name='xmlBufferAllocScheme' type='xmlBufferAllocationScheme' info=''/> - <field name='xmlDefaultBufferSize' type='int' info=''/> - <field name='xmlSubstituteEntitiesDefaultValue' type='int' info=''/> - <field name='xmlDoValidityCheckingDefaultValue' type='int' info=''/> - <field name='xmlGetWarningsDefaultValue' type='int' info=''/> - <field name='xmlKeepBlanksDefaultValue' type='int' info=''/> - <field name='xmlLineNumbersDefaultValue' type='int' info=''/> - <field name='xmlLoadExtDtdDefaultValue' type='int' info=''/> - <field name='xmlParserDebugEntities' type='int' info=''/> - <field name='xmlPedanticParserDefaultValue' type='int' info=''/> - <field name='xmlSaveNoEmptyTags' type='int' info=''/> - <field name='xmlIndentTreeOutput' type='int' info=''/> - <field name='xmlTreeIndentString' type='const char *' info=''/> - <field name='xmlRegisterNodeDefaultValue' type='xmlRegisterNodeFunc' info=''/> - <field name='xmlDeregisterNodeDefaultValue' type='xmlDeregisterNodeFunc' info=''/> - <field name='xmlMallocAtomic' type='xmlMallocFunc' info=''/> - <field name='xmlLastError' type='xmlError' info=''/> - <field name='xmlParserInputBufferCreateFilenameValue' type='xmlParserInputBufferCreateFilenameFunc' info=''/> - <field name='xmlOutputBufferCreateFilenameValue' type='xmlOutputBufferCreateFilenameFunc' info=''/> - </struct> - <typedef name='xmlGlobalStatePtr' file='globals' type='xmlGlobalState *'/> - <struct name='xmlHashTable' file='hash' type='struct _xmlHashTable'/> - <typedef name='xmlHashTablePtr' file='hash' type='xmlHashTable *'/> - <struct name='xmlID' file='tree' type='struct _xmlID'> - <field name='next' type='struct _xmlID *' info=' next ID'/> - <field name='value' type='const xmlChar *' info=' The ID name'/> - <field name='attr' type='xmlAttrPtr' info=' The attribute holding it'/> - <field name='name' type='const xmlChar *' info=' The attribute if attr is not available'/> - <field name='lineno' type='int' info=' The line number if attr is not available'/> - <field name='doc' type='struct _xmlDoc *' info=' The document holding the ID'/> - </struct> - <typedef name='xmlIDPtr' file='tree' type='xmlID *'/> - <struct name='xmlIDTable' file='valid' type='struct _xmlHashTable'/> - <typedef name='xmlIDTablePtr' file='valid' type='xmlIDTable *'/> - <struct name='xmlLink' file='list' type='struct _xmlLink'/> - <typedef name='xmlLinkPtr' file='list' type='xmlLink *'/> - <struct name='xmlList' file='list' type='struct _xmlList'/> - <typedef name='xmlListPtr' file='list' type='xmlList *'/> - <struct name='xmlLocationSet' file='xpointer' type='struct _xmlLocationSet'> - <field name='locNr' type='int' info=' number of locations in the set'/> - <field name='locMax' type='int' info=' size of the array as allocated'/> - <field name='locTab' type='xmlXPathObjectPtr *' info=' array of locations'/> - </struct> - <typedef name='xmlLocationSetPtr' file='xpointer' type='xmlLocationSet *'/> - <struct name='xmlModule' file='xmlmodule' type='struct _xmlModule'/> - <typedef name='xmlModuleOption' file='xmlmodule' type='enum'/> - <typedef name='xmlModulePtr' file='xmlmodule' type='xmlModule *'> - <info>A handle to a dynamically loaded module</info> - </typedef> - <struct name='xmlMutex' file='threads' type='struct _xmlMutex'/> - <typedef name='xmlMutexPtr' file='threads' type='xmlMutex *'/> - <struct name='xmlNode' file='tree' type='struct _xmlNode'> - <field name='_private' type='void *' info=' application data'/> - <field name='type' type='xmlElementType' info=' type number, must be second !'/> - <field name='name' type='const xmlChar *' info=' the name of the node, or the entity'/> - <field name='children' type='struct _xmlNode *' info=' parent->childs link'/> - <field name='last' type='struct _xmlNode *' info=' last child link'/> - <field name='parent' type='struct _xmlNode *' info=' child->parent link'/> - <field name='next' type='struct _xmlNode *' info=' next sibling link '/> - <field name='prev' type='struct _xmlNode *' info=' previous sibling link '/> - <field name='doc' type='struct _xmlDoc *' info=' the containing document End of common part'/> - <field name='ns' type='xmlNs *' info=' pointer to the associated namespace'/> - <field name='content' type='xmlChar *' info=' the content'/> - <field name='properties' type='struct _xmlAttr *' info=' properties list'/> - <field name='nsDef' type='xmlNs *' info=' namespace definitions on this node'/> - <field name='psvi' type='void *' info=' for type/PSVI informations'/> - <field name='line' type='unsigned short' info=' line number'/> - <field name='extra' type='unsigned short' info=' extra data for XPath/XSLT'/> - </struct> - <typedef name='xmlNodePtr' file='tree' type='xmlNode *'/> - <struct name='xmlNodeSet' file='xpath' type='struct _xmlNodeSet'> - <field name='nodeNr' type='int' info=' number of nodes in the set'/> - <field name='nodeMax' type='int' info=' size of the array as allocated'/> - <field name='nodeTab' type='xmlNodePtr *' info=' array of nodes in no particular order @@ with_ns to check wether namespace nodes should be looked at @@'/> - </struct> - <typedef name='xmlNodeSetPtr' file='xpath' type='xmlNodeSet *'/> - <struct name='xmlNotation' file='tree' type='struct _xmlNotation'> - <field name='name' type='const xmlChar *' info=' Notation name'/> - <field name='PublicID' type='const xmlChar *' info=' Public identifier, if any'/> - <field name='SystemID' type='const xmlChar *' info=' System identifier, if any'/> - </struct> - <typedef name='xmlNotationPtr' file='tree' type='xmlNotation *'/> - <struct name='xmlNotationTable' file='valid' type='struct _xmlHashTable'/> - <typedef name='xmlNotationTablePtr' file='valid' type='xmlNotationTable *'/> - <struct name='xmlNs' file='tree' type='struct _xmlNs'> - <field name='next' type='struct _xmlNs *' info=' next Ns link for this node '/> - <field name='type' type='xmlNsType' info=' global or local'/> - <field name='href' type='const xmlChar *' info=' URL for the namespace'/> - <field name='prefix' type='const xmlChar *' info=' prefix for the namespace'/> - <field name='_private' type='void *' info=' application data'/> - <field name='context' type='struct _xmlDoc *' info=' normally an xmlDoc'/> - </struct> - <typedef name='xmlNsPtr' file='tree' type='xmlNs *'/> - <typedef name='xmlNsType' file='tree' type='xmlElementType'/> - <struct name='xmlOutputBuffer' file='tree' type='struct _xmlOutputBuffer'> - <field name='context' type='void *' info=''/> - <field name='writecallback' type='xmlOutputWriteCallback' info=''/> - <field name='closecallback' type='xmlOutputCloseCallback' info=''/> - <field name='encoder' type='xmlCharEncodingHandlerPtr' info=' I18N conversions to UTF-8'/> - <field name='buffer' type='xmlBufferPtr' info=' Local buffer encoded in UTF-8 or ISOLatin'/> - <field name='conv' type='xmlBufferPtr' info=' if encoder != NULL buffer for output'/> - <field name='written' type='int' info=' total number of byte written'/> - <field name='error' type='int' info=''/> - </struct> - <typedef name='xmlOutputBufferPtr' file='tree' type='xmlOutputBuffer *'/> - <struct name='xmlParserCtxt' file='tree' type='struct _xmlParserCtxt'> - <field name='sax' type='struct _xmlSAXHandler *' info=' The SAX handler'/> - <field name='userData' type='void *' info=' For SAX interface only, used by DOM build'/> - <field name='myDoc' type='xmlDocPtr' info=' the document being built'/> - <field name='wellFormed' type='int' info=' is the document well formed'/> - <field name='replaceEntities' type='int' info=' shall we replace entities ?'/> - <field name='version' type='const xmlChar *' info=' the XML version string'/> - <field name='encoding' type='const xmlChar *' info=' the declared encoding, if any'/> - <field name='standalone' type='int' info=' standalone document'/> - <field name='html' type='int' info=' an HTML(1)/Docbook(2) document Input stream stack'/> - <field name='input' type='xmlParserInputPtr' info=' Current input stream'/> - <field name='inputNr' type='int' info=' Number of current input streams'/> - <field name='inputMax' type='int' info=' Max number of input streams'/> - <field name='inputTab' type='xmlParserInputPtr *' info=' stack of inputs Node analysis stack only used for DOM building'/> - <field name='node' type='xmlNodePtr' info=' Current parsed Node'/> - <field name='nodeNr' type='int' info=' Depth of the parsing stack'/> - <field name='nodeMax' type='int' info=' Max depth of the parsing stack'/> - <field name='nodeTab' type='xmlNodePtr *' info=' array of nodes'/> - <field name='record_info' type='int' info=' Whether node info should be kept'/> - <field name='node_seq' type='xmlParserNodeInfoSeq' info=' info about each node parsed'/> - <field name='errNo' type='int' info=' error code'/> - <field name='hasExternalSubset' type='int' info=' reference and external subset'/> - <field name='hasPErefs' type='int' info=' the internal subset has PE refs'/> - <field name='external' type='int' info=' are we parsing an external entity'/> - <field name='valid' type='int' info=' is the document valid'/> - <field name='validate' type='int' info=' shall we try to validate ?'/> - <field name='vctxt' type='xmlValidCtxt' info=' The validity context'/> - <field name='instate' type='xmlParserInputState' info=' current type of input'/> - <field name='token' type='int' info=' next char look-ahead'/> - <field name='directory' type='char *' info=' the data directory Node name stack'/> - <field name='name' type='const xmlChar *' info=' Current parsed Node'/> - <field name='nameNr' type='int' info=' Depth of the parsing stack'/> - <field name='nameMax' type='int' info=' Max depth of the parsing stack'/> - <field name='nameTab' type='const xmlChar * *' info=' array of nodes'/> - <field name='nbChars' type='long' info=' number of xmlChar processed'/> - <field name='checkIndex' type='long' info=' used by progressive parsing lookup'/> - <field name='keepBlanks' type='int' info=' ugly but ...'/> - <field name='disableSAX' type='int' info=' SAX callbacks are disabled'/> - <field name='inSubset' type='int' info=' Parsing is in int 1/ext 2 subset'/> - <field name='intSubName' type='const xmlChar *' info=' name of subset'/> - <field name='extSubURI' type='xmlChar *' info=' URI of external subset'/> - <field name='extSubSystem' type='xmlChar *' info=' SYSTEM ID of external subset xml:space values'/> - <field name='space' type='int *' info=' Should the parser preserve spaces'/> - <field name='spaceNr' type='int' info=' Depth of the parsing stack'/> - <field name='spaceMax' type='int' info=' Max depth of the parsing stack'/> - <field name='spaceTab' type='int *' info=' array of space infos'/> - <field name='depth' type='int' info=' to prevent entity substitution loops'/> - <field name='entity' type='xmlParserInputPtr' info=' used to check entities boundaries'/> - <field name='charset' type='int' info=' encoding of the in-memory content -actually an xmlCharEncoding'/> - <field name='nodelen' type='int' info=' Those two fields are there to'/> - <field name='nodemem' type='int' info=' Speed up large node parsing'/> - <field name='pedantic' type='int' info=' signal pedantic warnings'/> - <field name='_private' type='void *' info=' For user data, libxml won't touch it'/> - <field name='loadsubset' type='int' info=' should the external subset be loaded'/> - <field name='linenumbers' type='int' info=' set line number in element content'/> - <field name='catalogs' type='void *' info=' document's own catalog'/> - <field name='recovery' type='int' info=' run in recovery mode'/> - <field name='progressive' type='int' info=' is this a progressive parsing'/> - <field name='dict' type='xmlDictPtr' info=' dictionnary for the parser'/> - <field name='atts' type='const xmlChar * *' info=' array for the attributes callbacks'/> - <field name='maxatts' type='int' info=' the size of the array'/> - <field name='docdict' type='int' info='* pre-interned strings -*'/> - <field name='str_xml' type='const xmlChar *' info=''/> - <field name='str_xmlns' type='const xmlChar *' info=''/> - <field name='str_xml_ns' type='const xmlChar *' info='* Everything below is used only by the new SAX mode -*'/> - <field name='sax2' type='int' info=' operating in the new SAX mode'/> - <field name='nsNr' type='int' info=' the number of inherited namespaces'/> - <field name='nsMax' type='int' info=' the size of the arrays'/> - <field name='nsTab' type='const xmlChar * *' info=' the array of prefix/namespace name'/> - <field name='attallocs' type='int *' info=' which attribute were allocated'/> - <field name='pushTab' type='void * *' info=' array of data for push'/> - <field name='attsDefault' type='xmlHashTablePtr' info=' defaulted attributes if any'/> - <field name='attsSpecial' type='xmlHashTablePtr' info=' non-CDATA attributes if any'/> - <field name='nsWellFormed' type='int' info=' is the document XML Nanespace okay'/> - <field name='options' type='int' info='* Those fields are needed only for treaming parsing so far -*'/> - <field name='dictNames' type='int' info=' Use dictionary names for the tree'/> - <field name='freeElemsNr' type='int' info=' number of freed element nodes'/> - <field name='freeElems' type='xmlNodePtr' info=' List of freed element nodes'/> - <field name='freeAttrsNr' type='int' info=' number of freed attributes nodes'/> - <field name='freeAttrs' type='xmlAttrPtr' info='* the complete error informations for the last error. -*'/> - <field name='lastError' type='xmlError' info=''/> - <field name='parseMode' type='xmlParserMode' info=' the parser mode'/> - </struct> - <typedef name='xmlParserCtxtPtr' file='tree' type='xmlParserCtxt *'/> - <typedef name='xmlParserErrors' file='xmlerror' type='enum'/> - <struct name='xmlParserInput' file='tree' type='struct _xmlParserInput'> - <field name='buf' type='xmlParserInputBufferPtr' info=' UTF-8 encoded buffer'/> - <field name='filename' type='const char *' info=' The file analyzed, if any'/> - <field name='directory' type='const char *' info=' the directory/base of the file'/> - <field name='base' type='const xmlChar *' info=' Base of the array to parse'/> - <field name='cur' type='const xmlChar *' info=' Current char being parsed'/> - <field name='end' type='const xmlChar *' info=' end of the array to parse'/> - <field name='length' type='int' info=' length if known'/> - <field name='line' type='int' info=' Current line'/> - <field name='col' type='int' info='* NOTE: consumed is only tested for equality in the parser code, -* so even if there is an overflow this should not give troubles -* for parsing very large instances. -*'/> - <field name='consumed' type='unsigned long' info=' How many xmlChars already consumed'/> - <field name='free' type='xmlParserInputDeallocate' info=' function to deallocate the base'/> - <field name='encoding' type='const xmlChar *' info=' the encoding string for entity'/> - <field name='version' type='const xmlChar *' info=' the version string for entity'/> - <field name='standalone' type='int' info=' Was that entity marked standalone'/> - <field name='id' type='int' info=' an unique identifier for the entity'/> - </struct> - <struct name='xmlParserInputBuffer' file='tree' type='struct _xmlParserInputBuffer'> - <field name='context' type='void *' info=''/> - <field name='readcallback' type='xmlInputReadCallback' info=''/> - <field name='closecallback' type='xmlInputCloseCallback' info=''/> - <field name='encoder' type='xmlCharEncodingHandlerPtr' info=' I18N conversions to UTF-8'/> - <field name='buffer' type='xmlBufferPtr' info=' Local buffer encoded in UTF-8'/> - <field name='raw' type='xmlBufferPtr' info=' if encoder != NULL buffer for raw input'/> - <field name='compressed' type='int' info=' -1=unknown, 0=not compressed, 1=compressed'/> - <field name='error' type='int' info=''/> - <field name='rawconsumed' type='unsigned long' info=' amount consumed from raw'/> - </struct> - <typedef name='xmlParserInputBufferPtr' file='tree' type='xmlParserInputBuffer *'/> - <typedef name='xmlParserInputPtr' file='tree' type='xmlParserInput *'/> - <typedef name='xmlParserInputState' file='parser' type='enum'/> - <typedef name='xmlParserMode' file='parser' type='enum'/> - <struct name='xmlParserNodeInfo' file='parser' type='struct _xmlParserNodeInfo'> - <field name='node' type='const struct _xmlNode *' info=' Position & line # that text that created the node begins & ends on'/> - <field name='begin_pos' type='unsigned long' info=''/> - <field name='begin_line' type='unsigned long' info=''/> - <field name='end_pos' type='unsigned long' info=''/> - <field name='end_line' type='unsigned long' info=''/> - </struct> - <typedef name='xmlParserNodeInfoPtr' file='parser' type='xmlParserNodeInfo *'/> - <struct name='xmlParserNodeInfoSeq' file='parser' type='struct _xmlParserNodeInfoSeq'> - <field name='maximum' type='unsigned long' info=''/> - <field name='length' type='unsigned long' info=''/> - <field name='buffer' type='xmlParserNodeInfo *' info=''/> - </struct> - <typedef name='xmlParserNodeInfoSeqPtr' file='parser' type='xmlParserNodeInfoSeq *'/> - <typedef name='xmlParserOption' file='parser' type='enum'/> - <typedef name='xmlParserProperties' file='xmlreader' type='enum'/> - <typedef name='xmlParserSeverities' file='xmlreader' type='enum'/> - <struct name='xmlPattern' file='pattern' type='struct _xmlPattern'/> - <typedef name='xmlPatternFlags' file='pattern' type='enum'/> - <typedef name='xmlPatternPtr' file='pattern' type='xmlPattern *'/> - <struct name='xmlRMutex' file='threads' type='struct _xmlRMutex'/> - <typedef name='xmlRMutexPtr' file='threads' type='xmlRMutex *'/> - <typedef name='xmlReaderTypes' file='xmlreader' type='enum'/> - <struct name='xmlRef' file='tree' type='struct _xmlRef'> - <field name='next' type='struct _xmlRef *' info=' next Ref'/> - <field name='value' type='const xmlChar *' info=' The Ref name'/> - <field name='attr' type='xmlAttrPtr' info=' The attribute holding it'/> - <field name='name' type='const xmlChar *' info=' The attribute if attr is not available'/> - <field name='lineno' type='int' info=' The line number if attr is not available'/> - </struct> - <typedef name='xmlRefPtr' file='tree' type='xmlRef *'/> - <struct name='xmlRefTable' file='valid' type='struct _xmlHashTable'/> - <typedef name='xmlRefTablePtr' file='valid' type='xmlRefTable *'/> - <struct name='xmlRegExecCtxt' file='xmlregexp' type='struct _xmlRegExecCtxt'/> - <typedef name='xmlRegExecCtxtPtr' file='xmlregexp' type='xmlRegExecCtxt *'> - <info>A libxml progressive regular expression evaluation context</info> - </typedef> - <struct name='xmlRegexp' file='xmlregexp' type='struct _xmlRegexp'/> - <typedef name='xmlRegexpPtr' file='xmlregexp' type='xmlRegexp *'> - <info>A libxml regular expression, they can actually be far more complex thank the POSIX regex expressions.</info> - </typedef> - <struct name='xmlRelaxNG' file='relaxng' type='struct _xmlRelaxNG'/> - <struct name='xmlRelaxNGParserCtxt' file='relaxng' type='struct _xmlRelaxNGParserCtxt'/> - <typedef name='xmlRelaxNGParserCtxtPtr' file='relaxng' type='xmlRelaxNGParserCtxt *'/> - <typedef name='xmlRelaxNGParserFlag' file='relaxng' type='enum'/> - <typedef name='xmlRelaxNGPtr' file='relaxng' type='xmlRelaxNG *'/> - <struct name='xmlRelaxNGValidCtxt' file='relaxng' type='struct _xmlRelaxNGValidCtxt'/> - <typedef name='xmlRelaxNGValidCtxtPtr' file='relaxng' type='xmlRelaxNGValidCtxt *'/> - <typedef name='xmlRelaxNGValidErr' file='relaxng' type='enum'/> - <struct name='xmlSAXHandler' file='tree' type='struct _xmlSAXHandler'> - <field name='internalSubset' type='internalSubsetSAXFunc' info=''/> - <field name='isStandalone' type='isStandaloneSAXFunc' info=''/> - <field name='hasInternalSubset' type='hasInternalSubsetSAXFunc' info=''/> - <field name='hasExternalSubset' type='hasExternalSubsetSAXFunc' info=''/> - <field name='resolveEntity' type='resolveEntitySAXFunc' info=''/> - <field name='getEntity' type='getEntitySAXFunc' info=''/> - <field name='entityDecl' type='entityDeclSAXFunc' info=''/> - <field name='notationDecl' type='notationDeclSAXFunc' info=''/> - <field name='attributeDecl' type='attributeDeclSAXFunc' info=''/> - <field name='elementDecl' type='elementDeclSAXFunc' info=''/> - <field name='unparsedEntityDecl' type='unparsedEntityDeclSAXFunc' info=''/> - <field name='setDocumentLocator' type='setDocumentLocatorSAXFunc' info=''/> - <field name='startDocument' type='startDocumentSAXFunc' info=''/> - <field name='endDocument' type='endDocumentSAXFunc' info=''/> - <field name='startElement' type='startElementSAXFunc' info=''/> - <field name='endElement' type='endElementSAXFunc' info=''/> - <field name='reference' type='referenceSAXFunc' info=''/> - <field name='characters' type='charactersSAXFunc' info=''/> - <field name='ignorableWhitespace' type='ignorableWhitespaceSAXFunc' info=''/> - <field name='processingInstruction' type='processingInstructionSAXFunc' info=''/> - <field name='comment' type='commentSAXFunc' info=''/> - <field name='warning' type='warningSAXFunc' info=''/> - <field name='error' type='errorSAXFunc' info=''/> - <field name='fatalError' type='fatalErrorSAXFunc' info=' unused error() get all the errors'/> - <field name='getParameterEntity' type='getParameterEntitySAXFunc' info=''/> - <field name='cdataBlock' type='cdataBlockSAXFunc' info=''/> - <field name='externalSubset' type='externalSubsetSAXFunc' info=''/> - <field name='initialized' type='unsigned int' info=' The following fields are extensions available only on version 2'/> - <field name='_private' type='void *' info=''/> - <field name='startElementNs' type='startElementNsSAX2Func' info=''/> - <field name='endElementNs' type='endElementNsSAX2Func' info=''/> - <field name='serror' type='xmlStructuredErrorFunc' info=''/> - </struct> - <typedef name='xmlSAXHandlerPtr' file='tree' type='xmlSAXHandler *'/> - <struct name='xmlSAXHandlerV1' file='parser' type='struct _xmlSAXHandlerV1'> - <field name='internalSubset' type='internalSubsetSAXFunc' info=''/> - <field name='isStandalone' type='isStandaloneSAXFunc' info=''/> - <field name='hasInternalSubset' type='hasInternalSubsetSAXFunc' info=''/> - <field name='hasExternalSubset' type='hasExternalSubsetSAXFunc' info=''/> - <field name='resolveEntity' type='resolveEntitySAXFunc' info=''/> - <field name='getEntity' type='getEntitySAXFunc' info=''/> - <field name='entityDecl' type='entityDeclSAXFunc' info=''/> - <field name='notationDecl' type='notationDeclSAXFunc' info=''/> - <field name='attributeDecl' type='attributeDeclSAXFunc' info=''/> - <field name='elementDecl' type='elementDeclSAXFunc' info=''/> - <field name='unparsedEntityDecl' type='unparsedEntityDeclSAXFunc' info=''/> - <field name='setDocumentLocator' type='setDocumentLocatorSAXFunc' info=''/> - <field name='startDocument' type='startDocumentSAXFunc' info=''/> - <field name='endDocument' type='endDocumentSAXFunc' info=''/> - <field name='startElement' type='startElementSAXFunc' info=''/> - <field name='endElement' type='endElementSAXFunc' info=''/> - <field name='reference' type='referenceSAXFunc' info=''/> - <field name='characters' type='charactersSAXFunc' info=''/> - <field name='ignorableWhitespace' type='ignorableWhitespaceSAXFunc' info=''/> - <field name='processingInstruction' type='processingInstructionSAXFunc' info=''/> - <field name='comment' type='commentSAXFunc' info=''/> - <field name='warning' type='warningSAXFunc' info=''/> - <field name='error' type='errorSAXFunc' info=''/> - <field name='fatalError' type='fatalErrorSAXFunc' info=' unused error() get all the errors'/> - <field name='getParameterEntity' type='getParameterEntitySAXFunc' info=''/> - <field name='cdataBlock' type='cdataBlockSAXFunc' info=''/> - <field name='externalSubset' type='externalSubsetSAXFunc' info=''/> - <field name='initialized' type='unsigned int' info=''/> - </struct> - <typedef name='xmlSAXHandlerV1Ptr' file='parser' type='xmlSAXHandlerV1 *'/> - <struct name='xmlSAXLocator' file='tree' type='struct _xmlSAXLocator'> - <field name='getPublicId' type='const xmlChar *(*getPublicId)' info=''/> - <field name='getSystemId' type='const xmlChar *(*getSystemId)' info=''/> - <field name='getLineNumber' type='int(*getLineNumber)' info=''/> - <field name='getColumnNumber' type='int(*getColumnNumber)' info=''/> - </struct> - <typedef name='xmlSAXLocatorPtr' file='tree' type='xmlSAXLocator *'/> - <struct name='xmlSaveCtxt' file='xmlsave' type='struct _xmlSaveCtxt'/> - <typedef name='xmlSaveCtxtPtr' file='xmlsave' type='xmlSaveCtxt *'/> - <typedef name='xmlSaveOption' file='xmlsave' type='enum'/> - <struct name='xmlSchema' file='xmlschemas' type='struct _xmlSchema'> - <field name='name' type='const xmlChar *' info=' schema name'/> - <field name='targetNamespace' type='const xmlChar *' info=' the target namespace'/> - <field name='version' type='const xmlChar *' info=''/> - <field name='id' type='const xmlChar *' info=' Obsolete'/> - <field name='doc' type='xmlDocPtr' info=''/> - <field name='annot' type='xmlSchemaAnnotPtr' info=''/> - <field name='flags' type='int' info=''/> - <field name='typeDecl' type='xmlHashTablePtr' info=''/> - <field name='attrDecl' type='xmlHashTablePtr' info=''/> - <field name='attrgrpDecl' type='xmlHashTablePtr' info=''/> - <field name='elemDecl' type='xmlHashTablePtr' info=''/> - <field name='notaDecl' type='xmlHashTablePtr' info=''/> - <field name='schemasImports' type='xmlHashTablePtr' info=''/> - <field name='_private' type='void *' info=' unused by the library for users or bindings'/> - <field name='groupDecl' type='xmlHashTablePtr' info=''/> - <field name='dict' type='xmlDictPtr' info=''/> - <field name='includes' type='void *' info=' the includes, this is opaque for now'/> - <field name='preserve' type='int' info=' whether to free the document'/> - <field name='counter' type='int' info=' used to give ononymous components unique names'/> - <field name='idcDef' type='xmlHashTablePtr' info=' All identity-constraint defs.'/> - <field name='volatiles' type='void *' info=' Obsolete'/> - </struct> - <struct name='xmlSchemaAnnot' file='schemasInternals' type='struct _xmlSchemaAnnot'> - <field name='next' type='struct _xmlSchemaAnnot *' info=''/> - <field name='content' type='xmlNodePtr' info=' the annotation'/> - </struct> - <typedef name='xmlSchemaAnnotPtr' file='schemasInternals' type='xmlSchemaAnnot *'/> - <struct name='xmlSchemaAttribute' file='schemasInternals' type='struct _xmlSchemaAttribute'> - <field name='type' type='xmlSchemaTypeType' info=''/> - <field name='next' type='struct _xmlSchemaAttribute *' info=' the next attribute (not used?)'/> - <field name='name' type='const xmlChar *' info=' the name of the declaration'/> - <field name='id' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='ref' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='refNs' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='typeName' type='const xmlChar *' info=' the local name of the type definition'/> - <field name='typeNs' type='const xmlChar *' info=' the ns URI of the type definition'/> - <field name='annot' type='xmlSchemaAnnotPtr' info=''/> - <field name='base' type='xmlSchemaTypePtr' info=' Deprecated; not used'/> - <field name='occurs' type='int' info=' Deprecated; not used'/> - <field name='defValue' type='const xmlChar *' info=' The initial value of the value constraint'/> - <field name='subtypes' type='xmlSchemaTypePtr' info=' the type definition'/> - <field name='node' type='xmlNodePtr' info=''/> - <field name='targetNamespace' type='const xmlChar *' info=''/> - <field name='flags' type='int' info=''/> - <field name='refPrefix' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='defVal' type='xmlSchemaValPtr' info=' The compiled value constraint'/> - <field name='refDecl' type='xmlSchemaAttributePtr' info=' Deprecated; not used'/> - </struct> - <struct name='xmlSchemaAttributeGroup' file='schemasInternals' type='struct _xmlSchemaAttributeGroup'> - <field name='type' type='xmlSchemaTypeType' info=' The kind of type'/> - <field name='next' type='struct _xmlSchemaAttribute *' info=' the next attribute if in a group ...'/> - <field name='name' type='const xmlChar *' info=''/> - <field name='id' type='const xmlChar *' info=''/> - <field name='ref' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='refNs' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='annot' type='xmlSchemaAnnotPtr' info=''/> - <field name='attributes' type='xmlSchemaAttributePtr' info=' Deprecated; not used'/> - <field name='node' type='xmlNodePtr' info=''/> - <field name='flags' type='int' info=''/> - <field name='attributeWildcard' type='xmlSchemaWildcardPtr' info=''/> - <field name='refPrefix' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='refItem' type='xmlSchemaAttributeGroupPtr' info=' Deprecated; not used'/> - <field name='targetNamespace' type='const xmlChar *' info=''/> - <field name='attrUses' type='void *' info=''/> - </struct> - <typedef name='xmlSchemaAttributeGroupPtr' file='schemasInternals' type='xmlSchemaAttributeGroup *'/> - <struct name='xmlSchemaAttributeLink' file='schemasInternals' type='struct _xmlSchemaAttributeLink'> - <field name='next' type='struct _xmlSchemaAttributeLink *' info=' the next attribute link ...'/> - <field name='attr' type='struct _xmlSchemaAttribute *' info=' the linked attribute'/> - </struct> - <typedef name='xmlSchemaAttributeLinkPtr' file='schemasInternals' type='xmlSchemaAttributeLink *'/> - <typedef name='xmlSchemaAttributePtr' file='schemasInternals' type='xmlSchemaAttribute *'/> - <typedef name='xmlSchemaContentType' file='schemasInternals' type='enum'/> - <struct name='xmlSchemaElement' file='schemasInternals' type='struct _xmlSchemaElement'> - <field name='type' type='xmlSchemaTypeType' info=' The kind of type'/> - <field name='next' type='struct _xmlSchemaType *' info=' Not used?'/> - <field name='name' type='const xmlChar *' info=''/> - <field name='id' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='ref' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='refNs' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='annot' type='xmlSchemaAnnotPtr' info=''/> - <field name='subtypes' type='xmlSchemaTypePtr' info=' the type definition'/> - <field name='attributes' type='xmlSchemaAttributePtr' info=''/> - <field name='node' type='xmlNodePtr' info=''/> - <field name='minOccurs' type='int' info=' Deprecated; not used'/> - <field name='maxOccurs' type='int' info=' Deprecated; not used'/> - <field name='flags' type='int' info=''/> - <field name='targetNamespace' type='const xmlChar *' info=''/> - <field name='namedType' type='const xmlChar *' info=''/> - <field name='namedTypeNs' type='const xmlChar *' info=''/> - <field name='substGroup' type='const xmlChar *' info=''/> - <field name='substGroupNs' type='const xmlChar *' info=''/> - <field name='scope' type='const xmlChar *' info=''/> - <field name='value' type='const xmlChar *' info=' The original value of the value constraint.'/> - <field name='refDecl' type='struct _xmlSchemaElement *' info=' This will now be used for the -substitution group affiliation'/> - <field name='contModel' type='xmlRegexpPtr' info=' Obsolete for WXS, maybe used for RelaxNG'/> - <field name='contentType' type='xmlSchemaContentType' info=''/> - <field name='refPrefix' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='defVal' type='xmlSchemaValPtr' info=' The compiled value contraint.'/> - <field name='idcs' type='void *' info=' The identity-constraint defs'/> - </struct> - <typedef name='xmlSchemaElementPtr' file='schemasInternals' type='xmlSchemaElement *'/> - <struct name='xmlSchemaFacet' file='schemasInternals' type='struct _xmlSchemaFacet'> - <field name='type' type='xmlSchemaTypeType' info=' The kind of type'/> - <field name='next' type='struct _xmlSchemaFacet *' info=' the next type if in a sequence ...'/> - <field name='value' type='const xmlChar *' info=' The original value'/> - <field name='id' type='const xmlChar *' info=' Obsolete'/> - <field name='annot' type='xmlSchemaAnnotPtr' info=''/> - <field name='node' type='xmlNodePtr' info=''/> - <field name='fixed' type='int' info=' XML_SCHEMAS_FACET_PRESERVE, etc.'/> - <field name='whitespace' type='int' info=''/> - <field name='val' type='xmlSchemaValPtr' info=' The compiled value'/> - <field name='regexp' type='xmlRegexpPtr' info=' The regex for patterns'/> - </struct> - <struct name='xmlSchemaFacetLink' file='schemasInternals' type='struct _xmlSchemaFacetLink'> - <field name='next' type='struct _xmlSchemaFacetLink *' info=' the next facet link ...'/> - <field name='facet' type='xmlSchemaFacetPtr' info=' the linked facet'/> - </struct> - <typedef name='xmlSchemaFacetLinkPtr' file='schemasInternals' type='xmlSchemaFacetLink *'/> - <typedef name='xmlSchemaFacetPtr' file='schemasInternals' type='xmlSchemaFacet *'/> - <struct name='xmlSchemaNotation' file='schemasInternals' type='struct _xmlSchemaNotation'> - <field name='type' type='xmlSchemaTypeType' info=' The kind of type'/> - <field name='name' type='const xmlChar *' info=''/> - <field name='annot' type='xmlSchemaAnnotPtr' info=''/> - <field name='identifier' type='const xmlChar *' info=''/> - <field name='targetNamespace' type='const xmlChar *' info=''/> - </struct> - <typedef name='xmlSchemaNotationPtr' file='schemasInternals' type='xmlSchemaNotation *'/> - <struct name='xmlSchemaParserCtxt' file='xmlschemas' type='struct _xmlSchemaParserCtxt'/> - <typedef name='xmlSchemaParserCtxtPtr' file='xmlschemas' type='xmlSchemaParserCtxt *'/> - <typedef name='xmlSchemaPtr' file='xmlschemas' type='xmlSchema *'/> - <typedef name='xmlSchemaSAXPlugPtr' file='xmlschemas' type='xmlSchemaSAXPlugStruct *'/> - <struct name='xmlSchemaSAXPlugStruct' file='xmlschemas' type='struct _xmlSchemaSAXPlug'/> - <struct name='xmlSchemaType' file='schemasInternals' type='struct _xmlSchemaType'> - <field name='type' type='xmlSchemaTypeType' info=' The kind of type'/> - <field name='next' type='struct _xmlSchemaType *' info=' the next type if in a sequence ...'/> - <field name='name' type='const xmlChar *' info=''/> - <field name='id' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='ref' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='refNs' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='annot' type='xmlSchemaAnnotPtr' info=''/> - <field name='subtypes' type='xmlSchemaTypePtr' info=''/> - <field name='attributes' type='xmlSchemaAttributePtr' info=' Deprecated; not used'/> - <field name='node' type='xmlNodePtr' info=''/> - <field name='minOccurs' type='int' info=' Deprecated; not used'/> - <field name='maxOccurs' type='int' info=' Deprecated; not used'/> - <field name='flags' type='int' info=''/> - <field name='contentType' type='xmlSchemaContentType' info=''/> - <field name='base' type='const xmlChar *' info=' Base type's local name'/> - <field name='baseNs' type='const xmlChar *' info=' Base type's target namespace'/> - <field name='baseType' type='xmlSchemaTypePtr' info=' The base type component'/> - <field name='facets' type='xmlSchemaFacetPtr' info=' Local facets'/> - <field name='redef' type='struct _xmlSchemaType *' info=' Deprecated; not used'/> - <field name='recurse' type='int' info=' Obsolete'/> - <field name='attributeUses' type='xmlSchemaAttributeLinkPtr *' info=' Deprecated; not used'/> - <field name='attributeWildcard' type='xmlSchemaWildcardPtr' info=''/> - <field name='builtInType' type='int' info=' Type of built-in types.'/> - <field name='memberTypes' type='xmlSchemaTypeLinkPtr' info=' member-types if a union type.'/> - <field name='facetSet' type='xmlSchemaFacetLinkPtr' info=' All facets (incl. inherited)'/> - <field name='refPrefix' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='contentTypeDef' type='xmlSchemaTypePtr' info=' Used for the simple content of complex types. -Could we use @subtypes for this?'/> - <field name='contModel' type='xmlRegexpPtr' info=' Holds the automaton of the content model'/> - <field name='targetNamespace' type='const xmlChar *' info=''/> - <field name='attrUses' type='void *' info=''/> - </struct> - <struct name='xmlSchemaTypeLink' file='schemasInternals' type='struct _xmlSchemaTypeLink'> - <field name='next' type='struct _xmlSchemaTypeLink *' info=' the next type link ...'/> - <field name='type' type='xmlSchemaTypePtr' info=' the linked type'/> - </struct> - <typedef name='xmlSchemaTypeLinkPtr' file='schemasInternals' type='xmlSchemaTypeLink *'/> - <typedef name='xmlSchemaTypePtr' file='schemasInternals' type='xmlSchemaType *'/> - <typedef name='xmlSchemaTypeType' file='schemasInternals' type='enum'/> - <struct name='xmlSchemaVal' file='schemasInternals' type='struct _xmlSchemaVal'/> - <typedef name='xmlSchemaValPtr' file='schemasInternals' type='xmlSchemaVal *'/> - <typedef name='xmlSchemaValType' file='schemasInternals' type='enum'/> - <struct name='xmlSchemaValidCtxt' file='xmlschemas' type='struct _xmlSchemaValidCtxt'/> - <typedef name='xmlSchemaValidCtxtPtr' file='xmlschemas' type='xmlSchemaValidCtxt *'/> - <typedef name='xmlSchemaValidError' file='xmlschemas' type='enum'/> - <typedef name='xmlSchemaValidOption' file='xmlschemas' type='enum'/> - <typedef name='xmlSchemaWhitespaceValueType' file='xmlschemastypes' type='enum'/> - <struct name='xmlSchemaWildcard' file='schemasInternals' type='struct _xmlSchemaWildcard'> - <field name='type' type='xmlSchemaTypeType' info=' The kind of type'/> - <field name='id' type='const xmlChar *' info=' Deprecated; not used'/> - <field name='annot' type='xmlSchemaAnnotPtr' info=''/> - <field name='node' type='xmlNodePtr' info=''/> - <field name='minOccurs' type='int' info=' Deprecated; not used'/> - <field name='maxOccurs' type='int' info=' Deprecated; not used'/> - <field name='processContents' type='int' info=''/> - <field name='any' type='int' info=' Indicates if the ns constraint is of ##any'/> - <field name='nsSet' type='xmlSchemaWildcardNsPtr' info=' The list of allowed namespaces'/> - <field name='negNsSet' type='xmlSchemaWildcardNsPtr' info=' The negated namespace'/> - <field name='flags' type='int' info=''/> - </struct> - <struct name='xmlSchemaWildcardNs' file='schemasInternals' type='struct _xmlSchemaWildcardNs'> - <field name='next' type='struct _xmlSchemaWildcardNs *' info=' the next constraint link ...'/> - <field name='value' type='const xmlChar *' info=' the value'/> - </struct> - <typedef name='xmlSchemaWildcardNsPtr' file='schemasInternals' type='xmlSchemaWildcardNs *'/> - <typedef name='xmlSchemaWildcardPtr' file='schemasInternals' type='xmlSchemaWildcard *'/> - <struct name='xmlSchematron' file='schematron' type='struct _xmlSchematron'/> - <struct name='xmlSchematronParserCtxt' file='schematron' type='struct _xmlSchematronParserCtxt'/> - <typedef name='xmlSchematronParserCtxtPtr' file='schematron' type='xmlSchematronParserCtxt *'/> - <typedef name='xmlSchematronPtr' file='schematron' type='xmlSchematron *'/> - <struct name='xmlSchematronValidCtxt' file='schematron' type='struct _xmlSchematronValidCtxt'/> - <typedef name='xmlSchematronValidCtxtPtr' file='schematron' type='xmlSchematronValidCtxt *'/> - <typedef name='xmlSchematronValidOptions' file='schematron' type='enum'/> - <struct name='xmlShellCtxt' file='debugXML' type='struct _xmlShellCtxt'> - <field name='filename' type='char *' info=''/> - <field name='doc' type='xmlDocPtr' info=''/> - <field name='node' type='xmlNodePtr' info=''/> - <field name='pctxt' type='xmlXPathContextPtr' info=''/> - <field name='loaded' type='int' info=''/> - <field name='output' type='FILE *' info=''/> - <field name='input' type='xmlShellReadlineFunc' info=''/> - </struct> - <typedef name='xmlShellCtxtPtr' file='debugXML' type='xmlShellCtxt *'/> - <struct name='xmlStreamCtxt' file='pattern' type='struct _xmlStreamCtxt'/> - <typedef name='xmlStreamCtxtPtr' file='pattern' type='xmlStreamCtxt *'/> - <struct name='xmlTextReader' file='xmlreader' type='struct _xmlTextReader'/> - <typedef name='xmlTextReaderLocatorPtr' file='xmlreader' type='void *'/> - <typedef name='xmlTextReaderMode' file='xmlreader' type='enum'/> - <typedef name='xmlTextReaderPtr' file='xmlreader' type='xmlTextReader *'> - <info>Pointer to an xmlReader context.</info> - </typedef> - <struct name='xmlTextWriter' file='xmlwriter' type='struct _xmlTextWriter'/> - <typedef name='xmlTextWriterPtr' file='xmlwriter' type='xmlTextWriter *'/> - <struct name='xmlURI' file='uri' type='struct _xmlURI'> - <field name='scheme' type='char *' info=' the URI scheme'/> - <field name='opaque' type='char *' info=' opaque part'/> - <field name='authority' type='char *' info=' the authority part'/> - <field name='server' type='char *' info=' the server part'/> - <field name='user' type='char *' info=' the user part'/> - <field name='port' type='int' info=' the port number'/> - <field name='path' type='char *' info=' the path string'/> - <field name='query' type='char *' info=' the query string (deprecated - use with caution)'/> - <field name='fragment' type='char *' info=' the fragment identifier'/> - <field name='cleanup' type='int' info=' parsing potentially unclean URI'/> - <field name='query_raw' type='char *' info=' the query string (as it appears in the URI)'/> - </struct> - <typedef name='xmlURIPtr' file='uri' type='xmlURI *'/> - <struct name='xmlValidCtxt' file='valid' type='struct _xmlValidCtxt'> - <field name='userData' type='void *' info=' user specific data block'/> - <field name='error' type='xmlValidityErrorFunc' info=' the callback in case of errors'/> - <field name='warning' type='xmlValidityWarningFunc' info=' the callback in case of warning Node analysis stack used when validating within entities'/> - <field name='node' type='xmlNodePtr' info=' Current parsed Node'/> - <field name='nodeNr' type='int' info=' Depth of the parsing stack'/> - <field name='nodeMax' type='int' info=' Max depth of the parsing stack'/> - <field name='nodeTab' type='xmlNodePtr *' info=' array of nodes'/> - <field name='finishDtd' type='unsigned int' info=' finished validating the Dtd ?'/> - <field name='doc' type='xmlDocPtr' info=' the document'/> - <field name='valid' type='int' info=' temporary validity check result state state used for non-determinist content validation'/> - <field name='vstate' type='xmlValidState *' info=' current state'/> - <field name='vstateNr' type='int' info=' Depth of the validation stack'/> - <field name='vstateMax' type='int' info=' Max depth of the validation stack'/> - <field name='vstateTab' type='xmlValidState *' info=' array of validation states'/> - <field name='am' type='xmlAutomataPtr' info=' the automata'/> - <field name='state' type='xmlAutomataStatePtr' info=' used to build the automata'/> - <field name='am' type='void *' info=''/> - <field name='state' type='void *' info=''/> - </struct> - <typedef name='xmlValidCtxtPtr' file='valid' type='xmlValidCtxt *'/> - <struct name='xmlValidState' file='valid' type='struct _xmlValidState'/> - <typedef name='xmlValidStatePtr' file='valid' type='xmlValidState *'/> - <struct name='xmlXIncludeCtxt' file='xinclude' type='struct _xmlXIncludeCtxt'/> - <typedef name='xmlXIncludeCtxtPtr' file='xinclude' type='xmlXIncludeCtxt *'/> - <struct name='xmlXPathAxis' file='xpath' type='struct _xmlXPathAxis'> - <field name='name' type='const xmlChar *' info=' the axis name'/> - <field name='func' type='xmlXPathAxisFunc' info=' the search function'/> - </struct> - <typedef name='xmlXPathAxisPtr' file='xpath' type='xmlXPathAxis *'/> - <struct name='xmlXPathCompExpr' file='xpath' type='struct _xmlXPathCompExpr'/> - <typedef name='xmlXPathCompExprPtr' file='xpath' type='xmlXPathCompExpr *'/> - <struct name='xmlXPathContext' file='xpath' type='struct _xmlXPathContext'> - <field name='doc' type='xmlDocPtr' info=' The current document'/> - <field name='node' type='xmlNodePtr' info=' The current node'/> - <field name='nb_variables_unused' type='int' info=' unused (hash table)'/> - <field name='max_variables_unused' type='int' info=' unused (hash table)'/> - <field name='varHash' type='xmlHashTablePtr' info=' Hash table of defined variables'/> - <field name='nb_types' type='int' info=' number of defined types'/> - <field name='max_types' type='int' info=' max number of types'/> - <field name='types' type='xmlXPathTypePtr' info=' Array of defined types'/> - <field name='nb_funcs_unused' type='int' info=' unused (hash table)'/> - <field name='max_funcs_unused' type='int' info=' unused (hash table)'/> - <field name='funcHash' type='xmlHashTablePtr' info=' Hash table of defined funcs'/> - <field name='nb_axis' type='int' info=' number of defined axis'/> - <field name='max_axis' type='int' info=' max number of axis'/> - <field name='axis' type='xmlXPathAxisPtr' info=' Array of defined axis the namespace nodes of the context node'/> - <field name='namespaces' type='xmlNsPtr *' info=' Array of namespaces'/> - <field name='nsNr' type='int' info=' number of namespace in scope'/> - <field name='user' type='void *' info=' function to free extra variables'/> - <field name='contextSize' type='int' info=' the context size'/> - <field name='proximityPosition' type='int' info=' the proximity position extra stuff for XPointer'/> - <field name='xptr' type='int' info=' is this an XPointer context?'/> - <field name='here' type='xmlNodePtr' info=' for here()'/> - <field name='origin' type='xmlNodePtr' info=' for origin() the set of namespace declarations in scope for the expression'/> - <field name='nsHash' type='xmlHashTablePtr' info=' The namespaces hash table'/> - <field name='varLookupFunc' type='xmlXPathVariableLookupFunc' info=' variable lookup func'/> - <field name='varLookupData' type='void *' info=' variable lookup data Possibility to link in an extra item'/> - <field name='extra' type='void *' info=' needed for XSLT The function name and URI when calling a function'/> - <field name='function' type='const xmlChar *' info=''/> - <field name='functionURI' type='const xmlChar *' info=' function lookup function and data'/> - <field name='funcLookupFunc' type='xmlXPathFuncLookupFunc' info=' function lookup func'/> - <field name='funcLookupData' type='void *' info=' function lookup data temporary namespace lists kept for walking the namespace axis'/> - <field name='tmpNsList' type='xmlNsPtr *' info=' Array of namespaces'/> - <field name='tmpNsNr' type='int' info=' number of namespaces in scope error reporting mechanism'/> - <field name='userData' type='void *' info=' user specific data block'/> - <field name='error' type='xmlStructuredErrorFunc' info=' the callback in case of errors'/> - <field name='lastError' type='xmlError' info=' the last error'/> - <field name='debugNode' type='xmlNodePtr' info=' the source node XSLT dictionary'/> - <field name='dict' type='xmlDictPtr' info=' dictionary if any'/> - <field name='flags' type='int' info=' flags to control compilation Cache for reusal of XPath objects'/> - <field name='cache' type='void *' info=''/> - </struct> - <typedef name='xmlXPathContextPtr' file='xpath' type='xmlXPathContext *'/> - <typedef name='xmlXPathError' file='xpath' type='enum'/> - <typedef name='xmlXPathFuncPtr' file='xpath' type='xmlXPathFunct *'/> - <struct name='xmlXPathFunct' file='xpath' type='struct _xmlXPathFunct'> - <field name='name' type='const xmlChar *' info=' the function name'/> - <field name='func' type='xmlXPathEvalFunc' info=' the evaluation function'/> - </struct> - <struct name='xmlXPathObject' file='xpath' type='struct _xmlXPathObject'> - <field name='type' type='xmlXPathObjectType' info=''/> - <field name='nodesetval' type='xmlNodeSetPtr' info=''/> - <field name='boolval' type='int' info=''/> - <field name='floatval' type='double' info=''/> - <field name='stringval' type='xmlChar *' info=''/> - <field name='user' type='void *' info=''/> - <field name='index' type='int' info=''/> - <field name='user2' type='void *' info=''/> - <field name='index2' type='int' info=''/> - </struct> - <typedef name='xmlXPathObjectPtr' file='xpath' type='xmlXPathObject *'/> - <typedef name='xmlXPathObjectType' file='xpath' type='enum'/> - <struct name='xmlXPathParserContext' file='xpath' type='struct _xmlXPathParserContext'> - <field name='cur' type='const xmlChar *' info=' the current char being parsed'/> - <field name='base' type='const xmlChar *' info=' the full expression'/> - <field name='error' type='int' info=' error code'/> - <field name='context' type='xmlXPathContextPtr' info=' the evaluation context'/> - <field name='value' type='xmlXPathObjectPtr' info=' the current value'/> - <field name='valueNr' type='int' info=' number of values stacked'/> - <field name='valueMax' type='int' info=' max number of values stacked'/> - <field name='valueTab' type='xmlXPathObjectPtr *' info=' stack of values'/> - <field name='comp' type='xmlXPathCompExprPtr' info=' the precompiled expression'/> - <field name='xptr' type='int' info=' it this an XPointer expression'/> - <field name='ancestor' type='xmlNodePtr' info=' used for walking preceding axis'/> - </struct> - <typedef name='xmlXPathParserContextPtr' file='xpath' type='xmlXPathParserContext *'/> - <struct name='xmlXPathType' file='xpath' type='struct _xmlXPathType'> - <field name='name' type='const xmlChar *' info=' the type name'/> - <field name='func' type='xmlXPathConvertFunc' info=' the conversion function'/> - </struct> - <typedef name='xmlXPathTypePtr' file='xpath' type='xmlXPathType *'/> - <struct name='xmlXPathVariable' file='xpath' type='struct _xmlXPathVariable'> - <field name='name' type='const xmlChar *' info=' the variable name'/> - <field name='value' type='xmlXPathObjectPtr' info=' the value'/> - </struct> - <typedef name='xmlXPathVariablePtr' file='xpath' type='xmlXPathVariable *'/> - <variable name='docbDefaultSAXHandler' file='globals' type='xmlSAXHandlerV1'/> - <variable name='emptyExp' file='xmlregexp' type='xmlExpNodePtr'/> - <variable name='forbiddenExp' file='xmlregexp' type='xmlExpNodePtr'/> - <variable name='htmlDefaultSAXHandler' file='globals' type='xmlSAXHandlerV1'/> - <variable name='oldXMLWDcompatibility' file='globals' type='int'/> - <variable name='xmlBufferAllocScheme' file='globals' type='xmlBufferAllocationScheme'/> - <variable name='xmlDefaultBufferSize' file='globals' type='int'/> - <variable name='xmlDefaultSAXHandler' file='globals' type='xmlSAXHandlerV1'/> - <variable name='xmlDefaultSAXLocator' file='globals' type='xmlSAXLocator'/> - <variable name='xmlDeregisterNodeDefaultValue' file='globals' type='xmlDeregisterNodeFunc'/> - <variable name='xmlDoValidityCheckingDefaultValue' file='globals' type='int'/> - <variable name='xmlFree' file='globals' type='xmlFreeFunc'/> - <variable name='xmlGenericError' file='globals' type='xmlGenericErrorFunc'/> - <variable name='xmlGenericErrorContext' file='globals' type='void *'/> - <variable name='xmlGetWarningsDefaultValue' file='globals' type='int'/> - <variable name='xmlIndentTreeOutput' file='globals' type='int'/> - <variable name='xmlIsBaseCharGroup' file='chvalid' type='const xmlChRangeGroup'/> - <variable name='xmlIsCharGroup' file='chvalid' type='const xmlChRangeGroup'/> - <variable name='xmlIsCombiningGroup' file='chvalid' type='const xmlChRangeGroup'/> - <variable name='xmlIsDigitGroup' file='chvalid' type='const xmlChRangeGroup'/> - <variable name='xmlIsExtenderGroup' file='chvalid' type='const xmlChRangeGroup'/> - <variable name='xmlIsIdeographicGroup' file='chvalid' type='const xmlChRangeGroup'/> - <variable name='xmlIsPubidChar_tab' file='chvalid' type='const unsigned charxmlIsPubidChar_tab[256]'/> - <variable name='xmlKeepBlanksDefaultValue' file='globals' type='int'/> - <variable name='xmlLastError' file='globals' type='xmlError'/> - <variable name='xmlLineNumbersDefaultValue' file='globals' type='int'/> - <variable name='xmlLoadExtDtdDefaultValue' file='globals' type='int'/> - <variable name='xmlMalloc' file='globals' type='xmlMallocFunc'/> - <variable name='xmlMallocAtomic' file='globals' type='xmlMallocFunc'/> - <variable name='xmlMemStrdup' file='globals' type='xmlStrdupFunc'/> - <variable name='xmlOutputBufferCreateFilenameValue' file='globals' type='xmlOutputBufferCreateFilenameFunc'/> - <variable name='xmlParserDebugEntities' file='globals' type='int'/> - <variable name='xmlParserInputBufferCreateFilenameValue' file='globals' type='xmlParserInputBufferCreateFilenameFunc'/> - <variable name='xmlParserMaxDepth' file='parserInternals' type='unsigned int'/> - <variable name='xmlParserVersion' file='globals' type='const char *'/> - <variable name='xmlPedanticParserDefaultValue' file='globals' type='int'/> - <variable name='xmlRealloc' file='globals' type='xmlReallocFunc'/> - <variable name='xmlRegisterNodeDefaultValue' file='globals' type='xmlRegisterNodeFunc'/> - <variable name='xmlSaveNoEmptyTags' file='globals' type='int'/> - <variable name='xmlStringComment' file='parserInternals' type='const xmlCharxmlStringComment[]'/> - <variable name='xmlStringText' file='parserInternals' type='const xmlCharxmlStringText[]'/> - <variable name='xmlStringTextNoenc' file='parserInternals' type='const xmlCharxmlStringTextNoenc[]'/> - <variable name='xmlStructuredError' file='globals' type='xmlStructuredErrorFunc'/> - <variable name='xmlSubstituteEntitiesDefaultValue' file='globals' type='int'/> - <variable name='xmlTreeIndentString' file='globals' type='const char *'/> - <variable name='xmlXPathNAN' file='xpath' type='double'/> - <variable name='xmlXPathNINF' file='xpath' type='double'/> - <variable name='xmlXPathPINF' file='xpath' type='double'/> - <function name='UTF8ToHtml' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Take a block of UTF-8 chars in and try to convert it to an ASCII plus HTML entities block of chars out.</info> - <return type='int' info='0 if success, -2 if the transcoding fails, or -1 otherwise The value of @inlen after return is the number of octets consumed as the return value is positive, else unpredictable. The value of @outlen after return is the number of octets consumed.'/> - <arg name='out' type='unsigned char *' info='a pointer to an array of bytes to store the result'/> - <arg name='outlen' type='int *' info='the length of @out'/> - <arg name='in' type='const unsigned char *' info='a pointer to an array of UTF-8 chars'/> - <arg name='inlen' type='int *' info='the length of @in'/> - </function> - <function name='UTF8Toisolat1' file='encoding' module='encoding'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Take a block of UTF-8 chars in and try to convert it to an ISO Latin 1 block of chars out.</info> - <return type='int' info='the number of bytes written if success, -2 if the transcoding fails, or -1 otherwise The value of @inlen after return is the number of octets consumed if the return value is positive, else unpredictable. The value of @outlen after return is the number of octets consumed.'/> - <arg name='out' type='unsigned char *' info='a pointer to an array of bytes to store the result'/> - <arg name='outlen' type='int *' info='the length of @out'/> - <arg name='in' type='const unsigned char *' info='a pointer to an array of UTF-8 chars'/> - <arg name='inlen' type='int *' info='the length of @in'/> - </function> - <function name='attribute' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Handle an attribute that has been read by the parser. The default handling is to convert the attribute into an DOM subtree and past it in a new xmlAttr element added to the element. DEPRECATED: use xmlSAX2Attribute()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='fullname' type='const xmlChar *' info='The attribute name, including namespace prefix'/> - <arg name='value' type='const xmlChar *' info='The attribute value'/> - </function> - <function name='attributeDecl' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>An attribute definition has been parsed DEPRECATED: use xmlSAX2AttributeDecl()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='elem' type='const xmlChar *' info='the name of the element'/> - <arg name='fullname' type='const xmlChar *' info='the attribute name'/> - <arg name='type' type='int' info='the attribute type'/> - <arg name='def' type='int' info='the type of default value'/> - <arg name='defaultValue' type='const xmlChar *' info='the attribute default value'/> - <arg name='tree' type='xmlEnumerationPtr' info='the tree of enumerated value set'/> - </function> - <functype name='attributeDeclSAXFunc' file='parser' module='parser'> - <info>An attribute definition has been parsed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='elem' type='const xmlChar *' info='the name of the element'/> - <arg name='fullname' type='const xmlChar *' info='the attribute name'/> - <arg name='type' type='int' info='the attribute type'/> - <arg name='def' type='int' info='the type of default value'/> - <arg name='defaultValue' type='const xmlChar *' info='the attribute default value'/> - <arg name='tree' type='xmlEnumerationPtr' info='the tree of enumerated value set'/> - </functype> - <functype name='attributeSAXFunc' file='parser' module='parser'> - <info>Handle an attribute that has been read by the parser. The default handling is to convert the attribute into an DOM subtree and past it in a new xmlAttr element added to the element.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The attribute name, including namespace prefix'/> - <arg name='value' type='const xmlChar *' info='The attribute value'/> - </functype> - <function name='cdataBlock' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>called when a pcdata block has been parsed DEPRECATED: use xmlSAX2CDataBlock()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='value' type='const xmlChar *' info='The pcdata content'/> - <arg name='len' type='int' info='the block length'/> - </function> - <functype name='cdataBlockSAXFunc' file='parser' module='parser'> - <info>Called when a pcdata block has been parsed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='value' type='const xmlChar *' info='The pcdata content'/> - <arg name='len' type='int' info='the block length'/> - </functype> - <function name='characters' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>receiving some chars from the parser. DEPRECATED: use xmlSAX2Characters()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='ch' type='const xmlChar *' info='a xmlChar string'/> - <arg name='len' type='int' info='the number of xmlChar'/> - </function> - <functype name='charactersSAXFunc' file='parser' module='parser'> - <info>Receiving some chars from the parser.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='ch' type='const xmlChar *' info='a xmlChar string'/> - <arg name='len' type='int' info='the number of xmlChar'/> - </functype> - <function name='checkNamespace' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Check that the current element namespace is the same as the one read upon parsing. DEPRECATED</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='namespace' type='xmlChar *' info='the namespace to check against'/> - </function> - <function name='comment' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>A comment has been parsed. DEPRECATED: use xmlSAX2Comment()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='value' type='const xmlChar *' info='the comment content'/> - </function> - <functype name='commentSAXFunc' file='parser' module='parser'> - <info>A comment has been parsed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='value' type='const xmlChar *' info='the comment content'/> - </functype> - <function name='docbCreateFileParserCtxt' file='DOCBparser' module='DOCBparser'> - <cond>defined(LIBXML_DOCB_ENABLED)</cond> - <info>Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</info> - <return type='docbParserCtxtPtr' info='the new parser context or NULL'/> - <arg name='filename' type='const char *' info='the filename'/> - <arg name='encoding' type='const char *' info='the SGML document encoding, or NULL'/> - </function> - <function name='docbCreatePushParserCtxt' file='DOCBparser' module='DOCBparser'> - <cond>defined(LIBXML_DOCB_ENABLED)</cond> - <info>Create a parser context for using the DocBook SGML parser in push mode To allow content encoding detection, @size should be >= 4 The value of @filename is used for fetching external entities and error/warning reports.</info> - <return type='docbParserCtxtPtr' info='the new parser context or NULL'/> - <arg name='sax' type='docbSAXHandlerPtr' info='a SAX handler'/> - <arg name='user_data' type='void *' info='The user data returned on SAX callbacks'/> - <arg name='chunk' type='const char *' info='a pointer to an array of chars'/> - <arg name='size' type='int' info='number of chars in the array'/> - <arg name='filename' type='const char *' info='an optional file name or URI'/> - <arg name='enc' type='xmlCharEncoding' info='an optional encoding'/> - </function> - <function name='docbDefaultSAXHandlerInit' file='SAX2' module='SAX2'> - <cond>defined(LIBXML_DOCB_ENABLED)</cond> - <info>Initialize the default SAX handler</info> - <return type='void'/> - </function> - <function name='docbEncodeEntities' file='DOCBparser' module='DOCBparser'> - <cond>defined(LIBXML_DOCB_ENABLED)</cond> - <info>Take a block of UTF-8 chars in and try to convert it to an ASCII plus SGML entities block of chars out.</info> - <return type='int' info='0 if success, -2 if the transcoding fails, or -1 otherwise The value of @inlen after return is the number of octets consumed as the return value is positive, else unpredictable. The value of @outlen after return is the number of octets consumed.'/> - <arg name='out' type='unsigned char *' info='a pointer to an array of bytes to store the result'/> - <arg name='outlen' type='int *' info='the length of @out'/> - <arg name='in' type='const unsigned char *' info='a pointer to an array of UTF-8 chars'/> - <arg name='inlen' type='int *' info='the length of @in'/> - <arg name='quoteChar' type='int' info='the quote character to escape (' or ") or zero.'/> - </function> - <function name='docbFreeParserCtxt' file='DOCBparser' module='DOCBparser'> - <cond>defined(LIBXML_DOCB_ENABLED)</cond> - <info>Free all the memory used by a parser context. However the parsed document in ctxt->myDoc is not freed.</info> - <return type='void'/> - <arg name='ctxt' type='docbParserCtxtPtr' info='an SGML parser context'/> - </function> - <function name='docbParseChunk' file='DOCBparser' module='DOCBparser'> - <cond>defined(LIBXML_DOCB_ENABLED)</cond> - <info>Parse a Chunk of memory</info> - <return type='int' info='zero if no error, the xmlParserErrors otherwise.'/> - <arg name='ctxt' type='docbParserCtxtPtr' info='an XML parser context'/> - <arg name='chunk' type='const char *' info='an char array'/> - <arg name='size' type='int' info='the size in byte of the chunk'/> - <arg name='terminate' type='int' info='last chunk indicator'/> - </function> - <function name='docbParseDoc' file='DOCBparser' module='DOCBparser'> - <cond>defined(LIBXML_DOCB_ENABLED)</cond> - <info>parse an SGML in-memory document and build a tree.</info> - <return type='docbDocPtr' info='the resulting document tree'/> - <arg name='cur' type='xmlChar *' info='a pointer to an array of xmlChar'/> - <arg name='encoding' type='const char *' info='a free form C string describing the SGML document encoding, or NULL'/> - </function> - <function name='docbParseDocument' file='DOCBparser' module='DOCBparser'> - <cond>defined(LIBXML_DOCB_ENABLED)</cond> - <info>parse an SGML document (and build a tree if using the standard SAX interface).</info> - <return type='int' info='0, -1 in case of error. the parser context is augmented as a result of the parsing.'/> - <arg name='ctxt' type='docbParserCtxtPtr' info='an SGML parser context'/> - </function> - <function name='docbParseFile' file='DOCBparser' module='DOCBparser'> - <cond>defined(LIBXML_DOCB_ENABLED)</cond> - <info>parse a Docbook SGML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</info> - <return type='docbDocPtr' info='the resulting document tree'/> - <arg name='filename' type='const char *' info='the filename'/> - <arg name='encoding' type='const char *' info='a free form C string describing document encoding, or NULL'/> - </function> - <function name='docbSAXParseDoc' file='DOCBparser' module='DOCBparser'> - <cond>defined(LIBXML_DOCB_ENABLED)</cond> - <info>parse an SGML in-memory document and build a tree. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines.</info> - <return type='docbDocPtr' info='the resulting document tree'/> - <arg name='cur' type='xmlChar *' info='a pointer to an array of xmlChar'/> - <arg name='encoding' type='const char *' info='a free form C string describing the SGML document encoding, or NULL'/> - <arg name='sax' type='docbSAXHandlerPtr' info='the SAX handler block'/> - <arg name='userData' type='void *' info='if using SAX, this pointer will be provided on callbacks.'/> - </function> - <function name='docbSAXParseFile' file='DOCBparser' module='DOCBparser'> - <cond>defined(LIBXML_DOCB_ENABLED)</cond> - <info>parse an SGML 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.</info> - <return type='docbDocPtr' info='the resulting document tree'/> - <arg name='filename' type='const char *' info='the filename'/> - <arg name='encoding' type='const char *' info='a free form C string describing the SGML document encoding, or NULL'/> - <arg name='sax' type='docbSAXHandlerPtr' info='the SAX handler block'/> - <arg name='userData' type='void *' info='if using SAX, this pointer will be provided on callbacks.'/> - </function> - <function name='elementDecl' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>An element definition has been parsed DEPRECATED: use xmlSAX2ElementDecl()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the element name'/> - <arg name='type' type='int' info='the element type'/> - <arg name='content' type='xmlElementContentPtr' info='the element value tree'/> - </function> - <functype name='elementDeclSAXFunc' file='parser' module='parser'> - <info>An element definition has been parsed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the element name'/> - <arg name='type' type='int' info='the element type'/> - <arg name='content' type='xmlElementContentPtr' info='the element value tree'/> - </functype> - <function name='endDocument' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>called when the document end has been detected. DEPRECATED: use xmlSAX2EndDocument()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <functype name='endDocumentSAXFunc' file='parser' module='parser'> - <info>Called when the document end has been detected.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </functype> - <function name='endElement' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>called when the end of an element has been detected. DEPRECATED: use xmlSAX2EndElement()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The element name'/> - </function> - <functype name='endElementNsSAX2Func' file='parser' module='parser'> - <info>SAX2 callback when an element end has been detected by the parser. It provides the namespace informations for the element.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='localname' type='const xmlChar *' info='the local name of the element'/> - <arg name='prefix' type='const xmlChar *' info='the element namespace prefix if available'/> - <arg name='URI' type='const xmlChar *' info='the element namespace name if available'/> - </functype> - <functype name='endElementSAXFunc' file='parser' module='parser'> - <info>Called when the end of an element has been detected.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The element name'/> - </functype> - <function name='entityDecl' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>An entity definition has been parsed DEPRECATED: use xmlSAX2EntityDecl()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the entity name'/> - <arg name='type' type='int' info='the entity type'/> - <arg name='publicId' type='const xmlChar *' info='The public ID of the entity'/> - <arg name='systemId' type='const xmlChar *' info='The system ID of the entity'/> - <arg name='content' type='xmlChar *' info='the entity value (without processing).'/> - </function> - <functype name='entityDeclSAXFunc' file='parser' module='parser'> - <info>An entity definition has been parsed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the entity name'/> - <arg name='type' type='int' info='the entity type'/> - <arg name='publicId' type='const xmlChar *' info='The public ID of the entity'/> - <arg name='systemId' type='const xmlChar *' info='The system ID of the entity'/> - <arg name='content' type='xmlChar *' info='the entity value (without processing).'/> - </functype> - <functype name='errorSAXFunc' file='parser' module='parser'> - <info>Display and format an error messages, callback.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='an XML parser context'/> - <arg name='msg' type='const char *' info='the message to display/transmit'/> - <arg name='...' type='...' info='extra parameters for the message display'/> - </functype> - <function name='externalSubset' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Callback on external subset declaration. DEPRECATED: use xmlSAX2ExternalSubset()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the root element name'/> - <arg name='ExternalID' type='const xmlChar *' info='the external ID'/> - <arg name='SystemID' type='const xmlChar *' info='the SYSTEM ID (e.g. filename or URL)'/> - </function> - <functype name='externalSubsetSAXFunc' file='parser' module='parser'> - <info>Callback on external subset declaration.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the root element name'/> - <arg name='ExternalID' type='const xmlChar *' info='the external ID'/> - <arg name='SystemID' type='const xmlChar *' info='the SYSTEM ID (e.g. filename or URL)'/> - </functype> - <functype name='fatalErrorSAXFunc' file='parser' module='parser'> - <info>Display and format fatal error messages, callback. Note: so far fatalError() SAX callbacks are not used, error() get all the callbacks for errors.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='an XML parser context'/> - <arg name='msg' type='const char *' info='the message to display/transmit'/> - <arg name='...' type='...' info='extra parameters for the message display'/> - </functype> - <functype name='ftpDataCallback' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>A callback for the xmlNanoFTPGet command.</info> - <return type='void'/> - <arg name='userData' type='void *' info='the user provided context'/> - <arg name='data' type='const char *' info='the data received'/> - <arg name='len' type='int' info='its size in bytes'/> - </functype> - <functype name='ftpListCallback' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>A callback for the xmlNanoFTPList command. Note that only one of year and day:minute are specified.</info> - <return type='void'/> - <arg name='userData' type='void *' info='user provided data for the callback'/> - <arg name='filename' type='const char *' info='the file name (including "->" when links are shown)'/> - <arg name='attrib' type='const char *' info='the attribute string'/> - <arg name='owner' type='const char *' info='the owner string'/> - <arg name='group' type='const char *' info='the group string'/> - <arg name='size' type='unsigned long' info='the file size'/> - <arg name='links' type='int' info='the link count'/> - <arg name='year' type='int' info='the year'/> - <arg name='month' type='const char *' info='the month'/> - <arg name='day' type='int' info='the day'/> - <arg name='hour' type='int' info='the hour'/> - <arg name='minute' type='int' info='the minute'/> - </functype> - <function name='getColumnNumber' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Provide the column number of the current parsing point. DEPRECATED: use xmlSAX2GetColumnNumber()</info> - <return type='int' info='an int'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='getEntity' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Get an entity by name DEPRECATED: use xmlSAX2GetEntity()</info> - <return type='xmlEntityPtr' info='the xmlEntityPtr if found.'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The entity name'/> - </function> - <functype name='getEntitySAXFunc' file='parser' module='parser'> - <info>Get an entity by name.</info> - <return type='xmlEntityPtr' info='the xmlEntityPtr if found.'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The entity name'/> - </functype> - <function name='getLineNumber' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Provide the line number of the current parsing point. DEPRECATED: use xmlSAX2GetLineNumber()</info> - <return type='int' info='an int'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='getNamespace' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Get the current element namespace. DEPRECATED</info> - <return type='xmlNsPtr' info='the xmlNsPtr or NULL if none'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='getParameterEntity' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Get a parameter entity by name DEPRECATED: use xmlSAX2GetParameterEntity()</info> - <return type='xmlEntityPtr' info='the xmlEntityPtr if found.'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The entity name'/> - </function> - <functype name='getParameterEntitySAXFunc' file='parser' module='parser'> - <info>Get a parameter entity by name.</info> - <return type='xmlEntityPtr' info='the xmlEntityPtr if found.'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The entity name'/> - </functype> - <function name='getPublicId' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Provides the public ID e.g. "-//SGMLSOURCE//DTD DEMO//EN" DEPRECATED: use xmlSAX2GetPublicId()</info> - <return type='const xmlChar *' info='a xmlChar *'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='getSystemId' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Provides the system ID, basically URL or filename e.g. http://www.sgmlsource.com/dtds/memo.dtd DEPRECATED: use xmlSAX2GetSystemId()</info> - <return type='const xmlChar *' info='a xmlChar *'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='globalNamespace' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>An old global namespace has been parsed. DEPRECATED</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='href' type='const xmlChar *' info='the namespace associated URN'/> - <arg name='prefix' type='const xmlChar *' info='the namespace prefix'/> - </function> - <function name='hasExternalSubset' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Does this document has an external subset DEPRECATED: use xmlSAX2HasExternalSubset()</info> - <return type='int' info='1 if true'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <functype name='hasExternalSubsetSAXFunc' file='parser' module='parser'> - <info>Does this document has an external subset?</info> - <return type='int' info='1 if true'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </functype> - <function name='hasInternalSubset' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Does this document has an internal subset DEPRECATED: use xmlSAX2HasInternalSubset()</info> - <return type='int' info='1 if true'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <functype name='hasInternalSubsetSAXFunc' file='parser' module='parser'> - <info>Does this document has an internal subset.</info> - <return type='int' info='1 if true'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </functype> - <function name='htmlAttrAllowed' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Checks whether an attribute is valid for an element Has full knowledge of Required and Deprecated attributes</info> - <return type='htmlStatus' info='one of HTML_REQUIRED, HTML_VALID, HTML_DEPRECATED, HTML_INVALID'/> - <arg name='elt' type='const htmlElemDesc *' info='HTML element'/> - <arg name='attr' type='const xmlChar *' info='HTML attribute'/> - <arg name='legacy' type='int' info='whether to allow deprecated attributes'/> - </function> - <function name='htmlAutoCloseTag' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>The HTML DTD allows a tag to implicitly close other tags. The list is kept in htmlStartClose array. This function checks if the element or one of it's children would autoclose the given tag.</info> - <return type='int' info='1 if autoclose, 0 otherwise'/> - <arg name='doc' type='htmlDocPtr' info='the HTML document'/> - <arg name='name' type='const xmlChar *' info='The tag name'/> - <arg name='elem' type='htmlNodePtr' info='the HTML element'/> - </function> - <function name='htmlCreateFileParserCtxt' file='parserInternals' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</info> - <return type='htmlParserCtxtPtr' info='the new parser context or NULL'/> - <arg name='filename' type='const char *' info='the filename'/> - <arg name='encoding' type='const char *' info='a free form C string describing the HTML document encoding, or NULL'/> - </function> - <function name='htmlCreateMemoryParserCtxt' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Create a parser context for an HTML in-memory document.</info> - <return type='htmlParserCtxtPtr' info='the new parser context or NULL'/> - <arg name='buffer' type='const char *' info='a pointer to a char array'/> - <arg name='size' type='int' info='the size of the array'/> - </function> - <function name='htmlCreatePushParserCtxt' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_PUSH_ENABLED)</cond> - <info>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.</info> - <return type='htmlParserCtxtPtr' info='the new parser context or NULL'/> - <arg name='sax' type='htmlSAXHandlerPtr' info='a SAX handler'/> - <arg name='user_data' type='void *' info='The user data returned on SAX callbacks'/> - <arg name='chunk' type='const char *' info='a pointer to an array of chars'/> - <arg name='size' type='int' info='number of chars in the array'/> - <arg name='filename' type='const char *' info='an optional file name or URI'/> - <arg name='enc' type='xmlCharEncoding' info='an optional encoding'/> - </function> - <function name='htmlCtxtReadDoc' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context</info> - <return type='htmlDocPtr' info='the resulting document tree'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - <arg name='cur' type='const xmlChar *' info='a pointer to a zero terminated string'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of htmlParserOption(s)'/> - </function> - <function name='htmlCtxtReadFd' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an XML from a file descriptor and build a tree. This reuses the existing @ctxt parser context</info> - <return type='htmlDocPtr' info='the resulting document tree'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - <arg name='fd' type='int' info='an open file descriptor'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of htmlParserOption(s)'/> - </function> - <function name='htmlCtxtReadFile' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an XML file from the filesystem or the network. This reuses the existing @ctxt parser context</info> - <return type='htmlDocPtr' info='the resulting document tree'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - <arg name='filename' type='const char *' info='a file or URL'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of htmlParserOption(s)'/> - </function> - <function name='htmlCtxtReadIO' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an HTML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context</info> - <return type='htmlDocPtr' info='the resulting document tree'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - <arg name='ioread' type='xmlInputReadCallback' info='an I/O read function'/> - <arg name='ioclose' type='xmlInputCloseCallback' info='an I/O close function'/> - <arg name='ioctx' type='void *' info='an I/O handler'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of htmlParserOption(s)'/> - </function> - <function name='htmlCtxtReadMemory' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context</info> - <return type='htmlDocPtr' info='the resulting document tree'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - <arg name='buffer' type='const char *' info='a pointer to a char array'/> - <arg name='size' type='int' info='the size of the array'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of htmlParserOption(s)'/> - </function> - <function name='htmlCtxtReset' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Reset a parser context</info> - <return type='void'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - </function> - <function name='htmlCtxtUseOptions' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Applies the options to the parser context</info> - <return type='int' info='0 in case of success, the set of unknown or unimplemented options in case of error.'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - <arg name='options' type='int' info='a combination of htmlParserOption(s)'/> - </function> - <function name='htmlDefaultSAXHandlerInit' file='SAX2' module='SAX2'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Initialize the default SAX handler</info> - <return type='void'/> - </function> - <function name='htmlDocContentDumpFormatOutput' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML document.</info> - <return type='void'/> - <arg name='buf' type='xmlOutputBufferPtr' info='the HTML buffer output'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='encoding' type='const char *' info='the encoding string'/> - <arg name='format' type='int' info='should formatting spaces been added'/> - </function> - <function name='htmlDocContentDumpOutput' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML document. Formating return/spaces are added.</info> - <return type='void'/> - <arg name='buf' type='xmlOutputBufferPtr' info='the HTML buffer output'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='encoding' type='const char *' info='the encoding string'/> - </function> - <function name='htmlDocDump' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML document to an open FILE.</info> - <return type='int' info='the number of byte written or -1 in case of failure.'/> - <arg name='f' type='FILE *' info='the FILE*'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - </function> - <function name='htmlDocDumpMemory' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML document in memory and return the xmlChar * and it's size. It's up to the caller to free the memory.</info> - <return type='void'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='mem' type='xmlChar **' info='OUT: the memory pointer'/> - <arg name='size' type='int *' info='OUT: the memory length'/> - </function> - <function name='htmlDocDumpMemoryFormat' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML document in memory and return the xmlChar * and it's size. It's up to the caller to free the memory.</info> - <return type='void'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='mem' type='xmlChar **' info='OUT: the memory pointer'/> - <arg name='size' type='int *' info='OUT: the memory length'/> - <arg name='format' type='int' info='should formatting spaces been added'/> - </function> - <function name='htmlElementAllowedHere' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Checks whether an HTML element may be a direct child of a parent element. Note - doesn't check for deprecated elements</info> - <return type='int' info='1 if allowed; 0 otherwise.'/> - <arg name='parent' type='const htmlElemDesc *' info='HTML parent element'/> - <arg name='elt' type='const xmlChar *' info='HTML element'/> - </function> - <function name='htmlElementStatusHere' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Checks whether an HTML element may be a direct child of a parent element. and if so whether it is valid or deprecated.</info> - <return type='htmlStatus' info='one of HTML_VALID, HTML_DEPRECATED, HTML_INVALID'/> - <arg name='parent' type='const htmlElemDesc *' info='HTML parent element'/> - <arg name='elt' type='const htmlElemDesc *' info='HTML element'/> - </function> - <function name='htmlEncodeEntities' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Take a block of UTF-8 chars in and try to convert it to an ASCII plus HTML entities block of chars out.</info> - <return type='int' info='0 if success, -2 if the transcoding fails, or -1 otherwise The value of @inlen after return is the number of octets consumed as the return value is positive, else unpredictable. The value of @outlen after return is the number of octets consumed.'/> - <arg name='out' type='unsigned char *' info='a pointer to an array of bytes to store the result'/> - <arg name='outlen' type='int *' info='the length of @out'/> - <arg name='in' type='const unsigned char *' info='a pointer to an array of UTF-8 chars'/> - <arg name='inlen' type='int *' info='the length of @in'/> - <arg name='quoteChar' type='int' info='the quote character to escape (' or ") or zero.'/> - </function> - <function name='htmlEntityLookup' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Lookup the given entity in EntitiesTable TODO: the linear scan is really ugly, an hash table is really needed.</info> - <return type='const htmlEntityDesc *' info='the associated htmlEntityDescPtr if found, NULL otherwise.'/> - <arg name='name' type='const xmlChar *' info='the entity name'/> - </function> - <function name='htmlEntityValueLookup' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Lookup the given entity in EntitiesTable TODO: the linear scan is really ugly, an hash table is really needed.</info> - <return type='const htmlEntityDesc *' info='the associated htmlEntityDescPtr if found, NULL otherwise.'/> - <arg name='value' type='unsigned int' info='the entity's unicode value'/> - </function> - <function name='htmlFreeParserCtxt' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Free all the memory used by a parser context. However the parsed document in ctxt->myDoc is not freed.</info> - <return type='void'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - </function> - <function name='htmlGetMetaEncoding' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Encoding definition lookup in the Meta tags</info> - <return type='const xmlChar *' info='the current encoding as flagged in the HTML source'/> - <arg name='doc' type='htmlDocPtr' info='the document'/> - </function> - <function name='htmlHandleOmittedElem' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Set and return the previous value for handling HTML omitted tags.</info> - <return type='int' info='the last value for 0 for no handling, 1 for auto insertion.'/> - <arg name='val' type='int' info='int 0 or 1'/> - </function> - <function name='htmlInitAutoClose' file='parserInternals' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Initialize the htmlStartCloseIndex for fast lookup of closing tags names. This is not reentrant. Call xmlInitParser() once before processing in case of use in multithreaded programs.</info> - <return type='void'/> - </function> - <function name='htmlIsAutoClosed' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>The HTML DTD allows a tag to implicitly close other tags. The list is kept in htmlStartClose array. This function checks if a tag is autoclosed by one of it's child</info> - <return type='int' info='1 if autoclosed, 0 otherwise'/> - <arg name='doc' type='htmlDocPtr' info='the HTML document'/> - <arg name='elem' type='htmlNodePtr' info='the HTML element'/> - </function> - <function name='htmlIsBooleanAttr' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Determine if a given attribute is a boolean attribute.</info> - <return type='int' info='false if the attribute is not boolean, true otherwise.'/> - <arg name='name' type='const xmlChar *' info='the name of the attribute to check'/> - </function> - <function name='htmlIsScriptAttribute' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Check if an attribute is of content type Script</info> - <return type='int' info='1 is the attribute is a script 0 otherwise'/> - <arg name='name' type='const xmlChar *' info='an attribute name'/> - </function> - <function name='htmlNewDoc' file='HTMLtree' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Creates a new HTML document</info> - <return type='htmlDocPtr' info='a new document'/> - <arg name='URI' type='const xmlChar *' info='URI for the dtd, or NULL'/> - <arg name='ExternalID' type='const xmlChar *' info='the external ID of the DTD, or NULL'/> - </function> - <function name='htmlNewDocNoDtD' file='HTMLtree' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Creates a new HTML document without a DTD node if @URI and @ExternalID are NULL</info> - <return type='htmlDocPtr' info='a new document, do not initialize the DTD if not provided'/> - <arg name='URI' type='const xmlChar *' info='URI for the dtd, or NULL'/> - <arg name='ExternalID' type='const xmlChar *' info='the external ID of the DTD, or NULL'/> - </function> - <function name='htmlNewParserCtxt' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Allocate and initialize a new parser context.</info> - <return type='htmlParserCtxtPtr' info='the htmlParserCtxtPtr or NULL in case of allocation error'/> - </function> - <function name='htmlNodeDump' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML node, recursive behaviour,children are printed too, and formatting returns are added.</info> - <return type='int' info='the number of byte written or -1 in case of error'/> - <arg name='buf' type='xmlBufferPtr' info='the HTML buffer output'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='cur' type='xmlNodePtr' info='the current node'/> - </function> - <function name='htmlNodeDumpFile' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML node, recursive behaviour,children are printed too, and formatting returns are added.</info> - <return type='void'/> - <arg name='out' type='FILE *' info='the FILE pointer'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='cur' type='xmlNodePtr' info='the current node'/> - </function> - <function name='htmlNodeDumpFileFormat' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML node, recursive behaviour,children are printed too. TODO: if encoding == NULL try to save in the doc encoding</info> - <return type='int' info='the number of byte written or -1 in case of failure.'/> - <arg name='out' type='FILE *' info='the FILE pointer'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='cur' type='xmlNodePtr' info='the current node'/> - <arg name='encoding' type='const char *' info='the document encoding'/> - <arg name='format' type='int' info='should formatting spaces been added'/> - </function> - <function name='htmlNodeDumpFormatOutput' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML node, recursive behaviour,children are printed too.</info> - <return type='void'/> - <arg name='buf' type='xmlOutputBufferPtr' info='the HTML buffer output'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='cur' type='xmlNodePtr' info='the current node'/> - <arg name='encoding' type='const char *' info='the encoding string'/> - <arg name='format' type='int' info='should formatting spaces been added'/> - </function> - <function name='htmlNodeDumpOutput' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML node, recursive behaviour,children are printed too, and formatting returns/spaces are added.</info> - <return type='void'/> - <arg name='buf' type='xmlOutputBufferPtr' info='the HTML buffer output'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='cur' type='xmlNodePtr' info='the current node'/> - <arg name='encoding' type='const char *' info='the encoding string'/> - </function> - <function name='htmlNodeStatus' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Checks whether the tree node is valid. Experimental (the author only uses the HTML enhancements in a SAX parser)</info> - <return type='htmlStatus' info='for Element nodes, a return from htmlElementAllowedHere (if legacy allowed) or htmlElementStatusHere (otherwise). for Attribute nodes, a return from htmlAttrAllowed for other nodes, HTML_NA (no checks performed)'/> - <arg name='node' type='const htmlNodePtr' info='an htmlNodePtr in a tree'/> - <arg name='legacy' type='int' info='whether to allow deprecated elements (YES is faster here for Element nodes)'/> - </function> - <function name='htmlParseCharRef' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse Reference declarations [66] CharRef ::= '&#' [0-9]+ ';' | '&#x' [0-9a-fA-F]+ ';'</info> - <return type='int' info='the value parsed (as an int)'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - </function> - <function name='htmlParseChunk' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_PUSH_ENABLED)</cond> - <info>Parse a Chunk of memory</info> - <return type='int' info='zero if no error, the xmlParserErrors otherwise.'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - <arg name='chunk' type='const char *' info='an char array'/> - <arg name='size' type='int' info='the size in byte of the chunk'/> - <arg name='terminate' type='int' info='last chunk indicator'/> - </function> - <function name='htmlParseDoc' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an HTML in-memory document and build a tree.</info> - <return type='htmlDocPtr' info='the resulting document tree'/> - <arg name='cur' type='xmlChar *' info='a pointer to an array of xmlChar'/> - <arg name='encoding' type='const char *' info='a free form C string describing the HTML document encoding, or NULL'/> - </function> - <function name='htmlParseDocument' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an HTML document (and build a tree if using the standard SAX interface).</info> - <return type='int' info='0, -1 in case of error. the parser context is augmented as a result of the parsing.'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - </function> - <function name='htmlParseElement' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an HTML element, this is highly recursive [39] element ::= EmptyElemTag | STag content ETag [41] Attribute ::= Name Eq AttValue</info> - <return type='void'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - </function> - <function name='htmlParseEntityRef' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an HTML ENTITY references [68] EntityRef ::= '&' Name ';'</info> - <return type='const htmlEntityDesc *' info='the associated htmlEntityDescPtr if found, or NULL otherwise, if non-NULL *str will have to be freed by the caller.'/> - <arg name='ctxt' type='htmlParserCtxtPtr' info='an HTML parser context'/> - <arg name='str' type='const xmlChar **' info='location to store the entity name'/> - </function> - <function name='htmlParseFile' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an HTML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</info> - <return type='htmlDocPtr' info='the resulting document tree'/> - <arg name='filename' type='const char *' info='the filename'/> - <arg name='encoding' type='const char *' info='a free form C string describing the HTML document encoding, or NULL'/> - </function> - <function name='htmlReadDoc' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an XML in-memory document and build a tree.</info> - <return type='htmlDocPtr' info='the resulting document tree'/> - <arg name='cur' type='const xmlChar *' info='a pointer to a zero terminated string'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of htmlParserOption(s)'/> - </function> - <function name='htmlReadFd' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an XML from a file descriptor and build a tree.</info> - <return type='htmlDocPtr' info='the resulting document tree'/> - <arg name='fd' type='int' info='an open file descriptor'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of htmlParserOption(s)'/> - </function> - <function name='htmlReadFile' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an XML file from the filesystem or the network.</info> - <return type='htmlDocPtr' info='the resulting document tree'/> - <arg name='filename' type='const char *' info='a file or URL'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of htmlParserOption(s)'/> - </function> - <function name='htmlReadIO' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an HTML document from I/O functions and source and build a tree.</info> - <return type='htmlDocPtr' info='the resulting document tree'/> - <arg name='ioread' type='xmlInputReadCallback' info='an I/O read function'/> - <arg name='ioclose' type='xmlInputCloseCallback' info='an I/O close function'/> - <arg name='ioctx' type='void *' info='an I/O handler'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of htmlParserOption(s)'/> - </function> - <function name='htmlReadMemory' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>parse an XML in-memory document and build a tree.</info> - <return type='htmlDocPtr' info='the resulting document tree'/> - <arg name='buffer' type='const char *' info='a pointer to a char array'/> - <arg name='size' type='int' info='the size of the array'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of htmlParserOption(s)'/> - </function> - <function name='htmlSAXParseDoc' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Parse an HTML in-memory document. If sax is not NULL, use the SAX callbacks to handle parse events. If sax is NULL, fallback to the default DOM behavior and return a tree.</info> - <return type='htmlDocPtr' info='the resulting document tree unless SAX is NULL or the document is not well formed.'/> - <arg name='cur' type='xmlChar *' info='a pointer to an array of xmlChar'/> - <arg name='encoding' type='const char *' info='a free form C string describing the HTML document encoding, or NULL'/> - <arg name='sax' type='htmlSAXHandlerPtr' info='the SAX handler block'/> - <arg name='userData' type='void *' info='if using SAX, this pointer will be provided on callbacks.'/> - </function> - <function name='htmlSAXParseFile' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>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.</info> - <return type='htmlDocPtr' info='the resulting document tree unless SAX is NULL or the document is not well formed.'/> - <arg name='filename' type='const char *' info='the filename'/> - <arg name='encoding' type='const char *' info='a free form C string describing the HTML document encoding, or NULL'/> - <arg name='sax' type='htmlSAXHandlerPtr' info='the SAX handler block'/> - <arg name='userData' type='void *' info='if using SAX, this pointer will be provided on callbacks.'/> - </function> - <function name='htmlSaveFile' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML document to a file. If @filename is "-" the stdout file is used.</info> - <return type='int' info='the number of byte written or -1 in case of failure.'/> - <arg name='filename' type='const char *' info='the filename (or URL)'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - </function> - <function name='htmlSaveFileEnc' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML document to a file using a given encoding and formatting returns/spaces are added.</info> - <return type='int' info='the number of byte written or -1 in case of failure.'/> - <arg name='filename' type='const char *' info='the filename'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='encoding' type='const char *' info='the document encoding'/> - </function> - <function name='htmlSaveFileFormat' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an HTML document to a file using a given encoding.</info> - <return type='int' info='the number of byte written or -1 in case of failure.'/> - <arg name='filename' type='const char *' info='the filename'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='encoding' type='const char *' info='the document encoding'/> - <arg name='format' type='int' info='should formatting spaces been added'/> - </function> - <function name='htmlSetMetaEncoding' file='HTMLtree' module='HTMLtree'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Sets the current encoding in the Meta tags NOTE: this will not change the document content encoding, just the META flag associated.</info> - <return type='int' info='0 in case of success and -1 in case of error'/> - <arg name='doc' type='htmlDocPtr' info='the document'/> - <arg name='encoding' type='const xmlChar *' info='the encoding string'/> - </function> - <function name='htmlTagLookup' file='HTMLparser' module='HTMLparser'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Lookup the HTML tag in the ElementTable</info> - <return type='const htmlElemDesc *' info='the related htmlElemDescPtr or NULL if not found.'/> - <arg name='tag' type='const xmlChar *' info='The tag name in lowercase'/> - </function> - <function name='ignorableWhitespace' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>receiving some ignorable whitespaces from the parser. UNUSED: by default the DOM building will use characters DEPRECATED: use xmlSAX2IgnorableWhitespace()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='ch' type='const xmlChar *' info='a xmlChar string'/> - <arg name='len' type='int' info='the number of xmlChar'/> - </function> - <functype name='ignorableWhitespaceSAXFunc' file='parser' module='parser'> - <info>Receiving some ignorable whitespaces from the parser. UNUSED: by default the DOM building will use characters.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='ch' type='const xmlChar *' info='a xmlChar string'/> - <arg name='len' type='int' info='the number of xmlChar'/> - </functype> - <function name='initGenericErrorDefaultFunc' file='xmlerror' module='error'> - <info>Set or reset (if NULL) the default handler for generic errors to the builtin error function.</info> - <return type='void'/> - <arg name='handler' type='xmlGenericErrorFunc *' info='the handler'/> - </function> - <function name='initdocbDefaultSAXHandler' file='SAX' module='SAX'> - <cond>defined(LIBXML_LEGACY_ENABLED) && defined(LIBXML_SAX1_ENABLED) && defined(LIBXML_DOCB_ENABLED)</cond> - <info>Initialize the default DocBook SAX version 1 handler DEPRECATED: use xmlSAX2InitDocbDefaultSAXHandler() for the new SAX2 blocks</info> - <return type='void'/> - <arg name='hdlr' type='xmlSAXHandlerV1 *' info='the SAX handler'/> - </function> - <function name='inithtmlDefaultSAXHandler' file='SAX' module='SAX'> - <cond>defined(LIBXML_LEGACY_ENABLED) && defined(LIBXML_SAX1_ENABLED) && defined(LIBXML_HTML_ENABLED)</cond> - <info>Initialize the default HTML SAX version 1 handler DEPRECATED: use xmlSAX2InitHtmlDefaultSAXHandler() for the new SAX2 blocks</info> - <return type='void'/> - <arg name='hdlr' type='xmlSAXHandlerV1 *' info='the SAX handler'/> - </function> - <function name='initxmlDefaultSAXHandler' file='SAX' module='SAX'> - <cond>defined(LIBXML_LEGACY_ENABLED) && defined(LIBXML_SAX1_ENABLED)</cond> - <info>Initialize the default XML SAX version 1 handler DEPRECATED: use xmlSAX2InitDefaultSAXHandler() for the new SAX2 blocks</info> - <return type='void'/> - <arg name='hdlr' type='xmlSAXHandlerV1 *' info='the SAX handler'/> - <arg name='warning' type='int' info='flag if non-zero sets the handler warning procedure'/> - </function> - <function name='inputPop' file='parserInternals' module='parser'> - <info>Pops the top parser input from the input stack</info> - <return type='xmlParserInputPtr' info='the input just removed'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='inputPush' file='parserInternals' module='parser'> - <info>Pushes a new parser input on top of the input stack</info> - <return type='int' info='0 in case of error, the index in the stack otherwise'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='value' type='xmlParserInputPtr' info='the parser input'/> - </function> - <function name='internalSubset' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Callback on internal subset declaration. DEPRECATED: use xmlSAX2InternalSubset()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the root element name'/> - <arg name='ExternalID' type='const xmlChar *' info='the external ID'/> - <arg name='SystemID' type='const xmlChar *' info='the SYSTEM ID (e.g. filename or URL)'/> - </function> - <functype name='internalSubsetSAXFunc' file='parser' module='parser'> - <info>Callback on internal subset declaration.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the root element name'/> - <arg name='ExternalID' type='const xmlChar *' info='the external ID'/> - <arg name='SystemID' type='const xmlChar *' info='the SYSTEM ID (e.g. filename or URL)'/> - </functype> - <function name='isStandalone' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Is this document tagged standalone ? DEPRECATED: use xmlSAX2IsStandalone()</info> - <return type='int' info='1 if true'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <functype name='isStandaloneSAXFunc' file='parser' module='parser'> - <info>Is this document tagged standalone?</info> - <return type='int' info='1 if true'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </functype> - <function name='isolat1ToUTF8' file='encoding' module='encoding'> - <info>Take a block of ISO Latin 1 chars in and try to convert it to an UTF-8 block of chars out.</info> - <return type='int' info='the number of bytes written if success, or -1 otherwise The value of @inlen after return is the number of octets consumed if the return value is positive, else unpredictable. The value of @outlen after return is the number of octets consumed.'/> - <arg name='out' type='unsigned char *' info='a pointer to an array of bytes to store the result'/> - <arg name='outlen' type='int *' info='the length of @out'/> - <arg name='in' type='const unsigned char *' info='a pointer to an array of ISO Latin 1 chars'/> - <arg name='inlen' type='int *' info='the length of @in'/> - </function> - <function name='namePop' file='parserInternals' module='parser'> - <info>Pops the top element name from the name stack</info> - <return type='const xmlChar *' info='the name just removed'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='namePush' file='parserInternals' module='parser'> - <info>Pushes a new element name on top of the name stack</info> - <return type='int' info='-1 in case of error, the index in the stack otherwise'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='value' type='const xmlChar *' info='the element name'/> - </function> - <function name='namespaceDecl' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>A namespace has been parsed. DEPRECATED</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='href' type='const xmlChar *' info='the namespace associated URN'/> - <arg name='prefix' type='const xmlChar *' info='the namespace prefix'/> - </function> - <function name='nodePop' file='parserInternals' module='parser'> - <info>Pops the top element node from the node stack</info> - <return type='xmlNodePtr' info='the node just removed'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='nodePush' file='parserInternals' module='parser'> - <info>Pushes a new element node on top of the node stack</info> - <return type='int' info='0 in case of error, the index in the stack otherwise'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='value' type='xmlNodePtr' info='the element node'/> - </function> - <function name='notationDecl' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>What to do when a notation declaration has been parsed. DEPRECATED: use xmlSAX2NotationDecl()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The name of the notation'/> - <arg name='publicId' type='const xmlChar *' info='The public ID of the entity'/> - <arg name='systemId' type='const xmlChar *' info='The system ID of the entity'/> - </function> - <functype name='notationDeclSAXFunc' file='parser' module='parser'> - <info>What to do when a notation declaration has been parsed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The name of the notation'/> - <arg name='publicId' type='const xmlChar *' info='The public ID of the entity'/> - <arg name='systemId' type='const xmlChar *' info='The system ID of the entity'/> - </functype> - <function name='processingInstruction' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>A processing instruction has been parsed. DEPRECATED: use xmlSAX2ProcessingInstruction()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='target' type='const xmlChar *' info='the target name'/> - <arg name='data' type='const xmlChar *' info='the PI data's'/> - </function> - <functype name='processingInstructionSAXFunc' file='parser' module='parser'> - <info>A processing instruction has been parsed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='target' type='const xmlChar *' info='the target name'/> - <arg name='data' type='const xmlChar *' info='the PI data's'/> - </functype> - <function name='reference' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>called when an entity reference is detected. DEPRECATED: use xmlSAX2Reference()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The entity name'/> - </function> - <functype name='referenceSAXFunc' file='parser' module='parser'> - <info>Called when an entity reference is detected.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The entity name'/> - </functype> - <function name='resolveEntity' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>The entity loader, to control the loading of external entities, the application can either: - override this resolveEntity() callback in the SAX block - or better use the xmlSetExternalEntityLoader() function to set up it's own entity resolution routine DEPRECATED: use xmlSAX2ResolveEntity()</info> - <return type='xmlParserInputPtr' info='the xmlParserInputPtr if inlined or NULL for DOM behaviour.'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='publicId' type='const xmlChar *' info='The public ID of the entity'/> - <arg name='systemId' type='const xmlChar *' info='The system ID of the entity'/> - </function> - <functype name='resolveEntitySAXFunc' file='parser' module='parser'> - <info>Callback: The entity loader, to control the loading of external entities, the application can either: - override this resolveEntity() callback in the SAX block - or better use the xmlSetExternalEntityLoader() function to set up it's own entity resolution routine</info> - <return type='xmlParserInputPtr' info='the xmlParserInputPtr if inlined or NULL for DOM behaviour.'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='publicId' type='const xmlChar *' info='The public ID of the entity'/> - <arg name='systemId' type='const xmlChar *' info='The system ID of the entity'/> - </functype> - <function name='setDocumentLocator' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Receive the document locator at startup, actually xmlDefaultSAXLocator Everything is available on the context, so this is useless in our case. DEPRECATED</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='loc' type='xmlSAXLocatorPtr' info='A SAX Locator'/> - </function> - <functype name='setDocumentLocatorSAXFunc' file='parser' module='parser'> - <info>Receive the document locator at startup, actually xmlDefaultSAXLocator. Everything is available on the context, so this is useless in our case.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='loc' type='xmlSAXLocatorPtr' info='A SAX Locator'/> - </functype> - <function name='setNamespace' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Set the current element namespace. DEPRECATED</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the namespace prefix'/> - </function> - <function name='startDocument' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>called when the document start being processed. DEPRECATED: use xmlSAX2StartDocument()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <functype name='startDocumentSAXFunc' file='parser' module='parser'> - <info>Called when the document start being processed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </functype> - <function name='startElement' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>called when an opening tag has been processed. DEPRECATED: use xmlSAX2StartElement()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='fullname' type='const xmlChar *' info='The element name, including namespace prefix'/> - <arg name='atts' type='const xmlChar **' info='An array of name/value attributes pairs, NULL terminated'/> - </function> - <functype name='startElementNsSAX2Func' file='parser' module='parser'> - <info>SAX2 callback when an element start has been detected by the parser. It provides the namespace informations for the element, as well as the new namespace declarations on the element.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='localname' type='const xmlChar *' info='the local name of the element'/> - <arg name='prefix' type='const xmlChar *' info='the element namespace prefix if available'/> - <arg name='URI' type='const xmlChar *' info='the element namespace name if available'/> - <arg name='nb_namespaces' type='int' info='number of namespace definitions on that node'/> - <arg name='namespaces' type='const xmlChar **' info='pointer to the array of prefix/URI pairs namespace definitions'/> - <arg name='nb_attributes' type='int' info='the number of attributes on that node'/> - <arg name='nb_defaulted' type='int' info='the number of defaulted attributes. The defaulted ones are at the end of the array'/> - <arg name='attributes' type='const xmlChar **' info='pointer to the array of (localname/prefix/URI/value/end) attribute values.'/> - </functype> - <functype name='startElementSAXFunc' file='parser' module='parser'> - <info>Called when an opening tag has been processed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The element name, including namespace prefix'/> - <arg name='atts' type='const xmlChar **' info='An array of name/value attributes pairs, NULL terminated'/> - </functype> - <function name='unparsedEntityDecl' file='SAX' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>What to do when an unparsed entity declaration is parsed DEPRECATED: use xmlSAX2UnparsedEntityDecl()</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The name of the entity'/> - <arg name='publicId' type='const xmlChar *' info='The public ID of the entity'/> - <arg name='systemId' type='const xmlChar *' info='The system ID of the entity'/> - <arg name='notationName' type='const xmlChar *' info='the name of the notation'/> - </function> - <functype name='unparsedEntityDeclSAXFunc' file='parser' module='parser'> - <info>What to do when an unparsed entity declaration is parsed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The name of the entity'/> - <arg name='publicId' type='const xmlChar *' info='The public ID of the entity'/> - <arg name='systemId' type='const xmlChar *' info='The system ID of the entity'/> - <arg name='notationName' type='const xmlChar *' info='the name of the notation'/> - </functype> - <function name='valuePop' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Pops the top XPath object from the value stack</info> - <return type='xmlXPathObjectPtr' info='the XPath object just removed'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='an XPath evaluation context'/> - </function> - <function name='valuePush' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Pushes a new XPath object on top of the value stack</info> - <return type='int' info='the number of items on the value stack'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='an XPath evaluation context'/> - <arg name='value' type='xmlXPathObjectPtr' info='the XPath object'/> - </function> - <functype name='warningSAXFunc' file='parser' module='parser'> - <info>Display and format a warning messages, callback.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='an XML parser context'/> - <arg name='msg' type='const char *' info='the message to display/transmit'/> - <arg name='...' type='...' info='extra parameters for the message display'/> - </functype> - <functype name='xlinkExtendedLinkFunk' file='xlink' module='xlink'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>This is the prototype for a extended link detection callback.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='user data pointer'/> - <arg name='node' type='xmlNodePtr' info='the node carrying the link'/> - <arg name='nbLocators' type='int' info='the number of locators detected on the link'/> - <arg name='hrefs' type='const xlinkHRef *' info='pointer to the array of locator hrefs'/> - <arg name='roles' type='const xlinkRole *' info='pointer to the array of locator roles'/> - <arg name='nbArcs' type='int' info='the number of arcs detected on the link'/> - <arg name='from' type='const xlinkRole *' info='pointer to the array of source roles found on the arcs'/> - <arg name='to' type='const xlinkRole *' info='pointer to the array of target roles found on the arcs'/> - <arg name='show' type='xlinkShow *' info='array of values for the show attributes found on the arcs'/> - <arg name='actuate' type='xlinkActuate *' info='array of values for the actuate attributes found on the arcs'/> - <arg name='nbTitles' type='int' info='the number of titles detected on the link'/> - <arg name='titles' type='const xlinkTitle *' info=''/> - <arg name='langs' type='const xmlChar **' info='array of xml:lang values for the titles'/> - </functype> - <functype name='xlinkExtendedLinkSetFunk' file='xlink' module='xlink'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>This is the prototype for a extended link set detection callback.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='user data pointer'/> - <arg name='node' type='xmlNodePtr' info='the node carrying the link'/> - <arg name='nbLocators' type='int' info='the number of locators detected on the link'/> - <arg name='hrefs' type='const xlinkHRef *' info='pointer to the array of locator hrefs'/> - <arg name='roles' type='const xlinkRole *' info='pointer to the array of locator roles'/> - <arg name='nbTitles' type='int' info='the number of titles detected on the link'/> - <arg name='titles' type='const xlinkTitle *' info=''/> - <arg name='langs' type='const xmlChar **' info='array of xml:lang values for the titles'/> - </functype> - <function name='xlinkGetDefaultDetect' file='xlink' module='xlink'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Get the default xlink detection routine</info> - <return type='xlinkNodeDetectFunc' info='the current function or NULL;'/> - </function> - <function name='xlinkGetDefaultHandler' file='xlink' module='xlink'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Get the default xlink handler.</info> - <return type='xlinkHandlerPtr' info='the current xlinkHandlerPtr value.'/> - </function> - <function name='xlinkIsLink' file='xlink' module='xlink'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Check whether the given node carries the attributes needed to be a link element (or is one of the linking elements issued from the (X)HTML DtDs). This routine don't try to do full checking of the link validity but tries to detect and return the appropriate link type.</info> - <return type='xlinkType' info='the xlinkType of the node (XLINK_TYPE_NONE if there is no link detected.'/> - <arg name='doc' type='xmlDocPtr' info='the document containing the node'/> - <arg name='node' type='xmlNodePtr' info='the node pointer itself'/> - </function> - <functype name='xlinkNodeDetectFunc' file='xlink' module='xlink'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>This is the prototype for the link detection routine. It calls the default link detection callbacks upon link detection.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='user data pointer'/> - <arg name='node' type='xmlNodePtr' info='the node to check'/> - </functype> - <function name='xlinkSetDefaultDetect' file='xlink' module='xlink'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Set the default xlink detection routine</info> - <return type='void'/> - <arg name='func' type='xlinkNodeDetectFunc' info='pointer to the new detection routine.'/> - </function> - <function name='xlinkSetDefaultHandler' file='xlink' module='xlink'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Set the default xlink handlers</info> - <return type='void'/> - <arg name='handler' type='xlinkHandlerPtr' info='the new value for the xlink handler block'/> - </function> - <functype name='xlinkSimpleLinkFunk' file='xlink' module='xlink'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>This is the prototype for a simple link detection callback.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='user data pointer'/> - <arg name='node' type='xmlNodePtr' info='the node carrying the link'/> - <arg name='href' type='const xlinkHRef' info='the target of the link'/> - <arg name='role' type='const xlinkRole' info='the role string'/> - <arg name='title' type='const xlinkTitle' info='the link title'/> - </functype> - <function name='xmlACatalogAdd' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Add an entry in the catalog, it may overwrite existing but different entries.</info> - <return type='int' info='0 if successful, -1 otherwise'/> - <arg name='catal' type='xmlCatalogPtr' info='a Catalog'/> - <arg name='type' type='const xmlChar *' info='the type of record to add to the catalog'/> - <arg name='orig' type='const xmlChar *' info='the system, public or prefix to match'/> - <arg name='replace' type='const xmlChar *' info='the replacement value for the match'/> - </function> - <function name='xmlACatalogDump' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump the given catalog to the given file.</info> - <return type='void'/> - <arg name='catal' type='xmlCatalogPtr' info='a Catalog'/> - <arg name='out' type='FILE *' info='the file.'/> - </function> - <function name='xmlACatalogRemove' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Remove an entry from the catalog</info> - <return type='int' info='the number of entries removed if successful, -1 otherwise'/> - <arg name='catal' type='xmlCatalogPtr' info='a Catalog'/> - <arg name='value' type='const xmlChar *' info='the value to remove'/> - </function> - <function name='xmlACatalogResolve' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Do a complete resolution lookup of an External Identifier</info> - <return type='xmlChar *' info='the URI of the resource or NULL if not found, it must be freed by the caller.'/> - <arg name='catal' type='xmlCatalogPtr' info='a Catalog'/> - <arg name='pubID' type='const xmlChar *' info='the public ID string'/> - <arg name='sysID' type='const xmlChar *' info='the system ID string'/> - </function> - <function name='xmlACatalogResolvePublic' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Try to lookup the catalog local reference associated to a public ID in that catalog</info> - <return type='xmlChar *' info='the local resource if found or NULL otherwise, the value returned must be freed by the caller.'/> - <arg name='catal' type='xmlCatalogPtr' info='a Catalog'/> - <arg name='pubID' type='const xmlChar *' info='the public ID string'/> - </function> - <function name='xmlACatalogResolveSystem' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Try to lookup the catalog resource for a system ID</info> - <return type='xmlChar *' info='the resource if found or NULL otherwise, the value returned must be freed by the caller.'/> - <arg name='catal' type='xmlCatalogPtr' info='a Catalog'/> - <arg name='sysID' type='const xmlChar *' info='the system ID string'/> - </function> - <function name='xmlACatalogResolveURI' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Do a complete resolution lookup of an URI</info> - <return type='xmlChar *' info='the URI of the resource or NULL if not found, it must be freed by the caller.'/> - <arg name='catal' type='xmlCatalogPtr' info='a Catalog'/> - <arg name='URI' type='const xmlChar *' info='the URI'/> - </function> - <function name='xmlAddAttributeDecl' file='valid' module='valid'> - <info>Register a new attribute declaration Note that @tree becomes the ownership of the DTD</info> - <return type='xmlAttributePtr' info='NULL if not new, otherwise the attribute decl'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='dtd' type='xmlDtdPtr' info='pointer to the DTD'/> - <arg name='elem' type='const xmlChar *' info='the element name'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - <arg name='ns' type='const xmlChar *' info='the attribute namespace prefix'/> - <arg name='type' type='xmlAttributeType' info='the attribute type'/> - <arg name='def' type='xmlAttributeDefault' info='the attribute default type'/> - <arg name='defaultValue' type='const xmlChar *' info='the attribute default value'/> - <arg name='tree' type='xmlEnumerationPtr' info='if it's an enumeration, the associated list'/> - </function> - <function name='xmlAddChild' file='tree' module='tree'> - <info>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.</info> - <return type='xmlNodePtr' info='the child or NULL in case of error.'/> - <arg name='parent' type='xmlNodePtr' info='the parent node'/> - <arg name='cur' type='xmlNodePtr' info='the child node'/> - </function> - <function name='xmlAddChildList' file='tree' module='tree'> - <info>Add a list of node at the end of the child list of the parent merging adjacent TEXT nodes (@cur may be freed)</info> - <return type='xmlNodePtr' info='the last child or NULL in case of error.'/> - <arg name='parent' type='xmlNodePtr' info='the parent node'/> - <arg name='cur' type='xmlNodePtr' info='the first node in the list'/> - </function> - <function name='xmlAddDocEntity' file='entities' module='entities'> - <info>Register a new entity for this document.</info> - <return type='xmlEntityPtr' info='a pointer to the entity or NULL in case of error'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='name' type='const xmlChar *' info='the entity name'/> - <arg name='type' type='int' info='the entity type XML_xxx_yyy_ENTITY'/> - <arg name='ExternalID' type='const xmlChar *' info='the entity external ID if available'/> - <arg name='SystemID' type='const xmlChar *' info='the entity system ID if available'/> - <arg name='content' type='const xmlChar *' info='the entity content'/> - </function> - <function name='xmlAddDtdEntity' file='entities' module='entities'> - <info>Register a new entity for this document DTD external subset.</info> - <return type='xmlEntityPtr' info='a pointer to the entity or NULL in case of error'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='name' type='const xmlChar *' info='the entity name'/> - <arg name='type' type='int' info='the entity type XML_xxx_yyy_ENTITY'/> - <arg name='ExternalID' type='const xmlChar *' info='the entity external ID if available'/> - <arg name='SystemID' type='const xmlChar *' info='the entity system ID if available'/> - <arg name='content' type='const xmlChar *' info='the entity content'/> - </function> - <function name='xmlAddElementDecl' file='valid' module='valid'> - <info>Register a new element declaration</info> - <return type='xmlElementPtr' info='NULL if not, otherwise the entity'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='dtd' type='xmlDtdPtr' info='pointer to the DTD'/> - <arg name='name' type='const xmlChar *' info='the entity name'/> - <arg name='type' type='xmlElementTypeVal' info='the element type'/> - <arg name='content' type='xmlElementContentPtr' info='the element content tree or NULL'/> - </function> - <function name='xmlAddEncodingAlias' file='encoding' module='encoding'> - <info>Registers an alias @alias for an encoding named @name. Existing alias will be overwritten.</info> - <return type='int' info='0 in case of success, -1 in case of error'/> - <arg name='name' type='const char *' info='the encoding name as parsed, in UTF-8 format (ASCII actually)'/> - <arg name='alias' type='const char *' info='the alias name as parsed, in UTF-8 format (ASCII actually)'/> - </function> - <function name='xmlAddID' file='valid' module='valid'> - <info>Register a new id declaration</info> - <return type='xmlIDPtr' info='NULL if not, otherwise the new xmlIDPtr'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='pointer to the document'/> - <arg name='value' type='const xmlChar *' info='the value name'/> - <arg name='attr' type='xmlAttrPtr' info='the attribute holding the ID'/> - </function> - <function name='xmlAddNextSibling' file='tree' module='tree'> - <info>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.</info> - <return type='xmlNodePtr' info='the new node or NULL in case of error.'/> - <arg name='cur' type='xmlNodePtr' info='the child node'/> - <arg name='elem' type='xmlNodePtr' info='the new node'/> - </function> - <function name='xmlAddNotationDecl' file='valid' module='valid'> - <info>Register a new notation declaration</info> - <return type='xmlNotationPtr' info='NULL if not, otherwise the entity'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='dtd' type='xmlDtdPtr' info='pointer to the DTD'/> - <arg name='name' type='const xmlChar *' info='the entity name'/> - <arg name='PublicID' type='const xmlChar *' info='the public identifier or NULL'/> - <arg name='SystemID' type='const xmlChar *' info='the system identifier or NULL'/> - </function> - <function name='xmlAddPrevSibling' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>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.</info> - <return type='xmlNodePtr' info='the new node or NULL in case of error.'/> - <arg name='cur' type='xmlNodePtr' info='the child node'/> - <arg name='elem' type='xmlNodePtr' info='the new node'/> - </function> - <function name='xmlAddRef' file='valid' module='valid'> - <info>Register a new ref declaration</info> - <return type='xmlRefPtr' info='NULL if not, otherwise the new xmlRefPtr'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='pointer to the document'/> - <arg name='value' type='const xmlChar *' info='the value name'/> - <arg name='attr' type='xmlAttrPtr' info='the attribute holding the Ref'/> - </function> - <function name='xmlAddSibling' file='tree' module='tree'> - <info>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.</info> - <return type='xmlNodePtr' info='the new element or NULL in case of error.'/> - <arg name='cur' type='xmlNodePtr' info='the child node'/> - <arg name='elem' type='xmlNodePtr' info='the new node'/> - </function> - <function name='xmlAllocOutputBuffer' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Create a buffered parser output</info> - <return type='xmlOutputBufferPtr' info='the new parser output or NULL'/> - <arg name='encoder' type='xmlCharEncodingHandlerPtr' info='the encoding converter or NULL'/> - </function> - <function name='xmlAllocParserInputBuffer' file='xmlIO' module='xmlIO'> - <info>Create a buffered parser input for progressive parsing</info> - <return type='xmlParserInputBufferPtr' info='the new parser input or NULL'/> - <arg name='enc' type='xmlCharEncoding' info='the charset encoding if known'/> - </function> - <function name='xmlAttrSerializeTxtContent' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Serialize text attribute values to an xml simple buffer</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the XML buffer output'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='attr' type='xmlAttrPtr' info='the attribute node'/> - <arg name='string' type='const xmlChar *' info='the text content'/> - </function> - <function name='xmlAutomataCompile' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>Compile the automata into a Reg Exp ready for being executed. The automata should be free after this point.</info> - <return type='xmlRegexpPtr' info='the compiled regexp or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - </function> - <function name='xmlAutomataGetInitState' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>Initial state lookup</info> - <return type='xmlAutomataStatePtr' info='the initial state of the automata'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - </function> - <function name='xmlAutomataIsDeterminist' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>Checks if an automata is determinist.</info> - <return type='int' info='1 if true, 0 if not, and -1 in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - </function> - <function name='xmlAutomataNewAllTrans' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>If @to is NULL, this creates first a new target state in the automata and then adds a an ALL transition from the @from state to the target state. That transition is an epsilon transition allowed only when all transitions from the @from node have been activated.</info> - <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> - <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> - <arg name='lax' type='int' info='allow to transition if not all all transitions have been activated'/> - </function> - <function name='xmlAutomataNewCountTrans' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and whose number is between @min and @max</info> - <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> - <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> - <arg name='token' type='const xmlChar *' info='the input string associated to that transition'/> - <arg name='min' type='int' info='the minimum successive occurences of token'/> - <arg name='max' type='int' info='the maximum successive occurences of token'/> - <arg name='data' type='void *' info='data associated to the transition'/> - </function> - <function name='xmlAutomataNewCountTrans2' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and @token2 and whose number is between @min and @max</info> - <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> - <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> - <arg name='token' type='const xmlChar *' info='the input string associated to that transition'/> - <arg name='token2' type='const xmlChar *' info='the second input string associated to that transition'/> - <arg name='min' type='int' info='the minimum successive occurences of token'/> - <arg name='max' type='int' info='the maximum successive occurences of token'/> - <arg name='data' type='void *' info='data associated to the transition'/> - </function> - <function name='xmlAutomataNewCountedTrans' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state which will increment the counter provided</info> - <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> - <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> - <arg name='counter' type='int' info='the counter associated to that transition'/> - </function> - <function name='xmlAutomataNewCounter' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>Create a new counter</info> - <return type='int' info='the counter number or -1 in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='min' type='int' info='the minimal value on the counter'/> - <arg name='max' type='int' info='the maximal value on the counter'/> - </function> - <function name='xmlAutomataNewCounterTrans' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state which will be allowed only if the counter is within the right range.</info> - <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> - <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> - <arg name='counter' type='int' info='the counter associated to that transition'/> - </function> - <function name='xmlAutomataNewEpsilon' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state</info> - <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> - <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> - </function> - <function name='xmlAutomataNewNegTrans' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by any value except (@token,@token2) Note that if @token2 is not NULL, then (X, NULL) won't match to follow # the semantic of XSD ##other</info> - <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> - <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> - <arg name='token' type='const xmlChar *' info='the first input string associated to that transition'/> - <arg name='token2' type='const xmlChar *' info='the second input string associated to that transition'/> - <arg name='data' type='void *' info='data passed to the callback function if the transition is activated'/> - </function> - <function name='xmlAutomataNewOnceTrans' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and whose number is between @min and @max, moreover that transition can only be crossed once.</info> - <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> - <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> - <arg name='token' type='const xmlChar *' info='the input string associated to that transition'/> - <arg name='min' type='int' info='the minimum successive occurences of token'/> - <arg name='max' type='int' info='the maximum successive occurences of token'/> - <arg name='data' type='void *' info='data associated to the transition'/> - </function> - <function name='xmlAutomataNewOnceTrans2' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and @token2 and whose number is between @min and @max, moreover that transition can only be crossed once.</info> - <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> - <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> - <arg name='token' type='const xmlChar *' info='the input string associated to that transition'/> - <arg name='token2' type='const xmlChar *' info='the second input string associated to that transition'/> - <arg name='min' type='int' info='the minimum successive occurences of token'/> - <arg name='max' type='int' info='the maximum successive occurences of token'/> - <arg name='data' type='void *' info='data associated to the transition'/> - </function> - <function name='xmlAutomataNewState' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>Create a new disconnected state in the automata</info> - <return type='xmlAutomataStatePtr' info='the new state or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - </function> - <function name='xmlAutomataNewTransition' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by the value of @token</info> - <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> - <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> - <arg name='token' type='const xmlChar *' info='the input string associated to that transition'/> - <arg name='data' type='void *' info='data passed to the callback function if the transition is activated'/> - </function> - <function name='xmlAutomataNewTransition2' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by the value of @token</info> - <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> - <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> - <arg name='token' type='const xmlChar *' info='the first input string associated to that transition'/> - <arg name='token2' type='const xmlChar *' info='the second input string associated to that transition'/> - <arg name='data' type='void *' info='data passed to the callback function if the transition is activated'/> - </function> - <function name='xmlAutomataSetFinalState' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>Makes that state a final state</info> - <return type='int' info='0 or -1 in case of error'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - <arg name='state' type='xmlAutomataStatePtr' info='a state in this automata'/> - </function> - <function name='xmlBoolToText' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Convenient way to turn bool into text</info> - <return type='const char *' info='a pointer to either "True" or "False"'/> - <arg name='boolval' type='int' info='a bool to turn into text'/> - </function> - <function name='xmlBufferAdd' file='tree' module='tree'> - <info>Add a string range to an XML buffer. if len == -1, the length of str is recomputed.</info> - <return type='int' info='0 successful, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='buf' type='xmlBufferPtr' info='the buffer to dump'/> - <arg name='str' type='const xmlChar *' info='the #xmlChar string'/> - <arg name='len' type='int' info='the number of #xmlChar to add'/> - </function> - <function name='xmlBufferAddHead' file='tree' module='tree'> - <info>Add a string range to the beginning of an XML buffer. if len == -1, the length of @str is recomputed.</info> - <return type='int' info='0 successful, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='buf' type='xmlBufferPtr' info='the buffer'/> - <arg name='str' type='const xmlChar *' info='the #xmlChar string'/> - <arg name='len' type='int' info='the number of #xmlChar to add'/> - </function> - <function name='xmlBufferCCat' file='tree' module='tree'> - <info>Append a zero terminated C string to an XML buffer.</info> - <return type='int' info='0 successful, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='buf' type='xmlBufferPtr' info='the buffer to dump'/> - <arg name='str' type='const char *' info='the C char string'/> - </function> - <function name='xmlBufferCat' file='tree' module='tree'> - <info>Append a zero terminated string to an XML buffer.</info> - <return type='int' info='0 successful, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='buf' type='xmlBufferPtr' info='the buffer to add to'/> - <arg name='str' type='const xmlChar *' info='the #xmlChar string'/> - </function> - <function name='xmlBufferContent' file='tree' module='tree'> - <info>Function to extract the content of a buffer</info> - <return type='const xmlChar *' info='the internal content'/> - <arg name='buf' type='const xmlBufferPtr' info='the buffer'/> - </function> - <function name='xmlBufferCreate' file='tree' module='tree'> - <info>routine to create an XML buffer.</info> - <return type='xmlBufferPtr' info='the new structure.'/> - </function> - <function name='xmlBufferCreateSize' file='tree' module='tree'> - <info>routine to create an XML buffer.</info> - <return type='xmlBufferPtr' info='the new structure.'/> - <arg name='size' type='size_t' info='initial size of buffer'/> - </function> - <function name='xmlBufferCreateStatic' file='tree' module='tree'> - <info>routine to create an XML buffer from an immutable memory area. The area won't be modified nor copied, and is expected to be present until the end of the buffer lifetime.</info> - <return type='xmlBufferPtr' info='the new structure.'/> - <arg name='mem' type='void *' info='the memory area'/> - <arg name='size' type='size_t' info='the size in byte'/> - </function> - <function name='xmlBufferDump' file='tree' module='tree'> - <info>Dumps an XML buffer to a FILE *.</info> - <return type='int' info='the number of #xmlChar written'/> - <arg name='file' type='FILE *' info='the file output'/> - <arg name='buf' type='xmlBufferPtr' info='the buffer to dump'/> - </function> - <function name='xmlBufferEmpty' file='tree' module='tree'> - <info>empty a buffer.</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the buffer'/> - </function> - <function name='xmlBufferFree' file='tree' module='tree'> - <info>Frees an XML buffer. It frees both the content and the structure which encapsulate it.</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the buffer to free'/> - </function> - <function name='xmlBufferGrow' file='tree' module='tree'> - <info>Grow the available space of an XML buffer.</info> - <return type='int' info='the new available space or -1 in case of error'/> - <arg name='buf' type='xmlBufferPtr' info='the buffer'/> - <arg name='len' type='unsigned int' info='the minimum free size to allocate'/> - </function> - <function name='xmlBufferLength' file='tree' module='tree'> - <info>Function to get the length of a buffer</info> - <return type='int' info='the length of data in the internal content'/> - <arg name='buf' type='const xmlBufferPtr' info='the buffer'/> - </function> - <function name='xmlBufferResize' file='tree' module='tree'> - <info>Resize a buffer to accommodate minimum size of @size.</info> - <return type='int' info='0 in case of problems, 1 otherwise'/> - <arg name='buf' type='xmlBufferPtr' info='the buffer to resize'/> - <arg name='size' type='unsigned int' info='the desired size'/> - </function> - <function name='xmlBufferSetAllocationScheme' file='tree' module='tree'> - <info>Sets the allocation scheme for this buffer</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the buffer to tune'/> - <arg name='scheme' type='xmlBufferAllocationScheme' info='allocation scheme to use'/> - </function> - <function name='xmlBufferShrink' file='tree' module='tree'> - <info>Remove the beginning of an XML buffer.</info> - <return type='int' info='the number of #xmlChar removed, or -1 in case of failure.'/> - <arg name='buf' type='xmlBufferPtr' info='the buffer to dump'/> - <arg name='len' type='unsigned int' info='the number of xmlChar to remove'/> - </function> - <function name='xmlBufferWriteCHAR' file='tree' module='tree'> - <info>routine which manages and grows an output buffer. This one adds xmlChars at the end of the buffer.</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the XML buffer'/> - <arg name='string' type='const xmlChar *' info='the string to add'/> - </function> - <function name='xmlBufferWriteChar' file='tree' module='tree'> - <info>routine which manage and grows an output buffer. This one add C chars at the end of the array.</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the XML buffer output'/> - <arg name='string' type='const char *' info='the string to add'/> - </function> - <function name='xmlBufferWriteQuotedString' file='tree' module='tree'> - <info>routine which manage and grows an output buffer. This one writes a quoted or double quoted #xmlChar string, checking first if it holds quote or double-quotes internally</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the XML buffer output'/> - <arg name='string' type='const xmlChar *' info='the string to add'/> - </function> - <function name='xmlBuildQName' file='tree' module='tree'> - <info>Builds the QName @prefix:@ncname in @memory if there is enough space and prefix is not NULL nor empty, otherwise allocate a new string. If prefix is NULL or empty it returns ncname.</info> - <return type='xmlChar *' info='the new string which must be freed by the caller if different from @memory and @ncname or NULL in case of error'/> - <arg name='ncname' type='const xmlChar *' info='the Name'/> - <arg name='prefix' type='const xmlChar *' info='the prefix'/> - <arg name='memory' type='xmlChar *' info='preallocated memory'/> - <arg name='len' type='int' info='preallocated memory length'/> - </function> - <function name='xmlBuildRelativeURI' file='uri' module='uri'> - <info>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 wierd 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.</info> - <return type='xmlChar *' info='a new URI string (to be freed by the caller) or NULL in case error.'/> - <arg name='URI' type='const xmlChar *' info='the URI reference under consideration'/> - <arg name='base' type='const xmlChar *' info='the base value'/> - </function> - <function name='xmlBuildURI' file='uri' module='uri'> - <info>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</info> - <return type='xmlChar *' info='a new URI string (to be freed by the caller) or NULL in case of error.'/> - <arg name='URI' type='const xmlChar *' info='the URI instance found in the document'/> - <arg name='base' type='const xmlChar *' info='the base value'/> - </function> - <function name='xmlByteConsumed' file='parser' module='encoding'> - <info>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.</info> - <return type='long' info='the index in bytes from the beginning of the entity or -1 in case the index could not be computed.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlC14NDocDumpMemory' file='c14n' module='c14n'> - <cond>defined(LIBXML_C14N_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dumps the canonized image of given XML document into memory. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)</info> - <return type='int' info='the number of bytes written on success or a negative value on fail'/> - <arg name='doc' type='xmlDocPtr' info='the XML document for canonization'/> - <arg name='nodes' type='xmlNodeSetPtr' info='the nodes set to be included in the canonized image or NULL if all document nodes should be included'/> - <arg name='exclusive' type='int' info='the exclusive flag (0 - non-exclusive canonicalization; otherwise - exclusive canonicalization)'/> - <arg name='inclusive_ns_prefixes' type='xmlChar **' info='the list of inclusive namespace prefixes ended with a NULL or NULL if there is no inclusive namespaces (only for exclusive canonicalization, ignored otherwise)'/> - <arg name='with_comments' type='int' info='include comments in the result (!=0) or not (==0)'/> - <arg name='doc_txt_ptr' type='xmlChar **' info='the memory pointer for allocated canonical XML text; the caller of this functions is responsible for calling xmlFree() to free allocated memory'/> - </function> - <function name='xmlC14NDocSave' file='c14n' module='c14n'> - <cond>defined(LIBXML_C14N_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dumps the canonized image of given XML document into the file. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)</info> - <return type='int' info='the number of bytes written success or a negative value on fail'/> - <arg name='doc' type='xmlDocPtr' info='the XML document for canonization'/> - <arg name='nodes' type='xmlNodeSetPtr' info='the nodes set to be included in the canonized image or NULL if all document nodes should be included'/> - <arg name='exclusive' type='int' info='the exclusive flag (0 - non-exclusive canonicalization; otherwise - exclusive canonicalization)'/> - <arg name='inclusive_ns_prefixes' type='xmlChar **' info='the list of inclusive namespace prefixes ended with a NULL or NULL if there is no inclusive namespaces (only for exclusive canonicalization, ignored otherwise)'/> - <arg name='with_comments' type='int' info='include comments in the result (!=0) or not (==0)'/> - <arg name='filename' type='const char *' info='the filename to store canonical XML image'/> - <arg name='compression' type='int' info='the compression level (zlib requred): -1 - libxml default, 0 - uncompressed, >0 - compression level'/> - </function> - <function name='xmlC14NDocSaveTo' file='c14n' module='c14n'> - <cond>defined(LIBXML_C14N_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dumps the canonized image of given XML document into the provided buffer. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)</info> - <return type='int' info='non-negative value on success or a negative value on fail'/> - <arg name='doc' type='xmlDocPtr' info='the XML document for canonization'/> - <arg name='nodes' type='xmlNodeSetPtr' info='the nodes set to be included in the canonized image or NULL if all document nodes should be included'/> - <arg name='exclusive' type='int' info='the exclusive flag (0 - non-exclusive canonicalization; otherwise - exclusive canonicalization)'/> - <arg name='inclusive_ns_prefixes' type='xmlChar **' info='the list of inclusive namespace prefixes ended with a NULL or NULL if there is no inclusive namespaces (only for exclusive canonicalization, ignored otherwise)'/> - <arg name='with_comments' type='int' info='include comments in the result (!=0) or not (==0)'/> - <arg name='buf' type='xmlOutputBufferPtr' info='the output buffer to store canonical XML; this buffer MUST have encoder==NULL because C14N requires UTF-8 output'/> - </function> - <function name='xmlC14NExecute' file='c14n' module='c14n'> - <cond>defined(LIBXML_C14N_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dumps the canonized image of given XML document into the provided buffer. For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)</info> - <return type='int' info='non-negative value on success or a negative value on fail'/> - <arg name='doc' type='xmlDocPtr' info='the XML document for canonization'/> - <arg name='is_visible_callback' type='xmlC14NIsVisibleCallback' info='the function to use to determine is node visible or not'/> - <arg name='user_data' type='void *' info='the first parameter for @is_visible_callback function (in most cases, it is nodes set)'/> - <arg name='exclusive' type='int' info='the exclusive flag (0 - non-exclusive canonicalization; otherwise - exclusive canonicalization)'/> - <arg name='inclusive_ns_prefixes' type='xmlChar **' info='the list of inclusive namespace prefixes ended with a NULL or NULL if there is no inclusive namespaces (only for exclusive canonicalization, ignored otherwise)'/> - <arg name='with_comments' type='int' info='include comments in the result (!=0) or not (==0)'/> - <arg name='buf' type='xmlOutputBufferPtr' info='the output buffer to store canonical XML; this buffer MUST have encoder==NULL because C14N requires UTF-8 output'/> - </function> - <functype name='xmlC14NIsVisibleCallback' file='c14n' module='c14n'> - <cond>defined(LIBXML_C14N_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info></info> - <return type='int' info=''/> - <arg name='user_data' type='void *' info=''/> - <arg name='node' type='xmlNodePtr' info=''/> - <arg name='parent' type='xmlNodePtr' info=''/> - </functype> - <function name='xmlCanonicPath' file='uri' module='uri'> - <info>Constructs a canonic path from the specified path.</info> - <return type='xmlChar *' info='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.'/> - <arg name='path' type='const xmlChar *' info='the resource locator in a filesystem notation'/> - </function> - <function name='xmlCatalogAdd' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Add an entry in the catalog, it may overwrite existing but different entries. If called before any other catalog routine, allows to override the default shared catalog put in place by xmlInitializeCatalog();</info> - <return type='int' info='0 if successful, -1 otherwise'/> - <arg name='type' type='const xmlChar *' info='the type of record to add to the catalog'/> - <arg name='orig' type='const xmlChar *' info='the system, public or prefix to match'/> - <arg name='replace' type='const xmlChar *' info='the replacement value for the match'/> - </function> - <function name='xmlCatalogAddLocal' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Add the new entry to the catalog list</info> - <return type='void *' info='the updated list'/> - <arg name='catalogs' type='void *' info='a document's list of catalogs'/> - <arg name='URL' type='const xmlChar *' info='the URL to a new local catalog'/> - </function> - <function name='xmlCatalogCleanup' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Free up all the memory associated with catalogs</info> - <return type='void'/> - </function> - <function name='xmlCatalogConvert' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Convert all the SGML catalog entries as XML ones</info> - <return type='int' info='the number of entries converted if successful, -1 otherwise'/> - </function> - <function name='xmlCatalogDump' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump all the global catalog content to the given file.</info> - <return type='void'/> - <arg name='out' type='FILE *' info='the file.'/> - </function> - <function name='xmlCatalogFreeLocal' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Free up the memory associated to the catalog list</info> - <return type='void'/> - <arg name='catalogs' type='void *' info='a document's list of catalogs'/> - </function> - <function name='xmlCatalogGetDefaults' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Used to get the user preference w.r.t. to what catalogs should be accepted</info> - <return type='xmlCatalogAllow' info='the current xmlCatalogAllow value'/> - </function> - <function name='xmlCatalogGetPublic' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Try to lookup the catalog reference associated to a public ID DEPRECATED, use xmlCatalogResolvePublic()</info> - <return type='const xmlChar *' info='the resource if found or NULL otherwise.'/> - <arg name='pubID' type='const xmlChar *' info='the public ID string'/> - </function> - <function name='xmlCatalogGetSystem' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Try to lookup the catalog reference associated to a system ID DEPRECATED, use xmlCatalogResolveSystem()</info> - <return type='const xmlChar *' info='the resource if found or NULL otherwise.'/> - <arg name='sysID' type='const xmlChar *' info='the system ID string'/> - </function> - <function name='xmlCatalogIsEmpty' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Check is a catalog is empty</info> - <return type='int' info='1 if the catalog is empty, 0 if not, amd -1 in case of error.'/> - <arg name='catal' type='xmlCatalogPtr' info='should this create an SGML catalog'/> - </function> - <function name='xmlCatalogLocalResolve' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Do a complete resolution lookup of an External Identifier using a document's private catalog list</info> - <return type='xmlChar *' info='the URI of the resource or NULL if not found, it must be freed by the caller.'/> - <arg name='catalogs' type='void *' info='a document's list of catalogs'/> - <arg name='pubID' type='const xmlChar *' info='the public ID string'/> - <arg name='sysID' type='const xmlChar *' info='the system ID string'/> - </function> - <function name='xmlCatalogLocalResolveURI' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Do a complete resolution lookup of an URI using a document's private catalog list</info> - <return type='xmlChar *' info='the URI of the resource or NULL if not found, it must be freed by the caller.'/> - <arg name='catalogs' type='void *' info='a document's list of catalogs'/> - <arg name='URI' type='const xmlChar *' info='the URI'/> - </function> - <function name='xmlCatalogRemove' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Remove an entry from the catalog</info> - <return type='int' info='the number of entries removed if successful, -1 otherwise'/> - <arg name='value' type='const xmlChar *' info='the value to remove'/> - </function> - <function name='xmlCatalogResolve' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Do a complete resolution lookup of an External Identifier</info> - <return type='xmlChar *' info='the URI of the resource or NULL if not found, it must be freed by the caller.'/> - <arg name='pubID' type='const xmlChar *' info='the public ID string'/> - <arg name='sysID' type='const xmlChar *' info='the system ID string'/> - </function> - <function name='xmlCatalogResolvePublic' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Try to lookup the catalog reference associated to a public ID</info> - <return type='xmlChar *' info='the resource if found or NULL otherwise, the value returned must be freed by the caller.'/> - <arg name='pubID' type='const xmlChar *' info='the public ID string'/> - </function> - <function name='xmlCatalogResolveSystem' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Try to lookup the catalog resource for a system ID</info> - <return type='xmlChar *' info='the resource if found or NULL otherwise, the value returned must be freed by the caller.'/> - <arg name='sysID' type='const xmlChar *' info='the system ID string'/> - </function> - <function name='xmlCatalogResolveURI' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Do a complete resolution lookup of an URI</info> - <return type='xmlChar *' info='the URI of the resource or NULL if not found, it must be freed by the caller.'/> - <arg name='URI' type='const xmlChar *' info='the URI'/> - </function> - <function name='xmlCatalogSetDebug' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Used to set the debug level for catalog operation, 0 disable debugging, 1 enable it</info> - <return type='int' info='the previous value of the catalog debugging level'/> - <arg name='level' type='int' info='the debug level of catalogs required'/> - </function> - <function name='xmlCatalogSetDefaultPrefer' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Allows to set the preference between public and system for deletion in XML Catalog resolution. C.f. section 4.1.1 of the spec Values accepted are XML_CATA_PREFER_PUBLIC or XML_CATA_PREFER_SYSTEM</info> - <return type='xmlCatalogPrefer' info='the previous value of the default preference for delegation'/> - <arg name='prefer' type='xmlCatalogPrefer' info='the default preference for delegation'/> - </function> - <function name='xmlCatalogSetDefaults' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Used to set the user preference w.r.t. to what catalogs should be accepted</info> - <return type='void'/> - <arg name='allow' type='xmlCatalogAllow' info='what catalogs should be accepted'/> - </function> - <function name='xmlCharEncCloseFunc' file='encoding' module='encoding'> - <info>Generic front-end for encoding handler close function</info> - <return type='int' info='0 if success, or -1 in case of error'/> - <arg name='handler' type='xmlCharEncodingHandler *' info='char enconding transformation data structure'/> - </function> - <function name='xmlCharEncFirstLine' file='encoding' module='encoding'> - <info>Front-end for the encoding handler input function, but handle only the very first line, i.e. limit itself to 45 chars.</info> - <return type='int' info='the number of byte written if success, or -1 general error -2 if the transcoding fails (for *in is not valid utf8 string or the result of transformation can't fit into the encoding we want), or'/> - <arg name='handler' type='xmlCharEncodingHandler *' info='char enconding transformation data structure'/> - <arg name='out' type='xmlBufferPtr' info='an xmlBuffer for the output.'/> - <arg name='in' type='xmlBufferPtr' info='an xmlBuffer for the input'/> - </function> - <function name='xmlCharEncInFunc' file='encoding' module='encoding'> - <info>Generic front-end for the encoding handler input function</info> - <return type='int' info='the number of byte written if success, or -1 general error -2 if the transcoding fails (for *in is not valid utf8 string or the result of transformation can't fit into the encoding we want), or'/> - <arg name='handler' type='xmlCharEncodingHandler *' info='char encoding transformation data structure'/> - <arg name='out' type='xmlBufferPtr' info='an xmlBuffer for the output.'/> - <arg name='in' type='xmlBufferPtr' info='an xmlBuffer for the input'/> - </function> - <function name='xmlCharEncOutFunc' file='encoding' module='encoding'> - <info>Generic front-end for the encoding handler output function a first call with @in == NULL has to be made firs to initiate the output in case of non-stateless encoding needing to initiate their state or the output (like the BOM in UTF16). In case of UTF8 sequence conversion errors for the given encoder, the content will be automatically remapped to a CharRef sequence.</info> - <return type='int' info='the number of byte written if success, or -1 general error -2 if the transcoding fails (for *in is not valid utf8 string or the result of transformation can't fit into the encoding we want), or'/> - <arg name='handler' type='xmlCharEncodingHandler *' info='char enconding transformation data structure'/> - <arg name='out' type='xmlBufferPtr' info='an xmlBuffer for the output.'/> - <arg name='in' type='xmlBufferPtr' info='an xmlBuffer for the input'/> - </function> - <functype name='xmlCharEncodingInputFunc' file='encoding' module='encoding'> - <info>Take a block of chars in the original encoding and try to convert it to an UTF-8 block of chars out.</info> - <return type='int' info='the number of bytes written, -1 if lack of space, or -2 if the transcoding failed. The value of @inlen after return is the number of octets consumed if the return value is positive, else unpredictiable. The value of @outlen after return is the number of octets consumed.'/> - <arg name='out' type='unsigned char *' info='a pointer to an array of bytes to store the UTF-8 result'/> - <arg name='outlen' type='int *' info='the length of @out'/> - <arg name='in' type='const unsigned char *' info='a pointer to an array of chars in the original encoding'/> - <arg name='inlen' type='int *' info='the length of @in'/> - </functype> - <functype name='xmlCharEncodingOutputFunc' file='encoding' module='encoding'> - <info>Take a block of UTF-8 chars in and try to convert it to another encoding. Note: a first call designed to produce heading info is called with in = NULL. If stateful this should also initialize the encoder state.</info> - <return type='int' info='the number of bytes written, -1 if lack of space, or -2 if the transcoding failed. The value of @inlen after return is the number of octets consumed if the return value is positive, else unpredictiable. The value of @outlen after return is the number of octets produced.'/> - <arg name='out' type='unsigned char *' info='a pointer to an array of bytes to store the result'/> - <arg name='outlen' type='int *' info='the length of @out'/> - <arg name='in' type='const unsigned char *' info='a pointer to an array of UTF-8 chars'/> - <arg name='inlen' type='int *' info='the length of @in'/> - </functype> - <function name='xmlCharInRange' file='chvalid' module='chvalid'> - <info>Does a binary search of the range table to determine if char is valid</info> - <return type='int' info='true if character valid, false otherwise'/> - <arg name='val' type='unsigned int' info='character to be validated'/> - <arg name='rptr' type='const xmlChRangeGroup *' info='pointer to range to be used to validate'/> - </function> - <function name='xmlCharStrdup' file='xmlstring' module='xmlstring'> - <info>a strdup for char's to xmlChar's</info> - <return type='xmlChar *' info='a new xmlChar * or NULL'/> - <arg name='cur' type='const char *' info='the input char *'/> - </function> - <function name='xmlCharStrndup' file='xmlstring' module='xmlstring'> - <info>a strndup for char's to xmlChar's</info> - <return type='xmlChar *' info='a new xmlChar * or NULL'/> - <arg name='cur' type='const char *' info='the input char *'/> - <arg name='len' type='int' info='the len of @cur'/> - </function> - <function name='xmlCheckFilename' file='xmlIO' module='xmlIO'> - <info>function checks to see if @path is a valid source (file, socket...) for XML. if stat is not available on the target machine,</info> - <return type='int' info='1. if stat fails, returns 0 (if calling stat on the filename fails, it can't be right). if stat succeeds and the file is a directory, returns 2. otherwise returns 1.'/> - <arg name='path' type='const char *' info='the path to check'/> - </function> - <function name='xmlCheckHTTPInput' file='xmlIO' module='xmlIO'> - <info>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</info> - <return type='xmlParserInputPtr' info='the input or NULL in case of HTTP error.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='ret' type='xmlParserInputPtr' info='an XML parser input'/> - </function> - <function name='xmlCheckLanguageID' file='parserInternals' module='parser'> - <info>Checks that the value conforms to the LanguageID production: NOTE: this is somewhat deprecated, those productions were removed from the XML Second edition. [33] LanguageID ::= Langcode ('-' Subcode)* [34] Langcode ::= ISO639Code | IanaCode | UserCode [35] ISO639Code ::= ([a-z] | [A-Z]) ([a-z] | [A-Z]) [36] IanaCode ::= ('i' | 'I') '-' ([a-z] | [A-Z])+ [37] UserCode ::= ('x' | 'X') '-' ([a-z] | [A-Z])+ [38] Subcode ::= ([a-z] | [A-Z])+</info> - <return type='int' info='1 if correct 0 otherwise'/> - <arg name='lang' type='const xmlChar *' info='pointer to the string value'/> - </function> - <function name='xmlCheckUTF8' file='xmlstring' module='xmlstring'> - <info>Checks @utf for being valid UTF-8. @utf is assumed to be null-terminated. This function is not super-strict, as it will allow longer UTF-8 sequences than necessary. Note that Java is capable of producing these sequences if provoked. Also note, this routine checks for the 4-byte maximum size, but does not check for 0x10ffff maximum value.</info> - <return type='int' info='value: true if @utf is valid.'/> - <arg name='utf' type='const unsigned char *' info='Pointer to putative UTF-8 encoded string.'/> - </function> - <function name='xmlCheckVersion' file='xmlversion' module='parserInternals'> - <info>check the compiled lib version against the include one. This can warn or immediately kill the application</info> - <return type='void'/> - <arg name='version' type='int' info='the include version number'/> - </function> - <function name='xmlCleanupCharEncodingHandlers' file='encoding' module='encoding'> - <info>Cleanup the memory allocated for the char encoding support, it unregisters all the encoding handlers and the aliases.</info> - <return type='void'/> - </function> - <function name='xmlCleanupEncodingAliases' file='encoding' module='encoding'> - <info>Unregisters all aliases</info> - <return type='void'/> - </function> - <function name='xmlCleanupGlobals' file='globals' module='globals'> - <info>Additional cleanup for multi-threading</info> - <return type='void'/> - </function> - <function name='xmlCleanupInputCallbacks' file='xmlIO' module='xmlIO'> - <info>clears the entire input callback table. this includes the compiled-in I/O.</info> - <return type='void'/> - </function> - <function name='xmlCleanupMemory' file='xmlmemory' module='xmlmemory'> - <info>Free up all the memory allocated by the library for its own use. This should not be called by user level code.</info> - <return type='void'/> - </function> - <function name='xmlCleanupOutputCallbacks' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>clears the entire output callback table. this includes the compiled-in I/O callbacks.</info> - <return type='void'/> - </function> - <function name='xmlCleanupParser' file='parser' module='parser'> - <info>Cleanup function for the XML library. It tries to reclaim all parsing related global memory allocated for the library processing. It doesn't deallocate any document related memory. Calling this function should not prevent reusing the library but one should call xmlCleanupParser() only when the process has finished using the library or XML document built with it.</info> - <return type='void'/> - </function> - <function name='xmlCleanupPredefinedEntities' file='entities' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Cleanup up the predefined entities table. Deprecated call</info> - <return type='void'/> - </function> - <function name='xmlCleanupThreads' file='threads' module='threads'> - <info>xmlCleanupThreads() is used to to cleanup all the thread related data of the libxml2 library once processing has ended.</info> - <return type='void'/> - </function> - <function name='xmlClearNodeInfoSeq' file='parser' module='parserInternals'> - <info>-- Clear (release memory and reinitialize) node info sequence</info> - <return type='void'/> - <arg name='seq' type='xmlParserNodeInfoSeqPtr' info='a node info sequence pointer'/> - </function> - <function name='xmlClearParserCtxt' file='parser' module='parserInternals'> - <info>Clear (release owned resources) and reinitialize a parser context</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlConvertSGMLCatalog' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Convert all the SGML catalog entries as XML ones</info> - <return type='int' info='the number of entries converted if successful, -1 otherwise'/> - <arg name='catal' type='xmlCatalogPtr' info='the catalog'/> - </function> - <function name='xmlCopyAttributeTable' file='valid' module='valid'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>Build a copy of an attribute table.</info> - <return type='xmlAttributeTablePtr' info='the new xmlAttributeTablePtr or NULL in case of error.'/> - <arg name='table' type='xmlAttributeTablePtr' info='An attribute table'/> - </function> - <function name='xmlCopyChar' file='parserInternals' module='parserInternals'> - <info>append the char value in the array</info> - <return type='int' info='the number of xmlChar written'/> - <arg name='len' type='int' info='Ignored, compatibility'/> - <arg name='out' type='xmlChar *' info='pointer to an array of xmlChar'/> - <arg name='val' type='int' info='the char value'/> - </function> - <function name='xmlCopyCharMultiByte' file='parserInternals' module='parserInternals'> - <info>append the char value in the array</info> - <return type='int' info='the number of xmlChar written'/> - <arg name='out' type='xmlChar *' info='pointer to an array of xmlChar'/> - <arg name='val' type='int' info='the char value'/> - </function> - <function name='xmlCopyDoc' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Do a copy of the document info. If recursive, the content tree will be copied too as well as DTD, namespaces and entities.</info> - <return type='xmlDocPtr' info='a new #xmlDocPtr, or NULL in case of error.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='recursive' type='int' info='if not zero do a recursive copy.'/> - </function> - <function name='xmlCopyDocElementContent' file='valid' module='valid'> - <info>Build a copy of an element content description.</info> - <return type='xmlElementContentPtr' info='the new xmlElementContentPtr or NULL in case of error.'/> - <arg name='doc' type='xmlDocPtr' info='the document owning the element declaration'/> - <arg name='cur' type='xmlElementContentPtr' info='An element content pointer.'/> - </function> - <function name='xmlCopyDtd' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>Do a copy of the dtd.</info> - <return type='xmlDtdPtr' info='a new #xmlDtdPtr, or NULL in case of error.'/> - <arg name='dtd' type='xmlDtdPtr' info='the dtd'/> - </function> - <function name='xmlCopyElementContent' file='valid' module='valid'> - <info>Build a copy of an element content description. Deprecated, use xmlCopyDocElementContent instead</info> - <return type='xmlElementContentPtr' info='the new xmlElementContentPtr or NULL in case of error.'/> - <arg name='cur' type='xmlElementContentPtr' info='An element content pointer.'/> - </function> - <function name='xmlCopyElementTable' file='valid' module='valid'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>Build a copy of an element table.</info> - <return type='xmlElementTablePtr' info='the new xmlElementTablePtr or NULL in case of error.'/> - <arg name='table' type='xmlElementTablePtr' info='An element table'/> - </function> - <function name='xmlCopyEntitiesTable' file='entities' module='entities'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>Build a copy of an entity table.</info> - <return type='xmlEntitiesTablePtr' info='the new xmlEntitiesTablePtr or NULL in case of error.'/> - <arg name='table' type='xmlEntitiesTablePtr' info='An entity table'/> - </function> - <function name='xmlCopyEnumeration' file='valid' module='valid'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>Copy an enumeration attribute node (recursive).</info> - <return type='xmlEnumerationPtr' info='the xmlEnumerationPtr just created or NULL in case of error.'/> - <arg name='cur' type='xmlEnumerationPtr' info='the tree to copy.'/> - </function> - <function name='xmlCopyError' file='xmlerror' module='error'> - <info>Save the original error to the new place.</info> - <return type='int' info='0 in case of success and -1 in case of error.'/> - <arg name='from' type='xmlErrorPtr' info='a source error'/> - <arg name='to' type='xmlErrorPtr' info='a target error'/> - </function> - <function name='xmlCopyNamespace' file='tree' module='tree'> - <info>Do a copy of the namespace.</info> - <return type='xmlNsPtr' info='a new #xmlNsPtr, or NULL in case of error.'/> - <arg name='cur' type='xmlNsPtr' info='the namespace'/> - </function> - <function name='xmlCopyNamespaceList' file='tree' module='tree'> - <info>Do a copy of an namespace list.</info> - <return type='xmlNsPtr' info='a new #xmlNsPtr, or NULL in case of error.'/> - <arg name='cur' type='xmlNsPtr' info='the first namespace'/> - </function> - <function name='xmlCopyNode' file='tree' module='tree'> - <info>Do a copy of the node.</info> - <return type='xmlNodePtr' info='a new #xmlNodePtr, or NULL in case of error.'/> - <arg name='node' type='const xmlNodePtr' info='the node'/> - <arg name='extended' type='int' info='if 1 do a recursive copy (properties, namespaces and children when applicable) if 2 copy properties and namespaces (when applicable)'/> - </function> - <function name='xmlCopyNodeList' file='tree' module='tree'> - <info>Do a recursive copy of the node list. Use xmlDocCopyNodeList() if possible to ensure string interning.</info> - <return type='xmlNodePtr' info='a new #xmlNodePtr, or NULL in case of error.'/> - <arg name='node' type='const xmlNodePtr' info='the first node in the list.'/> - </function> - <function name='xmlCopyNotationTable' file='valid' module='valid'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>Build a copy of a notation table.</info> - <return type='xmlNotationTablePtr' info='the new xmlNotationTablePtr or NULL in case of error.'/> - <arg name='table' type='xmlNotationTablePtr' info='A notation table'/> - </function> - <function name='xmlCopyProp' file='tree' module='tree'> - <info>Do a copy of the attribute.</info> - <return type='xmlAttrPtr' info='a new #xmlAttrPtr, or NULL in case of error.'/> - <arg name='target' type='xmlNodePtr' info='the element where the attribute will be grafted'/> - <arg name='cur' type='xmlAttrPtr' info='the attribute'/> - </function> - <function name='xmlCopyPropList' file='tree' module='tree'> - <info>Do a copy of an attribute list.</info> - <return type='xmlAttrPtr' info='a new #xmlAttrPtr, or NULL in case of error.'/> - <arg name='target' type='xmlNodePtr' info='the element where the attributes will be grafted'/> - <arg name='cur' type='xmlAttrPtr' info='the first attribute'/> - </function> - <function name='xmlCreateDocParserCtxt' file='parser' module='parser'> - <info>Creates a parser context for an XML in-memory document.</info> - <return type='xmlParserCtxtPtr' info='the new parser context or NULL'/> - <arg name='cur' type='const xmlChar *' info='a pointer to an array of xmlChar'/> - </function> - <function name='xmlCreateEntitiesTable' file='entities' module='entities'> - <info>create and initialize an empty entities hash table. This really doesn't make sense and should be deprecated</info> - <return type='xmlEntitiesTablePtr' info='the xmlEntitiesTablePtr just created or NULL in case of error.'/> - </function> - <function name='xmlCreateEntityParserCtxt' file='parserInternals' module='parser'> - <info>Create a parser context for an external entity Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</info> - <return type='xmlParserCtxtPtr' info='the new parser context or NULL'/> - <arg name='URL' type='const xmlChar *' info='the entity URL'/> - <arg name='ID' type='const xmlChar *' info='the entity PUBLIC ID'/> - <arg name='base' type='const xmlChar *' info='a possible base for the target URI'/> - </function> - <function name='xmlCreateEnumeration' file='valid' module='valid'> - <info>create and initialize an enumeration attribute node.</info> - <return type='xmlEnumerationPtr' info='the xmlEnumerationPtr just created or NULL in case of error.'/> - <arg name='name' type='const xmlChar *' info='the enumeration name or NULL'/> - </function> - <function name='xmlCreateFileParserCtxt' file='parserInternals' module='parser'> - <info>Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</info> - <return type='xmlParserCtxtPtr' info='the new parser context or NULL'/> - <arg name='filename' type='const char *' info='the filename'/> - </function> - <function name='xmlCreateIOParserCtxt' file='parser' module='parser'> - <info>Create a parser context for using the XML parser with an existing I/O stream</info> - <return type='xmlParserCtxtPtr' info='the new parser context or NULL'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='a SAX handler'/> - <arg name='user_data' type='void *' info='The user data returned on SAX callbacks'/> - <arg name='ioread' type='xmlInputReadCallback' info='an I/O read function'/> - <arg name='ioclose' type='xmlInputCloseCallback' info='an I/O close function'/> - <arg name='ioctx' type='void *' info='an I/O handler'/> - <arg name='enc' type='xmlCharEncoding' info='the charset encoding if known'/> - </function> - <function name='xmlCreateIntSubset' file='tree' module='tree'> - <info>Create the internal subset of a document</info> - <return type='xmlDtdPtr' info='a pointer to the new DTD structure'/> - <arg name='doc' type='xmlDocPtr' info='the document pointer'/> - <arg name='name' type='const xmlChar *' info='the DTD name'/> - <arg name='ExternalID' type='const xmlChar *' info='the external (PUBLIC) ID'/> - <arg name='SystemID' type='const xmlChar *' info='the system ID'/> - </function> - <function name='xmlCreateMemoryParserCtxt' file='parserInternals' module='parser'> - <info>Create a parser context for an XML in-memory document.</info> - <return type='xmlParserCtxtPtr' info='the new parser context or NULL'/> - <arg name='buffer' type='const char *' info='a pointer to a char array'/> - <arg name='size' type='int' info='the size of the array'/> - </function> - <function name='xmlCreatePushParserCtxt' file='parser' module='parser'> - <cond>defined(LIBXML_PUSH_ENABLED)</cond> - <info>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.</info> - <return type='xmlParserCtxtPtr' info='the new parser context or NULL'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='a SAX handler'/> - <arg name='user_data' type='void *' info='The user data returned on SAX callbacks'/> - <arg name='chunk' type='const char *' info='a pointer to an array of chars'/> - <arg name='size' type='int' info='number of chars in the array'/> - <arg name='filename' type='const char *' info='an optional file name or URI'/> - </function> - <function name='xmlCreateURI' file='uri' module='uri'> - <info>Simply creates an empty xmlURI</info> - <return type='xmlURIPtr' info='the new structure or NULL in case of error'/> - </function> - <function name='xmlCreateURLParserCtxt' file='parserInternals' module='parser'> - <info>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</info> - <return type='xmlParserCtxtPtr' info='the new parser context or NULL'/> - <arg name='filename' type='const char *' info='the filename or URL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlCtxtGetLastError' file='xmlerror' module='error'> - <info>Get the last parsing error registered.</info> - <return type='xmlErrorPtr' info='NULL if no error occured or a pointer to the error'/> - <arg name='ctx' type='void *' info='an XML parser context'/> - </function> - <function name='xmlCtxtReadDoc' file='parser' module='parser'> - <info>parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='cur' type='const xmlChar *' info='a pointer to a zero terminated string'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlCtxtReadFd' file='parser' module='parser'> - <info>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.</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='fd' type='int' info='an open file descriptor'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlCtxtReadFile' file='parser' module='parser'> - <info>parse an XML file from the filesystem or the network. This reuses the existing @ctxt parser context</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='filename' type='const char *' info='a file or URL'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlCtxtReadIO' file='parser' module='parser'> - <info>parse an XML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='ioread' type='xmlInputReadCallback' info='an I/O read function'/> - <arg name='ioclose' type='xmlInputCloseCallback' info='an I/O close function'/> - <arg name='ioctx' type='void *' info='an I/O handler'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlCtxtReadMemory' file='parser' module='parser'> - <info>parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='buffer' type='const char *' info='a pointer to a char array'/> - <arg name='size' type='int' info='the size of the array'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlCtxtReset' file='parser' module='parser'> - <info>Reset a parser context</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlCtxtResetLastError' file='xmlerror' module='error'> - <info>Cleanup the last global error registered. For parsing error this does not change the well-formedness result.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='an XML parser context'/> - </function> - <function name='xmlCtxtResetPush' file='parser' module='parser'> - <info>Reset a push parser context</info> - <return type='int' info='0 in case of success and 1 in case of error'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='chunk' type='const char *' info='a pointer to an array of chars'/> - <arg name='size' type='int' info='number of chars in the array'/> - <arg name='filename' type='const char *' info='an optional file name or URI'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - </function> - <function name='xmlCtxtUseOptions' file='parser' module='parser'> - <info>Applies the options to the parser context</info> - <return type='int' info='0 in case of success, the set of unknown or unimplemented options in case of error.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlCurrentChar' file='parserInternals' module='parserInternals'> - <info>The current char value, if using UTF-8 this may actually span multiple bytes in the input buffer. Implement the end of line normalization: 2.11 End-of-Line Handling Wherever an external parsed entity or the literal entity value of an internal parsed entity contains either the literal two-character sequence "#xD#xA" or a standalone literal #xD, an XML processor must pass to the application the single character #xA. This behavior can conveniently be produced by normalizing all line breaks to #xA on input, before parsing.)</info> - <return type='int' info='the current char value and its length'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the XML parser context'/> - <arg name='len' type='int *' info='pointer to the length of the char read'/> - </function> - <functype name='xmlDOMWrapAcquireNsFunction' file='tree' module='tree'> - <info>A function called to acquire namespaces (xmlNs) from the wrapper.</info> - <return type='xmlNsPtr' info='an xmlNsPtr or NULL in case of an error.'/> - <arg name='ctxt' type='xmlDOMWrapCtxtPtr' info='a DOM wrapper context'/> - <arg name='node' type='xmlNodePtr' info='the context node (element or attribute)'/> - <arg name='nsName' type='const xmlChar *' info='the requested namespace name'/> - <arg name='nsPrefix' type='const xmlChar *' info='the requested namespace prefix'/> - </functype> - <function name='xmlDOMWrapAdoptNode' file='tree' module='tree'> - <info>References of out-of scope ns-decls are remapped to point to @destDoc: 1) If @destParent is given, then nsDef entries on element-nodes are used 2) If *no* @destParent is given, then @destDoc->oldNs entries are used This is the case when you have an unliked node and just want to move it to the context of If @destParent is given, it ensures that the tree is namespace wellformed by creating additional ns-decls where needed. Note that, since prefixes of already existent ns-decls can be shadowed by this process, it could break QNames in attribute values or element content. NOTE: This function was not intensively tested.</info> - <return type='int' info='0 if the operation succeeded, 1 if a node of unsupported type was given, 2 if a node of not yet supported type was given and -1 on API/internal errors.'/> - <arg name='ctxt' type='xmlDOMWrapCtxtPtr' info='the optional context for custom processing'/> - <arg name='sourceDoc' type='xmlDocPtr' info='the optional sourceDoc'/> - <arg name='node' type='xmlNodePtr' info='the node to start with'/> - <arg name='destDoc' type='xmlDocPtr' info='the destination doc'/> - <arg name='destParent' type='xmlNodePtr' info='the optional new parent of @node in @destDoc'/> - <arg name='options' type='int' info='option flags'/> - </function> - <function name='xmlDOMWrapCloneNode' file='tree' module='tree'> - <info>References of out-of scope ns-decls are remapped to point to @destDoc: 1) If @destParent is given, then nsDef entries on element-nodes are used 2) If *no* @destParent is given, then @destDoc->oldNs entries are used. This is the case when you don't know already where the cloned branch will be added to. If @destParent is given, it ensures that the tree is namespace wellformed by creating additional ns-decls where needed. Note that, since prefixes of already existent ns-decls can be shadowed by this process, it could break QNames in attribute values or element content. TODO: 1) What to do with XInclude? Currently this returns an error for XInclude.</info> - <return type='int' info='0 if the operation succeeded, 1 if a node of unsupported (or not yet supported) type was given, -1 on API/internal errors.'/> - <arg name='ctxt' type='xmlDOMWrapCtxtPtr' info='the optional context for custom processing'/> - <arg name='sourceDoc' type='xmlDocPtr' info='the optional sourceDoc'/> - <arg name='node' type='xmlNodePtr' info='the node to start with'/> - <arg name='resNode' type='xmlNodePtr *' info='the clone of the given @node'/> - <arg name='destDoc' type='xmlDocPtr' info='the destination doc'/> - <arg name='destParent' type='xmlNodePtr' info='the optional new parent of @node in @destDoc'/> - <arg name='deep' type='int' info='descend into child if set'/> - <arg name='options' type='int' info='option flags'/> - </function> - <function name='xmlDOMWrapFreeCtxt' file='tree' module='tree'> - <info>Frees the DOM-wrapper context.</info> - <return type='void'/> - <arg name='ctxt' type='xmlDOMWrapCtxtPtr' info='the DOM-wrapper context'/> - </function> - <function name='xmlDOMWrapNewCtxt' file='tree' module='tree'> - <info>Allocates and initializes a new DOM-wrapper context.</info> - <return type='xmlDOMWrapCtxtPtr' info='the xmlDOMWrapCtxtPtr or NULL in case of an internal errror.'/> - </function> - <function name='xmlDOMWrapReconcileNamespaces' file='tree' module='tree'> - <info>Ensures that ns-references point to ns-decls hold on element-nodes. Ensures that the tree is namespace wellformed by creating additional ns-decls where needed. Note that, since prefixes of already existent ns-decls can be shadowed by this process, it could break QNames in attribute values or element content. NOTE: This function was not intensively tested.</info> - <return type='int' info='0 if succeeded, -1 otherwise and on API/internal errors.'/> - <arg name='ctxt' type='xmlDOMWrapCtxtPtr' info='DOM wrapper context, unused at the moment'/> - <arg name='elem' type='xmlNodePtr' info='the element-node'/> - <arg name='options' type='int' info='option flags'/> - </function> - <function name='xmlDOMWrapRemoveNode' file='tree' module='tree'> - <info>Unlinks the given node from its owner. This will substitute ns-references to node->nsDef for ns-references to doc->oldNs, thus ensuring the removed branch to be autark wrt ns-references. NOTE: This function was not intensively tested.</info> - <return type='int' info='0 on success, 1 if the node is not supported, -1 on API and internal errors.'/> - <arg name='ctxt' type='xmlDOMWrapCtxtPtr' info='a DOM wrapper context'/> - <arg name='doc' type='xmlDocPtr' info='the doc'/> - <arg name='node' type='xmlNodePtr' info='the node to be removed.'/> - <arg name='options' type='int' info='set of options, unused at the moment'/> - </function> - <function name='xmlDebugCheckDocument' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Check the document for potential content problems, and output the errors to @output</info> - <return type='int' info='the number of errors found'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - </function> - <function name='xmlDebugDumpAttr' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dumps debug information for the attribute</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='attr' type='xmlAttrPtr' info='the attribute'/> - <arg name='depth' type='int' info='the indentation level.'/> - </function> - <function name='xmlDebugDumpAttrList' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dumps debug information for the attribute list</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='attr' type='xmlAttrPtr' info='the attribute list'/> - <arg name='depth' type='int' info='the indentation level.'/> - </function> - <function name='xmlDebugDumpDTD' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dumps debug information for the DTD</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='dtd' type='xmlDtdPtr' info='the DTD'/> - </function> - <function name='xmlDebugDumpDocument' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dumps debug information for the document, it's recursive</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - </function> - <function name='xmlDebugDumpDocumentHead' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dumps debug information cncerning the document, not recursive</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - </function> - <function name='xmlDebugDumpEntities' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dumps debug information for all the entities in use by the document</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - </function> - <function name='xmlDebugDumpNode' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dumps debug information for the element node, it is recursive</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - <arg name='depth' type='int' info='the indentation level.'/> - </function> - <function name='xmlDebugDumpNodeList' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dumps debug information for the list of element node, it is recursive</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='node' type='xmlNodePtr' info='the node list'/> - <arg name='depth' type='int' info='the indentation level.'/> - </function> - <function name='xmlDebugDumpOneNode' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dumps debug information for the element node, it is not recursive</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - <arg name='depth' type='int' info='the indentation level.'/> - </function> - <function name='xmlDebugDumpString' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dumps informations about the string, shorten it if necessary</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='str' type='const xmlChar *' info='the string'/> - </function> - <function name='xmlDecodeEntities' file='parserInternals' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>This function is deprecated, we now always process entities content through xmlStringDecodeEntities TODO: remove it in next major release. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';'</info> - <return type='xmlChar *' info='A newly allocated string with the substitution done. The caller must deallocate it !'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/> - <arg name='len' type='int' info='the len to decode (in bytes !), -1 for no size limit'/> - <arg name='what' type='int' info='combination of XML_SUBSTITUTE_REF and XML_SUBSTITUTE_PEREF'/> - <arg name='end' type='xmlChar' info='an end marker xmlChar, 0 if none'/> - <arg name='end2' type='xmlChar' info='an end marker xmlChar, 0 if none'/> - <arg name='end3' type='xmlChar' info='an end marker xmlChar, 0 if none'/> - </function> - <function name='xmlDefaultSAXHandlerInit' file='SAX2' module='SAX2'> - <info>Initialize the default SAX2 handler</info> - <return type='void'/> - </function> - <function name='xmlDelEncodingAlias' file='encoding' module='encoding'> - <info>Unregisters an encoding alias @alias</info> - <return type='int' info='0 in case of success, -1 in case of error'/> - <arg name='alias' type='const char *' info='the alias name as parsed, in UTF-8 format (ASCII actually)'/> - </function> - <function name='xmlDeregisterNodeDefault' file='globals' module='globals'> - <info>Registers a callback for node destruction</info> - <return type='xmlDeregisterNodeFunc' info='the previous value of the deregistration function'/> - <arg name='func' type='xmlDeregisterNodeFunc' info='function pointer to the new DeregisterNodeFunc'/> - </function> - <functype name='xmlDeregisterNodeFunc' file='globals' module='globals'> - <info></info> - <return type='void'/> - <arg name='node' type='xmlNodePtr' info=''/> - </functype> - <function name='xmlDetectCharEncoding' file='encoding' module='encoding'> - <info>Guess the encoding of the entity using the first bytes of the entity content according to the non-normative appendix F of the XML-1.0 recommendation.</info> - <return type='xmlCharEncoding' info='one of the XML_CHAR_ENCODING_... values.'/> - <arg name='in' type='const unsigned char *' info='a pointer to the first bytes of the XML entity, must be at least 2 bytes long (at least 4 if encoding is UTF4 variant).'/> - <arg name='len' type='int' info='pointer to the length of the buffer'/> - </function> - <function name='xmlDictCleanup' file='dict' module='dict'> - <info>Free the dictionary mutex.</info> - <return type='void'/> - </function> - <function name='xmlDictCreate' file='dict' module='dict'> - <info>Create a new dictionary</info> - <return type='xmlDictPtr' info='the newly created dictionnary, or NULL if an error occured.'/> - </function> - <function name='xmlDictCreateSub' file='dict' module='dict'> - <info>Create a new dictionary, inheriting strings from the read-only dictionnary @sub. On lookup, strings are first searched in the new dictionnary, then in @sub, and if not found are created in the new dictionnary.</info> - <return type='xmlDictPtr' info='the newly created dictionnary, or NULL if an error occured.'/> - <arg name='sub' type='xmlDictPtr' info='an existing dictionnary'/> - </function> - <function name='xmlDictExists' file='dict' module='dict'> - <info>Check if the @name exists in the dictionnary @dict.</info> - <return type='const xmlChar *' info='the internal copy of the name or NULL if not found.'/> - <arg name='dict' type='xmlDictPtr' info='the dictionnary'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='len' type='int' info='the length of the name, if -1 it is recomputed'/> - </function> - <function name='xmlDictFree' file='dict' module='dict'> - <info>Free the hash @dict and its contents. The userdata is deallocated with @f if provided.</info> - <return type='void'/> - <arg name='dict' type='xmlDictPtr' info='the dictionnary'/> - </function> - <function name='xmlDictLookup' file='dict' module='dict'> - <info>Add the @name to the dictionnary @dict if not present.</info> - <return type='const xmlChar *' info='the internal copy of the name or NULL in case of internal error'/> - <arg name='dict' type='xmlDictPtr' info='the dictionnary'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='len' type='int' info='the length of the name, if -1 it is recomputed'/> - </function> - <function name='xmlDictOwns' file='dict' module='dict'> - <info>check if a string is owned by the disctionary</info> - <return type='int' info='1 if true, 0 if false and -1 in case of error -1 in case of error'/> - <arg name='dict' type='xmlDictPtr' info='the dictionnary'/> - <arg name='str' type='const xmlChar *' info='the string'/> - </function> - <function name='xmlDictQLookup' file='dict' module='dict'> - <info>Add the QName @prefix:@name to the hash @dict if not present.</info> - <return type='const xmlChar *' info='the internal copy of the QName or NULL in case of internal error'/> - <arg name='dict' type='xmlDictPtr' info='the dictionnary'/> - <arg name='prefix' type='const xmlChar *' info='the prefix'/> - <arg name='name' type='const xmlChar *' info='the name'/> - </function> - <function name='xmlDictReference' file='dict' module='dict'> - <info>Increment the reference counter of a dictionary</info> - <return type='int' info='0 in case of success and -1 in case of error'/> - <arg name='dict' type='xmlDictPtr' info='the dictionnary'/> - </function> - <function name='xmlDictSize' file='dict' module='dict'> - <info>Query the number of elements installed in the hash @dict.</info> - <return type='int' info='the number of elements in the dictionnary or -1 in case of error'/> - <arg name='dict' type='xmlDictPtr' info='the dictionnary'/> - </function> - <function name='xmlDllMain' file='threads' module='threads'> - <info></info> - <return type='int' info=''/> - <arg name='hinstDLL' type='void *' info=''/> - <arg name='fdwReason' type='unsigned long' info=''/> - <arg name='lpvReserved' type='void *' info=''/> - </function> - <function name='xmlDocCopyNode' file='tree' module='tree'> - <info>Do a copy of the node to a given document.</info> - <return type='xmlNodePtr' info='a new #xmlNodePtr, or NULL in case of error.'/> - <arg name='node' type='const xmlNodePtr' info='the node'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='extended' type='int' info='if 1 do a recursive copy (properties, namespaces and children when applicable) if 2 copy properties and namespaces (when applicable)'/> - </function> - <function name='xmlDocCopyNodeList' file='tree' module='tree'> - <info>Do a recursive copy of the node list.</info> - <return type='xmlNodePtr' info='a new #xmlNodePtr, or NULL in case of error.'/> - <arg name='doc' type='xmlDocPtr' info='the target document'/> - <arg name='node' type='const xmlNodePtr' info='the first node in the list.'/> - </function> - <function name='xmlDocDump' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML document to an open FILE.</info> - <return type='int' info='the number of bytes written or -1 in case of failure.'/> - <arg name='f' type='FILE *' info='the FILE*'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - </function> - <function name='xmlDocDumpFormatMemory' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML document in memory and return the #xmlChar * and it's size. It's up to the caller to free the memory with xmlFree(). Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1 or xmlKeepBlanksDefault(0) was called</info> - <return type='void'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='mem' type='xmlChar **' info='OUT: the memory pointer'/> - <arg name='size' type='int *' info='OUT: the memory length'/> - <arg name='format' type='int' info='should formatting spaces been added'/> - </function> - <function name='xmlDocDumpFormatMemoryEnc' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump the current DOM tree into memory using the character encoding specified by the caller. Note it is up to the caller of this function to free the allocated memory with xmlFree(). Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1 or xmlKeepBlanksDefault(0) was called</info> - <return type='void'/> - <arg name='out_doc' type='xmlDocPtr' info='Document to generate XML text from'/> - <arg name='doc_txt_ptr' type='xmlChar **' info='Memory pointer for allocated XML text'/> - <arg name='doc_txt_len' type='int *' info='Length of the generated XML text'/> - <arg name='txt_encoding' type='const char *' info='Character encoding to use when generating XML text'/> - <arg name='format' type='int' info='should formatting spaces been added'/> - </function> - <function name='xmlDocDumpMemory' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML document in memory and return the #xmlChar * and it's size in bytes. It's up to the caller to free the memory with xmlFree(). The resulting byte array is zero terminated, though the last 0 is not included in the returned size.</info> - <return type='void'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='mem' type='xmlChar **' info='OUT: the memory pointer'/> - <arg name='size' type='int *' info='OUT: the memory length'/> - </function> - <function name='xmlDocDumpMemoryEnc' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump the current DOM tree into memory using the character encoding specified by the caller. Note it is up to the caller of this function to free the allocated memory with xmlFree().</info> - <return type='void'/> - <arg name='out_doc' type='xmlDocPtr' info='Document to generate XML text from'/> - <arg name='doc_txt_ptr' type='xmlChar **' info='Memory pointer for allocated XML text'/> - <arg name='doc_txt_len' type='int *' info='Length of the generated XML text'/> - <arg name='txt_encoding' type='const char *' info='Character encoding to use when generating XML text'/> - </function> - <function name='xmlDocFormatDump' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML document to an open FILE.</info> - <return type='int' info='the number of bytes written or -1 in case of failure. Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1 or xmlKeepBlanksDefault(0) was called'/> - <arg name='f' type='FILE *' info='the FILE*'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='format' type='int' info='should formatting spaces been added'/> - </function> - <function name='xmlDocGetRootElement' file='tree' module='tree'> - <info>Get the root element of the document (doc->children is a list containing possibly comments, PIs, etc ...).</info> - <return type='xmlNodePtr' info='the #xmlNodePtr for the root or NULL'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - </function> - <function name='xmlDocSetRootElement' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED)</cond> - <info>Set the root element of the document (doc->children is a list containing possibly comments, PIs, etc ...).</info> - <return type='xmlNodePtr' info='the old root element if any was found, NULL if root was NULL'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='root' type='xmlNodePtr' info='the new document root element, if root is NULL no action is taken, to remove a node from a document use xmlUnlinkNode(root) instead.'/> - </function> - <function name='xmlDumpAttributeDecl' file='valid' module='valid'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>This will dump the content of the attribute declaration as an XML DTD definition</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the XML buffer output'/> - <arg name='attr' type='xmlAttributePtr' info='An attribute declaration'/> - </function> - <function name='xmlDumpAttributeTable' file='valid' module='valid'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>This will dump the content of the attribute table as an XML DTD definition</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the XML buffer output'/> - <arg name='table' type='xmlAttributeTablePtr' info='An attribute table'/> - </function> - <function name='xmlDumpElementDecl' file='valid' module='valid'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>This will dump the content of the element declaration as an XML DTD definition</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the XML buffer output'/> - <arg name='elem' type='xmlElementPtr' info='An element table'/> - </function> - <function name='xmlDumpElementTable' file='valid' module='valid'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>This will dump the content of the element table as an XML DTD definition</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the XML buffer output'/> - <arg name='table' type='xmlElementTablePtr' info='An element table'/> - </function> - <function name='xmlDumpEntitiesTable' file='entities' module='entities'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>This will dump the content of the entity table as an XML DTD definition</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='An XML buffer.'/> - <arg name='table' type='xmlEntitiesTablePtr' info='An entity table'/> - </function> - <function name='xmlDumpEntityDecl' file='entities' module='entities'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>This will dump the content of the entity table as an XML DTD definition</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='An XML buffer.'/> - <arg name='ent' type='xmlEntityPtr' info='An entity table'/> - </function> - <function name='xmlDumpNotationDecl' file='valid' module='valid'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>This will dump the content the notation declaration as an XML DTD definition</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the XML buffer output'/> - <arg name='nota' type='xmlNotationPtr' info='A notation declaration'/> - </function> - <function name='xmlDumpNotationTable' file='valid' module='valid'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>This will dump the content of the notation table as an XML DTD definition</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='the XML buffer output'/> - <arg name='table' type='xmlNotationTablePtr' info='A notation table'/> - </function> - <function name='xmlElemDump' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML/HTML node, recursive behaviour, children are printed too.</info> - <return type='void'/> - <arg name='f' type='FILE *' info='the FILE * for the output'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='cur' type='xmlNodePtr' info='the current node'/> - </function> - <function name='xmlEncodeEntities' file='entities' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>TODO: remove xmlEncodeEntities, once we are not afraid of breaking binary compatibility People must migrate their code to xmlEncodeEntitiesReentrant ! This routine will issue a warning when encountered.</info> - <return type='const xmlChar *' info='NULL'/> - <arg name='doc' type='xmlDocPtr' info='the document containing the string'/> - <arg name='input' type='const xmlChar *' info='A string to convert to XML.'/> - </function> - <function name='xmlEncodeEntitiesReentrant' file='entities' module='entities'> - <info>Do a global encoding of a string, replacing the predefined entities and non ASCII values with their entities and CharRef counterparts. Contrary to xmlEncodeEntities, this routine is reentrant, and result must be deallocated.</info> - <return type='xmlChar *' info='A newly allocated string with the substitution done.'/> - <arg name='doc' type='xmlDocPtr' info='the document containing the string'/> - <arg name='input' type='const xmlChar *' info='A string to convert to XML.'/> - </function> - <function name='xmlEncodeSpecialChars' file='entities' module='entities'> - <info>Do a global encoding of a string, replacing the predefined entities this routine is reentrant, and result must be deallocated.</info> - <return type='xmlChar *' info='A newly allocated string with the substitution done.'/> - <arg name='doc' type='xmlDocPtr' info='the document containing the string'/> - <arg name='input' type='const xmlChar *' info='A string to convert to XML.'/> - </function> - <functype name='xmlEntityReferenceFunc' file='parserInternals' module='parserInternals'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Callback function used when one needs to be able to track back the provenance of a chunk of nodes inherited from an entity replacement.</info> - <return type='void'/> - <arg name='ent' type='xmlEntityPtr' info='the entity'/> - <arg name='firstNode' type='xmlNodePtr' info='the fist node in the chunk'/> - <arg name='lastNode' type='xmlNodePtr' info='the last nod in the chunk'/> - </functype> - <function name='xmlErrMemory' file='parserInternals' module='parserInternals'> - <info>Handle a redefinition of attribute error</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='extra' type='const char *' info='extra informations'/> - </function> - <function name='xmlExpCtxtNbCons' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Debugging facility provides the number of allocated nodes over lifetime</info> - <return type='int' info='the number of nodes ever allocated or -1 in case of error'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='an expression context'/> - </function> - <function name='xmlExpCtxtNbNodes' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Debugging facility provides the number of allocated nodes at a that point</info> - <return type='int' info='the number of nodes in use or -1 in case of error'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='an expression context'/> - </function> - <function name='xmlExpDump' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Serialize the expression as compiled to the buffer</info> - <return type='void'/> - <arg name='buf' type='xmlBufferPtr' info='a buffer to receive the output'/> - <arg name='expr' type='xmlExpNodePtr' info='the compiled expression'/> - </function> - <function name='xmlExpExpDerive' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Evaluates the expression resulting from @exp consuming a sub expression @sub Based on algebraic derivation and sometimes direct Brzozowski derivation it usually tatkes less than linear time and can handle expressions generating infinite languages.</info> - <return type='xmlExpNodePtr' info='the resulting expression or NULL in case of internal error, the result must be freed'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='the expressions context'/> - <arg name='exp' type='xmlExpNodePtr' info='the englobing expression'/> - <arg name='sub' type='xmlExpNodePtr' info='the subexpression'/> - </function> - <function name='xmlExpFree' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Dereference the expression</info> - <return type='void'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='the expression context'/> - <arg name='exp' type='xmlExpNodePtr' info='the expression'/> - </function> - <function name='xmlExpFreeCtxt' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Free an expression context</info> - <return type='void'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='an expression context'/> - </function> - <function name='xmlExpGetLanguage' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Find all the strings used in @exp and store them in @list</info> - <return type='int' info='the number of unique strings found, -1 in case of errors and -2 if there is more than @len strings'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='the expression context'/> - <arg name='exp' type='xmlExpNodePtr' info='the expression'/> - <arg name='langList' type='const xmlChar **' info='where to store the tokens'/> - <arg name='len' type='int' info='the allocated lenght of @list'/> - </function> - <function name='xmlExpGetStart' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Find all the strings that appears at the start of the languages accepted by @exp and store them in @list. E.g. for (a, b) | c it will return the list [a, c]</info> - <return type='int' info='the number of unique strings found, -1 in case of errors and -2 if there is more than @len strings'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='the expression context'/> - <arg name='exp' type='xmlExpNodePtr' info='the expression'/> - <arg name='tokList' type='const xmlChar **' info='where to store the tokens'/> - <arg name='len' type='int' info='the allocated lenght of @list'/> - </function> - <function name='xmlExpIsNillable' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Finds if the expression is nillable, i.e. if it accepts the empty sequqnce</info> - <return type='int' info='1 if nillable, 0 if not and -1 in case of error'/> - <arg name='exp' type='xmlExpNodePtr' info='the expression'/> - </function> - <function name='xmlExpMaxToken' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Indicate the maximum number of input a expression can accept</info> - <return type='int' info='the maximum length or -1 in case of error'/> - <arg name='expr' type='xmlExpNodePtr' info='a compiled expression'/> - </function> - <function name='xmlExpNewAtom' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Get the atom associated to this name from that context</info> - <return type='xmlExpNodePtr' info='the node or NULL in case of error'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='the expression context'/> - <arg name='name' type='const xmlChar *' info='the atom name'/> - <arg name='len' type='int' info='the atom name lenght in byte (or -1);'/> - </function> - <function name='xmlExpNewCtxt' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Creates a new context for manipulating expressions</info> - <return type='xmlExpCtxtPtr' info='the context or NULL in case of error'/> - <arg name='maxNodes' type='int' info='the maximum number of nodes'/> - <arg name='dict' type='xmlDictPtr' info='optional dictionnary to use internally'/> - </function> - <function name='xmlExpNewOr' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Get the atom associated to the choice @left | @right Note that @left and @right are consumed in the operation, to keep an handle on them use xmlExpRef() and use xmlExpFree() to release them, this is true even in case of failure (unless ctxt == NULL).</info> - <return type='xmlExpNodePtr' info='the node or NULL in case of error'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='the expression context'/> - <arg name='left' type='xmlExpNodePtr' info='left expression'/> - <arg name='right' type='xmlExpNodePtr' info='right expression'/> - </function> - <function name='xmlExpNewRange' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Get the atom associated to the range (@subset){@min, @max} Note that @subset is consumed in the operation, to keep an handle on it use xmlExpRef() and use xmlExpFree() to release it, this is true even in case of failure (unless ctxt == NULL).</info> - <return type='xmlExpNodePtr' info='the node or NULL in case of error'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='the expression context'/> - <arg name='subset' type='xmlExpNodePtr' info='the expression to be repeated'/> - <arg name='min' type='int' info='the lower bound for the repetition'/> - <arg name='max' type='int' info='the upper bound for the repetition, -1 means infinite'/> - </function> - <function name='xmlExpNewSeq' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Get the atom associated to the sequence @left , @right Note that @left and @right are consumed in the operation, to keep an handle on them use xmlExpRef() and use xmlExpFree() to release them, this is true even in case of failure (unless ctxt == NULL).</info> - <return type='xmlExpNodePtr' info='the node or NULL in case of error'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='the expression context'/> - <arg name='left' type='xmlExpNodePtr' info='left expression'/> - <arg name='right' type='xmlExpNodePtr' info='right expression'/> - </function> - <function name='xmlExpParse' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Minimal parser for regexps, it understand the following constructs - string terminals - choice operator | - sequence operator , - subexpressions (...) - usual cardinality operators + * and ? - finite sequences { min, max } - infinite sequences { min, * } There is minimal checkings made especially no checking on strings values</info> - <return type='xmlExpNodePtr' info='a new expression or NULL in case of failure'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='the expressions context'/> - <arg name='expr' type='const char *' info='the 0 terminated string'/> - </function> - <function name='xmlExpRef' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Increase the reference count of the expression</info> - <return type='void'/> - <arg name='exp' type='xmlExpNodePtr' info='the expression'/> - </function> - <function name='xmlExpStringDerive' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Do one step of Brzozowski derivation of the expression @exp with respect to the input string</info> - <return type='xmlExpNodePtr' info='the resulting expression or NULL in case of internal error'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='the expression context'/> - <arg name='exp' type='xmlExpNodePtr' info='the expression'/> - <arg name='str' type='const xmlChar *' info='the string'/> - <arg name='len' type='int' info='the string len in bytes if available'/> - </function> - <function name='xmlExpSubsume' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_EXPR_ENABLED)</cond> - <info>Check whether @exp accepts all the languages accexpted by @sub the input being a subexpression.</info> - <return type='int' info='1 if true 0 if false and -1 in case of failure.'/> - <arg name='ctxt' type='xmlExpCtxtPtr' info='the expressions context'/> - <arg name='exp' type='xmlExpNodePtr' info='the englobing expression'/> - <arg name='sub' type='xmlExpNodePtr' info='the subexpression'/> - </function> - <functype name='xmlExternalEntityLoader' file='parser' module='parser'> - <info>External entity loaders types.</info> - <return type='xmlParserInputPtr' info='the entity input parser.'/> - <arg name='URL' type='const char *' info='The System ID of the resource requested'/> - <arg name='ID' type='const char *' info='The Public ID of the resource requested'/> - <arg name='context' type='xmlParserCtxtPtr' info='the XML parser context'/> - </functype> - <function name='xmlFileClose' file='xmlIO' module='xmlIO'> - <info>Close an I/O channel</info> - <return type='int' info='0 or -1 in case of error'/> - <arg name='context' type='void *' info='the I/O context'/> - </function> - <function name='xmlFileMatch' file='xmlIO' module='xmlIO'> - <info>input from FILE *</info> - <return type='int' info='1 if matches, 0 otherwise'/> - <arg name='filename' type='const char *' info='the URI for matching'/> - </function> - <function name='xmlFileOpen' file='xmlIO' module='xmlIO'> - <info>Wrapper around xmlFileOpen_real that try it with an unescaped version of @filename, if this fails fallback to @filename</info> - <return type='void *' info='a handler or NULL in case or failure'/> - <arg name='filename' type='const char *' info='the URI for matching'/> - </function> - <function name='xmlFileRead' file='xmlIO' module='xmlIO'> - <info>Read @len bytes to @buffer from the I/O channel.</info> - <return type='int' info='the number of bytes written or < 0 in case of failure'/> - <arg name='context' type='void *' info='the I/O context'/> - <arg name='buffer' type='char *' info='where to drop data'/> - <arg name='len' type='int' info='number of bytes to write'/> - </function> - <function name='xmlFindCharEncodingHandler' file='encoding' module='encoding'> - <info>Search in the registered set the handler able to read/write that encoding.</info> - <return type='xmlCharEncodingHandlerPtr' info='the handler or NULL if not found'/> - <arg name='name' type='const char *' info='a string describing the char encoding.'/> - </function> - <function name='xmlFreeAttributeTable' file='valid' module='valid'> - <info>Deallocate the memory used by an entities hash table.</info> - <return type='void'/> - <arg name='table' type='xmlAttributeTablePtr' info='An attribute table'/> - </function> - <function name='xmlFreeAutomata' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>Free an automata</info> - <return type='void'/> - <arg name='am' type='xmlAutomataPtr' info='an automata'/> - </function> - <function name='xmlFreeCatalog' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Free the memory allocated to a Catalog</info> - <return type='void'/> - <arg name='catal' type='xmlCatalogPtr' info='a Catalog'/> - </function> - <function name='xmlFreeDoc' file='tree' module='tree'> - <info>Free up all the structures used by a document, tree included.</info> - <return type='void'/> - <arg name='cur' type='xmlDocPtr' info='pointer to the document'/> - </function> - <function name='xmlFreeDocElementContent' file='valid' module='valid'> - <info>Free an element content structure. The whole subtree is removed.</info> - <return type='void'/> - <arg name='doc' type='xmlDocPtr' info='the document owning the element declaration'/> - <arg name='cur' type='xmlElementContentPtr' info='the element content tree to free'/> - </function> - <function name='xmlFreeDtd' file='tree' module='tree'> - <info>Free a DTD structure.</info> - <return type='void'/> - <arg name='cur' type='xmlDtdPtr' info='the DTD structure to free up'/> - </function> - <function name='xmlFreeElementContent' file='valid' module='valid'> - <info>Free an element content structure. The whole subtree is removed. Deprecated, use xmlFreeDocElementContent instead</info> - <return type='void'/> - <arg name='cur' type='xmlElementContentPtr' info='the element content tree to free'/> - </function> - <function name='xmlFreeElementTable' file='valid' module='valid'> - <info>Deallocate the memory used by an element hash table.</info> - <return type='void'/> - <arg name='table' type='xmlElementTablePtr' info='An element table'/> - </function> - <function name='xmlFreeEntitiesTable' file='entities' module='entities'> - <info>Deallocate the memory used by an entities hash table.</info> - <return type='void'/> - <arg name='table' type='xmlEntitiesTablePtr' info='An entity table'/> - </function> - <function name='xmlFreeEnumeration' file='valid' module='valid'> - <info>free an enumeration attribute node (recursive).</info> - <return type='void'/> - <arg name='cur' type='xmlEnumerationPtr' info='the tree to free.'/> - </function> - <functype name='xmlFreeFunc' file='xmlmemory' module='xmlmemory'> - <info>Signature for a free() implementation.</info> - <return type='void'/> - <arg name='mem' type='void *' info='an already allocated block of memory'/> - </functype> - <function name='xmlFreeIDTable' file='valid' module='valid'> - <info>Deallocate the memory used by an ID hash table.</info> - <return type='void'/> - <arg name='table' type='xmlIDTablePtr' info='An id table'/> - </function> - <function name='xmlFreeInputStream' file='parserInternals' module='parserInternals'> - <info>Free up an input stream.</info> - <return type='void'/> - <arg name='input' type='xmlParserInputPtr' info='an xmlParserInputPtr'/> - </function> - <function name='xmlFreeMutex' file='threads' module='threads'> - <info>xmlFreeMutex() is used to reclaim resources associated with a libxml2 token struct.</info> - <return type='void'/> - <arg name='tok' type='xmlMutexPtr' info='the simple mutex'/> - </function> - <function name='xmlFreeNode' file='tree' module='tree'> - <info>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.</info> - <return type='void'/> - <arg name='cur' type='xmlNodePtr' info='the node'/> - </function> - <function name='xmlFreeNodeList' file='tree' module='tree'> - <info>Free a node and all its siblings, this is a recursive behaviour, all the children are freed too.</info> - <return type='void'/> - <arg name='cur' type='xmlNodePtr' info='the first node in the list'/> - </function> - <function name='xmlFreeNotationTable' file='valid' module='valid'> - <info>Deallocate the memory used by an entities hash table.</info> - <return type='void'/> - <arg name='table' type='xmlNotationTablePtr' info='An notation table'/> - </function> - <function name='xmlFreeNs' file='tree' module='tree'> - <info>Free up the structures associated to a namespace</info> - <return type='void'/> - <arg name='cur' type='xmlNsPtr' info='the namespace pointer'/> - </function> - <function name='xmlFreeNsList' file='tree' module='tree'> - <info>Free up all the structures associated to the chained namespaces.</info> - <return type='void'/> - <arg name='cur' type='xmlNsPtr' info='the first namespace pointer'/> - </function> - <function name='xmlFreeParserCtxt' file='parser' module='parserInternals'> - <info>Free all the memory used by a parser context. However the parsed document in ctxt->myDoc is not freed.</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlFreeParserInputBuffer' file='xmlIO' module='xmlIO'> - <info>Free up the memory used by a buffered parser input</info> - <return type='void'/> - <arg name='in' type='xmlParserInputBufferPtr' info='a buffered parser input'/> - </function> - <function name='xmlFreePattern' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Free up the memory allocated by @comp</info> - <return type='void'/> - <arg name='comp' type='xmlPatternPtr' info='an XSLT comp'/> - </function> - <function name='xmlFreePatternList' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Free up the memory allocated by all the elements of @comp</info> - <return type='void'/> - <arg name='comp' type='xmlPatternPtr' info='an XSLT comp list'/> - </function> - <function name='xmlFreeProp' file='tree' module='tree'> - <info>Free one attribute, all the content is freed too</info> - <return type='void'/> - <arg name='cur' type='xmlAttrPtr' info='an attribute'/> - </function> - <function name='xmlFreePropList' file='tree' module='tree'> - <info>Free a property and all its siblings, all the children are freed too.</info> - <return type='void'/> - <arg name='cur' type='xmlAttrPtr' info='the first property in the list'/> - </function> - <function name='xmlFreeRMutex' file='threads' module='threads'> - <info>xmlRFreeMutex() is used to reclaim resources associated with a reentrant mutex.</info> - <return type='void'/> - <arg name='tok' type='xmlRMutexPtr' info='the reentrant mutex'/> - </function> - <function name='xmlFreeRefTable' file='valid' module='valid'> - <info>Deallocate the memory used by an Ref hash table.</info> - <return type='void'/> - <arg name='table' type='xmlRefTablePtr' info='An ref table'/> - </function> - <function name='xmlFreeStreamCtxt' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Free the stream context</info> - <return type='void'/> - <arg name='stream' type='xmlStreamCtxtPtr' info='the stream context'/> - </function> - <function name='xmlFreeTextReader' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Deallocate all the resources associated to the reader</info> - <return type='void'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr'/> - </function> - <function name='xmlFreeTextWriter' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Deallocate all the resources associated to the writer</info> - <return type='void'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlFreeURI' file='uri' module='uri'> - <info>Free up the xmlURI struct</info> - <return type='void'/> - <arg name='uri' type='xmlURIPtr' info='pointer to an xmlURI'/> - </function> - <function name='xmlFreeValidCtxt' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Free a validation context structure.</info> - <return type='void'/> - <arg name='cur' type='xmlValidCtxtPtr' info='the validation context to free'/> - </function> - <function name='xmlGcMemGet' file='xmlmemory' module='xmlmemory'> - <info>Provides the memory access functions set currently in use The mallocAtomicFunc is specialized for atomic block allocations (i.e. of areas useful for garbage collected memory allocators</info> - <return type='int' info='0 on success'/> - <arg name='freeFunc' type='xmlFreeFunc *' info='place to save the free() function in use'/> - <arg name='mallocFunc' type='xmlMallocFunc *' info='place to save the malloc() function in use'/> - <arg name='mallocAtomicFunc' type='xmlMallocFunc *' info='place to save the atomic malloc() function in use'/> - <arg name='reallocFunc' type='xmlReallocFunc *' info='place to save the realloc() function in use'/> - <arg name='strdupFunc' type='xmlStrdupFunc *' info='place to save the strdup() function in use'/> - </function> - <function name='xmlGcMemSetup' file='xmlmemory' module='xmlmemory'> - <info>Override the default memory access functions with a new set This has to be called before any other libxml routines ! The mallocAtomicFunc is specialized for atomic block allocations (i.e. of areas useful for garbage collected memory allocators Should this be blocked if there was already some allocations done ?</info> - <return type='int' info='0 on success'/> - <arg name='freeFunc' type='xmlFreeFunc' info='the free() function to use'/> - <arg name='mallocFunc' type='xmlMallocFunc' info='the malloc() function to use'/> - <arg name='mallocAtomicFunc' type='xmlMallocFunc' info='the malloc() function to use for atomic allocations'/> - <arg name='reallocFunc' type='xmlReallocFunc' info='the realloc() function to use'/> - <arg name='strdupFunc' type='xmlStrdupFunc' info='the strdup() function to use'/> - </function> - <functype name='xmlGenericErrorFunc' file='xmlerror' module='xmlerror'> - <info>Signature of the function to use when there is an error and no parsing or validity context available .</info> - <return type='void'/> - <arg name='ctx' type='void *' info='a parsing context'/> - <arg name='msg' type='const char *' info='the message'/> - <arg name='...' type='...' info='the extra arguments of the varags to format the message'/> - </functype> - <function name='xmlGetBufferAllocationScheme' file='tree' module='tree'> - <info>Types are XML_BUFFER_ALLOC_EXACT - use exact sizes, keeps memory usage down XML_BUFFER_ALLOC_DOUBLEIT - double buffer when extra needed, improves performance</info> - <return type='xmlBufferAllocationScheme' info='the current allocation scheme'/> - </function> - <function name='xmlGetCharEncodingHandler' file='encoding' module='encoding'> - <info>Search in the registered set the handler able to read/write that encoding.</info> - <return type='xmlCharEncodingHandlerPtr' info='the handler or NULL if not found'/> - <arg name='enc' type='xmlCharEncoding' info='an xmlCharEncoding value.'/> - </function> - <function name='xmlGetCharEncodingName' file='encoding' module='encoding'> - <info>The "canonical" name for XML encoding. C.f. http://www.w3.org/TR/REC-xml#charencoding Section 4.3.3 Character Encoding in Entities</info> - <return type='const char *' info='the canonical name for the given encoding'/> - <arg name='enc' type='xmlCharEncoding' info='the encoding'/> - </function> - <function name='xmlGetCompressMode' file='tree' module='tree'> - <info>get the default compression mode used, ZLIB based.</info> - <return type='int' info='0 (uncompressed) to 9 (max compression)'/> - </function> - <function name='xmlGetDocCompressMode' file='tree' module='tree'> - <info>get the compression ratio for a document, ZLIB based</info> - <return type='int' info='0 (uncompressed) to 9 (max compression)'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - </function> - <function name='xmlGetDocEntity' file='entities' module='entities'> - <info>Do an entity lookup in the document entity hash table and</info> - <return type='xmlEntityPtr' info='the corresponding entity, otherwise a lookup is done in the predefined entities too. Returns A pointer to the entity structure or NULL if not found.'/> - <arg name='doc' type='xmlDocPtr' info='the document referencing the entity'/> - <arg name='name' type='const xmlChar *' info='the entity name'/> - </function> - <function name='xmlGetDtdAttrDesc' file='valid' module='valid'> - <info>Search the DTD for the description of this attribute on this element.</info> - <return type='xmlAttributePtr' info='the xmlAttributePtr if found or NULL'/> - <arg name='dtd' type='xmlDtdPtr' info='a pointer to the DtD to search'/> - <arg name='elem' type='const xmlChar *' info='the element name'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - </function> - <function name='xmlGetDtdElementDesc' file='valid' module='valid'> - <info>Search the DTD for the description of this element</info> - <return type='xmlElementPtr' info='the xmlElementPtr if found or NULL'/> - <arg name='dtd' type='xmlDtdPtr' info='a pointer to the DtD to search'/> - <arg name='name' type='const xmlChar *' info='the element name'/> - </function> - <function name='xmlGetDtdEntity' file='entities' module='entities'> - <info>Do an entity lookup in the DTD entity hash table and</info> - <return type='xmlEntityPtr' info='the corresponding entity, if found. Note: the first argument is the document node, not the DTD node. Returns A pointer to the entity structure or NULL if not found.'/> - <arg name='doc' type='xmlDocPtr' info='the document referencing the entity'/> - <arg name='name' type='const xmlChar *' info='the entity name'/> - </function> - <function name='xmlGetDtdNotationDesc' file='valid' module='valid'> - <info>Search the DTD for the description of this notation</info> - <return type='xmlNotationPtr' info='the xmlNotationPtr if found or NULL'/> - <arg name='dtd' type='xmlDtdPtr' info='a pointer to the DtD to search'/> - <arg name='name' type='const xmlChar *' info='the notation name'/> - </function> - <function name='xmlGetDtdQAttrDesc' file='valid' module='valid'> - <info>Search the DTD for the description of this qualified attribute on this element.</info> - <return type='xmlAttributePtr' info='the xmlAttributePtr if found or NULL'/> - <arg name='dtd' type='xmlDtdPtr' info='a pointer to the DtD to search'/> - <arg name='elem' type='const xmlChar *' info='the element name'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - <arg name='prefix' type='const xmlChar *' info='the attribute namespace prefix'/> - </function> - <function name='xmlGetDtdQElementDesc' file='valid' module='valid'> - <info>Search the DTD for the description of this element</info> - <return type='xmlElementPtr' info='the xmlElementPtr if found or NULL'/> - <arg name='dtd' type='xmlDtdPtr' info='a pointer to the DtD to search'/> - <arg name='name' type='const xmlChar *' info='the element name'/> - <arg name='prefix' type='const xmlChar *' info='the element namespace prefix'/> - </function> - <function name='xmlGetEncodingAlias' file='encoding' module='encoding'> - <info>Lookup an encoding name for the given alias.</info> - <return type='const char *' info='NULL if not found, otherwise the original name'/> - <arg name='alias' type='const char *' info='the alias name as parsed, in UTF-8 format (ASCII actually)'/> - </function> - <function name='xmlGetExternalEntityLoader' file='parser' module='xmlIO'> - <info>Get the default external entity resolver function for the application</info> - <return type='xmlExternalEntityLoader' info='the xmlExternalEntityLoader function pointer'/> - </function> - <function name='xmlGetFeature' file='parser' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Read the current value of one feature of this parser instance</info> - <return type='int' info='-1 in case or error, 0 otherwise'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML/HTML parser context'/> - <arg name='name' type='const char *' info='the feature name'/> - <arg name='result' type='void *' info='location to store the result'/> - </function> - <function name='xmlGetFeaturesList' file='parser' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Copy at most *@len feature names into the @result array</info> - <return type='int' info='-1 in case or error, or the total number of features, len is updated with the number of strings copied, strings must not be deallocated'/> - <arg name='len' type='int *' info='the length of the features name array (input/output)'/> - <arg name='result' type='const char **' info='an array of string to be filled with the features name.'/> - </function> - <function name='xmlGetGlobalState' file='threads' module='threads'> - <info>xmlGetGlobalState() is called to retrieve the global state for a thread.</info> - <return type='xmlGlobalStatePtr' info='the thread global state or NULL in case of error'/> - </function> - <function name='xmlGetID' file='valid' module='valid'> - <info>Search the attribute declaring the given ID</info> - <return type='xmlAttrPtr' info='NULL if not found, otherwise the xmlAttrPtr defining the ID'/> - <arg name='doc' type='xmlDocPtr' info='pointer to the document'/> - <arg name='ID' type='const xmlChar *' info='the ID value'/> - </function> - <function name='xmlGetIntSubset' file='tree' module='tree'> - <info>Get the internal subset of a document</info> - <return type='xmlDtdPtr' info='a pointer to the DTD structure or NULL if not found'/> - <arg name='doc' type='xmlDocPtr' info='the document pointer'/> - </function> - <function name='xmlGetLastChild' file='tree' module='tree'> - <info>Search the last child of a node.</info> - <return type='xmlNodePtr' info='the last child or NULL if none.'/> - <arg name='parent' type='xmlNodePtr' info='the parent node'/> - </function> - <function name='xmlGetLastError' file='xmlerror' module='error'> - <info>Get the last global error registered. This is per thread if compiled with thread support.</info> - <return type='xmlErrorPtr' info='NULL if no error occured or a pointer to the error'/> - </function> - <function name='xmlGetLineNo' file='tree' module='tree'> - <info>Get line number of @node. This requires activation of this option before invoking the parser by calling xmlLineNumbersDefault(1)</info> - <return type='long' info='the line number if successful, -1 otherwise'/> - <arg name='node' type='xmlNodePtr' info='valid node'/> - </function> - <function name='xmlGetNoNsProp' file='tree' module='tree'> - <info>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.</info> - <return type='xmlChar *' info='the attribute value or NULL if not found. It's up to the caller to free the memory with xmlFree().'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - </function> - <function name='xmlGetNodePath' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Build a structure based Path for the given node</info> - <return type='xmlChar *' info='the new path or NULL in case of error. The caller must free the returned string'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - </function> - <function name='xmlGetNsList' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Search all the namespace applying to a given element.</info> - <return type='xmlNsPtr *' info='an NULL terminated array of all the #xmlNsPtr found that need to be freed by the caller or NULL if no namespace if defined'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='node' type='xmlNodePtr' info='the current node'/> - </function> - <function name='xmlGetNsProp' file='tree' module='tree'> - <info>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.</info> - <return type='xmlChar *' info='the attribute value or NULL if not found. It's up to the caller to free the memory with xmlFree().'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - <arg name='nameSpace' type='const xmlChar *' info='the URI of the namespace'/> - </function> - <function name='xmlGetParameterEntity' file='entities' module='entities'> - <info>Do an entity lookup in the internal and external subsets and</info> - <return type='xmlEntityPtr' info='the corresponding parameter entity, if found. Returns A pointer to the entity structure or NULL if not found.'/> - <arg name='doc' type='xmlDocPtr' info='the document referencing the entity'/> - <arg name='name' type='const xmlChar *' info='the entity name'/> - </function> - <function name='xmlGetPredefinedEntity' file='entities' module='entities'> - <info>Check whether this name is an predefined entity.</info> - <return type='xmlEntityPtr' info='NULL if not, otherwise the entity'/> - <arg name='name' type='const xmlChar *' info='the entity name'/> - </function> - <function name='xmlGetProp' file='tree' module='tree'> - <info>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.</info> - <return type='xmlChar *' info='the attribute value or NULL if not found. It's up to the caller to free the memory with xmlFree().'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - </function> - <function name='xmlGetRefs' file='valid' module='valid'> - <info>Find the set of references for the supplied ID.</info> - <return type='xmlListPtr' info='NULL if not found, otherwise node set for the ID.'/> - <arg name='doc' type='xmlDocPtr' info='pointer to the document'/> - <arg name='ID' type='const xmlChar *' info='the ID value'/> - </function> - <function name='xmlGetThreadId' file='threads' module='threads'> - <info>xmlGetThreadId() find the current thread ID number</info> - <return type='int' info='the current thread ID number'/> - </function> - <function name='xmlGetUTF8Char' file='xmlstring' module='xmlstring'> - <info>Read the first UTF8 character from @utf</info> - <return type='int' info='the char value or -1 in case of error, and sets *len to the actual number of bytes consumed (0 in case of error)'/> - <arg name='utf' type='const unsigned char *' info='a sequence of UTF-8 encoded bytes'/> - <arg name='len' type='int *' info='a pointer to the minimum number of bytes present in the sequence. This is used to assure the next character is completely contained within the sequence.'/> - </function> - <function name='xmlHandleEntity' file='parserInternals' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Default handling of defined entities, when should we define a new input stream ? When do we just handle that as a set of chars ? OBSOLETE: to be removed at some point.</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='entity' type='xmlEntityPtr' info='an XML entity pointer.'/> - </function> - <function name='xmlHasFeature' file='parser' module='parser'> - <info>Examines if the library has been compiled with a given feature.</info> - <return type='int' info='a non-zero value if the feature exist, otherwise zero. Returns zero (0) if the feature does not exist or an unknown unknown feature is requested, non-zero otherwise.'/> - <arg name='feature' type='xmlFeature' info='the feature to be examined'/> - </function> - <function name='xmlHasNsProp' file='tree' module='tree'> - <info>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.</info> - <return type='xmlAttrPtr' info='the attribute or the attribute declaration or NULL if neither was found.'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - <arg name='nameSpace' type='const xmlChar *' info='the URI of the namespace'/> - </function> - <function name='xmlHasProp' file='tree' module='tree'> - <info>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.</info> - <return type='xmlAttrPtr' info='the attribute or the attribute declaration or NULL if neither was found.'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - </function> - <function name='xmlHashAddEntry' file='hash' module='hash'> - <info>Add the @userdata to the hash @table. This can later be retrieved by using the @name. Duplicate names generate errors.</info> - <return type='int' info='0 the addition succeeded and -1 in case of error.'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='userdata' type='void *' info='a pointer to the userdata'/> - </function> - <function name='xmlHashAddEntry2' file='hash' module='hash'> - <info>Add the @userdata to the hash @table. This can later be retrieved by using the (@name, @name2) tuple. Duplicate tuples generate errors.</info> - <return type='int' info='0 the addition succeeded and -1 in case of error.'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='name2' type='const xmlChar *' info='a second name of the userdata'/> - <arg name='userdata' type='void *' info='a pointer to the userdata'/> - </function> - <function name='xmlHashAddEntry3' file='hash' module='hash'> - <info>Add the @userdata to the hash @table. This can later be retrieved by using the tuple (@name, @name2, @name3). Duplicate entries generate errors.</info> - <return type='int' info='0 the addition succeeded and -1 in case of error.'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='name2' type='const xmlChar *' info='a second name of the userdata'/> - <arg name='name3' type='const xmlChar *' info='a third name of the userdata'/> - <arg name='userdata' type='void *' info='a pointer to the userdata'/> - </function> - <functype name='xmlHashCopier' file='hash' module='hash'> - <info>Callback to copy data from a hash.</info> - <return type='void *' info='a copy of the data or NULL in case of error.'/> - <arg name='payload' type='void *' info='the data in the hash'/> - <arg name='name' type='xmlChar *' info='the name associated'/> - </functype> - <function name='xmlHashCopy' file='hash' module='hash'> - <info>Scan the hash @table and applied @f to each value.</info> - <return type='xmlHashTablePtr' info='the new table or NULL in case of error.'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='f' type='xmlHashCopier' info='the copier function for items in the hash'/> - </function> - <function name='xmlHashCreate' file='hash' module='hash'> - <info>Create a new xmlHashTablePtr.</info> - <return type='xmlHashTablePtr' info='the newly created object, or NULL if an error occured.'/> - <arg name='size' type='int' info='the size of the hash table'/> - </function> - <function name='xmlHashCreateDict' file='hash' module='hash'> - <info>Create a new xmlHashTablePtr which will use @dict as the internal dictionary</info> - <return type='xmlHashTablePtr' info='the newly created object, or NULL if an error occured.'/> - <arg name='size' type='int' info='the size of the hash table'/> - <arg name='dict' type='xmlDictPtr' info='a dictionary to use for the hash'/> - </function> - <functype name='xmlHashDeallocator' file='hash' module='hash'> - <info>Callback to free data from a hash.</info> - <return type='void'/> - <arg name='payload' type='void *' info='the data in the hash'/> - <arg name='name' type='xmlChar *' info='the name associated'/> - </functype> - <function name='xmlHashFree' file='hash' module='hash'> - <info>Free the hash @table and its contents. The userdata is deallocated with @f if provided.</info> - <return type='void'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='f' type='xmlHashDeallocator' info='the deallocator function for items in the hash'/> - </function> - <function name='xmlHashLookup' file='hash' module='hash'> - <info>Find the userdata specified by the @name.</info> - <return type='void *' info='the pointer to the userdata'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - </function> - <function name='xmlHashLookup2' file='hash' module='hash'> - <info>Find the userdata specified by the (@name, @name2) tuple.</info> - <return type='void *' info='the pointer to the userdata'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='name2' type='const xmlChar *' info='a second name of the userdata'/> - </function> - <function name='xmlHashLookup3' file='hash' module='hash'> - <info>Find the userdata specified by the (@name, @name2, @name3) tuple.</info> - <return type='void *' info='the a pointer to the userdata'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='name2' type='const xmlChar *' info='a second name of the userdata'/> - <arg name='name3' type='const xmlChar *' info='a third name of the userdata'/> - </function> - <function name='xmlHashQLookup' file='hash' module='hash'> - <info>Find the userdata specified by the QName @prefix:@name/@name.</info> - <return type='void *' info='the pointer to the userdata'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='prefix' type='const xmlChar *' info='the prefix of the userdata'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - </function> - <function name='xmlHashQLookup2' file='hash' module='hash'> - <info>Find the userdata specified by the QNames tuple</info> - <return type='void *' info='the pointer to the userdata'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='prefix' type='const xmlChar *' info='the prefix of the userdata'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='prefix2' type='const xmlChar *' info='the second prefix of the userdata'/> - <arg name='name2' type='const xmlChar *' info='a second name of the userdata'/> - </function> - <function name='xmlHashQLookup3' file='hash' module='hash'> - <info>Find the userdata specified by the (@name, @name2, @name3) tuple.</info> - <return type='void *' info='the a pointer to the userdata'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='prefix' type='const xmlChar *' info='the prefix of the userdata'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='prefix2' type='const xmlChar *' info='the second prefix of the userdata'/> - <arg name='name2' type='const xmlChar *' info='a second name of the userdata'/> - <arg name='prefix3' type='const xmlChar *' info='the third prefix of the userdata'/> - <arg name='name3' type='const xmlChar *' info='a third name of the userdata'/> - </function> - <function name='xmlHashRemoveEntry' file='hash' module='hash'> - <info>Find the userdata specified by the @name and remove it from the hash @table. Existing userdata for this tuple will be removed and freed with @f.</info> - <return type='int' info='0 if the removal succeeded and -1 in case of error or not found.'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='f' type='xmlHashDeallocator' info='the deallocator function for removed item (if any)'/> - </function> - <function name='xmlHashRemoveEntry2' file='hash' module='hash'> - <info>Find the userdata specified by the (@name, @name2) tuple and remove it from the hash @table. Existing userdata for this tuple will be removed and freed with @f.</info> - <return type='int' info='0 if the removal succeeded and -1 in case of error or not found.'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='name2' type='const xmlChar *' info='a second name of the userdata'/> - <arg name='f' type='xmlHashDeallocator' info='the deallocator function for removed item (if any)'/> - </function> - <function name='xmlHashRemoveEntry3' file='hash' module='hash'> - <info>Find the userdata specified by the (@name, @name2, @name3) tuple and remove it from the hash @table. Existing userdata for this tuple will be removed and freed with @f.</info> - <return type='int' info='0 if the removal succeeded and -1 in case of error or not found.'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='name2' type='const xmlChar *' info='a second name of the userdata'/> - <arg name='name3' type='const xmlChar *' info='a third name of the userdata'/> - <arg name='f' type='xmlHashDeallocator' info='the deallocator function for removed item (if any)'/> - </function> - <function name='xmlHashScan' file='hash' module='hash'> - <info>Scan the hash @table and applied @f to each value.</info> - <return type='void'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='f' type='xmlHashScanner' info='the scanner function for items in the hash'/> - <arg name='data' type='void *' info='extra data passed to f'/> - </function> - <function name='xmlHashScan3' file='hash' module='hash'> - <info>Scan the hash @table and applied @f to each value matching (@name, @name2, @name3) tuple. If one of the names is null, the comparison is considered to match.</info> - <return type='void'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata or NULL'/> - <arg name='name2' type='const xmlChar *' info='a second name of the userdata or NULL'/> - <arg name='name3' type='const xmlChar *' info='a third name of the userdata or NULL'/> - <arg name='f' type='xmlHashScanner' info='the scanner function for items in the hash'/> - <arg name='data' type='void *' info='extra data passed to f'/> - </function> - <function name='xmlHashScanFull' file='hash' module='hash'> - <info>Scan the hash @table and applied @f to each value.</info> - <return type='void'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='f' type='xmlHashScannerFull' info='the scanner function for items in the hash'/> - <arg name='data' type='void *' info='extra data passed to f'/> - </function> - <function name='xmlHashScanFull3' file='hash' module='hash'> - <info>Scan the hash @table and applied @f to each value matching (@name, @name2, @name3) tuple. If one of the names is null, the comparison is considered to match.</info> - <return type='void'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata or NULL'/> - <arg name='name2' type='const xmlChar *' info='a second name of the userdata or NULL'/> - <arg name='name3' type='const xmlChar *' info='a third name of the userdata or NULL'/> - <arg name='f' type='xmlHashScannerFull' info='the scanner function for items in the hash'/> - <arg name='data' type='void *' info='extra data passed to f'/> - </function> - <functype name='xmlHashScanner' file='hash' module='hash'> - <info>Callback when scanning data in a hash with the simple scanner.</info> - <return type='void'/> - <arg name='payload' type='void *' info='the data in the hash'/> - <arg name='data' type='void *' info='extra scannner data'/> - <arg name='name' type='xmlChar *' info='the name associated'/> - </functype> - <functype name='xmlHashScannerFull' file='hash' module='hash'> - <info>Callback when scanning data in a hash with the full scanner.</info> - <return type='void'/> - <arg name='payload' type='void *' info='the data in the hash'/> - <arg name='data' type='void *' info='extra scannner data'/> - <arg name='name' type='const xmlChar *' info='the name associated'/> - <arg name='name2' type='const xmlChar *' info='the second name associated'/> - <arg name='name3' type='const xmlChar *' info='the third name associated'/> - </functype> - <function name='xmlHashSize' file='hash' module='hash'> - <info>Query the number of elements installed in the hash @table.</info> - <return type='int' info='the number of elements in the hash table or -1 in case of error'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - </function> - <function name='xmlHashUpdateEntry' file='hash' module='hash'> - <info>Add the @userdata to the hash @table. This can later be retrieved by using the @name. Existing entry for this @name will be removed and freed with @f if found.</info> - <return type='int' info='0 the addition succeeded and -1 in case of error.'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='userdata' type='void *' info='a pointer to the userdata'/> - <arg name='f' type='xmlHashDeallocator' info='the deallocator function for replaced item (if any)'/> - </function> - <function name='xmlHashUpdateEntry2' file='hash' module='hash'> - <info>Add the @userdata to the hash @table. This can later be retrieved by using the (@name, @name2) tuple. Existing entry for this tuple will be removed and freed with @f if found.</info> - <return type='int' info='0 the addition succeeded and -1 in case of error.'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='name2' type='const xmlChar *' info='a second name of the userdata'/> - <arg name='userdata' type='void *' info='a pointer to the userdata'/> - <arg name='f' type='xmlHashDeallocator' info='the deallocator function for replaced item (if any)'/> - </function> - <function name='xmlHashUpdateEntry3' file='hash' module='hash'> - <info>Add the @userdata to the hash @table. This can later be retrieved by using the tuple (@name, @name2, @name3). Existing entry for this tuple will be removed and freed with @f if found.</info> - <return type='int' info='0 the addition succeeded and -1 in case of error.'/> - <arg name='table' type='xmlHashTablePtr' info='the hash table'/> - <arg name='name' type='const xmlChar *' info='the name of the userdata'/> - <arg name='name2' type='const xmlChar *' info='a second name of the userdata'/> - <arg name='name3' type='const xmlChar *' info='a third name of the userdata'/> - <arg name='userdata' type='void *' info='a pointer to the userdata'/> - <arg name='f' type='xmlHashDeallocator' info='the deallocator function for replaced item (if any)'/> - </function> - <function name='xmlIOFTPClose' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Close an FTP I/O channel</info> - <return type='int' info='0'/> - <arg name='context' type='void *' info='the I/O context'/> - </function> - <function name='xmlIOFTPMatch' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>check if the URI matches an FTP one</info> - <return type='int' info='1 if matches, 0 otherwise'/> - <arg name='filename' type='const char *' info='the URI for matching'/> - </function> - <function name='xmlIOFTPOpen' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>open an FTP I/O channel</info> - <return type='void *' info='an I/O context or NULL in case of error'/> - <arg name='filename' type='const char *' info='the URI for matching'/> - </function> - <function name='xmlIOFTPRead' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Read @len bytes to @buffer from the I/O channel.</info> - <return type='int' info='the number of bytes written'/> - <arg name='context' type='void *' info='the I/O context'/> - <arg name='buffer' type='char *' info='where to drop data'/> - <arg name='len' type='int' info='number of bytes to write'/> - </function> - <function name='xmlIOHTTPClose' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>Close an HTTP I/O channel</info> - <return type='int' info='0'/> - <arg name='context' type='void *' info='the I/O context'/> - </function> - <function name='xmlIOHTTPMatch' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>check if the URI matches an HTTP one</info> - <return type='int' info='1 if matches, 0 otherwise'/> - <arg name='filename' type='const char *' info='the URI for matching'/> - </function> - <function name='xmlIOHTTPOpen' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>open an HTTP I/O channel</info> - <return type='void *' info='an I/O context or NULL in case of error'/> - <arg name='filename' type='const char *' info='the URI for matching'/> - </function> - <function name='xmlIOHTTPOpenW' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_HTTP_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>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.</info> - <return type='void *' info='an I/O context or NULL in case of error.'/> - <arg name='post_uri' type='const char *' info='The destination URI for the document'/> - <arg name='compression' type='int' info='The compression desired for the document.'/> - </function> - <function name='xmlIOHTTPRead' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>Read @len bytes to @buffer from the I/O channel.</info> - <return type='int' info='the number of bytes written'/> - <arg name='context' type='void *' info='the I/O context'/> - <arg name='buffer' type='char *' info='where to drop data'/> - <arg name='len' type='int' info='number of bytes to write'/> - </function> - <function name='xmlIOParseDTD' file='parser' module='parser'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Load and parse a DTD</info> - <return type='xmlDtdPtr' info='the resulting xmlDtdPtr or NULL in case of error. @input will be freed by the function in any case.'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='the SAX handler block or NULL'/> - <arg name='input' type='xmlParserInputBufferPtr' info='an Input Buffer'/> - <arg name='enc' type='xmlCharEncoding' info='the charset encoding if known'/> - </function> - <function name='xmlInitCharEncodingHandlers' file='encoding' module='encoding'> - <info>Initialize the char encoding support, it registers the default encoding supported. NOTE: while public, this function usually doesn't need to be called in normal processing.</info> - <return type='void'/> - </function> - <function name='xmlInitGlobals' file='globals' module='globals'> - <info>Additional initialisation for multi-threading</info> - <return type='void'/> - </function> - <function name='xmlInitMemory' file='xmlmemory' module='xmlmemory'> - <info>Initialize the memory layer.</info> - <return type='int' info='0 on success'/> - </function> - <function name='xmlInitNodeInfoSeq' file='parser' module='parserInternals'> - <info>-- Initialize (set to initial state) node info sequence</info> - <return type='void'/> - <arg name='seq' type='xmlParserNodeInfoSeqPtr' info='a node info sequence pointer'/> - </function> - <function name='xmlInitParser' file='parser' module='parser'> - <info>Initialization function for the XML parser. This is not reentrant. Call once before processing in case of use in multithreaded programs.</info> - <return type='void'/> - </function> - <function name='xmlInitParserCtxt' file='parser' module='parserInternals'> - <info>Initialize a parser context</info> - <return type='int' info='0 in case of success and -1 in case of error'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlInitThreads' file='threads' module='threads'> - <info>xmlInitThreads() is used to to initialize all the thread related data of the libxml2 library.</info> - <return type='void'/> - </function> - <function name='xmlInitializeCatalog' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Do the catalog initialization. this function is not thread safe, catalog initialization should preferably be done once at startup</info> - <return type='void'/> - </function> - <function name='xmlInitializeGlobalState' file='globals' module='globals'> - <info>xmlInitializeGlobalState() initialize a global state with all the default values of the library.</info> - <return type='void'/> - <arg name='gs' type='xmlGlobalStatePtr' info='a pointer to a newly allocated global state'/> - </function> - <function name='xmlInitializePredefinedEntities' file='entities' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Set up the predefined entities. Deprecated call</info> - <return type='void'/> - </function> - <functype name='xmlInputCloseCallback' file='xmlIO' module='xmlIO'> - <info>Callback used in the I/O Input API to close the resource</info> - <return type='int' info='0 or -1 in case of error'/> - <arg name='context' type='void *' info='an Input context'/> - </functype> - <functype name='xmlInputMatchCallback' file='xmlIO' module='xmlIO'> - <info>Callback used in the I/O Input API to detect if the current handler can provide input fonctionnalities for this resource.</info> - <return type='int' info='1 if yes and 0 if another Input module should be used'/> - <arg name='filename' type='char const *' info='the filename or URI'/> - </functype> - <functype name='xmlInputOpenCallback' file='xmlIO' module='xmlIO'> - <info>Callback used in the I/O Input API to open the resource</info> - <return type='void *' info='an Input context or NULL in case or error'/> - <arg name='filename' type='char const *' info='the filename or URI'/> - </functype> - <functype name='xmlInputReadCallback' file='xmlIO' module='xmlIO'> - <info>Callback used in the I/O Input API to read the resource</info> - <return type='int' info='the number of bytes read or -1 in case of error'/> - <arg name='context' type='void *' info='an Input context'/> - <arg name='buffer' type='char *' info='the buffer to store data read'/> - <arg name='len' type='int' info='the length of the buffer in bytes'/> - </functype> - <function name='xmlIsBaseChar' file='chvalid' module='chvalid'> - <info>This function is DEPRECATED. Use xmlIsBaseChar_ch or xmlIsBaseCharQ instead</info> - <return type='int' info='true if argument valid, false otherwise'/> - <arg name='ch' type='unsigned int' info='character to validate'/> - </function> - <function name='xmlIsBlank' file='chvalid' module='chvalid'> - <info>This function is DEPRECATED. Use xmlIsBlank_ch or xmlIsBlankQ instead</info> - <return type='int' info='true if argument valid, false otherwise'/> - <arg name='ch' type='unsigned int' info='character to validate'/> - </function> - <function name='xmlIsBlankNode' file='tree' module='tree'> - <info>Checks whether this node is an empty or whitespace only (and possibly ignorable) text-node.</info> - <return type='int' info='1 yes, 0 no'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - </function> - <function name='xmlIsChar' file='chvalid' module='chvalid'> - <info>This function is DEPRECATED. Use xmlIsChar_ch or xmlIsCharQ instead</info> - <return type='int' info='true if argument valid, false otherwise'/> - <arg name='ch' type='unsigned int' info='character to validate'/> - </function> - <function name='xmlIsCombining' file='chvalid' module='chvalid'> - <info>This function is DEPRECATED. Use xmlIsCombiningQ instead</info> - <return type='int' info='true if argument valid, false otherwise'/> - <arg name='ch' type='unsigned int' info='character to validate'/> - </function> - <function name='xmlIsDigit' file='chvalid' module='chvalid'> - <info>This function is DEPRECATED. Use xmlIsDigit_ch or xmlIsDigitQ instead</info> - <return type='int' info='true if argument valid, false otherwise'/> - <arg name='ch' type='unsigned int' info='character to validate'/> - </function> - <function name='xmlIsExtender' file='chvalid' module='chvalid'> - <info>This function is DEPRECATED. Use xmlIsExtender_ch or xmlIsExtenderQ instead</info> - <return type='int' info='true if argument valid, false otherwise'/> - <arg name='ch' type='unsigned int' info='character to validate'/> - </function> - <function name='xmlIsID' file='valid' module='valid'> - <info>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.</info> - <return type='int' info='0 or 1 depending on the lookup result'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='elem' type='xmlNodePtr' info='the element carrying the attribute'/> - <arg name='attr' type='xmlAttrPtr' info='the attribute'/> - </function> - <function name='xmlIsIdeographic' file='chvalid' module='chvalid'> - <info>This function is DEPRECATED. Use xmlIsIdeographicQ instead</info> - <return type='int' info='true if argument valid, false otherwise'/> - <arg name='ch' type='unsigned int' info='character to validate'/> - </function> - <function name='xmlIsLetter' file='parserInternals' module='parserInternals'> - <info>Check whether the character is allowed by the production [84] Letter ::= BaseChar | Ideographic</info> - <return type='int' info='0 if not, non-zero otherwise'/> - <arg name='c' type='int' info='an unicode character (int)'/> - </function> - <function name='xmlIsMainThread' file='threads' module='threads'> - <info>xmlIsMainThread() check whether the current thread is the main thread.</info> - <return type='int' info='1 if the current thread is the main thread, 0 otherwise'/> - </function> - <function name='xmlIsMixedElement' file='valid' module='valid'> - <info>Search in the DtDs whether an element accept Mixed content (or ANY) basically if it is supposed to accept text childs</info> - <return type='int' info='0 if no, 1 if yes, and -1 if no element description is available'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='name' type='const xmlChar *' info='the element name'/> - </function> - <function name='xmlIsPubidChar' file='chvalid' module='chvalid'> - <info>This function is DEPRECATED. Use xmlIsPubidChar_ch or xmlIsPubidCharQ instead</info> - <return type='int' info='true if argument valid, false otherwise'/> - <arg name='ch' type='unsigned int' info='character to validate'/> - </function> - <function name='xmlIsRef' file='valid' module='valid'> - <info>Determine whether an attribute is of type Ref. In case we have DTD(s) then this is simple, otherwise we use an heuristic: name Ref (upper or lowercase).</info> - <return type='int' info='0 or 1 depending on the lookup result'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='elem' type='xmlNodePtr' info='the element carrying the attribute'/> - <arg name='attr' type='xmlAttrPtr' info='the attribute'/> - </function> - <function name='xmlIsXHTML' file='tree' module='xmlsave'> - <info>Try to find if the document correspond to an XHTML DTD</info> - <return type='int' info='1 if true, 0 if not and -1 in case of error'/> - <arg name='systemID' type='const xmlChar *' info='the system identifier'/> - <arg name='publicID' type='const xmlChar *' info='the public identifier'/> - </function> - <function name='xmlKeepBlanksDefault' file='parser' module='parserInternals'> - <info>Set and return the previous value for default blanks text nodes support. The 1.x version of the parser used an heuristic to try to detect ignorable white spaces. As a result the SAX callback was generating xmlSAX2IgnorableWhitespace() callbacks instead of characters() one, and when using the DOM output text nodes containing those blanks were not generated. The 2.x and later version will switch to the XML standard way and ignorableWhitespace() are only generated when running the parser in validating mode and when the current element doesn't allow CDATA or mixed content. This function is provided as a way to force the standard behavior on 1.X libs and to switch back to the old mode for compatibility when running 1.X client code on 2.X . Upgrade of 1.X code should be done by using xmlIsBlankNode() commodity function to detect the "empty" nodes generated. This value also affect autogeneration of indentation when saving code if blanks sections are kept, indentation is not generated.</info> - <return type='int' info='the last value for 0 for no substitution, 1 for substitution.'/> - <arg name='val' type='int' info='int 0 or 1'/> - </function> - <function name='xmlLineNumbersDefault' file='parser' module='parserInternals'> - <info>Set and return the previous value for enabling line numbers in elements contents. This may break on old application and is turned off by default.</info> - <return type='int' info='the last value for 0 for no substitution, 1 for substitution.'/> - <arg name='val' type='int' info='int 0 or 1'/> - </function> - <function name='xmlLinkGetData' file='list' module='list'> - <info>See Returns.</info> - <return type='void *' info='a pointer to the data referenced from this link'/> - <arg name='lk' type='xmlLinkPtr' info='a link'/> - </function> - <function name='xmlListAppend' file='list' module='list'> - <info>Insert data in the ordered list at the end for this value</info> - <return type='int' info='0 in case of success, 1 in case of failure'/> - <arg name='l' type='xmlListPtr' info='a list'/> - <arg name='data' type='void *' info='the data'/> - </function> - <function name='xmlListClear' file='list' module='list'> - <info>Remove the all data in the list</info> - <return type='void'/> - <arg name='l' type='xmlListPtr' info='a list'/> - </function> - <function name='xmlListCopy' file='list' module='list'> - <info>Move all the element from the old list in the new list</info> - <return type='int' info='0 in case of success 1 in case of error'/> - <arg name='cur' type='xmlListPtr' info='the new list'/> - <arg name='old' type='const xmlListPtr' info='the old list'/> - </function> - <function name='xmlListCreate' file='list' module='list'> - <info>Create a new list</info> - <return type='xmlListPtr' info='the new list or NULL in case of error'/> - <arg name='deallocator' type='xmlListDeallocator' info='an optional deallocator function'/> - <arg name='compare' type='xmlListDataCompare' info='an optional comparison function'/> - </function> - <functype name='xmlListDataCompare' file='list' module='list'> - <info>Callback function used to compare 2 data.</info> - <return type='int' info='0 is equality, -1 or 1 otherwise depending on the ordering.'/> - <arg name='data0' type='const void *' info='the first data'/> - <arg name='data1' type='const void *' info='the second data'/> - </functype> - <functype name='xmlListDeallocator' file='list' module='list'> - <info>Callback function used to free data from a list.</info> - <return type='void'/> - <arg name='lk' type='xmlLinkPtr' info='the data to deallocate'/> - </functype> - <function name='xmlListDelete' file='list' module='list'> - <info>Deletes the list and its associated data</info> - <return type='void'/> - <arg name='l' type='xmlListPtr' info='a list'/> - </function> - <function name='xmlListDup' file='list' module='list'> - <info>Duplicate the list</info> - <return type='xmlListPtr' info='a new copy of the list or NULL in case of error'/> - <arg name='old' type='const xmlListPtr' info='the list'/> - </function> - <function name='xmlListEmpty' file='list' module='list'> - <info>Is the list empty ?</info> - <return type='int' info='1 if the list is empty, 0 if not empty and -1 in case of error'/> - <arg name='l' type='xmlListPtr' info='a list'/> - </function> - <function name='xmlListEnd' file='list' module='list'> - <info>Get the last element in the list</info> - <return type='xmlLinkPtr' info='the last element in the list, or NULL'/> - <arg name='l' type='xmlListPtr' info='a list'/> - </function> - <function name='xmlListFront' file='list' module='list'> - <info>Get the first element in the list</info> - <return type='xmlLinkPtr' info='the first element in the list, or NULL'/> - <arg name='l' type='xmlListPtr' info='a list'/> - </function> - <function name='xmlListInsert' file='list' module='list'> - <info>Insert data in the ordered list at the beginning for this value</info> - <return type='int' info='0 in case of success, 1 in case of failure'/> - <arg name='l' type='xmlListPtr' info='a list'/> - <arg name='data' type='void *' info='the data'/> - </function> - <function name='xmlListMerge' file='list' module='list'> - <info>include all the elements of the second list in the first one and clear the second list</info> - <return type='void'/> - <arg name='l1' type='xmlListPtr' info='the original list'/> - <arg name='l2' type='xmlListPtr' info='the new list'/> - </function> - <function name='xmlListPopBack' file='list' module='list'> - <info>Removes the last element in the list</info> - <return type='void'/> - <arg name='l' type='xmlListPtr' info='a list'/> - </function> - <function name='xmlListPopFront' file='list' module='list'> - <info>Removes the first element in the list</info> - <return type='void'/> - <arg name='l' type='xmlListPtr' info='a list'/> - </function> - <function name='xmlListPushBack' file='list' module='list'> - <info>add the new data at the end of the list</info> - <return type='int' info='1 if successful, 0 otherwise'/> - <arg name='l' type='xmlListPtr' info='a list'/> - <arg name='data' type='void *' info='new data'/> - </function> - <function name='xmlListPushFront' file='list' module='list'> - <info>add the new data at the beginning of the list</info> - <return type='int' info='1 if successful, 0 otherwise'/> - <arg name='l' type='xmlListPtr' info='a list'/> - <arg name='data' type='void *' info='new data'/> - </function> - <function name='xmlListRemoveAll' file='list' module='list'> - <info>Remove the all instance associated to data in the list</info> - <return type='int' info='the number of deallocation, or 0 if not found'/> - <arg name='l' type='xmlListPtr' info='a list'/> - <arg name='data' type='void *' info='list data'/> - </function> - <function name='xmlListRemoveFirst' file='list' module='list'> - <info>Remove the first instance associated to data in the list</info> - <return type='int' info='1 if a deallocation occured, or 0 if not found'/> - <arg name='l' type='xmlListPtr' info='a list'/> - <arg name='data' type='void *' info='list data'/> - </function> - <function name='xmlListRemoveLast' file='list' module='list'> - <info>Remove the last instance associated to data in the list</info> - <return type='int' info='1 if a deallocation occured, or 0 if not found'/> - <arg name='l' type='xmlListPtr' info='a list'/> - <arg name='data' type='void *' info='list data'/> - </function> - <function name='xmlListReverse' file='list' module='list'> - <info>Reverse the order of the elements in the list</info> - <return type='void'/> - <arg name='l' type='xmlListPtr' info='a list'/> - </function> - <function name='xmlListReverseSearch' file='list' module='list'> - <info>Search the list in reverse order for an existing value of @data</info> - <return type='void *' info='the value associated to @data or NULL in case of error'/> - <arg name='l' type='xmlListPtr' info='a list'/> - <arg name='data' type='void *' info='a search value'/> - </function> - <function name='xmlListReverseWalk' file='list' module='list'> - <info>Walk all the element of the list in reverse order and apply the walker function to it</info> - <return type='void'/> - <arg name='l' type='xmlListPtr' info='a list'/> - <arg name='walker' type='xmlListWalker' info='a processing function'/> - <arg name='user' type='const void *' info='a user parameter passed to the walker function'/> - </function> - <function name='xmlListSearch' file='list' module='list'> - <info>Search the list for an existing value of @data</info> - <return type='void *' info='the value associated to @data or NULL in case of error'/> - <arg name='l' type='xmlListPtr' info='a list'/> - <arg name='data' type='void *' info='a search value'/> - </function> - <function name='xmlListSize' file='list' module='list'> - <info>Get the number of elements in the list</info> - <return type='int' info='the number of elements in the list or -1 in case of error'/> - <arg name='l' type='xmlListPtr' info='a list'/> - </function> - <function name='xmlListSort' file='list' module='list'> - <info>Sort all the elements in the list</info> - <return type='void'/> - <arg name='l' type='xmlListPtr' info='a list'/> - </function> - <function name='xmlListWalk' file='list' module='list'> - <info>Walk all the element of the first from first to last and apply the walker function to it</info> - <return type='void'/> - <arg name='l' type='xmlListPtr' info='a list'/> - <arg name='walker' type='xmlListWalker' info='a processing function'/> - <arg name='user' type='const void *' info='a user parameter passed to the walker function'/> - </function> - <functype name='xmlListWalker' file='list' module='list'> - <info>Callback function used when walking a list with xmlListWalk().</info> - <return type='int' info='0 to stop walking the list, 1 otherwise.'/> - <arg name='data' type='const void *' info='the data found in the list'/> - <arg name='user' type='const void *' info='extra user provided data to the walker'/> - </functype> - <function name='xmlLoadACatalog' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Load the catalog and build the associated data structures. This can be either an XML Catalog or an SGML Catalog It will recurse in SGML CATALOG entries. On the other hand XML Catalogs are not handled recursively.</info> - <return type='xmlCatalogPtr' info='the catalog parsed or NULL in case of error'/> - <arg name='filename' type='const char *' info='a file path'/> - </function> - <function name='xmlLoadCatalog' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Load the catalog and makes its definitions effective for the default external entity loader. It will recurse in SGML CATALOG entries. this function is not thread safe, catalog initialization should preferably be done once at startup</info> - <return type='int' info='0 in case of success -1 in case of error'/> - <arg name='filename' type='const char *' info='a file path'/> - </function> - <function name='xmlLoadCatalogs' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Load the catalogs and makes their definitions effective for the default external entity loader. this function is not thread safe, catalog initialization should preferably be done once at startup</info> - <return type='void'/> - <arg name='pathss' type='const char *' info='a list of directories separated by a colon or a space.'/> - </function> - <function name='xmlLoadExternalEntity' file='parser' module='xmlIO'> - <info>Load an external entity, note that the use of this function for unparsed entities may generate problems</info> - <return type='xmlParserInputPtr' info='the xmlParserInputPtr or NULL'/> - <arg name='URL' type='const char *' info='the URL for the entity to load'/> - <arg name='ID' type='const char *' info='the Public ID for the entity to load'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the context in which the entity is called or NULL'/> - </function> - <function name='xmlLoadSGMLSuperCatalog' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>Load an SGML super catalog. It won't expand CATALOG or DELEGATE references. This is only needed for manipulating SGML Super Catalogs like adding and removing CATALOG or DELEGATE entries.</info> - <return type='xmlCatalogPtr' info='the catalog parsed or NULL in case of error'/> - <arg name='filename' type='const char *' info='a file path'/> - </function> - <function name='xmlLockLibrary' file='threads' module='threads'> - <info>xmlLockLibrary() is used to take out a re-entrant lock on the libxml2 library.</info> - <return type='void'/> - </function> - <function name='xmlLsCountNode' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Count the children of @node.</info> - <return type='int' info='the number of children of @node.'/> - <arg name='node' type='xmlNodePtr' info='the node to count'/> - </function> - <function name='xmlLsOneNode' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dump to @output the type and name of @node.</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='node' type='xmlNodePtr' info='the node to dump'/> - </function> - <function name='xmlMallocAtomicLoc' file='xmlmemory' module='xmlmemory'> - <info>a malloc() equivalent, with logging of the allocation info.</info> - <return type='void *' info='a pointer to the allocated area or NULL in case of lack of memory.'/> - <arg name='size' type='size_t' info='an int specifying the size in byte to allocate.'/> - <arg name='file' type='const char *' info='the file name or NULL'/> - <arg name='line' type='int' info='the line number'/> - </function> - <functype name='xmlMallocFunc' file='xmlmemory' module='xmlmemory'> - <info>Signature for a malloc() implementation.</info> - <return type='void *' info='a pointer to the newly allocated block or NULL in case of error.'/> - <arg name='size' type='size_t' info='the size requested in bytes'/> - </functype> - <function name='xmlMallocLoc' file='xmlmemory' module='xmlmemory'> - <info>a malloc() equivalent, with logging of the allocation info.</info> - <return type='void *' info='a pointer to the allocated area or NULL in case of lack of memory.'/> - <arg name='size' type='size_t' info='an int specifying the size in byte to allocate.'/> - <arg name='file' type='const char *' info='the file name or NULL'/> - <arg name='line' type='int' info='the line number'/> - </function> - <function name='xmlMemBlocks' file='xmlmemory' module='xmlmemory'> - <info>Provides the number of memory areas currently allocated</info> - <return type='int' info='an int representing the number of blocks'/> - </function> - <function name='xmlMemDisplay' file='xmlmemory' module='xmlmemory'> - <info>show in-extenso the memory blocks allocated</info> - <return type='void'/> - <arg name='fp' type='FILE *' info='a FILE descriptor used as the output file, if NULL, the result is written to the file .memorylist'/> - </function> - <function name='xmlMemFree' file='xmlmemory' module='xmlmemory'> - <info>a free() equivalent, with error checking.</info> - <return type='void'/> - <arg name='ptr' type='void *' info='the memory block pointer'/> - </function> - <function name='xmlMemGet' file='xmlmemory' module='xmlmemory'> - <info>Provides the memory access functions set currently in use</info> - <return type='int' info='0 on success'/> - <arg name='freeFunc' type='xmlFreeFunc *' info='place to save the free() function in use'/> - <arg name='mallocFunc' type='xmlMallocFunc *' info='place to save the malloc() function in use'/> - <arg name='reallocFunc' type='xmlReallocFunc *' info='place to save the realloc() function in use'/> - <arg name='strdupFunc' type='xmlStrdupFunc *' info='place to save the strdup() function in use'/> - </function> - <function name='xmlMemMalloc' file='xmlmemory' module='xmlmemory'> - <info>a malloc() equivalent, with logging of the allocation info.</info> - <return type='void *' info='a pointer to the allocated area or NULL in case of lack of memory.'/> - <arg name='size' type='size_t' info='an int specifying the size in byte to allocate.'/> - </function> - <function name='xmlMemRealloc' file='xmlmemory' module='xmlmemory'> - <info>a realloc() equivalent, with logging of the allocation info.</info> - <return type='void *' info='a pointer to the allocated area or NULL in case of lack of memory.'/> - <arg name='ptr' type='void *' info='the initial memory block pointer'/> - <arg name='size' type='size_t' info='an int specifying the size in byte to allocate.'/> - </function> - <function name='xmlMemSetup' file='xmlmemory' module='xmlmemory'> - <info>Override the default memory access functions with a new set This has to be called before any other libxml routines ! Should this be blocked if there was already some allocations done ?</info> - <return type='int' info='0 on success'/> - <arg name='freeFunc' type='xmlFreeFunc' info='the free() function to use'/> - <arg name='mallocFunc' type='xmlMallocFunc' info='the malloc() function to use'/> - <arg name='reallocFunc' type='xmlReallocFunc' info='the realloc() function to use'/> - <arg name='strdupFunc' type='xmlStrdupFunc' info='the strdup() function to use'/> - </function> - <function name='xmlMemShow' file='xmlmemory' module='xmlmemory'> - <info>show a show display of the memory allocated, and dump the @nr last allocated areas which were not freed</info> - <return type='void'/> - <arg name='fp' type='FILE *' info='a FILE descriptor used as the output file'/> - <arg name='nr' type='int' info='number of entries to dump'/> - </function> - <function name='xmlMemStrdupLoc' file='xmlmemory' module='xmlmemory'> - <info>a strdup() equivalent, with logging of the allocation info.</info> - <return type='char *' info='a pointer to the new string or NULL if allocation error occurred.'/> - <arg name='str' type='const char *' info='the initial string pointer'/> - <arg name='file' type='const char *' info='the file name or NULL'/> - <arg name='line' type='int' info='the line number'/> - </function> - <function name='xmlMemUsed' file='xmlmemory' module='xmlmemory'> - <info>Provides the amount of memory currently allocated</info> - <return type='int' info='an int representing the amount of memory allocated.'/> - </function> - <function name='xmlMemoryDump' file='xmlmemory' module='xmlmemory'> - <info>Dump in-extenso the memory blocks allocated to the file .memorylist</info> - <return type='void'/> - </function> - <function name='xmlMemoryStrdup' file='xmlmemory' module='xmlmemory'> - <info>a strdup() equivalent, with logging of the allocation info.</info> - <return type='char *' info='a pointer to the new string or NULL if allocation error occurred.'/> - <arg name='str' type='const char *' info='the initial string pointer'/> - </function> - <function name='xmlModuleClose' file='xmlmodule' module='xmlmodule'> - <cond>defined(LIBXML_MODULES_ENABLED)</cond> - <info>The close operations unload the associated module and free the data associated to the module.</info> - <return type='int' info='0 in case of success, -1 in case of argument error and -2 if the module could not be closed/unloaded.'/> - <arg name='module' type='xmlModulePtr' info='the module handle'/> - </function> - <function name='xmlModuleFree' file='xmlmodule' module='xmlmodule'> - <cond>defined(LIBXML_MODULES_ENABLED)</cond> - <info>The free operations free the data associated to the module but does not unload the associated shared library which may still be in use.</info> - <return type='int' info='0 in case of success, -1 in case of argument error'/> - <arg name='module' type='xmlModulePtr' info='the module handle'/> - </function> - <function name='xmlModuleOpen' file='xmlmodule' module='xmlmodule'> - <cond>defined(LIBXML_MODULES_ENABLED)</cond> - <info>Opens a module/shared library given its name or path TODO: options are not yet implemented.</info> - <return type='xmlModulePtr' info='a handle for the module or NULL in case of error'/> - <arg name='name' type='const char *' info='the module name'/> - <arg name='options' type='int' info='a set of xmlModuleOption'/> - </function> - <function name='xmlModuleSymbol' file='xmlmodule' module='xmlmodule'> - <cond>defined(LIBXML_MODULES_ENABLED)</cond> - <info>Lookup for a symbol address in the given module</info> - <return type='int' info='0 if the symbol was found, or -1 in case of error'/> - <arg name='module' type='xmlModulePtr' info='the module'/> - <arg name='name' type='const char *' info='the name of the symbol'/> - <arg name='symbol' type='void **' info='the resulting symbol address'/> - </function> - <function name='xmlMutexLock' file='threads' module='threads'> - <info>xmlMutexLock() is used to lock a libxml2 token.</info> - <return type='void'/> - <arg name='tok' type='xmlMutexPtr' info='the simple mutex'/> - </function> - <function name='xmlMutexUnlock' file='threads' module='threads'> - <info>xmlMutexUnlock() is used to unlock a libxml2 token.</info> - <return type='void'/> - <arg name='tok' type='xmlMutexPtr' info='the simple mutex'/> - </function> - <function name='xmlNamespaceParseNCName' file='parserInternals' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>parse an XML namespace name. TODO: this seems not in use anymore, the namespace handling is done on top of the SAX interfaces, i.e. not on raw input. [NS 3] NCName ::= (Letter | '_') (NCNameChar)* [NS 4] NCNameChar ::= Letter | Digit | '.' | '-' | '_' | CombiningChar | Extender</info> - <return type='xmlChar *' info='the namespace name or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlNamespaceParseNSDef' file='parserInternals' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>parse a namespace prefix declaration TODO: this seems not in use anymore, the namespace handling is done on top of the SAX interfaces, i.e. not on raw input. [NS 1] NSDef ::= PrefixDef Eq SystemLiteral [NS 2] PrefixDef ::= 'xmlns' (':' NCName)?</info> - <return type='xmlChar *' info='the namespace name'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlNamespaceParseQName' file='parserInternals' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>TODO: this seems not in use anymore, the namespace handling is done on top of the SAX interfaces, i.e. not on raw input. parse an XML qualified name [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName</info> - <return type='xmlChar *' info='the local part, and prefix is updated to get the Prefix if any.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='prefix' type='xmlChar **' info='a xmlChar **'/> - </function> - <function name='xmlNanoFTPCheckResponse' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Check if there is a response from the FTP server after a command.</info> - <return type='int' info='the code number, or 0'/> - <arg name='ctx' type='void *' info='an FTP context'/> - </function> - <function name='xmlNanoFTPCleanup' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Cleanup the FTP protocol layer. This cleanup proxy informations.</info> - <return type='void'/> - </function> - <function name='xmlNanoFTPClose' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Close the connection and both control and transport</info> - <return type='int' info='-1 incase of error, 0 otherwise'/> - <arg name='ctx' type='void *' info='an FTP context'/> - </function> - <function name='xmlNanoFTPCloseConnection' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Close the data connection from the server</info> - <return type='int' info='-1 incase of error, 0 otherwise'/> - <arg name='ctx' type='void *' info='an FTP context'/> - </function> - <function name='xmlNanoFTPConnect' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Tries to open a control connection</info> - <return type='int' info='-1 in case of error, 0 otherwise'/> - <arg name='ctx' type='void *' info='an FTP context'/> - </function> - <function name='xmlNanoFTPConnectTo' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Tries to open a control connection to the given server/port</info> - <return type='void *' info='an fTP context or NULL if it failed'/> - <arg name='server' type='const char *' info='an FTP server name'/> - <arg name='port' type='int' info='the port (use 21 if 0)'/> - </function> - <function name='xmlNanoFTPCwd' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Tries to change the remote directory</info> - <return type='int' info='-1 incase of error, 1 if CWD worked, 0 if it failed'/> - <arg name='ctx' type='void *' info='an FTP context'/> - <arg name='directory' type='const char *' info='a directory on the server'/> - </function> - <function name='xmlNanoFTPDele' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Tries to delete an item (file or directory) from server</info> - <return type='int' info='-1 incase of error, 1 if DELE worked, 0 if it failed'/> - <arg name='ctx' type='void *' info='an FTP context'/> - <arg name='file' type='const char *' info='a file or directory on the server'/> - </function> - <function name='xmlNanoFTPFreeCtxt' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Frees the context after closing the connection.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='an FTP context'/> - </function> - <function name='xmlNanoFTPGet' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Fetch the given file from the server. All data are passed back in the callbacks. The last callback has a size of 0 block.</info> - <return type='int' info='-1 incase of error, 0 otherwise'/> - <arg name='ctx' type='void *' info='an FTP context'/> - <arg name='callback' type='ftpDataCallback' info='the user callback'/> - <arg name='userData' type='void *' info='the user callback data'/> - <arg name='filename' type='const char *' info='the file to retrieve'/> - </function> - <function name='xmlNanoFTPGetConnection' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Try to open a data connection to the server. Currently only passive mode is supported.</info> - <return type='int' info='-1 incase of error, 0 otherwise'/> - <arg name='ctx' type='void *' info='an FTP context'/> - </function> - <function name='xmlNanoFTPGetResponse' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Get the response from the FTP server after a command.</info> - <return type='int' info='the code number'/> - <arg name='ctx' type='void *' info='an FTP context'/> - </function> - <function name='xmlNanoFTPGetSocket' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Initiate fetch of the given file from the server.</info> - <return type='int' info='the socket for the data connection, or <0 in case of error'/> - <arg name='ctx' type='void *' info='an FTP context'/> - <arg name='filename' type='const char *' info='the file to retrieve (or NULL if path is in context).'/> - </function> - <function name='xmlNanoFTPInit' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Initialize the FTP protocol layer. Currently it just checks for proxy informations, and get the hostname</info> - <return type='void'/> - </function> - <function name='xmlNanoFTPList' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Do a listing on the server. All files info are passed back in the callbacks.</info> - <return type='int' info='-1 incase of error, 0 otherwise'/> - <arg name='ctx' type='void *' info='an FTP context'/> - <arg name='callback' type='ftpListCallback' info='the user callback'/> - <arg name='userData' type='void *' info='the user callback data'/> - <arg name='filename' type='const char *' info='optional files to list'/> - </function> - <function name='xmlNanoFTPNewCtxt' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Allocate and initialize a new FTP context.</info> - <return type='void *' info='an FTP context or NULL in case of error.'/> - <arg name='URL' type='const char *' info='The URL used to initialize the context'/> - </function> - <function name='xmlNanoFTPOpen' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Start to fetch the given ftp:// resource</info> - <return type='void *' info='an FTP context, or NULL'/> - <arg name='URL' type='const char *' info='the URL to the resource'/> - </function> - <function name='xmlNanoFTPProxy' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Setup the FTP proxy informations. This can also be done by using ftp_proxy ftp_proxy_user and ftp_proxy_password environment variables.</info> - <return type='void'/> - <arg name='host' type='const char *' info='the proxy host name'/> - <arg name='port' type='int' info='the proxy port'/> - <arg name='user' type='const char *' info='the proxy user name'/> - <arg name='passwd' type='const char *' info='the proxy password'/> - <arg name='type' type='int' info='the type of proxy 1 for using SITE, 2 for USER a@b'/> - </function> - <function name='xmlNanoFTPQuit' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Send a QUIT command to the server</info> - <return type='int' info='-1 in case of error, 0 otherwise'/> - <arg name='ctx' type='void *' info='an FTP context'/> - </function> - <function name='xmlNanoFTPRead' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>This function tries to read @len bytes from the existing FTP connection and saves them in @dest. This is a blocking call.</info> - <return type='int' info='the number of byte read. 0 is an indication of an end of connection. -1 indicates a parameter error.'/> - <arg name='ctx' type='void *' info='the FTP context'/> - <arg name='dest' type='void *' info='a buffer'/> - <arg name='len' type='int' info='the buffer length'/> - </function> - <function name='xmlNanoFTPScanProxy' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>(Re)Initialize the FTP Proxy context by parsing the URL and finding the protocol host port it indicates. Should be like ftp://myproxy/ or ftp://myproxy:3128/ A NULL URL cleans up proxy informations.</info> - <return type='void'/> - <arg name='URL' type='const char *' info='The proxy URL used to initialize the proxy context'/> - </function> - <function name='xmlNanoFTPUpdateURL' file='nanoftp' module='nanoftp'> - <cond>defined(LIBXML_FTP_ENABLED)</cond> - <info>Update an FTP context by parsing the URL and finding new path it indicates. If there is an error in the protocol, hostname, port or other information, the error is raised. It indicates a new connection has to be established.</info> - <return type='int' info='0 if Ok, -1 in case of error (other host).'/> - <arg name='ctx' type='void *' info='an FTP context'/> - <arg name='URL' type='const char *' info='The URL used to update the context'/> - </function> - <function name='xmlNanoHTTPAuthHeader' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>Get the authentication header of an HTTP context</info> - <return type='const char *' info='the stashed value of the WWW-Authenticate or Proxy-Authenticate header.'/> - <arg name='ctx' type='void *' info='the HTTP context'/> - </function> - <function name='xmlNanoHTTPCleanup' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>Cleanup the HTTP protocol layer.</info> - <return type='void'/> - </function> - <function name='xmlNanoHTTPClose' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>This function closes an HTTP context, it ends up the connection and free all data related to it.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the HTTP context'/> - </function> - <function name='xmlNanoHTTPContentLength' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>Provides the specified content length from the HTTP header.</info> - <return type='int' info='the specified content length from the HTTP header. Note that a value of -1 indicates that the content length element was not included in the response header.'/> - <arg name='ctx' type='void *' info='the HTTP context'/> - </function> - <function name='xmlNanoHTTPEncoding' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>Provides the specified encoding if specified in the HTTP headers.</info> - <return type='const char *' info='the specified encoding or NULL if not available'/> - <arg name='ctx' type='void *' info='the HTTP context'/> - </function> - <function name='xmlNanoHTTPFetch' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>This function try to fetch the indicated resource via HTTP GET and save it's content in the file.</info> - <return type='int' info='-1 in case of failure, 0 incase of success. The contentType, if provided must be freed by the caller'/> - <arg name='URL' type='const char *' info='The URL to load'/> - <arg name='filename' type='const char *' info='the filename where the content should be saved'/> - <arg name='contentType' type='char **' info='if available the Content-Type information will be returned at that location'/> - </function> - <function name='xmlNanoHTTPInit' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>Initialize the HTTP protocol layer. Currently it just checks for proxy informations</info> - <return type='void'/> - </function> - <function name='xmlNanoHTTPMethod' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>This function try to open a connection to the indicated resource via HTTP using the given @method, adding the given extra headers and the input buffer for the request content.</info> - <return type='void *' info='NULL in case of failure, otherwise a request handler. The contentType, if provided must be freed by the caller'/> - <arg name='URL' type='const char *' info='The URL to load'/> - <arg name='method' type='const char *' info='the HTTP method to use'/> - <arg name='input' type='const char *' info='the input string if any'/> - <arg name='contentType' type='char **' info='the Content-Type information IN and OUT'/> - <arg name='headers' type='const char *' info='the extra headers'/> - <arg name='ilen' type='int' info='input length'/> - </function> - <function name='xmlNanoHTTPMethodRedir' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>This function try to open a connection to the indicated resource via HTTP using the given @method, adding the given extra headers and the input buffer for the request content.</info> - <return type='void *' info='NULL in case of failure, otherwise a request handler. The contentType, or redir, if provided must be freed by the caller'/> - <arg name='URL' type='const char *' info='The URL to load'/> - <arg name='method' type='const char *' info='the HTTP method to use'/> - <arg name='input' type='const char *' info='the input string if any'/> - <arg name='contentType' type='char **' info='the Content-Type information IN and OUT'/> - <arg name='redir' type='char **' info='the redirected URL OUT'/> - <arg name='headers' type='const char *' info='the extra headers'/> - <arg name='ilen' type='int' info='input length'/> - </function> - <function name='xmlNanoHTTPMimeType' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>Provides the specified Mime-Type if specified in the HTTP headers.</info> - <return type='const char *' info='the specified Mime-Type or NULL if not available'/> - <arg name='ctx' type='void *' info='the HTTP context'/> - </function> - <function name='xmlNanoHTTPOpen' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>This function try to open a connection to the indicated resource via HTTP GET.</info> - <return type='void *' info='NULL in case of failure, otherwise a request handler. The contentType, if provided must be freed by the caller'/> - <arg name='URL' type='const char *' info='The URL to load'/> - <arg name='contentType' type='char **' info='if available the Content-Type information will be returned at that location'/> - </function> - <function name='xmlNanoHTTPOpenRedir' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>This function try to open a connection to the indicated resource via HTTP GET.</info> - <return type='void *' info='NULL in case of failure, otherwise a request handler. The contentType, if provided must be freed by the caller'/> - <arg name='URL' type='const char *' info='The URL to load'/> - <arg name='contentType' type='char **' info='if available the Content-Type information will be returned at that location'/> - <arg name='redir' type='char **' info='if available the redirected URL will be returned'/> - </function> - <function name='xmlNanoHTTPRead' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>This function tries to read @len bytes from the existing HTTP connection and saves them in @dest. This is a blocking call.</info> - <return type='int' info='the number of byte read. 0 is an indication of an end of connection. -1 indicates a parameter error.'/> - <arg name='ctx' type='void *' info='the HTTP context'/> - <arg name='dest' type='void *' info='a buffer'/> - <arg name='len' type='int' info='the buffer length'/> - </function> - <function name='xmlNanoHTTPRedir' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>Provides the specified redirection URL if available from the HTTP header.</info> - <return type='const char *' info='the specified redirection URL or NULL if not redirected.'/> - <arg name='ctx' type='void *' info='the HTTP context'/> - </function> - <function name='xmlNanoHTTPReturnCode' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>Get the latest HTTP return code received</info> - <return type='int' info='the HTTP return code for the request.'/> - <arg name='ctx' type='void *' info='the HTTP context'/> - </function> - <function name='xmlNanoHTTPSave' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>This function saves the output of the HTTP transaction to a file It closes and free the context at the end</info> - <return type='int' info='-1 in case of failure, 0 incase of success.'/> - <arg name='ctxt' type='void *' info='the HTTP context'/> - <arg name='filename' type='const char *' info='the filename where the content should be saved'/> - </function> - <function name='xmlNanoHTTPScanProxy' file='nanohttp' module='nanohttp'> - <cond>defined(LIBXML_HTTP_ENABLED)</cond> - <info>(Re)Initialize the HTTP Proxy context by parsing the URL and finding the protocol host port it indicates. Should be like http://myproxy/ or http://myproxy:3128/ A NULL URL cleans up proxy informations.</info> - <return type='void'/> - <arg name='URL' type='const char *' info='The proxy URL used to initialize the proxy context'/> - </function> - <function name='xmlNewAutomata' file='xmlautomata' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED) && defined(LIBXML_AUTOMATA_ENABLED)</cond> - <info>Create a new automata</info> - <return type='xmlAutomataPtr' info='the new object or NULL in case of failure'/> - </function> - <function name='xmlNewCDataBlock' file='tree' module='tree'> - <info>Creation of a new node containing a CDATA block.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='content' type='const xmlChar *' info='the CDATA block content content'/> - <arg name='len' type='int' info='the length of the block'/> - </function> - <function name='xmlNewCatalog' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>create a new Catalog.</info> - <return type='xmlCatalogPtr' info='the xmlCatalogPtr or NULL in case of error'/> - <arg name='sgml' type='int' info='should this create an SGML catalog'/> - </function> - <function name='xmlNewCharEncodingHandler' file='encoding' module='encoding'> - <info>Create and registers an xmlCharEncodingHandler.</info> - <return type='xmlCharEncodingHandlerPtr' info='the xmlCharEncodingHandlerPtr created (or NULL in case of error).'/> - <arg name='name' type='const char *' info='the encoding name, in UTF-8 format (ASCII actually)'/> - <arg name='input' type='xmlCharEncodingInputFunc' info='the xmlCharEncodingInputFunc to read that encoding'/> - <arg name='output' type='xmlCharEncodingOutputFunc' info='the xmlCharEncodingOutputFunc to write that encoding'/> - </function> - <function name='xmlNewCharRef' file='tree' module='tree'> - <info>Creation of a new character reference node.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='name' type='const xmlChar *' info='the char ref string, starting with # or "&# ... ;"'/> - </function> - <function name='xmlNewChild' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>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.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='parent' type='xmlNodePtr' info='the parent node'/> - <arg name='ns' type='xmlNsPtr' info='a namespace if any'/> - <arg name='name' type='const xmlChar *' info='the name of the child'/> - <arg name='content' type='const xmlChar *' info='the XML content of the child if any.'/> - </function> - <function name='xmlNewComment' file='tree' module='tree'> - <info>Creation of a new node containing a comment.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='content' type='const xmlChar *' info='the comment content'/> - </function> - <function name='xmlNewDoc' file='tree' module='tree'> - <info>Creates a new XML document</info> - <return type='xmlDocPtr' info='a new document'/> - <arg name='version' type='const xmlChar *' info='xmlChar string giving the version of XML "1.0"'/> - </function> - <function name='xmlNewDocComment' file='tree' module='tree'> - <info>Creation of a new node containing a comment within a document.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='content' type='const xmlChar *' info='the comment content'/> - </function> - <function name='xmlNewDocElementContent' file='valid' module='valid'> - <info>Allocate an element content structure for the document.</info> - <return type='xmlElementContentPtr' info='NULL if not, otherwise the new element content structure'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='name' type='const xmlChar *' info='the subelement name or NULL'/> - <arg name='type' type='xmlElementContentType' info='the type of element content decl'/> - </function> - <function name='xmlNewDocFragment' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>Creation of a new Fragment node.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='doc' type='xmlDocPtr' info='the document owning the fragment'/> - </function> - <function name='xmlNewDocNode' file='tree' module='tree'> - <info>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.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='ns' type='xmlNsPtr' info='namespace if any'/> - <arg name='name' type='const xmlChar *' info='the node name'/> - <arg name='content' type='const xmlChar *' info='the XML text content if any'/> - </function> - <function name='xmlNewDocNodeEatName' file='tree' module='tree'> - <info>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.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='ns' type='xmlNsPtr' info='namespace if any'/> - <arg name='name' type='xmlChar *' info='the node name'/> - <arg name='content' type='const xmlChar *' info='the XML text content if any'/> - </function> - <function name='xmlNewDocPI' file='tree' module='tree'> - <info>Creation of a processing instruction element.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='doc' type='xmlDocPtr' info='the target document'/> - <arg name='name' type='const xmlChar *' info='the processing instruction name'/> - <arg name='content' type='const xmlChar *' info='the PI content'/> - </function> - <function name='xmlNewDocProp' file='tree' module='tree'> - <info>Create a new property carried by a document.</info> - <return type='xmlAttrPtr' info='a pointer to the attribute'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='name' type='const xmlChar *' info='the name of the attribute'/> - <arg name='value' type='const xmlChar *' info='the value of the attribute'/> - </function> - <function name='xmlNewDocRawNode' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>Creation of a new node element within a document. @ns and @content are optional (NULL).</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='ns' type='xmlNsPtr' info='namespace if any'/> - <arg name='name' type='const xmlChar *' info='the node name'/> - <arg name='content' type='const xmlChar *' info='the text content if any'/> - </function> - <function name='xmlNewDocText' file='tree' module='tree'> - <info>Creation of a new text node within a document.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='content' type='const xmlChar *' info='the text content'/> - </function> - <function name='xmlNewDocTextLen' file='tree' module='tree'> - <info>Creation of a new text node with an extra content length parameter. The text node pertain to a given document.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='content' type='const xmlChar *' info='the text content'/> - <arg name='len' type='int' info='the text len.'/> - </function> - <function name='xmlNewDtd' file='tree' module='tree'> - <info>Creation of a new DTD for the external subset. To create an internal subset, use xmlCreateIntSubset().</info> - <return type='xmlDtdPtr' info='a pointer to the new DTD structure'/> - <arg name='doc' type='xmlDocPtr' info='the document pointer'/> - <arg name='name' type='const xmlChar *' info='the DTD name'/> - <arg name='ExternalID' type='const xmlChar *' info='the external ID'/> - <arg name='SystemID' type='const xmlChar *' info='the system ID'/> - </function> - <function name='xmlNewElementContent' file='valid' module='valid'> - <info>Allocate an element content structure. Deprecated in favor of xmlNewDocElementContent</info> - <return type='xmlElementContentPtr' info='NULL if not, otherwise the new element content structure'/> - <arg name='name' type='const xmlChar *' info='the subelement name or NULL'/> - <arg name='type' type='xmlElementContentType' info='the type of element content decl'/> - </function> - <function name='xmlNewEntityInputStream' file='parserInternals' module='parserInternals'> - <info>Create a new input stream based on an xmlEntityPtr</info> - <return type='xmlParserInputPtr' info='the new input stream or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='entity' type='xmlEntityPtr' info='an Entity pointer'/> - </function> - <function name='xmlNewGlobalNs' file='tree' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Creation of a Namespace, the old way using PI and without scoping DEPRECATED !!!</info> - <return type='xmlNsPtr' info='NULL this functionality had been removed'/> - <arg name='doc' type='xmlDocPtr' info='the document carrying the namespace'/> - <arg name='href' type='const xmlChar *' info='the URI associated'/> - <arg name='prefix' type='const xmlChar *' info='the prefix for the namespace'/> - </function> - <function name='xmlNewIOInputStream' file='parser' module='parserInternals'> - <info>Create a new input stream structure encapsulating the @input into a stream suitable for the parser.</info> - <return type='xmlParserInputPtr' info='the new input stream or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='input' type='xmlParserInputBufferPtr' info='an I/O Input'/> - <arg name='enc' type='xmlCharEncoding' info='the charset encoding if known'/> - </function> - <function name='xmlNewInputFromFile' file='parserInternals' module='parserInternals'> - <info>Create a new input stream based on a file or an URL.</info> - <return type='xmlParserInputPtr' info='the new input stream or NULL in case of error'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='filename' type='const char *' info='the filename to use as entity'/> - </function> - <function name='xmlNewInputStream' file='parserInternals' module='parserInternals'> - <info>Create a new input stream structure</info> - <return type='xmlParserInputPtr' info='the new input stream or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlNewMutex' file='threads' module='threads'> - <info>xmlNewMutex() is used to allocate a libxml2 token struct for use in synchronizing access to data.</info> - <return type='xmlMutexPtr' info='a new simple mutex pointer or NULL in case of error'/> - </function> - <function name='xmlNewNode' file='tree' module='tree'> - <info>Creation of a new node element. @ns is optional (NULL).</info> - <return type='xmlNodePtr' info='a pointer to the new node object. Uses xmlStrdup() to make copy of @name.'/> - <arg name='ns' type='xmlNsPtr' info='namespace if any'/> - <arg name='name' type='const xmlChar *' info='the node name'/> - </function> - <function name='xmlNewNodeEatName' file='tree' module='tree'> - <info>Creation of a new node element. @ns is optional (NULL).</info> - <return type='xmlNodePtr' info='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.'/> - <arg name='ns' type='xmlNsPtr' info='namespace if any'/> - <arg name='name' type='xmlChar *' info='the node name'/> - </function> - <function name='xmlNewNs' file='tree' module='tree'> - <info>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. We use href==NULL in the case of an element creation where the namespace was not defined.</info> - <return type='xmlNsPtr' info='a new namespace pointer or NULL'/> - <arg name='node' type='xmlNodePtr' info='the element carrying the namespace'/> - <arg name='href' type='const xmlChar *' info='the URI associated'/> - <arg name='prefix' type='const xmlChar *' info='the prefix for the namespace'/> - </function> - <function name='xmlNewNsProp' file='tree' module='tree'> - <info>Create a new property tagged with a namespace and carried by a node.</info> - <return type='xmlAttrPtr' info='a pointer to the attribute'/> - <arg name='node' type='xmlNodePtr' info='the holding node'/> - <arg name='ns' type='xmlNsPtr' info='the namespace'/> - <arg name='name' type='const xmlChar *' info='the name of the attribute'/> - <arg name='value' type='const xmlChar *' info='the value of the attribute'/> - </function> - <function name='xmlNewNsPropEatName' file='tree' module='tree'> - <info>Create a new property tagged with a namespace and carried by a node.</info> - <return type='xmlAttrPtr' info='a pointer to the attribute'/> - <arg name='node' type='xmlNodePtr' info='the holding node'/> - <arg name='ns' type='xmlNsPtr' info='the namespace'/> - <arg name='name' type='xmlChar *' info='the name of the attribute'/> - <arg name='value' type='const xmlChar *' info='the value of the attribute'/> - </function> - <function name='xmlNewPI' file='tree' module='tree'> - <info>Creation of a processing instruction element. Use xmlDocNewPI preferably to get string interning</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='name' type='const xmlChar *' info='the processing instruction name'/> - <arg name='content' type='const xmlChar *' info='the PI content'/> - </function> - <function name='xmlNewParserCtxt' file='parser' module='parserInternals'> - <info>Allocate and initialize a new parser context.</info> - <return type='xmlParserCtxtPtr' info='the xmlParserCtxtPtr or NULL'/> - </function> - <function name='xmlNewProp' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Create a new property carried by a node.</info> - <return type='xmlAttrPtr' info='a pointer to the attribute'/> - <arg name='node' type='xmlNodePtr' info='the holding node'/> - <arg name='name' type='const xmlChar *' info='the name of the attribute'/> - <arg name='value' type='const xmlChar *' info='the value of the attribute'/> - </function> - <function name='xmlNewRMutex' file='threads' module='threads'> - <info>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.</info> - <return type='xmlRMutexPtr' info='the new reentrant mutex pointer or NULL in case of error'/> - </function> - <function name='xmlNewReference' file='tree' module='tree'> - <info>Creation of a new reference node.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='name' type='const xmlChar *' info='the reference name, or the reference string with & and ;'/> - </function> - <function name='xmlNewStringInputStream' file='parserInternals' module='parserInternals'> - <info>Create a new input stream based on a memory buffer.</info> - <return type='xmlParserInputPtr' info='the new input stream'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='buffer' type='const xmlChar *' info='an memory buffer'/> - </function> - <function name='xmlNewText' file='tree' module='tree'> - <info>Creation of a new text node.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='content' type='const xmlChar *' info='the text content'/> - </function> - <function name='xmlNewTextChild' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>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.</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='parent' type='xmlNodePtr' info='the parent node'/> - <arg name='ns' type='xmlNsPtr' info='a namespace if any'/> - <arg name='name' type='const xmlChar *' info='the name of the child'/> - <arg name='content' type='const xmlChar *' info='the text content of the child if any.'/> - </function> - <function name='xmlNewTextLen' file='tree' module='tree'> - <info>Creation of a new text node with an extra parameter for the content's length</info> - <return type='xmlNodePtr' info='a pointer to the new node object.'/> - <arg name='content' type='const xmlChar *' info='the text content'/> - <arg name='len' type='int' info='the text len.'/> - </function> - <function name='xmlNewTextReader' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Create an xmlTextReader structure fed with @input</info> - <return type='xmlTextReaderPtr' info='the new xmlTextReaderPtr or NULL in case of error'/> - <arg name='input' type='xmlParserInputBufferPtr' info='the xmlParserInputBufferPtr used to read data'/> - <arg name='URI' type='const char *' info='the URI information for the source if available'/> - </function> - <function name='xmlNewTextReaderFilename' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Create an xmlTextReader structure fed with the resource at @URI</info> - <return type='xmlTextReaderPtr' info='the new xmlTextReaderPtr or NULL in case of error'/> - <arg name='URI' type='const char *' info='the URI of the resource to process'/> - </function> - <function name='xmlNewTextWriter' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Create a new xmlNewTextWriter structure using an xmlOutputBufferPtr NOTE: the @out parameter will be deallocated when the writer is closed (if the call succeed.)</info> - <return type='xmlTextWriterPtr' info='the new xmlTextWriterPtr or NULL in case of error'/> - <arg name='out' type='xmlOutputBufferPtr' info='an xmlOutputBufferPtr'/> - </function> - <function name='xmlNewTextWriterDoc' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Create a new xmlNewTextWriter structure with @*doc as output</info> - <return type='xmlTextWriterPtr' info='the new xmlTextWriterPtr or NULL in case of error'/> - <arg name='doc' type='xmlDocPtr *' info='address of a xmlDocPtr to hold the new XML document tree'/> - <arg name='compression' type='int' info='compress the output?'/> - </function> - <function name='xmlNewTextWriterFilename' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Create a new xmlNewTextWriter structure with @uri as output</info> - <return type='xmlTextWriterPtr' info='the new xmlTextWriterPtr or NULL in case of error'/> - <arg name='uri' type='const char *' info='the URI of the resource for the output'/> - <arg name='compression' type='int' info='compress the output?'/> - </function> - <function name='xmlNewTextWriterMemory' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Create a new xmlNewTextWriter structure with @buf as output TODO: handle compression</info> - <return type='xmlTextWriterPtr' info='the new xmlTextWriterPtr or NULL in case of error'/> - <arg name='buf' type='xmlBufferPtr' info='xmlBufferPtr'/> - <arg name='compression' type='int' info='compress the output?'/> - </function> - <function name='xmlNewTextWriterPushParser' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Create a new xmlNewTextWriter structure with @ctxt as output NOTE: the @ctxt context will be freed with the resulting writer (if the call succeeds). TODO: handle compression</info> - <return type='xmlTextWriterPtr' info='the new xmlTextWriterPtr or NULL in case of error'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='xmlParserCtxtPtr to hold the new XML document tree'/> - <arg name='compression' type='int' info='compress the output?'/> - </function> - <function name='xmlNewTextWriterTree' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Create a new xmlNewTextWriter structure with @doc as output starting at @node</info> - <return type='xmlTextWriterPtr' info='the new xmlTextWriterPtr or NULL in case of error'/> - <arg name='doc' type='xmlDocPtr' info='xmlDocPtr'/> - <arg name='node' type='xmlNodePtr' info='xmlNodePtr or NULL for doc->children'/> - <arg name='compression' type='int' info='compress the output?'/> - </function> - <function name='xmlNewValidCtxt' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Allocate a validation context structure.</info> - <return type='xmlValidCtxtPtr' info='NULL if not, otherwise the new validation context structure'/> - </function> - <function name='xmlNextChar' file='parserInternals' module='parserInternals'> - <info>Skip to the next char input char.</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the XML parser context'/> - </function> - <function name='xmlNoNetExternalEntityLoader' file='xmlIO' module='xmlIO'> - <info>A specific entity loader disabling network accesses, though still allowing local catalog accesses for resolution.</info> - <return type='xmlParserInputPtr' info='a new allocated xmlParserInputPtr, or NULL.'/> - <arg name='URL' type='const char *' info='the URL for the entity to load'/> - <arg name='ID' type='const char *' info='the System ID for the entity to load'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the context in which the entity is called or NULL'/> - </function> - <function name='xmlNodeAddContent' file='tree' module='tree'> - <info>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.</info> - <return type='void'/> - <arg name='cur' type='xmlNodePtr' info='the node being modified'/> - <arg name='content' type='const xmlChar *' info='extra content'/> - </function> - <function name='xmlNodeAddContentLen' file='tree' module='tree'> - <info>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.</info> - <return type='void'/> - <arg name='cur' type='xmlNodePtr' info='the node being modified'/> - <arg name='content' type='const xmlChar *' info='extra content'/> - <arg name='len' type='int' info='the size of @content'/> - </function> - <function name='xmlNodeBufGetContent' file='tree' module='tree'> - <info>Read the value of a node @cur, 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. Fills up the buffer @buffer with this value</info> - <return type='int' info='0 in case of success and -1 in case of error.'/> - <arg name='buffer' type='xmlBufferPtr' info='a buffer'/> - <arg name='cur' type='xmlNodePtr' info='the node being read'/> - </function> - <function name='xmlNodeDump' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML node, recursive behaviour,children are printed too. Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1 or xmlKeepBlanksDefault(0) was called</info> - <return type='int' info='the number of bytes written to the buffer or -1 in case of error'/> - <arg name='buf' type='xmlBufferPtr' info='the XML buffer output'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='cur' type='xmlNodePtr' info='the current node'/> - <arg name='level' type='int' info='the imbrication level for indenting'/> - <arg name='format' type='int' info='is formatting allowed'/> - </function> - <function name='xmlNodeDumpOutput' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML node, recursive behaviour, children are printed too. Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1 or xmlKeepBlanksDefault(0) was called</info> - <return type='void'/> - <arg name='buf' type='xmlOutputBufferPtr' info='the XML buffer output'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='cur' type='xmlNodePtr' info='the current node'/> - <arg name='level' type='int' info='the imbrication level for indenting'/> - <arg name='format' type='int' info='is formatting allowed'/> - <arg name='encoding' type='const char *' info='an optional encoding string'/> - </function> - <function name='xmlNodeGetBase' file='tree' module='tree'> - <info>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 xmlDocumentGetBase() for this</info> - <return type='xmlChar *' info='a pointer to the base URL, or NULL if not found It's up to the caller to free the memory with xmlFree().'/> - <arg name='doc' type='xmlDocPtr' info='the document the node pertains to'/> - <arg name='cur' type='xmlNodePtr' info='the node being checked'/> - </function> - <function name='xmlNodeGetContent' file='tree' module='tree'> - <info>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.</info> - <return type='xmlChar *' info='a new #xmlChar * or NULL if no content is available. It's up to the caller to free the memory with xmlFree().'/> - <arg name='cur' type='xmlNodePtr' info='the node being read'/> - </function> - <function name='xmlNodeGetLang' file='tree' module='tree'> - <info>Searches the language of a node, i.e. the values of the xml:lang attribute or the one carried by the nearest ancestor.</info> - <return type='xmlChar *' info='a pointer to the lang value, or NULL if not found It's up to the caller to free the memory with xmlFree().'/> - <arg name='cur' type='xmlNodePtr' info='the node being checked'/> - </function> - <function name='xmlNodeGetSpacePreserve' file='tree' module='tree'> - <info>Searches the space preserving behaviour of a node, i.e. the values of the xml:space attribute or the one carried by the nearest ancestor.</info> - <return type='int' info='-1 if xml:space is not inherited, 0 if "default", 1 if "preserve"'/> - <arg name='cur' type='xmlNodePtr' info='the node being checked'/> - </function> - <function name='xmlNodeIsText' file='tree' module='tree'> - <info>Is this node a Text node ?</info> - <return type='int' info='1 yes, 0 no'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - </function> - <function name='xmlNodeListGetRawString' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>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.</info> - <return type='xmlChar *' info='a pointer to the string copy, the caller must free it with xmlFree().'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='list' type='xmlNodePtr' info='a Node list'/> - <arg name='inLine' type='int' info='should we replace entity contents or show their external form'/> - </function> - <function name='xmlNodeListGetString' file='tree' module='tree'> - <info>Build the string equivalent to the text contained in the Node list made of TEXTs and ENTITY_REFs</info> - <return type='xmlChar *' info='a pointer to the string copy, the caller must free it with xmlFree().'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='list' type='xmlNodePtr' info='a Node list'/> - <arg name='inLine' type='int' info='should we replace entity contents or show their external form'/> - </function> - <function name='xmlNodeSetBase' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED)</cond> - <info>Set (or reset) the base URI of a node, i.e. the value of the xml:base attribute.</info> - <return type='void'/> - <arg name='cur' type='xmlNodePtr' info='the node being changed'/> - <arg name='uri' type='const xmlChar *' info='the new base URI'/> - </function> - <function name='xmlNodeSetContent' file='tree' module='tree'> - <info>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().</info> - <return type='void'/> - <arg name='cur' type='xmlNodePtr' info='the node being modified'/> - <arg name='content' type='const xmlChar *' info='the new value of the content'/> - </function> - <function name='xmlNodeSetContentLen' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>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().</info> - <return type='void'/> - <arg name='cur' type='xmlNodePtr' info='the node being modified'/> - <arg name='content' type='const xmlChar *' info='the new value of the content'/> - <arg name='len' type='int' info='the size of @content'/> - </function> - <function name='xmlNodeSetLang' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>Set the language of a node, i.e. the values of the xml:lang attribute.</info> - <return type='void'/> - <arg name='cur' type='xmlNodePtr' info='the node being changed'/> - <arg name='lang' type='const xmlChar *' info='the language description'/> - </function> - <function name='xmlNodeSetName' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>Set (or reset) the name of a node.</info> - <return type='void'/> - <arg name='cur' type='xmlNodePtr' info='the node being changed'/> - <arg name='name' type='const xmlChar *' info='the new tag name'/> - </function> - <function name='xmlNodeSetSpacePreserve' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>Set (or reset) the space preserving behaviour of a node, i.e. the value of the xml:space attribute.</info> - <return type='void'/> - <arg name='cur' type='xmlNodePtr' info='the node being changed'/> - <arg name='val' type='int' info='the xml:space value ("0": default, 1: "preserve")'/> - </function> - <function name='xmlNormalizeURIPath' file='uri' module='uri'> - <info>Applies the 5 normalization steps to a path string--that is, RFC 2396 Section 5.2, steps 6.c through 6.g. Normalization occurs directly on the string, no new allocation is done</info> - <return type='int' info='0 or an error code'/> - <arg name='path' type='char *' info='pointer to the path string'/> - </function> - <function name='xmlNormalizeWindowsPath' file='xmlIO' module='xmlIO'> - <info>This function is obsolete. Please see xmlURIFromPath in uri.c for a better solution.</info> - <return type='xmlChar *' info='a canonicalized version of the path'/> - <arg name='path' type='const xmlChar *' info='the input file path'/> - </function> - <function name='xmlOutputBufferClose' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>flushes and close the output I/O channel and free up all the associated resources</info> - <return type='int' info='the number of byte written or -1 in case of error.'/> - <arg name='out' type='xmlOutputBufferPtr' info='a buffered output'/> - </function> - <function name='xmlOutputBufferCreateBuffer' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Create a buffered output for the progressive saving to a xmlBuffer</info> - <return type='xmlOutputBufferPtr' info='the new parser output or NULL'/> - <arg name='buffer' type='xmlBufferPtr' info='a xmlBufferPtr'/> - <arg name='encoder' type='xmlCharEncodingHandlerPtr' info='the encoding converter or NULL'/> - </function> - <function name='xmlOutputBufferCreateFd' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Create a buffered output for the progressive saving to a file descriptor</info> - <return type='xmlOutputBufferPtr' info='the new parser output or NULL'/> - <arg name='fd' type='int' info='a file descriptor number'/> - <arg name='encoder' type='xmlCharEncodingHandlerPtr' info='the encoding converter or NULL'/> - </function> - <function name='xmlOutputBufferCreateFile' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Create a buffered output for the progressive saving to a FILE * buffered C I/O</info> - <return type='xmlOutputBufferPtr' info='the new parser output or NULL'/> - <arg name='file' type='FILE *' info='a FILE*'/> - <arg name='encoder' type='xmlCharEncodingHandlerPtr' info='the encoding converter or NULL'/> - </function> - <function name='xmlOutputBufferCreateFilename' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Create a buffered output for the progressive saving of a file If filename is "-' then we use stdout as the output. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. TODO: currently if compression is set, the library only support writing to a local file.</info> - <return type='xmlOutputBufferPtr' info='the new output or NULL'/> - <arg name='URI' type='const char *' info='a C string containing the URI or filename'/> - <arg name='encoder' type='xmlCharEncodingHandlerPtr' info='the encoding converter or NULL'/> - <arg name='compression' type='int' info='the compression ration (0 none, 9 max).'/> - </function> - <function name='xmlOutputBufferCreateFilenameDefault' file='globals' module='xmlIO'> - <info>Registers a callback for URI output file handling</info> - <return type='xmlOutputBufferCreateFilenameFunc' info='the old value of the registration function'/> - <arg name='func' type='xmlOutputBufferCreateFilenameFunc' info='function pointer to the new OutputBufferCreateFilenameFunc'/> - </function> - <functype name='xmlOutputBufferCreateFilenameFunc' file='globals' module='globals'> - <info></info> - <return type='xmlOutputBufferPtr' info=''/> - <arg name='URI' type='const char *' info=''/> - <arg name='encoder' type='xmlCharEncodingHandlerPtr' info=''/> - <arg name='compression' type='int' info=''/> - </functype> - <function name='xmlOutputBufferCreateIO' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Create a buffered output for the progressive saving to an I/O handler</info> - <return type='xmlOutputBufferPtr' info='the new parser output or NULL'/> - <arg name='iowrite' type='xmlOutputWriteCallback' info='an I/O write function'/> - <arg name='ioclose' type='xmlOutputCloseCallback' info='an I/O close function'/> - <arg name='ioctx' type='void *' info='an I/O handler'/> - <arg name='encoder' type='xmlCharEncodingHandlerPtr' info='the charset encoding if known'/> - </function> - <function name='xmlOutputBufferFlush' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>flushes the output I/O channel</info> - <return type='int' info='the number of byte written or -1 in case of error.'/> - <arg name='out' type='xmlOutputBufferPtr' info='a buffered output'/> - </function> - <function name='xmlOutputBufferWrite' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Write the content of the array in the output I/O buffer This routine handle the I18N transcoding from internal UTF-8 The buffer is lossless, i.e. will store in case of partial or delayed writes.</info> - <return type='int' info='the number of chars immediately written, or -1 in case of error.'/> - <arg name='out' type='xmlOutputBufferPtr' info='a buffered parser output'/> - <arg name='len' type='int' info='the size in bytes of the array.'/> - <arg name='buf' type='const char *' info='an char array'/> - </function> - <function name='xmlOutputBufferWriteEscape' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Write the content of the string in the output I/O buffer This routine escapes the caracters and then handle the I18N transcoding from internal UTF-8 The buffer is lossless, i.e. will store in case of partial or delayed writes.</info> - <return type='int' info='the number of chars immediately written, or -1 in case of error.'/> - <arg name='out' type='xmlOutputBufferPtr' info='a buffered parser output'/> - <arg name='str' type='const xmlChar *' info='a zero terminated UTF-8 string'/> - <arg name='escaping' type='xmlCharEncodingOutputFunc' info='an optional escaping function (or NULL)'/> - </function> - <function name='xmlOutputBufferWriteString' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Write the content of the string in the output I/O buffer This routine handle the I18N transcoding from internal UTF-8 The buffer is lossless, i.e. will store in case of partial or delayed writes.</info> - <return type='int' info='the number of chars immediately written, or -1 in case of error.'/> - <arg name='out' type='xmlOutputBufferPtr' info='a buffered parser output'/> - <arg name='str' type='const char *' info='a zero terminated C string'/> - </function> - <functype name='xmlOutputCloseCallback' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Callback used in the I/O Output API to close the resource</info> - <return type='int' info='0 or -1 in case of error'/> - <arg name='context' type='void *' info='an Output context'/> - </functype> - <functype name='xmlOutputMatchCallback' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Callback used in the I/O Output API to detect if the current handler can provide output fonctionnalities for this resource.</info> - <return type='int' info='1 if yes and 0 if another Output module should be used'/> - <arg name='filename' type='char const *' info='the filename or URI'/> - </functype> - <functype name='xmlOutputOpenCallback' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Callback used in the I/O Output API to open the resource</info> - <return type='void *' info='an Output context or NULL in case or error'/> - <arg name='filename' type='char const *' info='the filename or URI'/> - </functype> - <functype name='xmlOutputWriteCallback' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Callback used in the I/O Output API to write to the resource</info> - <return type='int' info='the number of bytes written or -1 in case of error'/> - <arg name='context' type='void *' info='an Output context'/> - <arg name='buffer' type='const char *' info='the buffer of data to write'/> - <arg name='len' type='int' info='the length of the buffer in bytes'/> - </functype> - <function name='xmlParseAttValue' file='parserInternals' module='parser'> - <info>parse a value for an attribute Note: the parser won't do substitution of entities here, this will be handled later in xmlStringGetNodeList [10] AttValue ::= '"' ([^<&"] | Reference)* '"' | "'" ([^<&'] | Reference)* "'" 3.3.3 Attribute-Value Normalization: Before the value of an attribute is passed to the application or checked for validity, the XML processor must normalize it as follows: - a character reference is processed by appending the referenced character to the attribute value - an entity reference is processed by recursively processing the replacement text of the entity - a whitespace character (#x20, #xD, #xA, #x9) is processed by appending #x20 to the normalized value, except that only a single #x20 is appended for a "#xD#xA" sequence that is part of an external parsed entity or the literal entity value of an internal parsed entity - other characters are processed by appending them to the normalized value 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 a single space (#x20) character. All attributes for which no declaration has been read should be treated by a non-validating parser as if declared CDATA.</info> - <return type='xmlChar *' info='the AttValue parsed or NULL. The value has to be freed by the caller.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseAttribute' file='parserInternals' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an attribute [41] Attribute ::= Name Eq AttValue [ WFC: No External Entity References ] Attribute values cannot contain direct or indirect entity references to external entities. [ WFC: No < in Attribute Values ] The replacement text of any entity referred to directly or indirectly in an attribute value (other than "&lt;") must not contain a <. [ VC: Attribute Value Type ] The attribute must have been declared; the value must be of the type declared for it. [25] Eq ::= S? '=' S? With namespace: [NS 11] Attribute ::= QName Eq AttValue Also the case QName == xmlns:??? is handled independently as a namespace definition.</info> - <return type='const xmlChar *' info='the attribute name, and the value in *value.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='value' type='xmlChar **' info='a xmlChar ** used to store the value of the attribute'/> - </function> - <function name='xmlParseAttributeListDecl' file='parserInternals' module='parser'> - <info>: parse the Attribute list def for an element [52] AttlistDecl ::= '<!ATTLIST' S Name AttDef* S? '>' [53] AttDef ::= S Name S AttType S DefaultDecl</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseAttributeType' file='parserInternals' module='parser'> - <info>parse the Attribute list def for an element [54] AttType ::= StringType | TokenizedType | EnumeratedType [55] StringType ::= 'CDATA' [56] TokenizedType ::= 'ID' | 'IDREF' | 'IDREFS' | 'ENTITY' | 'ENTITIES' | 'NMTOKEN' | 'NMTOKENS' Validity constraints for attribute values syntax are checked in xmlValidateAttributeValue() [ VC: ID ] Values of type ID must match the Name production. A name must not appear more than once in an XML document as a value of this type; i.e., ID values must uniquely identify the elements which bear them. [ VC: One ID per Element Type ] No element type may have more than one ID attribute specified. [ VC: ID Attribute Default ] An ID attribute must have a declared default of #IMPLIED or #REQUIRED. [ VC: IDREF ] Values of type IDREF must match the Name production, and values of type IDREFS must match Names; each IDREF Name must match the value of an ID attribute on some element in the XML document; i.e. IDREF values must match the value of some ID attribute. [ VC: Entity Name ] Values of type ENTITY must match the Name production, values of type ENTITIES must match Names; each Entity Name must match the name of an unparsed entity declared in the DTD. [ VC: Name Token ] Values of type NMTOKEN must match the Nmtoken production; values of type NMTOKENS must match Nmtokens.</info> - <return type='int' info='the attribute type'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='tree' type='xmlEnumerationPtr *' info='the enumeration tree built while parsing'/> - </function> - <function name='xmlParseBalancedChunkMemory' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>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)*</info> - <return type='int' info='0 if the chunk is well balanced, -1 in case of args problem and the parser error code otherwise'/> - <arg name='doc' type='xmlDocPtr' info='the document the chunk pertains to'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='the SAX handler bloc (possibly NULL)'/> - <arg name='user_data' type='void *' info='The user data returned on SAX callbacks (possibly NULL)'/> - <arg name='depth' type='int' info='Used for loop detection, use 0'/> - <arg name='string' type='const xmlChar *' info='the input string in UTF8 or ISO-Latin (zero terminated)'/> - <arg name='lst' type='xmlNodePtr *' info='the return value for the set of parsed nodes'/> - </function> - <function name='xmlParseBalancedChunkMemoryRecover' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>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)*</info> - <return type='int' info='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.'/> - <arg name='doc' type='xmlDocPtr' info='the document the chunk pertains to'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='the SAX handler bloc (possibly NULL)'/> - <arg name='user_data' type='void *' info='The user data returned on SAX callbacks (possibly NULL)'/> - <arg name='depth' type='int' info='Used for loop detection, use 0'/> - <arg name='string' type='const xmlChar *' info='the input string in UTF8 or ISO-Latin (zero terminated)'/> - <arg name='lst' type='xmlNodePtr *' info='the return value for the set of parsed nodes'/> - <arg name='recover' type='int' info='return nodes even if the data is broken (use 0)'/> - </function> - <function name='xmlParseCDSect' file='parserInternals' module='parser'> - <info>Parse escaped pure raw content. [18] CDSect ::= CDStart CData CDEnd [19] CDStart ::= '<![CDATA[' [20] Data ::= (Char* - (Char* ']]>' Char*)) [21] CDEnd ::= ']]>'</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseCatalogFile' file='catalog' module='catalog'> - <cond>defined(LIBXML_CATALOG_ENABLED)</cond> - <info>parse an XML file and build a tree. It's like xmlParseFile() except it bypass all catalog lookups.</info> - <return type='xmlDocPtr' info='the resulting document tree or NULL in case of error'/> - <arg name='filename' type='const char *' info='the filename'/> - </function> - <function name='xmlParseCharData' file='parserInternals' module='parser'> - <info>parse a CharData section. if we are within a CDATA section ']]>' marks an end of section. The right angle bracket (>) may be represented using the string "&gt;", and must, for compatibility, be escaped using "&gt;" or a character reference when it appears in the string "]]>" in content, when that string is not marking the end of a CDATA section. [14] CharData ::= [^<&]* - ([^<&]* ']]>' [^<&]*)</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='cdata' type='int' info='int indicating whether we are within a CDATA section'/> - </function> - <function name='xmlParseCharEncoding' file='encoding' module='encoding'> - <info>Compare the string to the encoding schemes already known. Note that the comparison is case insensitive accordingly to the section [XML] 4.3.3 Character Encoding in Entities.</info> - <return type='xmlCharEncoding' info='one of the XML_CHAR_ENCODING_... values or XML_CHAR_ENCODING_NONE if not recognized.'/> - <arg name='name' type='const char *' info='the encoding name as parsed, in UTF-8 format (ASCII actually)'/> - </function> - <function name='xmlParseCharRef' file='parserInternals' module='parser'> - <info>parse Reference declarations [66] CharRef ::= '&#' [0-9]+ ';' | '&#x' [0-9a-fA-F]+ ';' [ WFC: Legal Character ] Characters referred to using character references must match the production for Char.</info> - <return type='int' info='the value parsed (as an int), 0 in case of error'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseChunk' file='parser' module='parser'> - <cond>defined(LIBXML_PUSH_ENABLED)</cond> - <info>Parse a Chunk of memory</info> - <return type='int' info='zero if no error, the xmlParserErrors otherwise.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='chunk' type='const char *' info='an char array'/> - <arg name='size' type='int' info='the size in byte of the chunk'/> - <arg name='terminate' type='int' info='last chunk indicator'/> - </function> - <function name='xmlParseComment' file='parserInternals' module='parser'> - <info>Skip an XML (SGML) comment <!-- .... --> The spec says that "For compatibility, the string "--" (double-hyphen) must not occur within comments. " [15] Comment ::= '<!--' ((Char - '-') | ('-' (Char - '-')))* '-->'</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseContent' file='parserInternals' module='parser'> - <info>Parse a content: [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseCtxtExternalEntity' file='parser' module='parser'> - <info>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</info> - <return type='int' info='0 if the entity is well formed, -1 in case of args problem and the parser error code otherwise'/> - <arg name='ctx' type='xmlParserCtxtPtr' info='the existing parsing context'/> - <arg name='URL' type='const xmlChar *' info='the URL for the entity to load'/> - <arg name='ID' type='const xmlChar *' info='the System ID for the entity to load'/> - <arg name='lst' type='xmlNodePtr *' info='the return value for the set of parsed nodes'/> - </function> - <function name='xmlParseDTD' file='parser' module='parser'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Load and parse an external subset.</info> - <return type='xmlDtdPtr' info='the resulting xmlDtdPtr or NULL in case of error.'/> - <arg name='ExternalID' type='const xmlChar *' info='a NAME* containing the External ID of the DTD'/> - <arg name='SystemID' type='const xmlChar *' info='a NAME* containing the URL to the DTD'/> - </function> - <function name='xmlParseDefaultDecl' file='parserInternals' module='parser'> - <info>Parse an attribute default declaration [60] DefaultDecl ::= '#REQUIRED' | '#IMPLIED' | (('#FIXED' S)? AttValue) [ VC: Required Attribute ] if the default declaration is the keyword #REQUIRED, then the attribute must be specified for all elements of the type in the attribute-list declaration. [ VC: Attribute Default Legal ] The declared default value must meet the lexical constraints of the declared attribute type c.f. xmlValidateAttributeDecl() [ VC: Fixed Attribute Default ] if an attribute has a default value declared with the #FIXED keyword, instances of that attribute must match the default value. [ WFC: No < in Attribute Values ] handled in xmlParseAttValue()</info> - <return type='int' info='XML_ATTRIBUTE_NONE, XML_ATTRIBUTE_REQUIRED, XML_ATTRIBUTE_IMPLIED or XML_ATTRIBUTE_FIXED.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='value' type='xmlChar **' info='Receive a possible fixed default value for the attribute'/> - </function> - <function name='xmlParseDoc' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML in-memory document and build a tree.</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='cur' type='const xmlChar *' info='a pointer to an array of xmlChar'/> - </function> - <function name='xmlParseDocTypeDecl' file='parserInternals' module='parser'> - <info>parse a DOCTYPE declaration [28] doctypedecl ::= '<!DOCTYPE' S Name (S ExternalID)? S? ('[' (markupdecl | PEReference | S)* ']' S?)? '>' [ VC: Root Element Type ] The Name in the document type declaration must match the element type of the root element.</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseDocument' file='parser' module='parser'> - <info>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*)?</info> - <return type='int' info='0, -1 in case of error. the parser context is augmented as a result of the parsing.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseElement' file='parserInternals' module='parser'> - <info>parse an XML element, this is highly recursive [39] element ::= EmptyElemTag | STag content ETag [ WFC: Element Type Match ] The Name in an element's end-tag must match the element type in the start-tag.</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseElementChildrenContentDecl' file='parserInternals' module='parser'> - <info>parse the declaration for a Mixed Element content The leading '(' and spaces have been skipped in xmlParseElementContentDecl [47] children ::= (choice | seq) ('?' | '*' | '+')? [48] cp ::= (Name | choice | seq) ('?' | '*' | '+')? [49] choice ::= '(' S? cp ( S? '|' S? cp )* S? ')' [50] seq ::= '(' S? cp ( S? ',' S? cp )* S? ')' [ VC: Proper Group/PE Nesting ] applies to [49] and [50] TODO Parameter-entity replacement text must be properly nested with parenthesized groups. That is to say, if either of the opening or closing parentheses in a choice, seq, or Mixed construct is contained in the replacement text for a parameter entity, both must be contained in the same replacement text. For interoperability, if a parameter-entity reference appears in a choice, seq, or Mixed construct, its replacement text should not be empty, and neither the first nor last non-blank character of the replacement text should be a connector (| or ,).</info> - <return type='xmlElementContentPtr' info='the tree of xmlElementContentPtr describing the element hierarchy.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='inputchk' type='int' info='the input used for the current entity, needed for boundary checks'/> - </function> - <function name='xmlParseElementContentDecl' file='parserInternals' module='parser'> - <info>parse the declaration for an Element content either Mixed or Children, the cases EMPTY and ANY are handled directly in xmlParseElementDecl [46] contentspec ::= 'EMPTY' | 'ANY' | Mixed | children</info> - <return type='int' info='the type of element content XML_ELEMENT_TYPE_xxx'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='name' type='const xmlChar *' info='the name of the element being defined.'/> - <arg name='result' type='xmlElementContentPtr *' info='the Element Content pointer will be stored here if any'/> - </function> - <function name='xmlParseElementDecl' file='parserInternals' module='parser'> - <info>parse an Element declaration. [45] elementdecl ::= '<!ELEMENT' S Name S contentspec S? '>' [ VC: Unique Element Type Declaration ] No element type may be declared more than once</info> - <return type='int' info='the type of the element, or -1 in case of error'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseElementMixedContentDecl' file='parserInternals' module='parser'> - <info>parse the declaration for a Mixed Element content The leading '(' and spaces have been skipped in xmlParseElementContentDecl [51] Mixed ::= '(' S? '#PCDATA' (S? '|' S? Name)* S? ')*' | '(' S? '#PCDATA' S? ')' [ VC: Proper Group/PE Nesting ] applies to [51] too (see [49]) [ VC: No Duplicate Types ] The same name must not appear more than once in a single mixed-content declaration.</info> - <return type='xmlElementContentPtr' info='the list of the xmlElementContentPtr describing the element choices'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='inputchk' type='int' info='the input used for the current entity, needed for boundary checks'/> - </function> - <function name='xmlParseEncName' file='parserInternals' module='parser'> - <info>parse the XML encoding name [81] EncName ::= [A-Za-z] ([A-Za-z0-9._] | '-')*</info> - <return type='xmlChar *' info='the encoding name value or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseEncodingDecl' file='parserInternals' module='parser'> - <info>parse the XML encoding declaration [80] EncodingDecl ::= S 'encoding' Eq ('"' EncName '"' | "'" EncName "'") this setups the conversion filters.</info> - <return type='const xmlChar *' info='the encoding value or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseEndTag' file='parserInternals' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an end of tag [42] ETag ::= '</' Name S? '>' With namespace [NS 9] ETag ::= '</' QName S? '>'</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseEntity' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML external entity out of context and build a tree. [78] extParsedEnt ::= TextDecl? content This correspond to a "Well Balanced" chunk</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='filename' type='const char *' info='the filename'/> - </function> - <function name='xmlParseEntityDecl' file='parserInternals' module='parser'> - <info>parse <!ENTITY declarations [70] EntityDecl ::= GEDecl | PEDecl [71] GEDecl ::= '<!ENTITY' S Name S EntityDef S? '>' [72] PEDecl ::= '<!ENTITY' S '%' S Name S PEDef S? '>' [73] EntityDef ::= EntityValue | (ExternalID NDataDecl?) [74] PEDef ::= EntityValue | ExternalID [76] NDataDecl ::= S 'NDATA' S Name [ VC: Notation Declared ] The Name must match the declared name of a notation.</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseEntityRef' file='parserInternals' module='parser'> - <info>parse ENTITY references declarations [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</info> - <return type='xmlEntityPtr' info='the xmlEntityPtr if found, or NULL otherwise.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseEntityValue' file='parserInternals' module='parser'> - <info>parse a value for ENTITY declarations [9] EntityValue ::= '"' ([^%&"] | PEReference | Reference)* '"' | "'" ([^%&'] | PEReference | Reference)* "'"</info> - <return type='xmlChar *' info='the EntityValue parsed with reference substituted or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='orig' type='xmlChar **' info='if non-NULL store a copy of the original entity value'/> - </function> - <function name='xmlParseEnumeratedType' file='parserInternals' module='parser'> - <info>parse an Enumerated attribute type. [57] EnumeratedType ::= NotationType | Enumeration [58] NotationType ::= 'NOTATION' S '(' S? Name (S? '|' S? Name)* S? ')'</info> - <return type='int' info='XML_ATTRIBUTE_ENUMERATION or XML_ATTRIBUTE_NOTATION'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='tree' type='xmlEnumerationPtr *' info='the enumeration tree built while parsing'/> - </function> - <function name='xmlParseEnumerationType' file='parserInternals' module='parser'> - <info>parse an Enumeration attribute type. [59] Enumeration ::= '(' S? Nmtoken (S? '|' S? Nmtoken)* S? ')' [ VC: Enumeration ] Values of this type must match one of the Nmtoken tokens in the declaration</info> - <return type='xmlEnumerationPtr' info='the enumeration attribute tree built while parsing'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseExtParsedEnt' file='parser' module='parser'> - <info>parse a general parsed entity An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content</info> - <return type='int' info='0, -1 in case of error. the parser context is augmented as a result of the parsing.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseExternalEntity' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>Parse an external general entity An external general parsed entity is well-formed if it matches the production labeled extParsedEnt. [78] extParsedEnt ::= TextDecl? content</info> - <return type='int' info='0 if the entity is well formed, -1 in case of args problem and the parser error code otherwise'/> - <arg name='doc' type='xmlDocPtr' info='the document the chunk pertains to'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='the SAX handler bloc (possibly NULL)'/> - <arg name='user_data' type='void *' info='The user data returned on SAX callbacks (possibly NULL)'/> - <arg name='depth' type='int' info='Used for loop detection, use 0'/> - <arg name='URL' type='const xmlChar *' info='the URL for the entity to load'/> - <arg name='ID' type='const xmlChar *' info='the System ID for the entity to load'/> - <arg name='lst' type='xmlNodePtr *' info='the return value for the set of parsed nodes'/> - </function> - <function name='xmlParseExternalID' file='parserInternals' module='parser'> - <info>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</info> - <return type='xmlChar *' info='the function returns SystemLiteral and in the second case publicID receives PubidLiteral, is strict is off it is possible to return NULL and have publicID set.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='publicID' type='xmlChar **' info='a xmlChar** receiving PubidLiteral'/> - <arg name='strict' type='int' info='indicate whether we should restrict parsing to only production [75], see NOTE below'/> - </function> - <function name='xmlParseExternalSubset' file='parserInternals' module='parser'> - <info>parse Markup declarations from an external subset [30] extSubset ::= textDecl? extSubsetDecl [31] extSubsetDecl ::= (markupdecl | conditionalSect | PEReference | S) *</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='ExternalID' type='const xmlChar *' info='the external identifier'/> - <arg name='SystemID' type='const xmlChar *' info='the system identifier (or URL)'/> - </function> - <function name='xmlParseFile' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.</info> - <return type='xmlDocPtr' info='the resulting document tree if the file was wellformed, NULL otherwise.'/> - <arg name='filename' type='const char *' info='the filename'/> - </function> - <function name='xmlParseInNodeContext' file='parser' module='parser'> - <info>Parse a well-balanced chunk of an XML document within the context (DTD, namespaces, etc ...) of the given node. The allowed sequence for the data is a Well Balanced Chunk defined by the content production in the XML grammar: [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*</info> - <return type='xmlParserErrors' info='XML_ERR_OK if the chunk is well balanced, and the parser error code otherwise'/> - <arg name='node' type='xmlNodePtr' info='the context node'/> - <arg name='data' type='const char *' info='the input string'/> - <arg name='datalen' type='int' info='the input string length in bytes'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - <arg name='lst' type='xmlNodePtr *' info='the return value for the set of parsed nodes'/> - </function> - <function name='xmlParseMarkupDecl' file='parserInternals' module='parser'> - <info>parse Markup declarations [29] markupdecl ::= elementdecl | AttlistDecl | EntityDecl | NotationDecl | PI | Comment [ VC: Proper Declaration/PE Nesting ] Parameter-entity replacement text must be properly nested with markup declarations. That is to say, if either the first character or the last character of a markup declaration (markupdecl above) is contained in the replacement text for a parameter-entity reference, both must be contained in the same replacement text. [ WFC: PEs in Internal Subset ] In the internal DTD subset, parameter-entity references can occur only where markup declarations can occur, not within markup declarations. (This does not apply to references that occur in external parameter entities or to the external subset.)</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseMemory' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML in-memory block and build a tree.</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='buffer' type='const char *' info='an pointer to a char array'/> - <arg name='size' type='int' info='the size of the array'/> - </function> - <function name='xmlParseMisc' file='parserInternals' module='parser'> - <info>parse an XML Misc* optional field. [27] Misc ::= Comment | PI | S</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseName' file='parserInternals' module='parser'> - <info>parse an XML name. [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)* [6] Names ::= Name (#x20 Name)*</info> - <return type='const xmlChar *' info='the Name parsed or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseNamespace' file='parserInternals' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>xmlParseNamespace: parse specific PI '<?namespace ...' constructs. This is what the older xml-name Working Draft specified, a bunch of other stuff may still rely on it, so support is still here as if it was declared on the root of the Tree:-( TODO: remove from library To be removed at next drop of binary compatibility</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseNmtoken' file='parserInternals' module='parser'> - <info>parse an XML Nmtoken. [7] Nmtoken ::= (NameChar)+ [8] Nmtokens ::= Nmtoken (#x20 Nmtoken)*</info> - <return type='xmlChar *' info='the Nmtoken parsed or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseNotationDecl' file='parserInternals' module='parser'> - <info>parse a notation declaration [82] NotationDecl ::= '<!NOTATION' S Name S (ExternalID | PublicID) S? '>' Hence there is actually 3 choices: 'PUBLIC' S PubidLiteral 'PUBLIC' S PubidLiteral S SystemLiteral and 'SYSTEM' S SystemLiteral See the NOTE on xmlParseExternalID().</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseNotationType' file='parserInternals' module='parser'> - <info>parse an Notation attribute type. Note: the leading 'NOTATION' S part has already being parsed... [58] NotationType ::= 'NOTATION' S '(' S? Name (S? '|' S? Name)* S? ')' [ VC: Notation Attributes ] Values of this type must match one of the notation names included in the declaration; all notation names in the declaration must be declared.</info> - <return type='xmlEnumerationPtr' info='the notation attribute tree built while parsing'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParsePEReference' file='parserInternals' module='parser'> - <info>parse PEReference declarations The entity content is handled directly by pushing it's content as a new input stream. [69] PEReference ::= '%' Name ';' [ WFC: No Recursion ] A parsed entity must not contain a recursive reference to itself, either directly or indirectly. [ 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 declaration of a parameter entity must precede any reference to it... [ VC: Entity Declared ] In a document with an external subset or external parameter entities with "standalone='no'", ... ... The declaration of a parameter entity must precede any reference to it... [ WFC: In DTD ] Parameter-entity references may only appear in the DTD. NOTE: misleading but this is handled.</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParsePI' file='parserInternals' module='parser'> - <info>parse an XML Processing Instruction. [16] PI ::= '<?' PITarget (S (Char* - (Char* '?>' Char*)))? '?>' The processing is transfered to SAX once parsed.</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParsePITarget' file='parserInternals' module='parser'> - <info>parse the name of a PI [17] PITarget ::= Name - (('X' | 'x') ('M' | 'm') ('L' | 'l'))</info> - <return type='const xmlChar *' info='the PITarget name or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParsePubidLiteral' file='parserInternals' module='parser'> - <info>parse an XML public literal [12] PubidLiteral ::= '"' PubidChar* '"' | "'" (PubidChar - "'")* "'"</info> - <return type='xmlChar *' info='the PubidLiteral parsed or NULL.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseQuotedString' file='parserInternals' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Parse and return a string between quotes or doublequotes TODO: Deprecated, to be removed at next drop of binary compatibility</info> - <return type='xmlChar *' info='the string parser or NULL.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseReference' file='parserInternals' module='parser'> - <info>parse and handle entity references in content, depending on the SAX interface, this may end-up in a call to character() if this is a CharRef, a predefined entity, if there is no reference() callback. or if the parser was asked to switch to that mode. [67] Reference ::= EntityRef | CharRef</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseSDDecl' file='parserInternals' module='parser'> - <info>parse the XML standalone declaration [32] SDDecl ::= S 'standalone' Eq (("'" ('yes' | 'no') "'") | ('"' ('yes' | 'no')'"')) [ VC: Standalone Document Declaration ] TODO The standalone document declaration must have the value "no" if any external markup declarations contain declarations of: - attributes with default values, if elements to which these attributes apply appear in the document without specifications of values for these attributes, or - entities (other than amp, lt, gt, apos, quot), if references to those entities appear in the document, or - attributes with values subject to normalization, where the attribute appears in the document with a value which will change as a result of normalization, or - element types with element content, if white space occurs directly within any instance of those types.</info> - <return type='int' info='1 if standalone="yes" 0 if standalone="no" -2 if standalone attribute is missing or invalid (A standalone value of -2 means that the XML declaration was found, but no value was specified for the standalone attribute).'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseStartTag' file='parserInternals' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse a start of tag either for rule element or EmptyElement. In both case we don't parse the tag closing chars. [40] STag ::= '<' Name (S Attribute)* S? '>' [ WFC: Unique Att Spec ] No attribute name may appear more than once in the same start-tag or empty-element tag. [44] EmptyElemTag ::= '<' Name (S Attribute)* S? '/>' [ WFC: Unique Att Spec ] No attribute name may appear more than once in the same start-tag or empty-element tag. With namespace: [NS 8] STag ::= '<' QName (S Attribute)* S? '>' [NS 10] EmptyElement ::= '<' QName (S Attribute)* S? '/>'</info> - <return type='const xmlChar *' info='the element name parsed'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseSystemLiteral' file='parserInternals' module='parser'> - <info>parse an XML Literal [11] SystemLiteral ::= ('"' [^"]* '"') | ("'" [^']* "'")</info> - <return type='xmlChar *' info='the SystemLiteral parsed or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseTextDecl' file='parserInternals' module='parser'> - <info>parse an XML declaration header for external entities [77] TextDecl ::= '<?xml' VersionInfo? EncodingDecl S? '?>' Question: Seems that EncodingDecl is mandatory ? Is that a typo ?</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseURI' file='uri' module='uri'> - <info>Parse an URI URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]</info> - <return type='xmlURIPtr' info='a newly built xmlURIPtr or NULL in case of error'/> - <arg name='str' type='const char *' info='the URI string to analyze'/> - </function> - <function name='xmlParseURIRaw' file='uri' module='uri'> - <info>Parse an URI but allows to keep intact the original fragments. URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]</info> - <return type='xmlURIPtr' info='a newly built xmlURIPtr or NULL in case of error'/> - <arg name='str' type='const char *' info='the URI string to analyze'/> - <arg name='raw' type='int' info='if 1 unescaping of URI pieces are disabled'/> - </function> - <function name='xmlParseURIReference' file='uri' module='uri'> - <info>Parse an URI reference string and fills in the appropriate fields of the @uri structure URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]</info> - <return type='int' info='0 or the error code'/> - <arg name='uri' type='xmlURIPtr' info='pointer to an URI structure'/> - <arg name='str' type='const char *' info='the string to analyze'/> - </function> - <function name='xmlParseVersionInfo' file='parserInternals' module='parser'> - <info>parse the XML version. [24] VersionInfo ::= S 'version' Eq (' VersionNum ' | " VersionNum ") [25] Eq ::= S? '=' S?</info> - <return type='xmlChar *' info='the version string, e.g. "1.0"'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseVersionNum' file='parserInternals' module='parser'> - <info>parse the XML version value. [26] VersionNum ::= ([a-zA-Z0-9_.:] | '-')+</info> - <return type='xmlChar *' info='the string giving the XML version number, or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParseXMLDecl' file='parserInternals' module='parser'> - <info>parse an XML declaration header [23] XMLDecl ::= '<?xml' VersionInfo EncodingDecl? SDDecl? S? '?>'</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlParserAddNodeInfo' file='parser' module='parserInternals'> - <info>Insert node info record into the sorted sequence</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='info' type='const xmlParserNodeInfoPtr' info='a node info sequence pointer'/> - </function> - <function name='xmlParserError' file='xmlerror' module='error'> - <info>Display and format an error messages, gives file, line, position and extra parameters.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='an XML parser context'/> - <arg name='msg' type='const char *' info='the message to display/transmit'/> - <arg name='...' type='...' info='extra parameters for the message display'/> - </function> - <function name='xmlParserFindNodeInfo' file='parser' module='parserInternals'> - <info>Find the parser node info struct for a given node</info> - <return type='const xmlParserNodeInfo *' info='an xmlParserNodeInfo block pointer or NULL'/> - <arg name='ctx' type='const xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='node' type='const xmlNodePtr' info='an XML node within the tree'/> - </function> - <function name='xmlParserFindNodeInfoIndex' file='parser' module='parserInternals'> - <info>xmlParserFindNodeInfoIndex : Find the index that the info record for the given node is or should be at in a sorted sequence</info> - <return type='unsigned long' info='a long indicating the position of the record'/> - <arg name='seq' type='const xmlParserNodeInfoSeqPtr' info='a node info sequence pointer'/> - <arg name='node' type='const xmlNodePtr' info='an XML node pointer'/> - </function> - <function name='xmlParserGetDirectory' file='xmlIO' module='xmlIO'> - <info>lookup the directory for that file</info> - <return type='char *' info='a new allocated string containing the directory, or NULL.'/> - <arg name='filename' type='const char *' info='the path to a file'/> - </function> - <function name='xmlParserHandlePEReference' file='parserInternals' module='parser'> - <info>[69] PEReference ::= '%' Name ';' [ WFC: No Recursion ] A parsed entity must not contain a recursive reference to itself, either directly or indirectly. [ 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 declaration of a parameter entity must precede any reference to it... [ VC: Entity Declared ] In a document with an external subset or external parameter entities with "standalone='no'", ... ... The declaration of a parameter entity must precede any reference to it... [ WFC: In DTD ] Parameter-entity references may only appear in the DTD. NOTE: misleading but this is handled. A PEReference may have been detected in the current input stream the handling is done accordingly to http://www.w3.org/TR/REC-xml#entproc i.e. - Included in literal in entity values - Included as Parameter Entity reference within DTDs</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/> - </function> - <function name='xmlParserHandleReference' file='parserInternals' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>TODO: Remove, now deprecated ... the test is done directly in the content parsing routines. [67] Reference ::= EntityRef | CharRef [68] EntityRef ::= '&' Name ';' [ WFC: Entity Declared ] 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. [ WFC: Parsed Entity ] An entity reference must not contain the name of an unparsed entity [66] CharRef ::= '&#' [0-9]+ ';' | '&#x' [0-9a-fA-F]+ ';' A PEReference may have been detected in the current input stream the handling is done accordingly to http://www.w3.org/TR/REC-xml#entproc</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/> - </function> - <function name='xmlParserInputBufferCreateFd' file='xmlIO' module='xmlIO'> - <info>Create a buffered parser input for the progressive parsing for the input from a file descriptor</info> - <return type='xmlParserInputBufferPtr' info='the new parser input or NULL'/> - <arg name='fd' type='int' info='a file descriptor number'/> - <arg name='enc' type='xmlCharEncoding' info='the charset encoding if known'/> - </function> - <function name='xmlParserInputBufferCreateFile' file='xmlIO' module='xmlIO'> - <info>Create a buffered parser input for the progressive parsing of a FILE * buffered C I/O</info> - <return type='xmlParserInputBufferPtr' info='the new parser input or NULL'/> - <arg name='file' type='FILE *' info='a FILE*'/> - <arg name='enc' type='xmlCharEncoding' info='the charset encoding if known'/> - </function> - <function name='xmlParserInputBufferCreateFilename' file='xmlIO' module='xmlIO'> - <info>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</info> - <return type='xmlParserInputBufferPtr' info='the new parser input or NULL'/> - <arg name='URI' type='const char *' info='a C string containing the URI or filename'/> - <arg name='enc' type='xmlCharEncoding' info='the charset encoding if known'/> - </function> - <function name='xmlParserInputBufferCreateFilenameDefault' file='globals' module='xmlIO'> - <info>Registers a callback for URI input file handling</info> - <return type='xmlParserInputBufferCreateFilenameFunc' info='the old value of the registration function'/> - <arg name='func' type='xmlParserInputBufferCreateFilenameFunc' info='function pointer to the new ParserInputBufferCreateFilenameFunc'/> - </function> - <functype name='xmlParserInputBufferCreateFilenameFunc' file='globals' module='globals'> - <info></info> - <return type='xmlParserInputBufferPtr' info=''/> - <arg name='URI' type='const char *' info=''/> - <arg name='enc' type='xmlCharEncoding' info=''/> - </functype> - <function name='xmlParserInputBufferCreateIO' file='xmlIO' module='xmlIO'> - <info>Create a buffered parser input for the progressive parsing for the input from an I/O handler</info> - <return type='xmlParserInputBufferPtr' info='the new parser input or NULL'/> - <arg name='ioread' type='xmlInputReadCallback' info='an I/O read function'/> - <arg name='ioclose' type='xmlInputCloseCallback' info='an I/O close function'/> - <arg name='ioctx' type='void *' info='an I/O handler'/> - <arg name='enc' type='xmlCharEncoding' info='the charset encoding if known'/> - </function> - <function name='xmlParserInputBufferCreateMem' file='xmlIO' module='xmlIO'> - <info>Create a buffered parser input for the progressive parsing for the input from a memory area.</info> - <return type='xmlParserInputBufferPtr' info='the new parser input or NULL'/> - <arg name='mem' type='const char *' info='the memory input'/> - <arg name='size' type='int' info='the length of the memory block'/> - <arg name='enc' type='xmlCharEncoding' info='the charset encoding if known'/> - </function> - <function name='xmlParserInputBufferCreateStatic' file='xmlIO' module='xmlIO'> - <info>Create a buffered parser input for the progressive parsing for the input from an immutable memory area. This will not copy the memory area to the buffer, but the memory is expected to be available until the end of the parsing, this is useful for example when using mmap'ed file.</info> - <return type='xmlParserInputBufferPtr' info='the new parser input or NULL'/> - <arg name='mem' type='const char *' info='the memory input'/> - <arg name='size' type='int' info='the length of the memory block'/> - <arg name='enc' type='xmlCharEncoding' info='the charset encoding if known'/> - </function> - <function name='xmlParserInputBufferGrow' file='xmlIO' module='xmlIO'> - <info>Grow up the content of the input buffer, the old data are preserved This routine handle the I18N transcoding to internal UTF-8 This routine is used when operating the parser in normal (pull) mode TODO: one should be able to remove one extra copy by copying directly onto in->buffer or in->raw</info> - <return type='int' info='the number of chars read and stored in the buffer, or -1 in case of error.'/> - <arg name='in' type='xmlParserInputBufferPtr' info='a buffered parser input'/> - <arg name='len' type='int' info='indicative value of the amount of chars to read'/> - </function> - <function name='xmlParserInputBufferPush' file='xmlIO' module='xmlIO'> - <info>Push the content of the arry in the input buffer This routine handle the I18N transcoding to internal UTF-8 This is used when operating the parser in progressive (push) mode.</info> - <return type='int' info='the number of chars read and stored in the buffer, or -1 in case of error.'/> - <arg name='in' type='xmlParserInputBufferPtr' info='a buffered parser input'/> - <arg name='len' type='int' info='the size in bytes of the array.'/> - <arg name='buf' type='const char *' info='an char array'/> - </function> - <function name='xmlParserInputBufferRead' file='xmlIO' module='xmlIO'> - <info>Refresh the content of the input buffer, the old data are considered consumed This routine handle the I18N transcoding to internal UTF-8</info> - <return type='int' info='the number of chars read and stored in the buffer, or -1 in case of error.'/> - <arg name='in' type='xmlParserInputBufferPtr' info='a buffered parser input'/> - <arg name='len' type='int' info='indicative value of the amount of chars to read'/> - </function> - <functype name='xmlParserInputDeallocate' file='parser' module='parser'> - <info>Callback for freeing some parser input allocations.</info> - <return type='void'/> - <arg name='str' type='xmlChar *' info='the string to deallocate'/> - </functype> - <function name='xmlParserInputGrow' file='parser' module='parserInternals'> - <info>This function increase the input for the parser. It tries to preserve pointers to the input buffer, and keep already read data</info> - <return type='int' info='the number of xmlChars read, or -1 in case of error, 0 indicate the end of this entity'/> - <arg name='in' type='xmlParserInputPtr' info='an XML parser input'/> - <arg name='len' type='int' info='an indicative size for the lookahead'/> - </function> - <function name='xmlParserInputRead' file='parser' module='parserInternals'> - <info>This function refresh the input for the parser. It doesn't try to preserve pointers to the input buffer, and discard already read data</info> - <return type='int' info='the number of xmlChars read, or -1 in case of error, 0 indicate the end of this entity'/> - <arg name='in' type='xmlParserInputPtr' info='an XML parser input'/> - <arg name='len' type='int' info='an indicative size for the lookahead'/> - </function> - <function name='xmlParserInputShrink' file='parserInternals' module='parserInternals'> - <info>This function removes used input for the parser.</info> - <return type='void'/> - <arg name='in' type='xmlParserInputPtr' info='an XML parser input'/> - </function> - <function name='xmlParserPrintFileContext' file='xmlerror' module='error'> - <info>Displays current context within the input content for error tracking</info> - <return type='void'/> - <arg name='input' type='xmlParserInputPtr' info='an xmlParserInputPtr input'/> - </function> - <function name='xmlParserPrintFileInfo' file='xmlerror' module='error'> - <info>Displays the associated file and line informations for the current input</info> - <return type='void'/> - <arg name='input' type='xmlParserInputPtr' info='an xmlParserInputPtr input'/> - </function> - <function name='xmlParserValidityError' file='xmlerror' module='error'> - <info>Display and format an validity error messages, gives file, line, position and extra parameters.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='an XML parser context'/> - <arg name='msg' type='const char *' info='the message to display/transmit'/> - <arg name='...' type='...' info='extra parameters for the message display'/> - </function> - <function name='xmlParserValidityWarning' file='xmlerror' module='error'> - <info>Display and format a validity warning messages, gives file, line, position and extra parameters.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='an XML parser context'/> - <arg name='msg' type='const char *' info='the message to display/transmit'/> - <arg name='...' type='...' info='extra parameters for the message display'/> - </function> - <function name='xmlParserWarning' file='xmlerror' module='error'> - <info>Display and format a warning messages, gives file, line, position and extra parameters.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='an XML parser context'/> - <arg name='msg' type='const char *' info='the message to display/transmit'/> - <arg name='...' type='...' info='extra parameters for the message display'/> - </function> - <function name='xmlPathToURI' file='uri' module='uri'> - <info>Constructs an URI expressing the existing path</info> - <return type='xmlChar *' info='a new URI, 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.'/> - <arg name='path' type='const xmlChar *' info='the resource locator in a filesystem notation'/> - </function> - <function name='xmlPatternFromRoot' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Check if the pattern must be looked at from the root.</info> - <return type='int' info='1 if true, 0 if false and -1 in case of error'/> - <arg name='comp' type='xmlPatternPtr' info='the precompiled pattern'/> - </function> - <function name='xmlPatternGetStreamCtxt' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Get a streaming context for that pattern Use xmlFreeStreamCtxt to free the context.</info> - <return type='xmlStreamCtxtPtr' info='a pointer to the context or NULL in case of failure'/> - <arg name='comp' type='xmlPatternPtr' info='the precompiled pattern'/> - </function> - <function name='xmlPatternMatch' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Test whether the node matches the pattern</info> - <return type='int' info='1 if it matches, 0 if it doesn't and -1 in case of failure'/> - <arg name='comp' type='xmlPatternPtr' info='the precompiled pattern'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - </function> - <function name='xmlPatternMaxDepth' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Check the maximum depth reachable by a pattern</info> - <return type='int' info='-2 if no limit (using //), otherwise the depth, and -1 in case of error'/> - <arg name='comp' type='xmlPatternPtr' info='the precompiled pattern'/> - </function> - <function name='xmlPatternMinDepth' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Check the minimum depth reachable by a pattern, 0 mean the / or . are part of the set.</info> - <return type='int' info='-1 in case of error otherwise the depth,'/> - <arg name='comp' type='xmlPatternPtr' info='the precompiled pattern'/> - </function> - <function name='xmlPatternStreamable' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Check if the pattern is streamable i.e. xmlPatternGetStreamCtxt() should work.</info> - <return type='int' info='1 if streamable, 0 if not and -1 in case of error.'/> - <arg name='comp' type='xmlPatternPtr' info='the precompiled pattern'/> - </function> - <function name='xmlPatterncompile' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Compile a pattern.</info> - <return type='xmlPatternPtr' info='the compiled form of the pattern or NULL in case of error'/> - <arg name='pattern' type='const xmlChar *' info='the pattern to compile'/> - <arg name='dict' type='xmlDict *' info='an optional dictionary for interned strings'/> - <arg name='flags' type='int' info='compilation flags, see xmlPatternFlags'/> - <arg name='namespaces' type='const xmlChar **' info='the prefix definitions, array of [URI, prefix] or NULL'/> - </function> - <function name='xmlPedanticParserDefault' file='parser' module='parserInternals'> - <info>Set and return the previous value for enabling pedantic warnings.</info> - <return type='int' info='the last value for 0 for no substitution, 1 for substitution.'/> - <arg name='val' type='int' info='int 0 or 1'/> - </function> - <function name='xmlPopInput' file='parserInternals' module='parser'> - <info>xmlPopInput: the current input pointed by ctxt->input came to an end pop it and return the next char.</info> - <return type='xmlChar' info='the current xmlChar in the parser context'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlPopInputCallbacks' file='xmlIO' module='xmlIO'> - <info>Clear the top input callback from the input stack. this includes the compiled-in I/O.</info> - <return type='int' info='the number of input callback registered or -1 in case of error.'/> - </function> - <function name='xmlPrintURI' file='uri' module='uri'> - <info>Prints the URI in the stream @stream.</info> - <return type='void'/> - <arg name='stream' type='FILE *' info='a FILE* for the output'/> - <arg name='uri' type='xmlURIPtr' info='pointer to an xmlURI'/> - </function> - <function name='xmlPushInput' file='parserInternals' module='parser'> - <info>xmlPushInput: switch to a new input stream which is stacked on top of the previous one(s).</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='input' type='xmlParserInputPtr' info='an XML parser input fragment (entity, XML fragment ...).'/> - </function> - <function name='xmlRMutexLock' file='threads' module='threads'> - <info>xmlRMutexLock() is used to lock a libxml2 token_r.</info> - <return type='void'/> - <arg name='tok' type='xmlRMutexPtr' info='the reentrant mutex'/> - </function> - <function name='xmlRMutexUnlock' file='threads' module='threads'> - <info>xmlRMutexUnlock() is used to unlock a libxml2 token_r.</info> - <return type='void'/> - <arg name='tok' type='xmlRMutexPtr' info='the reentrant mutex'/> - </function> - <function name='xmlReadDoc' file='parser' module='parser'> - <info>parse an XML in-memory document and build a tree.</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='cur' type='const xmlChar *' info='a pointer to a zero terminated string'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReadFd' file='parser' module='parser'> - <info>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.</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='fd' type='int' info='an open file descriptor'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReadFile' file='parser' module='parser'> - <info>parse an XML file from the filesystem or the network.</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='filename' type='const char *' info='a file or URL'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReadIO' file='parser' module='parser'> - <info>parse an XML document from I/O functions and source and build a tree.</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='ioread' type='xmlInputReadCallback' info='an I/O read function'/> - <arg name='ioclose' type='xmlInputCloseCallback' info='an I/O close function'/> - <arg name='ioctx' type='void *' info='an I/O handler'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReadMemory' file='parser' module='parser'> - <info>parse an XML in-memory document and build a tree.</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='buffer' type='const char *' info='a pointer to a char array'/> - <arg name='size' type='int' info='the size of the array'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReaderForDoc' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Create an xmltextReader for an XML in-memory document. The parsing flags @options are a combination of xmlParserOption.</info> - <return type='xmlTextReaderPtr' info='the new reader or NULL in case of error.'/> - <arg name='cur' type='const xmlChar *' info='a pointer to a zero terminated string'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReaderForFd' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Create an xmltextReader for an XML from a file descriptor. The parsing flags @options are a combination of xmlParserOption. NOTE that the file descriptor will not be closed when the reader is closed or reset.</info> - <return type='xmlTextReaderPtr' info='the new reader or NULL in case of error.'/> - <arg name='fd' type='int' info='an open file descriptor'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReaderForFile' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>parse an XML file from the filesystem or the network. The parsing flags @options are a combination of xmlParserOption.</info> - <return type='xmlTextReaderPtr' info='the new reader or NULL in case of error.'/> - <arg name='filename' type='const char *' info='a file or URL'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReaderForIO' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Create an xmltextReader for an XML document from I/O functions and source. The parsing flags @options are a combination of xmlParserOption.</info> - <return type='xmlTextReaderPtr' info='the new reader or NULL in case of error.'/> - <arg name='ioread' type='xmlInputReadCallback' info='an I/O read function'/> - <arg name='ioclose' type='xmlInputCloseCallback' info='an I/O close function'/> - <arg name='ioctx' type='void *' info='an I/O handler'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReaderForMemory' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Create an xmltextReader for an XML in-memory document. The parsing flags @options are a combination of xmlParserOption.</info> - <return type='xmlTextReaderPtr' info='the new reader or NULL in case of error.'/> - <arg name='buffer' type='const char *' info='a pointer to a char array'/> - <arg name='size' type='int' info='the size of the array'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReaderNewDoc' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Setup an xmltextReader to parse an XML in-memory document. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</info> - <return type='int' info='0 in case of success and -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='an XML reader'/> - <arg name='cur' type='const xmlChar *' info='a pointer to a zero terminated string'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReaderNewFd' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Setup an xmltextReader to parse an XML from a file descriptor. NOTE that the file descriptor will not be closed when the reader is closed or reset. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</info> - <return type='int' info='0 in case of success and -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='an XML reader'/> - <arg name='fd' type='int' info='an open file descriptor'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReaderNewFile' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>parse an XML file from the filesystem or the network. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</info> - <return type='int' info='0 in case of success and -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='an XML reader'/> - <arg name='filename' type='const char *' info='a file or URL'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReaderNewIO' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Setup an xmltextReader to parse an XML document from I/O functions and source. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</info> - <return type='int' info='0 in case of success and -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='an XML reader'/> - <arg name='ioread' type='xmlInputReadCallback' info='an I/O read function'/> - <arg name='ioclose' type='xmlInputCloseCallback' info='an I/O close function'/> - <arg name='ioctx' type='void *' info='an I/O handler'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReaderNewMemory' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Setup an xmltextReader to parse an XML in-memory document. The parsing flags @options are a combination of xmlParserOption. This reuses the existing @reader xmlTextReader.</info> - <return type='int' info='0 in case of success and -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='an XML reader'/> - <arg name='buffer' type='const char *' info='a pointer to a char array'/> - <arg name='size' type='int' info='the size of the array'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlReaderNewWalker' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Setup an xmltextReader to parse a preparsed XML document. This reuses the existing @reader xmlTextReader.</info> - <return type='int' info='0 in case of success and -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='an XML reader'/> - <arg name='doc' type='xmlDocPtr' info='a preparsed document'/> - </function> - <function name='xmlReaderWalker' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Create an xmltextReader for a preparsed document.</info> - <return type='xmlTextReaderPtr' info='the new reader or NULL in case of error.'/> - <arg name='doc' type='xmlDocPtr' info='a preparsed document'/> - </function> - <functype name='xmlReallocFunc' file='xmlmemory' module='xmlmemory'> - <info>Signature for a realloc() implementation.</info> - <return type='void *' info='a pointer to the newly reallocated block or NULL in case of error.'/> - <arg name='mem' type='void *' info='an already allocated block of memory'/> - <arg name='size' type='size_t' info='the new size requested in bytes'/> - </functype> - <function name='xmlReallocLoc' file='xmlmemory' module='xmlmemory'> - <info>a realloc() equivalent, with logging of the allocation info.</info> - <return type='void *' info='a pointer to the allocated area or NULL in case of lack of memory.'/> - <arg name='ptr' type='void *' info='the initial memory block pointer'/> - <arg name='size' type='size_t' info='an int specifying the size in byte to allocate.'/> - <arg name='file' type='const char *' info='the file name or NULL'/> - <arg name='line' type='int' info='the line number'/> - </function> - <function name='xmlReconciliateNs' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED)</cond> - <info>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.</info> - <return type='int' info='the number of namespace declarations created or -1 in case of error.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='tree' type='xmlNodePtr' info='a node defining the subtree to reconciliate'/> - </function> - <function name='xmlRecoverDoc' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML in-memory document and build a tree. In the case the document is not Well Formed, a tree is built anyway</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='cur' type='xmlChar *' info='a pointer to an array of xmlChar'/> - </function> - <function name='xmlRecoverFile' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML file and build a tree. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. In the case the document is not Well Formed, a tree is built anyway</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='filename' type='const char *' info='the filename'/> - </function> - <function name='xmlRecoverMemory' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML in-memory block and build a tree. In the case the document is not Well Formed, a tree is built anyway</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='buffer' type='const char *' info='an pointer to a char array'/> - <arg name='size' type='int' info='the size of the array'/> - </function> - <functype name='xmlRegExecCallbacks' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED)</cond> - <info></info> - <return type='void'/> - <arg name='exec' type='xmlRegExecCtxtPtr' info=''/> - <arg name='token' type='const xmlChar *' info=''/> - <arg name='transdata' type='void *' info=''/> - <arg name='inputdata' type='void *' info=''/> - </functype> - <function name='xmlRegExecErrInfo' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Extract error informations from the regexp execution, the parameter @string will be updated with the value pushed and not accepted, the parameter @values must point to an array of @nbval string pointers on return nbval will contain the number of possible strings in that state and the @values array will be updated with them. The string values</info> - <return type='int' info='will be freed with the @exec context and don't need to be deallocated. Returns: 0 in case of success or -1 in case of error.'/> - <arg name='exec' type='xmlRegExecCtxtPtr' info='a regexp execution context generating an error'/> - <arg name='string' type='const xmlChar **' info='return value for the error string'/> - <arg name='nbval' type='int *' info='pointer to the number of accepted values IN/OUT'/> - <arg name='nbneg' type='int *' info='return number of negative transitions'/> - <arg name='values' type='xmlChar **' info='pointer to the array of acceptable values'/> - <arg name='terminal' type='int *' info='return value if this was a terminal state'/> - </function> - <function name='xmlRegExecNextValues' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Extract informations from the regexp execution, the parameter @values must point to an array of @nbval string pointers on return nbval will contain the number of possible strings in that state and the @values array will be updated with them. The string values</info> - <return type='int' info='will be freed with the @exec context and don't need to be deallocated. Returns: 0 in case of success or -1 in case of error.'/> - <arg name='exec' type='xmlRegExecCtxtPtr' info='a regexp execution context'/> - <arg name='nbval' type='int *' info='pointer to the number of accepted values IN/OUT'/> - <arg name='nbneg' type='int *' info='return number of negative transitions'/> - <arg name='values' type='xmlChar **' info='pointer to the array of acceptable values'/> - <arg name='terminal' type='int *' info='return value if this was a terminal state'/> - </function> - <function name='xmlRegExecPushString' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Push one input token in the execution context</info> - <return type='int' info='1 if the regexp reached a final state, 0 if non-final, and a negative value in case of error.'/> - <arg name='exec' type='xmlRegExecCtxtPtr' info='a regexp execution context or NULL to indicate the end'/> - <arg name='value' type='const xmlChar *' info='a string token input'/> - <arg name='data' type='void *' info='data associated to the token to reuse in callbacks'/> - </function> - <function name='xmlRegExecPushString2' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Push one input token in the execution context</info> - <return type='int' info='1 if the regexp reached a final state, 0 if non-final, and a negative value in case of error.'/> - <arg name='exec' type='xmlRegExecCtxtPtr' info='a regexp execution context or NULL to indicate the end'/> - <arg name='value' type='const xmlChar *' info='the first string token input'/> - <arg name='value2' type='const xmlChar *' info='the second string token input'/> - <arg name='data' type='void *' info='data associated to the token to reuse in callbacks'/> - </function> - <function name='xmlRegFreeExecCtxt' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Free the structures associated to a regular expression evaulation context.</info> - <return type='void'/> - <arg name='exec' type='xmlRegExecCtxtPtr' info='a regular expression evaulation context'/> - </function> - <function name='xmlRegFreeRegexp' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Free a regexp</info> - <return type='void'/> - <arg name='regexp' type='xmlRegexpPtr' info='the regexp'/> - </function> - <function name='xmlRegNewExecCtxt' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Build a context used for progressive evaluation of a regexp.</info> - <return type='xmlRegExecCtxtPtr' info='the new context'/> - <arg name='comp' type='xmlRegexpPtr' info='a precompiled regular expression'/> - <arg name='callback' type='xmlRegExecCallbacks' info='a callback function used for handling progresses in the automata matching phase'/> - <arg name='data' type='void *' info='the context data associated to the callback in this context'/> - </function> - <function name='xmlRegexpCompile' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Parses a regular expression conforming to XML Schemas Part 2 Datatype Appendix F and builds an automata suitable for testing strings against that regular expression</info> - <return type='xmlRegexpPtr' info='the compiled expression or NULL in case of error'/> - <arg name='regexp' type='const xmlChar *' info='a regular expression string'/> - </function> - <function name='xmlRegexpExec' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Check if the regular expression generates the value</info> - <return type='int' info='1 if it matches, 0 if not and a negative value in case of error'/> - <arg name='comp' type='xmlRegexpPtr' info='the compiled regular expression'/> - <arg name='content' type='const xmlChar *' info='the value to check against the regular expression'/> - </function> - <function name='xmlRegexpIsDeterminist' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Check if the regular expression is determinist</info> - <return type='int' info='1 if it yes, 0 if not and a negative value in case of error'/> - <arg name='comp' type='xmlRegexpPtr' info='the compiled regular expression'/> - </function> - <function name='xmlRegexpPrint' file='xmlregexp' module='xmlregexp'> - <cond>defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Print the content of the compiled regular expression</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the file for the output debug'/> - <arg name='regexp' type='xmlRegexpPtr' info='the compiled regexp'/> - </function> - <function name='xmlRegisterCharEncodingHandler' file='encoding' module='encoding'> - <info>Register the char encoding handler, surprising, isn't it ?</info> - <return type='void'/> - <arg name='handler' type='xmlCharEncodingHandlerPtr' info='the xmlCharEncodingHandlerPtr handler block'/> - </function> - <function name='xmlRegisterDefaultInputCallbacks' file='xmlIO' module='xmlIO'> - <info>Registers the default compiled-in I/O handlers.</info> - <return type='void'/> - </function> - <function name='xmlRegisterDefaultOutputCallbacks' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Registers the default compiled-in I/O handlers.</info> - <return type='void'/> - </function> - <function name='xmlRegisterHTTPPostCallbacks' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED) && defined(LIBXML_HTTP_ENABLED)</cond> - <info>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.</info> - <return type='void'/> - </function> - <function name='xmlRegisterInputCallbacks' file='xmlIO' module='xmlIO'> - <info>Register a new set of I/O callback for handling parser input.</info> - <return type='int' info='the registered handler number or -1 in case of error'/> - <arg name='matchFunc' type='xmlInputMatchCallback' info='the xmlInputMatchCallback'/> - <arg name='openFunc' type='xmlInputOpenCallback' info='the xmlInputOpenCallback'/> - <arg name='readFunc' type='xmlInputReadCallback' info='the xmlInputReadCallback'/> - <arg name='closeFunc' type='xmlInputCloseCallback' info='the xmlInputCloseCallback'/> - </function> - <function name='xmlRegisterNodeDefault' file='globals' module='globals'> - <info>Registers a callback for node creation</info> - <return type='xmlRegisterNodeFunc' info='the old value of the registration function'/> - <arg name='func' type='xmlRegisterNodeFunc' info='function pointer to the new RegisterNodeFunc'/> - </function> - <functype name='xmlRegisterNodeFunc' file='globals' module='globals'> - <info></info> - <return type='void'/> - <arg name='node' type='xmlNodePtr' info=''/> - </functype> - <function name='xmlRegisterOutputCallbacks' file='xmlIO' module='xmlIO'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Register a new set of I/O callback for handling output.</info> - <return type='int' info='the registered handler number or -1 in case of error'/> - <arg name='matchFunc' type='xmlOutputMatchCallback' info='the xmlOutputMatchCallback'/> - <arg name='openFunc' type='xmlOutputOpenCallback' info='the xmlOutputOpenCallback'/> - <arg name='writeFunc' type='xmlOutputWriteCallback' info='the xmlOutputWriteCallback'/> - <arg name='closeFunc' type='xmlOutputCloseCallback' info='the xmlOutputCloseCallback'/> - </function> - <function name='xmlRelaxNGCleanupTypes' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Cleanup the default Schemas type library associated to RelaxNG</info> - <return type='void'/> - </function> - <function name='xmlRelaxNGDump' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump a RelaxNG structure back</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the file output'/> - <arg name='schema' type='xmlRelaxNGPtr' info='a schema structure'/> - </function> - <function name='xmlRelaxNGDumpTree' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump the transformed RelaxNG tree.</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the file output'/> - <arg name='schema' type='xmlRelaxNGPtr' info='a schema structure'/> - </function> - <function name='xmlRelaxNGFree' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Deallocate a RelaxNG structure.</info> - <return type='void'/> - <arg name='schema' type='xmlRelaxNGPtr' info='a schema structure'/> - </function> - <function name='xmlRelaxNGFreeParserCtxt' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Free the resources associated to the schema parser context</info> - <return type='void'/> - <arg name='ctxt' type='xmlRelaxNGParserCtxtPtr' info='the schema parser context'/> - </function> - <function name='xmlRelaxNGFreeValidCtxt' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Free the resources associated to the schema validation context</info> - <return type='void'/> - <arg name='ctxt' type='xmlRelaxNGValidCtxtPtr' info='the schema validation context'/> - </function> - <function name='xmlRelaxNGGetParserErrors' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Get the callback information used to handle errors for a validation context</info> - <return type='int' info='-1 in case of failure, 0 otherwise.'/> - <arg name='ctxt' type='xmlRelaxNGParserCtxtPtr' info='a Relax-NG validation context'/> - <arg name='err' type='xmlRelaxNGValidityErrorFunc *' info='the error callback result'/> - <arg name='warn' type='xmlRelaxNGValidityWarningFunc *' info='the warning callback result'/> - <arg name='ctx' type='void **' info='contextual data for the callbacks result'/> - </function> - <function name='xmlRelaxNGGetValidErrors' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Get the error and warning callback informations</info> - <return type='int' info='-1 in case of error and 0 otherwise'/> - <arg name='ctxt' type='xmlRelaxNGValidCtxtPtr' info='a Relax-NG validation context'/> - <arg name='err' type='xmlRelaxNGValidityErrorFunc *' info='the error function result'/> - <arg name='warn' type='xmlRelaxNGValidityWarningFunc *' info='the warning function result'/> - <arg name='ctx' type='void **' info='the functions context result'/> - </function> - <function name='xmlRelaxNGInitTypes' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Initilize the default type libraries.</info> - <return type='int' info='0 in case of success and -1 in case of error.'/> - </function> - <function name='xmlRelaxNGNewDocParserCtxt' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Create an XML RelaxNGs parser context for that document. Note: since the process of compiling a RelaxNG schemas modifies the document, the @doc parameter is duplicated internally.</info> - <return type='xmlRelaxNGParserCtxtPtr' info='the parser context or NULL in case of error'/> - <arg name='doc' type='xmlDocPtr' info='a preparsed document tree'/> - </function> - <function name='xmlRelaxNGNewMemParserCtxt' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Create an XML RelaxNGs parse context for that memory buffer expected to contain an XML RelaxNGs file.</info> - <return type='xmlRelaxNGParserCtxtPtr' info='the parser context or NULL in case of error'/> - <arg name='buffer' type='const char *' info='a pointer to a char array containing the schemas'/> - <arg name='size' type='int' info='the size of the array'/> - </function> - <function name='xmlRelaxNGNewParserCtxt' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Create an XML RelaxNGs parse context for that file/resource expected to contain an XML RelaxNGs file.</info> - <return type='xmlRelaxNGParserCtxtPtr' info='the parser context or NULL in case of error'/> - <arg name='URL' type='const char *' info='the location of the schema'/> - </function> - <function name='xmlRelaxNGNewValidCtxt' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Create an XML RelaxNGs validation context based on the given schema</info> - <return type='xmlRelaxNGValidCtxtPtr' info='the validation context or NULL in case of error'/> - <arg name='schema' type='xmlRelaxNGPtr' info='a precompiled XML RelaxNGs'/> - </function> - <function name='xmlRelaxNGParse' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>parse a schema definition resource and build an internal XML Shema struture which can be used to validate instances.</info> - <return type='xmlRelaxNGPtr' info='the internal XML RelaxNG structure built from the resource or NULL in case of error'/> - <arg name='ctxt' type='xmlRelaxNGParserCtxtPtr' info='a Relax-NG parser context'/> - </function> - <function name='xmlRelaxNGSetParserErrors' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Set the callback functions used to handle errors for a validation context</info> - <return type='void'/> - <arg name='ctxt' type='xmlRelaxNGParserCtxtPtr' info='a Relax-NG validation context'/> - <arg name='err' type='xmlRelaxNGValidityErrorFunc' info='the error callback'/> - <arg name='warn' type='xmlRelaxNGValidityWarningFunc' info='the warning callback'/> - <arg name='ctx' type='void *' info='contextual data for the callbacks'/> - </function> - <function name='xmlRelaxNGSetParserStructuredErrors' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Set the callback functions used to handle errors for a parsing context</info> - <return type='void'/> - <arg name='ctxt' type='xmlRelaxNGParserCtxtPtr' info='a Relax-NG parser context'/> - <arg name='serror' type='xmlStructuredErrorFunc' info='the error callback'/> - <arg name='ctx' type='void *' info='contextual data for the callbacks'/> - </function> - <function name='xmlRelaxNGSetValidErrors' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Set the error and warning callback informations</info> - <return type='void'/> - <arg name='ctxt' type='xmlRelaxNGValidCtxtPtr' info='a Relax-NG validation context'/> - <arg name='err' type='xmlRelaxNGValidityErrorFunc' info='the error function'/> - <arg name='warn' type='xmlRelaxNGValidityWarningFunc' info='the warning function'/> - <arg name='ctx' type='void *' info='the functions context'/> - </function> - <function name='xmlRelaxNGSetValidStructuredErrors' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Set the structured error callback</info> - <return type='void'/> - <arg name='ctxt' type='xmlRelaxNGValidCtxtPtr' info='a Relax-NG validation context'/> - <arg name='serror' type='xmlStructuredErrorFunc' info='the structured error function'/> - <arg name='ctx' type='void *' info='the functions context'/> - </function> - <function name='xmlRelaxNGValidateDoc' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Validate a document tree in memory.</info> - <return type='int' info='0 if the document is valid, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='ctxt' type='xmlRelaxNGValidCtxtPtr' info='a Relax-NG validation context'/> - <arg name='doc' type='xmlDocPtr' info='a parsed document tree'/> - </function> - <function name='xmlRelaxNGValidateFullElement' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Validate a full subtree when xmlRelaxNGValidatePushElement() returned 0 and the content of the node has been expanded.</info> - <return type='int' info='1 if no validation problem was found or -1 in case of error.'/> - <arg name='ctxt' type='xmlRelaxNGValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='elem' type='xmlNodePtr' info='an element instance'/> - </function> - <function name='xmlRelaxNGValidatePopElement' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Pop the element end from the RelaxNG validation stack.</info> - <return type='int' info='1 if no validation problem was found or 0 otherwise'/> - <arg name='ctxt' type='xmlRelaxNGValidCtxtPtr' info='the RelaxNG validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='elem' type='xmlNodePtr' info='an element instance'/> - </function> - <function name='xmlRelaxNGValidatePushCData' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>check the CData parsed for validation in the current stack</info> - <return type='int' info='1 if no validation problem was found or -1 otherwise'/> - <arg name='ctxt' type='xmlRelaxNGValidCtxtPtr' info='the RelaxNG validation context'/> - <arg name='data' type='const xmlChar *' info='some character data read'/> - <arg name='len' type='int' info='the lenght of the data'/> - </function> - <function name='xmlRelaxNGValidatePushElement' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Push a new element start on the RelaxNG validation stack.</info> - <return type='int' info='1 if no validation problem was found or 0 if validating the element requires a full node, and -1 in case of error.'/> - <arg name='ctxt' type='xmlRelaxNGValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='elem' type='xmlNodePtr' info='an element instance'/> - </function> - <functype name='xmlRelaxNGValidityErrorFunc' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='void'/> - <arg name='ctx' type='void *' info=''/> - <arg name='msg' type='const char *' info=''/> - <arg name='...' type='...' info=''/> - </functype> - <functype name='xmlRelaxNGValidityWarningFunc' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='void'/> - <arg name='ctx' type='void *' info=''/> - <arg name='msg' type='const char *' info=''/> - <arg name='...' type='...' info=''/> - </functype> - <function name='xmlRelaxParserSetFlag' file='relaxng' module='relaxng'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Semi private function used to pass informations to a parser context which are a combination of xmlRelaxNGParserFlag .</info> - <return type='int' info='0 if success and -1 in case of error'/> - <arg name='ctxt' type='xmlRelaxNGParserCtxtPtr' info='a RelaxNG parser context'/> - <arg name='flags' type='int' info='a set of flags values'/> - </function> - <function name='xmlRemoveID' file='valid' module='valid'> - <info>Remove the given attribute from the ID table maintained internally.</info> - <return type='int' info='-1 if the lookup failed and 0 otherwise'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='attr' type='xmlAttrPtr' info='the attribute'/> - </function> - <function name='xmlRemoveProp' file='tree' module='tree'> - <info>Unlink and free one attribute, all the content is freed too Note this doesn't work for namespace definition attributes</info> - <return type='int' info='0 if success and -1 in case of error.'/> - <arg name='cur' type='xmlAttrPtr' info='an attribute'/> - </function> - <function name='xmlRemoveRef' file='valid' module='valid'> - <info>Remove the given attribute from the Ref table maintained internally.</info> - <return type='int' info='-1 if the lookup failed and 0 otherwise'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='attr' type='xmlAttrPtr' info='the attribute'/> - </function> - <function name='xmlReplaceNode' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_WRITER_ENABLED)</cond> - <info>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.</info> - <return type='xmlNodePtr' info='the @old node'/> - <arg name='old' type='xmlNodePtr' info='the old node'/> - <arg name='cur' type='xmlNodePtr' info='the node'/> - </function> - <function name='xmlResetError' file='xmlerror' module='error'> - <info>Cleanup the error.</info> - <return type='void'/> - <arg name='err' type='xmlErrorPtr' info='pointer to the error.'/> - </function> - <function name='xmlResetLastError' file='xmlerror' module='error'> - <info>Cleanup the last global error registered. For parsing error this does not change the well-formedness result.</info> - <return type='void'/> - </function> - <function name='xmlSAX2AttributeDecl' file='SAX2' module='SAX2'> - <info>An attribute definition has been parsed</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='elem' type='const xmlChar *' info='the name of the element'/> - <arg name='fullname' type='const xmlChar *' info='the attribute name'/> - <arg name='type' type='int' info='the attribute type'/> - <arg name='def' type='int' info='the type of default value'/> - <arg name='defaultValue' type='const xmlChar *' info='the attribute default value'/> - <arg name='tree' type='xmlEnumerationPtr' info='the tree of enumerated value set'/> - </function> - <function name='xmlSAX2CDataBlock' file='SAX2' module='SAX2'> - <info>called when a pcdata block has been parsed</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='value' type='const xmlChar *' info='The pcdata content'/> - <arg name='len' type='int' info='the block length'/> - </function> - <function name='xmlSAX2Characters' file='SAX2' module='SAX2'> - <info>receiving some chars from the parser.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='ch' type='const xmlChar *' info='a xmlChar string'/> - <arg name='len' type='int' info='the number of xmlChar'/> - </function> - <function name='xmlSAX2Comment' file='SAX2' module='SAX2'> - <info>A xmlSAX2Comment has been parsed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='value' type='const xmlChar *' info='the xmlSAX2Comment content'/> - </function> - <function name='xmlSAX2ElementDecl' file='SAX2' module='SAX2'> - <info>An element definition has been parsed</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the element name'/> - <arg name='type' type='int' info='the element type'/> - <arg name='content' type='xmlElementContentPtr' info='the element value tree'/> - </function> - <function name='xmlSAX2EndDocument' file='SAX2' module='SAX2'> - <info>called when the document end has been detected.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='xmlSAX2EndElement' file='SAX2' module='SAX2'> - <cond>defined(LIBXML_SAX1_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_WRITER_ENABLED) || defined(LIBXML_DOCB_ENABLED)</cond> - <info>called when the end of an element has been detected.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The element name'/> - </function> - <function name='xmlSAX2EndElementNs' file='SAX2' module='SAX2'> - <info>SAX2 callback when an element end has been detected by the parser. It provides the namespace informations for the element.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='localname' type='const xmlChar *' info='the local name of the element'/> - <arg name='prefix' type='const xmlChar *' info='the element namespace prefix if available'/> - <arg name='URI' type='const xmlChar *' info='the element namespace name if available'/> - </function> - <function name='xmlSAX2EntityDecl' file='SAX2' module='SAX2'> - <info>An entity definition has been parsed</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the entity name'/> - <arg name='type' type='int' info='the entity type'/> - <arg name='publicId' type='const xmlChar *' info='The public ID of the entity'/> - <arg name='systemId' type='const xmlChar *' info='The system ID of the entity'/> - <arg name='content' type='xmlChar *' info='the entity value (without processing).'/> - </function> - <function name='xmlSAX2ExternalSubset' file='SAX2' module='SAX2'> - <info>Callback on external subset declaration.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the root element name'/> - <arg name='ExternalID' type='const xmlChar *' info='the external ID'/> - <arg name='SystemID' type='const xmlChar *' info='the SYSTEM ID (e.g. filename or URL)'/> - </function> - <function name='xmlSAX2GetColumnNumber' file='SAX2' module='SAX2'> - <info>Provide the column number of the current parsing point.</info> - <return type='int' info='an int'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='xmlSAX2GetEntity' file='SAX2' module='SAX2'> - <info>Get an entity by name</info> - <return type='xmlEntityPtr' info='the xmlEntityPtr if found.'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The entity name'/> - </function> - <function name='xmlSAX2GetLineNumber' file='SAX2' module='SAX2'> - <info>Provide the line number of the current parsing point.</info> - <return type='int' info='an int'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='xmlSAX2GetParameterEntity' file='SAX2' module='SAX2'> - <info>Get a parameter entity by name</info> - <return type='xmlEntityPtr' info='the xmlEntityPtr if found.'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The entity name'/> - </function> - <function name='xmlSAX2GetPublicId' file='SAX2' module='SAX2'> - <info>Provides the public ID e.g. "-//SGMLSOURCE//DTD DEMO//EN"</info> - <return type='const xmlChar *' info='a xmlChar *'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='xmlSAX2GetSystemId' file='SAX2' module='SAX2'> - <info>Provides the system ID, basically URL or filename e.g. http://www.sgmlsource.com/dtds/memo.dtd</info> - <return type='const xmlChar *' info='a xmlChar *'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='xmlSAX2HasExternalSubset' file='SAX2' module='SAX2'> - <info>Does this document has an external subset</info> - <return type='int' info='1 if true'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='xmlSAX2HasInternalSubset' file='SAX2' module='SAX2'> - <info>Does this document has an internal subset</info> - <return type='int' info='1 if true'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='xmlSAX2IgnorableWhitespace' file='SAX2' module='SAX2'> - <info>receiving some ignorable whitespaces from the parser. UNUSED: by default the DOM building will use xmlSAX2Characters</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='ch' type='const xmlChar *' info='a xmlChar string'/> - <arg name='len' type='int' info='the number of xmlChar'/> - </function> - <function name='xmlSAX2InitDefaultSAXHandler' file='SAX2' module='SAX2'> - <info>Initialize the default XML SAX2 handler</info> - <return type='void'/> - <arg name='hdlr' type='xmlSAXHandler *' info='the SAX handler'/> - <arg name='warning' type='int' info='flag if non-zero sets the handler warning procedure'/> - </function> - <function name='xmlSAX2InitDocbDefaultSAXHandler' file='SAX2' module='SAX2'> - <cond>defined(LIBXML_DOCB_ENABLED)</cond> - <info>Initialize the default DocBook SAX2 handler</info> - <return type='void'/> - <arg name='hdlr' type='xmlSAXHandler *' info='the SAX handler'/> - </function> - <function name='xmlSAX2InitHtmlDefaultSAXHandler' file='SAX2' module='SAX2'> - <cond>defined(LIBXML_HTML_ENABLED)</cond> - <info>Initialize the default HTML SAX2 handler</info> - <return type='void'/> - <arg name='hdlr' type='xmlSAXHandler *' info='the SAX handler'/> - </function> - <function name='xmlSAX2InternalSubset' file='SAX2' module='SAX2'> - <info>Callback on internal subset declaration.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='the root element name'/> - <arg name='ExternalID' type='const xmlChar *' info='the external ID'/> - <arg name='SystemID' type='const xmlChar *' info='the SYSTEM ID (e.g. filename or URL)'/> - </function> - <function name='xmlSAX2IsStandalone' file='SAX2' module='SAX2'> - <info>Is this document tagged standalone ?</info> - <return type='int' info='1 if true'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='xmlSAX2NotationDecl' file='SAX2' module='SAX2'> - <info>What to do when a notation declaration has been parsed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The name of the notation'/> - <arg name='publicId' type='const xmlChar *' info='The public ID of the entity'/> - <arg name='systemId' type='const xmlChar *' info='The system ID of the entity'/> - </function> - <function name='xmlSAX2ProcessingInstruction' file='SAX2' module='SAX2'> - <info>A processing instruction has been parsed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='target' type='const xmlChar *' info='the target name'/> - <arg name='data' type='const xmlChar *' info='the PI data's'/> - </function> - <function name='xmlSAX2Reference' file='SAX2' module='SAX2'> - <info>called when an entity xmlSAX2Reference is detected.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The entity name'/> - </function> - <function name='xmlSAX2ResolveEntity' file='SAX2' module='SAX2'> - <info>The entity loader, to control the loading of external entities, the application can either: - override this xmlSAX2ResolveEntity() callback in the SAX block - or better use the xmlSetExternalEntityLoader() function to set up it's own entity resolution routine</info> - <return type='xmlParserInputPtr' info='the xmlParserInputPtr if inlined or NULL for DOM behaviour.'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='publicId' type='const xmlChar *' info='The public ID of the entity'/> - <arg name='systemId' type='const xmlChar *' info='The system ID of the entity'/> - </function> - <function name='xmlSAX2SetDocumentLocator' file='SAX2' module='SAX2'> - <info>Receive the document locator at startup, actually xmlDefaultSAXLocator Everything is available on the context, so this is useless in our case.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='loc' type='xmlSAXLocatorPtr' info='A SAX Locator'/> - </function> - <function name='xmlSAX2StartDocument' file='SAX2' module='SAX2'> - <info>called when the document start being processed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - </function> - <function name='xmlSAX2StartElement' file='SAX2' module='SAX2'> - <cond>defined(LIBXML_SAX1_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_WRITER_ENABLED) || defined(LIBXML_DOCB_ENABLED)</cond> - <info>called when an opening tag has been processed.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='fullname' type='const xmlChar *' info='The element name, including namespace prefix'/> - <arg name='atts' type='const xmlChar **' info='An array of name/value attributes pairs, NULL terminated'/> - </function> - <function name='xmlSAX2StartElementNs' file='SAX2' module='SAX2'> - <info>SAX2 callback when an element start has been detected by the parser. It provides the namespace informations for the element, as well as the new namespace declarations on the element.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='localname' type='const xmlChar *' info='the local name of the element'/> - <arg name='prefix' type='const xmlChar *' info='the element namespace prefix if available'/> - <arg name='URI' type='const xmlChar *' info='the element namespace name if available'/> - <arg name='nb_namespaces' type='int' info='number of namespace definitions on that node'/> - <arg name='namespaces' type='const xmlChar **' info='pointer to the array of prefix/URI pairs namespace definitions'/> - <arg name='nb_attributes' type='int' info='the number of attributes on that node'/> - <arg name='nb_defaulted' type='int' info='the number of defaulted attributes.'/> - <arg name='attributes' type='const xmlChar **' info='pointer to the array of (localname/prefix/URI/value/end) attribute values.'/> - </function> - <function name='xmlSAX2UnparsedEntityDecl' file='SAX2' module='SAX2'> - <info>What to do when an unparsed entity declaration is parsed</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the user data (XML parser context)'/> - <arg name='name' type='const xmlChar *' info='The name of the entity'/> - <arg name='publicId' type='const xmlChar *' info='The public ID of the entity'/> - <arg name='systemId' type='const xmlChar *' info='The system ID of the entity'/> - <arg name='notationName' type='const xmlChar *' info='the name of the notation'/> - </function> - <function name='xmlSAXDefaultVersion' file='SAX2' module='SAX2'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>Set the default version of SAX used globally by the library. By default, during initialization the default is set to 2. Note that it is generally a better coding style to use xmlSAXVersion() to set up the version explicitly for a given parsing context.</info> - <return type='int' info='the previous value in case of success and -1 in case of error.'/> - <arg name='version' type='int' info='the version, 1 or 2'/> - </function> - <function name='xmlSAXParseDTD' file='parser' module='parser'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Load and parse an external subset.</info> - <return type='xmlDtdPtr' info='the resulting xmlDtdPtr or NULL in case of error.'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='the SAX handler block'/> - <arg name='ExternalID' type='const xmlChar *' info='a NAME* containing the External ID of the DTD'/> - <arg name='SystemID' type='const xmlChar *' info='a NAME* containing the URL to the DTD'/> - </function> - <function name='xmlSAXParseDoc' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML in-memory document and build a tree. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines.</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='the SAX handler block'/> - <arg name='cur' type='const xmlChar *' info='a pointer to an array of xmlChar'/> - <arg name='recovery' type='int' info='work in recovery mode, i.e. tries to read no Well Formed documents'/> - </function> - <function name='xmlSAXParseEntity' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML external entity out of context and build a tree. It use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines. [78] extParsedEnt ::= TextDecl? content This correspond to a "Well Balanced" chunk</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='the SAX handler block'/> - <arg name='filename' type='const char *' info='the filename'/> - </function> - <function name='xmlSAXParseFile' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML 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.</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='the SAX handler block'/> - <arg name='filename' type='const char *' info='the filename'/> - <arg name='recovery' type='int' info='work in recovery mode, i.e. tries to read no Well Formed documents'/> - </function> - <function name='xmlSAXParseFileWithData' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML 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. User data (void *) is stored within the parser context in the context's _private member, so it is available nearly everywhere in libxml</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='the SAX handler block'/> - <arg name='filename' type='const char *' info='the filename'/> - <arg name='recovery' type='int' info='work in recovery mode, i.e. tries to read no Well Formed documents'/> - <arg name='data' type='void *' info='the userdata'/> - </function> - <function name='xmlSAXParseMemory' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML in-memory block and use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines.</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='the SAX handler block'/> - <arg name='buffer' type='const char *' info='an pointer to a char array'/> - <arg name='size' type='int' info='the size of the array'/> - <arg name='recovery' type='int' info='work in recovery mode, i.e. tries to read not Well Formed documents'/> - </function> - <function name='xmlSAXParseMemoryWithData' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML in-memory block and use the given SAX function block to handle the parsing callback. If sax is NULL, fallback to the default DOM tree building routines. User data (void *) is stored within the parser context in the context's _private member, so it is available nearly everywhere in libxml</info> - <return type='xmlDocPtr' info='the resulting document tree'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='the SAX handler block'/> - <arg name='buffer' type='const char *' info='an pointer to a char array'/> - <arg name='size' type='int' info='the size of the array'/> - <arg name='recovery' type='int' info='work in recovery mode, i.e. tries to read no Well Formed documents'/> - <arg name='data' type='void *' info='the userdata'/> - </function> - <function name='xmlSAXUserParseFile' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>parse an XML file and call the given SAX handler routines. Automatic support for ZLIB/Compress compressed document is provided</info> - <return type='int' info='0 in case of success or a error number otherwise'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='a SAX handler'/> - <arg name='user_data' type='void *' info='The user data returned on SAX callbacks'/> - <arg name='filename' type='const char *' info='a file name'/> - </function> - <function name='xmlSAXUserParseMemory' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>A better SAX parsing routine. parse an XML in-memory buffer and call the given SAX handler routines.</info> - <return type='int' info='0 in case of success or a error number otherwise'/> - <arg name='sax' type='xmlSAXHandlerPtr' info='a SAX handler'/> - <arg name='user_data' type='void *' info='The user data returned on SAX callbacks'/> - <arg name='buffer' type='const char *' info='an in-memory XML document input'/> - <arg name='size' type='int' info='the length of the XML document in bytes'/> - </function> - <function name='xmlSAXVersion' file='SAX2' module='SAX2'> - <info>Initialize the default XML SAX handler according to the version</info> - <return type='int' info='0 in case of success and -1 in case of error.'/> - <arg name='hdlr' type='xmlSAXHandler *' info='the SAX handler'/> - <arg name='version' type='int' info='the version, 1 or 2'/> - </function> - <function name='xmlSaveClose' file='xmlsave' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Close a document saving context, i.e. make sure that all bytes have been output and free the associated data.</info> - <return type='int' info='the number of byte written or -1 in case of error.'/> - <arg name='ctxt' type='xmlSaveCtxtPtr' info='a document saving context'/> - </function> - <function name='xmlSaveDoc' file='xmlsave' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Save a full document to a saving context TODO: The function is not fully implemented yet as it does not return the byte count but 0 instead</info> - <return type='long' info='the number of byte written or -1 in case of error'/> - <arg name='ctxt' type='xmlSaveCtxtPtr' info='a document saving context'/> - <arg name='doc' type='xmlDocPtr' info='a document'/> - </function> - <function name='xmlSaveFile' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML document to a file. Will use compression if compiled in and enabled. If @filename is "-" the stdout file is used.</info> - <return type='int' info='the number of bytes written or -1 in case of failure.'/> - <arg name='filename' type='const char *' info='the filename (or URL)'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - </function> - <function name='xmlSaveFileEnc' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML document, converting it to the given encoding</info> - <return type='int' info='the number of bytes written or -1 in case of failure.'/> - <arg name='filename' type='const char *' info='the filename (or URL)'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='encoding' type='const char *' info='the name of an encoding (or NULL)'/> - </function> - <function name='xmlSaveFileTo' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML document to an I/O buffer. Warning ! This call xmlOutputBufferClose() on buf which is not available after this call.</info> - <return type='int' info='the number of bytes written or -1 in case of failure.'/> - <arg name='buf' type='xmlOutputBufferPtr' info='an output I/O buffer'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='encoding' type='const char *' info='the encoding if any assuming the I/O layer handles the trancoding'/> - </function> - <function name='xmlSaveFlush' file='xmlsave' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Flush a document saving context, i.e. make sure that all bytes have been output.</info> - <return type='int' info='the number of byte written or -1 in case of error.'/> - <arg name='ctxt' type='xmlSaveCtxtPtr' info='a document saving context'/> - </function> - <function name='xmlSaveFormatFile' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML document to a file. Will use compression if compiled in and enabled. If @filename is "-" the stdout file is used. If @format is set then the document will be indented on output. Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1 or xmlKeepBlanksDefault(0) was called</info> - <return type='int' info='the number of bytes written or -1 in case of failure.'/> - <arg name='filename' type='const char *' info='the filename (or URL)'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='format' type='int' info='should formatting spaces been added'/> - </function> - <function name='xmlSaveFormatFileEnc' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML document to a file or an URL.</info> - <return type='int' info='the number of bytes written or -1 in case of error. Note that @format = 1 provide node indenting only if xmlIndentTreeOutput = 1 or xmlKeepBlanksDefault(0) was called'/> - <arg name='filename' type='const char *' info='the filename or URL to output'/> - <arg name='cur' type='xmlDocPtr' info='the document being saved'/> - <arg name='encoding' type='const char *' info='the name of the encoding to use or NULL.'/> - <arg name='format' type='int' info='should formatting spaces be added.'/> - </function> - <function name='xmlSaveFormatFileTo' file='tree' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump an XML document to an I/O buffer. Warning ! This call xmlOutputBufferClose() on buf which is not available after this call.</info> - <return type='int' info='the number of bytes written or -1 in case of failure.'/> - <arg name='buf' type='xmlOutputBufferPtr' info='an output I/O buffer'/> - <arg name='cur' type='xmlDocPtr' info='the document'/> - <arg name='encoding' type='const char *' info='the encoding if any assuming the I/O layer handles the trancoding'/> - <arg name='format' type='int' info='should formatting spaces been added'/> - </function> - <function name='xmlSaveSetAttrEscape' file='xmlsave' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Set a custom escaping function to be used for text in attribute content</info> - <return type='int' info='0 if successful or -1 in case of error.'/> - <arg name='ctxt' type='xmlSaveCtxtPtr' info='a document saving context'/> - <arg name='escape' type='xmlCharEncodingOutputFunc' info='the escaping function'/> - </function> - <function name='xmlSaveSetEscape' file='xmlsave' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Set a custom escaping function to be used for text in element content</info> - <return type='int' info='0 if successful or -1 in case of error.'/> - <arg name='ctxt' type='xmlSaveCtxtPtr' info='a document saving context'/> - <arg name='escape' type='xmlCharEncodingOutputFunc' info='the escaping function'/> - </function> - <function name='xmlSaveToBuffer' file='xmlsave' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Create a document saving context serializing to a buffer with the encoding and the options given</info> - <return type='xmlSaveCtxtPtr' info='a new serialization context or NULL in case of error.'/> - <arg name='buffer' type='xmlBufferPtr' info='a buffer'/> - <arg name='encoding' type='const char *' info='the encoding name to use or NULL'/> - <arg name='options' type='int' info='a set of xmlSaveOptions'/> - </function> - <function name='xmlSaveToFd' file='xmlsave' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Create a document saving context serializing to a file descriptor with the encoding and the options given.</info> - <return type='xmlSaveCtxtPtr' info='a new serialization context or NULL in case of error.'/> - <arg name='fd' type='int' info='a file descriptor number'/> - <arg name='encoding' type='const char *' info='the encoding name to use or NULL'/> - <arg name='options' type='int' info='a set of xmlSaveOptions'/> - </function> - <function name='xmlSaveToFilename' file='xmlsave' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Create a document saving context serializing to a filename or possibly to an URL (but this is less reliable) with the encoding and the options given.</info> - <return type='xmlSaveCtxtPtr' info='a new serialization context or NULL in case of error.'/> - <arg name='filename' type='const char *' info='a file name or an URL'/> - <arg name='encoding' type='const char *' info='the encoding name to use or NULL'/> - <arg name='options' type='int' info='a set of xmlSaveOptions'/> - </function> - <function name='xmlSaveToIO' file='xmlsave' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Create a document saving context serializing to a file descriptor with the encoding and the options given</info> - <return type='xmlSaveCtxtPtr' info='a new serialization context or NULL in case of error.'/> - <arg name='iowrite' type='xmlOutputWriteCallback' info='an I/O write function'/> - <arg name='ioclose' type='xmlOutputCloseCallback' info='an I/O close function'/> - <arg name='ioctx' type='void *' info='an I/O handler'/> - <arg name='encoding' type='const char *' info='the encoding name to use or NULL'/> - <arg name='options' type='int' info='a set of xmlSaveOptions'/> - </function> - <function name='xmlSaveTree' file='xmlsave' module='xmlsave'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Save a subtree starting at the node parameter to a saving context TODO: The function is not fully implemented yet as it does not return the byte count but 0 instead</info> - <return type='long' info='the number of byte written or -1 in case of error'/> - <arg name='ctxt' type='xmlSaveCtxtPtr' info='a document saving context'/> - <arg name='node' type='xmlNodePtr' info='the top node of the subtree to save'/> - </function> - <function name='xmlSaveUri' file='uri' module='uri'> - <info>Save the URI as an escaped string</info> - <return type='xmlChar *' info='a new string (to be deallocated by caller)'/> - <arg name='uri' type='xmlURIPtr' info='pointer to an xmlURI'/> - </function> - <function name='xmlScanName' file='parserInternals' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Trickery: parse an XML name but without consuming the input flow Needed for rollback cases. Used only when parsing entities references. TODO: seems deprecated now, only used in the default part of xmlParserHandleReference [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)* [6] Names ::= Name (S Name)*</info> - <return type='xmlChar *' info='the Name parsed or NULL'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlSchemaCheckFacet' file='xmlschemastypes' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Checks and computes the values of facets.</info> - <return type='int' info='0 if valid, a positive error code if not valid and -1 in case of an internal or API error.'/> - <arg name='facet' type='xmlSchemaFacetPtr' info='the facet'/> - <arg name='typeDecl' type='xmlSchemaTypePtr' info='the schema type definition'/> - <arg name='pctxt' type='xmlSchemaParserCtxtPtr' info='the schema parser context or NULL'/> - <arg name='name' type='const xmlChar *' info='the optional name of the type'/> - </function> - <function name='xmlSchemaCleanupTypes' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Cleanup the default XML Schemas type library</info> - <return type='void'/> - </function> - <function name='xmlSchemaCollapseString' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Removes and normalize white spaces in the string</info> - <return type='xmlChar *' info='the new string or NULL if no change was required.'/> - <arg name='value' type='const xmlChar *' info='a value'/> - </function> - <function name='xmlSchemaCompareValues' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Compare 2 values</info> - <return type='int' info='-1 if x < y, 0 if x == y, 1 if x > y, 2 if x <> y, and -2 in case of error'/> - <arg name='x' type='xmlSchemaValPtr' info='a first value'/> - <arg name='y' type='xmlSchemaValPtr' info='a second value'/> - </function> - <function name='xmlSchemaCompareValuesWhtsp' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Compare 2 values</info> - <return type='int' info='-1 if x < y, 0 if x == y, 1 if x > y, 2 if x <> y, and -2 in case of error'/> - <arg name='x' type='xmlSchemaValPtr' info='a first value'/> - <arg name='xws' type='xmlSchemaWhitespaceValueType' info='the whitespace value of x'/> - <arg name='y' type='xmlSchemaValPtr' info='a second value'/> - <arg name='yws' type='xmlSchemaWhitespaceValueType' info='the whitespace value of y'/> - </function> - <function name='xmlSchemaCopyValue' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Copies the precomputed value. This duplicates any string within.</info> - <return type='xmlSchemaValPtr' info='the copy or NULL if a copy for a data-type is not implemented.'/> - <arg name='val' type='xmlSchemaValPtr' info='the precomputed value to be copied'/> - </function> - <function name='xmlSchemaDump' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Dump a Schema structure.</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the file output'/> - <arg name='schema' type='xmlSchemaPtr' info='a schema structure'/> - </function> - <function name='xmlSchemaFree' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Deallocate a Schema structure.</info> - <return type='void'/> - <arg name='schema' type='xmlSchemaPtr' info='a schema structure'/> - </function> - <function name='xmlSchemaFreeFacet' file='xmlschemastypes' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Deallocate a Schema Facet structure.</info> - <return type='void'/> - <arg name='facet' type='xmlSchemaFacetPtr' info='a schema facet structure'/> - </function> - <function name='xmlSchemaFreeParserCtxt' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Free the resources associated to the schema parser context</info> - <return type='void'/> - <arg name='ctxt' type='xmlSchemaParserCtxtPtr' info='the schema parser context'/> - </function> - <function name='xmlSchemaFreeType' file='schemasInternals' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Deallocate a Schema Type structure.</info> - <return type='void'/> - <arg name='type' type='xmlSchemaTypePtr' info='a schema type structure'/> - </function> - <function name='xmlSchemaFreeValidCtxt' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='void'/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - </function> - <function name='xmlSchemaFreeValue' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Cleanup the default XML Schemas type library</info> - <return type='void'/> - <arg name='value' type='xmlSchemaValPtr' info='the value to free'/> - </function> - <function name='xmlSchemaFreeWildcard' file='schemasInternals' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Deallocates a wildcard structure.</info> - <return type='void'/> - <arg name='wildcard' type='xmlSchemaWildcardPtr' info='a wildcard structure'/> - </function> - <function name='xmlSchemaGetBuiltInListSimpleTypeItemType' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Lookup function</info> - <return type='xmlSchemaTypePtr' info='the item type of @type as defined by the built-in datatype hierarchy of XML Schema Part 2: Datatypes, or NULL in case of an error.'/> - <arg name='type' type='xmlSchemaTypePtr' info='the built-in simple type.'/> - </function> - <function name='xmlSchemaGetBuiltInType' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Gives you the type struct for a built-in type by its type id.</info> - <return type='xmlSchemaTypePtr' info='the type if found, NULL otherwise.'/> - <arg name='type' type='xmlSchemaValType' info='the type of the built in type'/> - </function> - <function name='xmlSchemaGetCanonValue' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Get a the cononical lexical representation of the value. The caller has to FREE the returned retValue. WARNING: Some value types are not supported yet, resulting in a @retValue of "???". TODO: XML Schema 1.0 does not define canonical representations for: duration, gYearMonth, gYear, gMonthDay, gMonth, gDay, anyURI, QName, NOTATION. This will be fixed in XML Schema 1.1.</info> - <return type='int' info='0 if the value could be built, 1 if the value type is not supported yet and -1 in case of API errors.'/> - <arg name='val' type='xmlSchemaValPtr' info='the precomputed value'/> - <arg name='retValue' type='const xmlChar **' info='the returned value'/> - </function> - <function name='xmlSchemaGetCanonValueWhtsp' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Get a the cononical representation of the value. The caller has to free the returned @retValue.</info> - <return type='int' info='0 if the value could be built, 1 if the value type is not supported yet and -1 in case of API errors.'/> - <arg name='val' type='xmlSchemaValPtr' info='the precomputed value'/> - <arg name='retValue' type='const xmlChar **' info='the returned value'/> - <arg name='ws' type='xmlSchemaWhitespaceValueType' info='the whitespace type of the value'/> - </function> - <function name='xmlSchemaGetFacetValueAsULong' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Extract the value of a facet</info> - <return type='unsigned long' info='the value as a long'/> - <arg name='facet' type='xmlSchemaFacetPtr' info='an schemas type facet'/> - </function> - <function name='xmlSchemaGetParserErrors' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Get the callback information used to handle errors for a parser context</info> - <return type='int' info='-1 in case of failure, 0 otherwise'/> - <arg name='ctxt' type='xmlSchemaParserCtxtPtr' info='a XMl-Schema parser context'/> - <arg name='err' type='xmlSchemaValidityErrorFunc *' info='the error callback result'/> - <arg name='warn' type='xmlSchemaValidityWarningFunc *' info='the warning callback result'/> - <arg name='ctx' type='void **' info='contextual data for the callbacks result'/> - </function> - <function name='xmlSchemaGetPredefinedType' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Lookup a type in the default XML Schemas type library</info> - <return type='xmlSchemaTypePtr' info='the type if found, NULL otherwise'/> - <arg name='name' type='const xmlChar *' info='the type name'/> - <arg name='ns' type='const xmlChar *' info='the URI of the namespace usually "http://www.w3.org/2001/XMLSchema"'/> - </function> - <function name='xmlSchemaGetValType' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Accessor for the type of a value</info> - <return type='xmlSchemaValType' info='the xmlSchemaValType of the value'/> - <arg name='val' type='xmlSchemaValPtr' info='a schemas value'/> - </function> - <function name='xmlSchemaGetValidErrors' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='int' info=''/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='err' type='xmlSchemaValidityErrorFunc *' info=''/> - <arg name='warn' type='xmlSchemaValidityWarningFunc *' info=''/> - <arg name='ctx' type='void **' info=''/> - </function> - <function name='xmlSchemaInitTypes' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Initialize the default XML Schemas type library</info> - <return type='void'/> - </function> - <function name='xmlSchemaIsBuiltInTypeFacet' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Evaluates if a specific facet can be used in conjunction with a type.</info> - <return type='int' info='1 if the facet can be used with the given built-in type, 0 otherwise and -1 in case the type is not a built-in type.'/> - <arg name='type' type='xmlSchemaTypePtr' info='the built-in type'/> - <arg name='facetType' type='int' info='the facet type'/> - </function> - <function name='xmlSchemaIsValid' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='int' info=''/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - </function> - <function name='xmlSchemaNewDocParserCtxt' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Create an XML Schemas parse context for that document. NB. The document may be modified during the parsing process.</info> - <return type='xmlSchemaParserCtxtPtr' info='the parser context or NULL in case of error'/> - <arg name='doc' type='xmlDocPtr' info='a preparsed document tree'/> - </function> - <function name='xmlSchemaNewFacet' file='xmlschemastypes' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Allocate a new Facet structure.</info> - <return type='xmlSchemaFacetPtr' info='the newly allocated structure or NULL in case or error'/> - </function> - <function name='xmlSchemaNewMemParserCtxt' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Create an XML Schemas parse context for that memory buffer expected to contain an XML Schemas file.</info> - <return type='xmlSchemaParserCtxtPtr' info='the parser context or NULL in case of error'/> - <arg name='buffer' type='const char *' info='a pointer to a char array containing the schemas'/> - <arg name='size' type='int' info='the size of the array'/> - </function> - <function name='xmlSchemaNewNOTATIONValue' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Allocate a new NOTATION value. The given values are consumed and freed with the struct.</info> - <return type='xmlSchemaValPtr' info='a pointer to the new value or NULL in case of error'/> - <arg name='name' type='const xmlChar *' info='the notation name'/> - <arg name='ns' type='const xmlChar *' info='the notation namespace name or NULL'/> - </function> - <function name='xmlSchemaNewParserCtxt' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Create an XML Schemas parse context for that file/resource expected to contain an XML Schemas file.</info> - <return type='xmlSchemaParserCtxtPtr' info='the parser context or NULL in case of error'/> - <arg name='URL' type='const char *' info='the location of the schema'/> - </function> - <function name='xmlSchemaNewQNameValue' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Allocate a new QName value. The given values are consumed and freed with the struct.</info> - <return type='xmlSchemaValPtr' info='a pointer to the new value or NULL in case of an error.'/> - <arg name='namespaceName' type='const xmlChar *' info='the namespace name'/> - <arg name='localName' type='const xmlChar *' info='the local name'/> - </function> - <function name='xmlSchemaNewStringValue' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Allocate a new simple type value. The type can be of XML_SCHEMAS_STRING. WARNING: This one is intended to be expanded for other string based types. We need this for anySimpleType as well. The given value is consumed and freed with the struct.</info> - <return type='xmlSchemaValPtr' info='a pointer to the new value or NULL in case of error'/> - <arg name='type' type='xmlSchemaValType' info='the value type'/> - <arg name='value' type='const xmlChar *' info='the value'/> - </function> - <function name='xmlSchemaNewValidCtxt' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='schema' type='xmlSchemaPtr' info=''/> - </function> - <function name='xmlSchemaParse' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>parse a schema definition resource and build an internal XML Shema struture which can be used to validate instances.</info> - <return type='xmlSchemaPtr' info='the internal XML Schema structure built from the resource or NULL in case of error'/> - <arg name='ctxt' type='xmlSchemaParserCtxtPtr' info='a schema validation context'/> - </function> - <function name='xmlSchemaSAXPlug' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='xmlSchemaSAXPlugPtr' info=''/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='sax' type='xmlSAXHandlerPtr *' info=''/> - <arg name='user_data' type='void **' info=''/> - </function> - <function name='xmlSchemaSAXUnplug' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='int' info=''/> - <arg name='plug' type='xmlSchemaSAXPlugPtr' info=''/> - </function> - <function name='xmlSchemaSetParserErrors' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Set the callback functions used to handle errors for a validation context</info> - <return type='void'/> - <arg name='ctxt' type='xmlSchemaParserCtxtPtr' info='a schema validation context'/> - <arg name='err' type='xmlSchemaValidityErrorFunc' info='the error callback'/> - <arg name='warn' type='xmlSchemaValidityWarningFunc' info='the warning callback'/> - <arg name='ctx' type='void *' info='contextual data for the callbacks'/> - </function> - <function name='xmlSchemaSetParserStructuredErrors' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Set the structured error callback</info> - <return type='void'/> - <arg name='ctxt' type='xmlSchemaParserCtxtPtr' info='a schema parser context'/> - <arg name='serror' type='xmlStructuredErrorFunc' info='the structured error function'/> - <arg name='ctx' type='void *' info='the functions context'/> - </function> - <function name='xmlSchemaSetValidErrors' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='void'/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='err' type='xmlSchemaValidityErrorFunc' info=''/> - <arg name='warn' type='xmlSchemaValidityWarningFunc' info=''/> - <arg name='ctx' type='void *' info=''/> - </function> - <function name='xmlSchemaSetValidOptions' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='int' info=''/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='options' type='int' info=''/> - </function> - <function name='xmlSchemaSetValidStructuredErrors' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='void'/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='serror' type='xmlStructuredErrorFunc' info=''/> - <arg name='ctx' type='void *' info=''/> - </function> - <function name='xmlSchemaValPredefTypeNode' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Check that a value conforms to the lexical space of the predefined type. if true a value is computed and returned in @val.</info> - <return type='int' info='0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='type' type='xmlSchemaTypePtr' info='the predefined type'/> - <arg name='value' type='const xmlChar *' info='the value to check'/> - <arg name='val' type='xmlSchemaValPtr *' info='the return computed value'/> - <arg name='node' type='xmlNodePtr' info='the node containing the value'/> - </function> - <function name='xmlSchemaValPredefTypeNodeNoNorm' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Check that a value conforms to the lexical space of the predefined type. if true a value is computed and returned in @val. This one does apply any normalization to the value.</info> - <return type='int' info='0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='type' type='xmlSchemaTypePtr' info='the predefined type'/> - <arg name='value' type='const xmlChar *' info='the value to check'/> - <arg name='val' type='xmlSchemaValPtr *' info='the return computed value'/> - <arg name='node' type='xmlNodePtr' info='the node containing the value'/> - </function> - <function name='xmlSchemaValidCtxtGetOptions' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='int' info=''/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - </function> - <function name='xmlSchemaValidateDoc' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='int' info=''/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='instance' type='xmlDocPtr' info=''/> - </function> - <function name='xmlSchemaValidateFacet' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Check a value against a facet condition</info> - <return type='int' info='0 if the element is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='base' type='xmlSchemaTypePtr' info='the base type'/> - <arg name='facet' type='xmlSchemaFacetPtr' info='the facet to check'/> - <arg name='value' type='const xmlChar *' info='the lexical repr of the value to validate'/> - <arg name='val' type='xmlSchemaValPtr' info='the precomputed value'/> - </function> - <function name='xmlSchemaValidateFacetWhtsp' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Check a value against a facet condition. This takes value normalization according to the specified whitespace types into account. Note that @value needs to be the *normalized* value if the facet is of type "pattern".</info> - <return type='int' info='0 if the element is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='facet' type='xmlSchemaFacetPtr' info='the facet to check'/> - <arg name='fws' type='xmlSchemaWhitespaceValueType' info='the whitespace type of the facet's value'/> - <arg name='valType' type='xmlSchemaValType' info='the built-in type of the value'/> - <arg name='value' type='const xmlChar *' info='the lexical (or normalized for pattern) repr of the value to validate'/> - <arg name='val' type='xmlSchemaValPtr' info='the precomputed value'/> - <arg name='ws' type='xmlSchemaWhitespaceValueType' info='the whitespace type of the value'/> - </function> - <function name='xmlSchemaValidateFile' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='int' info=''/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='filename' type='const char *' info=''/> - <arg name='options' type='int' info=''/> - </function> - <function name='xmlSchemaValidateLengthFacet' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Checka a value against a "length", "minLength" and "maxLength" facet; sets @length to the computed length of @value.</info> - <return type='int' info='0 if the value is valid, a positive error code otherwise and -1 in case of an internal or API error.'/> - <arg name='type' type='xmlSchemaTypePtr' info='the built-in type'/> - <arg name='facet' type='xmlSchemaFacetPtr' info='the facet to check'/> - <arg name='value' type='const xmlChar *' info='the lexical repr. of the value to be validated'/> - <arg name='val' type='xmlSchemaValPtr' info='the precomputed value'/> - <arg name='length' type='unsigned long *' info='the actual length of the value'/> - </function> - <function name='xmlSchemaValidateLengthFacetWhtsp' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Checka a value against a "length", "minLength" and "maxLength" facet; sets @length to the computed length of @value.</info> - <return type='int' info='0 if the value is valid, a positive error code otherwise and -1 in case of an internal or API error.'/> - <arg name='facet' type='xmlSchemaFacetPtr' info='the facet to check'/> - <arg name='valType' type='xmlSchemaValType' info='the built-in type'/> - <arg name='value' type='const xmlChar *' info='the lexical repr. of the value to be validated'/> - <arg name='val' type='xmlSchemaValPtr' info='the precomputed value'/> - <arg name='length' type='unsigned long *' info='the actual length of the value'/> - <arg name='ws' type='xmlSchemaWhitespaceValueType' info='the whitespace type of the value'/> - </function> - <function name='xmlSchemaValidateListSimpleTypeFacet' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Checks the value of a list simple type against a facet.</info> - <return type='int' info='0 if the value is valid, a positive error code number otherwise and -1 in case of an internal error.'/> - <arg name='facet' type='xmlSchemaFacetPtr' info='the facet to check'/> - <arg name='value' type='const xmlChar *' info='the lexical repr of the value to validate'/> - <arg name='actualLen' type='unsigned long' info='the number of list items'/> - <arg name='expectedLen' type='unsigned long *' info='the resulting expected number of list items'/> - </function> - <function name='xmlSchemaValidateOneElement' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='int' info=''/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='elem' type='xmlNodePtr' info=''/> - </function> - <function name='xmlSchemaValidatePredefinedType' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Check that a value conforms to the lexical space of the predefined type. if true a value is computed and returned in @val.</info> - <return type='int' info='0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='type' type='xmlSchemaTypePtr' info='the predefined type'/> - <arg name='value' type='const xmlChar *' info='the value to check'/> - <arg name='val' type='xmlSchemaValPtr *' info='the return computed value'/> - </function> - <function name='xmlSchemaValidateStream' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='int' info=''/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='input' type='xmlParserInputBufferPtr' info=''/> - <arg name='enc' type='xmlCharEncoding' info=''/> - <arg name='sax' type='xmlSAXHandlerPtr' info=''/> - <arg name='user_data' type='void *' info=''/> - </function> - <functype name='xmlSchemaValidityErrorFunc' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='void'/> - <arg name='ctx' type='void *' info=''/> - <arg name='msg' type='const char *' info=''/> - <arg name='...' type='...' info=''/> - </functype> - <functype name='xmlSchemaValidityWarningFunc' file='xmlschemas' module='xmlschemas'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info></info> - <return type='void'/> - <arg name='ctx' type='void *' info=''/> - <arg name='msg' type='const char *' info=''/> - <arg name='...' type='...' info=''/> - </functype> - <function name='xmlSchemaValueAppend' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Appends a next sibling to a list of computed values.</info> - <return type='int' info='0 if succeeded and -1 on API errors.'/> - <arg name='prev' type='xmlSchemaValPtr' info='the value'/> - <arg name='cur' type='xmlSchemaValPtr' info='the value to be appended'/> - </function> - <function name='xmlSchemaValueGetAsBoolean' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Accessor for the boolean value of a computed value.</info> - <return type='int' info='1 if true and 0 if false, or in case of an error. Hmm.'/> - <arg name='val' type='xmlSchemaValPtr' info='the value'/> - </function> - <function name='xmlSchemaValueGetAsString' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Accessor for the string value of a computed value.</info> - <return type='const xmlChar *' info='the string value or NULL if there was none, or on API errors.'/> - <arg name='val' type='xmlSchemaValPtr' info='the value'/> - </function> - <function name='xmlSchemaValueGetNext' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Accessor for the next sibling of a list of computed values.</info> - <return type='xmlSchemaValPtr' info='the next value or NULL if there was none, or on API errors.'/> - <arg name='cur' type='xmlSchemaValPtr' info='the value'/> - </function> - <function name='xmlSchemaWhiteSpaceReplace' file='xmlschemastypes' module='xmlschemastypes'> - <cond>defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Replaces 0xd, 0x9 and 0xa with a space.</info> - <return type='xmlChar *' info='the new string or NULL if no change was required.'/> - <arg name='value' type='const xmlChar *' info='a value'/> - </function> - <function name='xmlSchematronFree' file='schematron' module='schematron'> - <cond>defined(LIBXML_SCHEMATRON_ENABLED)</cond> - <info>Deallocate a Schematron structure.</info> - <return type='void'/> - <arg name='schema' type='xmlSchematronPtr' info='a schema structure'/> - </function> - <function name='xmlSchematronFreeParserCtxt' file='schematron' module='schematron'> - <cond>defined(LIBXML_SCHEMATRON_ENABLED)</cond> - <info>Free the resources associated to the schema parser context</info> - <return type='void'/> - <arg name='ctxt' type='xmlSchematronParserCtxtPtr' info='the schema parser context'/> - </function> - <function name='xmlSchematronFreeValidCtxt' file='schematron' module='schematron'> - <cond>defined(LIBXML_SCHEMATRON_ENABLED)</cond> - <info>Free the resources associated to the schema validation context</info> - <return type='void'/> - <arg name='ctxt' type='xmlSchematronValidCtxtPtr' info='the schema validation context'/> - </function> - <function name='xmlSchematronNewDocParserCtxt' file='schematron' module='schematron'> - <cond>defined(LIBXML_SCHEMATRON_ENABLED)</cond> - <info>Create an XML Schematrons parse context for that document. NB. The document may be modified during the parsing process.</info> - <return type='xmlSchematronParserCtxtPtr' info='the parser context or NULL in case of error'/> - <arg name='doc' type='xmlDocPtr' info='a preparsed document tree'/> - </function> - <function name='xmlSchematronNewMemParserCtxt' file='schematron' module='schematron'> - <cond>defined(LIBXML_SCHEMATRON_ENABLED)</cond> - <info>Create an XML Schematrons parse context for that memory buffer expected to contain an XML Schematrons file.</info> - <return type='xmlSchematronParserCtxtPtr' info='the parser context or NULL in case of error'/> - <arg name='buffer' type='const char *' info='a pointer to a char array containing the schemas'/> - <arg name='size' type='int' info='the size of the array'/> - </function> - <function name='xmlSchematronNewParserCtxt' file='schematron' module='schematron'> - <cond>defined(LIBXML_SCHEMATRON_ENABLED)</cond> - <info>Create an XML Schematrons parse context for that file/resource expected to contain an XML Schematrons file.</info> - <return type='xmlSchematronParserCtxtPtr' info='the parser context or NULL in case of error'/> - <arg name='URL' type='const char *' info='the location of the schema'/> - </function> - <function name='xmlSchematronNewValidCtxt' file='schematron' module='schematron'> - <cond>defined(LIBXML_SCHEMATRON_ENABLED)</cond> - <info>Create an XML Schematrons validation context based on the given schema.</info> - <return type='xmlSchematronValidCtxtPtr' info='the validation context or NULL in case of error'/> - <arg name='schema' type='xmlSchematronPtr' info='a precompiled XML Schematrons'/> - <arg name='options' type='int' info='a set of xmlSchematronValidOptions'/> - </function> - <function name='xmlSchematronParse' file='schematron' module='schematron'> - <cond>defined(LIBXML_SCHEMATRON_ENABLED)</cond> - <info>parse a schema definition resource and build an internal XML Shema struture which can be used to validate instances.</info> - <return type='xmlSchematronPtr' info='the internal XML Schematron structure built from the resource or NULL in case of error'/> - <arg name='ctxt' type='xmlSchematronParserCtxtPtr' info='a schema validation context'/> - </function> - <function name='xmlSchematronValidateDoc' file='schematron' module='schematron'> - <cond>defined(LIBXML_SCHEMATRON_ENABLED)</cond> - <info>Validate a tree instance against the schematron</info> - <return type='int' info='0 in case of success, -1 in case of internal error and an error count otherwise.'/> - <arg name='ctxt' type='xmlSchematronValidCtxtPtr' info='the schema validation context'/> - <arg name='instance' type='xmlDocPtr' info='the document instace tree'/> - </function> - <functype name='xmlSchematronValidityErrorFunc' file='schematron' module='schematron'> - <cond>defined(LIBXML_SCHEMATRON_ENABLED)</cond> - <info></info> - <return type='void'/> - <arg name='ctx' type='void *' info=''/> - <arg name='msg' type='const char *' info=''/> - <arg name='...' type='...' info=''/> - </functype> - <functype name='xmlSchematronValidityWarningFunc' file='schematron' module='schematron'> - <cond>defined(LIBXML_SCHEMATRON_ENABLED)</cond> - <info></info> - <return type='void'/> - <arg name='ctx' type='void *' info=''/> - <arg name='msg' type='const char *' info=''/> - <arg name='...' type='...' info=''/> - </functype> - <function name='xmlSearchNs' file='tree' module='tree'> - <info>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.</info> - <return type='xmlNsPtr' info='the namespace pointer or NULL.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='node' type='xmlNodePtr' info='the current node'/> - <arg name='nameSpace' type='const xmlChar *' info='the namespace prefix'/> - </function> - <function name='xmlSearchNsByHref' file='tree' module='tree'> - <info>Search a Ns aliasing a given URI. Recurse on the parents until it finds the defined namespace or return NULL otherwise.</info> - <return type='xmlNsPtr' info='the namespace pointer or NULL.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='node' type='xmlNodePtr' info='the current node'/> - <arg name='href' type='const xmlChar *' info='the namespace value'/> - </function> - <function name='xmlSetBufferAllocationScheme' file='tree' module='tree'> - <info>Set the buffer allocation method. Types are XML_BUFFER_ALLOC_EXACT - use exact sizes, keeps memory usage down XML_BUFFER_ALLOC_DOUBLEIT - double buffer when extra needed, improves performance</info> - <return type='void'/> - <arg name='scheme' type='xmlBufferAllocationScheme' info='allocation method to use'/> - </function> - <function name='xmlSetCompressMode' file='tree' module='tree'> - <info>set the default compression mode used, ZLIB based Correct values: 0 (uncompressed) to 9 (max compression)</info> - <return type='void'/> - <arg name='mode' type='int' info='the compression ratio'/> - </function> - <function name='xmlSetDocCompressMode' file='tree' module='tree'> - <info>set the compression ratio for a document, ZLIB based Correct values: 0 (uncompressed) to 9 (max compression)</info> - <return type='void'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='mode' type='int' info='the compression ratio'/> - </function> - <function name='xmlSetEntityReferenceFunc' file='parserInternals' module='parser'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Set the function to call call back when a xml reference has been made</info> - <return type='void'/> - <arg name='func' type='xmlEntityReferenceFunc' info='A valid function'/> - </function> - <function name='xmlSetExternalEntityLoader' file='parser' module='xmlIO'> - <info>Changes the defaultexternal entity resolver function for the application</info> - <return type='void'/> - <arg name='f' type='xmlExternalEntityLoader' info='the new entity resolver function'/> - </function> - <function name='xmlSetFeature' file='parser' module='legacy'> - <cond>defined(LIBXML_LEGACY_ENABLED)</cond> - <info>Change the current value of one feature of this parser instance</info> - <return type='int' info='-1 in case or error, 0 otherwise'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML/HTML parser context'/> - <arg name='name' type='const char *' info='the feature name'/> - <arg name='value' type='void *' info='pointer to the location of the new value'/> - </function> - <function name='xmlSetGenericErrorFunc' file='xmlerror' module='error'> - <info>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.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the new error handling context'/> - <arg name='handler' type='xmlGenericErrorFunc' info='the new handler function'/> - </function> - <function name='xmlSetListDoc' file='tree' module='tree'> - <info>update all nodes in the list to point to the right document</info> - <return type='void'/> - <arg name='list' type='xmlNodePtr' info='the first element'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - </function> - <function name='xmlSetNs' file='tree' module='tree'> - <info>Associate a namespace to a node, a posteriori.</info> - <return type='void'/> - <arg name='node' type='xmlNodePtr' info='a node in the document'/> - <arg name='ns' type='xmlNsPtr' info='a namespace pointer'/> - </function> - <function name='xmlSetNsProp' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED)</cond> - <info>Set (or reset) an attribute carried by a node. The ns structure must be in scope, this is not checked</info> - <return type='xmlAttrPtr' info='the attribute pointer.'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - <arg name='ns' type='xmlNsPtr' info='the namespace definition'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - <arg name='value' type='const xmlChar *' info='the attribute value'/> - </function> - <function name='xmlSetProp' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XINCLUDE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_HTML_ENABLED)</cond> - <info>Set (or reset) an attribute carried by a node. If @name has a prefix, then the corresponding namespace-binding will be used, if in scope; it is an error it there's no such ns-binding for the prefix in scope.</info> - <return type='xmlAttrPtr' info='the attribute pointer.'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - <arg name='name' type='const xmlChar *' info='the attribute name (a QName)'/> - <arg name='value' type='const xmlChar *' info='the attribute value'/> - </function> - <function name='xmlSetStructuredErrorFunc' file='xmlerror' module='error'> - <info>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.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='the new error handling context'/> - <arg name='handler' type='xmlStructuredErrorFunc' info='the new handler function'/> - </function> - <function name='xmlSetTreeDoc' file='tree' module='tree'> - <info>update all nodes under the tree to point to the right document</info> - <return type='void'/> - <arg name='tree' type='xmlNodePtr' info='the top element'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - </function> - <function name='xmlSetupParserForBuffer' file='parser' module='parser'> - <cond>defined(LIBXML_SAX1_ENABLED)</cond> - <info>Setup the parser context to parse a new buffer; Clears any prior contents from the parser context. The buffer parameter must not be NULL, but the filename parameter can be</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='buffer' type='const xmlChar *' info='a xmlChar * buffer'/> - <arg name='filename' type='const char *' info='a file name'/> - </function> - <function name='xmlShell' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the XML shell This allow to load, validate, view, modify and save a document using a environment similar to a UNIX commandline.</info> - <return type='void'/> - <arg name='doc' type='xmlDocPtr' info='the initial document'/> - <arg name='filename' type='char *' info='the output buffer'/> - <arg name='input' type='xmlShellReadlineFunc' info='the line reading function'/> - <arg name='output' type='FILE *' info='the output FILE*, defaults to stdout if NULL'/> - </function> - <function name='xmlShellBase' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the XML shell function "base" dumps the current XML base of the node</info> - <return type='int' info='0'/> - <arg name='ctxt' type='xmlShellCtxtPtr' info='the shell context'/> - <arg name='arg' type='char *' info='unused'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - <arg name='node2' type='xmlNodePtr' info='unused'/> - </function> - <function name='xmlShellCat' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Implements the XML shell function "cat" dumps the serialization node content (XML or HTML).</info> - <return type='int' info='0'/> - <arg name='ctxt' type='xmlShellCtxtPtr' info='the shell context'/> - <arg name='arg' type='char *' info='unused'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - <arg name='node2' type='xmlNodePtr' info='unused'/> - </function> - <functype name='xmlShellCmd' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED)</cond> - <info>This is a generic signature for the XML shell functions.</info> - <return type='int' info='an int, negative returns indicating errors.'/> - <arg name='ctxt' type='xmlShellCtxtPtr' info='a shell context'/> - <arg name='arg' type='char *' info='a string argument'/> - <arg name='node' type='xmlNodePtr' info='a first node'/> - <arg name='node2' type='xmlNodePtr' info='a second node'/> - </functype> - <function name='xmlShellDir' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the XML shell function "dir" dumps informations about the node (namespace, attributes, content).</info> - <return type='int' info='0'/> - <arg name='ctxt' type='xmlShellCtxtPtr' info='the shell context'/> - <arg name='arg' type='char *' info='unused'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - <arg name='node2' type='xmlNodePtr' info='unused'/> - </function> - <function name='xmlShellDu' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the XML shell function "du" show the structure of the subtree under node @tree If @tree is null, the command works on the current node.</info> - <return type='int' info='0 or -1 in case of error'/> - <arg name='ctxt' type='xmlShellCtxtPtr' info='the shell context'/> - <arg name='arg' type='char *' info='unused'/> - <arg name='tree' type='xmlNodePtr' info='a node defining a subtree'/> - <arg name='node2' type='xmlNodePtr' info='unused'/> - </function> - <function name='xmlShellList' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the XML shell function "ls" Does an Unix like listing of the given node (like a directory)</info> - <return type='int' info='0'/> - <arg name='ctxt' type='xmlShellCtxtPtr' info='the shell context'/> - <arg name='arg' type='char *' info='unused'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - <arg name='node2' type='xmlNodePtr' info='unused'/> - </function> - <function name='xmlShellLoad' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the XML shell function "load" loads a new document specified by the filename</info> - <return type='int' info='0 or -1 if loading failed'/> - <arg name='ctxt' type='xmlShellCtxtPtr' info='the shell context'/> - <arg name='filename' type='char *' info='the file name'/> - <arg name='node' type='xmlNodePtr' info='unused'/> - <arg name='node2' type='xmlNodePtr' info='unused'/> - </function> - <function name='xmlShellPrintNode' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Print node to the output FILE</info> - <return type='void'/> - <arg name='node' type='xmlNodePtr' info='a non-null node to print to the output FILE'/> - </function> - <function name='xmlShellPrintXPathError' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED)</cond> - <info>Print the xpath error to libxml default error channel</info> - <return type='void'/> - <arg name='errorType' type='int' info='valid xpath error id'/> - <arg name='arg' type='const char *' info='the argument that cause xpath to fail'/> - </function> - <function name='xmlShellPrintXPathResult' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED)</cond> - <info>Prints result to the output FILE</info> - <return type='void'/> - <arg name='list' type='xmlXPathObjectPtr' info='a valid result generated by an xpath evaluation'/> - </function> - <function name='xmlShellPwd' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the XML shell function "pwd" Show the full path from the root to the node, if needed building thumblers when similar elements exists at a given ancestor level. The output is compatible with XPath commands.</info> - <return type='int' info='0 or -1 in case of error'/> - <arg name='ctxt' type='xmlShellCtxtPtr' info='the shell context'/> - <arg name='buffer' type='char *' info='the output buffer'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - <arg name='node2' type='xmlNodePtr' info='unused'/> - </function> - <functype name='xmlShellReadlineFunc' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED)</cond> - <info>This is a generic signature for the XML shell input function.</info> - <return type='char *' info='a string which will be freed by the Shell.'/> - <arg name='prompt' type='char *' info='a string prompt'/> - </functype> - <function name='xmlShellSave' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Implements the XML shell function "save" Write the current document to the filename, or it's original name</info> - <return type='int' info='0 or -1 in case of error'/> - <arg name='ctxt' type='xmlShellCtxtPtr' info='the shell context'/> - <arg name='filename' type='char *' info='the file name (optional)'/> - <arg name='node' type='xmlNodePtr' info='unused'/> - <arg name='node2' type='xmlNodePtr' info='unused'/> - </function> - <function name='xmlShellValidate' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED) && defined(LIBXML_VALID_ENABLED)</cond> - <info>Implements the XML shell function "validate" Validate the document, if a DTD path is provided, then the validation is done against the given DTD.</info> - <return type='int' info='0 or -1 in case of error'/> - <arg name='ctxt' type='xmlShellCtxtPtr' info='the shell context'/> - <arg name='dtd' type='char *' info='the DTD URI (optional)'/> - <arg name='node' type='xmlNodePtr' info='unused'/> - <arg name='node2' type='xmlNodePtr' info='unused'/> - </function> - <function name='xmlShellWrite' file='debugXML' module='debugXML'> - <cond>defined(LIBXML_DEBUG_ENABLED) && defined(LIBXML_XPATH_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Implements the XML shell function "write" Write the current node to the filename, it saves the serialization of the subtree under the @node specified</info> - <return type='int' info='0 or -1 in case of error'/> - <arg name='ctxt' type='xmlShellCtxtPtr' info='the shell context'/> - <arg name='filename' type='char *' info='the file name'/> - <arg name='node' type='xmlNodePtr' info='a node in the tree'/> - <arg name='node2' type='xmlNodePtr' info='unused'/> - </function> - <function name='xmlSkipBlankChars' file='parserInternals' module='parser'> - <info>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.</info> - <return type='int' info='the number of space chars skipped'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the XML parser context'/> - </function> - <function name='xmlSnprintfElementContent' file='valid' module='valid'> - <info>This will dump the content of the element content definition Intended just for the debug routine</info> - <return type='void'/> - <arg name='buf' type='char *' info='an output buffer'/> - <arg name='size' type='int' info='the buffer size'/> - <arg name='content' type='xmlElementContentPtr' info='An element table'/> - <arg name='englob' type='int' info='1 if one must print the englobing parenthesis, 0 otherwise'/> - </function> - <function name='xmlSplitQName' file='parserInternals' module='parser'> - <info>parse an UTF8 encoded XML qualified name string [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName</info> - <return type='xmlChar *' info='the local part, and prefix is updated to get the Prefix if any.'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - <arg name='name' type='const xmlChar *' info='an XML parser context'/> - <arg name='prefix' type='xmlChar **' info='a xmlChar **'/> - </function> - <function name='xmlSplitQName2' file='tree' module='tree'> - <info>parse an XML qualified name string [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName</info> - <return type='xmlChar *' info='NULL if not a QName, otherwise the local part, and prefix is updated to get the Prefix if any.'/> - <arg name='name' type='const xmlChar *' info='the full QName'/> - <arg name='prefix' type='xmlChar **' info='a xmlChar **'/> - </function> - <function name='xmlSplitQName3' file='tree' module='tree'> - <info>parse an XML qualified name string,i</info> - <return type='const xmlChar *' info='NULL if it is not a Qualified Name, otherwise, update len with the lenght in byte of the prefix and return a pointer to the start of the name without the prefix'/> - <arg name='name' type='const xmlChar *' info='the full QName'/> - <arg name='len' type='int *' info='an int *'/> - </function> - <function name='xmlSprintfElementContent' file='valid' module='valid'> - <cond>defined(LIBXML_OUTPUT_ENABLED)</cond> - <info>Deprecated, unsafe, use xmlSnprintfElementContent</info> - <return type='void'/> - <arg name='buf' type='char *' info='an output buffer'/> - <arg name='content' type='xmlElementContentPtr' info='An element table'/> - <arg name='englob' type='int' info='1 if one must print the englobing parenthesis, 0 otherwise'/> - </function> - <function name='xmlStopParser' file='parser' module='parser'> - <info>Blocks further parser processing</info> - <return type='void'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> - </function> - <function name='xmlStrEqual' file='xmlstring' module='xmlstring'> - <info>Check if both strings are equal of have same content. Should be a bit more readable and faster than xmlStrcmp()</info> - <return type='int' info='1 if they are equal, 0 if they are different'/> - <arg name='str1' type='const xmlChar *' info='the first xmlChar *'/> - <arg name='str2' type='const xmlChar *' info='the second xmlChar *'/> - </function> - <function name='xmlStrPrintf' file='xmlstring' module='xmlstring'> - <info>Formats @msg and places result into @buf.</info> - <return type='int' info='the number of characters written to @buf or -1 if an error occurs.'/> - <arg name='buf' type='xmlChar *' info='the result buffer.'/> - <arg name='len' type='int' info='the result buffer length.'/> - <arg name='msg' type='const xmlChar *' info='the message with printf formatting.'/> - <arg name='...' type='...' info='extra parameters for the message.'/> - </function> - <function name='xmlStrQEqual' file='xmlstring' module='xmlstring'> - <info>Check if a QName is Equal to a given string</info> - <return type='int' info='1 if they are equal, 0 if they are different'/> - <arg name='pref' type='const xmlChar *' info='the prefix of the QName'/> - <arg name='name' type='const xmlChar *' info='the localname of the QName'/> - <arg name='str' type='const xmlChar *' info='the second xmlChar *'/> - </function> - <function name='xmlStrVPrintf' file='xmlstring' module='xmlstring'> - <info>Formats @msg and places result into @buf.</info> - <return type='int' info='the number of characters written to @buf or -1 if an error occurs.'/> - <arg name='buf' type='xmlChar *' info='the result buffer.'/> - <arg name='len' type='int' info='the result buffer length.'/> - <arg name='msg' type='const xmlChar *' info='the message with printf formatting.'/> - <arg name='ap' type='va_list' info='extra parameters for the message.'/> - </function> - <function name='xmlStrcasecmp' file='xmlstring' module='xmlstring'> - <info>a strcasecmp for xmlChar's</info> - <return type='int' info='the integer result of the comparison'/> - <arg name='str1' type='const xmlChar *' info='the first xmlChar *'/> - <arg name='str2' type='const xmlChar *' info='the second xmlChar *'/> - </function> - <function name='xmlStrcasestr' file='xmlstring' module='xmlstring'> - <info>a case-ignoring strstr for xmlChar's</info> - <return type='const xmlChar *' info='the xmlChar * for the first occurrence or NULL.'/> - <arg name='str' type='const xmlChar *' info='the xmlChar * array (haystack)'/> - <arg name='val' type='xmlChar *' info='the xmlChar to search (needle)'/> - </function> - <function name='xmlStrcat' file='xmlstring' module='xmlstring'> - <info>a strcat for array of xmlChar's. Since they are supposed to be encoded in UTF-8 or an encoding with 8bit based chars, we assume a termination mark of '0'.</info> - <return type='xmlChar *' info='a new xmlChar * containing the concatenated string.'/> - <arg name='cur' type='xmlChar *' info='the original xmlChar * array'/> - <arg name='add' type='const xmlChar *' info='the xmlChar * array added'/> - </function> - <function name='xmlStrchr' file='xmlstring' module='xmlstring'> - <info>a strchr for xmlChar's</info> - <return type='const xmlChar *' info='the xmlChar * for the first occurrence or NULL.'/> - <arg name='str' type='const xmlChar *' info='the xmlChar * array'/> - <arg name='val' type='xmlChar' info='the xmlChar to search'/> - </function> - <function name='xmlStrcmp' file='xmlstring' module='xmlstring'> - <info>a strcmp for xmlChar's</info> - <return type='int' info='the integer result of the comparison'/> - <arg name='str1' type='const xmlChar *' info='the first xmlChar *'/> - <arg name='str2' type='const xmlChar *' info='the second xmlChar *'/> - </function> - <function name='xmlStrdup' file='xmlstring' module='xmlstring'> - <info>a strdup for array of xmlChar's. Since they are supposed to be encoded in UTF-8 or an encoding with 8bit based chars, we assume a termination mark of '0'.</info> - <return type='xmlChar *' info='a new xmlChar * or NULL'/> - <arg name='cur' type='const xmlChar *' info='the input xmlChar *'/> - </function> - <functype name='xmlStrdupFunc' file='xmlmemory' module='xmlmemory'> - <info>Signature for an strdup() implementation.</info> - <return type='char *' info='the copy of the string or NULL in case of error.'/> - <arg name='str' type='const char *' info='a zero terminated string'/> - </functype> - <function name='xmlStreamPop' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>push one level from the stream.</info> - <return type='int' info='-1 in case of error, 0 otherwise.'/> - <arg name='stream' type='xmlStreamCtxtPtr' info='the stream context'/> - </function> - <function name='xmlStreamPush' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Push new data onto the stream. NOTE: if the call xmlPatterncompile() indicated a dictionary, then strings for name and ns will be expected to come from the dictionary. Both @name and @ns being NULL means the / i.e. the root of the document. This can also act as a reset. Otherwise the function will act as if it has been given an element-node.</info> - <return type='int' info='-1 in case of error, 1 if the current state in the stream is a match and 0 otherwise.'/> - <arg name='stream' type='xmlStreamCtxtPtr' info='the stream context'/> - <arg name='name' type='const xmlChar *' info='the current name'/> - <arg name='ns' type='const xmlChar *' info='the namespace name'/> - </function> - <function name='xmlStreamPushAttr' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Push new attribute data onto the stream. NOTE: if the call xmlPatterncompile() indicated a dictionary, then strings for name and ns will be expected to come from the dictionary. Both @name and @ns being NULL means the / i.e. the root of the document. This can also act as a reset. Otherwise the function will act as if it has been given an attribute-node.</info> - <return type='int' info='-1 in case of error, 1 if the current state in the stream is a match and 0 otherwise.'/> - <arg name='stream' type='xmlStreamCtxtPtr' info='the stream context'/> - <arg name='name' type='const xmlChar *' info='the current name'/> - <arg name='ns' type='const xmlChar *' info='the namespace name'/> - </function> - <function name='xmlStreamPushNode' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Push new data onto the stream. NOTE: if the call xmlPatterncompile() indicated a dictionary, then strings for name and ns will be expected to come from the dictionary. Both @name and @ns being NULL means the / i.e. the root of the document. This can also act as a reset. Different from xmlStreamPush() this function can be fed with nodes of type: element-, attribute-, text-, cdata-section-, comment- and processing-instruction-node.</info> - <return type='int' info='-1 in case of error, 1 if the current state in the stream is a match and 0 otherwise.'/> - <arg name='stream' type='xmlStreamCtxtPtr' info='the stream context'/> - <arg name='name' type='const xmlChar *' info='the current name'/> - <arg name='ns' type='const xmlChar *' info='the namespace name'/> - <arg name='nodeType' type='int' info='the type of the node being pushed'/> - </function> - <function name='xmlStreamWantsAnyNode' file='pattern' module='pattern'> - <cond>defined(LIBXML_PATTERN_ENABLED)</cond> - <info>Query if the streaming pattern additionally needs to be fed with text-, cdata-section-, comment- and processing-instruction-nodes. If the result is 0 then only element-nodes and attribute-nodes need to be pushed.</info> - <return type='int' info='1 in case of need of nodes of the above described types, 0 otherwise. -1 on API errors.'/> - <arg name='streamCtxt' type='xmlStreamCtxtPtr' info='the stream context'/> - </function> - <function name='xmlStringCurrentChar' file='parserInternals' module='parserInternals'> - <info>The current char value, if using UTF-8 this may actually span multiple bytes in the input buffer.</info> - <return type='int' info='the current char value and its length'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the XML parser context'/> - <arg name='cur' type='const xmlChar *' info='pointer to the beginning of the char'/> - <arg name='len' type='int *' info='pointer to the length of the char read'/> - </function> - <function name='xmlStringDecodeEntities' file='parserInternals' module='parser'> - <info>Takes a entity string content and process to do the adequate substitutions. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';'</info> - <return type='xmlChar *' info='A newly allocated string with the substitution done. The caller must deallocate it !'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/> - <arg name='str' type='const xmlChar *' info='the input string'/> - <arg name='what' type='int' info='combination of XML_SUBSTITUTE_REF and XML_SUBSTITUTE_PEREF'/> - <arg name='end' type='xmlChar' info='an end marker xmlChar, 0 if none'/> - <arg name='end2' type='xmlChar' info='an end marker xmlChar, 0 if none'/> - <arg name='end3' type='xmlChar' info='an end marker xmlChar, 0 if none'/> - </function> - <function name='xmlStringGetNodeList' file='tree' module='tree'> - <info>Parse the value string and build the node list associated. Should produce a flat tree with only TEXTs and ENTITY_REFs.</info> - <return type='xmlNodePtr' info='a pointer to the first child'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='value' type='const xmlChar *' info='the value of the attribute'/> - </function> - <function name='xmlStringLenDecodeEntities' file='parserInternals' module='parser'> - <info>Takes a entity string content and process to do the adequate substitutions. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';'</info> - <return type='xmlChar *' info='A newly allocated string with the substitution done. The caller must deallocate it !'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/> - <arg name='str' type='const xmlChar *' info='the input string'/> - <arg name='len' type='int' info='the string length'/> - <arg name='what' type='int' info='combination of XML_SUBSTITUTE_REF and XML_SUBSTITUTE_PEREF'/> - <arg name='end' type='xmlChar' info='an end marker xmlChar, 0 if none'/> - <arg name='end2' type='xmlChar' info='an end marker xmlChar, 0 if none'/> - <arg name='end3' type='xmlChar' info='an end marker xmlChar, 0 if none'/> - </function> - <function name='xmlStringLenGetNodeList' file='tree' module='tree'> - <info>Parse the value string and build the node list associated. Should produce a flat tree with only TEXTs and ENTITY_REFs.</info> - <return type='xmlNodePtr' info='a pointer to the first child'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='value' type='const xmlChar *' info='the value of the text'/> - <arg name='len' type='int' info='the length of the string value'/> - </function> - <function name='xmlStrlen' file='xmlstring' module='xmlstring'> - <info>length of a xmlChar's string</info> - <return type='int' info='the number of xmlChar contained in the ARRAY.'/> - <arg name='str' type='const xmlChar *' info='the xmlChar * array'/> - </function> - <function name='xmlStrncasecmp' file='xmlstring' module='xmlstring'> - <info>a strncasecmp for xmlChar's</info> - <return type='int' info='the integer result of the comparison'/> - <arg name='str1' type='const xmlChar *' info='the first xmlChar *'/> - <arg name='str2' type='const xmlChar *' info='the second xmlChar *'/> - <arg name='len' type='int' info='the max comparison length'/> - </function> - <function name='xmlStrncat' file='xmlstring' module='xmlstring'> - <info>a strncat for array of xmlChar's, it will extend @cur with the len first bytes of @add. Note that if @len < 0 then this is an API error and NULL will be returned.</info> - <return type='xmlChar *' info='a new xmlChar *, the original @cur is reallocated if needed and should not be freed'/> - <arg name='cur' type='xmlChar *' info='the original xmlChar * array'/> - <arg name='add' type='const xmlChar *' info='the xmlChar * array added'/> - <arg name='len' type='int' info='the length of @add'/> - </function> - <function name='xmlStrncatNew' file='xmlstring' module='xmlstring'> - <info>same as xmlStrncat, but creates a new string. The original two strings are not freed. If @len is < 0 then the length will be calculated automatically.</info> - <return type='xmlChar *' info='a new xmlChar * or NULL'/> - <arg name='str1' type='const xmlChar *' info='first xmlChar string'/> - <arg name='str2' type='const xmlChar *' info='second xmlChar string'/> - <arg name='len' type='int' info='the len of @str2 or < 0'/> - </function> - <function name='xmlStrncmp' file='xmlstring' module='xmlstring'> - <info>a strncmp for xmlChar's</info> - <return type='int' info='the integer result of the comparison'/> - <arg name='str1' type='const xmlChar *' info='the first xmlChar *'/> - <arg name='str2' type='const xmlChar *' info='the second xmlChar *'/> - <arg name='len' type='int' info='the max comparison length'/> - </function> - <function name='xmlStrndup' file='xmlstring' module='xmlstring'> - <info>a strndup for array of xmlChar's</info> - <return type='xmlChar *' info='a new xmlChar * or NULL'/> - <arg name='cur' type='const xmlChar *' info='the input xmlChar *'/> - <arg name='len' type='int' info='the len of @cur'/> - </function> - <function name='xmlStrstr' file='xmlstring' module='xmlstring'> - <info>a strstr for xmlChar's</info> - <return type='const xmlChar *' info='the xmlChar * for the first occurrence or NULL.'/> - <arg name='str' type='const xmlChar *' info='the xmlChar * array (haystack)'/> - <arg name='val' type='const xmlChar *' info='the xmlChar to search (needle)'/> - </function> - <function name='xmlStrsub' file='xmlstring' module='xmlstring'> - <info>Extract a substring of a given string</info> - <return type='xmlChar *' info='the xmlChar * for the first occurrence or NULL.'/> - <arg name='str' type='const xmlChar *' info='the xmlChar * array (haystack)'/> - <arg name='start' type='int' info='the index of the first char (zero based)'/> - <arg name='len' type='int' info='the length of the substring'/> - </function> - <functype name='xmlStructuredErrorFunc' file='xmlerror' module='xmlerror'> - <info>Signature of the function to use when there is an error and the module handles the new error reporting mechanism.</info> - <return type='void'/> - <arg name='userData' type='void *' info='user provided data for the error callback'/> - <arg name='error' type='xmlErrorPtr' info='the error being raised.'/> - </functype> - <function name='xmlSubstituteEntitiesDefault' file='parser' module='parserInternals'> - <info>Set and return the previous value for default entity support. Initially the parser always keep entity references instead of substituting entity values in the output. This function has to be used to change the default parser behavior SAX::substituteEntities() has to be used for changing that on a file by file basis.</info> - <return type='int' info='the last value for 0 for no substitution, 1 for substitution.'/> - <arg name='val' type='int' info='int 0 or 1'/> - </function> - <function name='xmlSwitchEncoding' file='parserInternals' module='parserInternals'> - <info>change the input functions when discovering the character encoding of a given entity.</info> - <return type='int' info='0 in case of success, -1 otherwise'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/> - <arg name='enc' type='xmlCharEncoding' info='the encoding value (number)'/> - </function> - <function name='xmlSwitchInputEncoding' file='parserInternals' module='parserInternals'> - <info>change the input functions when discovering the character encoding of a given entity.</info> - <return type='int' info='0 in case of success, -1 otherwise'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/> - <arg name='input' type='xmlParserInputPtr' info='the input stream'/> - <arg name='handler' type='xmlCharEncodingHandlerPtr' info='the encoding handler'/> - </function> - <function name='xmlSwitchToEncoding' file='parserInternals' module='parserInternals'> - <info>change the input functions when discovering the character encoding of a given entity.</info> - <return type='int' info='0 in case of success, -1 otherwise'/> - <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/> - <arg name='handler' type='xmlCharEncodingHandlerPtr' info='the encoding handler'/> - </function> - <function name='xmlTextConcat' file='tree' module='tree'> - <info>Concat the given string at the end of the existing node content</info> - <return type='int' info='-1 in case of error, 0 otherwise'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - <arg name='content' type='const xmlChar *' info='the content'/> - <arg name='len' type='int' info='@content length'/> - </function> - <function name='xmlTextMerge' file='tree' module='tree'> - <info>Merge two text nodes into one</info> - <return type='xmlNodePtr' info='the first text node augmented'/> - <arg name='first' type='xmlNodePtr' info='the first text node'/> - <arg name='second' type='xmlNodePtr' info='the second text node being merged'/> - </function> - <function name='xmlTextReaderAttributeCount' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Provides the number of attributes of the current node</info> - <return type='int' info='0 i no attributes, -1 in case of error or the attribute count'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderBaseUri' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The base URI of the node.</info> - <return type='xmlChar *' info='the base URI or NULL if not available'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderByteConsumed' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>This function provides the current index of the parser used by the reader, relative to the start of the current entity. This function actually just wraps a call to xmlBytesConsumed() for the parser context associated with the reader. See xmlBytesConsumed() for more information.</info> - <return type='long' info='the index in bytes from the beginning of the entity or -1 in case the index could not be computed.'/> - <arg name='reader' type='xmlTextReaderPtr' info='an XML reader'/> - </function> - <function name='xmlTextReaderClose' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>This method releases any resources allocated by the current instance changes the state to Closed and close any underlying input.</info> - <return type='int' info='0 or -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderConstBaseUri' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The base URI of the node.</info> - <return type='const xmlChar *' info='the base URI or NULL if not available, the string will be deallocated with the reader'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderConstEncoding' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Determine the encoding of the document being read.</info> - <return type='const xmlChar *' info='a string containing the encoding of the document or NULL in case of error. The string is deallocated with the reader.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderConstLocalName' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The local name of the node.</info> - <return type='const xmlChar *' info='the local name or NULL if not available, the string will be deallocated with the reader.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderConstName' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The qualified name of the node, equal to Prefix :LocalName.</info> - <return type='const xmlChar *' info='the local name or NULL if not available, the string is deallocated with the reader.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderConstNamespaceUri' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The URI defining the namespace associated with the node.</info> - <return type='const xmlChar *' info='the namespace URI or NULL if not available, the string will be deallocated with the reader'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderConstPrefix' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>A shorthand reference to the namespace associated with the node.</info> - <return type='const xmlChar *' info='the prefix or NULL if not available, the string is deallocated with the reader.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderConstString' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Get an interned string from the reader, allows for example to speedup string name comparisons</info> - <return type='const xmlChar *' info='an interned copy of the string or NULL in case of error. The string will be deallocated with the reader.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='str' type='const xmlChar *' info='the string to intern.'/> - </function> - <function name='xmlTextReaderConstValue' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Provides the text value of the node if present</info> - <return type='const xmlChar *' info='the string or NULL if not available. The result will be deallocated on the next Read() operation.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderConstXmlLang' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The xml:lang scope within which the node resides.</info> - <return type='const xmlChar *' info='the xml:lang value or NULL if none exists.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderConstXmlVersion' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Determine the XML version of the document being read.</info> - <return type='const xmlChar *' info='a string containing the XML version of the document or NULL in case of error. The string is deallocated with the reader.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderCurrentDoc' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Hacking interface allowing to get the xmlDocPtr correponding to the current document being accessed by the xmlTextReader. NOTE: as a result of this call, the reader will not destroy the associated XML document and calling xmlFreeDoc() on the result is needed once the reader parsing has finished.</info> - <return type='xmlDocPtr' info='the xmlDocPtr or NULL in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderCurrentNode' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Hacking interface allowing to get the xmlNodePtr correponding to the current node being accessed by the xmlTextReader. This is dangerous because the underlying node may be destroyed on the next Reads.</info> - <return type='xmlNodePtr' info='the xmlNodePtr or NULL in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderDepth' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The depth of the node in the tree.</info> - <return type='int' info='the depth or -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <functype name='xmlTextReaderErrorFunc' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info></info> - <return type='void'/> - <arg name='arg' type='void *' info=''/> - <arg name='msg' type='const char *' info=''/> - <arg name='severity' type='xmlParserSeverities' info=''/> - <arg name='locator' type='xmlTextReaderLocatorPtr' info=''/> - </functype> - <function name='xmlTextReaderExpand' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Reads the contents of the current node and the full subtree. It then makes the subtree available until the next xmlTextReaderRead() call</info> - <return type='xmlNodePtr' info='a node pointer valid until the next xmlTextReaderRead() call or NULL in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderGetAttribute' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Provides the value of the attribute with the specified qualified name.</info> - <return type='xmlChar *' info='a string containing the value of the specified attribute, or NULL in case of error. The string must be deallocated by the caller.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='name' type='const xmlChar *' info='the qualified name of the attribute.'/> - </function> - <function name='xmlTextReaderGetAttributeNo' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Provides the value of the attribute with the specified index relative to the containing element.</info> - <return type='xmlChar *' info='a string containing the value of the specified attribute, or NULL in case of error. The string must be deallocated by the caller.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='no' type='int' info='the zero-based index of the attribute relative to the containing element'/> - </function> - <function name='xmlTextReaderGetAttributeNs' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Provides the value of the specified attribute</info> - <return type='xmlChar *' info='a string containing the value of the specified attribute, or NULL in case of error. The string must be deallocated by the caller.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='localName' type='const xmlChar *' info='the local name of the attribute.'/> - <arg name='namespaceURI' type='const xmlChar *' info='the namespace URI of the attribute.'/> - </function> - <function name='xmlTextReaderGetErrorHandler' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Retrieve the error callback function and user argument.</info> - <return type='void'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='f' type='xmlTextReaderErrorFunc *' info='the callback function or NULL is no callback has been registered'/> - <arg name='arg' type='void **' info='a user argument'/> - </function> - <function name='xmlTextReaderGetParserColumnNumber' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Provide the column number of the current parsing point.</info> - <return type='int' info='an int or 0 if not available'/> - <arg name='reader' type='xmlTextReaderPtr' info='the user data (XML reader context)'/> - </function> - <function name='xmlTextReaderGetParserLineNumber' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Provide the line number of the current parsing point.</info> - <return type='int' info='an int or 0 if not available'/> - <arg name='reader' type='xmlTextReaderPtr' info='the user data (XML reader context)'/> - </function> - <function name='xmlTextReaderGetParserProp' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Read the parser internal property.</info> - <return type='int' info='the value, usually 0 or 1, or -1 in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='prop' type='int' info='the xmlParserProperties to get'/> - </function> - <function name='xmlTextReaderGetRemainder' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Method to get the remainder of the buffered XML. this method stops the parser, set its state to End Of File and return the input stream with what is left that the parser did not use. The implementation is not good, the parser certainly procgressed past what's left in reader->input, and there is an allocation problem. Best would be to rewrite it differently.</info> - <return type='xmlParserInputBufferPtr' info='the xmlParserInputBufferPtr attached to the XML or NULL in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderHasAttributes' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Whether the node has attributes.</info> - <return type='int' info='1 if true, 0 if false, and -1 in case or error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderHasValue' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Whether the node can have a text value.</info> - <return type='int' info='1 if true, 0 if false, and -1 in case or error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderIsDefault' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Whether an Attribute node was generated from the default value defined in the DTD or schema.</info> - <return type='int' info='0 if not defaulted, 1 if defaulted, and -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderIsEmptyElement' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Check if the current node is empty</info> - <return type='int' info='1 if empty, 0 if not and -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderIsNamespaceDecl' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Determine whether the current node is a namespace declaration rather than a regular attribute.</info> - <return type='int' info='1 if the current node is a namespace declaration, 0 if it is a regular attribute or other type of node, or -1 in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderIsValid' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Retrieve the validity status from the parser context</info> - <return type='int' info='the flag value 1 if valid, 0 if no, and -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderLocalName' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The local name of the node.</info> - <return type='xmlChar *' info='the local name or NULL if not available'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderLocatorBaseURI' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Obtain the base URI for the given locator.</info> - <return type='xmlChar *' info='the base URI or NULL in case of error.'/> - <arg name='locator' type='xmlTextReaderLocatorPtr' info='the xmlTextReaderLocatorPtr used'/> - </function> - <function name='xmlTextReaderLocatorLineNumber' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Obtain the line number for the given locator.</info> - <return type='int' info='the line number or -1 in case of error.'/> - <arg name='locator' type='xmlTextReaderLocatorPtr' info='the xmlTextReaderLocatorPtr used'/> - </function> - <function name='xmlTextReaderLookupNamespace' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Resolves a namespace prefix in the scope of the current element.</info> - <return type='xmlChar *' info='a string containing the namespace URI to which the prefix maps or NULL in case of error. The string must be deallocated by the caller.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='prefix' type='const xmlChar *' info='the prefix whose namespace URI is to be resolved. To return the default namespace, specify NULL'/> - </function> - <function name='xmlTextReaderMoveToAttribute' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Moves the position of the current instance to the attribute with the specified qualified name.</info> - <return type='int' info='1 in case of success, -1 in case of error, 0 if not found'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='name' type='const xmlChar *' info='the qualified name of the attribute.'/> - </function> - <function name='xmlTextReaderMoveToAttributeNo' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Moves the position of the current instance to the attribute with the specified index relative to the containing element.</info> - <return type='int' info='1 in case of success, -1 in case of error, 0 if not found'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='no' type='int' info='the zero-based index of the attribute relative to the containing element.'/> - </function> - <function name='xmlTextReaderMoveToAttributeNs' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Moves the position of the current instance to the attribute with the specified local name and namespace URI.</info> - <return type='int' info='1 in case of success, -1 in case of error, 0 if not found'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='localName' type='const xmlChar *' info='the local name of the attribute.'/> - <arg name='namespaceURI' type='const xmlChar *' info='the namespace URI of the attribute.'/> - </function> - <function name='xmlTextReaderMoveToElement' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Moves the position of the current instance to the node that contains the current Attribute node.</info> - <return type='int' info='1 in case of success, -1 in case of error, 0 if not moved'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderMoveToFirstAttribute' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Moves the position of the current instance to the first attribute associated with the current node.</info> - <return type='int' info='1 in case of success, -1 in case of error, 0 if not found'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderMoveToNextAttribute' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Moves the position of the current instance to the next attribute associated with the current node.</info> - <return type='int' info='1 in case of success, -1 in case of error, 0 if not found'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderName' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The qualified name of the node, equal to Prefix :LocalName.</info> - <return type='xmlChar *' info='the local name or NULL if not available'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderNamespaceUri' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The URI defining the namespace associated with the node.</info> - <return type='xmlChar *' info='the namespace URI or NULL if not available'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderNext' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Skip to the node following the current one in document order while avoiding the subtree if any.</info> - <return type='int' info='1 if the node was read successfully, 0 if there is no more nodes to read, or -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderNextSibling' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Skip to the node following the current one in document order while avoiding the subtree if any. Currently implemented only for Readers built on a document</info> - <return type='int' info='1 if the node was read successfully, 0 if there is no more nodes to read, or -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderNodeType' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Get the node type of the current node Reference: http://dotgnu.org/pnetlib-doc/System/Xml/XmlNodeType.html</info> - <return type='int' info='the xmlNodeType of the current node or -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderNormalization' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The value indicating whether to normalize white space and attribute values. Since attribute value and end of line normalizations are a MUST in the XML specification only the value true is accepted. The broken bahaviour of accepting out of range character entities like &#0; is of course not supported either.</info> - <return type='int' info='1 or -1 in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderPrefix' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>A shorthand reference to the namespace associated with the node.</info> - <return type='xmlChar *' info='the prefix or NULL if not available'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderPreserve' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>This tells the XML Reader to preserve the current node. The caller must also use xmlTextReaderCurrentDoc() to keep an handle on the resulting document once parsing has finished</info> - <return type='xmlNodePtr' info='the xmlNodePtr or NULL in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderPreservePattern' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED) && defined(LIBXML_PATTERN_ENABLED)</cond> - <info>This tells the XML Reader to preserve all nodes matched by the pattern. The caller must also use xmlTextReaderCurrentDoc() to keep an handle on the resulting document once parsing has finished</info> - <return type='int' info='a positive number in case of success and -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='pattern' type='const xmlChar *' info='an XPath subset pattern'/> - <arg name='namespaces' type='const xmlChar **' info='the prefix definitions, array of [URI, prefix] or NULL'/> - </function> - <function name='xmlTextReaderQuoteChar' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The quotation mark character used to enclose the value of an attribute.</info> - <return type='int' info='" or ' and -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderRead' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Moves the position of the current instance to the next node in the stream, exposing its properties.</info> - <return type='int' info='1 if the node was read successfully, 0 if there is no more nodes to read, or -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderReadAttributeValue' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Parses an attribute value into one or more Text and EntityReference nodes.</info> - <return type='int' info='1 in case of success, 0 if the reader was not positionned on an ttribute node or all the attribute values have been read, or -1 in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderReadInnerXml' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED) && defined(LIBXML_WRITER_ENABLED)</cond> - <info>Reads the contents of the current node, including child nodes and markup.</info> - <return type='xmlChar *' info='a string containing the XML content, or NULL if the current node is neither an element nor attribute, or has no child nodes. The string must be deallocated by the caller.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderReadOuterXml' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED) && defined(LIBXML_WRITER_ENABLED)</cond> - <info>Reads the contents of the current node, including child nodes and markup.</info> - <return type='xmlChar *' info='a string containing the XML content, or NULL if the current node is neither an element nor attribute, or has no child nodes. The string must be deallocated by the caller.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderReadState' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Gets the read state of the reader.</info> - <return type='int' info='the state value, or -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderReadString' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Reads the contents of an element or a text node as a string.</info> - <return type='xmlChar *' info='a string containing the contents of the Element or Text node, or NULL if the reader is positioned on any other type of node. The string must be deallocated by the caller.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderRelaxNGSetSchema' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Use RelaxNG to validate the document as it is processed. Activation is only possible before the first Read(). if @schema is NULL, then RelaxNG validation is desactivated. @ The @schema should not be freed until the reader is deallocated or its use has been deactivated.</info> - <return type='int' info='0 in case the RelaxNG validation could be (des)activated and -1 in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='schema' type='xmlRelaxNGPtr' info='a precompiled RelaxNG schema'/> - </function> - <function name='xmlTextReaderRelaxNGValidate' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Use RelaxNG to validate the document as it is processed. Activation is only possible before the first Read(). if @rng is NULL, then RelaxNG validation is deactivated.</info> - <return type='int' info='0 in case the RelaxNG validation could be (de)activated and -1 in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='rng' type='const char *' info='the path to a RelaxNG schema or NULL'/> - </function> - <function name='xmlTextReaderSchemaValidate' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Use W3C XSD schema to validate the document as it is processed. Activation is only possible before the first Read(). If @xsd is NULL, then XML Schema validation is deactivated.</info> - <return type='int' info='0 in case the schemas validation could be (de)activated and -1 in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='xsd' type='const char *' info='the path to a W3C XSD schema or NULL'/> - </function> - <function name='xmlTextReaderSchemaValidateCtxt' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Use W3C XSD schema context to validate the document as it is processed. Activation is only possible before the first Read(). If @ctxt is NULL, then XML Schema validation is deactivated.</info> - <return type='int' info='0 in case the schemas validation could be (de)activated and -1 in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info='the XML Schema validation context or NULL'/> - <arg name='options' type='int' info='options (not used yet)'/> - </function> - <function name='xmlTextReaderSetErrorHandler' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored.</info> - <return type='void'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='f' type='xmlTextReaderErrorFunc' info='the callback function to call on error and warnings'/> - <arg name='arg' type='void *' info='a user argument to pass to the callback function'/> - </function> - <function name='xmlTextReaderSetParserProp' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Change the parser processing behaviour by changing some of its internal properties. Note that some properties can only be changed before any read has been done.</info> - <return type='int' info='0 if the call was successful, or -1 in case of error'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='prop' type='int' info='the xmlParserProperties to set'/> - <arg name='value' type='int' info='usually 0 or 1 to (de)activate it'/> - </function> - <function name='xmlTextReaderSetSchema' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Use XSD Schema to validate the document as it is processed. Activation is only possible before the first Read(). if @schema is NULL, then Schema validation is desactivated. @ The @schema should not be freed until the reader is deallocated or its use has been deactivated.</info> - <return type='int' info='0 in case the Schema validation could be (des)activated and -1 in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='schema' type='xmlSchemaPtr' info='a precompiled Schema schema'/> - </function> - <function name='xmlTextReaderSetStructuredErrorHandler' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored.</info> - <return type='void'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - <arg name='f' type='xmlStructuredErrorFunc' info='the callback function to call on error and warnings'/> - <arg name='arg' type='void *' info='a user argument to pass to the callback function'/> - </function> - <function name='xmlTextReaderSetup' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Setup an XML reader with new options</info> - <return type='int' info='0 in case of success and -1 in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='an XML reader'/> - <arg name='input' type='xmlParserInputBufferPtr' info='xmlParserInputBufferPtr used to feed the reader, will be destroyed with it.'/> - <arg name='URL' type='const char *' info='the base URL to use for the document'/> - <arg name='encoding' type='const char *' info='the document encoding, or NULL'/> - <arg name='options' type='int' info='a combination of xmlParserOption'/> - </function> - <function name='xmlTextReaderStandalone' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Determine the standalone status of the document being read.</info> - <return type='int' info='1 if the document was declared to be standalone, 0 if it was declared to be not standalone, or -1 if the document did not specify its standalone status or in case of error.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderValue' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>Provides the text value of the node if present</info> - <return type='xmlChar *' info='the string or NULL if not available. The result must be deallocated with xmlFree()'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextReaderXmlLang' file='xmlreader' module='xmlreader'> - <cond>defined(LIBXML_READER_ENABLED)</cond> - <info>The xml:lang scope within which the node resides.</info> - <return type='xmlChar *' info='the xml:lang value or NULL if none exists.'/> - <arg name='reader' type='xmlTextReaderPtr' info='the xmlTextReaderPtr used'/> - </function> - <function name='xmlTextWriterEndAttribute' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>End the current xml element.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterEndCDATA' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>End an xml CDATA section.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterEndComment' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>End the current xml coment.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterEndDTD' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>End an xml DTD.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterEndDTDAttlist' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>End an xml DTD attribute list.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterEndDTDElement' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>End an xml DTD element.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterEndDTDEntity' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>End an xml DTD entity.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterEndDocument' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>End an xml document. All open elements are closed</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterEndElement' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>End the current xml element.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterEndPI' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>End the current xml PI.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterFlush' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Flush the output buffer.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterFullEndElement' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>End the current xml element. Writes an end tag even if the element is empty</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterSetIndent' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Set indentation output. indent = 0 do not indentation. indent > 0 do indentation.</info> - <return type='int' info='-1 on error or 0 otherwise.'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='indent' type='int' info='do indentation?'/> - </function> - <function name='xmlTextWriterSetIndentString' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Set string indentation.</info> - <return type='int' info='-1 on error or 0 otherwise.'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='str' type='const xmlChar *' info='the xmlChar string'/> - </function> - <function name='xmlTextWriterStartAttribute' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Start an xml attribute.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='element name'/> - </function> - <function name='xmlTextWriterStartAttributeNS' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Start an xml attribute with namespace support.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='prefix' type='const xmlChar *' info='namespace prefix or NULL'/> - <arg name='name' type='const xmlChar *' info='element local name'/> - <arg name='namespaceURI' type='const xmlChar *' info='namespace URI or NULL'/> - </function> - <function name='xmlTextWriterStartCDATA' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Start an xml CDATA section.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterStartComment' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Start an xml comment.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - </function> - <function name='xmlTextWriterStartDTD' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Start an xml DTD.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD'/> - <arg name='pubid' type='const xmlChar *' info='the public identifier, which is an alternative to the system identifier'/> - <arg name='sysid' type='const xmlChar *' info='the system identifier, which is the URI of the DTD'/> - </function> - <function name='xmlTextWriterStartDTDAttlist' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Start an xml DTD ATTLIST.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD ATTLIST'/> - </function> - <function name='xmlTextWriterStartDTDElement' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Start an xml DTD element.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD element'/> - </function> - <function name='xmlTextWriterStartDTDEntity' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Start an xml DTD ATTLIST.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='pe' type='int' info='TRUE if this is a parameter entity, FALSE if not'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD ATTLIST'/> - </function> - <function name='xmlTextWriterStartDocument' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Start a new xml document</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='version' type='const char *' info='the xml version ("1.0") or NULL for default ("1.0")'/> - <arg name='encoding' type='const char *' info='the encoding or NULL for default'/> - <arg name='standalone' type='const char *' info='"yes" or "no" or NULL for default'/> - </function> - <function name='xmlTextWriterStartElement' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Start an xml element.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='element name'/> - </function> - <function name='xmlTextWriterStartElementNS' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Start an xml element with namespace support.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='prefix' type='const xmlChar *' info='namespace prefix or NULL'/> - <arg name='name' type='const xmlChar *' info='element local name'/> - <arg name='namespaceURI' type='const xmlChar *' info='namespace URI or NULL'/> - </function> - <function name='xmlTextWriterStartPI' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Start an xml PI.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='target' type='const xmlChar *' info='PI target'/> - </function> - <function name='xmlTextWriterWriteAttribute' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write an xml attribute.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='attribute name'/> - <arg name='content' type='const xmlChar *' info='attribute content'/> - </function> - <function name='xmlTextWriterWriteAttributeNS' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write an xml attribute.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='prefix' type='const xmlChar *' info='namespace prefix'/> - <arg name='name' type='const xmlChar *' info='attribute local name'/> - <arg name='namespaceURI' type='const xmlChar *' info='namespace URI'/> - <arg name='content' type='const xmlChar *' info='attribute content'/> - </function> - <function name='xmlTextWriterWriteBase64' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write an base64 encoded xml text.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='data' type='const char *' info='binary data'/> - <arg name='start' type='int' info='the position within the data of the first byte to encode'/> - <arg name='len' type='int' info='the number of bytes to encode'/> - </function> - <function name='xmlTextWriterWriteBinHex' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a BinHex encoded xml text.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='data' type='const char *' info='binary data'/> - <arg name='start' type='int' info='the position within the data of the first byte to encode'/> - <arg name='len' type='int' info='the number of bytes to encode'/> - </function> - <function name='xmlTextWriterWriteCDATA' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write an xml CDATA.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='content' type='const xmlChar *' info='CDATA content'/> - </function> - <function name='xmlTextWriterWriteComment' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write an xml comment.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='content' type='const xmlChar *' info='comment string'/> - </function> - <function name='xmlTextWriterWriteDTD' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a DTD.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD'/> - <arg name='pubid' type='const xmlChar *' info='the public identifier, which is an alternative to the system identifier'/> - <arg name='sysid' type='const xmlChar *' info='the system identifier, which is the URI of the DTD'/> - <arg name='subset' type='const xmlChar *' info='string content of the DTD'/> - </function> - <function name='xmlTextWriterWriteDTDAttlist' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a DTD ATTLIST.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD ATTLIST'/> - <arg name='content' type='const xmlChar *' info='content of the ATTLIST'/> - </function> - <function name='xmlTextWriterWriteDTDElement' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a DTD element.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD element'/> - <arg name='content' type='const xmlChar *' info='content of the element'/> - </function> - <function name='xmlTextWriterWriteDTDEntity' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a DTD entity.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='pe' type='int' info='TRUE if this is a parameter entity, FALSE if not'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD entity'/> - <arg name='pubid' type='const xmlChar *' info='the public identifier, which is an alternative to the system identifier'/> - <arg name='sysid' type='const xmlChar *' info='the system identifier, which is the URI of the DTD'/> - <arg name='ndataid' type='const xmlChar *' info='the xml notation name.'/> - <arg name='content' type='const xmlChar *' info='content of the entity'/> - </function> - <function name='xmlTextWriterWriteDTDExternalEntity' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a DTD external entity. The entity must have been started with xmlTextWriterStartDTDEntity</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='pe' type='int' info='TRUE if this is a parameter entity, FALSE if not'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD entity'/> - <arg name='pubid' type='const xmlChar *' info='the public identifier, which is an alternative to the system identifier'/> - <arg name='sysid' type='const xmlChar *' info='the system identifier, which is the URI of the DTD'/> - <arg name='ndataid' type='const xmlChar *' info='the xml notation name.'/> - </function> - <function name='xmlTextWriterWriteDTDExternalEntityContents' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write the contents of a DTD external entity.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='pubid' type='const xmlChar *' info='the public identifier, which is an alternative to the system identifier'/> - <arg name='sysid' type='const xmlChar *' info='the system identifier, which is the URI of the DTD'/> - <arg name='ndataid' type='const xmlChar *' info='the xml notation name.'/> - </function> - <function name='xmlTextWriterWriteDTDInternalEntity' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a DTD internal entity.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='pe' type='int' info='TRUE if this is a parameter entity, FALSE if not'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD entity'/> - <arg name='content' type='const xmlChar *' info='content of the entity'/> - </function> - <function name='xmlTextWriterWriteDTDNotation' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a DTD entity.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the xml notation'/> - <arg name='pubid' type='const xmlChar *' info='the public identifier, which is an alternative to the system identifier'/> - <arg name='sysid' type='const xmlChar *' info='the system identifier, which is the URI of the DTD'/> - </function> - <function name='xmlTextWriterWriteElement' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write an xml element.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='element name'/> - <arg name='content' type='const xmlChar *' info='element content'/> - </function> - <function name='xmlTextWriterWriteElementNS' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write an xml element with namespace support.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='prefix' type='const xmlChar *' info='namespace prefix'/> - <arg name='name' type='const xmlChar *' info='element local name'/> - <arg name='namespaceURI' type='const xmlChar *' info='namespace URI'/> - <arg name='content' type='const xmlChar *' info='element content'/> - </function> - <function name='xmlTextWriterWriteFormatAttribute' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml attribute.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='attribute name'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWriteFormatAttributeNS' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml attribute.with namespace support</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='prefix' type='const xmlChar *' info='namespace prefix'/> - <arg name='name' type='const xmlChar *' info='attribute local name'/> - <arg name='namespaceURI' type='const xmlChar *' info='namespace URI'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWriteFormatCDATA' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml CDATA.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWriteFormatComment' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write an xml comment.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWriteFormatDTD' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a DTD with a formatted markup declarations part.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD'/> - <arg name='pubid' type='const xmlChar *' info='the public identifier, which is an alternative to the system identifier'/> - <arg name='sysid' type='const xmlChar *' info='the system identifier, which is the URI of the DTD'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWriteFormatDTDAttlist' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted DTD ATTLIST.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD ATTLIST'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWriteFormatDTDElement' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted DTD element.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD element'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWriteFormatDTDInternalEntity' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted DTD internal entity.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='pe' type='int' info='TRUE if this is a parameter entity, FALSE if not'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD entity'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWriteFormatElement' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml element.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='element name'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWriteFormatElementNS' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml element with namespace support.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='prefix' type='const xmlChar *' info='namespace prefix'/> - <arg name='name' type='const xmlChar *' info='element local name'/> - <arg name='namespaceURI' type='const xmlChar *' info='namespace URI'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWriteFormatPI' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted PI.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='target' type='const xmlChar *' info='PI target'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWriteFormatRaw' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted raw xml text.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWriteFormatString' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml text.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='...' type='...' info='extra parameters for the format'/> - </function> - <function name='xmlTextWriterWritePI' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write an xml PI.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='target' type='const xmlChar *' info='PI target'/> - <arg name='content' type='const xmlChar *' info='PI content'/> - </function> - <function name='xmlTextWriterWriteRaw' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a raw xml text.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='content' type='const xmlChar *' info='text string'/> - </function> - <function name='xmlTextWriterWriteRawLen' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write an xml text. TODO: what about entities and special chars??</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='content' type='const xmlChar *' info='text string'/> - <arg name='len' type='int' info='length of the text string'/> - </function> - <function name='xmlTextWriterWriteString' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write an xml text.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='content' type='const xmlChar *' info='text string'/> - </function> - <function name='xmlTextWriterWriteVFormatAttribute' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml attribute.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='attribute name'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlTextWriterWriteVFormatAttributeNS' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml attribute.with namespace support</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='prefix' type='const xmlChar *' info='namespace prefix'/> - <arg name='name' type='const xmlChar *' info='attribute local name'/> - <arg name='namespaceURI' type='const xmlChar *' info='namespace URI'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlTextWriterWriteVFormatCDATA' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml CDATA.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlTextWriterWriteVFormatComment' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write an xml comment.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlTextWriterWriteVFormatDTD' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a DTD with a formatted markup declarations part.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD'/> - <arg name='pubid' type='const xmlChar *' info='the public identifier, which is an alternative to the system identifier'/> - <arg name='sysid' type='const xmlChar *' info='the system identifier, which is the URI of the DTD'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlTextWriterWriteVFormatDTDAttlist' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted DTD ATTLIST.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD ATTLIST'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlTextWriterWriteVFormatDTDElement' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted DTD element.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD element'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlTextWriterWriteVFormatDTDInternalEntity' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted DTD internal entity.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='pe' type='int' info='TRUE if this is a parameter entity, FALSE if not'/> - <arg name='name' type='const xmlChar *' info='the name of the DTD entity'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlTextWriterWriteVFormatElement' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml element.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='name' type='const xmlChar *' info='element name'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlTextWriterWriteVFormatElementNS' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml element with namespace support.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='prefix' type='const xmlChar *' info='namespace prefix'/> - <arg name='name' type='const xmlChar *' info='element local name'/> - <arg name='namespaceURI' type='const xmlChar *' info='namespace URI'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlTextWriterWriteVFormatPI' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml PI.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='target' type='const xmlChar *' info='PI target'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlTextWriterWriteVFormatRaw' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted raw xml text.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlTextWriterWriteVFormatString' file='xmlwriter' module='xmlwriter'> - <cond>defined(LIBXML_WRITER_ENABLED)</cond> - <info>Write a formatted xml text.</info> - <return type='int' info='the bytes written (may be 0 because of buffering) or -1 in case of error'/> - <arg name='writer' type='xmlTextWriterPtr' info='the xmlTextWriterPtr'/> - <arg name='format' type='const char *' info='format string (see printf)'/> - <arg name='argptr' type='va_list' info='pointer to the first member of the variable argument list.'/> - </function> - <function name='xmlThrDefBufferAllocScheme' file='globals' module='globals'> - <info></info> - <return type='xmlBufferAllocationScheme' info=''/> - <arg name='v' type='xmlBufferAllocationScheme' info=''/> - </function> - <function name='xmlThrDefDefaultBufferSize' file='globals' module='globals'> - <info></info> - <return type='int' info=''/> - <arg name='v' type='int' info=''/> - </function> - <function name='xmlThrDefDeregisterNodeDefault' file='globals' module='globals'> - <info></info> - <return type='xmlDeregisterNodeFunc' info=''/> - <arg name='func' type='xmlDeregisterNodeFunc' info=''/> - </function> - <function name='xmlThrDefDoValidityCheckingDefaultValue' file='globals' module='globals'> - <info></info> - <return type='int' info=''/> - <arg name='v' type='int' info=''/> - </function> - <function name='xmlThrDefGetWarningsDefaultValue' file='globals' module='globals'> - <info></info> - <return type='int' info=''/> - <arg name='v' type='int' info=''/> - </function> - <function name='xmlThrDefIndentTreeOutput' file='globals' module='globals'> - <info></info> - <return type='int' info=''/> - <arg name='v' type='int' info=''/> - </function> - <function name='xmlThrDefKeepBlanksDefaultValue' file='globals' module='globals'> - <info></info> - <return type='int' info=''/> - <arg name='v' type='int' info=''/> - </function> - <function name='xmlThrDefLineNumbersDefaultValue' file='globals' module='globals'> - <info></info> - <return type='int' info=''/> - <arg name='v' type='int' info=''/> - </function> - <function name='xmlThrDefLoadExtDtdDefaultValue' file='globals' module='globals'> - <info></info> - <return type='int' info=''/> - <arg name='v' type='int' info=''/> - </function> - <function name='xmlThrDefOutputBufferCreateFilenameDefault' file='globals' module='globals'> - <info></info> - <return type='xmlOutputBufferCreateFilenameFunc' info=''/> - <arg name='func' type='xmlOutputBufferCreateFilenameFunc' info=''/> - </function> - <function name='xmlThrDefParserDebugEntities' file='globals' module='globals'> - <info></info> - <return type='int' info=''/> - <arg name='v' type='int' info=''/> - </function> - <function name='xmlThrDefParserInputBufferCreateFilenameDefault' file='globals' module='globals'> - <info></info> - <return type='xmlParserInputBufferCreateFilenameFunc' info=''/> - <arg name='func' type='xmlParserInputBufferCreateFilenameFunc' info=''/> - </function> - <function name='xmlThrDefPedanticParserDefaultValue' file='globals' module='globals'> - <info></info> - <return type='int' info=''/> - <arg name='v' type='int' info=''/> - </function> - <function name='xmlThrDefRegisterNodeDefault' file='globals' module='globals'> - <info></info> - <return type='xmlRegisterNodeFunc' info=''/> - <arg name='func' type='xmlRegisterNodeFunc' info=''/> - </function> - <function name='xmlThrDefSaveNoEmptyTags' file='globals' module='globals'> - <info></info> - <return type='int' info=''/> - <arg name='v' type='int' info=''/> - </function> - <function name='xmlThrDefSetGenericErrorFunc' file='globals' module='globals'> - <info></info> - <return type='void'/> - <arg name='ctx' type='void *' info=''/> - <arg name='handler' type='xmlGenericErrorFunc' info=''/> - </function> - <function name='xmlThrDefSetStructuredErrorFunc' file='globals' module='globals'> - <info></info> - <return type='void'/> - <arg name='ctx' type='void *' info=''/> - <arg name='handler' type='xmlStructuredErrorFunc' info=''/> - </function> - <function name='xmlThrDefSubstituteEntitiesDefaultValue' file='globals' module='globals'> - <info></info> - <return type='int' info=''/> - <arg name='v' type='int' info=''/> - </function> - <function name='xmlThrDefTreeIndentString' file='globals' module='globals'> - <info></info> - <return type='const char *' info=''/> - <arg name='v' type='const char *' info=''/> - </function> - <function name='xmlUCSIsAegeanNumbers' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of AegeanNumbers UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsAlphabeticPresentationForms' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of AlphabeticPresentationForms UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsArabic' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Arabic UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsArabicPresentationFormsA' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of ArabicPresentationForms-A UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsArabicPresentationFormsB' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of ArabicPresentationForms-B UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsArmenian' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Armenian UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsArrows' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Arrows UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsBasicLatin' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of BasicLatin UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsBengali' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Bengali UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsBlock' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of the UCS Block</info> - <return type='int' info='1 if true, 0 if false and -1 on unknown block'/> - <arg name='code' type='int' info='UCS code point'/> - <arg name='block' type='const char *' info='UCS block name'/> - </function> - <function name='xmlUCSIsBlockElements' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of BlockElements UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsBopomofo' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Bopomofo UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsBopomofoExtended' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of BopomofoExtended UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsBoxDrawing' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of BoxDrawing UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsBraillePatterns' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of BraillePatterns UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsBuhid' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Buhid UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsByzantineMusicalSymbols' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of ByzantineMusicalSymbols UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCJKCompatibility' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CJKCompatibility UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCJKCompatibilityForms' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CJKCompatibilityForms UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCJKCompatibilityIdeographs' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CJKCompatibilityIdeographs UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCJKCompatibilityIdeographsSupplement' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CJKCompatibilityIdeographsSupplement UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCJKRadicalsSupplement' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CJKRadicalsSupplement UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCJKSymbolsandPunctuation' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CJKSymbolsandPunctuation UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCJKUnifiedIdeographs' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CJKUnifiedIdeographs UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCJKUnifiedIdeographsExtensionA' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CJKUnifiedIdeographsExtensionA UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCJKUnifiedIdeographsExtensionB' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CJKUnifiedIdeographsExtensionB UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCat' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of the UCS Category</info> - <return type='int' info='1 if true, 0 if false and -1 on unknown category'/> - <arg name='code' type='int' info='UCS code point'/> - <arg name='cat' type='const char *' info='UCS Category name'/> - </function> - <function name='xmlUCSIsCatC' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of C UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatCc' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Cc UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatCf' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Cf UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatCo' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Co UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatCs' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Cs UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatL' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of L UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatLl' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Ll UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatLm' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Lm UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatLo' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Lo UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatLt' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Lt UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatLu' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Lu UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatM' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of M UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatMc' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Mc UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatMe' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Me UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatMn' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Mn UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatN' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of N UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatNd' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Nd UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatNl' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Nl UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatNo' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of No UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatP' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of P UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatPc' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Pc UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatPd' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Pd UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatPe' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Pe UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatPf' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Pf UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatPi' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Pi UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatPo' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Po UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatPs' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Ps UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatS' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of S UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatSc' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Sc UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatSk' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Sk UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatSm' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Sm UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatSo' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of So UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatZ' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Z UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatZl' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Zl UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatZp' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Zp UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCatZs' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Zs UCS Category</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCherokee' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Cherokee UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCombiningDiacriticalMarks' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CombiningDiacriticalMarks UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCombiningDiacriticalMarksforSymbols' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CombiningDiacriticalMarksforSymbols UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCombiningHalfMarks' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CombiningHalfMarks UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCombiningMarksforSymbols' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CombiningMarksforSymbols UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsControlPictures' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of ControlPictures UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCurrencySymbols' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CurrencySymbols UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCypriotSyllabary' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CypriotSyllabary UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCyrillic' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Cyrillic UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsCyrillicSupplement' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of CyrillicSupplement UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsDeseret' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Deseret UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsDevanagari' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Devanagari UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsDingbats' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Dingbats UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsEnclosedAlphanumerics' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of EnclosedAlphanumerics UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsEnclosedCJKLettersandMonths' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of EnclosedCJKLettersandMonths UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsEthiopic' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Ethiopic UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsGeneralPunctuation' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of GeneralPunctuation UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsGeometricShapes' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of GeometricShapes UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsGeorgian' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Georgian UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsGothic' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Gothic UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsGreek' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Greek UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsGreekExtended' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of GreekExtended UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsGreekandCoptic' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of GreekandCoptic UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsGujarati' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Gujarati UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsGurmukhi' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Gurmukhi UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsHalfwidthandFullwidthForms' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of HalfwidthandFullwidthForms UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsHangulCompatibilityJamo' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of HangulCompatibilityJamo UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsHangulJamo' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of HangulJamo UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsHangulSyllables' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of HangulSyllables UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsHanunoo' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Hanunoo UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsHebrew' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Hebrew UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsHighPrivateUseSurrogates' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of HighPrivateUseSurrogates UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsHighSurrogates' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of HighSurrogates UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsHiragana' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Hiragana UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsIPAExtensions' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of IPAExtensions UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsIdeographicDescriptionCharacters' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of IdeographicDescriptionCharacters UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsKanbun' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Kanbun UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsKangxiRadicals' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of KangxiRadicals UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsKannada' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Kannada UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsKatakana' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Katakana UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsKatakanaPhoneticExtensions' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of KatakanaPhoneticExtensions UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsKhmer' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Khmer UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsKhmerSymbols' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of KhmerSymbols UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsLao' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Lao UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsLatin1Supplement' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Latin-1Supplement UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsLatinExtendedA' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of LatinExtended-A UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsLatinExtendedAdditional' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of LatinExtendedAdditional UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsLatinExtendedB' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of LatinExtended-B UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsLetterlikeSymbols' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of LetterlikeSymbols UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsLimbu' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Limbu UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsLinearBIdeograms' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of LinearBIdeograms UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsLinearBSyllabary' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of LinearBSyllabary UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsLowSurrogates' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of LowSurrogates UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsMalayalam' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Malayalam UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsMathematicalAlphanumericSymbols' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of MathematicalAlphanumericSymbols UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsMathematicalOperators' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of MathematicalOperators UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsMiscellaneousMathematicalSymbolsA' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of MiscellaneousMathematicalSymbols-A UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsMiscellaneousMathematicalSymbolsB' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of MiscellaneousMathematicalSymbols-B UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsMiscellaneousSymbols' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of MiscellaneousSymbols UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsMiscellaneousSymbolsandArrows' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of MiscellaneousSymbolsandArrows UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsMiscellaneousTechnical' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of MiscellaneousTechnical UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsMongolian' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Mongolian UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsMusicalSymbols' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of MusicalSymbols UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsMyanmar' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Myanmar UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsNumberForms' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of NumberForms UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsOgham' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Ogham UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsOldItalic' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of OldItalic UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsOpticalCharacterRecognition' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of OpticalCharacterRecognition UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsOriya' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Oriya UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsOsmanya' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Osmanya UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsPhoneticExtensions' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of PhoneticExtensions UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsPrivateUse' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of PrivateUse UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsPrivateUseArea' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of PrivateUseArea UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsRunic' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Runic UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsShavian' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Shavian UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsSinhala' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Sinhala UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsSmallFormVariants' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of SmallFormVariants UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsSpacingModifierLetters' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of SpacingModifierLetters UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsSpecials' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Specials UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsSuperscriptsandSubscripts' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of SuperscriptsandSubscripts UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsSupplementalArrowsA' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of SupplementalArrows-A UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsSupplementalArrowsB' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of SupplementalArrows-B UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsSupplementalMathematicalOperators' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of SupplementalMathematicalOperators UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsSupplementaryPrivateUseAreaA' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of SupplementaryPrivateUseArea-A UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsSupplementaryPrivateUseAreaB' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of SupplementaryPrivateUseArea-B UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsSyriac' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Syriac UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsTagalog' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Tagalog UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsTagbanwa' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Tagbanwa UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsTags' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Tags UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsTaiLe' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of TaiLe UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsTaiXuanJingSymbols' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of TaiXuanJingSymbols UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsTamil' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Tamil UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsTelugu' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Telugu UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsThaana' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Thaana UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsThai' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Thai UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsTibetan' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Tibetan UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsUgaritic' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of Ugaritic UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsUnifiedCanadianAboriginalSyllabics' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of UnifiedCanadianAboriginalSyllabics UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsVariationSelectors' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of VariationSelectors UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsVariationSelectorsSupplement' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of VariationSelectorsSupplement UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsYiRadicals' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of YiRadicals UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsYiSyllables' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of YiSyllables UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlUCSIsYijingHexagramSymbols' file='xmlunicode' module='xmlunicode'> - <cond>defined(LIBXML_UNICODE_ENABLED)</cond> - <info>Check whether the character is part of YijingHexagramSymbols UCS Block</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='code' type='int' info='UCS code point'/> - </function> - <function name='xmlURIEscape' file='uri' module='uri'> - <info>Escaping routine, does not do validity checks ! It will try to escape the chars needing this, but this is heuristic based it's impossible to be sure.</info> - <return type='xmlChar *' info='an copy of the string, but escaped 25 May 2001 Uses xmlParseURI and xmlURIEscapeStr to try to escape correctly according to RFC2396. - Carl Douglas'/> - <arg name='str' type='const xmlChar *' info='the string of the URI to escape'/> - </function> - <function name='xmlURIEscapeStr' file='uri' module='uri'> - <info>This routine escapes a string to hex, ignoring reserved characters (a-z) and the characters in the exception list.</info> - <return type='xmlChar *' info='a new escaped string or NULL in case of error.'/> - <arg name='str' type='const xmlChar *' info='string to escape'/> - <arg name='list' type='const xmlChar *' info='exception list string of chars not to escape'/> - </function> - <function name='xmlURIUnescapeString' file='uri' module='uri'> - <info>Unescaping routine, but does not check that the string is an URI. The output is a direct unsigned char translation of %XX values (no encoding) Note that the length of the result can only be smaller or same size as the input string.</info> - <return type='char *' info='a copy of the string, but unescaped, will return NULL only in case of error'/> - <arg name='str' type='const char *' info='the string to unescape'/> - <arg name='len' type='int' info='the length in bytes to unescape (or <= 0 to indicate full string)'/> - <arg name='target' type='char *' info='optional destination buffer'/> - </function> - <function name='xmlUTF8Charcmp' file='xmlstring' module='xmlstring'> - <info>compares the two UCS4 values</info> - <return type='int' info='result of the compare as with xmlStrncmp'/> - <arg name='utf1' type='const xmlChar *' info='pointer to first UTF8 char'/> - <arg name='utf2' type='const xmlChar *' info='pointer to second UTF8 char'/> - </function> - <function name='xmlUTF8Size' file='xmlstring' module='xmlstring'> - <info>calculates the internal size of a UTF8 character</info> - <return type='int' info='the numbers of bytes in the character, -1 on format error'/> - <arg name='utf' type='const xmlChar *' info='pointer to the UTF8 character'/> - </function> - <function name='xmlUTF8Strlen' file='xmlstring' module='xmlstring'> - <info>compute the length of an UTF8 string, it doesn't do a full UTF8 checking of the content of the string.</info> - <return type='int' info='the number of characters in the string or -1 in case of error'/> - <arg name='utf' type='const xmlChar *' info='a sequence of UTF-8 encoded bytes'/> - </function> - <function name='xmlUTF8Strloc' file='xmlstring' module='xmlstring'> - <info>a function to provide the relative location of a UTF8 char</info> - <return type='int' info='the relative character position of the desired char or -1 if not found'/> - <arg name='utf' type='const xmlChar *' info='the input UTF8 *'/> - <arg name='utfchar' type='const xmlChar *' info='the UTF8 character to be found'/> - </function> - <function name='xmlUTF8Strndup' file='xmlstring' module='xmlstring'> - <info>a strndup for array of UTF8's</info> - <return type='xmlChar *' info='a new UTF8 * or NULL'/> - <arg name='utf' type='const xmlChar *' info='the input UTF8 *'/> - <arg name='len' type='int' info='the len of @utf (in chars)'/> - </function> - <function name='xmlUTF8Strpos' file='xmlstring' module='xmlstring'> - <info>a function to provide the equivalent of fetching a character from a string array</info> - <return type='const xmlChar *' info='a pointer to the UTF8 character or NULL'/> - <arg name='utf' type='const xmlChar *' info='the input UTF8 *'/> - <arg name='pos' type='int' info='the position of the desired UTF8 char (in chars)'/> - </function> - <function name='xmlUTF8Strsize' file='xmlstring' module='xmlstring'> - <info>storage size of an UTF8 string the behaviour is not garanteed if the input string is not UTF-8</info> - <return type='int' info='the storage size of the first 'len' characters of ARRAY'/> - <arg name='utf' type='const xmlChar *' info='a sequence of UTF-8 encoded bytes'/> - <arg name='len' type='int' info='the number of characters in the array'/> - </function> - <function name='xmlUTF8Strsub' file='xmlstring' module='xmlstring'> - <info>Create a substring from a given UTF-8 string Note: positions are given in units of UTF-8 chars</info> - <return type='xmlChar *' info='a pointer to a newly created string or NULL if any problem'/> - <arg name='utf' type='const xmlChar *' info='a sequence of UTF-8 encoded bytes'/> - <arg name='start' type='int' info='relative pos of first char'/> - <arg name='len' type='int' info='total number to copy'/> - </function> - <function name='xmlUnlinkNode' file='tree' module='tree'> - <info>Unlink a node from it's current context, the node is not freed</info> - <return type='void'/> - <arg name='cur' type='xmlNodePtr' info='the node'/> - </function> - <function name='xmlUnlockLibrary' file='threads' module='threads'> - <info>xmlUnlockLibrary() is used to release a re-entrant lock on the libxml2 library.</info> - <return type='void'/> - </function> - <function name='xmlUnsetNsProp' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Remove an attribute carried by a node.</info> - <return type='int' info='0 if successful, -1 if not found'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - <arg name='ns' type='xmlNsPtr' info='the namespace definition'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - </function> - <function name='xmlUnsetProp' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Remove an attribute carried by a node. This handles only attributes in no namespace.</info> - <return type='int' info='0 if successful, -1 if not found'/> - <arg name='node' type='xmlNodePtr' info='the node'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - </function> - <function name='xmlValidBuildContentModel' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED)</cond> - <info>(Re)Build the automata associated to the content model of this element</info> - <return type='int' info='1 in case of success, 0 in case of error'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='a validation context'/> - <arg name='elem' type='xmlElementPtr' info='an element declaration node'/> - </function> - <function name='xmlValidCtxtNormalizeAttributeValue' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>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</info> - <return type='xmlChar *' info='a new normalized string if normalization is needed, NULL otherwise the caller must free the returned value.'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context or NULL'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='elem' type='xmlNodePtr' info='the parent'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - <arg name='value' type='const xmlChar *' info='the attribute value'/> - </function> - <function name='xmlValidGetPotentialChildren' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Build/extend a list of potential children allowed by the content tree</info> - <return type='int' info='the number of element in the list, or -1 in case of error.'/> - <arg name='ctree' type='xmlElementContent *' info='an element content tree'/> - <arg name='names' type='const xmlChar **' info='an array to store the list of child names'/> - <arg name='len' type='int *' info='a pointer to the number of element in the list'/> - <arg name='max' type='int' info='the size of the array'/> - </function> - <function name='xmlValidGetValidElements' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>This function returns the list of authorized children to insert within an existing tree while respecting the validity constraints forced by the Dtd. The insertion point is defined using @prev and @next in the following ways: to insert before 'node': xmlValidGetValidElements(node->prev, node, ... to insert next 'node': xmlValidGetValidElements(node, node->next, ... to replace 'node': xmlValidGetValidElements(node->prev, node->next, ... to prepend a child to 'node': xmlValidGetValidElements(NULL, node->childs, to append a child to 'node': xmlValidGetValidElements(node->last, NULL, ... pointers to the element names are inserted at the beginning of the array and do not need to be freed.</info> - <return type='int' info='the number of element in the list, or -1 in case of error. If the function returns the value @max the caller is invited to grow the receiving array and retry.'/> - <arg name='prev' type='xmlNode *' info='an element to insert after'/> - <arg name='next' type='xmlNode *' info='an element to insert next'/> - <arg name='names' type='const xmlChar **' info='an array to store the list of child names'/> - <arg name='max' type='int' info='the size of the array'/> - </function> - <function name='xmlValidNormalizeAttributeValue' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>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.</info> - <return type='xmlChar *' info='a new normalized string if normalization is needed, NULL otherwise the caller must free the returned value.'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='elem' type='xmlNodePtr' info='the parent'/> - <arg name='name' type='const xmlChar *' info='the attribute name'/> - <arg name='value' type='const xmlChar *' info='the attribute value'/> - </function> - <function name='xmlValidateAttributeDecl' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>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</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='attr' type='xmlAttributePtr' info='an attribute definition'/> - </function> - <function name='xmlValidateAttributeValue' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>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.</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='type' type='xmlAttributeType' info='an attribute type'/> - <arg name='value' type='const xmlChar *' info='an attribute value'/> - </function> - <function name='xmlValidateDocument' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Try to validate the document instance basically it does the all the checks described by the XML Rec i.e. validates the internal and external subset (if present) and validate the document tree.</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - </function> - <function name='xmlValidateDocumentFinal' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>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</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - </function> - <function name='xmlValidateDtd' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Try to validate the document against the dtd instance Basically it does check all the definitions in the DtD. Note the the internal subset (if present) is de-coupled (i.e. not used), which could give problems if ID or IDREF is present.</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='dtd' type='xmlDtdPtr' info='a dtd instance'/> - </function> - <function name='xmlValidateDtdFinal' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>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.</info> - <return type='int' info='1 if valid or 0 if invalid and -1 if not well-formed'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - </function> - <function name='xmlValidateElement' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Try to validate the subtree under an element</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='elem' type='xmlNodePtr' info='an element instance'/> - </function> - <function name='xmlValidateElementDecl' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>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 ]</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='elem' type='xmlElementPtr' info='an element definition'/> - </function> - <function name='xmlValidateNCName' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) || defined (LIBXML_HTML_ENABLED) || defined(LIBXML_SAX1_ENABLED) || defined(LIBXML_HTML_ENABLED) || defined(LIBXML_WRITER_ENABLED) || defined(LIBXML_DOCB_ENABLED)</cond> - <info>Check that a value conforms to the lexical space of NCName</info> - <return type='int' info='0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='value' type='const xmlChar *' info='the value to check'/> - <arg name='space' type='int' info='allow spaces in front and end of the string'/> - </function> - <function name='xmlValidateNMToken' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Check that a value conforms to the lexical space of NMToken</info> - <return type='int' info='0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='value' type='const xmlChar *' info='the value to check'/> - <arg name='space' type='int' info='allow spaces in front and end of the string'/> - </function> - <function name='xmlValidateName' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Check that a value conforms to the lexical space of Name</info> - <return type='int' info='0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='value' type='const xmlChar *' info='the value to check'/> - <arg name='space' type='int' info='allow spaces in front and end of the string'/> - </function> - <function name='xmlValidateNameValue' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Validate that the given value match Name production</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='value' type='const xmlChar *' info='an Name value'/> - </function> - <function name='xmlValidateNamesValue' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Validate that the given value match Names production</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='value' type='const xmlChar *' info='an Names value'/> - </function> - <function name='xmlValidateNmtokenValue' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Validate that the given value match Nmtoken production [ VC: Name Token ]</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='value' type='const xmlChar *' info='an Nmtoken value'/> - </function> - <function name='xmlValidateNmtokensValue' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>Validate that the given value match Nmtokens production [ VC: Name Token ]</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='value' type='const xmlChar *' info='an Nmtokens value'/> - </function> - <function name='xmlValidateNotationDecl' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>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 ...</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='nota' type='xmlNotationPtr' info='a notation definition'/> - </function> - <function name='xmlValidateNotationUse' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Validate that the given name match a notation declaration. - [ VC: Notation Declared ]</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='the document'/> - <arg name='notationName' type='const xmlChar *' info='the notation name to check'/> - </function> - <function name='xmlValidateOneAttribute' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>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</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='elem' type='xmlNodePtr' info='an element instance'/> - <arg name='attr' type='xmlAttrPtr' info='an attribute instance'/> - <arg name='value' type='const xmlChar *' info='the attribute value (without entities processing)'/> - </function> - <function name='xmlValidateOneElement' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>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</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='elem' type='xmlNodePtr' info='an element instance'/> - </function> - <function name='xmlValidateOneNamespace' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>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</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='elem' type='xmlNodePtr' info='an element instance'/> - <arg name='prefix' type='const xmlChar *' info='the namespace prefix'/> - <arg name='ns' type='xmlNsPtr' info='an namespace declaration instance'/> - <arg name='value' type='const xmlChar *' info='the attribute value (without entities processing)'/> - </function> - <function name='xmlValidatePopElement' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Pop the element end from the validation stack.</info> - <return type='int' info='1 if no validation problem was found or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='elem' type='xmlNodePtr' info='an element instance'/> - <arg name='qname' type='const xmlChar *' info='the qualified name as appearing in the serialization'/> - </function> - <function name='xmlValidatePushCData' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED)</cond> - <info>check the CData parsed for validation in the current stack</info> - <return type='int' info='1 if no validation problem was found or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='data' type='const xmlChar *' info='some character data read'/> - <arg name='len' type='int' info='the lenght of the data'/> - </function> - <function name='xmlValidatePushElement' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED) && defined(LIBXML_REGEXP_ENABLED)</cond> - <info>Push a new element start on the validation stack.</info> - <return type='int' info='1 if no validation problem was found or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - <arg name='elem' type='xmlNodePtr' info='an element instance'/> - <arg name='qname' type='const xmlChar *' info='the qualified name as appearing in the serialization'/> - </function> - <function name='xmlValidateQName' file='tree' module='tree'> - <cond>defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Check that a value conforms to the lexical space of QName</info> - <return type='int' info='0 if this validates, a positive error code number otherwise and -1 in case of internal or API error.'/> - <arg name='value' type='const xmlChar *' info='the value to check'/> - <arg name='space' type='int' info='allow spaces in front and end of the string'/> - </function> - <function name='xmlValidateRoot' file='valid' module='valid'> - <cond>defined(LIBXML_VALID_ENABLED)</cond> - <info>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</info> - <return type='int' info='1 if valid or 0 otherwise'/> - <arg name='ctxt' type='xmlValidCtxtPtr' info='the validation context'/> - <arg name='doc' type='xmlDocPtr' info='a document instance'/> - </function> - <functype name='xmlValidityErrorFunc' file='valid' module='valid'> - <info>Callback called when a validity error is found. This is a message oriented function similar to an *printf function.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='usually an xmlValidCtxtPtr to a validity error context, but comes from ctxt->userData (which normally contains such a pointer); ctxt->userData can be changed by the user.'/> - <arg name='msg' type='const char *' info='the string to format *printf like vararg'/> - <arg name='...' type='...' info='remaining arguments to the format'/> - </functype> - <functype name='xmlValidityWarningFunc' file='valid' module='valid'> - <info>Callback called when a validity warning is found. This is a message oriented function similar to an *printf function.</info> - <return type='void'/> - <arg name='ctx' type='void *' info='usually an xmlValidCtxtPtr to a validity error context, but comes from ctxt->userData (which normally contains such a pointer); ctxt->userData can be changed by the user.'/> - <arg name='msg' type='const char *' info='the string to format *printf like vararg'/> - <arg name='...' type='...' info='remaining arguments to the format'/> - </functype> - <function name='xmlXIncludeFreeContext' file='xinclude' module='xinclude'> - <cond>defined(LIBXML_XINCLUDE_ENABLED)</cond> - <info>Free an XInclude context</info> - <return type='void'/> - <arg name='ctxt' type='xmlXIncludeCtxtPtr' info='the XInclude context'/> - </function> - <function name='xmlXIncludeNewContext' file='xinclude' module='xinclude'> - <cond>defined(LIBXML_XINCLUDE_ENABLED)</cond> - <info>Creates a new XInclude context</info> - <return type='xmlXIncludeCtxtPtr' info='the new set'/> - <arg name='doc' type='xmlDocPtr' info='an XML Document'/> - </function> - <function name='xmlXIncludeProcess' file='xinclude' module='xinclude'> - <cond>defined(LIBXML_XINCLUDE_ENABLED)</cond> - <info>Implement the XInclude substitution on the XML document @doc</info> - <return type='int' info='0 if no substitution were done, -1 if some processing failed or the number of substitutions done.'/> - <arg name='doc' type='xmlDocPtr' info='an XML document'/> - </function> - <function name='xmlXIncludeProcessFlags' file='xinclude' module='xinclude'> - <cond>defined(LIBXML_XINCLUDE_ENABLED)</cond> - <info>Implement the XInclude substitution on the XML document @doc</info> - <return type='int' info='0 if no substitution were done, -1 if some processing failed or the number of substitutions done.'/> - <arg name='doc' type='xmlDocPtr' info='an XML document'/> - <arg name='flags' type='int' info='a set of xmlParserOption used for parsing XML includes'/> - </function> - <function name='xmlXIncludeProcessFlagsData' file='xinclude' module='xinclude'> - <cond>defined(LIBXML_XINCLUDE_ENABLED)</cond> - <info>Implement the XInclude substitution on the XML document @doc</info> - <return type='int' info='0 if no substitution were done, -1 if some processing failed or the number of substitutions done.'/> - <arg name='doc' type='xmlDocPtr' info='an XML document'/> - <arg name='flags' type='int' info='a set of xmlParserOption used for parsing XML includes'/> - <arg name='data' type='void *' info='application data that will be passed to the parser context in the _private field of the parser context(s)'/> - </function> - <function name='xmlXIncludeProcessNode' file='xinclude' module='xinclude'> - <cond>defined(LIBXML_XINCLUDE_ENABLED)</cond> - <info>Implement the XInclude substitution for the given subtree reusing the informations and data coming from the given context.</info> - <return type='int' info='0 if no substitution were done, -1 if some processing failed or the number of substitutions done.'/> - <arg name='ctxt' type='xmlXIncludeCtxtPtr' info='an existing XInclude context'/> - <arg name='node' type='xmlNodePtr' info='a node in an XML document'/> - </function> - <function name='xmlXIncludeProcessTree' file='xinclude' module='xinclude'> - <cond>defined(LIBXML_XINCLUDE_ENABLED)</cond> - <info>Implement the XInclude substitution for the given subtree</info> - <return type='int' info='0 if no substitution were done, -1 if some processing failed or the number of substitutions done.'/> - <arg name='tree' type='xmlNodePtr' info='a node in an XML document'/> - </function> - <function name='xmlXIncludeProcessTreeFlags' file='xinclude' module='xinclude'> - <cond>defined(LIBXML_XINCLUDE_ENABLED)</cond> - <info>Implement the XInclude substitution for the given subtree</info> - <return type='int' info='0 if no substitution were done, -1 if some processing failed or the number of substitutions done.'/> - <arg name='tree' type='xmlNodePtr' info='a node in an XML document'/> - <arg name='flags' type='int' info='a set of xmlParserOption used for parsing XML includes'/> - </function> - <function name='xmlXIncludeSetFlags' file='xinclude' module='xinclude'> - <cond>defined(LIBXML_XINCLUDE_ENABLED)</cond> - <info>Set the flags used for further processing of XML resources.</info> - <return type='int' info='0 in case of success and -1 in case of error.'/> - <arg name='ctxt' type='xmlXIncludeCtxtPtr' info='an XInclude processing context'/> - <arg name='flags' type='int' info='a set of xmlParserOption used for parsing XML includes'/> - </function> - <function name='xmlXPathAddValues' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the add operation on XPath objects: The numeric operators convert their operands to numbers as if by calling the number function.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - </function> - <functype name='xmlXPathAxisFunc' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>An axis traversal function. To traverse an axis, the engine calls the first time with cur == NULL and repeat until the function returns NULL indicating the end of the axis traversal.</info> - <return type='xmlXPathObjectPtr' info='the next node in that axis or NULL if at the end of the axis.'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath interpreter context'/> - <arg name='cur' type='xmlXPathObjectPtr' info='the previous node being explored on that axis'/> - </functype> - <function name='xmlXPathBooleanFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the boolean() XPath function boolean boolean(object) The boolean function converts its argument to a boolean as follows: - a number is true if and only if it is neither positive or negative zero nor NaN - a node-set is true if and only if it is non-empty - a string is true if and only if its length is non-zero</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathCastBooleanToNumber' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts a boolean to its number value</info> - <return type='double' info='the number value'/> - <arg name='val' type='int' info='a boolean'/> - </function> - <function name='xmlXPathCastBooleanToString' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts a boolean to its string value.</info> - <return type='xmlChar *' info='a newly allocated string.'/> - <arg name='val' type='int' info='a boolean'/> - </function> - <function name='xmlXPathCastNodeSetToBoolean' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts a node-set to its boolean value</info> - <return type='int' info='the boolean value'/> - <arg name='ns' type='xmlNodeSetPtr' info='a node-set'/> - </function> - <function name='xmlXPathCastNodeSetToNumber' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts a node-set to its number value</info> - <return type='double' info='the number value'/> - <arg name='ns' type='xmlNodeSetPtr' info='a node-set'/> - </function> - <function name='xmlXPathCastNodeSetToString' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts a node-set to its string value.</info> - <return type='xmlChar *' info='a newly allocated string.'/> - <arg name='ns' type='xmlNodeSetPtr' info='a node-set'/> - </function> - <function name='xmlXPathCastNodeToNumber' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts a node to its number value</info> - <return type='double' info='the number value'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - </function> - <function name='xmlXPathCastNodeToString' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts a node to its string value.</info> - <return type='xmlChar *' info='a newly allocated string.'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - </function> - <function name='xmlXPathCastNumberToBoolean' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts a number to its boolean value</info> - <return type='int' info='the boolean value'/> - <arg name='val' type='double' info='a number'/> - </function> - <function name='xmlXPathCastNumberToString' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts a number to its string value.</info> - <return type='xmlChar *' info='a newly allocated string.'/> - <arg name='val' type='double' info='a number'/> - </function> - <function name='xmlXPathCastStringToBoolean' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts a string to its boolean value</info> - <return type='int' info='the boolean value'/> - <arg name='val' type='const xmlChar *' info='a string'/> - </function> - <function name='xmlXPathCastStringToNumber' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts a string to its number value</info> - <return type='double' info='the number value'/> - <arg name='val' type='const xmlChar *' info='a string'/> - </function> - <function name='xmlXPathCastToBoolean' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts an XPath object to its boolean value</info> - <return type='int' info='the boolean value'/> - <arg name='val' type='xmlXPathObjectPtr' info='an XPath object'/> - </function> - <function name='xmlXPathCastToNumber' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts an XPath object to its number value</info> - <return type='double' info='the number value'/> - <arg name='val' type='xmlXPathObjectPtr' info='an XPath object'/> - </function> - <function name='xmlXPathCastToString' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts an existing object to its string() equivalent</info> - <return type='xmlChar *' info='the allocated string value of the object, NULL in case of error. It's up to the caller to free the string memory with xmlFree().'/> - <arg name='val' type='xmlXPathObjectPtr' info='an XPath object'/> - </function> - <function name='xmlXPathCeilingFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the ceiling() XPath function number ceiling(number) The ceiling function returns the smallest (closest to negative infinity) number that is not less than the argument and that is an integer.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathCmpNodes' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Compare two nodes w.r.t document order</info> - <return type='int' info='-2 in case of error 1 if first point < second point, 0 if it's the same node, -1 otherwise'/> - <arg name='node1' type='xmlNodePtr' info='the first node'/> - <arg name='node2' type='xmlNodePtr' info='the second node'/> - </function> - <function name='xmlXPathCompareValues' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the compare operation on XPath objects: @arg1 < @arg2 (1, 1, ... @arg1 <= @arg2 (1, 0, ... @arg1 > @arg2 (0, 1, ... @arg1 >= @arg2 (0, 0, ... When neither object to be compared is a node-set and the operator is <=, <, >=, >, then the objects are compared by converted both objects to numbers and comparing the numbers according to IEEE 754. The < comparison will be true if and only if the first number is less than the second number. The <= comparison will be true if and only if the first number is less than or equal to the second number. The > comparison will be true if and only if the first number is greater than the second number. The >= comparison will be true if and only if the first number is greater than or equal to the second number.</info> - <return type='int' info='1 if the comparison succeeded, 0 if it failed'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='inf' type='int' info='less than (1) or greater than (0)'/> - <arg name='strict' type='int' info='is the comparison strict'/> - </function> - <function name='xmlXPathCompile' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Compile an XPath expression</info> - <return type='xmlXPathCompExprPtr' info='the xmlXPathCompExprPtr resulting from the compilation or NULL. the caller has to free the object.'/> - <arg name='str' type='const xmlChar *' info='the XPath expression'/> - </function> - <function name='xmlXPathCompiledEval' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Evaluate the Precompiled XPath expression in the given context.</info> - <return type='xmlXPathObjectPtr' info='the xmlXPathObjectPtr resulting from the evaluation or NULL. the caller has to free the object.'/> - <arg name='comp' type='xmlXPathCompExprPtr' info='the compiled XPath expression'/> - <arg name='ctx' type='xmlXPathContextPtr' info='the XPath context'/> - </function> - <function name='xmlXPathCompiledEvalToBoolean' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Applies the XPath boolean() function on the result of the given compiled expression.</info> - <return type='int' info='1 if the expression evaluated to true, 0 if to false and -1 in API and internal errors.'/> - <arg name='comp' type='xmlXPathCompExprPtr' info='the compiled XPath expression'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - </function> - <function name='xmlXPathConcatFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the concat() XPath function string concat(string, string, string*) The concat function returns the concatenation of its arguments.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathContainsFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the contains() XPath function boolean contains(string, string) The contains function returns true if the first argument string contains the second argument string, and otherwise returns false.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathContextSetCache' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>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.</info> - <return type='int' info='0 if the setting succeeded, and -1 on API or internal errors.'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='active' type='int' info='enables/disables (creates/frees) the cache'/> - <arg name='value' type='int' info='a value with semantics dependant on @options'/> - <arg name='options' type='int' info='options (currently only the value 0 is used)'/> - </function> - <function name='xmlXPathConvertBoolean' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts an existing object to its boolean() equivalent</info> - <return type='xmlXPathObjectPtr' info='the new object, the old one is freed (or the operation is done directly on @val)'/> - <arg name='val' type='xmlXPathObjectPtr' info='an XPath object'/> - </function> - <functype name='xmlXPathConvertFunc' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>A conversion function is associated to a type and used to cast the new type to primitive values.</info> - <return type='int' info='-1 in case of error, 0 otherwise'/> - <arg name='obj' type='xmlXPathObjectPtr' info='an XPath object'/> - <arg name='type' type='int' info='the number of the target type'/> - </functype> - <function name='xmlXPathConvertNumber' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts an existing object to its number() equivalent</info> - <return type='xmlXPathObjectPtr' info='the new object, the old one is freed (or the operation is done directly on @val)'/> - <arg name='val' type='xmlXPathObjectPtr' info='an XPath object'/> - </function> - <function name='xmlXPathConvertString' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Converts an existing object to its string() equivalent</info> - <return type='xmlXPathObjectPtr' info='the new object, the old one is freed (or the operation is done directly on @val)'/> - <arg name='val' type='xmlXPathObjectPtr' info='an XPath object'/> - </function> - <function name='xmlXPathCountFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the count() XPath function number count(node-set)</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathCtxtCompile' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Compile an XPath expression</info> - <return type='xmlXPathCompExprPtr' info='the xmlXPathCompExprPtr resulting from the compilation or NULL. the caller has to free the object.'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='an XPath context'/> - <arg name='str' type='const xmlChar *' info='the XPath expression'/> - </function> - <function name='xmlXPathDebugDumpCompExpr' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED) && defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dumps the tree of the compiled XPath expression.</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * for the output'/> - <arg name='comp' type='xmlXPathCompExprPtr' info='the precompiled XPath expression'/> - <arg name='depth' type='int' info='the indentation level.'/> - </function> - <function name='xmlXPathDebugDumpObject' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED) && defined(LIBXML_DEBUG_ENABLED)</cond> - <info>Dump the content of the object for debugging purposes</info> - <return type='void'/> - <arg name='output' type='FILE *' info='the FILE * to dump the output'/> - <arg name='cur' type='xmlXPathObjectPtr' info='the object to inspect'/> - <arg name='depth' type='int' info='indentation level'/> - </function> - <function name='xmlXPathDifference' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets difference() function: node-set set:difference (node-set, node-set)</info> - <return type='xmlNodeSetPtr' info='the difference between the two node sets, or nodes1 if nodes2 is empty'/> - <arg name='nodes1' type='xmlNodeSetPtr' info='a node-set'/> - <arg name='nodes2' type='xmlNodeSetPtr' info='a node-set'/> - </function> - <function name='xmlXPathDistinct' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets distinct() function: node-set set:distinct (node-set) @nodes is sorted by document order, then #exslSetsDistinctSorted is called with the sorted node-set</info> - <return type='xmlNodeSetPtr' info='a subset of the nodes contained in @nodes, or @nodes if it is empty'/> - <arg name='nodes' type='xmlNodeSetPtr' info='a node-set'/> - </function> - <function name='xmlXPathDistinctSorted' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets distinct() function: node-set set:distinct (node-set)</info> - <return type='xmlNodeSetPtr' info='a subset of the nodes contained in @nodes, or @nodes if it is empty'/> - <arg name='nodes' type='xmlNodeSetPtr' info='a node-set, sorted by document order'/> - </function> - <function name='xmlXPathDivValues' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the div operation on XPath objects @arg1 / @arg2: The numeric operators convert their operands to numbers as if by calling the number function.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - </function> - <function name='xmlXPathEqualValues' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the equal operation on XPath objects content: @arg1 == @arg2</info> - <return type='int' info='0 or 1 depending on the results of the test.'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - </function> - <function name='xmlXPathErr' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Handle an XPath error</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='a XPath parser context'/> - <arg name='error' type='int' info='the error code'/> - </function> - <function name='xmlXPathEval' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Evaluate the XPath Location Path in the given context.</info> - <return type='xmlXPathObjectPtr' info='the xmlXPathObjectPtr resulting from the evaluation or NULL. the caller has to free the object.'/> - <arg name='str' type='const xmlChar *' info='the XPath expression'/> - <arg name='ctx' type='xmlXPathContextPtr' info='the XPath context'/> - </function> - <function name='xmlXPathEvalExpr' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Parse and evaluate an XPath expression in the given context, then push the result on the context stack</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - </function> - <function name='xmlXPathEvalExpression' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Evaluate the XPath expression in the given context.</info> - <return type='xmlXPathObjectPtr' info='the xmlXPathObjectPtr resulting from the evaluation or NULL. the caller has to free the object.'/> - <arg name='str' type='const xmlChar *' info='the XPath expression'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - </function> - <functype name='xmlXPathEvalFunc' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>An XPath evaluation function, the parameters are on the XPath context stack.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='an XPath parser context'/> - <arg name='nargs' type='int' info='the number of arguments passed to the function'/> - </functype> - <function name='xmlXPathEvalPredicate' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Evaluate a predicate result for the current node. A PredicateExpr is evaluated by evaluating the Expr and converting the result to a boolean. If the result is a number, the result will be converted to true if the number is equal to the position of the context node in the context node list (as returned by the position function) and will be converted to false otherwise; if the result is not a number, then the result will be converted as if by a call to the boolean function.</info> - <return type='int' info='1 if predicate is true, 0 otherwise'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='res' type='xmlXPathObjectPtr' info='the Predicate Expression evaluation result'/> - </function> - <function name='xmlXPathEvaluatePredicateResult' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Evaluate a predicate result for the current node. A PredicateExpr is evaluated by evaluating the Expr and converting the result to a boolean. If the result is a number, the result will be converted to true if the number is equal to the position of the context node in the context node list (as returned by the position function) and will be converted to false otherwise; if the result is not a number, then the result will be converted as if by a call to the boolean function.</info> - <return type='int' info='1 if predicate is true, 0 otherwise'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='res' type='xmlXPathObjectPtr' info='the Predicate Expression evaluation result'/> - </function> - <function name='xmlXPathFalseFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the false() XPath function boolean false()</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathFloorFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the floor() XPath function number floor(number) The floor function returns the largest (closest to positive infinity) number that is not greater than the argument and that is an integer.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathFreeCompExpr' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Free up the memory allocated by @comp</info> - <return type='void'/> - <arg name='comp' type='xmlXPathCompExprPtr' info='an XPATH comp'/> - </function> - <function name='xmlXPathFreeContext' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Free up an xmlXPathContext</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the context to free'/> - </function> - <function name='xmlXPathFreeNodeSet' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Free the NodeSet compound (not the actual nodes !).</info> - <return type='void'/> - <arg name='obj' type='xmlNodeSetPtr' info='the xmlNodeSetPtr to free'/> - </function> - <function name='xmlXPathFreeNodeSetList' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Free up the xmlXPathObjectPtr @obj but don't deallocate the objects in the list contrary to xmlXPathFreeObject().</info> - <return type='void'/> - <arg name='obj' type='xmlXPathObjectPtr' info='an existing NodeSetList object'/> - </function> - <function name='xmlXPathFreeObject' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Free up an xmlXPathObjectPtr object.</info> - <return type='void'/> - <arg name='obj' type='xmlXPathObjectPtr' info='the object to free'/> - </function> - <function name='xmlXPathFreeParserContext' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Free up an xmlXPathParserContext</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the context to free'/> - </function> - <functype name='xmlXPathFuncLookupFunc' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Prototype for callbacks used to plug function lookup in the XPath engine.</info> - <return type='xmlXPathFunction' info='the XPath function or NULL if not found.'/> - <arg name='ctxt' type='void *' info='an XPath context'/> - <arg name='name' type='const xmlChar *' info='name of the function'/> - <arg name='ns_uri' type='const xmlChar *' info='the namespace name hosting this function'/> - </functype> - <functype name='xmlXPathFunction' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>An XPath function. The arguments (if any) are popped out from the context stack and the result is pushed on the stack.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath interprestation context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </functype> - <function name='xmlXPathFunctionLookup' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Search in the Function array of the context for the given function.</info> - <return type='xmlXPathFunction' info='the xmlXPathFunction or NULL if not found'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='name' type='const xmlChar *' info='the function name'/> - </function> - <function name='xmlXPathFunctionLookupNS' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Search in the Function array of the context for the given function.</info> - <return type='xmlXPathFunction' info='the xmlXPathFunction or NULL if not found'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='name' type='const xmlChar *' info='the function name'/> - <arg name='ns_uri' type='const xmlChar *' info='the function namespace URI'/> - </function> - <function name='xmlXPathHasSameNodes' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets has-same-nodes function: boolean set:has-same-node(node-set, node-set)</info> - <return type='int' info='true (1) if @nodes1 shares any node with @nodes2, false (0) otherwise'/> - <arg name='nodes1' type='xmlNodeSetPtr' info='a node-set'/> - <arg name='nodes2' type='xmlNodeSetPtr' info='a node-set'/> - </function> - <function name='xmlXPathIdFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the id() XPath function node-set id(object) The id function selects elements by their unique ID (see [5.2.1 Unique IDs]). When the argument to id is of type node-set, then the result is the union of the result of applying id to the string value of each of the nodes in the argument node-set. When the argument to id is of any other type, the argument is converted to a string as if by a call to the string function; the string is split into a whitespace-separated list of tokens (whitespace is any sequence of characters matching the production S); the result is a node-set containing the elements in the same document as the context node that have a unique ID equal to any of the tokens in the list.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathInit' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Initialize the XPath environment</info> - <return type='void'/> - </function> - <function name='xmlXPathIntersection' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets intersection() function: node-set set:intersection (node-set, node-set)</info> - <return type='xmlNodeSetPtr' info='a node set comprising the nodes that are within both the node sets passed as arguments'/> - <arg name='nodes1' type='xmlNodeSetPtr' info='a node-set'/> - <arg name='nodes2' type='xmlNodeSetPtr' info='a node-set'/> - </function> - <function name='xmlXPathIsInf' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Provides a portable isinf() function to detect whether a double is a +Infinite or -Infinite. Based on trio code http://sourceforge.net/projects/ctrio/</info> - <return type='int' info='1 vi the value is +Infinite, -1 if -Infinite, 0 otherwise'/> - <arg name='val' type='double' info='a double value'/> - </function> - <function name='xmlXPathIsNaN' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)</cond> - <info>Provides a portable isnan() function to detect whether a double is a NotaNumber. Based on trio code http://sourceforge.net/projects/ctrio/</info> - <return type='int' info='1 if the value is a NaN, 0 otherwise'/> - <arg name='val' type='double' info='a double value'/> - </function> - <function name='xmlXPathIsNodeType' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Is the name given a NodeType one. [38] NodeType ::= 'comment' | 'text' | 'processing-instruction' | 'node'</info> - <return type='int' info='1 if true 0 otherwise'/> - <arg name='name' type='const xmlChar *' info='a name string'/> - </function> - <function name='xmlXPathLangFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the lang() XPath function boolean lang(string) The lang function returns true or false depending on whether the language of the context node as specified by xml:lang attributes is the same as or is a sublanguage of the language specified by the argument string. The language of the context node is determined by the value of the xml:lang attribute on the context node, or, if the context node has no xml:lang attribute, by the value of the xml:lang attribute on the nearest ancestor of the context node that has an xml:lang attribute. If there is no such attribute, then lang</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathLastFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the last() XPath function number last() The last function returns the number of nodes in the context node list.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathLeading' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set) @nodes1 and @nodes2 are sorted by document order, then #exslSetsLeadingSorted is called.</info> - <return type='xmlNodeSetPtr' info='the nodes in @nodes1 that precede the first node in @nodes2 in document order, @nodes1 if @nodes2 is NULL or empty or an empty node-set if @nodes1 doesn't contain @nodes2'/> - <arg name='nodes1' type='xmlNodeSetPtr' info='a node-set'/> - <arg name='nodes2' type='xmlNodeSetPtr' info='a node-set'/> - </function> - <function name='xmlXPathLeadingSorted' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set)</info> - <return type='xmlNodeSetPtr' info='the nodes in @nodes1 that precede the first node in @nodes2 in document order, @nodes1 if @nodes2 is NULL or empty or an empty node-set if @nodes1 doesn't contain @nodes2'/> - <arg name='nodes1' type='xmlNodeSetPtr' info='a node-set, sorted by document order'/> - <arg name='nodes2' type='xmlNodeSetPtr' info='a node-set, sorted by document order'/> - </function> - <function name='xmlXPathLocalNameFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the local-name() XPath function string local-name(node-set?) The local-name function returns a string containing the local part of the name of the node in the argument node-set that is first in document order. If the node-set is empty or the first node has no name, an empty string is returned. If the argument is omitted it defaults to the context node.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathModValues' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the mod operation on XPath objects: @arg1 / @arg2 The numeric operators convert their operands to numbers as if by calling the number function.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - </function> - <function name='xmlXPathMultValues' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the multiply operation on XPath objects: The numeric operators convert their operands to numbers as if by calling the number function.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - </function> - <function name='xmlXPathNamespaceURIFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the namespace-uri() XPath function string namespace-uri(node-set?) The namespace-uri function returns a string containing the namespace URI of the expanded name of the node in the argument node-set that is first in document order. If the node-set is empty, the first node has no name, or the expanded name has no namespace URI, an empty string is returned. If the argument is omitted it defaults to the context node.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathNewBoolean' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type boolean and of value @val</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='int' info='the boolean value'/> - </function> - <function name='xmlXPathNewCString' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type string and of value @val</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='const char *' info='the char * value'/> - </function> - <function name='xmlXPathNewContext' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Create a new xmlXPathContext</info> - <return type='xmlXPathContextPtr' info='the xmlXPathContext just allocated. The caller will need to free it.'/> - <arg name='doc' type='xmlDocPtr' info='the XML document'/> - </function> - <function name='xmlXPathNewFloat' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type double and of value @val</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='double' info='the double value'/> - </function> - <function name='xmlXPathNewNodeSet' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type NodeSet and initialize it with the single Node @val</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='xmlNodePtr' info='the NodePtr value'/> - </function> - <function name='xmlXPathNewNodeSetList' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type NodeSet and initialize it with the Nodeset @val</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='xmlNodeSetPtr' info='an existing NodeSet'/> - </function> - <function name='xmlXPathNewParserContext' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Create a new xmlXPathParserContext</info> - <return type='xmlXPathParserContextPtr' info='the xmlXPathParserContext just allocated.'/> - <arg name='str' type='const xmlChar *' info='the XPath expression'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - </function> - <function name='xmlXPathNewString' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type string and of value @val</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='const xmlChar *' info='the xmlChar * value'/> - </function> - <function name='xmlXPathNewValueTree' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type Value Tree (XSLT) and initialize it with the tree root @val</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='xmlNodePtr' info='the NodePtr value'/> - </function> - <function name='xmlXPathNextAncestor' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "ancestor" direction the ancestor axis contains the ancestors of the context node; the ancestors of the context node consist of the parent of context node and the parent's parent and so on; the nodes are ordered in reverse document order; thus the parent is the first node on the axis, and the parent's parent is the second node on the axis</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current node in the traversal'/> - </function> - <function name='xmlXPathNextAncestorOrSelf' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "ancestor-or-self" direction he ancestor-or-self axis contains the context node and ancestors of the context node in reverse document order; thus the context node is the first node on the axis, and the context node's parent the second; parent here is defined the same as with the parent axis.</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current node in the traversal'/> - </function> - <function name='xmlXPathNextAttribute' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "attribute" direction TODO: support DTD inherited default attributes</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current attribute in the traversal'/> - </function> - <function name='xmlXPathNextChild' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "child" direction The child axis contains the children of the context node in document order.</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current node in the traversal'/> - </function> - <function name='xmlXPathNextDescendant' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "descendant" direction the descendant axis contains the descendants of the context node in document order; a descendant is a child or a child of a child and so on.</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current node in the traversal'/> - </function> - <function name='xmlXPathNextDescendantOrSelf' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "descendant-or-self" direction the descendant-or-self axis contains the context node and the descendants of the context node in document order; thus the context node is the first node on the axis, and the first child of the context node is the second node on the axis</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current node in the traversal'/> - </function> - <function name='xmlXPathNextFollowing' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "following" direction The following axis contains all nodes in the same document as the context node that are after the context node in document order, excluding any descendants and excluding attribute nodes and namespace nodes; the nodes are ordered in document order</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current node in the traversal'/> - </function> - <function name='xmlXPathNextFollowingSibling' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "following-sibling" direction The following-sibling axis contains the following siblings of the context node in document order.</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current node in the traversal'/> - </function> - <function name='xmlXPathNextNamespace' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "namespace" direction the namespace axis contains the namespace nodes of the context node; the order of nodes on this axis is implementation-defined; the axis will be empty unless the context node is an element We keep the XML namespace node at the end of the list.</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current attribute in the traversal'/> - </function> - <function name='xmlXPathNextParent' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "parent" direction The parent axis contains the parent of the context node, if there is one.</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current node in the traversal'/> - </function> - <function name='xmlXPathNextPreceding' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "preceding" direction the preceding axis contains all nodes in the same document as the context node that are before the context node in document order, excluding any ancestors and excluding attribute nodes and namespace nodes; the nodes are ordered in reverse document order</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current node in the traversal'/> - </function> - <function name='xmlXPathNextPrecedingSibling' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "preceding-sibling" direction The preceding-sibling axis contains the preceding siblings of the context node in reverse document order; the first preceding sibling is first on the axis; the sibling preceding that node is the second on the axis and so on.</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current node in the traversal'/> - </function> - <function name='xmlXPathNextSelf' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Traversal function for the "self" direction The self axis contains just the context node itself</info> - <return type='xmlNodePtr' info='the next element following that axis'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='cur' type='xmlNodePtr' info='the current node in the traversal'/> - </function> - <function name='xmlXPathNodeLeading' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set) @nodes is sorted by document order, then #exslSetsNodeLeadingSorted is called.</info> - <return type='xmlNodeSetPtr' info='the nodes in @nodes that precede @node in document order, @nodes if @node is NULL or an empty node-set if @nodes doesn't contain @node'/> - <arg name='nodes' type='xmlNodeSetPtr' info='a node-set'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - </function> - <function name='xmlXPathNodeLeadingSorted' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set)</info> - <return type='xmlNodeSetPtr' info='the nodes in @nodes that precede @node in document order, @nodes if @node is NULL or an empty node-set if @nodes doesn't contain @node'/> - <arg name='nodes' type='xmlNodeSetPtr' info='a node-set, sorted by document order'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - </function> - <function name='xmlXPathNodeSetAdd' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>add a new xmlNodePtr to an existing NodeSet</info> - <return type='void'/> - <arg name='cur' type='xmlNodeSetPtr' info='the initial node set'/> - <arg name='val' type='xmlNodePtr' info='a new xmlNodePtr'/> - </function> - <function name='xmlXPathNodeSetAddNs' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>add a new namespace node to an existing NodeSet</info> - <return type='void'/> - <arg name='cur' type='xmlNodeSetPtr' info='the initial node set'/> - <arg name='node' type='xmlNodePtr' info='the hosting node'/> - <arg name='ns' type='xmlNsPtr' info='a the namespace node'/> - </function> - <function name='xmlXPathNodeSetAddUnique' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>add a new xmlNodePtr to an existing NodeSet, optimized version when we are sure the node is not already in the set.</info> - <return type='void'/> - <arg name='cur' type='xmlNodeSetPtr' info='the initial node set'/> - <arg name='val' type='xmlNodePtr' info='a new xmlNodePtr'/> - </function> - <function name='xmlXPathNodeSetContains' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>checks whether @cur contains @val</info> - <return type='int' info='true (1) if @cur contains @val, false (0) otherwise'/> - <arg name='cur' type='xmlNodeSetPtr' info='the node-set'/> - <arg name='val' type='xmlNodePtr' info='the node'/> - </function> - <function name='xmlXPathNodeSetCreate' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Create a new xmlNodeSetPtr of type double and of value @val</info> - <return type='xmlNodeSetPtr' info='the newly created object.'/> - <arg name='val' type='xmlNodePtr' info='an initial xmlNodePtr, or NULL'/> - </function> - <function name='xmlXPathNodeSetDel' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Removes an xmlNodePtr from an existing NodeSet</info> - <return type='void'/> - <arg name='cur' type='xmlNodeSetPtr' info='the initial node set'/> - <arg name='val' type='xmlNodePtr' info='an xmlNodePtr'/> - </function> - <function name='xmlXPathNodeSetFreeNs' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Namespace nodes in libxml don't match the XPath semantic. In a node set the namespace nodes are duplicated and the next pointer is set to the parent node in the XPath semantic. Check if such a node needs to be freed</info> - <return type='void'/> - <arg name='ns' type='xmlNsPtr' info='the XPath namespace node found in a nodeset.'/> - </function> - <function name='xmlXPathNodeSetMerge' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Merges two nodesets, all nodes from @val2 are added to @val1 if @val1 is NULL, a new set is created and copied from @val2</info> - <return type='xmlNodeSetPtr' info='@val1 once extended or NULL in case of error.'/> - <arg name='val1' type='xmlNodeSetPtr' info='the first NodeSet or NULL'/> - <arg name='val2' type='xmlNodeSetPtr' info='the second NodeSet'/> - </function> - <function name='xmlXPathNodeSetRemove' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Removes an entry from an existing NodeSet list.</info> - <return type='void'/> - <arg name='cur' type='xmlNodeSetPtr' info='the initial node set'/> - <arg name='val' type='int' info='the index to remove'/> - </function> - <function name='xmlXPathNodeSetSort' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Sort the node set in document order</info> - <return type='void'/> - <arg name='set' type='xmlNodeSetPtr' info='the node set'/> - </function> - <function name='xmlXPathNodeTrailing' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set) @nodes is sorted by document order, then #xmlXPathNodeTrailingSorted is called.</info> - <return type='xmlNodeSetPtr' info='the nodes in @nodes that follow @node in document order, @nodes if @node is NULL or an empty node-set if @nodes doesn't contain @node'/> - <arg name='nodes' type='xmlNodeSetPtr' info='a node-set'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - </function> - <function name='xmlXPathNodeTrailingSorted' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set)</info> - <return type='xmlNodeSetPtr' info='the nodes in @nodes that follow @node in document order, @nodes if @node is NULL or an empty node-set if @nodes doesn't contain @node'/> - <arg name='nodes' type='xmlNodeSetPtr' info='a node-set, sorted by document order'/> - <arg name='node' type='xmlNodePtr' info='a node'/> - </function> - <function name='xmlXPathNormalizeFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the normalize-space() XPath function string normalize-space(string?) The normalize-space function returns the argument string with white space normalized by stripping leading and trailing whitespace and replacing sequences of whitespace characters by a single space. Whitespace characters are the same allowed by the S production in XML. If the argument is omitted, it defaults to the context node converted to a string, in other words the value of the context node.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathNotEqualValues' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the equal operation on XPath objects content: @arg1 == @arg2</info> - <return type='int' info='0 or 1 depending on the results of the test.'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - </function> - <function name='xmlXPathNotFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the not() XPath function boolean not(boolean) The not function returns true if its argument is false, and false otherwise.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathNsLookup' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Search in the namespace declaration array of the context for the given namespace name associated to the given prefix</info> - <return type='const xmlChar *' info='the value or NULL if not found'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='prefix' type='const xmlChar *' info='the namespace prefix value'/> - </function> - <function name='xmlXPathNumberFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the number() XPath function number number(object?)</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathObjectCopy' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>allocate a new copy of a given object</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='xmlXPathObjectPtr' info='the original object'/> - </function> - <function name='xmlXPathOrderDocElems' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Call this routine to speed up XPath computation on static documents. This stamps all the element nodes with the document order Like for line information, the order is kept in the element->content field, the value stored is actually - the node number (starting at -1) to be able to differentiate from line numbers.</info> - <return type='long' info='the number of elements found in the document or -1 in case of error.'/> - <arg name='doc' type='xmlDocPtr' info='an input document'/> - </function> - <function name='xmlXPathParseNCName' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>parse an XML namespace non qualified name. [NS 3] NCName ::= (Letter | '_') (NCNameChar)* [NS 4] NCNameChar ::= Letter | Digit | '.' | '-' | '_' | CombiningChar | Extender</info> - <return type='xmlChar *' info='the namespace name or NULL'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - </function> - <function name='xmlXPathParseName' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>parse an XML name [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)*</info> - <return type='xmlChar *' info='the namespace name or NULL'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - </function> - <function name='xmlXPathPopBoolean' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Pops a boolean from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</info> - <return type='int' info='the boolean'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='an XPath parser context'/> - </function> - <function name='xmlXPathPopExternal' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Pops an external object from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</info> - <return type='void *' info='the object'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='an XPath parser context'/> - </function> - <function name='xmlXPathPopNodeSet' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Pops a node-set from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</info> - <return type='xmlNodeSetPtr' info='the node-set'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='an XPath parser context'/> - </function> - <function name='xmlXPathPopNumber' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Pops a number from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</info> - <return type='double' info='the number'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='an XPath parser context'/> - </function> - <function name='xmlXPathPopString' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Pops a string from the stack, handling conversion if needed. Check error with #xmlXPathCheckError.</info> - <return type='xmlChar *' info='the string'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='an XPath parser context'/> - </function> - <function name='xmlXPathPositionFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the position() XPath function number position() The position function returns the position of the context node in the context node list. The first position is 1, and so the last position will be equal to last().</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathRegisterAllFunctions' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Registers all default XPath functions in this context</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - </function> - <function name='xmlXPathRegisterFunc' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Register a new function. If @f is NULL it unregisters the function</info> - <return type='int' info='0 in case of success, -1 in case of error'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='name' type='const xmlChar *' info='the function name'/> - <arg name='f' type='xmlXPathFunction' info='the function implementation or NULL'/> - </function> - <function name='xmlXPathRegisterFuncLookup' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Registers an external mechanism to do function lookup.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='f' type='xmlXPathFuncLookupFunc' info='the lookup function'/> - <arg name='funcCtxt' type='void *' info='the lookup data'/> - </function> - <function name='xmlXPathRegisterFuncNS' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Register a new function. If @f is NULL it unregisters the function</info> - <return type='int' info='0 in case of success, -1 in case of error'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='name' type='const xmlChar *' info='the function name'/> - <arg name='ns_uri' type='const xmlChar *' info='the function namespace URI'/> - <arg name='f' type='xmlXPathFunction' info='the function implementation or NULL'/> - </function> - <function name='xmlXPathRegisterNs' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Register a new namespace. If @ns_uri is NULL it unregisters the namespace</info> - <return type='int' info='0 in case of success, -1 in case of error'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='prefix' type='const xmlChar *' info='the namespace prefix'/> - <arg name='ns_uri' type='const xmlChar *' info='the namespace name'/> - </function> - <function name='xmlXPathRegisterVariable' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Register a new variable value. If @value is NULL it unregisters the variable</info> - <return type='int' info='0 in case of success, -1 in case of error'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='name' type='const xmlChar *' info='the variable name'/> - <arg name='value' type='xmlXPathObjectPtr' info='the variable value or NULL'/> - </function> - <function name='xmlXPathRegisterVariableLookup' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>register an external mechanism to do variable lookup</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='f' type='xmlXPathVariableLookupFunc' info='the lookup function'/> - <arg name='data' type='void *' info='the lookup data'/> - </function> - <function name='xmlXPathRegisterVariableNS' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Register a new variable value. If @value is NULL it unregisters the variable</info> - <return type='int' info='0 in case of success, -1 in case of error'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='name' type='const xmlChar *' info='the variable name'/> - <arg name='ns_uri' type='const xmlChar *' info='the variable namespace URI'/> - <arg name='value' type='xmlXPathObjectPtr' info='the variable value or NULL'/> - </function> - <function name='xmlXPathRegisteredFuncsCleanup' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Cleanup the XPath context data associated to registered functions</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - </function> - <function name='xmlXPathRegisteredNsCleanup' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Cleanup the XPath context data associated to registered variables</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - </function> - <function name='xmlXPathRegisteredVariablesCleanup' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Cleanup the XPath context data associated to registered variables</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - </function> - <function name='xmlXPathRoot' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Initialize the context to the root of the document</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - </function> - <function name='xmlXPathRoundFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the round() XPath function number round(number) The round function returns the number that is closest to the argument and that is an integer. If there are two such numbers, then the one that is even is returned.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathStartsWithFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>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.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathStringEvalNumber' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>[30a] Float ::= Number ('e' Digits?)? [30] Number ::= Digits ('.' Digits?)? | '.' Digits [31] Digits ::= [0-9]+ Compile a Number in the string In complement of the Number expression, this function also handles negative values : '-' Number.</info> - <return type='double' info='the double value.'/> - <arg name='str' type='const xmlChar *' info='A string to scan'/> - </function> - <function name='xmlXPathStringFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the string() XPath function string string(object?) The string function converts an object to a string as follows: - A node-set is converted to a string by returning the value of the node in the node-set that is first in document order. If the node-set is empty, an empty string is returned. - A number is converted to a string as follows + NaN is converted to the string NaN + positive zero is converted to the string 0 + negative zero is converted to the string 0 + positive infinity is converted to the string Infinity + negative infinity is converted to the string -Infinity + if the number is an integer, the number is represented in decimal form as a Number with no decimal point and no leading zeros, preceded by a minus sign (-) if the number is negative + otherwise, the number is represented in decimal form as a Number including a decimal point with at least one digit before the decimal point and at least one digit after the decimal point, preceded by a minus sign (-) if the number is negative; there must be no leading zeros before the decimal point apart possibly from the one required digit immediately before the decimal point; beyond the one required digit after the decimal point there must be as many, but only as many, more digits as are needed to uniquely distinguish the number from all other IEEE 754 numeric values. - The boolean false value is converted to the string false. The boolean true value is converted to the string true. If the argument is omitted, it defaults to a node-set with the context node as its only member.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathStringLengthFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the string-length() XPath function number string-length(string?) The string-length returns the number of characters in the string (see [3.6 Strings]). If the argument is omitted, it defaults to the context node converted to a string, in other words the value of the context node.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathSubValues' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the subtraction operation on XPath objects: The numeric operators convert their operands to numbers as if by calling the number function.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - </function> - <function name='xmlXPathSubstringAfterFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>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.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathSubstringBeforeFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the substring-before() XPath function string substring-before(string, string) The substring-before function returns the substring of the first argument string that precedes 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-before("1999/04/01","/") returns 1999.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathSubstringFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the substring() XPath function string substring(string, number, number?) The substring function returns the substring of the first argument starting at the position specified in the second argument with length specified in the third argument. For example, substring("12345",2,3) returns "234". If the third argument is not specified, it returns the substring starting at the position specified in the second argument and continuing to the end of the string. For example, substring("12345",2) returns "2345". More precisely, each character in the string (see [3.6 Strings]) is considered to have a numeric position: the position of the first character is 1, the position of the second character is 2 and so on. The returned substring contains those characters for which the position of the character is greater than or equal to the second argument and, if the third argument is specified, less than the sum of the second and third arguments; the comparisons and addition used for the above follow the standard IEEE 754 rules. Thus: - substring("12345", 1.5, 2.6) returns "234" - substring("12345", 0, 3) returns "12" - substring("12345", 0 div 0, 3) returns "" - substring("12345", 1, 0 div 0) returns "" - substring("12345", -42, 1 div 0) returns "12345" - substring("12345", -1 div 0, 1 div 0) returns ""</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathSumFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the sum() XPath function number sum(node-set) The sum function returns the sum of the values of the nodes in the argument node-set.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathTrailing' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set) @nodes1 and @nodes2 are sorted by document order, then #xmlXPathTrailingSorted is called.</info> - <return type='xmlNodeSetPtr' info='the nodes in @nodes1 that follow the first node in @nodes2 in document order, @nodes1 if @nodes2 is NULL or empty or an empty node-set if @nodes1 doesn't contain @nodes2'/> - <arg name='nodes1' type='xmlNodeSetPtr' info='a node-set'/> - <arg name='nodes2' type='xmlNodeSetPtr' info='a node-set'/> - </function> - <function name='xmlXPathTrailingSorted' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set)</info> - <return type='xmlNodeSetPtr' info='the nodes in @nodes1 that follow the first node in @nodes2 in document order, @nodes1 if @nodes2 is NULL or empty or an empty node-set if @nodes1 doesn't contain @nodes2'/> - <arg name='nodes1' type='xmlNodeSetPtr' info='a node-set, sorted by document order'/> - <arg name='nodes2' type='xmlNodeSetPtr' info='a node-set, sorted by document order'/> - </function> - <function name='xmlXPathTranslateFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the translate() XPath function string translate(string, string, string) The translate function returns the first argument string with occurrences of characters in the second argument string replaced by the character at the corresponding position in the third argument string. For example, translate("bar","abc","ABC") returns the string BAr. If there is a character in the second argument string with no character at a corresponding position in the third argument string (because the second argument string is longer than the third argument string), then occurrences of that character in the first argument string are removed. For example, translate("--aaa--","abc-","ABC")</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathTrueFunction' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the true() XPath function boolean true()</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='nargs' type='int' info='the number of arguments'/> - </function> - <function name='xmlXPathValueFlipSign' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Implement the unary - operation on an XPath object The numeric operators convert their operands to numbers as if by calling the number function.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - </function> - <function name='xmlXPathVariableLookup' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Search in the Variable array of the context for the given variable value.</info> - <return type='xmlXPathObjectPtr' info='a copy of the value or NULL if not found'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='name' type='const xmlChar *' info='the variable name'/> - </function> - <functype name='xmlXPathVariableLookupFunc' file='xpath' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Prototype for callbacks used to plug variable lookup in the XPath engine.</info> - <return type='xmlXPathObjectPtr' info='the XPath object value or NULL if not found.'/> - <arg name='ctxt' type='void *' info='an XPath context'/> - <arg name='name' type='const xmlChar *' info='name of the variable'/> - <arg name='ns_uri' type='const xmlChar *' info='the namespace name hosting this variable'/> - </functype> - <function name='xmlXPathVariableLookupNS' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Search in the Variable array of the context for the given variable value.</info> - <return type='xmlXPathObjectPtr' info='the a copy of the value or NULL if not found'/> - <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/> - <arg name='name' type='const xmlChar *' info='the variable name'/> - <arg name='ns_uri' type='const xmlChar *' info='the variable namespace URI'/> - </function> - <function name='xmlXPathWrapCString' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Wraps a string into an XPath object.</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='char *' info='the char * value'/> - </function> - <function name='xmlXPathWrapExternal' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Wraps the @val data into an XPath object.</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='void *' info='the user data'/> - </function> - <function name='xmlXPathWrapNodeSet' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Wrap the Nodeset @val in a new xmlXPathObjectPtr</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='xmlNodeSetPtr' info='the NodePtr value'/> - </function> - <function name='xmlXPathWrapString' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Wraps the @val string into an XPath object.</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='xmlChar *' info='the xmlChar * value'/> - </function> - <function name='xmlXPatherror' file='xpathInternals' module='xpath'> - <cond>defined(LIBXML_XPATH_ENABLED)</cond> - <info>Formats an error message.</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/> - <arg name='file' type='const char *' info='the file name'/> - <arg name='line' type='int' info='the line number'/> - <arg name='no' type='int' info='the error number'/> - </function> - <function name='xmlXPtrBuildNodeList' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Build a node list tree copy of the XPointer result. This will drop Attributes and Namespace declarations.</info> - <return type='xmlNodePtr' info='an xmlNodePtr list or NULL. the caller has to free the node tree.'/> - <arg name='obj' type='xmlXPathObjectPtr' info='the XPointer result from the evaluation.'/> - </function> - <function name='xmlXPtrEval' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Evaluate the XPath Location Path in the given context.</info> - <return type='xmlXPathObjectPtr' info='the xmlXPathObjectPtr resulting from the evaluation or NULL. the caller has to free the object.'/> - <arg name='str' type='const xmlChar *' info='the XPointer expression'/> - <arg name='ctx' type='xmlXPathContextPtr' info='the XPointer context'/> - </function> - <function name='xmlXPtrEvalRangePredicate' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>[8] Predicate ::= '[' PredicateExpr ']' [9] PredicateExpr ::= Expr Evaluate a predicate as in xmlXPathEvalPredicate() but for a Location Set instead of a node set</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPointer Parser context'/> - </function> - <function name='xmlXPtrFreeLocationSet' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Free the LocationSet compound (not the actual ranges !).</info> - <return type='void'/> - <arg name='obj' type='xmlLocationSetPtr' info='the xmlLocationSetPtr to free'/> - </function> - <function name='xmlXPtrLocationSetAdd' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>add a new xmlXPathObjectPtr to an existing LocationSet If the location already exist in the set @val is freed.</info> - <return type='void'/> - <arg name='cur' type='xmlLocationSetPtr' info='the initial range set'/> - <arg name='val' type='xmlXPathObjectPtr' info='a new xmlXPathObjectPtr'/> - </function> - <function name='xmlXPtrLocationSetCreate' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Create a new xmlLocationSetPtr of type double and of value @val</info> - <return type='xmlLocationSetPtr' info='the newly created object.'/> - <arg name='val' type='xmlXPathObjectPtr' info='an initial xmlXPathObjectPtr, or NULL'/> - </function> - <function name='xmlXPtrLocationSetDel' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Removes an xmlXPathObjectPtr from an existing LocationSet</info> - <return type='void'/> - <arg name='cur' type='xmlLocationSetPtr' info='the initial range set'/> - <arg name='val' type='xmlXPathObjectPtr' info='an xmlXPathObjectPtr'/> - </function> - <function name='xmlXPtrLocationSetMerge' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Merges two rangesets, all ranges from @val2 are added to @val1</info> - <return type='xmlLocationSetPtr' info='val1 once extended or NULL in case of error.'/> - <arg name='val1' type='xmlLocationSetPtr' info='the first LocationSet'/> - <arg name='val2' type='xmlLocationSetPtr' info='the second LocationSet'/> - </function> - <function name='xmlXPtrLocationSetRemove' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Removes an entry from an existing LocationSet list.</info> - <return type='void'/> - <arg name='cur' type='xmlLocationSetPtr' info='the initial range set'/> - <arg name='val' type='int' info='the index to remove'/> - </function> - <function name='xmlXPtrNewCollapsedRange' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type range using a single nodes</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='start' type='xmlNodePtr' info='the starting and ending node'/> - </function> - <function name='xmlXPtrNewContext' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Create a new XPointer context</info> - <return type='xmlXPathContextPtr' info='the xmlXPathContext just allocated.'/> - <arg name='doc' type='xmlDocPtr' info='the XML document'/> - <arg name='here' type='xmlNodePtr' info='the node that directly contains the XPointer being evaluated or NULL'/> - <arg name='origin' type='xmlNodePtr' info='the element from which a user or program initiated traversal of the link, or NULL.'/> - </function> - <function name='xmlXPtrNewLocationSetNodeSet' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type LocationSet and initialize it with all the nodes from @set</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='set' type='xmlNodeSetPtr' info='a node set'/> - </function> - <function name='xmlXPtrNewLocationSetNodes' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type LocationSet and initialize it with the single range made of the two nodes @start and @end</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='start' type='xmlNodePtr' info='the start NodePtr value'/> - <arg name='end' type='xmlNodePtr' info='the end NodePtr value or NULL'/> - </function> - <function name='xmlXPtrNewRange' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type range</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='start' type='xmlNodePtr' info='the starting node'/> - <arg name='startindex' type='int' info='the start index'/> - <arg name='end' type='xmlNodePtr' info='the ending point'/> - <arg name='endindex' type='int' info='the ending index'/> - </function> - <function name='xmlXPtrNewRangeNodeObject' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type range from a not to an object</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='start' type='xmlNodePtr' info='the starting node'/> - <arg name='end' type='xmlXPathObjectPtr' info='the ending object'/> - </function> - <function name='xmlXPtrNewRangeNodePoint' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type range from a node to a point</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='start' type='xmlNodePtr' info='the starting node'/> - <arg name='end' type='xmlXPathObjectPtr' info='the ending point'/> - </function> - <function name='xmlXPtrNewRangeNodes' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type range using 2 nodes</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='start' type='xmlNodePtr' info='the starting node'/> - <arg name='end' type='xmlNodePtr' info='the ending node'/> - </function> - <function name='xmlXPtrNewRangePointNode' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type range from a point to a node</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='start' type='xmlXPathObjectPtr' info='the starting point'/> - <arg name='end' type='xmlNodePtr' info='the ending node'/> - </function> - <function name='xmlXPtrNewRangePoints' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Create a new xmlXPathObjectPtr of type range using 2 Points</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='start' type='xmlXPathObjectPtr' info='the starting point'/> - <arg name='end' type='xmlXPathObjectPtr' info='the ending point'/> - </function> - <function name='xmlXPtrRangeToFunction' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Implement the range-to() XPointer function</info> - <return type='void'/> - <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPointer Parser context'/> - <arg name='nargs' type='int' info='the number of args'/> - </function> - <function name='xmlXPtrWrapLocationSet' file='xpointer' module='xpointer'> - <cond>defined(LIBXML_XPTR_ENABLED)</cond> - <info>Wrap the LocationSet @val in a new xmlXPathObjectPtr</info> - <return type='xmlXPathObjectPtr' info='the newly created object.'/> - <arg name='val' type='xmlLocationSetPtr' info='the LocationSet value'/> - </function> - </symbols> -</api> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/namespaces.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/namespaces.html deleted file mode 100644 index 40f3cf25..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/namespaces.html +++ /dev/null @@ -1,50 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Namespaces</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Namespaces</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>The libxml2 library implements <a href="http://www.w3.org/TR/REC-xml-names/">XML namespaces</a> support by -recognizing namespace constructs in the input, and does namespace lookup -automatically when building the DOM tree. A namespace declaration is -associated with an in-memory structure and all elements or attributes within -that namespace point to it. Hence testing the namespace is a simple and fast -equality operation at the user level.</p><p>I suggest that people using libxml2 use a namespace, and declare it in the -root element of their document as the default namespace. Then they don't need -to use the prefix in the content but we will have a basis for future semantic -refinement and merging of data from different sources. This doesn't increase -the size of the XML output significantly, but significantly increases its -value in the long-term. Example:</p><pre><mydoc xmlns="http://mydoc.example.org/schemas/"> - <elem1>...</elem1> - <elem2>...</elem2> -</mydoc></pre><p>The namespace value has to be an absolute URL, but the URL doesn't have to -point to any existing resource on the Web. It will bind all the element and -attributes with that URL. I suggest to use an URL within a domain you -control, and that the URL should contain some kind of version information if -possible. For example, <code>"http://www.gnome.org/gnumeric/1.0/"</code> is a -good namespace scheme.</p><p>Then when you load a file, make sure that a namespace carrying the -version-independent prefix is installed on the root element of your document, -and if the version information don't match something you know, warn the user -and be liberal in what you accept as the input. Also do *not* try to base -namespace checking on the prefix value. <foo:text> may be exactly the -same as <bar:text> in another document. What really matters is the URI -associated with the element or the attribute, not the prefix string (which is -just a shortcut for the full URI). In libxml, element and attributes have an -<code>ns</code> field pointing to an xmlNs structure detailing the namespace -prefix and its URI.</p><p>@@Interfaces@@</p><pre>xmlNodePtr node; -if(!strncmp(node->name,"mytag",5) - && node->ns - && !strcmp(node->ns->href,"http://www.mysite.com/myns/1.0")) { - ... -}</pre><p>Usually people object to using namespaces together with validity checking. -I will try to make sure that using namespaces won't break validity checking, -so even if you plan to use or currently are using validation I strongly -suggest adding namespaces to your document. A default namespace scheme -<code>xmlns="http://...."</code> should not break validity even on less -flexible parsers. Using namespaces to mix and differentiate content coming -from multiple DTDs will certainly break current validation schemes. To check -such documents one needs to use schema-validation, which is supported in -libxml2 as well. See <a href="http://www.relaxng.org/">relagx-ng</a> and <a href="http://www.w3c.org/XML/Schema">w3c-schema</a>.</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/news.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/news.html deleted file mode 100644 index 867b81a6..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/news.html +++ /dev/null @@ -1,1358 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Releases</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Releases</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Items not finished and worked on, get in touch with the list if you want -to help those</p><ul><li>More testing on RelaxNG</li> - <li>Finishing up <a href="http://www.w3.org/TR/xmlschema-1/">XML - Schemas</a></li> -</ul><p>The <a href="ChangeLog.html">change log</a> describes the recents commits -to the <a href="http://svn.gnome.org/viewcvs/libxml2/trunk/">SVN</a> code base.</p><p>Here is the list of public releases:</p><h3>2.6.30: Aug 23 2007</h3><ul><li>Portability: Solaris crash on error handling, windows path fixes - (Roland Schwarz and Rob Richards), mingw build (Roland Schwarz)</li> - <li>Bugfixes: xmlXPathNodeSetSort problem (William Brack), leak when - reusing a writer for a new document (Dodji Seketeli), Schemas - xsi:nil handling patch (Frank Gross), relative URI build problem - (Patrik Fimml), crash in xmlDocFormatDump, invalid char in comment - detection bug, fix disparity with xmlSAXUserParseMemory, automata - generation for complex regexp counts problems, Schemas IDC import - problems (Frank Gross), xpath predicate evailation error handling - (William Brack)</li> -</ul><h3>2.6.29: Jun 12 2007</h3><ul><li>Portability: patches from Andreas Stricke for WinCEi, - fix compilation warnings (William Brack), avoid warnings on Apple OS/X - (Wendy Doyle and Mark Rowe), Windows compilation and threading - improvements (Rob Richards), compilation against old Python versions, - new GNU tar changes (Ryan Hill)</li> - <li>Documentation: xmlURIUnescapeString comment, </li> - <li>Bugfixes: xmlBufferAdd problem (Richard Jones), 'make valgrind' - flag fix (Richard Jones), regexp interpretation of \, - htmlCreateDocParserCtxt (Jean-Daniel Dupas), configure.in - typo (Bjorn Reese), entity content failure, xmlListAppend() fix - (Georges-André Silber), XPath number serialization (William Brack), - nanohttp gzipped stream fix (William Brack and Alex Cornejo), - xmlCharEncFirstLine typo (Mark Rowe), uri bug (François Delyon), - XPath string value of PI nodes (William Brack), XPath node set - sorting bugs (William Brack), avoid outputting namespace decl - dups in the writer (Rob Richards), xmlCtxtReset bug, UTF-8 encoding - error handling, recustion on next in catalogs, fix a Relax-NG crash, - workaround wrong file: URIs, htmlNodeDumpFormatOutput on attributes, - invalid character in attribute detection bug, big comments before - internal subset streaming bug, HTML parsing of attributes with : in - the name, IDness of name in HTML (Dagfinn I. Mannsåker) </li> - <li>Improvement: keep URI query parts in raw form (Richard Jones), - embed tag support in HTML (Michael Day) </li> -</ul><h3>2.6.28: Apr 17 2007</h3><ul><li>Documentation: comment fixes (Markus Keim), xpath comments fixes too - (James Dennett)</li> - <li>Bug fixes: XPath bug (William Brack), HTML parser autoclose stack usage - (Usamah Malik), various regexp bug fixes (DV and William), path conversion - on Windows (Igor Zlatkovic), htmlCtxtReset fix (Michael Day), XPath - principal node of axis bug, HTML serialization of some codepoint - (Steven Rainwater), user data propagation in XInclude (Michael Day), - standalone and XML decl detection (Michael Day), Python id ouptut - for some id, fix the big python string memory leak, URI parsing fixes - (Stéphane Bidoul and William), long comments parsing bug (William), - concurrent threads initialization (Ted Phelps), invalid char - in text XInclude (William), XPath memory leak (William), tab in - python problems (Andreas Hanke), XPath node comparison error - (Oleg Paraschenko), cleanup patch for reader (Julien Reichel), - XML Schemas attribute group (William), HTML parsing problem (William), - fix char 0x2d in regexps (William), regexp quantifier range with - min occurs of 0 (William), HTML script/style parsing (Mike Day)</li> - <li>Improvement: make xmlTextReaderSetup() public</li> - <li>Compilation and postability: fix a missing include problem (William), - __ss_familly on AIX again (Björn Wiberg), compilation without zlib - (Michael Day), catalog patch for Win32 (Christian Ehrlicher), - Windows CE fixes (Andreas Stricke)</li> - <li>Various CVS to SVN infrastructure changes</li> -</ul><h3>2.6.27: Oct 25 2006</h3><ul><li>Portability fixes: file names on windows (Roland Schwingel, - Emelyanov Alexey), windows compile fixup (Rob Richards), - AIX iconv() is apparently case sensitive</li> - <li>improvements: Python XPath types mapping (Nic Ferrier), XPath optimization - (Kasimier), add xmlXPathCompiledEvalToBoolean (Kasimier), Python node - equality and comparison (Andreas Pakulat), xmlXPathCollectAndTest - improvememt (Kasimier), expose if library was compiled with zlib - support (Andrew Nosenko), cache for xmlSchemaIDCMatcher structs - (Kasimier), xmlTextConcat should work with comments and PIs (Rob - Richards), export htmlNewParserCtxt needed by Michael Day, refactoring - of catalog entity loaders (Michael Day), add XPointer support to - python bindings (Ross Reedstrom, Brian West and Stefan Anca), - try to sort out most file path to URI conversions and xmlPathToUri, - add --html --memory case to xmllint</li> - <li>building fix: fix --with-minimum (Felipe Contreras), VMS fix, - const'ification of HTML parser structures (Matthias Clasen), - portability fix (Emelyanov Alexey), wget autodetection (Peter - Breitenlohner), remove the build path recorded in the python - shared module, separate library flags for shared and static builds - (Mikhail Zabaluev), fix --with-minimum --with-sax1 builds, fix - --with-minimum --with-schemas builds</li> - <li>bug fix: xmlGetNodePath fix (Kasimier), xmlDOMWrapAdoptNode and - attribute (Kasimier), crash when using the recover mode, - xmlXPathEvalExpr problem (Kasimier), xmlXPathCompExprAdd bug (Kasimier), - missing destry in xmlFreeRMutex (Andrew Nosenko), XML Schemas fixes - (Kasimier), warning on entities processing, XHTML script and style - serialization (Kasimier), python generator for long types, bug in - xmlSchemaClearValidCtxt (Bertrand Fritsch), xmlSchemaXPathEvaluate - allocation bug (Marton Illes), error message end of line (Rob Richards), - fix attribute serialization in writer (Rob Richards), PHP4 DTD validation - crasher, parser safety patch (Ben Darnell), _private context propagation - when parsing entities (with Michael Day), fix entities behaviour when - using SAX, URI to file path fix (Mikhail Zabaluev), disapearing validity - context, arg error in SAX callback (Mike Hommey), fix mixed-content - autodetect when using --noblanks, fix xmlIOParseDTD error handling, - fix bug in xmlSplitQName on special Names, fix Relax-NG element content - validation bug, fix xmlReconciliateNs bug, fix potential attribute - XML parsing bug, fix line/column accounting in XML parser, chunking bug - in the HTML parser on script, try to detect obviously buggy HTML - meta encoding indications, bugs with encoding BOM and xmlSaveDoc, - HTML entities in attributes parsing, HTML minimized attribute values, - htmlReadDoc and htmlReadIO were broken, error handling bug in - xmlXPathEvalExpression (Olaf Walkowiak), fix a problem in - htmlCtxtUseOptions, xmlNewInputFromFile could leak (Marius Konitzer), - bug on misformed SSD regexps (Christopher Boumenot) - </li> - <li>documentation: warning about XML_PARSE_COMPACT (Kasimier Buchcik), - fix xmlXPathCastToString documentation, improve man pages for - xmllitn and xmlcatalog (Daniel Leidert), fixed comments of a few - functions</li> -</ul><h3>2.6.26: Jun 6 2006</h3><ul><li>portability fixes: Python detection (Joseph Sacco), compilation - error(William Brack and Graham Bennett), LynxOS patch (Olli Savia)</li> - <li>bug fixes: encoding buffer problem, mix of code and data in - xmlIO.c(Kjartan Maraas), entities in XSD validation (Kasimier Buchcik), - variousXSD validation fixes (Kasimier), memory leak in pattern (Rob - Richards andKasimier), attribute with colon in name (Rob Richards), XPath - leak inerror reporting (Aleksey Sanin), XInclude text include of - selfdocument.</li> - <li>improvements: Xpath optimizations (Kasimier), XPath object - cache(Kasimier)</li> -</ul><h3>2.6.25: Jun 6 2006:</h3><p>Do not use or package 2.6.25</p><h3>2.6.24: Apr 28 2006</h3><ul><li>Portability fixes: configure on Windows, testapi compile on windows - (Kasimier Buchcik, venkat naidu), Borland C++ 6 compile (Eric Zurcher), - HP-UX compiler workaround (Rick Jones), xml2-config bugfix, gcc-4.1 - cleanups, Python detection scheme (Joseph Sacco), UTF-8 file paths on - Windows (Roland Schwingel). - </li> - <li>Improvements: xmlDOMWrapReconcileNamespaces xmlDOMWrapCloneNode (Kasimier - Buchcik), XML catalog debugging (Rick Jones), update to Unicode 4.01.</li> - <li>Bug fixes: xmlParseChunk() problem in 2.6.23, xmlParseInNodeContext() - on HTML docs, URI behaviour on Windows (Rob Richards), comment streaming - bug, xmlParseComment (with William Brack), regexp bug fixes (DV & - Youri Golovanov), xmlGetNodePath on text/CDATA (Kasimier), - one Relax-NG interleave bug, xmllint --path and --valid, - XSD bugfixes (Kasimier), remove debug - left in Python bindings (Nic Ferrier), xmlCatalogAdd bug (Martin Cole), - xmlSetProp fixes (Rob Richards), HTML IDness (Rob Richards), a large - number of cleanups and small fixes based on Coverity reports, bug - in character ranges, Unicode tables const (Aivars Kalvans), schemas - fix (Stefan Kost), xmlRelaxNGParse error deallocation, - xmlSchemaAddSchemaDoc error deallocation, error handling on unallowed - code point, ixmllint --nonet to never reach the net (Gary Coady), - line break in writer after end PI (Jason Viers). </li> - <li>Documentation: man pages updates and cleanups (Daniel Leidert).</li> - <li>New features: Relax NG structure error handlers.</li> -</ul><h3>2.6.23: Jan 5 2006</h3><ul><li>portability fixes: Windows (Rob Richards), getaddrinfo on Windows - (Kolja Nowak, Rob Richards), icc warnings (Kjartan Maraas), - --with-minimum compilation fixes (William Brack), error case handling fix - on Solaris (Albert Chin), don't use 'list' as parameter name reported by - Samuel Diaz Garcia, more old Unices portability fixes (Albert Chin), - MinGW compilation (Mark Junker), HP-UX compiler warnings (Rick - Jones),</li> - <li>code cleanup: xmlReportError (Adrian Mouat), remove xmlBufferClose - (Geert Jansen), unreachable code (Oleksandr Kononenko), refactoring - parsing code (Bjorn Reese)</li> - <li>bug fixes: xmlBuildRelativeURI and empty path (William Brack), - combinatory explosion and performances in regexp code, leak in - xmlTextReaderReadString(), xmlStringLenDecodeEntities problem (Massimo - Morara), Identity Constraints bugs and a segfault (Kasimier Buchcik), - XPath pattern based evaluation bugs (DV & Kasimier), - xmlSchemaContentModelDump() memory leak (Kasimier), potential leak in - xmlSchemaCheckCSelectorXPath(), xmlTextWriterVSprintf() misuse of - vsnprintf (William Brack), XHTML serialization fix (Rob Richards), CRLF - split problem (William), issues with non-namespaced attributes in - xmlAddChild() xmlAddNextSibling() and xmlAddPrevSibling() (Rob Richards), - HTML parsing of script, Python must not output to stdout (Nic Ferrier), - exclusive C14N namespace visibility (Aleksey Sanin), XSD dataype - totalDigits bug (Kasimier Buchcik), error handling when writing to an - xmlBuffer (Rob Richards), runtest schemas error not reported (Hisashi - Fujinaka), signed/unsigned problem in date/time code (Albert Chin), fix - XSI driven XSD validation (Kasimier), parsing of xs:decimal (Kasimier), - fix DTD writer output (Rob Richards), leak in xmlTextReaderReadInnerXml - (Gary Coady), regexp bug affecting schemas (Kasimier), configuration of - runtime debugging (Kasimier), xmlNodeBufGetContent bug on entity refs - (Oleksandr Kononenko), xmlRegExecPushString2 bug (Sreeni Nair), - compilation and build fixes (Michael Day), removed dependancies on - xmlSchemaValidError (Kasimier), bug with <xml:foo/>, more XPath - pattern based evaluation fixes (Kasimier)</li> - <li>improvements: XSD Schemas redefinitions/restrictions (Kasimier - Buchcik), node copy checks and fix for attribute (Rob Richards), counted - transition bug in regexps, ctxt->standalone = -2 to indicate no - standalone attribute was found, add xmlSchemaSetParserStructuredErrors() - (Kasimier Buchcik), add xmlTextReaderSchemaValidateCtxt() to API - (Kasimier), handle gzipped HTTP resources (Gary Coady), add - htmlDocDumpMemoryFormat. (Rob Richards),</li> - <li>documentation: typo (Michael Day), libxml man page (Albert Chin), save - function to XML buffer (Geert Jansen), small doc fix (Aron Stansvik),</li> -</ul><h3>2.6.22: Sep 12 2005</h3><ul><li>build fixes: compile without schematron (Stéphane Bidoul)</li> - <li>bug fixes: xmlDebugDumpNode on namespace node (Oleg Paraschenko)i, - CDATA push parser bug, xmlElemDump problem with XHTML1 doc, - XML_FEATURE_xxx clash with expat headers renamed XML_WITH_xxx, fix some - output formatting for meta element (Rob Richards), script and style - XHTML1 serialization (David Madore), Attribute derivation fixups in XSD - (Kasimier Buchcik), better IDC error reports (Kasimier Buchcik)</li> - <li>improvements: add XML_SAVE_NO_EMPTY xmlSaveOption (Rob Richards), add - XML_SAVE_NO_XHTML xmlSaveOption, XML Schemas improvements preparing for - derive (Kasimier Buchcik).</li> - <li>documentation: generation of gtk-doc like docs, integration with - devhelp.</li> -</ul><h3>2.6.21: Sep 4 2005</h3><ul><li>build fixes: Cygwin portability fixes (Gerrit P. Haase), calling - convention problems on Windows (Marcus Boerger), cleanups based on Linus' - sparse tool, update of win32/configure.js (Rob Richards), remove warnings - on Windows(Marcus Boerger), compilation without SAX1, detection of the - Python binary, use $GCC inestad of $CC = 'gcc' (Andrew W. Nosenko), - compilation/link with threads and old gcc, compile problem by C370 on - Z/OS,</li> - <li>bug fixes: http_proxy environments (Peter Breitenlohner), HTML UTF-8 - bug (Jiri Netolicky), XPath NaN compare bug (William Brack), - htmlParseScript potential bug, Schemas regexp handling of spaces, Base64 - Schemas comparisons NIST passes, automata build error xsd:all, - xmlGetNodePath for namespaced attributes (Alexander Pohoyda), xmlSchemas - foreign namespaces handling, XML Schemas facet comparison (Kupriyanov - Anatolij), xmlSchemaPSimpleTypeErr error report (Kasimier Buchcik), xml: - namespace ahndling in Schemas (Kasimier), empty model group in Schemas - (Kasimier), wilcard in Schemas (Kasimier), URI composition (William), - xs:anyType in Schemas (Kasimier), Python resolver emmitting error - messages directly, Python xmlAttr.parent (Jakub Piotr Clapa), trying to - fix the file path/URI conversion, xmlTextReaderGetAttribute fix (Rob - Richards), xmlSchemaFreeAnnot memleak (Kasimier), HTML UTF-8 - serialization, streaming XPath, Schemas determinism detection problem, - XInclude bug, Schemas context type (Dean Hill), validation fix (Derek - Poon), xmlTextReaderGetAttribute[Ns] namespaces (Rob Richards), Schemas - type fix (Kuba Nowakowski), UTF-8 parser bug, error in encoding handling, - xmlGetLineNo fixes, bug on entities handling, entity name extraction in - error handling with XInclude, text nodes in HTML body tags (Gary Coady), - xml:id and IDness at the treee level fixes, XPath streaming patterns - bugs.</li> - <li>improvements: structured interfaces for schemas and RNG error reports - (Marcus Boerger), optimization of the char data inner loop parsing - (thanks to Behdad Esfahbod for the idea), schematron validation though - not finished yet, xmlSaveOption to omit XML declaration, keyref match - error reports (Kasimier), formal expression handling code not plugged - yet, more lax mode for the HTML parser, parser XML_PARSE_COMPACT option - for text nodes allocation.</li> - <li>documentation: xmllint man page had --nonet duplicated</li> -</ul><h3>2.6.20: Jul 10 2005</h3><ul><li>build fixes: Windows build (Rob Richards), Mingw compilation (Igor - Zlatkovic), Windows Makefile (Igor), gcc warnings (Kasimier and - andriy@google.com), use gcc weak references to pthread to avoid the - pthread dependancy on Linux, compilation problem (Steve Nairn), compiling - of subset (Morten Welinder), IPv6/ss_family compilation (William Brack), - compilation when disabling parts of the library, standalone test - distribution.</li> - <li>bug fixes: bug in lang(), memory cleanup on errors (William Brack), - HTTP query strings (Aron Stansvik), memory leak in DTD (William), integer - overflow in XPath (William), nanoftp buffer size, pattern "." apth fixup - (Kasimier), leak in tree reported by Malcolm Rowe, replaceNode patch - (Brent Hendricks), CDATA with NULL content (Mark Vakoc), xml:base fixup - on XInclude (William), pattern fixes (William), attribute bug in - exclusive c14n (Aleksey Sanin), xml:space and xml:lang with SAX2 (Rob - Richards), namespace trouble in complex parsing (Malcolm Rowe), XSD type - QNames fixes (Kasimier), XPath streaming fixups (William), RelaxNG bug - (Rob Richards), Schemas for Schemas fixes (Kasimier), removal of ID (Rob - Richards), a small RelaxNG leak, HTML parsing in push mode bug (James - Bursa), failure to detect UTF-8 parsing bugs in CDATA sections, - areBlanks() heuristic failure, duplicate attributes in DTD bug - (William).</li> - <li>improvements: lot of work on Schemas by Kasimier Buchcik both on - conformance and streaming, Schemas validation messages (Kasimier Buchcik, - Matthew Burgess), namespace removal at the python level (Brent - Hendricks), Update to new Schemas regression tests from W3C/Nist - (Kasimier), xmlSchemaValidateFile() (Kasimier), implementation of - xmlTextReaderReadInnerXml and xmlTextReaderReadOuterXml (James Wert), - standalone test framework and programs, new DOM import APIs - xmlDOMWrapReconcileNamespaces() xmlDOMWrapAdoptNode() and - xmlDOMWrapRemoveNode(), extension of xmllint capabilities for SAX and - Schemas regression tests, xmlStopParser() available in pull mode too, - ienhancement to xmllint --shell namespaces support, Windows port of the - standalone testing tools (Kasimier and William), - xmlSchemaValidateStream() xmlSchemaSAXPlug() and xmlSchemaSAXUnplug() SAX - Schemas APIs, Schemas xmlReader support.</li> -</ul><h3>2.6.19: Apr 02 2005</h3><ul><li>build fixes: drop .la from RPMs, --with-minimum build fix (William - Brack), use XML_SOCKLEN_T instead of SOCKLEN_T because it breaks with AIX - 5.3 compiler, fixed elfgcchack.h generation and PLT reduction code on - Linux/ELF/gcc4</li> - <li>bug fixes: schemas type decimal fixups (William Brack), xmmlint return - code (Gerry Murphy), small schemas fixes (Matthew Burgess and GUY - Fabrice), workaround "DAV:" namespace brokeness in c14n (Aleksey Sanin), - segfault in Schemas (Kasimier Buchcik), Schemas attribute validation - (Kasimier), Prop related functions and xmlNewNodeEatName (Rob Richards), - HTML serialization of name attribute on a elements, Python error handlers - leaks and improvement (Brent Hendricks), uninitialized variable in - encoding code, Relax-NG validation bug, potential crash if - gnorableWhitespace is NULL, xmlSAXParseDoc and xmlParseDoc signatures, - switched back to assuming UTF-8 in case no encoding is given at - serialization time</li> - <li>improvements: lot of work on Schemas by Kasimier Buchcik on facets - checking and also mixed handling.</li> - <li></li> -</ul><h3>2.6.18: Mar 13 2005</h3><ul><li>build fixes: warnings (Peter Breitenlohner), testapi.c generation, - Bakefile support (Francesco Montorsi), Windows compilation (Joel Reed), - some gcc4 fixes, HP-UX portability fixes (Rick Jones).</li> - <li>bug fixes: xmlSchemaElementDump namespace (Kasimier Buchcik), push and - xmlreader stopping on non-fatal errors, thread support for dictionnaries - reference counting (Gary Coady), internal subset and push problem, URL - saved in xmlCopyDoc, various schemas bug fixes (Kasimier), Python paths - fixup (Stephane Bidoul), xmlGetNodePath and namespaces, xmlSetNsProp fix - (Mike Hommey), warning should not count as error (William Brack), - xmlCreatePushParser empty chunk, XInclude parser flags (William), cleanup - FTP and HTTP code to reuse the uri parsing and IPv6 (William), - xmlTextWriterStartAttributeNS fix (Rob Richards), XMLLINT_INDENT being - empty (William), xmlWriter bugs (Rob Richards), multithreading on Windows - (Rich Salz), xmlSearchNsByHref fix (Kasimier), Python binding leak (Brent - Hendricks), aliasing bug exposed by gcc4 on s390, xmlTextReaderNext bug - (Rob Richards), Schemas decimal type fixes (William Brack), - xmlByteConsumed static buffer (Ben Maurer).</li> - <li>improvement: speedup parsing comments and DTDs, dictionnary support for - hash tables, Schemas Identity constraints (Kasimier), streaming XPath - subset, xmlTextReaderReadString added (Bjorn Reese), Schemas canonical - values handling (Kasimier), add xmlTextReaderByteConsumed (Aron - Stansvik),</li> - <li>Documentation: Wiki support (Joel Reed)</li> -</ul><h3>2.6.17: Jan 16 2005</h3><ul><li>build fixes: Windows, warnings removal (William Brack), - maintainer-clean dependency(William), build in a different directory - (William), fixing --with-minimum configure build (William), BeOS build - (Marcin Konicki), Python-2.4 detection (William), compilation on AIX (Dan - McNichol)</li> - <li>bug fixes: xmlTextReaderHasAttributes (Rob Richards), xmlCtxtReadFile() - to use the catalog(s), loop on output (William Brack), XPath memory leak, - ID deallocation problem (Steve Shepard), debugDumpNode crash (William), - warning not using error callback (William), xmlStopParser bug (William), - UTF-16 with BOM on DTDs (William), namespace bug on empty elements in - push mode (Rob Richards), line and col computations fixups (Aleksey - Sanin), xmlURIEscape fix (William), xmlXPathErr on bad range (William), - patterns with too many steps, bug in RNG choice optimization, line number - sometimes missing.</li> - <li>improvements: XSD Schemas (Kasimier Buchcik), python generator - (William), xmlUTF8Strpos speedup (William), unicode Python strings - (William), XSD error reports (Kasimier Buchcik), Python __str__ call - serialize().</li> - <li>new APIs: added xmlDictExists(), GetLineNumber and GetColumnNumber for - the xmlReader (Aleksey Sanin), Dynamic Shared Libraries APIs (mostly Joel - Reed), error extraction API from regexps, new XMLSave option for format - (Phil Shafer)</li> - <li>documentation: site improvement (John Fleck), FAQ entries - (William).</li> -</ul><h3>2.6.16: Nov 10 2004</h3><ul><li>general hardening and bug fixing crossing all the API based on new - automated regression testing</li> - <li>build fix: IPv6 build and test on AIX (Dodji Seketeli)</li> - <li>bug fixes: problem with XML::Libxml reported by Petr Pajas, encoding - conversion functions return values, UTF-8 bug affecting XPath reported by - Markus Bertheau, catalog problem with NULL entries (William Brack)</li> - <li>documentation: fix to xmllint man page, some API function descritpion - were updated.</li> - <li>improvements: DTD validation APIs provided at the Python level (Brent - Hendricks)</li> -</ul><h3>2.6.15: Oct 27 2004</h3><ul><li>security fixes on the nanoftp and nanohttp modules</li> - <li>build fixes: xmllint detection bug in configure, building outside the - source tree (Thomas Fitzsimmons)</li> - <li>bug fixes: HTML parser on broken ASCII chars in names (William), Python - paths (Malcolm Tredinnick), xmlHasNsProp and default namespace (William), - saving to python file objects (Malcolm Tredinnick), DTD lookup fix - (Malcolm), save back <group> in catalogs (William), tree build - fixes (DV and Rob Richards), Schemas memory bug, structured error handler - on Python 64bits, thread local memory deallocation, memory leak reported - by Volker Roth, xmlValidateDtd in the presence of an internal subset, - entities and _private problem (William), xmlBuildRelativeURI error - (William).</li> - <li>improvements: better XInclude error reports (William), tree debugging - module and tests, convenience functions at the Reader API (Graham - Bennett), add support for PI in the HTML parser.</li> -</ul><h3>2.6.14: Sep 29 2004</h3><ul><li>build fixes: configure paths for xmllint and xsltproc, compilation - without HTML parser, compilation warning cleanups (William Brack & - Malcolm Tredinnick), VMS makefile update (Craig Berry),</li> - <li>bug fixes: xmlGetUTF8Char (William Brack), QName properties (Kasimier - Buchcik), XInclude testing, Notation serialization, UTF8ToISO8859x - transcoding (Mark Itzcovitz), lots of XML Schemas cleanup and fixes - (Kasimier), ChangeLog cleanup (Stepan Kasal), memory fixes (Mark Vakoc), - handling of failed realloc(), out of bound array adressing in Schemas - date handling, Python space/tabs cleanups (Malcolm Tredinnick), NMTOKENS - E20 validation fix (Malcolm),</li> - <li>improvements: added W3C XML Schemas testsuite (Kasimier Buchcik), add - xmlSchemaValidateOneElement (Kasimier), Python exception hierearchy - (Malcolm Tredinnick), Python libxml2 driver improvement (Malcolm - Tredinnick), Schemas support for xsi:schemaLocation, - xsi:noNamespaceSchemaLocation, xsi:type (Kasimier Buchcik)</li> -</ul><h3>2.6.13: Aug 31 2004</h3><ul><li>build fixes: Windows and zlib (Igor Zlatkovic), -O flag with gcc, - Solaris compiler warning, fixing RPM BuildRequires,</li> - <li>fixes: DTD loading on Windows (Igor), Schemas error reports APIs - (Kasimier Buchcik), Schemas validation crash, xmlCheckUTF8 (William Brack - and Julius Mittenzwei), Schemas facet check (Kasimier), default namespace - problem (William), Schemas hexbinary empty values, encoding error could - genrate a serialization loop.</li> - <li>Improvements: Schemas validity improvements (Kasimier), added --path - and --load-trace options to xmllint</li> - <li>documentation: tutorial update (John Fleck)</li> -</ul><h3>2.6.12: Aug 22 2004</h3><ul><li>build fixes: fix --with-minimum, elfgcchack.h fixes (Peter - Breitenlohner), perl path lookup (William), diff on Solaris (Albert - Chin), some 64bits cleanups.</li> - <li>Python: avoid a warning with 2.3 (William Brack), tab and space mixes - (William), wrapper generator fixes (William), Cygwin support (Gerrit P. - Haase), node wrapper fix (Marc-Antoine Parent), XML Schemas support - (Torkel Lyng)</li> - <li>Schemas: a lot of bug fixes and improvements from Kasimier Buchcik</li> - <li>fixes: RVT fixes (William), XPath context resets bug (William), memory - debug (Steve Hay), catalog white space handling (Peter Breitenlohner), - xmlReader state after attribute reading (William), structured error - handler (William), XInclude generated xml:base fixup (William), Windows - memory reallocation problem (Steve Hay), Out of Memory conditions - handling (William and Olivier Andrieu), htmlNewDoc() charset bug, - htmlReadMemory init (William), a posteriori validation DTD base - (William), notations serialization missing, xmlGetNodePath (Dodji), - xmlCheckUTF8 (Diego Tartara), missing line numbers on entity - (William)</li> - <li>improvements: DocBook catalog build scrip (William), xmlcatalog tool - (Albert Chin), xmllint --c14n option, no_proxy environment (Mike Hommey), - xmlParseInNodeContext() addition, extend xmllint --shell, allow XInclude - to not generate start/end nodes, extend xmllint --version to include CVS - tag (William)</li> - <li>documentation: web pages fixes, validity API docs fixes (William) - schemas API fix (Eric Haszlakiewicz), xmllint man page (John Fleck)</li> -</ul><h3>2.6.11: July 5 2004</h3><ul><li>Schemas: a lot of changes and improvements by Kasimier Buchcik for - attributes, namespaces and simple types.</li> - <li>build fixes: --with-minimum (William Brack), some gcc cleanup - (William), --with-thread-alloc (William)</li> - <li>portability: Windows binary package change (Igor Zlatkovic), Catalog - path on Windows</li> - <li>documentation: update to the tutorial (John Fleck), xmllint return code - (John Fleck), man pages (Ville Skytta),</li> - <li>bug fixes: C14N bug serializing namespaces (Aleksey Sanin), testSAX - properly initialize the library (William), empty node set in XPath - (William), xmlSchemas errors (William), invalid charref problem pointed - by Morus Walter, XInclude xml:base generation (William), Relax-NG bug - with div processing (William), XPointer and xml:base problem(William), - Reader and entities, xmllint return code for schemas (William), reader - streaming problem (Steve Ball), DTD serialization problem (William), - libxml.m4 fixes (Mike Hommey), do not provide destructors as methods on - Python classes, xmlReader buffer bug, Python bindings memory interfaces - improvement (with Stéphane Bidoul), Fixed the push parser to be back to - synchronous behaviour.</li> - <li>improvement: custom per-thread I/O enhancement (Rob Richards), register - namespace in debug shell (Stefano Debenedetti), Python based regression - test for non-Unix users (William), dynamically increase the number of - XPath extension functions in Python and fix a memory leak (Marc-Antoine - Parent and William)</li> - <li>performance: hack done with Arjan van de Ven to reduce ELF footprint - and generated code on Linux, plus use gcc runtime profiling to optimize - the code generated in the RPM packages.</li> -</ul><h3>2.6.10: May 17 2004</h3><ul><li>Web page generated for ChangeLog</li> - <li>build fixes: --without-html problems, make check without make all</li> - <li>portability: problem with xpath.c on Windows (MSC and Borland), memcmp - vs. strncmp on Solaris, XPath tests on Windows (Mark Vakoc), C++ do not - use "list" as parameter name, make tests work with Python 1.5 (Ed - Davis),</li> - <li>improvements: made xmlTextReaderMode public, small buffers resizing - (Morten Welinder), add --maxmem option to xmllint, add - xmlPopInputCallback() for Matt Sergeant, refactoring of serialization - escaping, added escaping customization</li> - <li>bugfixes: xsd:extension (Taihei Goi), assorted regexp bugs (William - Brack), xmlReader end of stream problem, node deregistration with reader, - URI escaping and filemanes, XHTML1 formatting (Nick Wellnhofer), regexp - transition reduction (William), various XSD Schemas fixes (Kasimier - Buchcik), XInclude fallback problem (William), weird problems with DTD - (William), structured error handler callback context (William), reverse - xmlEncodeSpecialChars() behaviour back to escaping '"'</li> -</ul><h3>2.6.9: Apr 18 2004</h3><ul><li>implement xml:id Working Draft, relaxed XPath id() checking</li> - <li>bugfixes: xmlCtxtReset (Brent Hendricks), line number and CDATA (Dave - Beckett), Relax-NG compilation (William Brack), Regexp patches (with - William), xmlUriEscape (Mark Vakoc), a Relax-NG notAllowed problem (with - William), Relax-NG name classes compares (William), XInclude duplicate - fallback (William), external DTD encoding detection (William), a DTD - validation bug (William), xmlReader Close() fix, recusive extention - schemas</li> - <li>improvements: use xmlRead* APIs in test tools (Mark Vakoc), indenting - save optimization, better handle IIS broken HTTP redirect behaviour (Ian - Hummel), HTML parser frameset (James Bursa), libxml2-python RPM - dependancy, XML Schemas union support (Kasimier Buchcik), warning removal - clanup (William), keep ChangeLog compressed when installing from RPMs</li> - <li>documentation: examples and xmlDocDumpMemory docs (John Fleck), new - example (load, xpath, modify, save), xmlCatalogDump() comments,</li> - <li>Windows: Borland C++ builder (Eric Zurcher), work around Microsoft - compiler NaN handling bug (Mark Vakoc)</li> -</ul><h3>2.6.8: Mar 23 2004</h3><ul><li>First step of the cleanup of the serialization code and APIs</li> - <li>XML Schemas: mixed content (Adam Dickmeiss), QName handling fixes (Adam - Dickmeiss), anyURI for "" (John Belmonte)</li> - <li>Python: Canonicalization C14N support added (Anthony Carrico)</li> - <li>xmlDocCopyNode() extension (William)</li> - <li>Relax-NG: fix when processing XInclude results (William), external - reference in interleave (William), missing error on <choice> - failure (William), memory leak in schemas datatype facets.</li> - <li>xmlWriter: patch for better DTD support (Alfred Mickautsch)</li> - <li>bug fixes: xmlXPathLangFunction memory leak (Mike Hommey and William - Brack), no ID errors if using HTML_PARSE_NOERROR, xmlcatalog fallbacks to - URI on SYSTEM lookup failure, XInclude parse flags inheritance (William), - XInclude and XPointer fixes for entities (William), XML parser bug - reported by Holger Rauch, nanohttp fd leak (William), regexps char - groups '-' handling (William), dictionnary reference counting problems, - do not close stderr.</li> - <li>performance patches from Petr Pajas</li> - <li>Documentation fixes: XML_CATALOG_FILES in man pages (Mike Hommey)</li> - <li>compilation and portability fixes: --without-valid, catalog cleanups - (Peter Breitenlohner), MingW patch (Roland Schwingel), cross-compilation - to Windows (Christophe de Vienne), --with-html-dir fixup (Julio Merino - Vidal), Windows build (Eric Zurcher)</li> -</ul><h3>2.6.7: Feb 23 2004</h3><ul><li>documentation: tutorial updates (John Fleck), benchmark results</li> - <li>xmlWriter: updates and fixes (Alfred Mickautsch, Lucas Brasilino)</li> - <li>XPath optimization (Petr Pajas)</li> - <li>DTD ID handling optimization</li> - <li>bugfixes: xpath number with > 19 fractional (William Brack), push - mode with unescaped '>' characters, fix xmllint --stream --timing, fix - xmllint --memory --stream memory usage, xmlAttrSerializeTxtContent - handling NULL, trying to fix Relax-NG/Perl interface.</li> - <li>python: 2.3 compatibility, whitespace fixes (Malcolm Tredinnick)</li> - <li>Added relaxng option to xmllint --shell</li> -</ul><h3>2.6.6: Feb 12 2004</h3><ul><li>nanohttp and nanoftp: buffer overflow error on URI parsing (Igor and - William) reported by Yuuichi Teranishi</li> - <li>bugfixes: make test and path issues, xmlWriter attribute serialization - (William Brack), xmlWriter indentation (William), schemas validation - (Eric Haszlakiewicz), XInclude dictionnaries issues (William and Oleg - Paraschenko), XInclude empty fallback (William), HTML warnings (William), - XPointer in XInclude (William), Python namespace serialization, - isolat1ToUTF8 bound error (Alfred Mickautsch), output of parameter - entities in internal subset (William), internal subset bug in push mode, - <xs:all> fix (Alexey Sarytchev)</li> - <li>Build: fix for automake-1.8 (Alexander Winston), warnings removal - (Philip Ludlam), SOCKLEN_T detection fixes (Daniel Richard), fix - --with-minimum configuration.</li> - <li>XInclude: allow the 2001 namespace without warning.</li> - <li>Documentation: missing example/index.html (John Fleck), version - dependancies (John Fleck)</li> - <li>reader API: structured error reporting (Steve Ball)</li> - <li>Windows compilation: mingw, msys (Mikhail Grushinskiy), function - prototype (Cameron Johnson), MSVC6 compiler warnings, _WINSOCKAPI_ - patch</li> - <li>Parsers: added xmlByteConsumed(ctxt) API to get the byte offest in - input.</li> -</ul><h3>2.6.5: Jan 25 2004</h3><ul><li>Bugfixes: dictionnaries for schemas (William Brack), regexp segfault - (William), xs:all problem (William), a number of XPointer bugfixes - (William), xmllint error go to stderr, DTD validation problem with - namespace, memory leak (William), SAX1 cleanup and minimal options fixes - (Mark Vadoc), parser context reset on error (Shaun McCance), XPath union - evaluation problem (William) , xmlReallocLoc with NULL (Aleksey Sanin), - XML Schemas double free (Steve Ball), XInclude with no href, argument - callbacks order for XPath callbacks (Frederic Peters)</li> - <li>Documentation: python scripts (William Brack), xslt stylesheets (John - Fleck), doc (Sven Zimmerman), I/O example.</li> - <li>Python bindings: fixes (William), enum support (Stéphane Bidoul), - structured error reporting (Stéphane Bidoul)</li> - <li>XInclude: various fixes for conformance, problem related to dictionnary - references (William & me), recursion (William)</li> - <li>xmlWriter: indentation (Lucas Brasilino), memory leaks (Alfred - Mickautsch),</li> - <li>xmlSchemas: normalizedString datatype (John Belmonte)</li> - <li>code cleanup for strings functions (William)</li> - <li>Windows: compiler patches (Mark Vakoc)</li> - <li>Parser optimizations, a few new XPath and dictionnary APIs for future - XSLT optimizations.</li> -</ul><h3>2.6.4: Dec 24 2003</h3><ul><li>Windows build fixes (Igor Zlatkovic)</li> - <li>Some serious XInclude problems reported by Oleg Paraschenko and</li> - <li>Unix and Makefile packaging fixes (me, William Brack,</li> - <li>Documentation improvements (John Fleck, William Brack), example fix - (Lucas Brasilino)</li> - <li>bugfixes: xmlTextReaderExpand() with xmlReaderWalker, XPath handling of - NULL strings (William Brack) , API building reader or parser from - filedescriptor should not close it, changed XPath sorting to be stable - again (William Brack), xmlGetNodePath() generating '(null)' (William - Brack), DTD validation and namespace bug (William Brack), XML Schemas - double inclusion behaviour</li> -</ul><h3>2.6.3: Dec 10 2003</h3><ul><li>documentation updates and cleanup (DV, William Brack, John Fleck)</li> - <li>added a repository of examples, examples from Aleksey Sanin, Dodji - Seketeli, Alfred Mickautsch</li> - <li>Windows updates: Mark Vakoc, Igor Zlatkovic, Eric Zurcher, Mingw - (Kenneth Haley)</li> - <li>Unicode range checking (William Brack)</li> - <li>code cleanup (William Brack)</li> - <li>Python bindings: doc (John Fleck), bug fixes</li> - <li>UTF-16 cleanup and BOM issues (William Brack)</li> - <li>bug fixes: ID and xmlReader validation, XPath (William Brack), - xmlWriter (Alfred Mickautsch), hash.h inclusion problem, HTML parser - (James Bursa), attribute defaulting and validation, some serialization - cleanups, XML_GET_LINE macro, memory debug when using threads (William - Brack), serialization of attributes and entities content, xmlWriter - (Daniel Schulman)</li> - <li>XInclude bugfix, new APIs and update to the last version including the - namespace change.</li> - <li>XML Schemas improvements: include (Robert Stepanek), import and - namespace handling, fixed the regression tests troubles, added examples - based on Eric van der Vlist book, regexp fixes</li> - <li>preliminary pattern support for streaming (needed for schemas - constraints), added xmlTextReaderPreservePattern() to collect subdocument - when streaming.</li> - <li>various fixes in the structured error handling</li> -</ul><h3>2.6.2: Nov 4 2003</h3><ul><li>XPath context unregistration fixes</li> - <li>text node coalescing fixes (Mark Lilback)</li> - <li>API to screate a W3C Schemas from an existing document (Steve Ball)</li> - <li>BeOS patches (Marcin 'Shard' Konicki)</li> - <li>xmlStrVPrintf function added (Aleksey Sanin)</li> - <li>compilation fixes (Mark Vakoc)</li> - <li>stdin parsing fix (William Brack)</li> - <li>a posteriori DTD validation fixes</li> - <li>xmlReader bug fixes: Walker fixes, python bindings</li> - <li>fixed xmlStopParser() to really stop the parser and errors</li> - <li>always generate line numbers when using the new xmlReadxxx - functions</li> - <li>added XInclude support to the xmlReader interface</li> - <li>implemented XML_PARSE_NONET parser option</li> - <li>DocBook XSLT processing bug fixed</li> - <li>HTML serialization for <p> elements (William Brack and me)</li> - <li>XPointer failure in XInclude are now handled as resource errors</li> - <li>fixed xmllint --html to use the HTML serializer on output (added - --xmlout to implement the previous behaviour of saving it using the XML - serializer)</li> -</ul><h3>2.6.1: Oct 28 2003</h3><ul><li>Mostly bugfixes after the big 2.6.0 changes</li> - <li>Unix compilation patches: libxml.m4 (Patrick Welche), warnings cleanup - (William Brack)</li> - <li>Windows compilation patches (Joachim Bauch, Stephane Bidoul, Igor - Zlatkovic)</li> - <li>xmlWriter bugfix (Alfred Mickautsch)</li> - <li>chvalid.[ch]: couple of fixes from Stephane Bidoul</li> - <li>context reset: error state reset, push parser reset (Graham - Bennett)</li> - <li>context reuse: generate errors if file is not readable</li> - <li>defaulted attributes for element coming from internal entities - (Stephane Bidoul)</li> - <li>Python: tab and spaces mix (William Brack)</li> - <li>Error handler could crash in DTD validation in 2.6.0</li> - <li>xmlReader: do not use the document or element _private field</li> - <li>testSAX.c: avoid a problem with some PIs (Massimo Morara)</li> - <li>general bug fixes: mandatory encoding in text decl, serializing - Document Fragment nodes, xmlSearchNs 2.6.0 problem (Kasimier Buchcik), - XPath errors not reported, slow HTML parsing of large documents.</li> -</ul><h3>2.6.0: Oct 20 2003</h3><ul><li>Major revision release: should be API and ABI compatible but got a lot - of change</li> - <li>Increased the library modularity, far more options can be stripped out, - a --with-minimum configuration will weight around 160KBytes</li> - <li>Use per parser and per document dictionnary, allocate names and small - text nodes from the dictionnary</li> - <li>Switch to a SAX2 like parser rewrote most of the XML parser core, - provides namespace resolution and defaulted attributes, minimize memory - allocations and copies, namespace checking and specific error handling, - immutable buffers, make predefined entities static structures, etc...</li> - <li>rewrote all the error handling in the library, all errors can be - intercepted at a structured level, with precise information - available.</li> - <li>New simpler and more generic XML and HTML parser APIs, allowing to - easilly modify the parsing options and reuse parser context for multiple - consecutive documents.</li> - <li>Similar new APIs for the xmlReader, for options and reuse, provided new - functions to access content as const strings, use them for Python - bindings</li> - <li>a lot of other smaller API improvements: xmlStrPrintf (Aleksey Sanin), - Walker i.e. reader on a document tree based on Alfred Mickautsch code, - make room in nodes for line numbers, reference counting and future PSVI - extensions, generation of character ranges to be checked with faster - algorithm (William), xmlParserMaxDepth (Crutcher Dunnavant), buffer - access</li> - <li>New xmlWriter API provided by Alfred Mickautsch</li> - <li>Schemas: base64 support by Anthony Carrico</li> - <li>Parser<->HTTP integration fix, proper processing of the Mime-Type - and charset information if available.</li> - <li>Relax-NG: bug fixes including the one reported by Martijn Faassen and - zeroOrMore, better error reporting.</li> - <li>Python bindings (Stéphane Bidoul), never use stdout for errors - output</li> - <li>Portability: all the headers have macros for export and calling - convention definitions (Igor Zlatkovic), VMS update (Craig A. Berry), - Windows: threads (Jesse Pelton), Borland compiler (Eric Zurcher, Igor), - Mingw (Igor), typos (Mark Vakoc), beta version (Stephane Bidoul), - warning cleanups on AIX and MIPS compilers (William Brack), BeOS (Marcin - 'Shard' Konicki)</li> - <li>Documentation fixes and README (William Brack), search fix (William), - tutorial updates (John Fleck), namespace docs (Stefan Kost)</li> - <li>Bug fixes: xmlCleanupParser (Dave Beckett), threading uninitialized - mutexes, HTML doctype lowercase, SAX/IO (William), compression detection - and restore (William), attribute declaration in DTDs (William), namespace - on attribute in HTML output (William), input filename (Rob Richards), - namespace DTD validation, xmlReplaceNode (Chris Ryland), I/O callbacks - (Markus Keim), CDATA serialization (Shaun McCance), xmlReader (Peter - Derr), high codepoint charref like &#x10FFFF;, buffer access in push - mode (Justin Fletcher), TLS threads on Windows (Jesse Pelton), XPath bug - (William), xmlCleanupParser (Marc Liyanage), CDATA output (William), HTTP - error handling.</li> - <li>xmllint options: --dtdvalidfpi for Tobias Reif, --sax1 for compat - testing, --nodict for building without tree dictionnary, --nocdata to - replace CDATA by text, --nsclean to remove surperfluous namespace - declarations</li> - <li>added xml2-config --libtool-libs option from Kevin P. Fleming</li> - <li>a lot of profiling and tuning of the code, speedup patch for - xmlSearchNs() by Luca Padovani. The xmlReader should do far less - allocation and it speed should get closer to SAX. Chris Anderson worked - on speeding and cleaning up repetitive checking code.</li> - <li>cleanup of "make tests"</li> - <li>libxml-2.0-uninstalled.pc from Malcolm Tredinnick</li> - <li>deactivated the broken docBook SGML parser code and plugged the XML - parser instead.</li> -</ul><h3>2.5.11: Sep 9 2003</h3><p>A bugfix only release:</p><ul><li>risk of crash in Relax-NG</li> - <li>risk of crash when using multithreaded programs</li> -</ul><h3>2.5.10: Aug 15 2003</h3><p>A bugfixes only release</p><ul><li>Windows Makefiles (William Brack)</li> - <li>UTF-16 support fixes (Mark Itzcovitz)</li> - <li>Makefile and portability (William Brack) automake, Linux alpha, Mingw - on Windows (Mikhail Grushinskiy)</li> - <li>HTML parser (Oliver Stoeneberg)</li> - <li>XInclude performance problem reported by Kevin Ruscoe</li> - <li>XML parser performance problem reported by Grant Goodale</li> - <li>xmlSAXParseDTD() bug fix from Malcolm Tredinnick</li> - <li>and a couple other cleanup</li> -</ul><h3>2.5.9: Aug 9 2003</h3><ul><li>bugfixes: IPv6 portability, xmlHasNsProp (Markus Keim), Windows build - (Wiliam Brake, Jesse Pelton, Igor), Schemas (Peter Sobisch), threading - (Rob Richards), hexBinary type (), UTF-16 BOM (Dodji Seketeli), - xmlReader, Relax-NG schemas compilation, namespace handling, EXSLT (Sean - Griffin), HTML parsing problem (William Brack), DTD validation for mixed - content + namespaces, HTML serialization, library initialization, - progressive HTML parser</li> - <li>better interfaces for Relax-NG error handling (Joachim Bauch, )</li> - <li>adding xmlXIncludeProcessTree() for XInclud'ing in a subtree</li> - <li>doc fixes and improvements (John Fleck)</li> - <li>configure flag for -with-fexceptions when embedding in C++</li> - <li>couple of new UTF-8 helper functions (William Brack)</li> - <li>general encoding cleanup + ISO-8859-x without iconv (Peter Jacobi)</li> - <li>xmlTextReader cleanup + enum for node types (Bjorn Reese)</li> - <li>general compilation/warning cleanup Solaris/HP-UX/... (William - Brack)</li> -</ul><h3>2.5.8: Jul 6 2003</h3><ul><li>bugfixes: XPath, XInclude, file/URI mapping, UTF-16 save (Mark - Itzcovitz), UTF-8 checking, URI saving, error printing (William Brack), - PI related memleak, compilation without schemas or without xpath (Joerg - Schmitz-Linneweber/Garry Pennington), xmlUnlinkNode problem with DTDs, - rpm problem on , i86_64, removed a few compilation problems from 2.5.7, - xmlIOParseDTD, and xmlSAXParseDTD (Malcolm Tredinnick)</li> - <li>portability: DJGPP (MsDos) , OpenVMS (Craig A. Berry)</li> - <li>William Brack fixed multithreading lock problems</li> - <li>IPv6 patch for FTP and HTTP accesses (Archana Shah/Wipro)</li> - <li>Windows fixes (Igor Zlatkovic, Eric Zurcher), threading (Stéphane - Bidoul)</li> - <li>A few W3C Schemas Structure improvements</li> - <li>W3C Schemas Datatype improvements (Charlie Bozeman)</li> - <li>Python bindings for thread globals (Stéphane Bidoul), and method/class - generator</li> - <li>added --nonet option to xmllint</li> - <li>documentation improvements (John Fleck)</li> -</ul><h3>2.5.7: Apr 25 2003</h3><ul><li>Relax-NG: Compiling to regexp and streaming validation on top of the - xmlReader interface, added to xmllint --stream</li> - <li>xmlReader: Expand(), Next() and DOM access glue, bug fixes</li> - <li>Support for large files: RGN validated a 4.5GB instance</li> - <li>Thread support is now configured in by default</li> - <li>Fixes: update of the Trio code (Bjorn), WXS Date and Duration fixes - (Charles Bozeman), DTD and namespaces (Brent Hendricks), HTML push parser - and zero bytes handling, some missing Windows file path conversions, - behaviour of the parser and validator in the presence of "out of memory" - error conditions</li> - <li>extended the API to be able to plug a garbage collecting memory - allocator, added xmlMallocAtomic() and modified the allocations - accordingly.</li> - <li>Performances: removed excessive malloc() calls, speedup of the push and - xmlReader interfaces, removed excessive thread locking</li> - <li>Documentation: man page (John Fleck), xmlReader documentation</li> - <li>Python: adding binding for xmlCatalogAddLocal (Brent M Hendricks)</li> -</ul><h3>2.5.6: Apr 1 2003</h3><ul><li>Fixed W3C XML Schemas datatype, should be compliant now except for - binHex and base64 which are not supported yet.</li> - <li>bug fixes: non-ASCII IDs, HTML output, XInclude on large docs and - XInclude entities handling, encoding detection on external subsets, XML - Schemas bugs and memory leaks, HTML parser (James Bursa)</li> - <li>portability: python/trio (Albert Chin), Sun compiler warnings</li> - <li>documentation: added --relaxng option to xmllint man page (John)</li> - <li>improved error reporting: xml:space, start/end tag mismatches, Relax NG - errors</li> -</ul><h3>2.5.5: Mar 24 2003</h3><ul><li>Lot of fixes on the Relax NG implementation. More testing including - DocBook and TEI examples.</li> - <li>Increased the support for W3C XML Schemas datatype</li> - <li>Several bug fixes in the URI handling layer</li> - <li>Bug fixes: HTML parser, xmlReader, DTD validation, XPath, encoding - conversion, line counting in the parser.</li> - <li>Added support for $XMLLINT_INDENT environment variable, FTP delete</li> - <li>Fixed the RPM spec file name</li> -</ul><h3>2.5.4: Feb 20 2003</h3><ul><li>Conformance testing and lot of fixes on Relax NG and XInclude - implementation</li> - <li>Implementation of XPointer element() scheme</li> - <li>Bug fixes: XML parser, XInclude entities merge, validity checking on - namespaces, - <p>2 serialization bugs, node info generation problems, a DTD regexp - generation problem.</p> - </li> - <li>Portability: windows updates and path canonicalization (Igor)</li> - <li>A few typo fixes (Kjartan Maraas)</li> - <li>Python bindings generator fixes (Stephane Bidoul)</li> -</ul><h3>2.5.3: Feb 10 2003</h3><ul><li>RelaxNG and XML Schemas datatypes improvements, and added a first - version of RelaxNG Python bindings</li> - <li>Fixes: XLink (Sean Chittenden), XInclude (Sean Chittenden), API fix for - serializing namespace nodes, encoding conversion bug, XHTML1 - serialization</li> - <li>Portability fixes: Windows (Igor), AMD 64bits RPM spec file</li> -</ul><h3>2.5.2: Feb 5 2003</h3><ul><li>First implementation of RelaxNG, added --relaxng flag to xmllint</li> - <li>Schemas support now compiled in by default.</li> - <li>Bug fixes: DTD validation, namespace checking, XInclude and entities, - delegateURI in XML Catalogs, HTML parser, XML reader (Stéphane Bidoul), - XPath parser and evaluation, UTF8ToUTF8 serialization, XML reader memory - consumption, HTML parser, HTML serialization in the presence of - namespaces</li> - <li>added an HTML API to check elements and attributes.</li> - <li>Documentation improvement, PDF for the tutorial (John Fleck), doc - patches (Stefan Kost)</li> - <li>Portability fixes: NetBSD (Julio Merino), Windows (Igor Zlatkovic)</li> - <li>Added python bindings for XPointer, contextual error reporting - (Stéphane Bidoul)</li> - <li>URI/file escaping problems (Stefano Zacchiroli)</li> -</ul><h3>2.5.1: Jan 8 2003</h3><ul><li>Fixes a memory leak and configuration/compilation problems in 2.5.0</li> - <li>documentation updates (John)</li> - <li>a couple of XmlTextReader fixes</li> -</ul><h3>2.5.0: Jan 6 2003</h3><ul><li>New <a href="xmlreader.html">XmltextReader interface</a> based on C# - API (with help of Stéphane Bidoul)</li> - <li>Windows: more exports, including the new API (Igor)</li> - <li>XInclude fallback fix</li> - <li>Python: bindings for the new API, packaging (Stéphane Bidoul), - drv_libxml2.py Python xml.sax driver (Stéphane Bidoul), fixes, speedup - and iterators for Python-2.2 (Hannu Krosing)</li> - <li>Tutorial fixes (john Fleck and Niraj Tolia) xmllint man update - (John)</li> - <li>Fix an XML parser bug raised by Vyacheslav Pindyura</li> - <li>Fix for VMS serialization (Nigel Hall) and config (Craig A. Berry)</li> - <li>Entities handling fixes</li> - <li>new API to optionally track node creation and deletion (Lukas - Schroeder)</li> - <li>Added documentation for the XmltextReader interface and some <a href="guidelines.html">XML guidelines</a></li> -</ul><h3>2.4.30: Dec 12 2002</h3><ul><li>2.4.29 broke the python bindings, rereleasing</li> - <li>Improvement/fixes of the XML API generator, and couple of minor code - fixes.</li> -</ul><h3>2.4.29: Dec 11 2002</h3><ul><li>Windows fixes (Igor): Windows CE port, pthread linking, python bindings - (Stéphane Bidoul), Mingw (Magnus Henoch), and export list updates</li> - <li>Fix for prev in python bindings (ERDI Gergo)</li> - <li>Fix for entities handling (Marcus Clarke)</li> - <li>Refactored the XML and HTML dumps to a single code path, fixed XHTML1 - dump</li> - <li>Fix for URI parsing when handling URNs with fragment identifiers</li> - <li>Fix for HTTP URL escaping problem</li> - <li>added an TextXmlReader (C#) like API (work in progress)</li> - <li>Rewrote the API in XML generation script, includes a C parser and saves - more information needed for C# bindings</li> -</ul><h3>2.4.28: Nov 22 2002</h3><ul><li>a couple of python binding fixes</li> - <li>2 bug fixes in the XML push parser</li> - <li>potential memory leak removed (Martin Stoilov)</li> - <li>fix to the configure script for Unix (Dimitri Papadopoulos)</li> - <li>added encoding support for XInclude parse="text"</li> - <li>autodetection of XHTML1 and specific serialization rules added</li> - <li>nasty threading bug fixed (William Brack)</li> -</ul><h3>2.4.27: Nov 17 2002</h3><ul><li>fixes for the Python bindings</li> - <li>a number of bug fixes: SGML catalogs, xmlParseBalancedChunkMemory(), - HTML parser, Schemas (Charles Bozeman), document fragment support - (Christian Glahn), xmlReconciliateNs (Brian Stafford), XPointer, - xmlFreeNode(), xmlSAXParseMemory (Peter Jones), xmlGetNodePath (Petr - Pajas), entities processing</li> - <li>added grep to xmllint --shell</li> - <li>VMS update patch from Craig A. Berry</li> - <li>cleanup of the Windows build with support for more compilers (Igor), - better thread support on Windows</li> - <li>cleanup of Unix Makefiles and spec file</li> - <li>Improvements to the documentation (John Fleck)</li> -</ul><h3>2.4.26: Oct 18 2002</h3><ul><li>Patches for Windows CE port, improvements on Windows paths handling</li> - <li>Fixes to the validation code (DTD and Schemas), xmlNodeGetPath() , - HTML serialization, Namespace compliance, and a number of small - problems</li> -</ul><h3>2.4.25: Sep 26 2002</h3><ul><li>A number of bug fixes: XPath, validation, Python bindings, DOM and - tree, xmlI/O, Html</li> - <li>Serious rewrite of XInclude</li> - <li>Made XML Schemas regexp part of the default build and APIs, small fix - and improvement of the regexp core</li> - <li>Changed the validation code to reuse XML Schemas regexp APIs</li> - <li>Better handling of Windows file paths, improvement of Makefiles (Igor, - Daniel Gehriger, Mark Vakoc)</li> - <li>Improved the python I/O bindings, the tests, added resolver and regexp - APIs</li> - <li>New logos from Marc Liyanage</li> - <li>Tutorial improvements: John Fleck, Christopher Harris</li> - <li>Makefile: Fixes for AMD x86_64 (Mandrake), DESTDIR (Christophe - Merlet)</li> - <li>removal of all stderr/perror use for error reporting</li> - <li>Better error reporting: XPath and DTD validation</li> - <li>update of the trio portability layer (Bjorn Reese)</li> -</ul><p><strong>2.4.24: Aug 22 2002</strong></p><ul><li>XPath fixes (William), xf:escape-uri() (Wesley Terpstra)</li> - <li>Python binding fixes: makefiles (William), generator, rpm build, x86-64 - (fcrozat)</li> - <li>HTML <style> and boolean attributes serializer fixes</li> - <li>C14N improvements by Aleksey</li> - <li>doc cleanups: Rick Jones</li> - <li>Windows compiler makefile updates: Igor and Elizabeth Barham</li> - <li>XInclude: implementation of fallback and xml:base fixup added</li> -</ul><h3>2.4.23: July 6 2002</h3><ul><li>performances patches: Peter Jacobi</li> - <li>c14n fixes, testsuite and performances: Aleksey Sanin</li> - <li>added xmlDocFormatDump: Chema Celorio</li> - <li>new tutorial: John Fleck</li> - <li>new hash functions and performances: Sander Vesik, portability fix from - Peter Jacobi</li> - <li>a number of bug fixes: XPath (William Brack, Richard Jinks), XML and - HTML parsers, ID lookup function</li> - <li>removal of all remaining sprintf: Aleksey Sanin</li> -</ul><h3>2.4.22: May 27 2002</h3><ul><li>a number of bug fixes: configure scripts, base handling, parser, memory - usage, HTML parser, XPath, documentation (Christian Cornelssen), - indentation, URI parsing</li> - <li>Optimizations for XMLSec, fixing and making public some of the network - protocol handlers (Aleksey)</li> - <li>performance patch from Gary Pennington</li> - <li>Charles Bozeman provided date and time support for XML Schemas - datatypes</li> -</ul><h3>2.4.21: Apr 29 2002</h3><p>This release is both a bug fix release and also contains the early XML -Schemas <a href="http://www.w3.org/TR/xmlschema-1/">structures</a> and <a href="http://www.w3.org/TR/xmlschema-2/">datatypes</a> code, beware, all -interfaces are likely to change, there is huge holes, it is clearly a work in -progress and don't even think of putting this code in a production system, -it's actually not compiled in by default. The real fixes are:</p><ul><li>a couple of bugs or limitations introduced in 2.4.20</li> - <li>patches for Borland C++ and MSC by Igor</li> - <li>some fixes on XPath strings and conformance patches by Richard - Jinks</li> - <li>patch from Aleksey for the ExcC14N specification</li> - <li>OSF/1 bug fix by Bjorn</li> -</ul><h3>2.4.20: Apr 15 2002</h3><ul><li>bug fixes: file descriptor leak, XPath, HTML output, DTD validation</li> - <li>XPath conformance testing by Richard Jinks</li> - <li>Portability fixes: Solaris, MPE/iX, Windows, OSF/1, python bindings, - libxml.m4</li> -</ul><h3>2.4.19: Mar 25 2002</h3><ul><li>bug fixes: half a dozen XPath bugs, Validation, ISO-Latin to UTF8 - encoder</li> - <li>portability fixes in the HTTP code</li> - <li>memory allocation checks using valgrind, and profiling tests</li> - <li>revamp of the Windows build and Makefiles</li> -</ul><h3>2.4.18: Mar 18 2002</h3><ul><li>bug fixes: tree, SAX, canonicalization, validation, portability, - XPath</li> - <li>removed the --with-buffer option it was becoming unmaintainable</li> - <li>serious cleanup of the Python makefiles</li> - <li>speedup patch to XPath very effective for DocBook stylesheets</li> - <li>Fixes for Windows build, cleanup of the documentation</li> -</ul><h3>2.4.17: Mar 8 2002</h3><ul><li>a lot of bug fixes, including "namespace nodes have no parents in - XPath"</li> - <li>fixed/improved the Python wrappers, added more examples and more - regression tests, XPath extension functions can now return node-sets</li> - <li>added the XML Canonicalization support from Aleksey Sanin</li> -</ul><h3>2.4.16: Feb 20 2002</h3><ul><li>a lot of bug fixes, most of them were triggered by the XML Testsuite - from OASIS and W3C. Compliance has been significantly improved.</li> - <li>a couple of portability fixes too.</li> -</ul><h3>2.4.15: Feb 11 2002</h3><ul><li>Fixed the Makefiles, especially the python module ones</li> - <li>A few bug fixes and cleanup</li> - <li>Includes cleanup</li> -</ul><h3>2.4.14: Feb 8 2002</h3><ul><li>Change of License to the <a href="http://www.opensource.org/licenses/mit-license.html">MIT - License</a> basically for integration in XFree86 codebase, and removing - confusion around the previous dual-licensing</li> - <li>added Python bindings, beta software but should already be quite - complete</li> - <li>a large number of fixes and cleanups, especially for all tree - manipulations</li> - <li>cleanup of the headers, generation of a reference API definition in - XML</li> -</ul><h3>2.4.13: Jan 14 2002</h3><ul><li>update of the documentation: John Fleck and Charlie Bozeman</li> - <li>cleanup of timing code from Justin Fletcher</li> - <li>fixes for Windows and initial thread support on Win32: Igor and Serguei - Narojnyi</li> - <li>Cygwin patch from Robert Collins</li> - <li>added xmlSetEntityReferenceFunc() for Keith Isdale work on xsldbg</li> -</ul><h3>2.4.12: Dec 7 2001</h3><ul><li>a few bug fixes: thread (Gary Pennington), xmllint (Geert Kloosterman), - XML parser (Robin Berjon), XPointer (Danny Jamshy), I/O cleanups - (robert)</li> - <li>Eric Lavigne contributed project files for MacOS</li> - <li>some makefiles cleanups</li> -</ul><h3>2.4.11: Nov 26 2001</h3><ul><li>fixed a couple of errors in the includes, fixed a few bugs, some code - cleanups</li> - <li>xmllint man pages improvement by Heiko Rupp</li> - <li>updated VMS build instructions from John A Fotheringham</li> - <li>Windows Makefiles updates from Igor</li> -</ul><h3>2.4.10: Nov 10 2001</h3><ul><li>URI escaping fix (Joel Young)</li> - <li>added xmlGetNodePath() (for paths or XPointers generation)</li> - <li>Fixes namespace handling problems when using DTD and validation</li> - <li>improvements on xmllint: Morus Walter patches for --format and - --encode, Stefan Kost and Heiko Rupp improvements on the --shell</li> - <li>fixes for xmlcatalog linking pointed by Weiqi Gao</li> - <li>fixes to the HTML parser</li> -</ul><h3>2.4.9: Nov 6 2001</h3><ul><li>fixes more catalog bugs</li> - <li>avoid a compilation problem, improve xmlGetLineNo()</li> -</ul><h3>2.4.8: Nov 4 2001</h3><ul><li>fixed SGML catalogs broken in previous release, updated xmlcatalog - tool</li> - <li>fixed a compile errors and some includes troubles.</li> -</ul><h3>2.4.7: Oct 30 2001</h3><ul><li>exported some debugging interfaces</li> - <li>serious rewrite of the catalog code</li> - <li>integrated Gary Pennington thread safety patch, added configure option - and regression tests</li> - <li>removed an HTML parser bug</li> - <li>fixed a couple of potentially serious validation bugs</li> - <li>integrated the SGML DocBook support in xmllint</li> - <li>changed the nanoftp anonymous login passwd</li> - <li>some I/O cleanup and a couple of interfaces for Perl wrapper</li> - <li>general bug fixes</li> - <li>updated xmllint man page by John Fleck</li> - <li>some VMS and Windows updates</li> -</ul><h3>2.4.6: Oct 10 2001</h3><ul><li>added an updated man pages by John Fleck</li> - <li>portability and configure fixes</li> - <li>an infinite loop on the HTML parser was removed (William)</li> - <li>Windows makefile patches from Igor</li> - <li>fixed half a dozen bugs reported for libxml or libxslt</li> - <li>updated xmlcatalog to be able to modify SGML super catalogs</li> -</ul><h3>2.4.5: Sep 14 2001</h3><ul><li>Remove a few annoying bugs in 2.4.4</li> - <li>forces the HTML serializer to output decimal charrefs since some - version of Netscape can't handle hexadecimal ones</li> -</ul><h3>1.8.16: Sep 14 2001</h3><ul><li>maintenance release of the old libxml1 branch, couple of bug and - portability fixes</li> -</ul><h3>2.4.4: Sep 12 2001</h3><ul><li>added --convert to xmlcatalog, bug fixes and cleanups of XML - Catalog</li> - <li>a few bug fixes and some portability changes</li> - <li>some documentation cleanups</li> -</ul><h3>2.4.3: Aug 23 2001</h3><ul><li>XML Catalog support see the doc</li> - <li>New NaN/Infinity floating point code</li> - <li>A few bug fixes</li> -</ul><h3>2.4.2: Aug 15 2001</h3><ul><li>adds xmlLineNumbersDefault() to control line number generation</li> - <li>lot of bug fixes</li> - <li>the Microsoft MSC projects files should now be up to date</li> - <li>inheritance of namespaces from DTD defaulted attributes</li> - <li>fixes a serious potential security bug</li> - <li>added a --format option to xmllint</li> -</ul><h3>2.4.1: July 24 2001</h3><ul><li>possibility to keep line numbers in the tree</li> - <li>some computation NaN fixes</li> - <li>extension of the XPath API</li> - <li>cleanup for alpha and ia64 targets</li> - <li>patch to allow saving through HTTP PUT or POST</li> -</ul><h3>2.4.0: July 10 2001</h3><ul><li>Fixed a few bugs in XPath, validation, and tree handling.</li> - <li>Fixed XML Base implementation, added a couple of examples to the - regression tests</li> - <li>A bit of cleanup</li> -</ul><h3>2.3.14: July 5 2001</h3><ul><li>fixed some entities problems and reduce memory requirement when - substituting them</li> - <li>lots of improvements in the XPath queries interpreter can be - substantially faster</li> - <li>Makefiles and configure cleanups</li> - <li>Fixes to XPath variable eval, and compare on empty node set</li> - <li>HTML tag closing bug fixed</li> - <li>Fixed an URI reference computation problem when validating</li> -</ul><h3>2.3.13: June 28 2001</h3><ul><li>2.3.12 configure.in was broken as well as the push mode XML parser</li> - <li>a few more fixes for compilation on Windows MSC by Yon Derek</li> -</ul><h3>1.8.14: June 28 2001</h3><ul><li>Zbigniew Chyla gave a patch to use the old XML parser in push mode</li> - <li>Small Makefile fix</li> -</ul><h3>2.3.12: June 26 2001</h3><ul><li>lots of cleanup</li> - <li>a couple of validation fix</li> - <li>fixed line number counting</li> - <li>fixed serious problems in the XInclude processing</li> - <li>added support for UTF8 BOM at beginning of entities</li> - <li>fixed a strange gcc optimizer bugs in xpath handling of float, gcc-3.0 - miscompile uri.c (William), Thomas Leitner provided a fix for the - optimizer on Tru64</li> - <li>incorporated Yon Derek and Igor Zlatkovic fixes and improvements for - compilation on Windows MSC</li> - <li>update of libxml-doc.el (Felix Natter)</li> - <li>fixed 2 bugs in URI normalization code</li> -</ul><h3>2.3.11: June 17 2001</h3><ul><li>updates to trio, Makefiles and configure should fix some portability - problems (alpha)</li> - <li>fixed some HTML serialization problems (pre, script, and block/inline - handling), added encoding aware APIs, cleanup of this code</li> - <li>added xmlHasNsProp()</li> - <li>implemented a specific PI for encoding support in the DocBook SGML - parser</li> - <li>some XPath fixes (-Infinity, / as a function parameter and namespaces - node selection)</li> - <li>fixed a performance problem and an error in the validation code</li> - <li>fixed XInclude routine to implement the recursive behaviour</li> - <li>fixed xmlFreeNode problem when libxml is included statically twice</li> - <li>added --version to xmllint for bug reports</li> -</ul><h3>2.3.10: June 1 2001</h3><ul><li>fixed the SGML catalog support</li> - <li>a number of reported bugs got fixed, in XPath, iconv detection, - XInclude processing</li> - <li>XPath string function should now handle unicode correctly</li> -</ul><h3>2.3.9: May 19 2001</h3><p>Lots of bugfixes, and added a basic SGML catalog support:</p><ul><li>HTML push bugfix #54891 and another patch from Jonas Borgström</li> - <li>some serious speed optimization again</li> - <li>some documentation cleanups</li> - <li>trying to get better linking on Solaris (-R)</li> - <li>XPath API cleanup from Thomas Broyer</li> - <li>Validation bug fixed #54631, added a patch from Gary Pennington, fixed - xmlValidGetValidElements()</li> - <li>Added an INSTALL file</li> - <li>Attribute removal added to API: #54433</li> - <li>added a basic support for SGML catalogs</li> - <li>fixed xmlKeepBlanksDefault(0) API</li> - <li>bugfix in xmlNodeGetLang()</li> - <li>fixed a small configure portability problem</li> - <li>fixed an inversion of SYSTEM and PUBLIC identifier in HTML document</li> -</ul><h3>1.8.13: May 14 2001</h3><ul><li>bugfixes release of the old libxml1 branch used by Gnome</li> -</ul><h3>2.3.8: May 3 2001</h3><ul><li>Integrated an SGML DocBook parser for the Gnome project</li> - <li>Fixed a few things in the HTML parser</li> - <li>Fixed some XPath bugs raised by XSLT use, tried to fix the floating - point portability issue</li> - <li>Speed improvement (8M/s for SAX, 3M/s for DOM, 1.5M/s for - DOM+validation using the XML REC as input and a 700MHz celeron).</li> - <li>incorporated more Windows cleanup</li> - <li>added xmlSaveFormatFile()</li> - <li>fixed problems in copying nodes with entities references (gdome)</li> - <li>removed some troubles surrounding the new validation module</li> -</ul><h3>2.3.7: April 22 2001</h3><ul><li>lots of small bug fixes, corrected XPointer</li> - <li>Non deterministic content model validation support</li> - <li>added xmlDocCopyNode for gdome2</li> - <li>revamped the way the HTML parser handles end of tags</li> - <li>XPath: corrections of namespaces support and number formatting</li> - <li>Windows: Igor Zlatkovic patches for MSC compilation</li> - <li>HTML output fixes from P C Chow and William M. Brack</li> - <li>Improved validation speed sensible for DocBook</li> - <li>fixed a big bug with ID declared in external parsed entities</li> - <li>portability fixes, update of Trio from Bjorn Reese</li> -</ul><h3>2.3.6: April 8 2001</h3><ul><li>Code cleanup using extreme gcc compiler warning options, found and - cleared half a dozen potential problem</li> - <li>the Eazel team found an XML parser bug</li> - <li>cleaned up the user of some of the string formatting function. used the - trio library code to provide the one needed when the platform is missing - them</li> - <li>xpath: removed a memory leak and fixed the predicate evaluation - problem, extended the testsuite and cleaned up the result. XPointer seems - broken ...</li> -</ul><h3>2.3.5: Mar 23 2001</h3><ul><li>Biggest change is separate parsing and evaluation of XPath expressions, - there is some new APIs for this too</li> - <li>included a number of bug fixes(XML push parser, 51876, notations, - 52299)</li> - <li>Fixed some portability issues</li> -</ul><h3>2.3.4: Mar 10 2001</h3><ul><li>Fixed bugs #51860 and #51861</li> - <li>Added a global variable xmlDefaultBufferSize to allow default buffer - size to be application tunable.</li> - <li>Some cleanup in the validation code, still a bug left and this part - should probably be rewritten to support ambiguous content model :-\</li> - <li>Fix a couple of serious bugs introduced or raised by changes in 2.3.3 - parser</li> - <li>Fixed another bug in xmlNodeGetContent()</li> - <li>Bjorn fixed XPath node collection and Number formatting</li> - <li>Fixed a loop reported in the HTML parsing</li> - <li>blank space are reported even if the Dtd content model proves that they - are formatting spaces, this is for XML conformance</li> -</ul><h3>2.3.3: Mar 1 2001</h3><ul><li>small change in XPath for XSLT</li> - <li>documentation cleanups</li> - <li>fix in validation by Gary Pennington</li> - <li>serious parsing performances improvements</li> -</ul><h3>2.3.2: Feb 24 2001</h3><ul><li>chasing XPath bugs, found a bunch, completed some TODO</li> - <li>fixed a Dtd parsing bug</li> - <li>fixed a bug in xmlNodeGetContent</li> - <li>ID/IDREF support partly rewritten by Gary Pennington</li> -</ul><h3>2.3.1: Feb 15 2001</h3><ul><li>some XPath and HTML bug fixes for XSLT</li> - <li>small extension of the hash table interfaces for DOM gdome2 - implementation</li> - <li>A few bug fixes</li> -</ul><h3>2.3.0: Feb 8 2001 (2.2.12 was on 25 Jan but I didn't kept track)</h3><ul><li>Lots of XPath bug fixes</li> - <li>Add a mode with Dtd lookup but without validation error reporting for - XSLT</li> - <li>Add support for text node without escaping (XSLT)</li> - <li>bug fixes for xmlCheckFilename</li> - <li>validation code bug fixes from Gary Pennington</li> - <li>Patch from Paul D. Smith correcting URI path normalization</li> - <li>Patch to allow simultaneous install of libxml-devel and - libxml2-devel</li> - <li>the example Makefile is now fixed</li> - <li>added HTML to the RPM packages</li> - <li>tree copying bugfixes</li> - <li>updates to Windows makefiles</li> - <li>optimization patch from Bjorn Reese</li> -</ul><h3>2.2.11: Jan 4 2001</h3><ul><li>bunch of bug fixes (memory I/O, xpath, ftp/http, ...)</li> - <li>added htmlHandleOmittedElem()</li> - <li>Applied Bjorn Reese's IPV6 first patch</li> - <li>Applied Paul D. Smith patches for validation of XInclude results</li> - <li>added XPointer xmlns() new scheme support</li> -</ul><h3>2.2.10: Nov 25 2000</h3><ul><li>Fix the Windows problems of 2.2.8</li> - <li>integrate OpenVMS patches</li> - <li>better handling of some nasty HTML input</li> - <li>Improved the XPointer implementation</li> - <li>integrate a number of provided patches</li> -</ul><h3>2.2.9: Nov 25 2000</h3><ul><li>erroneous release :-(</li> -</ul><h3>2.2.8: Nov 13 2000</h3><ul><li>First version of <a href="http://www.w3.org/TR/xinclude">XInclude</a> - support</li> - <li>Patch in conditional section handling</li> - <li>updated MS compiler project</li> - <li>fixed some XPath problems</li> - <li>added an URI escaping function</li> - <li>some other bug fixes</li> -</ul><h3>2.2.7: Oct 31 2000</h3><ul><li>added message redirection</li> - <li>XPath improvements (thanks TOM !)</li> - <li>xmlIOParseDTD() added</li> - <li>various small fixes in the HTML, URI, HTTP and XPointer support</li> - <li>some cleanup of the Makefile, autoconf and the distribution content</li> -</ul><h3>2.2.6: Oct 25 2000:</h3><ul><li>Added an hash table module, migrated a number of internal structure to - those</li> - <li>Fixed a posteriori validation problems</li> - <li>HTTP module cleanups</li> - <li>HTML parser improvements (tag errors, script/style handling, attribute - normalization)</li> - <li>coalescing of adjacent text nodes</li> - <li>couple of XPath bug fixes, exported the internal API</li> -</ul><h3>2.2.5: Oct 15 2000:</h3><ul><li>XPointer implementation and testsuite</li> - <li>Lot of XPath fixes, added variable and functions registration, more - tests</li> - <li>Portability fixes, lots of enhancements toward an easy Windows build - and release</li> - <li>Late validation fixes</li> - <li>Integrated a lot of contributed patches</li> - <li>added memory management docs</li> - <li>a performance problem when using large buffer seems fixed</li> -</ul><h3>2.2.4: Oct 1 2000:</h3><ul><li>main XPath problem fixed</li> - <li>Integrated portability patches for Windows</li> - <li>Serious bug fixes on the URI and HTML code</li> -</ul><h3>2.2.3: Sep 17 2000</h3><ul><li>bug fixes</li> - <li>cleanup of entity handling code</li> - <li>overall review of all loops in the parsers, all sprintf usage has been - checked too</li> - <li>Far better handling of larges Dtd. Validating against DocBook XML Dtd - works smoothly now.</li> -</ul><h3>1.8.10: Sep 6 2000</h3><ul><li>bug fix release for some Gnome projects</li> -</ul><h3>2.2.2: August 12 2000</h3><ul><li>mostly bug fixes</li> - <li>started adding routines to access xml parser context options</li> -</ul><h3>2.2.1: July 21 2000</h3><ul><li>a purely bug fixes release</li> - <li>fixed an encoding support problem when parsing from a memory block</li> - <li>fixed a DOCTYPE parsing problem</li> - <li>removed a bug in the function allowing to override the memory - allocation routines</li> -</ul><h3>2.2.0: July 14 2000</h3><ul><li>applied a lot of portability fixes</li> - <li>better encoding support/cleanup and saving (content is now always - encoded in UTF-8)</li> - <li>the HTML parser now correctly handles encodings</li> - <li>added xmlHasProp()</li> - <li>fixed a serious problem with &#38;</li> - <li>propagated the fix to FTP client</li> - <li>cleanup, bugfixes, etc ...</li> - <li>Added a page about <a href="encoding.html">libxml Internationalization - support</a></li> -</ul><h3>1.8.9: July 9 2000</h3><ul><li>fixed the spec the RPMs should be better</li> - <li>fixed a serious bug in the FTP implementation, released 1.8.9 to solve - rpmfind users problem</li> -</ul><h3>2.1.1: July 1 2000</h3><ul><li>fixes a couple of bugs in the 2.1.0 packaging</li> - <li>improvements on the HTML parser</li> -</ul><h3>2.1.0 and 1.8.8: June 29 2000</h3><ul><li>1.8.8 is mostly a commodity package for upgrading to libxml2 according - to <a href="upgrade.html">new instructions</a>. It fixes a nasty problem - about &#38; charref parsing</li> - <li>2.1.0 also ease the upgrade from libxml v1 to the recent version. it - also contains numerous fixes and enhancements: - <ul><li>added xmlStopParser() to stop parsing</li> - <li>improved a lot parsing speed when there is large CDATA blocs</li> - <li>includes XPath patches provided by Picdar Technology</li> - <li>tried to fix as much as possible DTD validation and namespace - related problems</li> - <li>output to a given encoding has been added/tested</li> - <li>lot of various fixes</li> - </ul></li> -</ul><h3>2.0.0: Apr 12 2000</h3><ul><li>First public release of libxml2. If you are using libxml, it's a good - idea to check the 1.x to 2.x upgrade instructions. NOTE: while initially - scheduled for Apr 3 the release occurred only on Apr 12 due to massive - workload.</li> - <li>The include are now located under $prefix/include/libxml (instead of - $prefix/include/gnome-xml), they also are referenced by - <pre>#include <libxml/xxx.h></pre> - <p>instead of</p> - <pre>#include "xxx.h"</pre> - </li> - <li>a new URI module for parsing URIs and following strictly RFC 2396</li> - <li>the memory allocation routines used by libxml can now be overloaded - dynamically by using xmlMemSetup()</li> - <li>The previously CVS only tool tester has been renamed - <strong>xmllint</strong> and is now installed as part of the libxml2 - package</li> - <li>The I/O interface has been revamped. There is now ways to plug in - specific I/O modules, either at the URI scheme detection level using - xmlRegisterInputCallbacks() or by passing I/O functions when creating a - parser context using xmlCreateIOParserCtxt()</li> - <li>there is a C preprocessor macro LIBXML_VERSION providing the version - number of the libxml module in use</li> - <li>a number of optional features of libxml can now be excluded at - configure time (FTP/HTTP/HTML/XPath/Debug)</li> -</ul><h3>2.0.0beta: Mar 14 2000</h3><ul><li>This is a first Beta release of libxml version 2</li> - <li>It's available only from<a href="ftp://xmlsoft.org/libxml2/">xmlsoft.org - FTP</a>, it's packaged as libxml2-2.0.0beta and available as tar and - RPMs</li> - <li>This version is now the head in the Gnome CVS base, the old one is - available under the tag LIB_XML_1_X</li> - <li>This includes a very large set of changes. From a programmatic point - of view applications should not have to be modified too much, check the - <a href="upgrade.html">upgrade page</a></li> - <li>Some interfaces may changes (especially a bit about encoding).</li> - <li>the updates includes: - <ul><li>fix I18N support. ISO-Latin-x/UTF-8/UTF-16 (nearly) seems correctly - handled now</li> - <li>Better handling of entities, especially well-formedness checking - and proper PEref extensions in external subsets</li> - <li>DTD conditional sections</li> - <li>Validation now correctly handle entities content</li> - <li><a href="http://rpmfind.net/tools/gdome/messages/0039.html">change - structures to accommodate DOM</a></li> - </ul></li> - <li>Serious progress were made toward compliance, <a href="conf/result.html">here are the result of the test</a> against the - OASIS testsuite (except the Japanese tests since I don't support that - encoding yet). This URL is rebuilt every couple of hours using the CVS - head version.</li> -</ul><h3>1.8.7: Mar 6 2000</h3><ul><li>This is a bug fix release:</li> - <li>It is possible to disable the ignorable blanks heuristic used by - libxml-1.x, a new function xmlKeepBlanksDefault(0) will allow this. Note - that for adherence to XML spec, this behaviour will be disabled by - default in 2.x . The same function will allow to keep compatibility for - old code.</li> - <li>Blanks in <a> </a> constructs are not ignored anymore, - avoiding heuristic is really the Right Way :-\</li> - <li>The unchecked use of snprintf which was breaking libxml-1.8.6 - compilation on some platforms has been fixed</li> - <li>nanoftp.c nanohttp.c: Fixed '#' and '?' stripping when processing - URIs</li> -</ul><h3>1.8.6: Jan 31 2000</h3><ul><li>added a nanoFTP transport module, debugged until the new version of <a href="http://rpmfind.net/linux/rpm2html/rpmfind.html">rpmfind</a> can use - it without troubles</li> -</ul><h3>1.8.5: Jan 21 2000</h3><ul><li>adding APIs to parse a well balanced chunk of XML (production <a href="http://www.w3.org/TR/REC-xml#NT-content">[43] content</a> of the - XML spec)</li> - <li>fixed a hideous bug in xmlGetProp pointed by Rune.Djurhuus@fast.no</li> - <li>Jody Goldberg <jgoldberg@home.com> provided another patch trying - to solve the zlib checks problems</li> - <li>The current state in gnome CVS base is expected to ship as 1.8.5 with - gnumeric soon</li> -</ul><h3>1.8.4: Jan 13 2000</h3><ul><li>bug fixes, reintroduced xmlNewGlobalNs(), fixed xmlNewNs()</li> - <li>all exit() call should have been removed from libxml</li> - <li>fixed a problem with INCLUDE_WINSOCK on WIN32 platform</li> - <li>added newDocFragment()</li> -</ul><h3>1.8.3: Jan 5 2000</h3><ul><li>a Push interface for the XML and HTML parsers</li> - <li>a shell-like interface to the document tree (try tester --shell :-)</li> - <li>lots of bug fixes and improvement added over XMas holidays</li> - <li>fixed the DTD parsing code to work with the xhtml DTD</li> - <li>added xmlRemoveProp(), xmlRemoveID() and xmlRemoveRef()</li> - <li>Fixed bugs in xmlNewNs()</li> - <li>External entity loading code has been revamped, now it uses - xmlLoadExternalEntity(), some fix on entities processing were added</li> - <li>cleaned up WIN32 includes of socket stuff</li> -</ul><h3>1.8.2: Dec 21 1999</h3><ul><li>I got another problem with includes and C++, I hope this issue is fixed - for good this time</li> - <li>Added a few tree modification functions: xmlReplaceNode, - xmlAddPrevSibling, xmlAddNextSibling, xmlNodeSetName and - xmlDocSetRootElement</li> - <li>Tried to improve the HTML output with help from <a href="mailto:clahey@umich.edu">Chris Lahey</a></li> -</ul><h3>1.8.1: Dec 18 1999</h3><ul><li>various patches to avoid troubles when using libxml with C++ compilers - the "namespace" keyword and C escaping in include files</li> - <li>a problem in one of the core macros IS_CHAR was corrected</li> - <li>fixed a bug introduced in 1.8.0 breaking default namespace processing, - and more specifically the Dia application</li> - <li>fixed a posteriori validation (validation after parsing, or by using a - Dtd not specified in the original document)</li> - <li>fixed a bug in</li> -</ul><h3>1.8.0: Dec 12 1999</h3><ul><li>cleanup, especially memory wise</li> - <li>the parser should be more reliable, especially the HTML one, it should - not crash, whatever the input !</li> - <li>Integrated various patches, especially a speedup improvement for large - dataset from <a href="mailto:cnygard@bellatlantic.net">Carl Nygard</a>, - configure with --with-buffers to enable them.</li> - <li>attribute normalization, oops should have been added long ago !</li> - <li>attributes defaulted from DTDs should be available, xmlSetProp() now - does entities escaping by default.</li> -</ul><h3>1.7.4: Oct 25 1999</h3><ul><li>Lots of HTML improvement</li> - <li>Fixed some errors when saving both XML and HTML</li> - <li>More examples, the regression tests should now look clean</li> - <li>Fixed a bug with contiguous charref</li> -</ul><h3>1.7.3: Sep 29 1999</h3><ul><li>portability problems fixed</li> - <li>snprintf was used unconditionally, leading to link problems on system - were it's not available, fixed</li> -</ul><h3>1.7.1: Sep 24 1999</h3><ul><li>The basic type for strings manipulated by libxml has been renamed in - 1.7.1 from <strong>CHAR</strong> to <strong>xmlChar</strong>. The reason - is that CHAR was conflicting with a predefined type on Windows. However - on non WIN32 environment, compatibility is provided by the way of a - <strong>#define </strong>.</li> - <li>Changed another error : the use of a structure field called errno, and - leading to troubles on platforms where it's a macro</li> -</ul><h3>1.7.0: Sep 23 1999</h3><ul><li>Added the ability to fetch remote DTD or parsed entities, see the <a href="html/libxml-nanohttp.html">nanohttp</a> module.</li> - <li>Added an errno to report errors by another mean than a simple printf - like callback</li> - <li>Finished ID/IDREF support and checking when validation</li> - <li>Serious memory leaks fixed (there is now a <a href="html/libxml-xmlmemory.html">memory wrapper</a> module)</li> - <li>Improvement of <a href="http://www.w3.org/TR/xpath">XPath</a> - implementation</li> - <li>Added an HTML parser front-end</li> -</ul><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/python.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/python.html deleted file mode 100644 index 5810eb21..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/python.html +++ /dev/null @@ -1,252 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Python and bindings</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Python and bindings</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>There are a number of language bindings and wrappers available for -libxml2, the list below is not exhaustive. Please contact the <a href="http://mail.gnome.org/mailman/listinfo/xml-bindings">xml-bindings@gnome.org</a> -(<a href="http://mail.gnome.org/archives/xml-bindings/">archives</a>) in -order to get updates to this list or to discuss the specific topic of libxml2 -or libxslt wrappers or bindings:</p><ul><li><a href="http://libxmlplusplus.sourceforge.net/">Libxml++</a> seems the - most up-to-date C++ bindings for libxml2, check the <a href="http://libxmlplusplus.sourceforge.net/reference/html/hierarchy.html">documentation</a> - and the <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/libxmlplusplus/libxml%2b%2b/examples/">examples</a>.</li> - <li>There is another <a href="http://libgdome-cpp.berlios.de/">C++ wrapper - based on the gdome2 bindings</a> maintained by Tobias Peters.</li> - <li>and a third C++ wrapper by Peter Jones <pjones@pmade.org> - <p>Website: <a href="http://pmade.org/pjones/software/xmlwrapp/">http://pmade.org/pjones/software/xmlwrapp/</a></p> - </li> - <li>XML::LibXML <a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl - bindings</a> are available on CPAN, as well as XML::LibXSLT - <a href="http://cpan.uwinnipeg.ca/dist/XML-LibXSLT">Perl libxslt - bindings</a>.</li> - <li>If you're interested into scripting XML processing, have a look at <a href="http://xsh.sourceforge.net/">XSH</a> an XML editing shell based on - Libxml2 Perl bindings.</li> - <li><a href="mailto:dkuhlman@cutter.rexx.com">Dave Kuhlman</a> provides an - earlier version of the libxml/libxslt <a href="http://www.rexx.com/~dkuhlman">wrappers for Python</a>.</li> - <li>Gopal.V and Peter Minten develop <a href="http://savannah.gnu.org/projects/libxmlsharp">libxml#</a>, a set of - C# libxml2 bindings.</li> - <li>Petr Kozelka provides <a href="http://sourceforge.net/projects/libxml2-pas">Pascal units to glue - libxml2</a> with Kylix, Delphi and other Pascal compilers.</li> - <li>Uwe Fechner also provides <a href="http://sourceforge.net/projects/idom2-pas/">idom2</a>, a DOM2 - implementation for Kylix2/D5/D6 from Borland.</li> - <li>There is <a href="http://libxml.rubyforge.org/">bindings for Ruby</a> - and libxml2 bindings are also available in Ruby through the <a href="http://libgdome-ruby.berlios.de/">libgdome-ruby</a> module - maintained by Tobias Peters.</li> - <li>Steve Ball and contributors maintains <a href="http://tclxml.sourceforge.net/">libxml2 and libxslt bindings for - Tcl</a>.</li> - <li>libxml2 and libxslt are the default XML libraries for PHP5.</li> - <li><a href="http://savannah.gnu.org/projects/classpathx/">LibxmlJ</a> is - an effort to create a 100% JAXP-compatible Java wrapper for libxml2 and - libxslt as part of GNU ClasspathX project.</li> - <li>Patrick McPhee provides Rexx bindings fof libxml2 and libxslt, look for - <a href="http://www.interlog.com/~ptjm/software.html">RexxXML</a>.</li> - <li><a href="http://www.satimage.fr/software/en/xml_suite.html">Satimage</a> - provides <a href="http://www.satimage.fr/software/en/downloads_osaxen.html">XMLLib - osax</a>. This is an osax for Mac OS X with a set of commands to - implement in AppleScript the XML DOM, XPATH and XSLT. Also includes - commands for Property-lists (Apple's fast lookup table XML format.)</li> - <li>Francesco Montorsi developped <a href="https://sourceforge.net/project/showfiles.php?group_id=51305&package_id=45182">wxXml2</a> - wrappers that interface libxml2, allowing wxWidgets applications to - load/save/edit XML instances.</li> -</ul><p>The distribution includes a set of Python bindings, which are guaranteed -to be maintained as part of the library in the future, though the Python -interface have not yet reached the completeness of the C API.</p><p>Note that some of the Python purist dislike the default set of Python -bindings, rather than complaining I suggest they have a look at <a href="http://codespeak.net/lxml/">lxml the more pythonic bindings for libxml2 -and libxslt</a> and <a href="http://codespeak.net/mailman/listinfo/lxml-dev">help Martijn -Faassen</a> complete those.</p><p><a href="mailto:stephane.bidoul@softwareag.com">Stéphane Bidoul</a> -maintains <a href="http://users.skynet.be/sbi/libxml-python/">a Windows port -of the Python bindings</a>.</p><p>Note to people interested in building bindings, the API is formalized as -<a href="libxml2-api.xml">an XML API description file</a> which allows to -automate a large part of the Python bindings, this includes function -descriptions, enums, structures, typedefs, etc... The Python script used to -build the bindings is python/generator.py in the source distribution.</p><p>To install the Python bindings there are 2 options:</p><ul><li>If you use an RPM based distribution, simply install the <a href="http://rpmfind.net/linux/rpm2html/search.php?query=libxml2-python">libxml2-python - RPM</a> (and if needed the <a href="http://rpmfind.net/linux/rpm2html/search.php?query=libxslt-python">libxslt-python - RPM</a>).</li> - <li>Otherwise use the <a href="ftp://xmlsoft.org/libxml2/python/">libxml2-python - module distribution</a> corresponding to your installed version of - libxml2 and libxslt. Note that to install it you will need both libxml2 - and libxslt installed and run "python setup.py build install" in the - module tree.</li> -</ul><p>The distribution includes a set of examples and regression tests for the -python bindings in the <code>python/tests</code> directory. Here are some -excerpts from those tests:</p><h3>tst.py:</h3><p>This is a basic test of the file interface and DOM navigation:</p><pre>import libxml2, sys - -doc = libxml2.parseFile("tst.xml") -if doc.name != "tst.xml": - print "doc.name failed" - sys.exit(1) -root = doc.children -if root.name != "doc": - print "root.name failed" - sys.exit(1) -child = root.children -if child.name != "foo": - print "child.name failed" - sys.exit(1) -doc.freeDoc()</pre><p>The Python module is called libxml2; parseFile is the equivalent of -xmlParseFile (most of the bindings are automatically generated, and the xml -prefix is removed and the casing convention are kept). All node seen at the -binding level share the same subset of accessors:</p><ul><li><code>name</code> : returns the node name</li> - <li><code>type</code> : returns a string indicating the node type</li> - <li><code>content</code> : returns the content of the node, it is based on - xmlNodeGetContent() and hence is recursive.</li> - <li><code>parent</code> , <code>children</code>, <code>last</code>, - <code>next</code>, <code>prev</code>, <code>doc</code>, - <code>properties</code>: pointing to the associated element in the tree, - those may return None in case no such link exists.</li> -</ul><p>Also note the need to explicitly deallocate documents with freeDoc() . -Reference counting for libxml2 trees would need quite a lot of work to -function properly, and rather than risk memory leaks if not implemented -correctly it sounds safer to have an explicit function to free a tree. The -wrapper python objects like doc, root or child are them automatically garbage -collected.</p><h3>validate.py:</h3><p>This test check the validation interfaces and redirection of error -messages:</p><pre>import libxml2 - -#deactivate error messages from the validation -def noerr(ctx, str): - pass - -libxml2.registerErrorHandler(noerr, None) - -ctxt = libxml2.createFileParserCtxt("invalid.xml") -ctxt.validate(1) -ctxt.parseDocument() -doc = ctxt.doc() -valid = ctxt.isValid() -doc.freeDoc() -if valid != 0: - print "validity check failed"</pre><p>The first thing to notice is the call to registerErrorHandler(), it -defines a new error handler global to the library. It is used to avoid seeing -the error messages when trying to validate the invalid document.</p><p>The main interest of that test is the creation of a parser context with -createFileParserCtxt() and how the behaviour can be changed before calling -parseDocument() . Similarly the information resulting from the parsing phase -is also available using context methods.</p><p>Contexts like nodes are defined as class and the libxml2 wrappers maps the -C function interfaces in terms of objects method as much as possible. The -best to get a complete view of what methods are supported is to look at the -libxml2.py module containing all the wrappers.</p><h3>push.py:</h3><p>This test show how to activate the push parser interface:</p><pre>import libxml2 - -ctxt = libxml2.createPushParser(None, "<foo", 4, "test.xml") -ctxt.parseChunk("/>", 2, 1) -doc = ctxt.doc() - -doc.freeDoc()</pre><p>The context is created with a special call based on the -xmlCreatePushParser() from the C library. The first argument is an optional -SAX callback object, then the initial set of data, the length and the name of -the resource in case URI-References need to be computed by the parser.</p><p>Then the data are pushed using the parseChunk() method, the last call -setting the third argument terminate to 1.</p><h3>pushSAX.py:</h3><p>this test show the use of the event based parsing interfaces. In this case -the parser does not build a document, but provides callback information as -the parser makes progresses analyzing the data being provided:</p><pre>import libxml2 -log = "" - -class callback: - def startDocument(self): - global log - log = log + "startDocument:" - - def endDocument(self): - global log - log = log + "endDocument:" - - def startElement(self, tag, attrs): - global log - log = log + "startElement %s %s:" % (tag, attrs) - - def endElement(self, tag): - global log - log = log + "endElement %s:" % (tag) - - def characters(self, data): - global log - log = log + "characters: %s:" % (data) - - def warning(self, msg): - global log - log = log + "warning: %s:" % (msg) - - def error(self, msg): - global log - log = log + "error: %s:" % (msg) - - def fatalError(self, msg): - global log - log = log + "fatalError: %s:" % (msg) - -handler = callback() - -ctxt = libxml2.createPushParser(handler, "<foo", 4, "test.xml") -chunk = " url='tst'>b" -ctxt.parseChunk(chunk, len(chunk), 0) -chunk = "ar</foo>" -ctxt.parseChunk(chunk, len(chunk), 1) - -reference = "startDocument:startElement foo {'url': 'tst'}:" + \ - "characters: bar:endElement foo:endDocument:" -if log != reference: - print "Error got: %s" % log - print "Expected: %s" % reference</pre><p>The key object in that test is the handler, it provides a number of entry -points which can be called by the parser as it makes progresses to indicate -the information set obtained. The full set of callback is larger than what -the callback class in that specific example implements (see the SAX -definition for a complete list). The wrapper will only call those supplied by -the object when activated. The startElement receives the names of the element -and a dictionary containing the attributes carried by this element.</p><p>Also note that the reference string generated from the callback shows a -single character call even though the string "bar" is passed to the parser -from 2 different call to parseChunk()</p><h3>xpath.py:</h3><p>This is a basic test of XPath wrappers support</p><pre>import libxml2 - -doc = libxml2.parseFile("tst.xml") -ctxt = doc.xpathNewContext() -res = ctxt.xpathEval("//*") -if len(res) != 2: - print "xpath query: wrong node set size" - sys.exit(1) -if res[0].name != "doc" or res[1].name != "foo": - print "xpath query: wrong node set value" - sys.exit(1) -doc.freeDoc() -ctxt.xpathFreeContext()</pre><p>This test parses a file, then create an XPath context to evaluate XPath -expression on it. The xpathEval() method execute an XPath query and returns -the result mapped in a Python way. String and numbers are natively converted, -and node sets are returned as a tuple of libxml2 Python nodes wrappers. Like -the document, the XPath context need to be freed explicitly, also not that -the result of the XPath query may point back to the document tree and hence -the document must be freed after the result of the query is used.</p><h3>xpathext.py:</h3><p>This test shows how to extend the XPath engine with functions written in -python:</p><pre>import libxml2 - -def foo(ctx, x): - return x + 1 - -doc = libxml2.parseFile("tst.xml") -ctxt = doc.xpathNewContext() -libxml2.registerXPathFunction(ctxt._o, "foo", None, foo) -res = ctxt.xpathEval("foo(1)") -if res != 2: - print "xpath extension failure" -doc.freeDoc() -ctxt.xpathFreeContext()</pre><p>Note how the extension function is registered with the context (but that -part is not yet finalized, this may change slightly in the future).</p><h3>tstxpath.py:</h3><p>This test is similar to the previous one but shows how the extension -function can access the XPath evaluation context:</p><pre>def foo(ctx, x): - global called - - # - # test that access to the XPath evaluation contexts - # - pctxt = libxml2.xpathParserContext(_obj=ctx) - ctxt = pctxt.context() - called = ctxt.function() - return x + 1</pre><p>All the interfaces around the XPath parser(or rather evaluation) context -are not finalized, but it should be sufficient to do contextual work at the -evaluation point.</p><h3>Memory debugging:</h3><p>last but not least, all tests starts with the following prologue:</p><pre>#memory debug specific -libxml2.debugMemory(1)</pre><p>and ends with the following epilogue:</p><pre>#memory debug specific -libxml2.cleanupParser() -if libxml2.debugMemory(1) == 0: - print "OK" -else: - print "Memory leak %d bytes" % (libxml2.debugMemory(1)) - libxml2.dumpMemory()</pre><p>Those activate the memory debugging interface of libxml2 where all -allocated block in the library are tracked. The prologue then cleans up the -library state and checks that all allocated memory has been freed. If not it -calls dumpMemory() which saves that list in a <code>.memdump</code> file.</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/redhat.gif b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/redhat.gif Binary files differdeleted file mode 100644 index eff3d730..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/redhat.gif +++ /dev/null diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/search.php b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/search.php deleted file mode 100644 index 7d94cb7a..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/search.php +++ /dev/null @@ -1,476 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd"> -<html> -<head> -<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<link rel="SHORTCUT ICON" href="/favicon.ico"> -<style type="text/css"><!-- -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } ---></style> -<title>Search the documentation on XMLSoft.org</title> -</head> -<body bgcolor="#8b7765" text="#000000" link="#000000" vlink="#000000"> -<table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr> -<td width="180"> -<a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo"></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo"></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo"></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo"></a></div> -</td> -<td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"> -<h1>The XML C library for Gnome</h1> -<h2>Search engine</h2> -</td></tr></table></td></tr></table></td> -</tr></table> -<table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr> -<td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td> -<table width="100%" border="0" cellspacing="1" cellpadding="3"> -<tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr> -<tr><td bgcolor="#fffacd"><ul> -<li><a href="index.html">Home</a></li> -<li><a href="intro.html">Introduction</a></li> -<li><a href="FAQ.html">FAQ</a></li> -<li><a href="docs.html">Documentation</a></li> -<li><a href="bugs.html">Reporting bugs and getting help</a></li> -<li><a href="help.html">How to help</a></li> -<li><a href="downloads.html">Downloads</a></li> -<li><a href="news.html">News</a></li> -<li><a href="XMLinfo.html">XML</a></li> -<li><a href="XSLT.html">XSLT</a></li> -<li><a href="python.html">Python and bindings</a></li> -<li><a href="architecture.html">libxml architecture</a></li> -<li><a href="tree.html">The tree output</a></li> -<li><a href="interface.html">The SAX interface</a></li> -<li><a href="xmldtd.html">Validation & DTDs</a></li> -<li><a href="xmlmem.html">Memory Management</a></li> -<li><a href="encoding.html">Encodings support</a></li> -<li><a href="xmlio.html">I/O Interfaces</a></li> -<li><a href="catalog.html">Catalog support</a></li> -<li><a href="library.html">The parser interfaces</a></li> -<li><a href="entities.html">Entities or no entities</a></li> -<li><a href="namespaces.html">Namespaces</a></li> -<li><a href="upgrade.html">Upgrading 1.x code</a></li> -<li><a href="threads.html">Thread safety</a></li> -<li><a href="DOM.html">DOM Principles</a></li> -<li><a href="example.html">A real example</a></li> -<li><a href="contribs.html">Contributions</a></li> -<li><a href="tutorial/index.html">Tutorial</a></li> -<li> -<a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a> -</li> -</ul></td></tr> -</table> -<table width="100%" border="0" cellspacing="1" cellpadding="3"> -<tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr> -<tr><td bgcolor="#fffacd"><ul> -<li><a href="APIchunk0.html">Alphabetic</a></li> -<li><a href="APIconstructors.html">Constructors</a></li> -<li><a href="APIfunctions.html">Functions/Types</a></li> -<li><a href="APIfiles.html">Modules</a></li> -<li><a href="APIsymbols.html">Symbols</a></li> -</ul></td></tr> -</table> -<table width="100%" border="0" cellspacing="1" cellpadding="3"> -<tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr> -<tr><td bgcolor="#fffacd"><ul> -<li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li> -<li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li> -<li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li> -<li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li> -<li><a href="ftp://xmlsoft.org/">FTP</a></li> -<li><a href="http://ww.zlatkovic.com/projects/libxml/">Windows binaries</a></li> -<li><a href="http://garypennington.net/libxml2/">Solaris binaries</a></li> -<li><a href="http://www.zveno.com/open_source/libxml2xslt.html">MacOsX binaries</a></li> -<li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li> -<li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml&product=libxml2">Bug Tracker</a></li> -</ul></td></tr> -</table> -</td></tr></table></td> -<td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"> -<?php - $query = $HTTP_GET_VARS[ "query" ]; - $scope = $HTTP_GET_VARS[ "scope" ]; - // We handle only the first argument so far - $query = $_GET['query']; - $query = ltrim ($query); - if (! $query) { - echo "<h1 align='center'>Search the documentation on XMLSoft.org</h1>"; - } - if ($scope == NULL) - $scope = "any"; - $scope = ltrim ($scope); - if ($scope == "") - $scope = "any"; - -?> -<p> The search service indexes the libxml2 and libxslt APIs and documentation as well as the xml@gnome.org and xslt@gnome.org mailing-list archives. To use it simply provide a set of keywords: -<p> -<form action="<?php echo "$PHP_SELF", "?query=", rawurlencode($query) ?>" - enctype="application/x-www-form-urlencoded" method="GET"> - <input name="query" type="TEXT" size="50" value="<?php echo $query?>"> - <select name="scope"> - <option value="any">Search All</option> - <option value="XML" <?php if ($scope == 'XML') print "selected"?>>XML resources</option> - <option value="XSLT" <?php if ($scope == 'XSLT') print "selected"?>>XSLT resources</option> - <option value="API" <?php if ($scope == 'API') print "selected"?>>Only the APIs</option> - <option value="XMLAPI" <?php if ($scope == 'XMLAPI') print "selected"?>>Only the XML API</option> - <option value="XSLTAPI" <?php if ($scope == 'XSLTAPI') print "selected"?>>Only the XSLT API</option> - <option value="DOCS" <?php if ($scope == 'DOCS') print "selected"?>>Only the Documentation</option> - <option value="XMLDOC" <?php if ($scope == 'XMLDOC') print "selected"?>>Only the XML Documentation</option> - <option value="XSLTDOC" <?php if ($scope == 'XSLTDOC') print "selected"?>>Only the XSLT Documentation</option> - <option value="LISTS" <?php if ($scope == 'LISTS') print "selected"?>>Only the lists archives</option> - <option value="XMLLIST" <?php if ($scope == 'XMLLIST') print "selected"?>>Only the XML list archive</option> - <option value="XSLTLIST" <?php if ($scope == 'XSLTLIST') print "selected"?>>Only the XSLT list archive</option> - </select> - <input name=submit type=submit value="Search ..."> -</form> -<?php - function logQueryWord($word) { - $result = mysql_query ("SELECT ID,Count FROM Queries WHERE Value='$word'"); - if ($result) { - $i = mysql_num_rows($result); - if ($i == 0) { - mysql_free_result($result); - mysql_query ("INSERT INTO Queries (Value,Count) VALUES ('$word',1)"); - } else { - $id = mysql_result($result, 0, 0); - $count = mysql_result($result, 0, 1); - $count ++; - mysql_query ("UPDATE Queries SET Count=$count WHERE ID=$id"); - } - } else { - mysql_query ("INSERT INTO Queries (Value,Count) VALUES ('$word',1)"); - } - } - function queryWord($word) { - $result = NULL; - $j = 0; - if ($word) { - $result = mysql_query ("SELECT words.relevance, symbols.name, symbols.type, symbols.module, symbols.descr FROM words, symbols WHERE LCASE(words.name) LIKE LCASE('$word') and words.symbol = symbols.name ORDER BY words.relevance DESC LIMIT 75"); - if ($result) { - $j = mysql_num_rows($result); - if ($j == 0) - mysql_free_result($result); - } - logQueryWord($word); - } - return array($result, $j); - } - function queryHTMLWord($word) { - $result = NULL; - $j = 0; - if ($word) { - $result = mysql_query ("SELECT relevance, name, id, resource, section FROM wordsHTML WHERE LCASE(name) LIKE LCASE('$word') ORDER BY relevance DESC LIMIT 75"); - if ($result) { - $j = mysql_num_rows($result); - if ($j == 0) - mysql_free_result($result); - } - logQueryWord($word); - } - return array($result, $j); - } - function queryArchiveWord($word) { - $result = NULL; - $j = 0; - if ($word) { - $result = mysql_query ("SELECT wordsArchive.relevance, wordsArchive.name, 'xml-list', archives.resource, archives.title FROM wordsArchive, archives WHERE LCASE(wordsArchive.name) LIKE LCASE('$word') and wordsArchive.ID = archives.ID ORDER BY relevance DESC LIMIT 75"); - if ($result) { - $j = mysql_num_rows($result); - if ($j == 0) - mysql_free_result($result); - } - logQueryWord($word); - } - return array($result, $j); - } - function XSLTqueryWord($word) { - $result = NULL; - $j = 0; - if ($word) { - $result = mysql_query ("SELECT XSLTwords.relevance, XSLTsymbols.name, XSLTsymbols.type, XSLTsymbols.module, XSLTsymbols.descr FROM XSLTwords, XSLTsymbols WHERE LCASE(XSLTwords.name) LIKE LCASE('$word') and XSLTwords.symbol = XSLTsymbols.name ORDER BY XSLTwords.relevance DESC LIMIT 75"); - if ($result) { - $j = mysql_num_rows($result); - if ($j == 0) - mysql_free_result($result); - } - logQueryWord($word); - } - return array($result, $j); - } - function XSLTqueryHTMLWord($word) { - $result = NULL; - $j = 0; - if ($word) { - $result = mysql_query ("SELECT relevance, name, id, resource, section FROM XSLTwordsHTML WHERE LCASE(name) LIKE LCASE('$word') ORDER BY relevance DESC LIMIT 75"); - if ($result) { - $j = mysql_num_rows($result); - if ($j == 0) - mysql_free_result($result); - } - logQueryWord($word); - } - return array($result, $j); - } - function XSLTqueryArchiveWord($word) { - $result = NULL; - $j = 0; - if ($word) { - $result = mysql_query ("SELECT XSLTwordsArchive.relevance, XSLTwordsArchive.name, 'xslt-list', archives.resource, archives.title FROM XSLTwordsArchive, archives WHERE LCASE(XSLTwordsArchive.name) LIKE LCASE('$word') and XSLTwordsArchive.ID = archives.ID ORDER BY relevance DESC LIMIT 75"); - if ($result) { - $j = mysql_num_rows($result); - if ($j == 0) - mysql_free_result($result); - } - logQueryWord($word); - } - return array($result, $j); - } - function resSort ($a, $b) { - list($ra,$ta,$ma,$na,$da) = $a; - list($rb,$tb,$mb,$nb,$db) = $b; - if ($ra == $rb) return 0; - return ($ra > $rb) ? -1 : 1; - } - if (($query) && (strlen($query) <= 50)) { - $link = mysql_connect ("localhost", "nobody"); - if (!$link) { - echo "<p> Could not connect to the database: ", mysql_error(); - } else { - mysql_select_db("xmlsoft", $link); - $list = explode (" ", $query); - $results = array(); - $number = 0; - for ($number = 0;$number < count($list);$number++) { - - $word = $list[$number]; - if (($scope == 'any') || ($scope == 'XML') || - ($scope == 'API') || ($scope == 'XMLAPI')) { - list($result, $j) = queryWord($word); - if ($j > 0) { - for ($i = 0; $i < $j; $i++) { - $relevance = mysql_result($result, $i, 0); - $name = mysql_result($result, $i, 1); - $type = mysql_result($result, $i, 2); - $module = mysql_result($result, $i, 3); - $desc = mysql_result($result, $i, 4); - if (array_key_exists($name, $results)) { - list($r,$t,$m,$d,$w,$u) = $results[$name]; - $results[$name] = array(($r + $relevance) * 2, - $t,$m,$d,$w,$u); - } else { - $id = $name; - $m = strtolower($module); - $url = "html/libxml-$module.html#$id"; - $results[$name] = array($relevance,$type, - $module, $desc, $name, $url); - } - } - mysql_free_result($result); - } - } - if (($scope == 'any') || ($scope == 'XSLT') || - ($scope == 'API') || ($scope == 'XSLTAPI')) { - list($result, $j) = XSLTqueryWord($word); - if ($j > 0) { - for ($i = 0; $i < $j; $i++) { - $relevance = mysql_result($result, $i, 0); - $name = mysql_result($result, $i, 1); - $type = mysql_result($result, $i, 2); - $module = mysql_result($result, $i, 3); - $desc = mysql_result($result, $i, 4); - if (array_key_exists($name, $results)) { - list($r,$t,$m,$d,$w,$u) = $results[$name]; - $results[$name] = array(($r + $relevance) * 2, - $t,$m,$d,$w,$u); - } else { - $id = $name; - $m = strtolower($module); - $url = "XSLT/html/libxslt-$module.html#$id"; - $results[$name] = array($relevance,$type, - $module, $desc, $name, $url); - } - } - mysql_free_result($result); - } - } - if (($scope == 'any') || ($scope == 'XML') || - ($scope == 'DOCS') || ($scope == 'XMLDOC')) { - list($result, $k) = queryHTMLWord($word); - if ($k > 0) { - for ($i = 0; $i < $k; $i++) { - $relevance = mysql_result($result, $i, 0); - $name = mysql_result($result, $i, 1); - $id = mysql_result($result, $i, 2); - $module = mysql_result($result, $i, 3); - $desc = mysql_result($result, $i, 4); - if (strncmp($module, "libxml-", 7) == 0) { - $url = "html/$module"; - if ($id != "") { - $url = $url + "#$id"; - } - $results["$name _html_ $number _ $i"] = - array($relevance, "XML docs", - $module, $desc, $name, $url); - } - mysql_free_result($result); - } - } - if (($scope == 'any') || ($scope == 'XSLT') || - ($scope == 'DOCS') || ($scope == 'XSLTDOC')) { - list($result, $k) = XSLTqueryHTMLWord($word); - if ($k > 0) { - for ($i = 0; $i < $k; $i++) { - $relevance = mysql_result($result, $i, 0); - $name = mysql_result($result, $i, 1); - $id = mysql_result($result, $i, 2); - $module = mysql_result($result, $i, 3); - $desc = mysql_result($result, $i, 4); - $url = "XSLT/$module"; - if ($id != "") { - $url = $url + "#$id"; - } - $results["$name xslthtml $number _ $i "] = - array($relevance, "XSLT docs", - $module, $desc, $name, $url); - } - mysql_free_result($result); - } - } - if (($scope == 'any') || ($scope == 'XML') || - ($scope == 'LISTS') || ($scope == 'XMLLIST')) { - list($result, $j) = queryArchiveWord($word); - if ($j > 0) { - for ($i = 0; $i < $j; $i++) { - $relevance = mysql_result($result, $i, 0); - $name = mysql_result($result, $i, 1); - $type = mysql_result($result, $i, 2); - $url = mysql_result($result, $i, 3); - $desc = mysql_result($result, $i, 4); - if (array_key_exists($url, $results)) { - list($r,$t,$m,$d,$w,$u) = $results[$url]; - $results[$name] = array(($r + $relevance) * 2, - $t,$m,$d,$w,$u); - } else { - $id = $name; - $m = strtolower($module); - $u = str_replace( - "http://mail.gnome.org/archives/xml/", "", $url); - $results[$url] = array($relevance,$type, - $u, $desc, $name, $url); - } - } - mysql_free_result($result); - } - } - if (($scope == 'any') || ($scope == 'XSLT') || - ($scope == 'LISTS') || ($scope == 'XSLTLIST')) { - list($result, $j) = XSLTqueryArchiveWord($word); - if ($j > 0) { - for ($i = 0; $i < $j; $i++) { - $relevance = mysql_result($result, $i, 0); - $name = mysql_result($result, $i, 1); - $type = mysql_result($result, $i, 2); - $url = mysql_result($result, $i, 3); - $desc = mysql_result($result, $i, 4); - if (array_key_exists($url, $results)) { - list($r,$t,$m,$d,$w,$u) = $results[$url]; - $results[$name] = array(($r + $relevance) * 2, - $t,$m,$d,$w,$u); - } else { - $id = $name; - $m = strtolower($module); - $u = str_replace( - "http://mail.gnome.org/archives/xslt/", "", $url); - $results[$url] = array($relevance,$type, - $u, $desc, $name, $url); - } - } - mysql_free_result($result); - } - } - } - if ((count($results) == 0) && (count($list) == 1)) { - $word = $list[0]; - if (($scope == 'any') || ($scope == 'XML') || - ($scope == 'API') || ($scope == 'XMLAPI')) { - list($result, $j) = queryWord("xml$word"); - if ($j > 0) { - for ($i = 0; $i < $j; $i++) { - $relevance = mysql_result($result, $i, 0); - $name = mysql_result($result, $i, 1); - $type = mysql_result($result, $i, 2); - $module = mysql_result($result, $i, 3); - $desc = mysql_result($result, $i, 4); - if (array_key_exists($name, $results)) { - list($r,$t,$m,$d,$w,$u) = $results[$name]; - $results[$name] = array(($r + $relevance) * 2, - $t,$m,$d,$w,$u); - } else { - $id = $name; - $m = strtolower($module); - $url = "html/libxml-$module.html#$id"; - $results[$name] = array($relevance,$type, - $module, $desc, $name, $url); - } - } - mysql_free_result($result); - } - } - if (($scope == 'any') || ($scope == 'XSLT') || - ($scope == 'API') || ($scope == 'XSLTAPI')) { - list($result, $j) = XSLTqueryWord("xslt$word"); - if ($j > 0) { - for ($i = 0; $i < $j; $i++) { - $relevance = mysql_result($result, $i, 0); - $name = mysql_result($result, $i, 1); - $type = mysql_result($result, $i, 2); - $module = mysql_result($result, $i, 3); - $desc = mysql_result($result, $i, 4); - if (array_key_exists($name, $results)) { - list($r,$t,$m,$d,$w,$u) = $results[$name]; - $results[$name] = array(($r + $relevance) * 2, - $t,$m,$d,$w,$u); - } else { - $id = $name; - $m = strtolower($module); - $url = "XSLT/html/libxslt-$module.html#$id"; - $results[$name] = array($relevance,$type, - $module, $desc, $name, $url); - } - } - mysql_free_result($result); - } - } - } - mysql_close($link); - $nb = count($results); - echo "<h3 align='center'>Found $nb results for query $query</h3>\n"; - usort($results, "resSort"); - - if ($nb > 0) { - printf("<table><tbody>\n"); - printf("<tr><td>Quality</td><td>Symbol</td><td>Type</td><td>module</td><td>Description</td></tr>\n"); - $i = 0; - while (list ($name, $val) = each ($results)) { - list($r,$t,$m,$d,$s,$u) = $val; - $m = str_replace("<", "<", $m); - $s = str_replace("<", "<", $s); - $d = str_replace("<", "<", $d); - echo "<tr><td>$r</td><td><a href='$u'>$s</a></td><td>$t</td><td>$m</td><td>$d</td></tr>"; - $i = $i + 1; - if ($i > 75) - break; - } - printf("</tbody></table>\n"); - } - } - } -?> - -</td></tr></table></td></tr></table></td></tr></table></td> -</tr></table></td></tr></table> -</body> -</html> - diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/searches.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/searches.html deleted file mode 100644 index c22b8d6a..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/searches.html +++ /dev/null @@ -1,61 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Search statistics for 20040408</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1></h1><h2>Search statistics for 20040408</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://garypennington.net/libxml2/">Solaris binaries</a></li><li><a href="http://www.zveno.com/open_source/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><h2> weekly statistics: </h2><p>416435 total words, - 9875 uniq words.</p><p> Top 50 queries:</p><p><br /><a href="search.php?query=libxml2">libxml2</a> 11812 times. - <br /><a href="search.php?query=libxml">libxml</a> 10170 times. - <br /><a href="search.php?query=xpath">xpath</a> 6172 times. - <br /><a href="search.php?query=schema">schema</a> 5798 times. - <br /><a href="search.php?query=xmllint">xmllint</a> 5472 times. - <br /><a href="search.php?query=XML">XML</a> 5435 times. - <br /><a href="search.php?query=xmlParseFile">xmlParseFile</a> 4219 times. - <br /><a href="search.php?query=php">php</a> 3935 times. - <br /><a href="search.php?query=DTD">DTD</a> 3270 times. - <br /><a href="search.php?query=encoding">encoding</a> 3101 times. - <br /><a href="search.php?query=xmlGetProp">xmlGetProp</a> 3084 times. - <br /><a href="search.php?query=xsltproc">xsltproc</a> 3074 times. - <br /><a href="search.php?query=download">download</a> 2971 times. - <br /><a href="search.php?query=xmlNodeListGetString">xmlNodeListGetString</a> 2917 times. - <br /><a href="search.php?query=python">python</a> 2789 times. - <br /><a href="search.php?query=SAX">SAX</a> 2621 times. - <br /><a href="search.php?query=xmlParseMemory">xmlParseMemory</a> 2472 times. - <br /><a href="search.php?query=perl">perl</a> 2385 times. - <br /><a href="search.php?query=iconv">iconv</a> 2318 times. - <br /><a href="search.php?query=error">error</a> 2298 times. - <br /><a href="search.php?query=html">html</a> 2255 times. - <br /><a href="search.php?query=xmlChar">xmlChar</a> 2136 times. - <br /><a href="search.php?query=libxslt">libxslt</a> 2055 times. - <br /><a href="search.php?query=c++">c++</a> 2020 times. - <br /><a href="search.php?query=xmlNodePtr">xmlNodePtr</a> 1928 times. - <br /><a href="search.php?query=windows">windows</a> 1918 times. - <br /><a href="search.php?query=to">to</a> 1891 times. - <br /><a href="search.php?query=node">node</a> 1860 times. - <br /><a href="search.php?query=xmlFree">xmlFree</a> 1854 times. - <br /><a href="search.php?query=example">example</a> 1784 times. - <br /><a href="search.php?query=install">install</a> 1763 times. - <br /><a href="search.php?query=parser">parser</a> 1715 times. - <br /><a href="search.php?query=xmlNewDoc">xmlNewDoc</a> 1695 times. - <br /><a href="search.php?query=namespace">namespace</a> 1693 times. - <br /><a href="search.php?query=xmlStrcmp">xmlStrcmp</a> 1564 times. - <br /><a href="search.php?query=xmlnode">xmlnode</a> 1558 times. - <br /><a href="search.php?query=parse">parse</a> 1517 times. - <br /><a href="search.php?query=memory">memory</a> 1484 times. - <br /><a href="search.php?query=dom">dom</a> 1457 times. - <br /><a href="search.php?query=XInclude">XInclude</a> 1444 times. - <br /><a href="search.php?query=entity">entity</a> 1423 times. - <br /><a href="search.php?query=xmlSaveFormatFile">xmlSaveFormatFile</a> 1390 times. - <br /><a href="search.php?query=xslt">xslt</a> 1361 times. - <br /><a href="search.php?query=attribute">attribute</a> 1360 times. - <br /><a href="search.php?query=xmlDocPtr">xmlDocPtr</a> 1350 times. - <br /><a href="search.php?query=xsd">xsd</a> 1319 times. - <br /><a href="search.php?query=xmlDocGetRootElement">xmlDocGetRootElement</a> 1285 times. - <br /><a href="search.php?query=validate">validate</a> 1270 times. - <br /><a href="search.php?query=validation">validation</a> 1234 times. - <br /><a href="search.php?query=tutorial">tutorial</a> 1140 times. - </p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/smallfootonly.gif b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/smallfootonly.gif Binary files differdeleted file mode 100644 index ddbb9eee..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/smallfootonly.gif +++ /dev/null diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/structure.gif b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/structure.gif Binary files differdeleted file mode 100644 index 4b9a3e6d..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/structure.gif +++ /dev/null diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/threads.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/threads.html deleted file mode 100644 index f28d50dc..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/threads.html +++ /dev/null @@ -1,27 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Thread safety</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Thread safety</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Starting with 2.4.7, libxml2 makes provisions to ensure that concurrent -threads can safely work in parallel parsing different documents. There is -however a couple of things to do to ensure it:</p><ul><li>configure the library accordingly using the --with-threads options</li> - <li>call xmlInitParser() in the "main" thread before using any of the - libxml2 API (except possibly selecting a different memory allocator)</li> -</ul><p>Note that the thread safety cannot be ensured for multiple threads sharing -the same document, the locking must be done at the application level, libxml -exports a basic mutex and reentrant mutexes API in <libxml/threads.h>. -The parts of the library checked for thread safety are:</p><ul><li>concurrent loading</li> - <li>file access resolution</li> - <li>catalog access</li> - <li>catalog building</li> - <li>entities lookup/accesses</li> - <li>validation</li> - <li>global variables per-thread override</li> - <li>memory handling</li> -</ul><p>XPath is supposed to be thread safe now, but this wasn't tested -seriously.</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/tree.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/tree.html deleted file mode 100644 index b3ab3701..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/tree.html +++ /dev/null @@ -1,53 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>The tree output</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>The tree output</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>The parser returns a tree built during the document analysis. The value -returned is an <strong>xmlDocPtr</strong> (i.e., a pointer to an -<strong>xmlDoc</strong> structure). This structure contains information such -as the file name, the document type, and a <strong>children</strong> pointer -which is the root of the document (or more exactly the first child under the -root which is the document). The tree is made of <strong>xmlNode</strong>s, -chained in double-linked lists of siblings and with a children<->parent -relationship. An xmlNode can also carry properties (a chain of xmlAttr -structures). An attribute may have a value which is a list of TEXT or -ENTITY_REF nodes.</p><p>Here is an example (erroneous with respect to the XML spec since there -should be only one ELEMENT under the root):</p><p><img src="structure.gif" alt=" structure.gif " /></p><p>In the source package there is a small program (not installed by default) -called <strong>xmllint</strong> which parses XML files given as argument and -prints them back as parsed. This is useful for detecting errors both in XML -code and in the XML parser itself. It has an option <strong>--debug</strong> -which prints the actual in-memory structure of the document; here is the -result with the <a href="#example">example</a> given before:</p><pre>DOCUMENT -version=1.0 -standalone=true - ELEMENT EXAMPLE - ATTRIBUTE prop1 - TEXT - content=gnome is great - ATTRIBUTE prop2 - ENTITY_REF - TEXT - content= linux too - ELEMENT head - ELEMENT title - TEXT - content=Welcome to Gnome - ELEMENT chapter - ELEMENT title - TEXT - content=The Linux adventure - ELEMENT p - TEXT - content=bla bla bla ... - ELEMENT image - ATTRIBUTE href - TEXT - content=linus.gif - ELEMENT p - TEXT - content=...</pre><p>This should be useful for learning the internal representation model.</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/upgrade.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/upgrade.html deleted file mode 100644 index 5d846c2a..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/upgrade.html +++ /dev/null @@ -1,106 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Upgrading 1.x code</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Upgrading 1.x code</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Incompatible changes:</p><p>Version 2 of libxml2 is the first version introducing serious backward -incompatible changes. The main goals were:</p><ul><li>a general cleanup. A number of mistakes inherited from the very early - versions couldn't be changed due to compatibility constraints. Example - the "childs" element in the nodes.</li> - <li>Uniformization of the various nodes, at least for their header and link - parts (doc, parent, children, prev, next), the goal is a simpler - programming model and simplifying the task of the DOM implementors.</li> - <li>better conformances to the XML specification, for example version 1.x - had an heuristic to try to detect ignorable white spaces. As a result the - SAX event generated were ignorableWhitespace() while the spec requires - character() in that case. This also mean that a number of DOM node - containing blank text may populate the DOM tree which were not present - before.</li> -</ul><h3>How to fix libxml-1.x code:</h3><p>So client code of libxml designed to run with version 1.x may have to be -changed to compile against version 2.x of libxml. Here is a list of changes -that I have collected, they may not be sufficient, so in case you find other -change which are required, <a href="mailto:Daniel.Veillard@w3.org">drop me a -mail</a>:</p><ol><li>The package name have changed from libxml to libxml2, the library name - is now -lxml2 . There is a new xml2-config script which should be used to - select the right parameters libxml2</li> - <li>Node <strong>childs</strong> field has been renamed - <strong>children</strong> so s/childs/children/g should be applied - (probability of having "childs" anywhere else is close to 0+</li> - <li>The document don't have anymore a <strong>root</strong> element it has - been replaced by <strong>children</strong> and usually you will get a - list of element here. For example a Dtd element for the internal subset - and it's declaration may be found in that list, as well as processing - instructions or comments found before or after the document root element. - Use <strong>xmlDocGetRootElement(doc)</strong> to get the root element of - a document. Alternatively if you are sure to not reference DTDs nor have - PIs or comments before or after the root element - s/->root/->children/g will probably do it.</li> - <li>The white space issue, this one is more complex, unless special case of - validating parsing, the line breaks and spaces usually used for indenting - and formatting the document content becomes significant. So they are - reported by SAX and if your using the DOM tree, corresponding nodes are - generated. Too approach can be taken: - <ol><li>lazy one, use the compatibility call - <strong>xmlKeepBlanksDefault(0)</strong> but be aware that you are - relying on a special (and possibly broken) set of heuristics of - libxml to detect ignorable blanks. Don't complain if it breaks or - make your application not 100% clean w.r.t. to it's input.</li> - <li>the Right Way: change you code to accept possibly insignificant - blanks characters, or have your tree populated with weird blank text - nodes. You can spot them using the commodity function - <strong>xmlIsBlankNode(node)</strong> returning 1 for such blank - nodes.</li> - </ol><p>Note also that with the new default the output functions don't add any - extra indentation when saving a tree in order to be able to round trip - (read and save) without inflating the document with extra formatting - chars.</p> - </li> - <li>The include path has changed to $prefix/libxml/ and the includes - themselves uses this new prefix in includes instructions... If you are - using (as expected) the - <pre>xml2-config --cflags</pre> - <p>output to generate you compile commands this will probably work out of - the box</p> - </li> - <li>xmlDetectCharEncoding takes an extra argument indicating the length in - byte of the head of the document available for character detection.</li> -</ol><h3>Ensuring both libxml-1.x and libxml-2.x compatibility</h3><p>Two new version of libxml (1.8.11) and libxml2 (2.3.4) have been released -to allow smooth upgrade of existing libxml v1code while retaining -compatibility. They offers the following:</p><ol><li>similar include naming, one should use - <strong>#include<libxml/...></strong> in both cases.</li> - <li>similar identifiers defined via macros for the child and root fields: - respectively <strong>xmlChildrenNode</strong> and - <strong>xmlRootNode</strong></li> - <li>a new macro <strong>LIBXML_TEST_VERSION</strong> which should be - inserted once in the client code</li> -</ol><p>So the roadmap to upgrade your existing libxml applications is the -following:</p><ol><li>install the libxml-1.8.8 (and libxml-devel-1.8.8) packages</li> - <li>find all occurrences where the xmlDoc <strong>root</strong> field is - used and change it to <strong>xmlRootNode</strong></li> - <li>similarly find all occurrences where the xmlNode - <strong>childs</strong> field is used and change it to - <strong>xmlChildrenNode</strong></li> - <li>add a <strong>LIBXML_TEST_VERSION</strong> macro somewhere in your - <strong>main()</strong> or in the library init entry point</li> - <li>Recompile, check compatibility, it should still work</li> - <li>Change your configure script to look first for xml2-config and fall - back using xml-config . Use the --cflags and --libs output of the command - as the Include and Linking parameters needed to use libxml.</li> - <li>install libxml2-2.3.x and libxml2-devel-2.3.x (libxml-1.8.y and - libxml-devel-1.8.y can be kept simultaneously)</li> - <li>remove your config.cache, relaunch your configuration mechanism, and - recompile, if steps 2 and 3 were done right it should compile as-is</li> - <li>Test that your application is still running correctly, if not this may - be due to extra empty nodes due to formating spaces being kept in libxml2 - contrary to libxml1, in that case insert xmlKeepBlanksDefault(1) in your - code before calling the parser (next to - <strong>LIBXML_TEST_VERSION</strong> is a fine place).</li> -</ol><p>Following those steps should work. It worked for some of my own code.</p><p>Let me put some emphasis on the fact that there is far more changes from -libxml 1.x to 2.x than the ones you may have to patch for. The overall code -has been considerably cleaned up and the conformance to the XML specification -has been drastically improved too. Don't take those changes as an excuse to -not upgrade, it may cost a lot on the long term ...</p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/w3c.png b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/w3c.png Binary files differdeleted file mode 100644 index c541c20d..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/w3c.png +++ /dev/null diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xml.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xml.html deleted file mode 100644 index 1a442442..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xml.html +++ /dev/null @@ -1,5084 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" - "http://www.w3.org/TR/html4/loose.dtd"> -<html> -<head> - <title>The XML C parser and toolkit of Gnome</title> - <meta name="GENERATOR" content="amaya 8.5, see http://www.w3.org/Amaya/"> - <meta http-equiv="Content-Type" content="text/html"> -</head> -<body bgcolor="#ffffff"> -<h1 align="center">The XML C parser and toolkit of Gnome</h1> - -<h1>Note: this is the flat content of the <a href="index.html">web -site</a></h1> - -<h1 style="text-align: center">libxml, a.k.a. gnome-xml</h1> - -<p></p> - -<p -style="text-align: right; font-style: italic; font-size: 10pt">"Programming -with libxml2 is like the thrilling embrace of an exotic stranger." <a -href="http://diveintomark.org/archives/2004/02/18/libxml2">Mark -Pilgrim</a></p> - -<p>Libxml2 is the XML C parser and toolkit developed for the Gnome project -(but usable outside of the Gnome platform), it is free software available -under the <a href="http://www.opensource.org/licenses/mit-license.html">MIT -License</a>. XML itself is a metalanguage to design markup languages, i.e. -text language where semantic and structure are added to the content using -extra "markup" information enclosed between angle brackets. HTML is the most -well-known markup language. Though the library is written in C <a -href="python.html">a variety of language bindings</a> make it available in -other environments.</p> - -<p>Libxml2 is known to be very portable, the library should build and work -without serious troubles on a variety of systems (Linux, Unix, Windows, -CygWin, MacOS, MacOS X, RISC Os, OS/2, VMS, QNX, MVS, ...)</p> - -<p>Libxml2 implements a number of existing standards related to markup -languages:</p> -<ul> - <li>the XML standard: <a - href="http://www.w3.org/TR/REC-xml">http://www.w3.org/TR/REC-xml</a></li> - <li>Namespaces in XML: <a - href="http://www.w3.org/TR/REC-xml-names/">http://www.w3.org/TR/REC-xml-names/</a></li> - <li>XML Base: <a - href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/</a></li> - <li><a href="http://www.cis.ohio-state.edu/rfc/rfc2396.txt">RFC 2396</a> : - Uniform Resource Identifiers <a - href="http://www.ietf.org/rfc/rfc2396.txt">http://www.ietf.org/rfc/rfc2396.txt</a></li> - <li>XML Path Language (XPath) 1.0: <a - href="http://www.w3.org/TR/xpath">http://www.w3.org/TR/xpath</a></li> - <li>HTML4 parser: <a - href="http://www.w3.org/TR/html401/">http://www.w3.org/TR/html401/</a></li> - <li>XML Pointer Language (XPointer) Version 1.0: <a - href="http://www.w3.org/TR/xptr">http://www.w3.org/TR/xptr</a></li> - <li>XML Inclusions (XInclude) Version 1.0: <a - href="http://www.w3.org/TR/xinclude/">http://www.w3.org/TR/xinclude/</a></li> - <li>ISO-8859-x encodings, as well as <a - href="http://www.cis.ohio-state.edu/rfc/rfc2044.txt">rfc2044</a> [UTF-8] - and <a href="http://www.cis.ohio-state.edu/rfc/rfc2781.txt">rfc2781</a> - [UTF-16] Unicode encodings, and more if using iconv support</li> - <li>part of SGML Open Technical Resolution TR9401:1997</li> - <li>XML Catalogs Working Draft 06 August 2001: <a - href="http://www.oasis-open.org/committees/entity/spec-2001-08-06.html">http://www.oasis-open.org/committees/entity/spec-2001-08-06.html</a></li> - <li>Canonical XML Version 1.0: <a - href="http://www.w3.org/TR/xml-c14n">http://www.w3.org/TR/xml-c14n</a> - and the Exclusive XML Canonicalization CR draft <a - href="http://www.w3.org/TR/xml-exc-c14n">http://www.w3.org/TR/xml-exc-c14n</a></li> - <li>Relax NG, ISO/IEC 19757-2:2003, <a - href="http://www.oasis-open.org/committees/relax-ng/spec-20011203.html">http://www.oasis-open.org/committees/relax-ng/spec-20011203.html</a></li> - <li>W3C XML Schemas Part 2: Datatypes <a - href="http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/">REC 02 May - 2001</a></li> - <li>W3C <a href="http://www.w3.org/TR/xml-id/">xml:id</a> Working Draft 7 - April 2004</li> -</ul> - -<p>In most cases libxml2 tries to implement the specifications in a -relatively strictly compliant way. As of release 2.4.16, libxml2 passed all -1800+ tests from the <a -href="http://www.oasis-open.org/committees/xml-conformance/">OASIS XML Tests -Suite</a>.</p> - -<p>To some extent libxml2 provides support for the following additional -specifications but doesn't claim to implement them completely:</p> -<ul> - <li>Document Object Model (DOM) <a - href="http://www.w3.org/TR/DOM-Level-2-Core/">http://www.w3.org/TR/DOM-Level-2-Core/</a> - the document model, but it doesn't implement the API itself, gdome2 does - this on top of libxml2</li> - <li><a href="http://www.cis.ohio-state.edu/rfc/rfc959.txt">RFC 959</a> : - libxml2 implements a basic FTP client code</li> - <li><a href="http://www.cis.ohio-state.edu/rfc/rfc1945.txt">RFC 1945</a> : - HTTP/1.0, again a basic HTTP client code</li> - <li>SAX: a SAX2 like interface and a minimal SAX1 implementation compatible - with early expat versions</li> -</ul> - -<p>A partial implementation of <a -href="http://www.w3.org/TR/2001/REC-xmlschema-1-20010502/">XML Schemas Part -1: Structure</a> is being worked on but it would be far too early to make any -conformance statement about it at the moment.</p> - -<p>Separate documents:</p> -<ul> - <li><a href="http://xmlsoft.org/XSLT/">the libxslt page</a> providing an - implementation of XSLT 1.0 and common extensions like EXSLT for - libxml2</li> - <li><a href="http://gdome2.cs.unibo.it/">the gdome2 page</a> - : a standard DOM2 implementation for libxml2</li> - <li><a href="http://www.aleksey.com/xmlsec/">the XMLSec page</a>: an - implementation of <a href="http://www.w3.org/TR/xmldsig-core/">W3C XML - Digital Signature</a> for libxml2</li> - <li>also check the related links section below for more related and active - projects.</li> -</ul> -<!-- ----------------<p>Results of the <a -href="http://xmlbench.sourceforge.net/results/benchmark/index.html">xmlbench -benchmark</a> on sourceforge February 2004 (smaller is better):</p> - -<p align="center"><img src="benchmark.png" -alt="benchmark results for Expat Xerces libxml2 Oracle and Sun toolkits"></p> ------------- --> - -<p>Logo designed by <a href="mailto:liyanage@access.ch">Marc Liyanage</a>.</p> - -<h2><a name="Introducti">Introduction</a></h2> - -<p>This document describes libxml, the <a -href="http://www.w3.org/XML/">XML</a> C parser and toolkit developed for the -<a href="http://www.gnome.org/">Gnome</a> project. <a -href="http://www.w3.org/XML/">XML is a standard</a> for building tag-based -structured documents/data.</p> - -<p>Here are some key points about libxml:</p> -<ul> - <li>Libxml2 exports Push (progressive) and Pull (blocking) type parser - interfaces for both XML and HTML.</li> - <li>Libxml2 can do DTD validation at parse time, using a parsed document - instance, or with an arbitrary DTD.</li> - <li>Libxml2 includes complete <a - href="http://www.w3.org/TR/xpath">XPath</a>, <a - href="http://www.w3.org/TR/xptr">XPointer</a> and <a - href="http://www.w3.org/TR/xinclude">XInclude</a> implementations.</li> - <li>It is written in plain C, making as few assumptions as possible, and - sticking closely to ANSI C/POSIX for easy embedding. Works on - Linux/Unix/Windows, ported to a number of other platforms.</li> - <li>Basic support for HTTP and FTP client allowing applications to fetch - remote resources.</li> - <li>The design is modular, most of the extensions can be compiled out.</li> - <li>The internal document representation is as close as possible to the <a - href="http://www.w3.org/DOM/">DOM</a> interfaces.</li> - <li>Libxml2 also has a <a - href="http://www.megginson.com/SAX/index.html">SAX like interface</a>; - the interface is designed to be compatible with <a - href="http://www.jclark.com/xml/expat.html">Expat</a>.</li> - <li>This library is released under the <a - href="http://www.opensource.org/licenses/mit-license.html">MIT - License</a>. See the Copyright file in the distribution for the precise - wording.</li> -</ul> - -<p>Warning: unless you are forced to because your application links with a -Gnome-1.X library requiring it, <strong><span -style="background-color: #FF0000">Do Not Use libxml1</span></strong>, use -libxml2</p> - -<h2><a name="FAQ">FAQ</a></h2> - -<p>Table of Contents:</p> -<ul> - <li><a href="FAQ.html#License">License(s)</a></li> - <li><a href="FAQ.html#Installati">Installation</a></li> - <li><a href="FAQ.html#Compilatio">Compilation</a></li> - <li><a href="FAQ.html#Developer">Developer corner</a></li> -</ul> - -<h3><a name="License">License</a>(s)</h3> -<ol> - <li><em>Licensing Terms for libxml</em> - <p>libxml2 is released under the <a - href="http://www.opensource.org/licenses/mit-license.html">MIT - License</a>; see the file Copyright in the distribution for the precise - wording</p> - </li> - <li><em>Can I embed libxml2 in a proprietary application ?</em> - <p>Yes. The MIT License allows you to keep proprietary the changes you - made to libxml, but it would be graceful to send-back bug fixes and - improvements as patches for possible incorporation in the main - development tree.</p> - </li> -</ol> - -<h3><a name="Installati">Installation</a></h3> -<ol> - <li><strong><span style="background-color: #FF0000">Do Not Use - libxml1</span></strong>, use libxml2</li> - <p></p> - <li><em>Where can I get libxml</em> ? - <p>The original distribution comes from <a - href="ftp://xmlsoft.org/libxml2/">xmlsoft.org</a> or <a - href="ftp://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/">gnome.org</a></p> - <p>Most Linux and BSD distributions include libxml, this is probably the - safer way for end-users to use libxml.</p> - <p>David Doolin provides precompiled Windows versions at <a - href="http://www.ce.berkeley.edu/~doolin/code/libxmlwin32/ ">http://www.ce.berkeley.edu/~doolin/code/libxmlwin32/</a></p> - </li> - <p></p> - <li><em>I see libxml and libxml2 releases, which one should I install ?</em> - <ul> - <li>If you are not constrained by backward compatibility issues with - existing applications, install libxml2 only</li> - <li>If you are not doing development, you can safely install both. - Usually the packages <a - href="http://rpmfind.net/linux/RPM/libxml.html">libxml</a> and <a - href="http://rpmfind.net/linux/RPM/libxml2.html">libxml2</a> are - compatible (this is not the case for development packages).</li> - <li>If you are a developer and your system provides separate packaging - for shared libraries and the development components, it is possible - to install libxml and libxml2, and also <a - href="http://rpmfind.net/linux/RPM/libxml-devel.html">libxml-devel</a> - and <a - href="http://rpmfind.net/linux/RPM/libxml2-devel.html">libxml2-devel</a> - too for libxml2 >= 2.3.0</li> - <li>If you are developing a new application, please develop against - libxml2(-devel)</li> - </ul> - </li> - <li><em>I can't install the libxml package, it conflicts with libxml0</em> - <p>You probably have an old libxml0 package used to provide the shared - library for libxml.so.0, you can probably safely remove it. The libxml - packages provided on <a - href="ftp://xmlsoft.org/libxml2/">xmlsoft.org</a> provide - libxml.so.0</p> - </li> - <li><em>I can't install the libxml(2) RPM package due to failed - dependencies</em> - <p>The most generic solution is to re-fetch the latest src.rpm , and - rebuild it locally with</p> - <p><code>rpm --rebuild libxml(2)-xxx.src.rpm</code>.</p> - <p>If everything goes well it will generate two binary rpm packages (one - providing the shared libs and xmllint, and the other one, the -devel - package, providing includes, static libraries and scripts needed to build - applications with libxml(2)) that you can install locally.</p> - </li> -</ol> - -<h3><a name="Compilatio">Compilation</a></h3> -<ol> - <li><em>What is the process to compile libxml2 ?</em> - <p>As most UNIX libraries libxml2 follows the "standard":</p> - <p><code>gunzip -c xxx.tar.gz | tar xvf -</code></p> - <p><code>cd libxml-xxxx</code></p> - <p><code>./configure --help</code></p> - <p>to see the options, then the compilation/installation proper</p> - <p><code>./configure [possible options]</code></p> - <p><code>make</code></p> - <p><code>make install</code></p> - <p>At that point you may have to rerun ldconfig or a similar utility to - update your list of installed shared libs.</p> - </li> - <li><em>What other libraries are needed to compile/install libxml2 ?</em> - <p>Libxml2 does not require any other library, the normal C ANSI API - should be sufficient (please report any violation to this rule you may - find).</p> - <p>However if found at configuration time libxml2 will detect and use the - following libs:</p> - <ul> - <li><a href="http://www.info-zip.org/pub/infozip/zlib/">libz</a> : a - highly portable and available widely compression library.</li> - <li>iconv: a powerful character encoding conversion library. It is - included by default in recent glibc libraries, so it doesn't need to - be installed specifically on Linux. It now seems a <a - href="http://www.opennc.org/onlinepubs/7908799/xsh/iconv.html">part - of the official UNIX</a> specification. Here is one <a - href="http://www.gnu.org/software/libiconv/">implementation of the - library</a> which source can be found <a - href="ftp://ftp.ilog.fr/pub/Users/haible/gnu/">here</a>.</li> - </ul> - </li> - <p></p> - <li><em>Make check fails on some platforms</em> - <p>Sometimes the regression tests' results don't completely match the - value produced by the parser, and the makefile uses diff to print the - delta. On some platforms the diff return breaks the compilation process; - if the diff is small this is probably not a serious problem.</p> - <p>Sometimes (especially on Solaris) make checks fail due to limitations - in make. Try using GNU-make instead.</p> - </li> - <li><em>I use the SVN version and there is no configure script</em> - <p>The configure script (and other Makefiles) are generated. Use the - autogen.sh script to regenerate the configure script and Makefiles, - like:</p> - <p><code>./autogen.sh --prefix=/usr --disable-shared</code></p> - </li> - <li><em>I have troubles when running make tests with gcc-3.0</em> - <p>It seems the initial release of gcc-3.0 has a problem with the - optimizer which miscompiles the URI module. Please use another - compiler.</p> - </li> -</ol> - -<h3><a name="Developer">Developer</a> corner</h3> -<ol> - <li><em>Troubles compiling or linking programs using libxml2</em> - <p>Usually the problem comes from the fact that the compiler doesn't get - the right compilation or linking flags. There is a small shell script - <code>xml2-config</code> which is installed as part of libxml2 usual - install process which provides those flags. Use</p> - <p><code>xml2-config --cflags</code></p> - <p>to get the compilation flags and</p> - <p><code>xml2-config --libs</code></p> - <p>to get the linker flags. Usually this is done directly from the - Makefile as:</p> - <p><code>CFLAGS=`xml2-config --cflags`</code></p> - <p><code>LIBS=`xml2-config --libs`</code></p> - </li> - <li><em>I want to install my own copy of libxml2 in my home directory and - link my programs against it, but it doesn't work</em> - <p>There are many different ways to accomplish this. Here is one way to - do this under Linux. Suppose your home directory is <code>/home/user. - </code>Then:</p> - <ul> - <li>Create a subdirectory, let's call it <code>myxml</code></li> - <li>unpack the libxml2 distribution into that subdirectory</li> - <li>chdir into the unpacked distribution - (<code>/home/user/myxml/libxml2 </code>)</li> - <li>configure the library using the "<code>--prefix</code>" switch, - specifying an installation subdirectory in - <code>/home/user/myxml</code>, e.g. - <p><code>./configure --prefix /home/user/myxml/xmlinst</code> {other - configuration options}</p> - </li> - <li>now run <code>make</code> followed by <code>make install</code></li> - <li>At this point, the installation subdirectory contains the complete - "private" include files, library files and binary program files (e.g. - xmllint), located in - <p><code>/home/user/myxml/xmlinst/lib, - /home/user/myxml/xmlinst/include </code> and <code> - /home/user/myxml/xmlinst/bin</code></p> - respectively.</li> - <li>In order to use this "private" library, you should first add it to - the beginning of your default PATH (so that your own private program - files such as xmllint will be used instead of the normal system - ones). To do this, the Bash command would be - <p><code>export PATH=/home/user/myxml/xmlinst/bin:$PATH</code></p> - </li> - <li>Now suppose you have a program <code>test1.c</code> that you would - like to compile with your "private" library. Simply compile it using - the command - <p><code>gcc `xml2-config --cflags --libs` -o test test.c</code></p> - Note that, because your PATH has been set with <code> - /home/user/myxml/xmlinst/bin</code> at the beginning, the xml2-config - program which you just installed will be used instead of the system - default one, and this will <em>automatically</em> get the correct - libraries linked with your program.</li> - </ul> - </li> - - <p></p> - <li><em>xmlDocDump() generates output on one line.</em> - <p>Libxml2 will not <strong>invent</strong> spaces in the content of a - document since <strong>all spaces in the content of a document are - significant</strong>. If you build a tree from the API and want - indentation:</p> - <ol> - <li>the correct way is to generate those yourself too.</li> - <li>the dangerous way is to ask libxml2 to add those blanks to your - content <strong>modifying the content of your document in the - process</strong>. The result may not be what you expect. There is - <strong>NO</strong> way to guarantee that such a modification won't - affect other parts of the content of your document. See <a - href="http://xmlsoft.org/html/libxml-parser.html#xmlKeepBlanksDefault">xmlKeepBlanksDefault - ()</a> and <a - href="http://xmlsoft.org/html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile - ()</a></li> - </ol> - </li> - <p></p> - <li><em>Extra nodes in the document:</em> - <p><em>For an XML file as below:</em></p> - <pre><?xml version="1.0"?> -<PLAN xmlns="http://www.argus.ca/autotest/1.0/"> -<NODE CommFlag="0"/> -<NODE CommFlag="1"/> -</PLAN></pre> - <p><em>after parsing it with the function - pxmlDoc=xmlParseFile(...);</em></p> - <p><em>I want to the get the content of the first node (node with the - CommFlag="0")</em></p> - <p><em>so I did it as following;</em></p> - <pre>xmlNodePtr pnode; -pnode=pxmlDoc->children->children;</pre> - <p><em>but it does not work. If I change it to</em></p> - <pre>pnode=pxmlDoc->children->children->next;</pre> - <p><em>then it works. Can someone explain it to me.</em></p> - <p></p> - <p>In XML all characters in the content of the document are significant - <strong>including blanks and formatting line breaks</strong>.</p> - <p>The extra nodes you are wondering about are just that, text nodes with - the formatting spaces which are part of the document but that people tend - to forget. There is a function <a - href="http://xmlsoft.org/html/libxml-parser.html">xmlKeepBlanksDefault - ()</a> to remove those at parse time, but that's an heuristic, and its - use should be limited to cases where you are certain there is no - mixed-content in the document.</p> - </li> - <li><em>I get compilation errors of existing code like when accessing - <strong>root</strong> or <strong>child fields</strong> of nodes.</em> - <p>You are compiling code developed for libxml version 1 and using a - libxml2 development environment. Either switch back to libxml v1 devel or - even better fix the code to compile with libxml2 (or both) by <a - href="upgrade.html">following the instructions</a>.</p> - </li> - <li><em>I get compilation errors about non existing - <strong>xmlRootNode</strong> or <strong>xmlChildrenNode</strong> - fields.</em> - <p>The source code you are using has been <a - href="upgrade.html">upgraded</a> to be able to compile with both libxml - and libxml2, but you need to install a more recent version: - libxml(-devel) >= 1.8.8 or libxml2(-devel) >= 2.1.0</p> - </li> - <li><em>XPath implementation looks seriously broken</em> - <p>XPath implementation prior to 2.3.0 was really incomplete. Upgrade to - a recent version, there are no known bugs in the current version.</p> - </li> - <li><em>The example provided in the web page does not compile.</em> - <p>It's hard to maintain the documentation in sync with the code - <grin/> ...</p> - <p>Check the previous points 1/ and 2/ raised before, and please send - patches.</p> - </li> - <li><em>Where can I get more examples and information than provided on the - web page?</em> - <p>Ideally a libxml2 book would be nice. I have no such plan ... But you - can:</p> - <ul> - <li>check more deeply the <a href="html/libxml-lib.html">existing - generated doc</a></li> - <li>have a look at <a href="examples/index.html">the set of - examples</a>.</li> - <li>look for examples of use for libxml2 function using the Gnome code. -<!-- - For example the following will query the full Gnome CVS base for the - use of the <strong>xmlAddChild()</strong> function: - <p><a - href="http://cvs.gnome.org/lxr/search?string=xmlAddChild">http://cvs.gnome.org/lxr/search?string=xmlAddChild</a></p> - <p>This may be slow, a large hardware donation to the gnome project - could cure this :-)</p> ---> - </li> - <li><a - href="http://svn.gnome.org/viewcvs/libxml2/trunk/">Browse - the libxml2 source</a> , I try to write code as clean and documented - as possible, so looking at it may be helpful. In particular the code - of <a href="http://svn.gnome.org/viewcvs/libxml2/trunk/xmllint.c?view=markup">xmllint.c</a> and of the various testXXX.c test programs should - provide good examples of how to do things with the library.</li> - </ul> - </li> - <p></p> - <li><em>What about C++ ?</em> - <p>libxml2 is written in pure C in order to allow easy reuse on a number - of platforms, including embedded systems. I don't intend to convert to - C++.</p> - <p>There is however a C++ wrapper which may fulfill your needs:</p> - <ul> - <li>by Ari Johnson <ari@btigate.com>: - <p>Website: <a - href="http://libxmlplusplus.sourceforge.net/">http://libxmlplusplus.sourceforge.net/</a></p> - <p>Download: <a - href="http://sourceforge.net/project/showfiles.php?group_id=12999">http://sourceforge.net/project/showfiles.php?group_id=12999</a></p> - </li> - <!-- Website is currently unavailable as of 2003-08-02 - <li>by Peter Jones <pjones@pmade.org> - <p>Website: <a - href="http://pmade.org/pjones/software/xmlwrapp/">http://pmade.org/pjones/software/xmlwrapp/</a></p> - </li> - --> - </ul> - </li> - <li><em>How to validate a document a posteriori ?</em> - <p>It is possible to validate documents which had not been validated at - initial parsing time or documents which have been built from scratch - using the API. Use the <a - href="http://xmlsoft.org/html/libxml-valid.html#xmlValidateDtd">xmlValidateDtd()</a> - function. It is also possible to simply add a DTD to an existing - document:</p> - <pre>xmlDocPtr doc; /* your existing document */ -xmlDtdPtr dtd = xmlParseDTD(NULL, filename_of_dtd); /* parse the DTD */ - - dtd->name = xmlStrDup((xmlChar*)"root_name"); /* use the given root */ - - doc->intSubset = dtd; - if (doc->children == NULL) xmlAddChild((xmlNodePtr)doc, (xmlNodePtr)dtd); - else xmlAddPrevSibling(doc->children, (xmlNodePtr)dtd); - </pre> - </li> - <li><em>So what is this funky "xmlChar" used all the time?</em> - <p>It is a null terminated sequence of utf-8 characters. And only utf-8! - You need to convert strings encoded in different ways to utf-8 before - passing them to the API. This can be accomplished with the iconv library - for instance.</p> - </li> - <li>etc ...</li> -</ol> - -<p></p> - -<h2><a name="Documentat">Developer Menu</a></h2> - -<p>There are several on-line resources related to using libxml:</p> -<ol> - <li>Use the <a href="search.php">search engine</a> to look up - information.</li> - <li>Check the <a href="FAQ.html">FAQ.</a></li> - <li>Check the <a href="http://xmlsoft.org/html/libxml-lib.html">extensive - documentation</a> automatically extracted from code comments.</li> - <li>Look at the documentation about <a href="encoding.html">libxml - internationalization support</a>.</li> - <li>This page provides a global overview and <a href="example.html">some - examples</a> on how to use libxml.</li> - <li><a href="examples/index.html">Code examples</a></li> - <li>John Fleck's libxml2 tutorial: <a href="tutorial/index.html">html</a> - or <a href="tutorial/xmltutorial.pdf">pdf</a>.</li> - <li>If you need to parse large files, check the <a - href="xmlreader.html">xmlReader</a> API tutorial</li> - <li><a href="mailto:james@daa.com.au">James Henstridge</a> wrote <a - href="http://www.daa.com.au/~james/gnome/xml-sax/xml-sax.html">some nice - documentation</a> explaining how to use the libxml SAX interface.</li> - <li>George Lebl wrote <a - href="http://www-106.ibm.com/developerworks/library/l-gnome3/">an article - for IBM developerWorks</a> about using libxml.</li> - <li>Check <a href="http://svn.gnome.org/viewcvs/libxml2/trunk/TODO?view=markup">the TODO - file</a>.</li> - <li>Read the <a href="upgrade.html">1.x to 2.x upgrade path</a> - description. If you are starting a new project using libxml you should - really use the 2.x version.</li> - <li>And don't forget to look at the <a - href="http://mail.gnome.org/archives/xml/">mailing-list archive</a>.</li> -</ol> - -<h2><a name="Reporting">Reporting bugs and getting help</a></h2> - -<p>Well, bugs or missing features are always possible, and I will make a -point of fixing them in a timely fashion. The best way to report a bug is to -use the <a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Gnome -bug tracking database</a> (make sure to use the "libxml2" module name). I -look at reports there regularly and it's good to have a reminder when a bug -is still open. Be sure to specify that the bug is for the package libxml2.</p> - -<p>For small problems you can try to get help on IRC, the #xml channel on -irc.gnome.org (port 6667) usually have a few person subscribed which may help -(but there is no guarantee and if a real issue is raised it should go on the -mailing-list for archival).</p> - -<p>There is also a mailing-list <a -href="mailto:xml@gnome.org">xml@gnome.org</a> for libxml, with an <a -href="http://mail.gnome.org/archives/xml/">on-line archive</a> (<a -href="http://xmlsoft.org/messages">old</a>). To subscribe to this list, -please visit the <a -href="http://mail.gnome.org/mailman/listinfo/xml">associated Web</a> page and -follow the instructions. <strong>Do not send code, I won't debug it</strong> -(but patches are really appreciated!).</p> - -<p>Please note that with the current amount of virus and SPAM, sending mail -to the list without being subscribed won't work. There is *far too many -bounces* (in the order of a thousand a day !) I cannot approve them manually -anymore. If your mail to the list bounced waiting for administrator approval, -it is LOST ! Repost it and fix the problem triggering the error. Also please -note that <span style="color: #FF0000; background-color: #FFFFFF">emails with -a legal warning asking to not copy or redistribute freely the information -they contain</span> are <strong>NOT</strong> acceptable for the mailing-list, -such mail will as much as possible be discarded automatically, and are less -likely to be answered if they made it to the list, <strong>DO NOT</strong> -post to the list from an email address where such legal requirements are -automatically added, get private paying support if you can't share -information.</p> - -<p>Check the following <strong><span style="color: #FF0000">before -posting</span></strong>:</p> -<ul> - <li>Read the <a href="FAQ.html">FAQ</a> and <a href="search.php">use the - search engine</a> to get information related to your problem.</li> - <li>Make sure you are <a href="ftp://xmlsoft.org/libxml2/">using a recent - version</a>, and that the problem still shows up in a recent version.</li> - <li>Check the <a href="http://mail.gnome.org/archives/xml/">list - archives</a> to see if the problem was reported already. In this case - there is probably a fix available, similarly check the <a - href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">registered - open bugs</a>.</li> - <li>Make sure you can reproduce the bug with xmllint or one of the test - programs found in source in the distribution.</li> - <li>Please send the command showing the error as well as the input (as an - attachment)</li> -</ul> - -<p>Then send the bug with associated information to reproduce it to the <a -href="mailto:xml@gnome.org">xml@gnome.org</a> list; if it's really libxml -related I will approve it. Please do not send mail to me directly, it makes -things really hard to track and in some cases I am not the best person to -answer a given question, ask on the list.</p> - -<p>To <span style="color: #E50000">be really clear about support</span>:</p> -<ul> - <li>Support or help <span style="color: #E50000">requests MUST be sent to - the list or on bugzilla</span> in case of problems, so that the Question - and Answers can be shared publicly. Failing to do so carries the implicit - message "I want free support but I don't want to share the benefits with - others" and is not welcome. I will automatically Carbon-Copy the - xml@gnome.org mailing list for any technical reply made about libxml2 or - libxslt.</li> - <li>There is <span style="color: #E50000">no guarantee of support</span>. If - your question remains unanswered after a week, repost it, making sure you - gave all the detail needed and the information requested.</li> - <li>Failing to provide information as requested or double checking first - for prior feedback also carries the implicit message "the time of the - library maintainers is less valuable than my time" and might not be - welcome.</li> -</ul> - -<p>Of course, bugs reported with a suggested patch for fixing them will -probably be processed faster than those without.</p> - -<p>If you're looking for help, a quick look at <a -href="http://mail.gnome.org/archives/xml/">the list archive</a> may actually -provide the answer. I usually send source samples when answering libxml2 -usage questions. The <a -href="http://xmlsoft.org/html/book1.html">auto-generated documentation</a> is -not as polished as I would like (i need to learn more about DocBook), but -it's a good starting point.</p> - -<h2><a name="help">How to help</a></h2> - -<p>You can help the project in various ways, the best thing to do first is to -subscribe to the mailing-list as explained before, check the <a -href="http://mail.gnome.org/archives/xml/">archives </a>and the <a -href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Gnome bug -database</a>:</p> -<ol> - <li>Provide patches when you find problems.</li> - <li>Provide the diffs when you port libxml2 to a new platform. They may not - be integrated in all cases but help pinpointing portability problems - and</li> - <li>Provide documentation fixes (either as patches to the code comments or - as HTML diffs).</li> - <li>Provide new documentations pieces (translations, examples, etc - ...).</li> - <li>Check the TODO file and try to close one of the items.</li> - <li>Take one of the points raised in the archive or the bug database and - provide a fix. <a href="mailto:daniel@veillard.com">Get in touch with me - </a>before to avoid synchronization problems and check that the suggested - fix will fit in nicely :-)</li> -</ol> - -<h2><a name="Downloads">Downloads</a></h2> - -<p>The latest versions of libxml2 can be found on the <a -href="ftp://xmlsoft.org/libxml2/">xmlsoft.org</a> server ( <a -href="ftp://xmlsoft.org/libxml2/">FTP</a> and rsync are available), there are also -mirrors (<a href="ftp://ftp.planetmirror.com/pub/xmlsoft/">Australia</a>( <a -href="http://xmlsoft.planetmirror.com/">Web</a>), <a -href="ftp://fr.rpmfind.net/pub/libxml/">France</a>) or on the <a -href="ftp://ftp.gnome.org/pub/GNOME/MIRRORS.html">Gnome FTP server</a> as <a -href="ftp://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/">source archive</a> -, Antonin Sprinzl also provide <a href="ftp://gd.tuwien.ac.at/pub/libxml/">a -mirror in Austria</a>. (NOTE that you need both the <a -href="http://rpmfind.net/linux/RPM/libxml2.html">libxml(2)</a> and <a -href="http://rpmfind.net/linux/RPM/libxml2-devel.html">libxml(2)-devel</a> -packages installed to compile applications using libxml.)</p> - -<p>You can find all the history of libxml(2) and libxslt releases in the <a -href="http://xmlsoft.org/sources/old/">old</a> directory. The precompiled -Windows binaries made by Igor Zlatovic are available in the <a -href="http://xmlsoft.org/sources/win32/">win32</a> directory.</p> - -<p>Binary ports:</p> -<ul> - <li>Red Hat RPMs for i386 are available directly on <a - href="ftp://xmlsoft.org/libxml2/">xmlsoft.org</a>, the source RPM will compile on - any architecture supported by Red Hat.</li> - <li><a href="mailto:igor@zlatkovic.com">Igor Zlatkovic</a> is now the - maintainer of the Windows port, <a - href="http://www.zlatkovic.com/projects/libxml/index.html">he provides - binaries</a>.</li> - <li>Blastwave provides <a - href="http://www.blastwave.org/packages.php/libxml2">Solaris - binaries</a>.</li> - <li><a href="mailto:Steve.Ball@explain.com.au">Steve Ball</a> provides <a - href="http://www.explain.com.au/oss/libxml2xslt.html">Mac Os X - binaries</a>.</li> - <li>The HP-UX porting center provides <a - href="http://hpux.connect.org.uk/hppd/hpux/Gnome/">HP-UX binaries</a></li> - <li>Bull provides precompiled <a - href="http://gnome.bullfreeware.com/new_index.html">RPMs for AIX</a> as - patr of their GNOME packages</li> -</ul> - -<p>If you know other supported binary ports, please <a -href="http://veillard.com/">contact me</a>.</p> - -<p><a name="Snapshot">Snapshot:</a></p> -<ul> - <li>Code from the W3C svn base libxml2 module, updated hourly <a - href="ftp://xmlsoft.org/libxml2/libxml2-cvs-snapshot.tar.gz">libxml2-cvs-snapshot.tar.gz</a>.</li> - <li>Docs, content of the web site, the list archive included <a - href="ftp://xmlsoft.org/libxml2/libxml-docs.tar.gz">libxml-docs.tar.gz</a>.</li> -</ul> - -<p><a name="Contribs">Contributions:</a></p> - -<p>I do accept external contributions, especially if compiling on another -platform, get in touch with the list to upload the package, wrappers for -various languages have been provided, and can be found in the <a -href="python.html">bindings section</a></p> - -<p>Libxml2 is also available from SVN:</p> -<ul> - <li><p>The <a href="http://svn.gnome.org/viewcvs/libxml2/trunk/">Gnome SVN - base</a>. Check the <a - href="http://developer.gnome.org/tools/svn.html">Gnome SVN Tools</a> - page; the SVN module is <b>libxml2</b>.</p> - </li> - <li>The <strong>libxslt</strong> module is also present there</li> -</ul> - -<h2><a name="News">Releases</a></h2> - -<p>Items not finished and worked on, get in touch with the list if you want -to help those</p> -<ul> - <li>More testing on RelaxNG</li> - <li>Finishing up <a href="http://www.w3.org/TR/xmlschema-1/">XML - Schemas</a></li> -</ul> - -<p>The <a href="ChangeLog.html">change log</a> describes the recents commits -to the <a href="http://svn.gnome.org/viewcvs/libxml2/trunk/">SVN</a> code base.</p> - -<p>Here is the list of public releases:</p> - -<h3>2.6.30: Aug 23 2007</h3> -<ul> - <li>Portability: Solaris crash on error handling, windows path fixes - (Roland Schwarz and Rob Richards), mingw build (Roland Schwarz)</li> - <li>Bugfixes: xmlXPathNodeSetSort problem (William Brack), leak when - reusing a writer for a new document (Dodji Seketeli), Schemas - xsi:nil handling patch (Frank Gross), relative URI build problem - (Patrik Fimml), crash in xmlDocFormatDump, invalid char in comment - detection bug, fix disparity with xmlSAXUserParseMemory, automata - generation for complex regexp counts problems, Schemas IDC import - problems (Frank Gross), xpath predicate evailation error handling - (William Brack)</li> -</ul> -<h3>2.6.29: Jun 12 2007</h3> -<ul> - <li>Portability: patches from Andreas Stricke for WinCEi, - fix compilation warnings (William Brack), avoid warnings on Apple OS/X - (Wendy Doyle and Mark Rowe), Windows compilation and threading - improvements (Rob Richards), compilation against old Python versions, - new GNU tar changes (Ryan Hill)</li> - <li>Documentation: xmlURIUnescapeString comment, </li> - <li>Bugfixes: xmlBufferAdd problem (Richard Jones), 'make valgrind' - flag fix (Richard Jones), regexp interpretation of \, - htmlCreateDocParserCtxt (Jean-Daniel Dupas), configure.in - typo (Bjorn Reese), entity content failure, xmlListAppend() fix - (Georges-André Silber), XPath number serialization (William Brack), - nanohttp gzipped stream fix (William Brack and Alex Cornejo), - xmlCharEncFirstLine typo (Mark Rowe), uri bug (François Delyon), - XPath string value of PI nodes (William Brack), XPath node set - sorting bugs (William Brack), avoid outputting namespace decl - dups in the writer (Rob Richards), xmlCtxtReset bug, UTF-8 encoding - error handling, recustion on next in catalogs, fix a Relax-NG crash, - workaround wrong file: URIs, htmlNodeDumpFormatOutput on attributes, - invalid character in attribute detection bug, big comments before - internal subset streaming bug, HTML parsing of attributes with : in - the name, IDness of name in HTML (Dagfinn I. Mannsåker) </li> - <li>Improvement: keep URI query parts in raw form (Richard Jones), - embed tag support in HTML (Michael Day) </li> -</ul> - -<h3>2.6.28: Apr 17 2007</h3> -<ul> - <li>Documentation: comment fixes (Markus Keim), xpath comments fixes too - (James Dennett)</li> - <li>Bug fixes: XPath bug (William Brack), HTML parser autoclose stack usage - (Usamah Malik), various regexp bug fixes (DV and William), path conversion - on Windows (Igor Zlatkovic), htmlCtxtReset fix (Michael Day), XPath - principal node of axis bug, HTML serialization of some codepoint - (Steven Rainwater), user data propagation in XInclude (Michael Day), - standalone and XML decl detection (Michael Day), Python id ouptut - for some id, fix the big python string memory leak, URI parsing fixes - (Stéphane Bidoul and William), long comments parsing bug (William), - concurrent threads initialization (Ted Phelps), invalid char - in text XInclude (William), XPath memory leak (William), tab in - python problems (Andreas Hanke), XPath node comparison error - (Oleg Paraschenko), cleanup patch for reader (Julien Reichel), - XML Schemas attribute group (William), HTML parsing problem (William), - fix char 0x2d in regexps (William), regexp quantifier range with - min occurs of 0 (William), HTML script/style parsing (Mike Day)</li> - <li>Improvement: make xmlTextReaderSetup() public</li> - <li>Compilation and postability: fix a missing include problem (William), - __ss_familly on AIX again (Björn Wiberg), compilation without zlib - (Michael Day), catalog patch for Win32 (Christian Ehrlicher), - Windows CE fixes (Andreas Stricke)</li> - <li>Various CVS to SVN infrastructure changes</li> -</ul> -<h3>2.6.27: Oct 25 2006</h3> -<ul> - <li>Portability fixes: file names on windows (Roland Schwingel, - Emelyanov Alexey), windows compile fixup (Rob Richards), - AIX iconv() is apparently case sensitive</li> - <li>improvements: Python XPath types mapping (Nic Ferrier), XPath optimization - (Kasimier), add xmlXPathCompiledEvalToBoolean (Kasimier), Python node - equality and comparison (Andreas Pakulat), xmlXPathCollectAndTest - improvememt (Kasimier), expose if library was compiled with zlib - support (Andrew Nosenko), cache for xmlSchemaIDCMatcher structs - (Kasimier), xmlTextConcat should work with comments and PIs (Rob - Richards), export htmlNewParserCtxt needed by Michael Day, refactoring - of catalog entity loaders (Michael Day), add XPointer support to - python bindings (Ross Reedstrom, Brian West and Stefan Anca), - try to sort out most file path to URI conversions and xmlPathToUri, - add --html --memory case to xmllint</li> - <li>building fix: fix --with-minimum (Felipe Contreras), VMS fix, - const'ification of HTML parser structures (Matthias Clasen), - portability fix (Emelyanov Alexey), wget autodetection (Peter - Breitenlohner), remove the build path recorded in the python - shared module, separate library flags for shared and static builds - (Mikhail Zabaluev), fix --with-minimum --with-sax1 builds, fix - --with-minimum --with-schemas builds</li> - <li>bug fix: xmlGetNodePath fix (Kasimier), xmlDOMWrapAdoptNode and - attribute (Kasimier), crash when using the recover mode, - xmlXPathEvalExpr problem (Kasimier), xmlXPathCompExprAdd bug (Kasimier), - missing destry in xmlFreeRMutex (Andrew Nosenko), XML Schemas fixes - (Kasimier), warning on entities processing, XHTML script and style - serialization (Kasimier), python generator for long types, bug in - xmlSchemaClearValidCtxt (Bertrand Fritsch), xmlSchemaXPathEvaluate - allocation bug (Marton Illes), error message end of line (Rob Richards), - fix attribute serialization in writer (Rob Richards), PHP4 DTD validation - crasher, parser safety patch (Ben Darnell), _private context propagation - when parsing entities (with Michael Day), fix entities behaviour when - using SAX, URI to file path fix (Mikhail Zabaluev), disapearing validity - context, arg error in SAX callback (Mike Hommey), fix mixed-content - autodetect when using --noblanks, fix xmlIOParseDTD error handling, - fix bug in xmlSplitQName on special Names, fix Relax-NG element content - validation bug, fix xmlReconciliateNs bug, fix potential attribute - XML parsing bug, fix line/column accounting in XML parser, chunking bug - in the HTML parser on script, try to detect obviously buggy HTML - meta encoding indications, bugs with encoding BOM and xmlSaveDoc, - HTML entities in attributes parsing, HTML minimized attribute values, - htmlReadDoc and htmlReadIO were broken, error handling bug in - xmlXPathEvalExpression (Olaf Walkowiak), fix a problem in - htmlCtxtUseOptions, xmlNewInputFromFile could leak (Marius Konitzer), - bug on misformed SSD regexps (Christopher Boumenot) - </li> - <li>documentation: warning about XML_PARSE_COMPACT (Kasimier Buchcik), - fix xmlXPathCastToString documentation, improve man pages for - xmllitn and xmlcatalog (Daniel Leidert), fixed comments of a few - functions</li> -</ul> -<h3>2.6.26: Jun 6 2006</h3> -<ul> - <li>portability fixes: Python detection (Joseph Sacco), compilation - error(William Brack and Graham Bennett), LynxOS patch (Olli Savia)</li> - <li>bug fixes: encoding buffer problem, mix of code and data in - xmlIO.c(Kjartan Maraas), entities in XSD validation (Kasimier Buchcik), - variousXSD validation fixes (Kasimier), memory leak in pattern (Rob - Richards andKasimier), attribute with colon in name (Rob Richards), XPath - leak inerror reporting (Aleksey Sanin), XInclude text include of - selfdocument.</li> - <li>improvements: Xpath optimizations (Kasimier), XPath object - cache(Kasimier)</li> -</ul> - -<h3>2.6.25: Jun 6 2006:</h3> - -<p>Do not use or package 2.6.25</p> - -<h3>2.6.24: Apr 28 2006</h3> -<ul> - <li>Portability fixes: configure on Windows, testapi compile on windows - (Kasimier Buchcik, venkat naidu), Borland C++ 6 compile (Eric Zurcher), - HP-UX compiler workaround (Rick Jones), xml2-config bugfix, gcc-4.1 - cleanups, Python detection scheme (Joseph Sacco), UTF-8 file paths on - Windows (Roland Schwingel). - </li> - <li>Improvements: xmlDOMWrapReconcileNamespaces xmlDOMWrapCloneNode (Kasimier - Buchcik), XML catalog debugging (Rick Jones), update to Unicode 4.01.</li> - <li>Bug fixes: xmlParseChunk() problem in 2.6.23, xmlParseInNodeContext() - on HTML docs, URI behaviour on Windows (Rob Richards), comment streaming - bug, xmlParseComment (with William Brack), regexp bug fixes (DV & - Youri Golovanov), xmlGetNodePath on text/CDATA (Kasimier), - one Relax-NG interleave bug, xmllint --path and --valid, - XSD bugfixes (Kasimier), remove debug - left in Python bindings (Nic Ferrier), xmlCatalogAdd bug (Martin Cole), - xmlSetProp fixes (Rob Richards), HTML IDness (Rob Richards), a large - number of cleanups and small fixes based on Coverity reports, bug - in character ranges, Unicode tables const (Aivars Kalvans), schemas - fix (Stefan Kost), xmlRelaxNGParse error deallocation, - xmlSchemaAddSchemaDoc error deallocation, error handling on unallowed - code point, ixmllint --nonet to never reach the net (Gary Coady), - line break in writer after end PI (Jason Viers). </li> - <li>Documentation: man pages updates and cleanups (Daniel Leidert).</li> - <li>New features: Relax NG structure error handlers.</li> -</ul> - -<h3>2.6.23: Jan 5 2006</h3> -<ul> - <li>portability fixes: Windows (Rob Richards), getaddrinfo on Windows - (Kolja Nowak, Rob Richards), icc warnings (Kjartan Maraas), - --with-minimum compilation fixes (William Brack), error case handling fix - on Solaris (Albert Chin), don't use 'list' as parameter name reported by - Samuel Diaz Garcia, more old Unices portability fixes (Albert Chin), - MinGW compilation (Mark Junker), HP-UX compiler warnings (Rick - Jones),</li> - <li>code cleanup: xmlReportError (Adrian Mouat), remove xmlBufferClose - (Geert Jansen), unreachable code (Oleksandr Kononenko), refactoring - parsing code (Bjorn Reese)</li> - <li>bug fixes: xmlBuildRelativeURI and empty path (William Brack), - combinatory explosion and performances in regexp code, leak in - xmlTextReaderReadString(), xmlStringLenDecodeEntities problem (Massimo - Morara), Identity Constraints bugs and a segfault (Kasimier Buchcik), - XPath pattern based evaluation bugs (DV & Kasimier), - xmlSchemaContentModelDump() memory leak (Kasimier), potential leak in - xmlSchemaCheckCSelectorXPath(), xmlTextWriterVSprintf() misuse of - vsnprintf (William Brack), XHTML serialization fix (Rob Richards), CRLF - split problem (William), issues with non-namespaced attributes in - xmlAddChild() xmlAddNextSibling() and xmlAddPrevSibling() (Rob Richards), - HTML parsing of script, Python must not output to stdout (Nic Ferrier), - exclusive C14N namespace visibility (Aleksey Sanin), XSD dataype - totalDigits bug (Kasimier Buchcik), error handling when writing to an - xmlBuffer (Rob Richards), runtest schemas error not reported (Hisashi - Fujinaka), signed/unsigned problem in date/time code (Albert Chin), fix - XSI driven XSD validation (Kasimier), parsing of xs:decimal (Kasimier), - fix DTD writer output (Rob Richards), leak in xmlTextReaderReadInnerXml - (Gary Coady), regexp bug affecting schemas (Kasimier), configuration of - runtime debugging (Kasimier), xmlNodeBufGetContent bug on entity refs - (Oleksandr Kononenko), xmlRegExecPushString2 bug (Sreeni Nair), - compilation and build fixes (Michael Day), removed dependancies on - xmlSchemaValidError (Kasimier), bug with <xml:foo/>, more XPath - pattern based evaluation fixes (Kasimier)</li> - <li>improvements: XSD Schemas redefinitions/restrictions (Kasimier - Buchcik), node copy checks and fix for attribute (Rob Richards), counted - transition bug in regexps, ctxt->standalone = -2 to indicate no - standalone attribute was found, add xmlSchemaSetParserStructuredErrors() - (Kasimier Buchcik), add xmlTextReaderSchemaValidateCtxt() to API - (Kasimier), handle gzipped HTTP resources (Gary Coady), add - htmlDocDumpMemoryFormat. (Rob Richards),</li> - <li>documentation: typo (Michael Day), libxml man page (Albert Chin), save - function to XML buffer (Geert Jansen), small doc fix (Aron Stansvik),</li> -</ul> - -<h3>2.6.22: Sep 12 2005</h3> -<ul> - <li>build fixes: compile without schematron (Stéphane Bidoul)</li> - <li>bug fixes: xmlDebugDumpNode on namespace node (Oleg Paraschenko)i, - CDATA push parser bug, xmlElemDump problem with XHTML1 doc, - XML_FEATURE_xxx clash with expat headers renamed XML_WITH_xxx, fix some - output formatting for meta element (Rob Richards), script and style - XHTML1 serialization (David Madore), Attribute derivation fixups in XSD - (Kasimier Buchcik), better IDC error reports (Kasimier Buchcik)</li> - <li>improvements: add XML_SAVE_NO_EMPTY xmlSaveOption (Rob Richards), add - XML_SAVE_NO_XHTML xmlSaveOption, XML Schemas improvements preparing for - derive (Kasimier Buchcik).</li> - <li>documentation: generation of gtk-doc like docs, integration with - devhelp.</li> -</ul> - -<h3>2.6.21: Sep 4 2005</h3> -<ul> - <li>build fixes: Cygwin portability fixes (Gerrit P. Haase), calling - convention problems on Windows (Marcus Boerger), cleanups based on Linus' - sparse tool, update of win32/configure.js (Rob Richards), remove warnings - on Windows(Marcus Boerger), compilation without SAX1, detection of the - Python binary, use $GCC inestad of $CC = 'gcc' (Andrew W. Nosenko), - compilation/link with threads and old gcc, compile problem by C370 on - Z/OS,</li> - <li>bug fixes: http_proxy environments (Peter Breitenlohner), HTML UTF-8 - bug (Jiri Netolicky), XPath NaN compare bug (William Brack), - htmlParseScript potential bug, Schemas regexp handling of spaces, Base64 - Schemas comparisons NIST passes, automata build error xsd:all, - xmlGetNodePath for namespaced attributes (Alexander Pohoyda), xmlSchemas - foreign namespaces handling, XML Schemas facet comparison (Kupriyanov - Anatolij), xmlSchemaPSimpleTypeErr error report (Kasimier Buchcik), xml: - namespace ahndling in Schemas (Kasimier), empty model group in Schemas - (Kasimier), wilcard in Schemas (Kasimier), URI composition (William), - xs:anyType in Schemas (Kasimier), Python resolver emmitting error - messages directly, Python xmlAttr.parent (Jakub Piotr Clapa), trying to - fix the file path/URI conversion, xmlTextReaderGetAttribute fix (Rob - Richards), xmlSchemaFreeAnnot memleak (Kasimier), HTML UTF-8 - serialization, streaming XPath, Schemas determinism detection problem, - XInclude bug, Schemas context type (Dean Hill), validation fix (Derek - Poon), xmlTextReaderGetAttribute[Ns] namespaces (Rob Richards), Schemas - type fix (Kuba Nowakowski), UTF-8 parser bug, error in encoding handling, - xmlGetLineNo fixes, bug on entities handling, entity name extraction in - error handling with XInclude, text nodes in HTML body tags (Gary Coady), - xml:id and IDness at the treee level fixes, XPath streaming patterns - bugs.</li> - <li>improvements: structured interfaces for schemas and RNG error reports - (Marcus Boerger), optimization of the char data inner loop parsing - (thanks to Behdad Esfahbod for the idea), schematron validation though - not finished yet, xmlSaveOption to omit XML declaration, keyref match - error reports (Kasimier), formal expression handling code not plugged - yet, more lax mode for the HTML parser, parser XML_PARSE_COMPACT option - for text nodes allocation.</li> - <li>documentation: xmllint man page had --nonet duplicated</li> -</ul> - -<h3>2.6.20: Jul 10 2005</h3> -<ul> - <li>build fixes: Windows build (Rob Richards), Mingw compilation (Igor - Zlatkovic), Windows Makefile (Igor), gcc warnings (Kasimier and - andriy@google.com), use gcc weak references to pthread to avoid the - pthread dependancy on Linux, compilation problem (Steve Nairn), compiling - of subset (Morten Welinder), IPv6/ss_family compilation (William Brack), - compilation when disabling parts of the library, standalone test - distribution.</li> - <li>bug fixes: bug in lang(), memory cleanup on errors (William Brack), - HTTP query strings (Aron Stansvik), memory leak in DTD (William), integer - overflow in XPath (William), nanoftp buffer size, pattern "." apth fixup - (Kasimier), leak in tree reported by Malcolm Rowe, replaceNode patch - (Brent Hendricks), CDATA with NULL content (Mark Vakoc), xml:base fixup - on XInclude (William), pattern fixes (William), attribute bug in - exclusive c14n (Aleksey Sanin), xml:space and xml:lang with SAX2 (Rob - Richards), namespace trouble in complex parsing (Malcolm Rowe), XSD type - QNames fixes (Kasimier), XPath streaming fixups (William), RelaxNG bug - (Rob Richards), Schemas for Schemas fixes (Kasimier), removal of ID (Rob - Richards), a small RelaxNG leak, HTML parsing in push mode bug (James - Bursa), failure to detect UTF-8 parsing bugs in CDATA sections, - areBlanks() heuristic failure, duplicate attributes in DTD bug - (William).</li> - <li>improvements: lot of work on Schemas by Kasimier Buchcik both on - conformance and streaming, Schemas validation messages (Kasimier Buchcik, - Matthew Burgess), namespace removal at the python level (Brent - Hendricks), Update to new Schemas regression tests from W3C/Nist - (Kasimier), xmlSchemaValidateFile() (Kasimier), implementation of - xmlTextReaderReadInnerXml and xmlTextReaderReadOuterXml (James Wert), - standalone test framework and programs, new DOM import APIs - xmlDOMWrapReconcileNamespaces() xmlDOMWrapAdoptNode() and - xmlDOMWrapRemoveNode(), extension of xmllint capabilities for SAX and - Schemas regression tests, xmlStopParser() available in pull mode too, - ienhancement to xmllint --shell namespaces support, Windows port of the - standalone testing tools (Kasimier and William), - xmlSchemaValidateStream() xmlSchemaSAXPlug() and xmlSchemaSAXUnplug() SAX - Schemas APIs, Schemas xmlReader support.</li> -</ul> - -<h3>2.6.19: Apr 02 2005</h3> -<ul> - <li>build fixes: drop .la from RPMs, --with-minimum build fix (William - Brack), use XML_SOCKLEN_T instead of SOCKLEN_T because it breaks with AIX - 5.3 compiler, fixed elfgcchack.h generation and PLT reduction code on - Linux/ELF/gcc4</li> - <li>bug fixes: schemas type decimal fixups (William Brack), xmmlint return - code (Gerry Murphy), small schemas fixes (Matthew Burgess and GUY - Fabrice), workaround "DAV:" namespace brokeness in c14n (Aleksey Sanin), - segfault in Schemas (Kasimier Buchcik), Schemas attribute validation - (Kasimier), Prop related functions and xmlNewNodeEatName (Rob Richards), - HTML serialization of name attribute on a elements, Python error handlers - leaks and improvement (Brent Hendricks), uninitialized variable in - encoding code, Relax-NG validation bug, potential crash if - gnorableWhitespace is NULL, xmlSAXParseDoc and xmlParseDoc signatures, - switched back to assuming UTF-8 in case no encoding is given at - serialization time</li> - <li>improvements: lot of work on Schemas by Kasimier Buchcik on facets - checking and also mixed handling.</li> - <li></li> -</ul> - -<h3>2.6.18: Mar 13 2005</h3> -<ul> - <li>build fixes: warnings (Peter Breitenlohner), testapi.c generation, - Bakefile support (Francesco Montorsi), Windows compilation (Joel Reed), - some gcc4 fixes, HP-UX portability fixes (Rick Jones).</li> - <li>bug fixes: xmlSchemaElementDump namespace (Kasimier Buchcik), push and - xmlreader stopping on non-fatal errors, thread support for dictionnaries - reference counting (Gary Coady), internal subset and push problem, URL - saved in xmlCopyDoc, various schemas bug fixes (Kasimier), Python paths - fixup (Stephane Bidoul), xmlGetNodePath and namespaces, xmlSetNsProp fix - (Mike Hommey), warning should not count as error (William Brack), - xmlCreatePushParser empty chunk, XInclude parser flags (William), cleanup - FTP and HTTP code to reuse the uri parsing and IPv6 (William), - xmlTextWriterStartAttributeNS fix (Rob Richards), XMLLINT_INDENT being - empty (William), xmlWriter bugs (Rob Richards), multithreading on Windows - (Rich Salz), xmlSearchNsByHref fix (Kasimier), Python binding leak (Brent - Hendricks), aliasing bug exposed by gcc4 on s390, xmlTextReaderNext bug - (Rob Richards), Schemas decimal type fixes (William Brack), - xmlByteConsumed static buffer (Ben Maurer).</li> - <li>improvement: speedup parsing comments and DTDs, dictionnary support for - hash tables, Schemas Identity constraints (Kasimier), streaming XPath - subset, xmlTextReaderReadString added (Bjorn Reese), Schemas canonical - values handling (Kasimier), add xmlTextReaderByteConsumed (Aron - Stansvik),</li> - <li>Documentation: Wiki support (Joel Reed)</li> -</ul> - -<h3>2.6.17: Jan 16 2005</h3> -<ul> - <li>build fixes: Windows, warnings removal (William Brack), - maintainer-clean dependency(William), build in a different directory - (William), fixing --with-minimum configure build (William), BeOS build - (Marcin Konicki), Python-2.4 detection (William), compilation on AIX (Dan - McNichol)</li> - <li>bug fixes: xmlTextReaderHasAttributes (Rob Richards), xmlCtxtReadFile() - to use the catalog(s), loop on output (William Brack), XPath memory leak, - ID deallocation problem (Steve Shepard), debugDumpNode crash (William), - warning not using error callback (William), xmlStopParser bug (William), - UTF-16 with BOM on DTDs (William), namespace bug on empty elements in - push mode (Rob Richards), line and col computations fixups (Aleksey - Sanin), xmlURIEscape fix (William), xmlXPathErr on bad range (William), - patterns with too many steps, bug in RNG choice optimization, line number - sometimes missing.</li> - <li>improvements: XSD Schemas (Kasimier Buchcik), python generator - (William), xmlUTF8Strpos speedup (William), unicode Python strings - (William), XSD error reports (Kasimier Buchcik), Python __str__ call - serialize().</li> - <li>new APIs: added xmlDictExists(), GetLineNumber and GetColumnNumber for - the xmlReader (Aleksey Sanin), Dynamic Shared Libraries APIs (mostly Joel - Reed), error extraction API from regexps, new XMLSave option for format - (Phil Shafer)</li> - <li>documentation: site improvement (John Fleck), FAQ entries - (William).</li> -</ul> - -<h3>2.6.16: Nov 10 2004</h3> -<ul> - <li>general hardening and bug fixing crossing all the API based on new - automated regression testing</li> - <li>build fix: IPv6 build and test on AIX (Dodji Seketeli)</li> - <li>bug fixes: problem with XML::Libxml reported by Petr Pajas, encoding - conversion functions return values, UTF-8 bug affecting XPath reported by - Markus Bertheau, catalog problem with NULL entries (William Brack)</li> - <li>documentation: fix to xmllint man page, some API function descritpion - were updated.</li> - <li>improvements: DTD validation APIs provided at the Python level (Brent - Hendricks)</li> -</ul> - -<h3>2.6.15: Oct 27 2004</h3> -<ul> - <li>security fixes on the nanoftp and nanohttp modules</li> - <li>build fixes: xmllint detection bug in configure, building outside the - source tree (Thomas Fitzsimmons)</li> - <li>bug fixes: HTML parser on broken ASCII chars in names (William), Python - paths (Malcolm Tredinnick), xmlHasNsProp and default namespace (William), - saving to python file objects (Malcolm Tredinnick), DTD lookup fix - (Malcolm), save back <group> in catalogs (William), tree build - fixes (DV and Rob Richards), Schemas memory bug, structured error handler - on Python 64bits, thread local memory deallocation, memory leak reported - by Volker Roth, xmlValidateDtd in the presence of an internal subset, - entities and _private problem (William), xmlBuildRelativeURI error - (William).</li> - <li>improvements: better XInclude error reports (William), tree debugging - module and tests, convenience functions at the Reader API (Graham - Bennett), add support for PI in the HTML parser.</li> -</ul> - -<h3>2.6.14: Sep 29 2004</h3> -<ul> - <li>build fixes: configure paths for xmllint and xsltproc, compilation - without HTML parser, compilation warning cleanups (William Brack & - Malcolm Tredinnick), VMS makefile update (Craig Berry),</li> - <li>bug fixes: xmlGetUTF8Char (William Brack), QName properties (Kasimier - Buchcik), XInclude testing, Notation serialization, UTF8ToISO8859x - transcoding (Mark Itzcovitz), lots of XML Schemas cleanup and fixes - (Kasimier), ChangeLog cleanup (Stepan Kasal), memory fixes (Mark Vakoc), - handling of failed realloc(), out of bound array adressing in Schemas - date handling, Python space/tabs cleanups (Malcolm Tredinnick), NMTOKENS - E20 validation fix (Malcolm),</li> - <li>improvements: added W3C XML Schemas testsuite (Kasimier Buchcik), add - xmlSchemaValidateOneElement (Kasimier), Python exception hierearchy - (Malcolm Tredinnick), Python libxml2 driver improvement (Malcolm - Tredinnick), Schemas support for xsi:schemaLocation, - xsi:noNamespaceSchemaLocation, xsi:type (Kasimier Buchcik)</li> -</ul> - -<h3>2.6.13: Aug 31 2004</h3> -<ul> - <li>build fixes: Windows and zlib (Igor Zlatkovic), -O flag with gcc, - Solaris compiler warning, fixing RPM BuildRequires,</li> - <li>fixes: DTD loading on Windows (Igor), Schemas error reports APIs - (Kasimier Buchcik), Schemas validation crash, xmlCheckUTF8 (William Brack - and Julius Mittenzwei), Schemas facet check (Kasimier), default namespace - problem (William), Schemas hexbinary empty values, encoding error could - genrate a serialization loop.</li> - <li>Improvements: Schemas validity improvements (Kasimier), added --path - and --load-trace options to xmllint</li> - <li>documentation: tutorial update (John Fleck)</li> -</ul> - -<h3>2.6.12: Aug 22 2004</h3> -<ul> - <li>build fixes: fix --with-minimum, elfgcchack.h fixes (Peter - Breitenlohner), perl path lookup (William), diff on Solaris (Albert - Chin), some 64bits cleanups.</li> - <li>Python: avoid a warning with 2.3 (William Brack), tab and space mixes - (William), wrapper generator fixes (William), Cygwin support (Gerrit P. - Haase), node wrapper fix (Marc-Antoine Parent), XML Schemas support - (Torkel Lyng)</li> - <li>Schemas: a lot of bug fixes and improvements from Kasimier Buchcik</li> - <li>fixes: RVT fixes (William), XPath context resets bug (William), memory - debug (Steve Hay), catalog white space handling (Peter Breitenlohner), - xmlReader state after attribute reading (William), structured error - handler (William), XInclude generated xml:base fixup (William), Windows - memory reallocation problem (Steve Hay), Out of Memory conditions - handling (William and Olivier Andrieu), htmlNewDoc() charset bug, - htmlReadMemory init (William), a posteriori validation DTD base - (William), notations serialization missing, xmlGetNodePath (Dodji), - xmlCheckUTF8 (Diego Tartara), missing line numbers on entity - (William)</li> - <li>improvements: DocBook catalog build scrip (William), xmlcatalog tool - (Albert Chin), xmllint --c14n option, no_proxy environment (Mike Hommey), - xmlParseInNodeContext() addition, extend xmllint --shell, allow XInclude - to not generate start/end nodes, extend xmllint --version to include CVS - tag (William)</li> - <li>documentation: web pages fixes, validity API docs fixes (William) - schemas API fix (Eric Haszlakiewicz), xmllint man page (John Fleck)</li> -</ul> - -<h3>2.6.11: July 5 2004</h3> -<ul> - <li>Schemas: a lot of changes and improvements by Kasimier Buchcik for - attributes, namespaces and simple types.</li> - <li>build fixes: --with-minimum (William Brack), some gcc cleanup - (William), --with-thread-alloc (William)</li> - <li>portability: Windows binary package change (Igor Zlatkovic), Catalog - path on Windows</li> - <li>documentation: update to the tutorial (John Fleck), xmllint return code - (John Fleck), man pages (Ville Skytta),</li> - <li>bug fixes: C14N bug serializing namespaces (Aleksey Sanin), testSAX - properly initialize the library (William), empty node set in XPath - (William), xmlSchemas errors (William), invalid charref problem pointed - by Morus Walter, XInclude xml:base generation (William), Relax-NG bug - with div processing (William), XPointer and xml:base problem(William), - Reader and entities, xmllint return code for schemas (William), reader - streaming problem (Steve Ball), DTD serialization problem (William), - libxml.m4 fixes (Mike Hommey), do not provide destructors as methods on - Python classes, xmlReader buffer bug, Python bindings memory interfaces - improvement (with Stéphane Bidoul), Fixed the push parser to be back to - synchronous behaviour.</li> - <li>improvement: custom per-thread I/O enhancement (Rob Richards), register - namespace in debug shell (Stefano Debenedetti), Python based regression - test for non-Unix users (William), dynamically increase the number of - XPath extension functions in Python and fix a memory leak (Marc-Antoine - Parent and William)</li> - <li>performance: hack done with Arjan van de Ven to reduce ELF footprint - and generated code on Linux, plus use gcc runtime profiling to optimize - the code generated in the RPM packages.</li> -</ul> - -<h3>2.6.10: May 17 2004</h3> -<ul> - <li>Web page generated for ChangeLog</li> - <li>build fixes: --without-html problems, make check without make all</li> - <li>portability: problem with xpath.c on Windows (MSC and Borland), memcmp - vs. strncmp on Solaris, XPath tests on Windows (Mark Vakoc), C++ do not - use "list" as parameter name, make tests work with Python 1.5 (Ed - Davis),</li> - <li>improvements: made xmlTextReaderMode public, small buffers resizing - (Morten Welinder), add --maxmem option to xmllint, add - xmlPopInputCallback() for Matt Sergeant, refactoring of serialization - escaping, added escaping customization</li> - <li>bugfixes: xsd:extension (Taihei Goi), assorted regexp bugs (William - Brack), xmlReader end of stream problem, node deregistration with reader, - URI escaping and filemanes, XHTML1 formatting (Nick Wellnhofer), regexp - transition reduction (William), various XSD Schemas fixes (Kasimier - Buchcik), XInclude fallback problem (William), weird problems with DTD - (William), structured error handler callback context (William), reverse - xmlEncodeSpecialChars() behaviour back to escaping '"'</li> -</ul> - -<h3>2.6.9: Apr 18 2004</h3> -<ul> - <li>implement xml:id Working Draft, relaxed XPath id() checking</li> - <li>bugfixes: xmlCtxtReset (Brent Hendricks), line number and CDATA (Dave - Beckett), Relax-NG compilation (William Brack), Regexp patches (with - William), xmlUriEscape (Mark Vakoc), a Relax-NG notAllowed problem (with - William), Relax-NG name classes compares (William), XInclude duplicate - fallback (William), external DTD encoding detection (William), a DTD - validation bug (William), xmlReader Close() fix, recusive extention - schemas</li> - <li>improvements: use xmlRead* APIs in test tools (Mark Vakoc), indenting - save optimization, better handle IIS broken HTTP redirect behaviour (Ian - Hummel), HTML parser frameset (James Bursa), libxml2-python RPM - dependancy, XML Schemas union support (Kasimier Buchcik), warning removal - clanup (William), keep ChangeLog compressed when installing from RPMs</li> - <li>documentation: examples and xmlDocDumpMemory docs (John Fleck), new - example (load, xpath, modify, save), xmlCatalogDump() comments,</li> - <li>Windows: Borland C++ builder (Eric Zurcher), work around Microsoft - compiler NaN handling bug (Mark Vakoc)</li> -</ul> - -<h3>2.6.8: Mar 23 2004</h3> -<ul> - <li>First step of the cleanup of the serialization code and APIs</li> - <li>XML Schemas: mixed content (Adam Dickmeiss), QName handling fixes (Adam - Dickmeiss), anyURI for "" (John Belmonte)</li> - <li>Python: Canonicalization C14N support added (Anthony Carrico)</li> - <li>xmlDocCopyNode() extension (William)</li> - <li>Relax-NG: fix when processing XInclude results (William), external - reference in interleave (William), missing error on <choice> - failure (William), memory leak in schemas datatype facets.</li> - <li>xmlWriter: patch for better DTD support (Alfred Mickautsch)</li> - <li>bug fixes: xmlXPathLangFunction memory leak (Mike Hommey and William - Brack), no ID errors if using HTML_PARSE_NOERROR, xmlcatalog fallbacks to - URI on SYSTEM lookup failure, XInclude parse flags inheritance (William), - XInclude and XPointer fixes for entities (William), XML parser bug - reported by Holger Rauch, nanohttp fd leak (William), regexps char - groups '-' handling (William), dictionnary reference counting problems, - do not close stderr.</li> - <li>performance patches from Petr Pajas</li> - <li>Documentation fixes: XML_CATALOG_FILES in man pages (Mike Hommey)</li> - <li>compilation and portability fixes: --without-valid, catalog cleanups - (Peter Breitenlohner), MingW patch (Roland Schwingel), cross-compilation - to Windows (Christophe de Vienne), --with-html-dir fixup (Julio Merino - Vidal), Windows build (Eric Zurcher)</li> -</ul> - -<h3>2.6.7: Feb 23 2004</h3> -<ul> - <li>documentation: tutorial updates (John Fleck), benchmark results</li> - <li>xmlWriter: updates and fixes (Alfred Mickautsch, Lucas Brasilino)</li> - <li>XPath optimization (Petr Pajas)</li> - <li>DTD ID handling optimization</li> - <li>bugfixes: xpath number with > 19 fractional (William Brack), push - mode with unescaped '>' characters, fix xmllint --stream --timing, fix - xmllint --memory --stream memory usage, xmlAttrSerializeTxtContent - handling NULL, trying to fix Relax-NG/Perl interface.</li> - <li>python: 2.3 compatibility, whitespace fixes (Malcolm Tredinnick)</li> - <li>Added relaxng option to xmllint --shell</li> -</ul> - -<h3>2.6.6: Feb 12 2004</h3> -<ul> - <li>nanohttp and nanoftp: buffer overflow error on URI parsing (Igor and - William) reported by Yuuichi Teranishi</li> - <li>bugfixes: make test and path issues, xmlWriter attribute serialization - (William Brack), xmlWriter indentation (William), schemas validation - (Eric Haszlakiewicz), XInclude dictionnaries issues (William and Oleg - Paraschenko), XInclude empty fallback (William), HTML warnings (William), - XPointer in XInclude (William), Python namespace serialization, - isolat1ToUTF8 bound error (Alfred Mickautsch), output of parameter - entities in internal subset (William), internal subset bug in push mode, - <xs:all> fix (Alexey Sarytchev)</li> - <li>Build: fix for automake-1.8 (Alexander Winston), warnings removal - (Philip Ludlam), SOCKLEN_T detection fixes (Daniel Richard), fix - --with-minimum configuration.</li> - <li>XInclude: allow the 2001 namespace without warning.</li> - <li>Documentation: missing example/index.html (John Fleck), version - dependancies (John Fleck)</li> - <li>reader API: structured error reporting (Steve Ball)</li> - <li>Windows compilation: mingw, msys (Mikhail Grushinskiy), function - prototype (Cameron Johnson), MSVC6 compiler warnings, _WINSOCKAPI_ - patch</li> - <li>Parsers: added xmlByteConsumed(ctxt) API to get the byte offest in - input.</li> -</ul> - -<h3>2.6.5: Jan 25 2004</h3> -<ul> - <li>Bugfixes: dictionnaries for schemas (William Brack), regexp segfault - (William), xs:all problem (William), a number of XPointer bugfixes - (William), xmllint error go to stderr, DTD validation problem with - namespace, memory leak (William), SAX1 cleanup and minimal options fixes - (Mark Vadoc), parser context reset on error (Shaun McCance), XPath union - evaluation problem (William) , xmlReallocLoc with NULL (Aleksey Sanin), - XML Schemas double free (Steve Ball), XInclude with no href, argument - callbacks order for XPath callbacks (Frederic Peters)</li> - <li>Documentation: python scripts (William Brack), xslt stylesheets (John - Fleck), doc (Sven Zimmerman), I/O example.</li> - <li>Python bindings: fixes (William), enum support (Stéphane Bidoul), - structured error reporting (Stéphane Bidoul)</li> - <li>XInclude: various fixes for conformance, problem related to dictionnary - references (William & me), recursion (William)</li> - <li>xmlWriter: indentation (Lucas Brasilino), memory leaks (Alfred - Mickautsch),</li> - <li>xmlSchemas: normalizedString datatype (John Belmonte)</li> - <li>code cleanup for strings functions (William)</li> - <li>Windows: compiler patches (Mark Vakoc)</li> - <li>Parser optimizations, a few new XPath and dictionnary APIs for future - XSLT optimizations.</li> -</ul> - -<h3>2.6.4: Dec 24 2003</h3> -<ul> - <li>Windows build fixes (Igor Zlatkovic)</li> - <li>Some serious XInclude problems reported by Oleg Paraschenko and</li> - <li>Unix and Makefile packaging fixes (me, William Brack,</li> - <li>Documentation improvements (John Fleck, William Brack), example fix - (Lucas Brasilino)</li> - <li>bugfixes: xmlTextReaderExpand() with xmlReaderWalker, XPath handling of - NULL strings (William Brack) , API building reader or parser from - filedescriptor should not close it, changed XPath sorting to be stable - again (William Brack), xmlGetNodePath() generating '(null)' (William - Brack), DTD validation and namespace bug (William Brack), XML Schemas - double inclusion behaviour</li> -</ul> - -<h3>2.6.3: Dec 10 2003</h3> -<ul> - <li>documentation updates and cleanup (DV, William Brack, John Fleck)</li> - <li>added a repository of examples, examples from Aleksey Sanin, Dodji - Seketeli, Alfred Mickautsch</li> - <li>Windows updates: Mark Vakoc, Igor Zlatkovic, Eric Zurcher, Mingw - (Kenneth Haley)</li> - <li>Unicode range checking (William Brack)</li> - <li>code cleanup (William Brack)</li> - <li>Python bindings: doc (John Fleck), bug fixes</li> - <li>UTF-16 cleanup and BOM issues (William Brack)</li> - <li>bug fixes: ID and xmlReader validation, XPath (William Brack), - xmlWriter (Alfred Mickautsch), hash.h inclusion problem, HTML parser - (James Bursa), attribute defaulting and validation, some serialization - cleanups, XML_GET_LINE macro, memory debug when using threads (William - Brack), serialization of attributes and entities content, xmlWriter - (Daniel Schulman)</li> - <li>XInclude bugfix, new APIs and update to the last version including the - namespace change.</li> - <li>XML Schemas improvements: include (Robert Stepanek), import and - namespace handling, fixed the regression tests troubles, added examples - based on Eric van der Vlist book, regexp fixes</li> - <li>preliminary pattern support for streaming (needed for schemas - constraints), added xmlTextReaderPreservePattern() to collect subdocument - when streaming.</li> - <li>various fixes in the structured error handling</li> -</ul> - -<h3>2.6.2: Nov 4 2003</h3> -<ul> - <li>XPath context unregistration fixes</li> - <li>text node coalescing fixes (Mark Lilback)</li> - <li>API to screate a W3C Schemas from an existing document (Steve Ball)</li> - <li>BeOS patches (Marcin 'Shard' Konicki)</li> - <li>xmlStrVPrintf function added (Aleksey Sanin)</li> - <li>compilation fixes (Mark Vakoc)</li> - <li>stdin parsing fix (William Brack)</li> - <li>a posteriori DTD validation fixes</li> - <li>xmlReader bug fixes: Walker fixes, python bindings</li> - <li>fixed xmlStopParser() to really stop the parser and errors</li> - <li>always generate line numbers when using the new xmlReadxxx - functions</li> - <li>added XInclude support to the xmlReader interface</li> - <li>implemented XML_PARSE_NONET parser option</li> - <li>DocBook XSLT processing bug fixed</li> - <li>HTML serialization for <p> elements (William Brack and me)</li> - <li>XPointer failure in XInclude are now handled as resource errors</li> - <li>fixed xmllint --html to use the HTML serializer on output (added - --xmlout to implement the previous behaviour of saving it using the XML - serializer)</li> -</ul> - -<h3>2.6.1: Oct 28 2003</h3> -<ul> - <li>Mostly bugfixes after the big 2.6.0 changes</li> - <li>Unix compilation patches: libxml.m4 (Patrick Welche), warnings cleanup - (William Brack)</li> - <li>Windows compilation patches (Joachim Bauch, Stephane Bidoul, Igor - Zlatkovic)</li> - <li>xmlWriter bugfix (Alfred Mickautsch)</li> - <li>chvalid.[ch]: couple of fixes from Stephane Bidoul</li> - <li>context reset: error state reset, push parser reset (Graham - Bennett)</li> - <li>context reuse: generate errors if file is not readable</li> - <li>defaulted attributes for element coming from internal entities - (Stephane Bidoul)</li> - <li>Python: tab and spaces mix (William Brack)</li> - <li>Error handler could crash in DTD validation in 2.6.0</li> - <li>xmlReader: do not use the document or element _private field</li> - <li>testSAX.c: avoid a problem with some PIs (Massimo Morara)</li> - <li>general bug fixes: mandatory encoding in text decl, serializing - Document Fragment nodes, xmlSearchNs 2.6.0 problem (Kasimier Buchcik), - XPath errors not reported, slow HTML parsing of large documents.</li> -</ul> - -<h3>2.6.0: Oct 20 2003</h3> -<ul> - <li>Major revision release: should be API and ABI compatible but got a lot - of change</li> - <li>Increased the library modularity, far more options can be stripped out, - a --with-minimum configuration will weight around 160KBytes</li> - <li>Use per parser and per document dictionnary, allocate names and small - text nodes from the dictionnary</li> - <li>Switch to a SAX2 like parser rewrote most of the XML parser core, - provides namespace resolution and defaulted attributes, minimize memory - allocations and copies, namespace checking and specific error handling, - immutable buffers, make predefined entities static structures, etc...</li> - <li>rewrote all the error handling in the library, all errors can be - intercepted at a structured level, with precise information - available.</li> - <li>New simpler and more generic XML and HTML parser APIs, allowing to - easilly modify the parsing options and reuse parser context for multiple - consecutive documents.</li> - <li>Similar new APIs for the xmlReader, for options and reuse, provided new - functions to access content as const strings, use them for Python - bindings</li> - <li>a lot of other smaller API improvements: xmlStrPrintf (Aleksey Sanin), - Walker i.e. reader on a document tree based on Alfred Mickautsch code, - make room in nodes for line numbers, reference counting and future PSVI - extensions, generation of character ranges to be checked with faster - algorithm (William), xmlParserMaxDepth (Crutcher Dunnavant), buffer - access</li> - <li>New xmlWriter API provided by Alfred Mickautsch</li> - <li>Schemas: base64 support by Anthony Carrico</li> - <li>Parser<->HTTP integration fix, proper processing of the Mime-Type - and charset information if available.</li> - <li>Relax-NG: bug fixes including the one reported by Martijn Faassen and - zeroOrMore, better error reporting.</li> - <li>Python bindings (Stéphane Bidoul), never use stdout for errors - output</li> - <li>Portability: all the headers have macros for export and calling - convention definitions (Igor Zlatkovic), VMS update (Craig A. Berry), - Windows: threads (Jesse Pelton), Borland compiler (Eric Zurcher, Igor), - Mingw (Igor), typos (Mark Vakoc), beta version (Stephane Bidoul), - warning cleanups on AIX and MIPS compilers (William Brack), BeOS (Marcin - 'Shard' Konicki)</li> - <li>Documentation fixes and README (William Brack), search fix (William), - tutorial updates (John Fleck), namespace docs (Stefan Kost)</li> - <li>Bug fixes: xmlCleanupParser (Dave Beckett), threading uninitialized - mutexes, HTML doctype lowercase, SAX/IO (William), compression detection - and restore (William), attribute declaration in DTDs (William), namespace - on attribute in HTML output (William), input filename (Rob Richards), - namespace DTD validation, xmlReplaceNode (Chris Ryland), I/O callbacks - (Markus Keim), CDATA serialization (Shaun McCance), xmlReader (Peter - Derr), high codepoint charref like &#x10FFFF;, buffer access in push - mode (Justin Fletcher), TLS threads on Windows (Jesse Pelton), XPath bug - (William), xmlCleanupParser (Marc Liyanage), CDATA output (William), HTTP - error handling.</li> - <li>xmllint options: --dtdvalidfpi for Tobias Reif, --sax1 for compat - testing, --nodict for building without tree dictionnary, --nocdata to - replace CDATA by text, --nsclean to remove surperfluous namespace - declarations</li> - <li>added xml2-config --libtool-libs option from Kevin P. Fleming</li> - <li>a lot of profiling and tuning of the code, speedup patch for - xmlSearchNs() by Luca Padovani. The xmlReader should do far less - allocation and it speed should get closer to SAX. Chris Anderson worked - on speeding and cleaning up repetitive checking code.</li> - <li>cleanup of "make tests"</li> - <li>libxml-2.0-uninstalled.pc from Malcolm Tredinnick</li> - <li>deactivated the broken docBook SGML parser code and plugged the XML - parser instead.</li> -</ul> - -<h3>2.5.11: Sep 9 2003</h3> - -<p>A bugfix only release:</p> -<ul> - <li>risk of crash in Relax-NG</li> - <li>risk of crash when using multithreaded programs</li> -</ul> - -<h3>2.5.10: Aug 15 2003</h3> - -<p>A bugfixes only release</p> -<ul> - <li>Windows Makefiles (William Brack)</li> - <li>UTF-16 support fixes (Mark Itzcovitz)</li> - <li>Makefile and portability (William Brack) automake, Linux alpha, Mingw - on Windows (Mikhail Grushinskiy)</li> - <li>HTML parser (Oliver Stoeneberg)</li> - <li>XInclude performance problem reported by Kevin Ruscoe</li> - <li>XML parser performance problem reported by Grant Goodale</li> - <li>xmlSAXParseDTD() bug fix from Malcolm Tredinnick</li> - <li>and a couple other cleanup</li> -</ul> - -<h3>2.5.9: Aug 9 2003</h3> -<ul> - <li>bugfixes: IPv6 portability, xmlHasNsProp (Markus Keim), Windows build - (Wiliam Brake, Jesse Pelton, Igor), Schemas (Peter Sobisch), threading - (Rob Richards), hexBinary type (), UTF-16 BOM (Dodji Seketeli), - xmlReader, Relax-NG schemas compilation, namespace handling, EXSLT (Sean - Griffin), HTML parsing problem (William Brack), DTD validation for mixed - content + namespaces, HTML serialization, library initialization, - progressive HTML parser</li> - <li>better interfaces for Relax-NG error handling (Joachim Bauch, )</li> - <li>adding xmlXIncludeProcessTree() for XInclud'ing in a subtree</li> - <li>doc fixes and improvements (John Fleck)</li> - <li>configure flag for -with-fexceptions when embedding in C++</li> - <li>couple of new UTF-8 helper functions (William Brack)</li> - <li>general encoding cleanup + ISO-8859-x without iconv (Peter Jacobi)</li> - <li>xmlTextReader cleanup + enum for node types (Bjorn Reese)</li> - <li>general compilation/warning cleanup Solaris/HP-UX/... (William - Brack)</li> -</ul> - -<h3>2.5.8: Jul 6 2003</h3> -<ul> - <li>bugfixes: XPath, XInclude, file/URI mapping, UTF-16 save (Mark - Itzcovitz), UTF-8 checking, URI saving, error printing (William Brack), - PI related memleak, compilation without schemas or without xpath (Joerg - Schmitz-Linneweber/Garry Pennington), xmlUnlinkNode problem with DTDs, - rpm problem on , i86_64, removed a few compilation problems from 2.5.7, - xmlIOParseDTD, and xmlSAXParseDTD (Malcolm Tredinnick)</li> - <li>portability: DJGPP (MsDos) , OpenVMS (Craig A. Berry)</li> - <li>William Brack fixed multithreading lock problems</li> - <li>IPv6 patch for FTP and HTTP accesses (Archana Shah/Wipro)</li> - <li>Windows fixes (Igor Zlatkovic, Eric Zurcher), threading (Stéphane - Bidoul)</li> - <li>A few W3C Schemas Structure improvements</li> - <li>W3C Schemas Datatype improvements (Charlie Bozeman)</li> - <li>Python bindings for thread globals (Stéphane Bidoul), and method/class - generator</li> - <li>added --nonet option to xmllint</li> - <li>documentation improvements (John Fleck)</li> -</ul> - -<h3>2.5.7: Apr 25 2003</h3> -<ul> - <li>Relax-NG: Compiling to regexp and streaming validation on top of the - xmlReader interface, added to xmllint --stream</li> - <li>xmlReader: Expand(), Next() and DOM access glue, bug fixes</li> - <li>Support for large files: RGN validated a 4.5GB instance</li> - <li>Thread support is now configured in by default</li> - <li>Fixes: update of the Trio code (Bjorn), WXS Date and Duration fixes - (Charles Bozeman), DTD and namespaces (Brent Hendricks), HTML push parser - and zero bytes handling, some missing Windows file path conversions, - behaviour of the parser and validator in the presence of "out of memory" - error conditions</li> - <li>extended the API to be able to plug a garbage collecting memory - allocator, added xmlMallocAtomic() and modified the allocations - accordingly.</li> - <li>Performances: removed excessive malloc() calls, speedup of the push and - xmlReader interfaces, removed excessive thread locking</li> - <li>Documentation: man page (John Fleck), xmlReader documentation</li> - <li>Python: adding binding for xmlCatalogAddLocal (Brent M Hendricks)</li> -</ul> - -<h3>2.5.6: Apr 1 2003</h3> -<ul> - <li>Fixed W3C XML Schemas datatype, should be compliant now except for - binHex and base64 which are not supported yet.</li> - <li>bug fixes: non-ASCII IDs, HTML output, XInclude on large docs and - XInclude entities handling, encoding detection on external subsets, XML - Schemas bugs and memory leaks, HTML parser (James Bursa)</li> - <li>portability: python/trio (Albert Chin), Sun compiler warnings</li> - <li>documentation: added --relaxng option to xmllint man page (John)</li> - <li>improved error reporting: xml:space, start/end tag mismatches, Relax NG - errors</li> -</ul> - -<h3>2.5.5: Mar 24 2003</h3> -<ul> - <li>Lot of fixes on the Relax NG implementation. More testing including - DocBook and TEI examples.</li> - <li>Increased the support for W3C XML Schemas datatype</li> - <li>Several bug fixes in the URI handling layer</li> - <li>Bug fixes: HTML parser, xmlReader, DTD validation, XPath, encoding - conversion, line counting in the parser.</li> - <li>Added support for $XMLLINT_INDENT environment variable, FTP delete</li> - <li>Fixed the RPM spec file name</li> -</ul> - -<h3>2.5.4: Feb 20 2003</h3> -<ul> - <li>Conformance testing and lot of fixes on Relax NG and XInclude - implementation</li> - <li>Implementation of XPointer element() scheme</li> - <li>Bug fixes: XML parser, XInclude entities merge, validity checking on - namespaces, - <p>2 serialization bugs, node info generation problems, a DTD regexp - generation problem.</p> - </li> - <li>Portability: windows updates and path canonicalization (Igor)</li> - <li>A few typo fixes (Kjartan Maraas)</li> - <li>Python bindings generator fixes (Stephane Bidoul)</li> -</ul> - -<h3>2.5.3: Feb 10 2003</h3> -<ul> - <li>RelaxNG and XML Schemas datatypes improvements, and added a first - version of RelaxNG Python bindings</li> - <li>Fixes: XLink (Sean Chittenden), XInclude (Sean Chittenden), API fix for - serializing namespace nodes, encoding conversion bug, XHTML1 - serialization</li> - <li>Portability fixes: Windows (Igor), AMD 64bits RPM spec file</li> -</ul> - -<h3>2.5.2: Feb 5 2003</h3> -<ul> - <li>First implementation of RelaxNG, added --relaxng flag to xmllint</li> - <li>Schemas support now compiled in by default.</li> - <li>Bug fixes: DTD validation, namespace checking, XInclude and entities, - delegateURI in XML Catalogs, HTML parser, XML reader (Stéphane Bidoul), - XPath parser and evaluation, UTF8ToUTF8 serialization, XML reader memory - consumption, HTML parser, HTML serialization in the presence of - namespaces</li> - <li>added an HTML API to check elements and attributes.</li> - <li>Documentation improvement, PDF for the tutorial (John Fleck), doc - patches (Stefan Kost)</li> - <li>Portability fixes: NetBSD (Julio Merino), Windows (Igor Zlatkovic)</li> - <li>Added python bindings for XPointer, contextual error reporting - (Stéphane Bidoul)</li> - <li>URI/file escaping problems (Stefano Zacchiroli)</li> -</ul> - -<h3>2.5.1: Jan 8 2003</h3> -<ul> - <li>Fixes a memory leak and configuration/compilation problems in 2.5.0</li> - <li>documentation updates (John)</li> - <li>a couple of XmlTextReader fixes</li> -</ul> - -<h3>2.5.0: Jan 6 2003</h3> -<ul> - <li>New <a href="xmlreader.html">XmltextReader interface</a> based on C# - API (with help of Stéphane Bidoul)</li> - <li>Windows: more exports, including the new API (Igor)</li> - <li>XInclude fallback fix</li> - <li>Python: bindings for the new API, packaging (Stéphane Bidoul), - drv_libxml2.py Python xml.sax driver (Stéphane Bidoul), fixes, speedup - and iterators for Python-2.2 (Hannu Krosing)</li> - <li>Tutorial fixes (john Fleck and Niraj Tolia) xmllint man update - (John)</li> - <li>Fix an XML parser bug raised by Vyacheslav Pindyura</li> - <li>Fix for VMS serialization (Nigel Hall) and config (Craig A. Berry)</li> - <li>Entities handling fixes</li> - <li>new API to optionally track node creation and deletion (Lukas - Schroeder)</li> - <li>Added documentation for the XmltextReader interface and some <a - href="guidelines.html">XML guidelines</a></li> -</ul> - -<h3>2.4.30: Dec 12 2002</h3> -<ul> - <li>2.4.29 broke the python bindings, rereleasing</li> - <li>Improvement/fixes of the XML API generator, and couple of minor code - fixes.</li> -</ul> - -<h3>2.4.29: Dec 11 2002</h3> -<ul> - <li>Windows fixes (Igor): Windows CE port, pthread linking, python bindings - (Stéphane Bidoul), Mingw (Magnus Henoch), and export list updates</li> - <li>Fix for prev in python bindings (ERDI Gergo)</li> - <li>Fix for entities handling (Marcus Clarke)</li> - <li>Refactored the XML and HTML dumps to a single code path, fixed XHTML1 - dump</li> - <li>Fix for URI parsing when handling URNs with fragment identifiers</li> - <li>Fix for HTTP URL escaping problem</li> - <li>added an TextXmlReader (C#) like API (work in progress)</li> - <li>Rewrote the API in XML generation script, includes a C parser and saves - more information needed for C# bindings</li> -</ul> - -<h3>2.4.28: Nov 22 2002</h3> -<ul> - <li>a couple of python binding fixes</li> - <li>2 bug fixes in the XML push parser</li> - <li>potential memory leak removed (Martin Stoilov)</li> - <li>fix to the configure script for Unix (Dimitri Papadopoulos)</li> - <li>added encoding support for XInclude parse="text"</li> - <li>autodetection of XHTML1 and specific serialization rules added</li> - <li>nasty threading bug fixed (William Brack)</li> -</ul> - -<h3>2.4.27: Nov 17 2002</h3> -<ul> - <li>fixes for the Python bindings</li> - <li>a number of bug fixes: SGML catalogs, xmlParseBalancedChunkMemory(), - HTML parser, Schemas (Charles Bozeman), document fragment support - (Christian Glahn), xmlReconciliateNs (Brian Stafford), XPointer, - xmlFreeNode(), xmlSAXParseMemory (Peter Jones), xmlGetNodePath (Petr - Pajas), entities processing</li> - <li>added grep to xmllint --shell</li> - <li>VMS update patch from Craig A. Berry</li> - <li>cleanup of the Windows build with support for more compilers (Igor), - better thread support on Windows</li> - <li>cleanup of Unix Makefiles and spec file</li> - <li>Improvements to the documentation (John Fleck)</li> -</ul> - -<h3>2.4.26: Oct 18 2002</h3> -<ul> - <li>Patches for Windows CE port, improvements on Windows paths handling</li> - <li>Fixes to the validation code (DTD and Schemas), xmlNodeGetPath() , - HTML serialization, Namespace compliance, and a number of small - problems</li> -</ul> - -<h3>2.4.25: Sep 26 2002</h3> -<ul> - <li>A number of bug fixes: XPath, validation, Python bindings, DOM and - tree, xmlI/O, Html</li> - <li>Serious rewrite of XInclude</li> - <li>Made XML Schemas regexp part of the default build and APIs, small fix - and improvement of the regexp core</li> - <li>Changed the validation code to reuse XML Schemas regexp APIs</li> - <li>Better handling of Windows file paths, improvement of Makefiles (Igor, - Daniel Gehriger, Mark Vakoc)</li> - <li>Improved the python I/O bindings, the tests, added resolver and regexp - APIs</li> - <li>New logos from Marc Liyanage</li> - <li>Tutorial improvements: John Fleck, Christopher Harris</li> - <li>Makefile: Fixes for AMD x86_64 (Mandrake), DESTDIR (Christophe - Merlet)</li> - <li>removal of all stderr/perror use for error reporting</li> - <li>Better error reporting: XPath and DTD validation</li> - <li>update of the trio portability layer (Bjorn Reese)</li> -</ul> - -<p><strong>2.4.24: Aug 22 2002</strong></p> -<ul> - <li>XPath fixes (William), xf:escape-uri() (Wesley Terpstra)</li> - <li>Python binding fixes: makefiles (William), generator, rpm build, x86-64 - (fcrozat)</li> - <li>HTML <style> and boolean attributes serializer fixes</li> - <li>C14N improvements by Aleksey</li> - <li>doc cleanups: Rick Jones</li> - <li>Windows compiler makefile updates: Igor and Elizabeth Barham</li> - <li>XInclude: implementation of fallback and xml:base fixup added</li> -</ul> - -<h3>2.4.23: July 6 2002</h3> -<ul> - <li>performances patches: Peter Jacobi</li> - <li>c14n fixes, testsuite and performances: Aleksey Sanin</li> - <li>added xmlDocFormatDump: Chema Celorio</li> - <li>new tutorial: John Fleck</li> - <li>new hash functions and performances: Sander Vesik, portability fix from - Peter Jacobi</li> - <li>a number of bug fixes: XPath (William Brack, Richard Jinks), XML and - HTML parsers, ID lookup function</li> - <li>removal of all remaining sprintf: Aleksey Sanin</li> -</ul> - -<h3>2.4.22: May 27 2002</h3> -<ul> - <li>a number of bug fixes: configure scripts, base handling, parser, memory - usage, HTML parser, XPath, documentation (Christian Cornelssen), - indentation, URI parsing</li> - <li>Optimizations for XMLSec, fixing and making public some of the network - protocol handlers (Aleksey)</li> - <li>performance patch from Gary Pennington</li> - <li>Charles Bozeman provided date and time support for XML Schemas - datatypes</li> -</ul> - -<h3>2.4.21: Apr 29 2002</h3> - -<p>This release is both a bug fix release and also contains the early XML -Schemas <a href="http://www.w3.org/TR/xmlschema-1/">structures</a> and <a -href="http://www.w3.org/TR/xmlschema-2/">datatypes</a> code, beware, all -interfaces are likely to change, there is huge holes, it is clearly a work in -progress and don't even think of putting this code in a production system, -it's actually not compiled in by default. The real fixes are:</p> -<ul> - <li>a couple of bugs or limitations introduced in 2.4.20</li> - <li>patches for Borland C++ and MSC by Igor</li> - <li>some fixes on XPath strings and conformance patches by Richard - Jinks</li> - <li>patch from Aleksey for the ExcC14N specification</li> - <li>OSF/1 bug fix by Bjorn</li> -</ul> - -<h3>2.4.20: Apr 15 2002</h3> -<ul> - <li>bug fixes: file descriptor leak, XPath, HTML output, DTD validation</li> - <li>XPath conformance testing by Richard Jinks</li> - <li>Portability fixes: Solaris, MPE/iX, Windows, OSF/1, python bindings, - libxml.m4</li> -</ul> - -<h3>2.4.19: Mar 25 2002</h3> -<ul> - <li>bug fixes: half a dozen XPath bugs, Validation, ISO-Latin to UTF8 - encoder</li> - <li>portability fixes in the HTTP code</li> - <li>memory allocation checks using valgrind, and profiling tests</li> - <li>revamp of the Windows build and Makefiles</li> -</ul> - -<h3>2.4.18: Mar 18 2002</h3> -<ul> - <li>bug fixes: tree, SAX, canonicalization, validation, portability, - XPath</li> - <li>removed the --with-buffer option it was becoming unmaintainable</li> - <li>serious cleanup of the Python makefiles</li> - <li>speedup patch to XPath very effective for DocBook stylesheets</li> - <li>Fixes for Windows build, cleanup of the documentation</li> -</ul> - -<h3>2.4.17: Mar 8 2002</h3> -<ul> - <li>a lot of bug fixes, including "namespace nodes have no parents in - XPath"</li> - <li>fixed/improved the Python wrappers, added more examples and more - regression tests, XPath extension functions can now return node-sets</li> - <li>added the XML Canonicalization support from Aleksey Sanin</li> -</ul> - -<h3>2.4.16: Feb 20 2002</h3> -<ul> - <li>a lot of bug fixes, most of them were triggered by the XML Testsuite - from OASIS and W3C. Compliance has been significantly improved.</li> - <li>a couple of portability fixes too.</li> -</ul> - -<h3>2.4.15: Feb 11 2002</h3> -<ul> - <li>Fixed the Makefiles, especially the python module ones</li> - <li>A few bug fixes and cleanup</li> - <li>Includes cleanup</li> -</ul> - -<h3>2.4.14: Feb 8 2002</h3> -<ul> - <li>Change of License to the <a - href="http://www.opensource.org/licenses/mit-license.html">MIT - License</a> basically for integration in XFree86 codebase, and removing - confusion around the previous dual-licensing</li> - <li>added Python bindings, beta software but should already be quite - complete</li> - <li>a large number of fixes and cleanups, especially for all tree - manipulations</li> - <li>cleanup of the headers, generation of a reference API definition in - XML</li> -</ul> - -<h3>2.4.13: Jan 14 2002</h3> -<ul> - <li>update of the documentation: John Fleck and Charlie Bozeman</li> - <li>cleanup of timing code from Justin Fletcher</li> - <li>fixes for Windows and initial thread support on Win32: Igor and Serguei - Narojnyi</li> - <li>Cygwin patch from Robert Collins</li> - <li>added xmlSetEntityReferenceFunc() for Keith Isdale work on xsldbg</li> -</ul> - -<h3>2.4.12: Dec 7 2001</h3> -<ul> - <li>a few bug fixes: thread (Gary Pennington), xmllint (Geert Kloosterman), - XML parser (Robin Berjon), XPointer (Danny Jamshy), I/O cleanups - (robert)</li> - <li>Eric Lavigne contributed project files for MacOS</li> - <li>some makefiles cleanups</li> -</ul> - -<h3>2.4.11: Nov 26 2001</h3> -<ul> - <li>fixed a couple of errors in the includes, fixed a few bugs, some code - cleanups</li> - <li>xmllint man pages improvement by Heiko Rupp</li> - <li>updated VMS build instructions from John A Fotheringham</li> - <li>Windows Makefiles updates from Igor</li> -</ul> - -<h3>2.4.10: Nov 10 2001</h3> -<ul> - <li>URI escaping fix (Joel Young)</li> - <li>added xmlGetNodePath() (for paths or XPointers generation)</li> - <li>Fixes namespace handling problems when using DTD and validation</li> - <li>improvements on xmllint: Morus Walter patches for --format and - --encode, Stefan Kost and Heiko Rupp improvements on the --shell</li> - <li>fixes for xmlcatalog linking pointed by Weiqi Gao</li> - <li>fixes to the HTML parser</li> -</ul> - -<h3>2.4.9: Nov 6 2001</h3> -<ul> - <li>fixes more catalog bugs</li> - <li>avoid a compilation problem, improve xmlGetLineNo()</li> -</ul> - -<h3>2.4.8: Nov 4 2001</h3> -<ul> - <li>fixed SGML catalogs broken in previous release, updated xmlcatalog - tool</li> - <li>fixed a compile errors and some includes troubles.</li> -</ul> - -<h3>2.4.7: Oct 30 2001</h3> -<ul> - <li>exported some debugging interfaces</li> - <li>serious rewrite of the catalog code</li> - <li>integrated Gary Pennington thread safety patch, added configure option - and regression tests</li> - <li>removed an HTML parser bug</li> - <li>fixed a couple of potentially serious validation bugs</li> - <li>integrated the SGML DocBook support in xmllint</li> - <li>changed the nanoftp anonymous login passwd</li> - <li>some I/O cleanup and a couple of interfaces for Perl wrapper</li> - <li>general bug fixes</li> - <li>updated xmllint man page by John Fleck</li> - <li>some VMS and Windows updates</li> -</ul> - -<h3>2.4.6: Oct 10 2001</h3> -<ul> - <li>added an updated man pages by John Fleck</li> - <li>portability and configure fixes</li> - <li>an infinite loop on the HTML parser was removed (William)</li> - <li>Windows makefile patches from Igor</li> - <li>fixed half a dozen bugs reported for libxml or libxslt</li> - <li>updated xmlcatalog to be able to modify SGML super catalogs</li> -</ul> - -<h3>2.4.5: Sep 14 2001</h3> -<ul> - <li>Remove a few annoying bugs in 2.4.4</li> - <li>forces the HTML serializer to output decimal charrefs since some - version of Netscape can't handle hexadecimal ones</li> -</ul> - -<h3>1.8.16: Sep 14 2001</h3> -<ul> - <li>maintenance release of the old libxml1 branch, couple of bug and - portability fixes</li> -</ul> - -<h3>2.4.4: Sep 12 2001</h3> -<ul> - <li>added --convert to xmlcatalog, bug fixes and cleanups of XML - Catalog</li> - <li>a few bug fixes and some portability changes</li> - <li>some documentation cleanups</li> -</ul> - -<h3>2.4.3: Aug 23 2001</h3> -<ul> - <li>XML Catalog support see the doc</li> - <li>New NaN/Infinity floating point code</li> - <li>A few bug fixes</li> -</ul> - -<h3>2.4.2: Aug 15 2001</h3> -<ul> - <li>adds xmlLineNumbersDefault() to control line number generation</li> - <li>lot of bug fixes</li> - <li>the Microsoft MSC projects files should now be up to date</li> - <li>inheritance of namespaces from DTD defaulted attributes</li> - <li>fixes a serious potential security bug</li> - <li>added a --format option to xmllint</li> -</ul> - -<h3>2.4.1: July 24 2001</h3> -<ul> - <li>possibility to keep line numbers in the tree</li> - <li>some computation NaN fixes</li> - <li>extension of the XPath API</li> - <li>cleanup for alpha and ia64 targets</li> - <li>patch to allow saving through HTTP PUT or POST</li> -</ul> - -<h3>2.4.0: July 10 2001</h3> -<ul> - <li>Fixed a few bugs in XPath, validation, and tree handling.</li> - <li>Fixed XML Base implementation, added a couple of examples to the - regression tests</li> - <li>A bit of cleanup</li> -</ul> - -<h3>2.3.14: July 5 2001</h3> -<ul> - <li>fixed some entities problems and reduce memory requirement when - substituting them</li> - <li>lots of improvements in the XPath queries interpreter can be - substantially faster</li> - <li>Makefiles and configure cleanups</li> - <li>Fixes to XPath variable eval, and compare on empty node set</li> - <li>HTML tag closing bug fixed</li> - <li>Fixed an URI reference computation problem when validating</li> -</ul> - -<h3>2.3.13: June 28 2001</h3> -<ul> - <li>2.3.12 configure.in was broken as well as the push mode XML parser</li> - <li>a few more fixes for compilation on Windows MSC by Yon Derek</li> -</ul> - -<h3>1.8.14: June 28 2001</h3> -<ul> - <li>Zbigniew Chyla gave a patch to use the old XML parser in push mode</li> - <li>Small Makefile fix</li> -</ul> - -<h3>2.3.12: June 26 2001</h3> -<ul> - <li>lots of cleanup</li> - <li>a couple of validation fix</li> - <li>fixed line number counting</li> - <li>fixed serious problems in the XInclude processing</li> - <li>added support for UTF8 BOM at beginning of entities</li> - <li>fixed a strange gcc optimizer bugs in xpath handling of float, gcc-3.0 - miscompile uri.c (William), Thomas Leitner provided a fix for the - optimizer on Tru64</li> - <li>incorporated Yon Derek and Igor Zlatkovic fixes and improvements for - compilation on Windows MSC</li> - <li>update of libxml-doc.el (Felix Natter)</li> - <li>fixed 2 bugs in URI normalization code</li> -</ul> - -<h3>2.3.11: June 17 2001</h3> -<ul> - <li>updates to trio, Makefiles and configure should fix some portability - problems (alpha)</li> - <li>fixed some HTML serialization problems (pre, script, and block/inline - handling), added encoding aware APIs, cleanup of this code</li> - <li>added xmlHasNsProp()</li> - <li>implemented a specific PI for encoding support in the DocBook SGML - parser</li> - <li>some XPath fixes (-Infinity, / as a function parameter and namespaces - node selection)</li> - <li>fixed a performance problem and an error in the validation code</li> - <li>fixed XInclude routine to implement the recursive behaviour</li> - <li>fixed xmlFreeNode problem when libxml is included statically twice</li> - <li>added --version to xmllint for bug reports</li> -</ul> - -<h3>2.3.10: June 1 2001</h3> -<ul> - <li>fixed the SGML catalog support</li> - <li>a number of reported bugs got fixed, in XPath, iconv detection, - XInclude processing</li> - <li>XPath string function should now handle unicode correctly</li> -</ul> - -<h3>2.3.9: May 19 2001</h3> - -<p>Lots of bugfixes, and added a basic SGML catalog support:</p> -<ul> - <li>HTML push bugfix #54891 and another patch from Jonas Borgström</li> - <li>some serious speed optimization again</li> - <li>some documentation cleanups</li> - <li>trying to get better linking on Solaris (-R)</li> - <li>XPath API cleanup from Thomas Broyer</li> - <li>Validation bug fixed #54631, added a patch from Gary Pennington, fixed - xmlValidGetValidElements()</li> - <li>Added an INSTALL file</li> - <li>Attribute removal added to API: #54433</li> - <li>added a basic support for SGML catalogs</li> - <li>fixed xmlKeepBlanksDefault(0) API</li> - <li>bugfix in xmlNodeGetLang()</li> - <li>fixed a small configure portability problem</li> - <li>fixed an inversion of SYSTEM and PUBLIC identifier in HTML document</li> -</ul> - -<h3>1.8.13: May 14 2001</h3> -<ul> - <li>bugfixes release of the old libxml1 branch used by Gnome</li> -</ul> - -<h3>2.3.8: May 3 2001</h3> -<ul> - <li>Integrated an SGML DocBook parser for the Gnome project</li> - <li>Fixed a few things in the HTML parser</li> - <li>Fixed some XPath bugs raised by XSLT use, tried to fix the floating - point portability issue</li> - <li>Speed improvement (8M/s for SAX, 3M/s for DOM, 1.5M/s for - DOM+validation using the XML REC as input and a 700MHz celeron).</li> - <li>incorporated more Windows cleanup</li> - <li>added xmlSaveFormatFile()</li> - <li>fixed problems in copying nodes with entities references (gdome)</li> - <li>removed some troubles surrounding the new validation module</li> -</ul> - -<h3>2.3.7: April 22 2001</h3> -<ul> - <li>lots of small bug fixes, corrected XPointer</li> - <li>Non deterministic content model validation support</li> - <li>added xmlDocCopyNode for gdome2</li> - <li>revamped the way the HTML parser handles end of tags</li> - <li>XPath: corrections of namespaces support and number formatting</li> - <li>Windows: Igor Zlatkovic patches for MSC compilation</li> - <li>HTML output fixes from P C Chow and William M. Brack</li> - <li>Improved validation speed sensible for DocBook</li> - <li>fixed a big bug with ID declared in external parsed entities</li> - <li>portability fixes, update of Trio from Bjorn Reese</li> -</ul> - -<h3>2.3.6: April 8 2001</h3> -<ul> - <li>Code cleanup using extreme gcc compiler warning options, found and - cleared half a dozen potential problem</li> - <li>the Eazel team found an XML parser bug</li> - <li>cleaned up the user of some of the string formatting function. used the - trio library code to provide the one needed when the platform is missing - them</li> - <li>xpath: removed a memory leak and fixed the predicate evaluation - problem, extended the testsuite and cleaned up the result. XPointer seems - broken ...</li> -</ul> - -<h3>2.3.5: Mar 23 2001</h3> -<ul> - <li>Biggest change is separate parsing and evaluation of XPath expressions, - there is some new APIs for this too</li> - <li>included a number of bug fixes(XML push parser, 51876, notations, - 52299)</li> - <li>Fixed some portability issues</li> -</ul> - -<h3>2.3.4: Mar 10 2001</h3> -<ul> - <li>Fixed bugs #51860 and #51861</li> - <li>Added a global variable xmlDefaultBufferSize to allow default buffer - size to be application tunable.</li> - <li>Some cleanup in the validation code, still a bug left and this part - should probably be rewritten to support ambiguous content model :-\</li> - <li>Fix a couple of serious bugs introduced or raised by changes in 2.3.3 - parser</li> - <li>Fixed another bug in xmlNodeGetContent()</li> - <li>Bjorn fixed XPath node collection and Number formatting</li> - <li>Fixed a loop reported in the HTML parsing</li> - <li>blank space are reported even if the Dtd content model proves that they - are formatting spaces, this is for XML conformance</li> -</ul> - -<h3>2.3.3: Mar 1 2001</h3> -<ul> - <li>small change in XPath for XSLT</li> - <li>documentation cleanups</li> - <li>fix in validation by Gary Pennington</li> - <li>serious parsing performances improvements</li> -</ul> - -<h3>2.3.2: Feb 24 2001</h3> -<ul> - <li>chasing XPath bugs, found a bunch, completed some TODO</li> - <li>fixed a Dtd parsing bug</li> - <li>fixed a bug in xmlNodeGetContent</li> - <li>ID/IDREF support partly rewritten by Gary Pennington</li> -</ul> - -<h3>2.3.1: Feb 15 2001</h3> -<ul> - <li>some XPath and HTML bug fixes for XSLT</li> - <li>small extension of the hash table interfaces for DOM gdome2 - implementation</li> - <li>A few bug fixes</li> -</ul> - -<h3>2.3.0: Feb 8 2001 (2.2.12 was on 25 Jan but I didn't kept track)</h3> -<ul> - <li>Lots of XPath bug fixes</li> - <li>Add a mode with Dtd lookup but without validation error reporting for - XSLT</li> - <li>Add support for text node without escaping (XSLT)</li> - <li>bug fixes for xmlCheckFilename</li> - <li>validation code bug fixes from Gary Pennington</li> - <li>Patch from Paul D. Smith correcting URI path normalization</li> - <li>Patch to allow simultaneous install of libxml-devel and - libxml2-devel</li> - <li>the example Makefile is now fixed</li> - <li>added HTML to the RPM packages</li> - <li>tree copying bugfixes</li> - <li>updates to Windows makefiles</li> - <li>optimization patch from Bjorn Reese</li> -</ul> - -<h3>2.2.11: Jan 4 2001</h3> -<ul> - <li>bunch of bug fixes (memory I/O, xpath, ftp/http, ...)</li> - <li>added htmlHandleOmittedElem()</li> - <li>Applied Bjorn Reese's IPV6 first patch</li> - <li>Applied Paul D. Smith patches for validation of XInclude results</li> - <li>added XPointer xmlns() new scheme support</li> -</ul> - -<h3>2.2.10: Nov 25 2000</h3> -<ul> - <li>Fix the Windows problems of 2.2.8</li> - <li>integrate OpenVMS patches</li> - <li>better handling of some nasty HTML input</li> - <li>Improved the XPointer implementation</li> - <li>integrate a number of provided patches</li> -</ul> - -<h3>2.2.9: Nov 25 2000</h3> -<ul> - <li>erroneous release :-(</li> -</ul> - -<h3>2.2.8: Nov 13 2000</h3> -<ul> - <li>First version of <a href="http://www.w3.org/TR/xinclude">XInclude</a> - support</li> - <li>Patch in conditional section handling</li> - <li>updated MS compiler project</li> - <li>fixed some XPath problems</li> - <li>added an URI escaping function</li> - <li>some other bug fixes</li> -</ul> - -<h3>2.2.7: Oct 31 2000</h3> -<ul> - <li>added message redirection</li> - <li>XPath improvements (thanks TOM !)</li> - <li>xmlIOParseDTD() added</li> - <li>various small fixes in the HTML, URI, HTTP and XPointer support</li> - <li>some cleanup of the Makefile, autoconf and the distribution content</li> -</ul> - -<h3>2.2.6: Oct 25 2000:</h3> -<ul> - <li>Added an hash table module, migrated a number of internal structure to - those</li> - <li>Fixed a posteriori validation problems</li> - <li>HTTP module cleanups</li> - <li>HTML parser improvements (tag errors, script/style handling, attribute - normalization)</li> - <li>coalescing of adjacent text nodes</li> - <li>couple of XPath bug fixes, exported the internal API</li> -</ul> - -<h3>2.2.5: Oct 15 2000:</h3> -<ul> - <li>XPointer implementation and testsuite</li> - <li>Lot of XPath fixes, added variable and functions registration, more - tests</li> - <li>Portability fixes, lots of enhancements toward an easy Windows build - and release</li> - <li>Late validation fixes</li> - <li>Integrated a lot of contributed patches</li> - <li>added memory management docs</li> - <li>a performance problem when using large buffer seems fixed</li> -</ul> - -<h3>2.2.4: Oct 1 2000:</h3> -<ul> - <li>main XPath problem fixed</li> - <li>Integrated portability patches for Windows</li> - <li>Serious bug fixes on the URI and HTML code</li> -</ul> - -<h3>2.2.3: Sep 17 2000</h3> -<ul> - <li>bug fixes</li> - <li>cleanup of entity handling code</li> - <li>overall review of all loops in the parsers, all sprintf usage has been - checked too</li> - <li>Far better handling of larges Dtd. Validating against DocBook XML Dtd - works smoothly now.</li> -</ul> - -<h3>1.8.10: Sep 6 2000</h3> -<ul> - <li>bug fix release for some Gnome projects</li> -</ul> - -<h3>2.2.2: August 12 2000</h3> -<ul> - <li>mostly bug fixes</li> - <li>started adding routines to access xml parser context options</li> -</ul> - -<h3>2.2.1: July 21 2000</h3> -<ul> - <li>a purely bug fixes release</li> - <li>fixed an encoding support problem when parsing from a memory block</li> - <li>fixed a DOCTYPE parsing problem</li> - <li>removed a bug in the function allowing to override the memory - allocation routines</li> -</ul> - -<h3>2.2.0: July 14 2000</h3> -<ul> - <li>applied a lot of portability fixes</li> - <li>better encoding support/cleanup and saving (content is now always - encoded in UTF-8)</li> - <li>the HTML parser now correctly handles encodings</li> - <li>added xmlHasProp()</li> - <li>fixed a serious problem with &#38;</li> - <li>propagated the fix to FTP client</li> - <li>cleanup, bugfixes, etc ...</li> - <li>Added a page about <a href="encoding.html">libxml Internationalization - support</a></li> -</ul> - -<h3>1.8.9: July 9 2000</h3> -<ul> - <li>fixed the spec the RPMs should be better</li> - <li>fixed a serious bug in the FTP implementation, released 1.8.9 to solve - rpmfind users problem</li> -</ul> - -<h3>2.1.1: July 1 2000</h3> -<ul> - <li>fixes a couple of bugs in the 2.1.0 packaging</li> - <li>improvements on the HTML parser</li> -</ul> - -<h3>2.1.0 and 1.8.8: June 29 2000</h3> -<ul> - <li>1.8.8 is mostly a commodity package for upgrading to libxml2 according - to <a href="upgrade.html">new instructions</a>. It fixes a nasty problem - about &#38; charref parsing</li> - <li>2.1.0 also ease the upgrade from libxml v1 to the recent version. it - also contains numerous fixes and enhancements: - <ul> - <li>added xmlStopParser() to stop parsing</li> - <li>improved a lot parsing speed when there is large CDATA blocs</li> - <li>includes XPath patches provided by Picdar Technology</li> - <li>tried to fix as much as possible DTD validation and namespace - related problems</li> - <li>output to a given encoding has been added/tested</li> - <li>lot of various fixes</li> - </ul> - </li> -</ul> - -<h3>2.0.0: Apr 12 2000</h3> -<ul> - <li>First public release of libxml2. If you are using libxml, it's a good - idea to check the 1.x to 2.x upgrade instructions. NOTE: while initially - scheduled for Apr 3 the release occurred only on Apr 12 due to massive - workload.</li> - <li>The include are now located under $prefix/include/libxml (instead of - $prefix/include/gnome-xml), they also are referenced by - <pre>#include <libxml/xxx.h></pre> - <p>instead of</p> - <pre>#include "xxx.h"</pre> - </li> - <li>a new URI module for parsing URIs and following strictly RFC 2396</li> - <li>the memory allocation routines used by libxml can now be overloaded - dynamically by using xmlMemSetup()</li> - <li>The previously CVS only tool tester has been renamed - <strong>xmllint</strong> and is now installed as part of the libxml2 - package</li> - <li>The I/O interface has been revamped. There is now ways to plug in - specific I/O modules, either at the URI scheme detection level using - xmlRegisterInputCallbacks() or by passing I/O functions when creating a - parser context using xmlCreateIOParserCtxt()</li> - <li>there is a C preprocessor macro LIBXML_VERSION providing the version - number of the libxml module in use</li> - <li>a number of optional features of libxml can now be excluded at - configure time (FTP/HTTP/HTML/XPath/Debug)</li> -</ul> - -<h3>2.0.0beta: Mar 14 2000</h3> -<ul> - <li>This is a first Beta release of libxml version 2</li> - <li>It's available only from<a href="ftp://xmlsoft.org/libxml2/">xmlsoft.org - FTP</a>, it's packaged as libxml2-2.0.0beta and available as tar and - RPMs</li> - <li>This version is now the head in the Gnome CVS base, the old one is - available under the tag LIB_XML_1_X</li> - <li>This includes a very large set of changes. From a programmatic point - of view applications should not have to be modified too much, check the - <a href="upgrade.html">upgrade page</a></li> - <li>Some interfaces may changes (especially a bit about encoding).</li> - <li>the updates includes: - <ul> - <li>fix I18N support. ISO-Latin-x/UTF-8/UTF-16 (nearly) seems correctly - handled now</li> - <li>Better handling of entities, especially well-formedness checking - and proper PEref extensions in external subsets</li> - <li>DTD conditional sections</li> - <li>Validation now correctly handle entities content</li> - <li><a href="http://rpmfind.net/tools/gdome/messages/0039.html">change - structures to accommodate DOM</a></li> - </ul> - </li> - <li>Serious progress were made toward compliance, <a - href="conf/result.html">here are the result of the test</a> against the - OASIS testsuite (except the Japanese tests since I don't support that - encoding yet). This URL is rebuilt every couple of hours using the CVS - head version.</li> -</ul> - -<h3>1.8.7: Mar 6 2000</h3> -<ul> - <li>This is a bug fix release:</li> - <li>It is possible to disable the ignorable blanks heuristic used by - libxml-1.x, a new function xmlKeepBlanksDefault(0) will allow this. Note - that for adherence to XML spec, this behaviour will be disabled by - default in 2.x . The same function will allow to keep compatibility for - old code.</li> - <li>Blanks in <a> </a> constructs are not ignored anymore, - avoiding heuristic is really the Right Way :-\</li> - <li>The unchecked use of snprintf which was breaking libxml-1.8.6 - compilation on some platforms has been fixed</li> - <li>nanoftp.c nanohttp.c: Fixed '#' and '?' stripping when processing - URIs</li> -</ul> - -<h3>1.8.6: Jan 31 2000</h3> -<ul> - <li>added a nanoFTP transport module, debugged until the new version of <a - href="http://rpmfind.net/linux/rpm2html/rpmfind.html">rpmfind</a> can use - it without troubles</li> -</ul> - -<h3>1.8.5: Jan 21 2000</h3> -<ul> - <li>adding APIs to parse a well balanced chunk of XML (production <a - href="http://www.w3.org/TR/REC-xml#NT-content">[43] content</a> of the - XML spec)</li> - <li>fixed a hideous bug in xmlGetProp pointed by Rune.Djurhuus@fast.no</li> - <li>Jody Goldberg <jgoldberg@home.com> provided another patch trying - to solve the zlib checks problems</li> - <li>The current state in gnome CVS base is expected to ship as 1.8.5 with - gnumeric soon</li> -</ul> - -<h3>1.8.4: Jan 13 2000</h3> -<ul> - <li>bug fixes, reintroduced xmlNewGlobalNs(), fixed xmlNewNs()</li> - <li>all exit() call should have been removed from libxml</li> - <li>fixed a problem with INCLUDE_WINSOCK on WIN32 platform</li> - <li>added newDocFragment()</li> -</ul> - -<h3>1.8.3: Jan 5 2000</h3> -<ul> - <li>a Push interface for the XML and HTML parsers</li> - <li>a shell-like interface to the document tree (try tester --shell :-)</li> - <li>lots of bug fixes and improvement added over XMas holidays</li> - <li>fixed the DTD parsing code to work with the xhtml DTD</li> - <li>added xmlRemoveProp(), xmlRemoveID() and xmlRemoveRef()</li> - <li>Fixed bugs in xmlNewNs()</li> - <li>External entity loading code has been revamped, now it uses - xmlLoadExternalEntity(), some fix on entities processing were added</li> - <li>cleaned up WIN32 includes of socket stuff</li> -</ul> - -<h3>1.8.2: Dec 21 1999</h3> -<ul> - <li>I got another problem with includes and C++, I hope this issue is fixed - for good this time</li> - <li>Added a few tree modification functions: xmlReplaceNode, - xmlAddPrevSibling, xmlAddNextSibling, xmlNodeSetName and - xmlDocSetRootElement</li> - <li>Tried to improve the HTML output with help from <a - href="mailto:clahey@umich.edu">Chris Lahey</a></li> -</ul> - -<h3>1.8.1: Dec 18 1999</h3> -<ul> - <li>various patches to avoid troubles when using libxml with C++ compilers - the "namespace" keyword and C escaping in include files</li> - <li>a problem in one of the core macros IS_CHAR was corrected</li> - <li>fixed a bug introduced in 1.8.0 breaking default namespace processing, - and more specifically the Dia application</li> - <li>fixed a posteriori validation (validation after parsing, or by using a - Dtd not specified in the original document)</li> - <li>fixed a bug in</li> -</ul> - -<h3>1.8.0: Dec 12 1999</h3> -<ul> - <li>cleanup, especially memory wise</li> - <li>the parser should be more reliable, especially the HTML one, it should - not crash, whatever the input !</li> - <li>Integrated various patches, especially a speedup improvement for large - dataset from <a href="mailto:cnygard@bellatlantic.net">Carl Nygard</a>, - configure with --with-buffers to enable them.</li> - <li>attribute normalization, oops should have been added long ago !</li> - <li>attributes defaulted from DTDs should be available, xmlSetProp() now - does entities escaping by default.</li> -</ul> - -<h3>1.7.4: Oct 25 1999</h3> -<ul> - <li>Lots of HTML improvement</li> - <li>Fixed some errors when saving both XML and HTML</li> - <li>More examples, the regression tests should now look clean</li> - <li>Fixed a bug with contiguous charref</li> -</ul> - -<h3>1.7.3: Sep 29 1999</h3> -<ul> - <li>portability problems fixed</li> - <li>snprintf was used unconditionally, leading to link problems on system - were it's not available, fixed</li> -</ul> - -<h3>1.7.1: Sep 24 1999</h3> -<ul> - <li>The basic type for strings manipulated by libxml has been renamed in - 1.7.1 from <strong>CHAR</strong> to <strong>xmlChar</strong>. The reason - is that CHAR was conflicting with a predefined type on Windows. However - on non WIN32 environment, compatibility is provided by the way of a - <strong>#define </strong>.</li> - <li>Changed another error : the use of a structure field called errno, and - leading to troubles on platforms where it's a macro</li> -</ul> - -<h3>1.7.0: Sep 23 1999</h3> -<ul> - <li>Added the ability to fetch remote DTD or parsed entities, see the <a - href="html/libxml-nanohttp.html">nanohttp</a> module.</li> - <li>Added an errno to report errors by another mean than a simple printf - like callback</li> - <li>Finished ID/IDREF support and checking when validation</li> - <li>Serious memory leaks fixed (there is now a <a - href="html/libxml-xmlmemory.html">memory wrapper</a> module)</li> - <li>Improvement of <a href="http://www.w3.org/TR/xpath">XPath</a> - implementation</li> - <li>Added an HTML parser front-end</li> -</ul> - -<h2><a name="XML">XML</a></h2> - -<p><a href="http://www.w3.org/TR/REC-xml">XML is a standard</a> for -markup-based structured documents. Here is <a name="example">an example XML -document</a>:</p> -<pre><?xml version="1.0"?> -<EXAMPLE prop1="gnome is great" prop2="&amp; linux too"> - <head> - <title>Welcome to Gnome</title> - </head> - <chapter> - <title>The Linux adventure</title> - <p>bla bla bla ...</p> - <image href="linus.gif"/> - <p>...</p> - </chapter> -</EXAMPLE></pre> - -<p>The first line specifies that it is an XML document and gives useful -information about its encoding. Then the rest of the document is a text -format whose structure is specified by tags between brackets. <strong>Each -tag opened has to be closed</strong>. XML is pedantic about this. However, if -a tag is empty (no content), a single tag can serve as both the opening and -closing tag if it ends with <code>/></code> rather than with -<code>></code>. Note that, for example, the image tag has no content (just -an attribute) and is closed by ending the tag with <code>/></code>.</p> - -<p>XML can be applied successfully to a wide range of tasks, ranging from -long term structured document maintenance (where it follows the steps of -SGML) to simple data encoding mechanisms like configuration file formatting -(glade), spreadsheets (gnumeric), or even shorter lived documents such as -WebDAV where it is used to encode remote calls between a client and a -server.</p> - -<h2><a name="XSLT">XSLT</a></h2> - -<p>Check <a href="http://xmlsoft.org/XSLT">the separate libxslt page</a></p> - -<p><a href="http://www.w3.org/TR/xslt">XSL Transformations</a>, is a -language for transforming XML documents into other XML documents (or -HTML/textual output).</p> - -<p>A separate library called libxslt is available implementing XSLT-1.0 for -libxml2. This module "libxslt" too can be found in the Gnome SVN base.</p> - -<p>You can check the progresses on the libxslt <a -href="http://xmlsoft.org/XSLT/ChangeLog.html">Changelog</a>.</p> - -<h2><a name="Python">Python and bindings</a></h2> - -<p>There are a number of language bindings and wrappers available for -libxml2, the list below is not exhaustive. Please contact the <a -href="http://mail.gnome.org/mailman/listinfo/xml-bindings">xml-bindings@gnome.org</a> -(<a href="http://mail.gnome.org/archives/xml-bindings/">archives</a>) in -order to get updates to this list or to discuss the specific topic of libxml2 -or libxslt wrappers or bindings:</p> -<ul> - <li><a href="http://libxmlplusplus.sourceforge.net/">Libxml++</a> seems the - most up-to-date C++ bindings for libxml2, check the <a - href="http://libxmlplusplus.sourceforge.net/reference/html/hierarchy.html">documentation</a> - and the <a - href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/libxmlplusplus/libxml%2b%2b/examples/">examples</a>.</li> - <li>There is another <a href="http://libgdome-cpp.berlios.de/">C++ wrapper - based on the gdome2 bindings</a> maintained by Tobias Peters.</li> - <li>and a third C++ wrapper by Peter Jones <pjones@pmade.org> - <p>Website: <a - href="http://pmade.org/pjones/software/xmlwrapp/">http://pmade.org/pjones/software/xmlwrapp/</a></p> - </li> - <li>XML::LibXML <a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl - bindings</a> are available on CPAN, as well as XML::LibXSLT - <a href="http://cpan.uwinnipeg.ca/dist/XML-LibXSLT">Perl libxslt - bindings</a>.</li> - <li>If you're interested into scripting XML processing, have a look at <a - href="http://xsh.sourceforge.net/">XSH</a> an XML editing shell based on - Libxml2 Perl bindings.</li> - <li><a href="mailto:dkuhlman@cutter.rexx.com">Dave Kuhlman</a> provides an - earlier version of the libxml/libxslt <a - href="http://www.rexx.com/~dkuhlman">wrappers for Python</a>.</li> - <li>Gopal.V and Peter Minten develop <a - href="http://savannah.gnu.org/projects/libxmlsharp">libxml#</a>, a set of - C# libxml2 bindings.</li> - <li>Petr Kozelka provides <a - href="http://sourceforge.net/projects/libxml2-pas">Pascal units to glue - libxml2</a> with Kylix, Delphi and other Pascal compilers.</li> - <li>Uwe Fechner also provides <a - href="http://sourceforge.net/projects/idom2-pas/">idom2</a>, a DOM2 - implementation for Kylix2/D5/D6 from Borland.</li> - <li>There is <a href="http://libxml.rubyforge.org/">bindings for Ruby</a> - and libxml2 bindings are also available in Ruby through the <a - href="http://libgdome-ruby.berlios.de/">libgdome-ruby</a> module - maintained by Tobias Peters.</li> - <li>Steve Ball and contributors maintains <a - href="http://tclxml.sourceforge.net/">libxml2 and libxslt bindings for - Tcl</a>.</li> - <li>libxml2 and libxslt are the default XML libraries for PHP5.</li> - <li><a href="http://savannah.gnu.org/projects/classpathx/">LibxmlJ</a> is - an effort to create a 100% JAXP-compatible Java wrapper for libxml2 and - libxslt as part of GNU ClasspathX project.</li> - <li>Patrick McPhee provides Rexx bindings fof libxml2 and libxslt, look for - <a href="http://www.interlog.com/~ptjm/software.html">RexxXML</a>.</li> - <li><a - href="http://www.satimage.fr/software/en/xml_suite.html">Satimage</a> - provides <a - href="http://www.satimage.fr/software/en/downloads_osaxen.html">XMLLib - osax</a>. This is an osax for Mac OS X with a set of commands to - implement in AppleScript the XML DOM, XPATH and XSLT. Also includes - commands for Property-lists (Apple's fast lookup table XML format.)</li> - <li>Francesco Montorsi developped <a - href="https://sourceforge.net/project/showfiles.php?group_id=51305&package_id=45182">wxXml2</a> - wrappers that interface libxml2, allowing wxWidgets applications to - load/save/edit XML instances.</li> -</ul> - -<p>The distribution includes a set of Python bindings, which are guaranteed -to be maintained as part of the library in the future, though the Python -interface have not yet reached the completeness of the C API.</p> - -<p>Note that some of the Python purist dislike the default set of Python -bindings, rather than complaining I suggest they have a look at <a -href="http://codespeak.net/lxml/">lxml the more pythonic bindings for libxml2 -and libxslt</a> and <a -href="http://codespeak.net/mailman/listinfo/lxml-dev">help Martijn -Faassen</a> complete those.</p> - -<p><a href="mailto:stephane.bidoul@softwareag.com">Stéphane Bidoul</a> -maintains <a href="http://users.skynet.be/sbi/libxml-python/">a Windows port -of the Python bindings</a>.</p> - -<p>Note to people interested in building bindings, the API is formalized as -<a href="libxml2-api.xml">an XML API description file</a> which allows to -automate a large part of the Python bindings, this includes function -descriptions, enums, structures, typedefs, etc... The Python script used to -build the bindings is python/generator.py in the source distribution.</p> - -<p>To install the Python bindings there are 2 options:</p> -<ul> - <li>If you use an RPM based distribution, simply install the <a - href="http://rpmfind.net/linux/rpm2html/search.php?query=libxml2-python">libxml2-python - RPM</a> (and if needed the <a - href="http://rpmfind.net/linux/rpm2html/search.php?query=libxslt-python">libxslt-python - RPM</a>).</li> - <li>Otherwise use the <a href="ftp://xmlsoft.org/libxml2/python/">libxml2-python - module distribution</a> corresponding to your installed version of - libxml2 and libxslt. Note that to install it you will need both libxml2 - and libxslt installed and run "python setup.py build install" in the - module tree.</li> -</ul> - -<p>The distribution includes a set of examples and regression tests for the -python bindings in the <code>python/tests</code> directory. Here are some -excerpts from those tests:</p> - -<h3>tst.py:</h3> - -<p>This is a basic test of the file interface and DOM navigation:</p> -<pre>import libxml2, sys - -doc = libxml2.parseFile("tst.xml") -if doc.name != "tst.xml": - print "doc.name failed" - sys.exit(1) -root = doc.children -if root.name != "doc": - print "root.name failed" - sys.exit(1) -child = root.children -if child.name != "foo": - print "child.name failed" - sys.exit(1) -doc.freeDoc()</pre> - -<p>The Python module is called libxml2; parseFile is the equivalent of -xmlParseFile (most of the bindings are automatically generated, and the xml -prefix is removed and the casing convention are kept). All node seen at the -binding level share the same subset of accessors:</p> -<ul> - <li><code>name</code> : returns the node name</li> - <li><code>type</code> : returns a string indicating the node type</li> - <li><code>content</code> : returns the content of the node, it is based on - xmlNodeGetContent() and hence is recursive.</li> - <li><code>parent</code> , <code>children</code>, <code>last</code>, - <code>next</code>, <code>prev</code>, <code>doc</code>, - <code>properties</code>: pointing to the associated element in the tree, - those may return None in case no such link exists.</li> -</ul> - -<p>Also note the need to explicitly deallocate documents with freeDoc() . -Reference counting for libxml2 trees would need quite a lot of work to -function properly, and rather than risk memory leaks if not implemented -correctly it sounds safer to have an explicit function to free a tree. The -wrapper python objects like doc, root or child are them automatically garbage -collected.</p> - -<h3>validate.py:</h3> - -<p>This test check the validation interfaces and redirection of error -messages:</p> -<pre>import libxml2 - -#deactivate error messages from the validation -def noerr(ctx, str): - pass - -libxml2.registerErrorHandler(noerr, None) - -ctxt = libxml2.createFileParserCtxt("invalid.xml") -ctxt.validate(1) -ctxt.parseDocument() -doc = ctxt.doc() -valid = ctxt.isValid() -doc.freeDoc() -if valid != 0: - print "validity check failed"</pre> - -<p>The first thing to notice is the call to registerErrorHandler(), it -defines a new error handler global to the library. It is used to avoid seeing -the error messages when trying to validate the invalid document.</p> - -<p>The main interest of that test is the creation of a parser context with -createFileParserCtxt() and how the behaviour can be changed before calling -parseDocument() . Similarly the information resulting from the parsing phase -is also available using context methods.</p> - -<p>Contexts like nodes are defined as class and the libxml2 wrappers maps the -C function interfaces in terms of objects method as much as possible. The -best to get a complete view of what methods are supported is to look at the -libxml2.py module containing all the wrappers.</p> - -<h3>push.py:</h3> - -<p>This test show how to activate the push parser interface:</p> -<pre>import libxml2 - -ctxt = libxml2.createPushParser(None, "<foo", 4, "test.xml") -ctxt.parseChunk("/>", 2, 1) -doc = ctxt.doc() - -doc.freeDoc()</pre> - -<p>The context is created with a special call based on the -xmlCreatePushParser() from the C library. The first argument is an optional -SAX callback object, then the initial set of data, the length and the name of -the resource in case URI-References need to be computed by the parser.</p> - -<p>Then the data are pushed using the parseChunk() method, the last call -setting the third argument terminate to 1.</p> - -<h3>pushSAX.py:</h3> - -<p>this test show the use of the event based parsing interfaces. In this case -the parser does not build a document, but provides callback information as -the parser makes progresses analyzing the data being provided:</p> -<pre>import libxml2 -log = "" - -class callback: - def startDocument(self): - global log - log = log + "startDocument:" - - def endDocument(self): - global log - log = log + "endDocument:" - - def startElement(self, tag, attrs): - global log - log = log + "startElement %s %s:" % (tag, attrs) - - def endElement(self, tag): - global log - log = log + "endElement %s:" % (tag) - - def characters(self, data): - global log - log = log + "characters: %s:" % (data) - - def warning(self, msg): - global log - log = log + "warning: %s:" % (msg) - - def error(self, msg): - global log - log = log + "error: %s:" % (msg) - - def fatalError(self, msg): - global log - log = log + "fatalError: %s:" % (msg) - -handler = callback() - -ctxt = libxml2.createPushParser(handler, "<foo", 4, "test.xml") -chunk = " url='tst'>b" -ctxt.parseChunk(chunk, len(chunk), 0) -chunk = "ar</foo>" -ctxt.parseChunk(chunk, len(chunk), 1) - -reference = "startDocument:startElement foo {'url': 'tst'}:" + \ - "characters: bar:endElement foo:endDocument:" -if log != reference: - print "Error got: %s" % log - print "Expected: %s" % reference</pre> - -<p>The key object in that test is the handler, it provides a number of entry -points which can be called by the parser as it makes progresses to indicate -the information set obtained. The full set of callback is larger than what -the callback class in that specific example implements (see the SAX -definition for a complete list). The wrapper will only call those supplied by -the object when activated. The startElement receives the names of the element -and a dictionary containing the attributes carried by this element.</p> - -<p>Also note that the reference string generated from the callback shows a -single character call even though the string "bar" is passed to the parser -from 2 different call to parseChunk()</p> - -<h3>xpath.py:</h3> - -<p>This is a basic test of XPath wrappers support</p> -<pre>import libxml2 - -doc = libxml2.parseFile("tst.xml") -ctxt = doc.xpathNewContext() -res = ctxt.xpathEval("//*") -if len(res) != 2: - print "xpath query: wrong node set size" - sys.exit(1) -if res[0].name != "doc" or res[1].name != "foo": - print "xpath query: wrong node set value" - sys.exit(1) -doc.freeDoc() -ctxt.xpathFreeContext()</pre> - -<p>This test parses a file, then create an XPath context to evaluate XPath -expression on it. The xpathEval() method execute an XPath query and returns -the result mapped in a Python way. String and numbers are natively converted, -and node sets are returned as a tuple of libxml2 Python nodes wrappers. Like -the document, the XPath context need to be freed explicitly, also not that -the result of the XPath query may point back to the document tree and hence -the document must be freed after the result of the query is used.</p> - -<h3>xpathext.py:</h3> - -<p>This test shows how to extend the XPath engine with functions written in -python:</p> -<pre>import libxml2 - -def foo(ctx, x): - return x + 1 - -doc = libxml2.parseFile("tst.xml") -ctxt = doc.xpathNewContext() -libxml2.registerXPathFunction(ctxt._o, "foo", None, foo) -res = ctxt.xpathEval("foo(1)") -if res != 2: - print "xpath extension failure" -doc.freeDoc() -ctxt.xpathFreeContext()</pre> - -<p>Note how the extension function is registered with the context (but that -part is not yet finalized, this may change slightly in the future).</p> - -<h3>tstxpath.py:</h3> - -<p>This test is similar to the previous one but shows how the extension -function can access the XPath evaluation context:</p> -<pre>def foo(ctx, x): - global called - - # - # test that access to the XPath evaluation contexts - # - pctxt = libxml2.xpathParserContext(_obj=ctx) - ctxt = pctxt.context() - called = ctxt.function() - return x + 1</pre> - -<p>All the interfaces around the XPath parser(or rather evaluation) context -are not finalized, but it should be sufficient to do contextual work at the -evaluation point.</p> - -<h3>Memory debugging:</h3> - -<p>last but not least, all tests starts with the following prologue:</p> -<pre>#memory debug specific -libxml2.debugMemory(1)</pre> - -<p>and ends with the following epilogue:</p> -<pre>#memory debug specific -libxml2.cleanupParser() -if libxml2.debugMemory(1) == 0: - print "OK" -else: - print "Memory leak %d bytes" % (libxml2.debugMemory(1)) - libxml2.dumpMemory()</pre> - -<p>Those activate the memory debugging interface of libxml2 where all -allocated block in the library are tracked. The prologue then cleans up the -library state and checks that all allocated memory has been freed. If not it -calls dumpMemory() which saves that list in a <code>.memdump</code> file.</p> - -<h2><a name="architecture">libxml2 architecture</a></h2> - -<p>Libxml2 is made of multiple components; some of them are optional, and -most of the block interfaces are public. The main components are:</p> -<ul> - <li>an Input/Output layer</li> - <li>FTP and HTTP client layers (optional)</li> - <li>an Internationalization layer managing the encodings support</li> - <li>a URI module</li> - <li>the XML parser and its basic SAX interface</li> - <li>an HTML parser using the same SAX interface (optional)</li> - <li>a SAX tree module to build an in-memory DOM representation</li> - <li>a tree module to manipulate the DOM representation</li> - <li>a validation module using the DOM representation (optional)</li> - <li>an XPath module for global lookup in a DOM representation - (optional)</li> - <li>a debug module (optional)</li> -</ul> - -<p>Graphically this gives the following:</p> - -<p><img src="libxml.gif" alt="a graphical view of the various"></p> - -<p></p> - -<h2><a name="tree">The tree output</a></h2> - -<p>The parser returns a tree built during the document analysis. The value -returned is an <strong>xmlDocPtr</strong> (i.e., a pointer to an -<strong>xmlDoc</strong> structure). This structure contains information such -as the file name, the document type, and a <strong>children</strong> pointer -which is the root of the document (or more exactly the first child under the -root which is the document). The tree is made of <strong>xmlNode</strong>s, -chained in double-linked lists of siblings and with a children<->parent -relationship. An xmlNode can also carry properties (a chain of xmlAttr -structures). An attribute may have a value which is a list of TEXT or -ENTITY_REF nodes.</p> - -<p>Here is an example (erroneous with respect to the XML spec since there -should be only one ELEMENT under the root):</p> - -<p><img src="structure.gif" alt=" structure.gif "></p> - -<p>In the source package there is a small program (not installed by default) -called <strong>xmllint</strong> which parses XML files given as argument and -prints them back as parsed. This is useful for detecting errors both in XML -code and in the XML parser itself. It has an option <strong>--debug</strong> -which prints the actual in-memory structure of the document; here is the -result with the <a href="#example">example</a> given before:</p> -<pre>DOCUMENT -version=1.0 -standalone=true - ELEMENT EXAMPLE - ATTRIBUTE prop1 - TEXT - content=gnome is great - ATTRIBUTE prop2 - ENTITY_REF - TEXT - content= linux too - ELEMENT head - ELEMENT title - TEXT - content=Welcome to Gnome - ELEMENT chapter - ELEMENT title - TEXT - content=The Linux adventure - ELEMENT p - TEXT - content=bla bla bla ... - ELEMENT image - ATTRIBUTE href - TEXT - content=linus.gif - ELEMENT p - TEXT - content=...</pre> - -<p>This should be useful for learning the internal representation model.</p> - -<h2><a name="interface">The SAX interface</a></h2> - -<p>Sometimes the DOM tree output is just too large to fit reasonably into -memory. In that case (and if you don't expect to save back the XML document -loaded using libxml), it's better to use the SAX interface of libxml. SAX is -a <strong>callback-based interface</strong> to the parser. Before parsing, -the application layer registers a customized set of callbacks which are -called by the library as it progresses through the XML input.</p> - -<p>To get more detailed step-by-step guidance on using the SAX interface of -libxml, see the <a -href="http://www.daa.com.au/~james/gnome/xml-sax/xml-sax.html">nice -documentation</a>.written by <a href="mailto:james@daa.com.au">James -Henstridge</a>.</p> - -<p>You can debug the SAX behaviour by using the <strong>testSAX</strong> -program located in the gnome-xml module (it's usually not shipped in the -binary packages of libxml, but you can find it in the tar source -distribution). Here is the sequence of callbacks that would be reported by -testSAX when parsing the example XML document shown earlier:</p> -<pre>SAX.setDocumentLocator() -SAX.startDocument() -SAX.getEntity(amp) -SAX.startElement(EXAMPLE, prop1='gnome is great', prop2='&amp; linux too') -SAX.characters( , 3) -SAX.startElement(head) -SAX.characters( , 4) -SAX.startElement(title) -SAX.characters(Welcome to Gnome, 16) -SAX.endElement(title) -SAX.characters( , 3) -SAX.endElement(head) -SAX.characters( , 3) -SAX.startElement(chapter) -SAX.characters( , 4) -SAX.startElement(title) -SAX.characters(The Linux adventure, 19) -SAX.endElement(title) -SAX.characters( , 4) -SAX.startElement(p) -SAX.characters(bla bla bla ..., 15) -SAX.endElement(p) -SAX.characters( , 4) -SAX.startElement(image, href='linus.gif') -SAX.endElement(image) -SAX.characters( , 4) -SAX.startElement(p) -SAX.characters(..., 3) -SAX.endElement(p) -SAX.characters( , 3) -SAX.endElement(chapter) -SAX.characters( , 1) -SAX.endElement(EXAMPLE) -SAX.endDocument()</pre> - -<p>Most of the other interfaces of libxml2 are based on the DOM tree-building -facility, so nearly everything up to the end of this document presupposes the -use of the standard DOM tree build. Note that the DOM tree itself is built by -a set of registered default callbacks, without internal specific -interface.</p> - -<h2><a name="Validation">Validation & DTDs</a></h2> - -<p>Table of Content:</p> -<ol> - <li><a href="#General5">General overview</a></li> - <li><a href="#definition">The definition</a></li> - <li><a href="#Simple">Simple rules</a> - <ol> - <li><a href="#reference">How to reference a DTD from a document</a></li> - <li><a href="#Declaring">Declaring elements</a></li> - <li><a href="#Declaring1">Declaring attributes</a></li> - </ol> - </li> - <li><a href="#Some">Some examples</a></li> - <li><a href="#validate">How to validate</a></li> - <li><a href="#Other">Other resources</a></li> -</ol> - -<h3><a name="General5">General overview</a></h3> - -<p>Well what is validation and what is a DTD ?</p> - -<p>DTD is the acronym for Document Type Definition. This is a description of -the content for a family of XML files. This is part of the XML 1.0 -specification, and allows one to describe and verify that a given document -instance conforms to the set of rules detailing its structure and content.</p> - -<p>Validation is the process of checking a document against a DTD (more -generally against a set of construction rules).</p> - -<p>The validation process and building DTDs are the two most difficult parts -of the XML life cycle. Briefly a DTD defines all the possible elements to be -found within your document, what is the formal shape of your document tree -(by defining the allowed content of an element; either text, a regular -expression for the allowed list of children, or mixed content i.e. both text -and children). The DTD also defines the valid attributes for all elements and -the types of those attributes.</p> - -<h3><a name="definition1">The definition</a></h3> - -<p>The <a href="http://www.w3.org/TR/REC-xml">W3C XML Recommendation</a> (<a -href="http://www.xml.com/axml/axml.html">Tim Bray's annotated version of -Rev1</a>):</p> -<ul> - <li><a href="http://www.w3.org/TR/REC-xml#elemdecls">Declaring - elements</a></li> - <li><a href="http://www.w3.org/TR/REC-xml#attdecls">Declaring - attributes</a></li> -</ul> - -<p>(unfortunately) all this is inherited from the SGML world, the syntax is -ancient...</p> - -<h3><a name="Simple1">Simple rules</a></h3> - -<p>Writing DTDs can be done in many ways. The rules to build them if you need -something permanent or something which can evolve over time can be radically -different. Really complex DTDs like DocBook ones are flexible but quite -harder to design. I will just focus on DTDs for a formats with a fixed simple -structure. It is just a set of basic rules, and definitely not exhaustive nor -usable for complex DTD design.</p> - -<h4><a name="reference1">How to reference a DTD from a document</a>:</h4> - -<p>Assuming the top element of the document is <code>spec</code> and the dtd -is placed in the file <code>mydtd</code> in the subdirectory -<code>dtds</code> of the directory from where the document were loaded:</p> - -<p><code><!DOCTYPE spec SYSTEM "dtds/mydtd"></code></p> - -<p>Notes:</p> -<ul> - <li>The system string is actually an URI-Reference (as defined in <a - href="http://www.ietf.org/rfc/rfc2396.txt">RFC 2396</a>) so you can use a - full URL string indicating the location of your DTD on the Web. This is a - really good thing to do if you want others to validate your document.</li> - <li>It is also possible to associate a <code>PUBLIC</code> identifier (a - magic string) so that the DTD is looked up in catalogs on the client side - without having to locate it on the web.</li> - <li>A DTD contains a set of element and attribute declarations, but they - don't define what the root of the document should be. This is explicitly - told to the parser/validator as the first element of the - <code>DOCTYPE</code> declaration.</li> -</ul> - -<h4><a name="Declaring2">Declaring elements</a>:</h4> - -<p>The following declares an element <code>spec</code>:</p> - -<p><code><!ELEMENT spec (front, body, back?)></code></p> - -<p>It also expresses that the spec element contains one <code>front</code>, -one <code>body</code> and one optional <code>back</code> children elements in -this order. The declaration of one element of the structure and its content -are done in a single declaration. Similarly the following declares -<code>div1</code> elements:</p> - -<p><code><!ELEMENT div1 (head, (p | list | note)*, div2?)></code></p> - -<p>which means div1 contains one <code>head</code> then a series of optional -<code>p</code>, <code>list</code>s and <code>note</code>s and then an -optional <code>div2</code>. And last but not least an element can contain -text:</p> - -<p><code><!ELEMENT b (#PCDATA)></code></p> - -<p><code>b</code> contains text or being of mixed content (text and elements -in no particular order):</p> - -<p><code><!ELEMENT p (#PCDATA|a|ul|b|i|em)*></code></p> - -<p><code>p </code>can contain text or <code>a</code>, <code>ul</code>, -<code>b</code>, <code>i </code>or <code>em</code> elements in no particular -order.</p> - -<h4><a name="Declaring1">Declaring attributes</a>:</h4> - -<p>Again the attributes declaration includes their content definition:</p> - -<p><code><!ATTLIST termdef name CDATA #IMPLIED></code></p> - -<p>means that the element <code>termdef</code> can have a <code>name</code> -attribute containing text (<code>CDATA</code>) and which is optional -(<code>#IMPLIED</code>). The attribute value can also be defined within a -set:</p> - -<p><code><!ATTLIST list type (bullets|ordered|glossary) -"ordered"></code></p> - -<p>means <code>list</code> element have a <code>type</code> attribute with 3 -allowed values "bullets", "ordered" or "glossary" and which default to -"ordered" if the attribute is not explicitly specified.</p> - -<p>The content type of an attribute can be text (<code>CDATA</code>), -anchor/reference/references -(<code>ID</code>/<code>IDREF</code>/<code>IDREFS</code>), entity(ies) -(<code>ENTITY</code>/<code>ENTITIES</code>) or name(s) -(<code>NMTOKEN</code>/<code>NMTOKENS</code>). The following defines that a -<code>chapter</code> element can have an optional <code>id</code> attribute -of type <code>ID</code>, usable for reference from attribute of type -IDREF:</p> - -<p><code><!ATTLIST chapter id ID #IMPLIED></code></p> - -<p>The last value of an attribute definition can be <code>#REQUIRED -</code>meaning that the attribute has to be given, <code>#IMPLIED</code> -meaning that it is optional, or the default value (possibly prefixed by -<code>#FIXED</code> if it is the only allowed).</p> - -<p>Notes:</p> -<ul> - <li>Usually the attributes pertaining to a given element are declared in a - single expression, but it is just a convention adopted by a lot of DTD - writers: - <pre><!ATTLIST termdef - id ID #REQUIRED - name CDATA #IMPLIED></pre> - <p>The previous construct defines both <code>id</code> and - <code>name</code> attributes for the element <code>termdef</code>.</p> - </li> -</ul> - -<h3><a name="Some1">Some examples</a></h3> - -<p>The directory <code>test/valid/dtds/</code> in the libxml2 distribution -contains some complex DTD examples. The example in the file -<code>test/valid/dia.xml</code> shows an XML file where the simple DTD is -directly included within the document.</p> - -<h3><a name="validate1">How to validate</a></h3> - -<p>The simplest way is to use the xmllint program included with libxml. The -<code>--valid</code> option turns-on validation of the files given as input. -For example the following validates a copy of the first revision of the XML -1.0 specification:</p> - -<p><code>xmllint --valid --noout test/valid/REC-xml-19980210.xml</code></p> - -<p>the -- noout is used to disable output of the resulting tree.</p> - -<p>The <code>--dtdvalid dtd</code> allows validation of the document(s) -against a given DTD.</p> - -<p>Libxml2 exports an API to handle DTDs and validation, check the <a -href="http://xmlsoft.org/html/libxml-valid.html">associated -description</a>.</p> - -<h3><a name="Other1">Other resources</a></h3> - -<p>DTDs are as old as SGML. So there may be a number of examples on-line, I -will just list one for now, others pointers welcome:</p> -<ul> - <li><a href="http://www.xml101.com:8081/dtd/">XML-101 DTD</a></li> -</ul> - -<p>I suggest looking at the examples found under test/valid/dtd and any of -the large number of books available on XML. The dia example in test/valid -should be both simple and complete enough to allow you to build your own.</p> - -<p></p> - -<h2><a name="Memory">Memory Management</a></h2> - -<p>Table of Content:</p> -<ol> - <li><a href="#General3">General overview</a></li> - <li><a href="#setting">Setting libxml2 set of memory routines</a></li> - <li><a href="#cleanup">Cleaning up after parsing</a></li> - <li><a href="#Debugging">Debugging routines</a></li> - <li><a href="#General4">General memory requirements</a></li> -</ol> - -<h3><a name="General3">General overview</a></h3> - -<p>The module <code><a -href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlmemory.h</a></code> -provides the interfaces to the libxml2 memory system:</p> -<ul> - <li>libxml2 does not use the libc memory allocator directly but xmlFree(), - xmlMalloc() and xmlRealloc()</li> - <li>those routines can be reallocated to a specific set of routine, by - default the libc ones i.e. free(), malloc() and realloc()</li> - <li>the xmlmemory.c module includes a set of debugging routine</li> -</ul> - -<h3><a name="setting">Setting libxml2 set of memory routines</a></h3> - -<p>It is sometimes useful to not use the default memory allocator, either for -debugging, analysis or to implement a specific behaviour on memory management -(like on embedded systems). Two function calls are available to do so:</p> -<ul> - <li><a href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlMemGet - ()</a> which return the current set of functions in use by the parser</li> - <li><a - href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlMemSetup()</a> - which allow to set up a new set of memory allocation functions</li> -</ul> - -<p>Of course a call to xmlMemSetup() should probably be done before calling -any other libxml2 routines (unless you are sure your allocations routines are -compatibles).</p> - -<h3><a name="cleanup">Cleaning up after parsing</a></h3> - -<p>Libxml2 is not stateless, there is a few set of memory structures needing -allocation before the parser is fully functional (some encoding structures -for example). This also mean that once parsing is finished there is a tiny -amount of memory (a few hundred bytes) which can be recollected if you don't -reuse the parser immediately:</p> -<ul> - <li><a href="http://xmlsoft.org/html/libxml-parser.html">xmlCleanupParser - ()</a> is a centralized routine to free the parsing states. Note that it - won't deallocate any produced tree if any (use the xmlFreeDoc() and - related routines for this).</li> - <li><a href="http://xmlsoft.org/html/libxml-parser.html">xmlInitParser - ()</a> is the dual routine allowing to preallocate the parsing state - which can be useful for example to avoid initialization reentrancy - problems when using libxml2 in multithreaded applications</li> -</ul> - -<p>Generally xmlCleanupParser() is safe, if needed the state will be rebuild -at the next invocation of parser routines, but be careful of the consequences -in multithreaded applications.</p> - -<h3><a name="Debugging">Debugging routines</a></h3> - -<p>When configured using --with-mem-debug flag (off by default), libxml2 uses -a set of memory allocation debugging routines keeping track of all allocated -blocks and the location in the code where the routine was called. A couple of -other debugging routines allow to dump the memory allocated infos to a file -or call a specific routine when a given block number is allocated:</p> -<ul> - <li><a - href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlMallocLoc()</a> - <a - href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlReallocLoc()</a> - and <a - href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlMemStrdupLoc()</a> - are the memory debugging replacement allocation routines</li> - <li><a href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlMemoryDump - ()</a> dumps all the information about the allocated memory block lefts - in the <code>.memdump</code> file</li> -</ul> - -<p>When developing libxml2 memory debug is enabled, the tests programs call -xmlMemoryDump () and the "make test" regression tests will check for any -memory leak during the full regression test sequence, this helps a lot -ensuring that libxml2 does not leak memory and bullet proof memory -allocations use (some libc implementations are known to be far too permissive -resulting in major portability problems!).</p> - -<p>If the .memdump reports a leak, it displays the allocation function and -also tries to give some information about the content and structure of the -allocated blocks left. This is sufficient in most cases to find the culprit, -but not always. Assuming the allocation problem is reproducible, it is -possible to find more easily:</p> -<ol> - <li>write down the block number xxxx not allocated</li> - <li>export the environment variable XML_MEM_BREAKPOINT=xxxx , the easiest - when using GDB is to simply give the command - <p><code>set environment XML_MEM_BREAKPOINT xxxx</code></p> - <p>before running the program.</p> - </li> - <li>run the program under a debugger and set a breakpoint on - xmlMallocBreakpoint() a specific function called when this precise block - is allocated</li> - <li>when the breakpoint is reached you can then do a fine analysis of the - allocation an step to see the condition resulting in the missing - deallocation.</li> -</ol> - -<p>I used to use a commercial tool to debug libxml2 memory problems but after -noticing that it was not detecting memory leaks that simple mechanism was -used and proved extremely efficient until now. Lately I have also used <a -href="http://developer.kde.org/~sewardj/">valgrind</a> with quite some -success, it is tied to the i386 architecture since it works by emulating the -processor and instruction set, it is slow but extremely efficient, i.e. it -spot memory usage errors in a very precise way.</p> - -<h3><a name="General4">General memory requirements</a></h3> - -<p>How much libxml2 memory require ? It's hard to tell in average it depends -of a number of things:</p> -<ul> - <li>the parser itself should work in a fixed amount of memory, except for - information maintained about the stacks of names and entities locations. - The I/O and encoding handlers will probably account for a few KBytes. - This is true for both the XML and HTML parser (though the HTML parser - need more state).</li> - <li>If you are generating the DOM tree then memory requirements will grow - nearly linear with the size of the data. In general for a balanced - textual document the internal memory requirement is about 4 times the - size of the UTF8 serialization of this document (example the XML-1.0 - recommendation is a bit more of 150KBytes and takes 650KBytes of main - memory when parsed). Validation will add a amount of memory required for - maintaining the external Dtd state which should be linear with the - complexity of the content model defined by the Dtd</li> - <li>If you need to work with fixed memory requirements or don't need the - full DOM tree then using the <a href="xmlreader.html">xmlReader - interface</a> is probably the best way to proceed, it still allows to - validate or operate on subset of the tree if needed.</li> - <li>If you don't care about the advanced features of libxml2 like - validation, DOM, XPath or XPointer, don't use entities, need to work with - fixed memory requirements, and try to get the fastest parsing possible - then the SAX interface should be used, but it has known restrictions.</li> -</ul> - -<p></p> - -<h2><a name="Encodings">Encodings support</a></h2> - -<p>If you are not really familiar with Internationalization (usual shortcut -is I18N) , Unicode, characters and glyphs, I suggest you read a <a -href="http://www.tbray.org/ongoing/When/200x/2003/04/06/Unicode">presentation</a> -by Tim Bray on Unicode and why you should care about it.</p> - -<p>If you don't understand why <b>it does not make sense to have a string -without knowing what encoding it uses</b>, then as Joel Spolsky said <a -href="http://www.joelonsoftware.com/articles/Unicode.html">please do not -write another line of code until you finish reading that article.</a>. It is -a prerequisite to understand this page, and avoid a lot of problems with -libxml2, XML or text processing in general.</p> - -<p>Table of Content:</p> -<ol> - <li><a href="encoding.html#What">What does internationalization support - mean ?</a></li> - <li><a href="encoding.html#internal">The internal encoding, how and - why</a></li> - <li><a href="encoding.html#implemente">How is it implemented ?</a></li> - <li><a href="encoding.html#Default">Default supported encodings</a></li> - <li><a href="encoding.html#extend">How to extend the existing - support</a></li> -</ol> - -<h3><a name="What">What does internationalization support mean ?</a></h3> - -<p>XML was designed from the start to allow the support of any character set -by using Unicode. Any conformant XML parser has to support the UTF-8 and -UTF-16 default encodings which can both express the full unicode ranges. UTF8 -is a variable length encoding whose greatest points are to reuse the same -encoding for ASCII and to save space for Western encodings, but it is a bit -more complex to handle in practice. UTF-16 use 2 bytes per character (and -sometimes combines two pairs), it makes implementation easier, but looks a -bit overkill for Western languages encoding. Moreover the XML specification -allows the document to be encoded in other encodings at the condition that -they are clearly labeled as such. For example the following is a wellformed -XML document encoded in ISO-8859-1 and using accentuated letters that we -French like for both markup and content:</p> -<pre><?xml version="1.0" encoding="ISO-8859-1"?> -<très>là</très></pre> - -<p>Having internationalization support in libxml2 means the following:</p> -<ul> - <li>the document is properly parsed</li> - <li>information about it's encoding is saved</li> - <li>it can be modified</li> - <li>it can be saved in its original encoding</li> - <li>it can also be saved in another encoding supported by libxml2 (for - example straight UTF8 or even an ASCII form)</li> -</ul> - -<p>Another very important point is that the whole libxml2 API, with the -exception of a few routines to read with a specific encoding or save to a -specific encoding, is completely agnostic about the original encoding of the -document.</p> - -<p>It should be noted too that the HTML parser embedded in libxml2 now obey -the same rules too, the following document will be (as of 2.2.2) handled in -an internationalized fashion by libxml2 too:</p> -<pre><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" - "http://www.w3.org/TR/REC-html40/loose.dtd"> -<html lang="fr"> -<head> - <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> -</head> -<body> -<p>W3C crée des standards pour le Web.</body> -</html></pre> - -<h3><a name="internal">The internal encoding, how and why</a></h3> - -<p>One of the core decisions was to force all documents to be converted to a -default internal encoding, and that encoding to be UTF-8, here are the -rationales for those choices:</p> -<ul> - <li>keeping the native encoding in the internal form would force the libxml - users (or the code associated) to be fully aware of the encoding of the - original document, for examples when adding a text node to a document, - the content would have to be provided in the document encoding, i.e. the - client code would have to check it before hand, make sure it's conformant - to the encoding, etc ... Very hard in practice, though in some specific - cases this may make sense.</li> - <li>the second decision was which encoding. From the XML spec only UTF8 and - UTF16 really makes sense as being the two only encodings for which there - is mandatory support. UCS-4 (32 bits fixed size encoding) could be - considered an intelligent choice too since it's a direct Unicode mapping - support. I selected UTF-8 on the basis of efficiency and compatibility - with surrounding software: - <ul> - <li>UTF-8 while a bit more complex to convert from/to (i.e. slightly - more costly to import and export CPU wise) is also far more compact - than UTF-16 (and UCS-4) for a majority of the documents I see it used - for right now (RPM RDF catalogs, advogato data, various configuration - file formats, etc.) and the key point for today's computer - architecture is efficient uses of caches. If one nearly double the - memory requirement to store the same amount of data, this will trash - caches (main memory/external caches/internal caches) and my take is - that this harms the system far more than the CPU requirements needed - for the conversion to UTF-8</li> - <li>Most of libxml2 version 1 users were using it with straight ASCII - most of the time, doing the conversion with an internal encoding - requiring all their code to be rewritten was a serious show-stopper - for using UTF-16 or UCS-4.</li> - <li>UTF-8 is being used as the de-facto internal encoding standard for - related code like the <a href="http://www.pango.org/">pango</a> - upcoming Gnome text widget, and a lot of Unix code (yet another place - where Unix programmer base takes a different approach from Microsoft - - they are using UTF-16)</li> - </ul> - </li> -</ul> - -<p>What does this mean in practice for the libxml2 user:</p> -<ul> - <li>xmlChar, the libxml2 data type is a byte, those bytes must be assembled - as UTF-8 valid strings. The proper way to terminate an xmlChar * string - is simply to append 0 byte, as usual.</li> - <li>One just need to make sure that when using chars outside the ASCII set, - the values has been properly converted to UTF-8</li> -</ul> - -<h3><a name="implemente">How is it implemented ?</a></h3> - -<p>Let's describe how all this works within libxml, basically the I18N -(internationalization) support get triggered only during I/O operation, i.e. -when reading a document or saving one. Let's look first at the reading -sequence:</p> -<ol> - <li>when a document is processed, we usually don't know the encoding, a - simple heuristic allows to detect UTF-16 and UCS-4 from encodings where - the ASCII range (0-0x7F) maps with ASCII</li> - <li>the xml declaration if available is parsed, including the encoding - declaration. At that point, if the autodetected encoding is different - from the one declared a call to xmlSwitchEncoding() is issued.</li> - <li>If there is no encoding declaration, then the input has to be in either - UTF-8 or UTF-16, if it is not then at some point when processing the - input, the converter/checker of UTF-8 form will raise an encoding error. - You may end-up with a garbled document, or no document at all ! Example: - <pre>~/XML -> ./xmllint err.xml -err.xml:1: error: Input is not proper UTF-8, indicate encoding ! -<très>là</très> - ^ -err.xml:1: error: Bytes: 0xE8 0x73 0x3E 0x6C -<très>là</très> - ^</pre> - </li> - <li>xmlSwitchEncoding() does an encoding name lookup, canonicalize it, and - then search the default registered encoding converters for that encoding. - If it's not within the default set and iconv() support has been compiled - it, it will ask iconv for such an encoder. If this fails then the parser - will report an error and stops processing: - <pre>~/XML -> ./xmllint err2.xml -err2.xml:1: error: Unsupported encoding UnsupportedEnc -<?xml version="1.0" encoding="UnsupportedEnc"?> - ^</pre> - </li> - <li>From that point the encoder processes progressively the input (it is - plugged as a front-end to the I/O module) for that entity. It captures - and converts on-the-fly the document to be parsed to UTF-8. The parser - itself just does UTF-8 checking of this input and process it - transparently. The only difference is that the encoding information has - been added to the parsing context (more precisely to the input - corresponding to this entity).</li> - <li>The result (when using DOM) is an internal form completely in UTF-8 - with just an encoding information on the document node.</li> -</ol> - -<p>Ok then what happens when saving the document (assuming you -collected/built an xmlDoc DOM like structure) ? It depends on the function -called, xmlSaveFile() will just try to save in the original encoding, while -xmlSaveFileTo() and xmlSaveFileEnc() can optionally save to a given -encoding:</p> -<ol> - <li>if no encoding is given, libxml2 will look for an encoding value - associated to the document and if it exists will try to save to that - encoding, - <p>otherwise everything is written in the internal form, i.e. UTF-8</p> - </li> - <li>so if an encoding was specified, either at the API level or on the - document, libxml2 will again canonicalize the encoding name, lookup for a - converter in the registered set or through iconv. If not found the - function will return an error code</li> - <li>the converter is placed before the I/O buffer layer, as another kind of - buffer, then libxml2 will simply push the UTF-8 serialization to through - that buffer, which will then progressively be converted and pushed onto - the I/O layer.</li> - <li>It is possible that the converter code fails on some input, for example - trying to push an UTF-8 encoded Chinese character through the UTF-8 to - ISO-8859-1 converter won't work. Since the encoders are progressive they - will just report the error and the number of bytes converted, at that - point libxml2 will decode the offending character, remove it from the - buffer and replace it with the associated charRef encoding &#123; and - resume the conversion. This guarantees that any document will be saved - without losses (except for markup names where this is not legal, this is - a problem in the current version, in practice avoid using non-ascii - characters for tag or attribute names). A special "ascii" encoding name - is used to save documents to a pure ascii form can be used when - portability is really crucial</li> -</ol> - -<p>Here are a few examples based on the same test document:</p> -<pre>~/XML -> ./xmllint isolat1 -<?xml version="1.0" encoding="ISO-8859-1"?> -<très>là</très> -~/XML -> ./xmllint --encode UTF-8 isolat1 -<?xml version="1.0" encoding="UTF-8"?> -<très>là </très> -~/XML -> </pre> - -<p>The same processing is applied (and reuse most of the code) for HTML I18N -processing. Looking up and modifying the content encoding is a bit more -difficult since it is located in a <meta> tag under the <head>, -so a couple of functions htmlGetMetaEncoding() and htmlSetMetaEncoding() have -been provided. The parser also attempts to switch encoding on the fly when -detecting such a tag on input. Except for that the processing is the same -(and again reuses the same code).</p> - -<h3><a name="Default">Default supported encodings</a></h3> - -<p>libxml2 has a set of default converters for the following encodings -(located in encoding.c):</p> -<ol> - <li>UTF-8 is supported by default (null handlers)</li> - <li>UTF-16, both little and big endian</li> - <li>ISO-Latin-1 (ISO-8859-1) covering most western languages</li> - <li>ASCII, useful mostly for saving</li> - <li>HTML, a specific handler for the conversion of UTF-8 to ASCII with HTML - predefined entities like &copy; for the Copyright sign.</li> -</ol> - -<p>More over when compiled on an Unix platform with iconv support the full -set of encodings supported by iconv can be instantly be used by libxml. On a -linux machine with glibc-2.1 the list of supported encodings and aliases fill -3 full pages, and include UCS-4, the full set of ISO-Latin encodings, and the -various Japanese ones.</p> - -<p>To convert from the UTF-8 values returned from the API to another encoding -then it is possible to use the function provided from <a -href="html/libxml-encoding.html">the encoding module</a> like <a -href="html/libxml-encoding.html#UTF8Toisolat1">UTF8Toisolat1</a>, or use the -POSIX <a -href="http://www.opengroup.org/onlinepubs/009695399/functions/iconv.html">iconv()</a> -API directly.</p> - -<h4>Encoding aliases</h4> - -<p>From 2.2.3, libxml2 has support to register encoding names aliases. The -goal is to be able to parse document whose encoding is supported but where -the name differs (for example from the default set of names accepted by -iconv). The following functions allow to register and handle new aliases for -existing encodings. Once registered libxml2 will automatically lookup the -aliases when handling a document:</p> -<ul> - <li>int xmlAddEncodingAlias(const char *name, const char *alias);</li> - <li>int xmlDelEncodingAlias(const char *alias);</li> - <li>const char * xmlGetEncodingAlias(const char *alias);</li> - <li>void xmlCleanupEncodingAliases(void);</li> -</ul> - -<h3><a name="extend">How to extend the existing support</a></h3> - -<p>Well adding support for new encoding, or overriding one of the encoders -(assuming it is buggy) should not be hard, just write input and output -conversion routines to/from UTF-8, and register them using -xmlNewCharEncodingHandler(name, xxxToUTF8, UTF8Toxxx), and they will be -called automatically if the parser(s) encounter such an encoding name -(register it uppercase, this will help). The description of the encoders, -their arguments and expected return values are described in the encoding.h -header.</p> - -<h2><a name="IO">I/O Interfaces</a></h2> - -<p>Table of Content:</p> -<ol> - <li><a href="#General1">General overview</a></li> - <li><a href="#basic">The basic buffer type</a></li> - <li><a href="#Input">Input I/O handlers</a></li> - <li><a href="#Output">Output I/O handlers</a></li> - <li><a href="#entities">The entities loader</a></li> - <li><a href="#Example2">Example of customized I/O</a></li> -</ol> - -<h3><a name="General1">General overview</a></h3> - -<p>The module <code><a -href="http://xmlsoft.org/html/libxml-xmlio.html">xmlIO.h</a></code> provides -the interfaces to the libxml2 I/O system. This consists of 4 main parts:</p> -<ul> - <li>Entities loader, this is a routine which tries to fetch the entities - (files) based on their PUBLIC and SYSTEM identifiers. The default loader - don't look at the public identifier since libxml2 do not maintain a - catalog. You can redefine you own entity loader by using - <code>xmlGetExternalEntityLoader()</code> and - <code>xmlSetExternalEntityLoader()</code>. <a href="#entities">Check the - example</a>.</li> - <li>Input I/O buffers which are a commodity structure used by the parser(s) - input layer to handle fetching the information to feed the parser. This - provides buffering and is also a placeholder where the encoding - converters to UTF8 are piggy-backed.</li> - <li>Output I/O buffers are similar to the Input ones and fulfill similar - task but when generating a serialization from a tree.</li> - <li>A mechanism to register sets of I/O callbacks and associate them with - specific naming schemes like the protocol part of the URIs. - <p>This affect the default I/O operations and allows to use specific I/O - handlers for certain names.</p> - </li> -</ul> - -<p>The general mechanism used when loading http://rpmfind.net/xml.html for -example in the HTML parser is the following:</p> -<ol> - <li>The default entity loader calls <code>xmlNewInputFromFile()</code> with - the parsing context and the URI string.</li> - <li>the URI string is checked against the existing registered handlers - using their match() callback function, if the HTTP module was compiled - in, it is registered and its match() function will succeeds</li> - <li>the open() function of the handler is called and if successful will - return an I/O Input buffer</li> - <li>the parser will the start reading from this buffer and progressively - fetch information from the resource, calling the read() function of the - handler until the resource is exhausted</li> - <li>if an encoding change is detected it will be installed on the input - buffer, providing buffering and efficient use of the conversion - routines</li> - <li>once the parser has finished, the close() function of the handler is - called once and the Input buffer and associated resources are - deallocated.</li> -</ol> - -<p>The user defined callbacks are checked first to allow overriding of the -default libxml2 I/O routines.</p> - -<h3><a name="basic">The basic buffer type</a></h3> - -<p>All the buffer manipulation handling is done using the -<code>xmlBuffer</code> type define in <code><a -href="http://xmlsoft.org/html/libxml-tree.html">tree.h</a> </code>which is a -resizable memory buffer. The buffer allocation strategy can be selected to be -either best-fit or use an exponential doubling one (CPU vs. memory use -trade-off). The values are <code>XML_BUFFER_ALLOC_EXACT</code> and -<code>XML_BUFFER_ALLOC_DOUBLEIT</code>, and can be set individually or on a -system wide basis using <code>xmlBufferSetAllocationScheme()</code>. A number -of functions allows to manipulate buffers with names starting with the -<code>xmlBuffer...</code> prefix.</p> - -<h3><a name="Input">Input I/O handlers</a></h3> - -<p>An Input I/O handler is a simple structure -<code>xmlParserInputBuffer</code> containing a context associated to the -resource (file descriptor, or pointer to a protocol handler), the read() and -close() callbacks to use and an xmlBuffer. And extra xmlBuffer and a charset -encoding handler are also present to support charset conversion when -needed.</p> - -<h3><a name="Output">Output I/O handlers</a></h3> - -<p>An Output handler <code>xmlOutputBuffer</code> is completely similar to an -Input one except the callbacks are write() and close().</p> - -<h3><a name="entities">The entities loader</a></h3> - -<p>The entity loader resolves requests for new entities and create inputs for -the parser. Creating an input from a filename or an URI string is done -through the xmlNewInputFromFile() routine. The default entity loader do not -handle the PUBLIC identifier associated with an entity (if any). So it just -calls xmlNewInputFromFile() with the SYSTEM identifier (which is mandatory in -XML).</p> - -<p>If you want to hook up a catalog mechanism then you simply need to -override the default entity loader, here is an example:</p> -<pre>#include <libxml/xmlIO.h> - -xmlExternalEntityLoader defaultLoader = NULL; - -xmlParserInputPtr -xmlMyExternalEntityLoader(const char *URL, const char *ID, - xmlParserCtxtPtr ctxt) { - xmlParserInputPtr ret; - const char *fileID = NULL; - /* lookup for the fileID depending on ID */ - - ret = xmlNewInputFromFile(ctxt, fileID); - if (ret != NULL) - return(ret); - if (defaultLoader != NULL) - ret = defaultLoader(URL, ID, ctxt); - return(ret); -} - -int main(..) { - ... - - /* - * Install our own entity loader - */ - defaultLoader = xmlGetExternalEntityLoader(); - xmlSetExternalEntityLoader(xmlMyExternalEntityLoader); - - ... -}</pre> - -<h3><a name="Example2">Example of customized I/O</a></h3> - -<p>This example come from <a href="http://xmlsoft.org/messages/0708.html">a -real use case</a>, xmlDocDump() closes the FILE * passed by the application -and this was a problem. The <a -href="http://xmlsoft.org/messages/0711.html">solution</a> was to redefine a -new output handler with the closing call deactivated:</p> -<ol> - <li>First define a new I/O output allocator where the output don't close - the file: - <pre>xmlOutputBufferPtr -xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) { - xmlOutputBufferPtr ret; - - if (xmlOutputCallbackInitialized == 0) - xmlRegisterDefaultOutputCallbacks(); - - if (file == NULL) return(NULL); - ret = xmlAllocOutputBuffer(encoder); - if (ret != NULL) { - ret->context = file; - ret->writecallback = xmlFileWrite; - ret->closecallback = NULL; /* No close callback */ - } - return(ret); -} </pre> - </li> - <li>And then use it to save the document: - <pre>FILE *f; -xmlOutputBufferPtr output; -xmlDocPtr doc; -int res; - -f = ... -doc = .... - -output = xmlOutputBufferCreateOwn(f, NULL); -res = xmlSaveFileTo(output, doc, NULL); - </pre> - </li> -</ol> - -<h2><a name="Catalog">Catalog support</a></h2> - -<p>Table of Content:</p> -<ol> - <li><a href="General2">General overview</a></li> - <li><a href="#definition">The definition</a></li> - <li><a href="#Simple">Using catalogs</a></li> - <li><a href="#Some">Some examples</a></li> - <li><a href="#reference">How to tune catalog usage</a></li> - <li><a href="#validate">How to debug catalog processing</a></li> - <li><a href="#Declaring">How to create and maintain catalogs</a></li> - <li><a href="#implemento">The implementor corner quick review of the - API</a></li> - <li><a href="#Other">Other resources</a></li> -</ol> - -<h3><a name="General2">General overview</a></h3> - -<p>What is a catalog? Basically it's a lookup mechanism used when an entity -(a file or a remote resource) references another entity. The catalog lookup -is inserted between the moment the reference is recognized by the software -(XML parser, stylesheet processing, or even images referenced for inclusion -in a rendering) and the time where loading that resource is actually -started.</p> - -<p>It is basically used for 3 things:</p> -<ul> - <li>mapping from "logical" names, the public identifiers and a more - concrete name usable for download (and URI). For example it can associate - the logical name - <p>"-//OASIS//DTD DocBook XML V4.1.2//EN"</p> - <p>of the DocBook 4.1.2 XML DTD with the actual URL where it can be - downloaded</p> - <p>http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd</p> - </li> - <li>remapping from a given URL to another one, like an HTTP indirection - saying that - <p>"http://www.oasis-open.org/committes/tr.xsl"</p> - <p>should really be looked at</p> - <p>"http://www.oasis-open.org/committes/entity/stylesheets/base/tr.xsl"</p> - </li> - <li>providing a local cache mechanism allowing to load the entities - associated to public identifiers or remote resources, this is a really - important feature for any significant deployment of XML or SGML since it - allows to avoid the aleas and delays associated to fetching remote - resources.</li> -</ul> - -<h3><a name="definition">The definitions</a></h3> - -<p>Libxml, as of 2.4.3 implements 2 kind of catalogs:</p> -<ul> - <li>the older SGML catalogs, the official spec is SGML Open Technical - Resolution TR9401:1997, but is better understood by reading <a - href="http://www.jclark.com/sp/catalog.htm">the SP Catalog page</a> from - James Clark. This is relatively old and not the preferred mode of - operation of libxml.</li> - <li><a href="http://www.oasis-open.org/committees/entity/spec.html">XML - Catalogs</a> is far more flexible, more recent, uses an XML syntax and - should scale quite better. This is the default option of libxml.</li> -</ul> - -<p></p> - -<h3><a name="Simple">Using catalog</a></h3> - -<p>In a normal environment libxml2 will by default check the presence of a -catalog in /etc/xml/catalog, and assuming it has been correctly populated, -the processing is completely transparent to the document user. To take a -concrete example, suppose you are authoring a DocBook document, this one -starts with the following DOCTYPE definition:</p> -<pre><?xml version='1.0'?> -<!DOCTYPE book PUBLIC "-//Norman Walsh//DTD DocBk XML V3.1.4//EN" - "http://nwalsh.com/docbook/xml/3.1.4/db3xml.dtd"></pre> - -<p>When validating the document with libxml, the catalog will be -automatically consulted to lookup the public identifier "-//Norman Walsh//DTD -DocBk XML V3.1.4//EN" and the system identifier -"http://nwalsh.com/docbook/xml/3.1.4/db3xml.dtd", and if these entities have -been installed on your system and the catalogs actually point to them, libxml -will fetch them from the local disk.</p> - -<p style="font-size: 10pt"><strong>Note</strong>: Really don't use this -DOCTYPE example it's a really old version, but is fine as an example.</p> - -<p>Libxml2 will check the catalog each time that it is requested to load an -entity, this includes DTD, external parsed entities, stylesheets, etc ... If -your system is correctly configured all the authoring phase and processing -should use only local files, even if your document stays portable because it -uses the canonical public and system ID, referencing the remote document.</p> - -<h3><a name="Some">Some examples:</a></h3> - -<p>Here is a couple of fragments from XML Catalogs used in libxml2 early -regression tests in <code>test/catalogs</code> :</p> -<pre><?xml version="1.0"?> -<!DOCTYPE catalog PUBLIC - "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" - "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"> -<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"> - <public publicId="-//OASIS//DTD DocBook XML V4.1.2//EN" - uri="http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"/> -...</pre> - -<p>This is the beginning of a catalog for DocBook 4.1.2, XML Catalogs are -written in XML, there is a specific namespace for catalog elements -"urn:oasis:names:tc:entity:xmlns:xml:catalog". The first entry in this -catalog is a <code>public</code> mapping it allows to associate a Public -Identifier with an URI.</p> -<pre>... - <rewriteSystem systemIdStartString="http://www.oasis-open.org/docbook/" - rewritePrefix="file:///usr/share/xml/docbook/"/> -...</pre> - -<p>A <code>rewriteSystem</code> is a very powerful instruction, it says that -any URI starting with a given prefix should be looked at another URI -constructed by replacing the prefix with an new one. In effect this acts like -a cache system for a full area of the Web. In practice it is extremely useful -with a file prefix if you have installed a copy of those resources on your -local system.</p> -<pre>... -<delegatePublic publicIdStartString="-//OASIS//DTD XML Catalog //" - catalog="file:///usr/share/xml/docbook.xml"/> -<delegatePublic publicIdStartString="-//OASIS//ENTITIES DocBook XML" - catalog="file:///usr/share/xml/docbook.xml"/> -<delegatePublic publicIdStartString="-//OASIS//DTD DocBook XML" - catalog="file:///usr/share/xml/docbook.xml"/> -<delegateSystem systemIdStartString="http://www.oasis-open.org/docbook/" - catalog="file:///usr/share/xml/docbook.xml"/> -<delegateURI uriStartString="http://www.oasis-open.org/docbook/" - catalog="file:///usr/share/xml/docbook.xml"/> -...</pre> - -<p>Delegation is the core features which allows to build a tree of catalogs, -easier to maintain than a single catalog, based on Public Identifier, System -Identifier or URI prefixes it instructs the catalog software to look up -entries in another resource. This feature allow to build hierarchies of -catalogs, the set of entries presented should be sufficient to redirect the -resolution of all DocBook references to the specific catalog in -<code>/usr/share/xml/docbook.xml</code> this one in turn could delegate all -references for DocBook 4.2.1 to a specific catalog installed at the same time -as the DocBook resources on the local machine.</p> - -<h3><a name="reference">How to tune catalog usage:</a></h3> - -<p>The user can change the default catalog behaviour by redirecting queries -to its own set of catalogs, this can be done by setting the -<code>XML_CATALOG_FILES</code> environment variable to a list of catalogs, an -empty one should deactivate loading the default <code>/etc/xml/catalog</code> -default catalog</p> - -<h3><a name="validate">How to debug catalog processing:</a></h3> - -<p>Setting up the <code>XML_DEBUG_CATALOG</code> environment variable will -make libxml2 output debugging information for each catalog operations, for -example:</p> -<pre>orchis:~/XML -> xmllint --memory --noout test/ent2 -warning: failed to load external entity "title.xml" -orchis:~/XML -> export XML_DEBUG_CATALOG= -orchis:~/XML -> xmllint --memory --noout test/ent2 -Failed to parse catalog /etc/xml/catalog -Failed to parse catalog /etc/xml/catalog -warning: failed to load external entity "title.xml" -Catalogs cleanup -orchis:~/XML -> </pre> - -<p>The test/ent2 references an entity, running the parser from memory makes -the base URI unavailable and the the "title.xml" entity cannot be loaded. -Setting up the debug environment variable allows to detect that an attempt is -made to load the <code>/etc/xml/catalog</code> but since it's not present the -resolution fails.</p> - -<p>But the most advanced way to debug XML catalog processing is to use the -<strong>xmlcatalog</strong> command shipped with libxml2, it allows to load -catalogs and make resolution queries to see what is going on. This is also -used for the regression tests:</p> -<pre>orchis:~/XML -> ./xmlcatalog test/catalogs/docbook.xml \ - "-//OASIS//DTD DocBook XML V4.1.2//EN" -http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd -orchis:~/XML -> </pre> - -<p>For debugging what is going on, adding one -v flags increase the verbosity -level to indicate the processing done (adding a second flag also indicate -what elements are recognized at parsing):</p> -<pre>orchis:~/XML -> ./xmlcatalog -v test/catalogs/docbook.xml \ - "-//OASIS//DTD DocBook XML V4.1.2//EN" -Parsing catalog test/catalogs/docbook.xml's content -Found public match -//OASIS//DTD DocBook XML V4.1.2//EN -http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd -Catalogs cleanup -orchis:~/XML -> </pre> - -<p>A shell interface is also available to debug and process multiple queries -(and for regression tests):</p> -<pre>orchis:~/XML -> ./xmlcatalog -shell test/catalogs/docbook.xml \ - "-//OASIS//DTD DocBook XML V4.1.2//EN" -> help -Commands available: -public PublicID: make a PUBLIC identifier lookup -system SystemID: make a SYSTEM identifier lookup -resolve PublicID SystemID: do a full resolver lookup -add 'type' 'orig' 'replace' : add an entry -del 'values' : remove values -dump: print the current catalog state -debug: increase the verbosity level -quiet: decrease the verbosity level -exit: quit the shell -> public "-//OASIS//DTD DocBook XML V4.1.2//EN" -http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd -> quit -orchis:~/XML -> </pre> - -<p>This should be sufficient for most debugging purpose, this was actually -used heavily to debug the XML Catalog implementation itself.</p> - -<h3><a name="Declaring">How to create and maintain</a> catalogs:</h3> - -<p>Basically XML Catalogs are XML files, you can either use XML tools to -manage them or use <strong>xmlcatalog</strong> for this. The basic step is -to create a catalog the -create option provide this facility:</p> -<pre>orchis:~/XML -> ./xmlcatalog --create tst.xml -<?xml version="1.0"?> -<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" - "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"> -<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"/> -orchis:~/XML -> </pre> - -<p>By default xmlcatalog does not overwrite the original catalog and save the -result on the standard output, this can be overridden using the -noout -option. The <code>-add</code> command allows to add entries in the -catalog:</p> -<pre>orchis:~/XML -> ./xmlcatalog --noout --create --add "public" \ - "-//OASIS//DTD DocBook XML V4.1.2//EN" \ - http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd tst.xml -orchis:~/XML -> cat tst.xml -<?xml version="1.0"?> -<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" \ - "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"> -<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"> -<public publicId="-//OASIS//DTD DocBook XML V4.1.2//EN" - uri="http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"/> -</catalog> -orchis:~/XML -> </pre> - -<p>The <code>-add</code> option will always take 3 parameters even if some of -the XML Catalog constructs (like nextCatalog) will have only a single -argument, just pass a third empty string, it will be ignored.</p> - -<p>Similarly the <code>-del</code> option remove matching entries from the -catalog:</p> -<pre>orchis:~/XML -> ./xmlcatalog --del \ - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" tst.xml -<?xml version="1.0"?> -<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" - "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"> -<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"/> -orchis:~/XML -> </pre> - -<p>The catalog is now empty. Note that the matching of <code>-del</code> is -exact and would have worked in a similar fashion with the Public ID -string.</p> - -<p>This is rudimentary but should be sufficient to manage a not too complex -catalog tree of resources.</p> - -<h3><a name="implemento">The implementor corner quick review of the -API:</a></h3> - -<p>First, and like for every other module of libxml, there is an -automatically generated <a href="html/libxml-catalog.html">API page for -catalog support</a>.</p> - -<p>The header for the catalog interfaces should be included as:</p> -<pre>#include <libxml/catalog.h></pre> - -<p>The API is voluntarily kept very simple. First it is not obvious that -applications really need access to it since it is the default behaviour of -libxml2 (Note: it is possible to completely override libxml2 default catalog -by using <a href="html/libxml-parser.html">xmlSetExternalEntityLoader</a> to -plug an application specific resolver).</p> - -<p>Basically libxml2 support 2 catalog lists:</p> -<ul> - <li>the default one, global shared by all the application</li> - <li>a per-document catalog, this one is built if the document uses the - <code>oasis-xml-catalog</code> PIs to specify its own catalog list, it is - associated to the parser context and destroyed when the parsing context - is destroyed.</li> -</ul> - -<p>the document one will be used first if it exists.</p> - -<h4>Initialization routines:</h4> - -<p>xmlInitializeCatalog(), xmlLoadCatalog() and xmlLoadCatalogs() should be -used at startup to initialize the catalog, if the catalog should be -initialized with specific values xmlLoadCatalog() or xmlLoadCatalogs() -should be called before xmlInitializeCatalog() which would otherwise do a -default initialization first.</p> - -<p>The xmlCatalogAddLocal() call is used by the parser to grow the document -own catalog list if needed.</p> - -<h4>Preferences setup:</h4> - -<p>The XML Catalog spec requires the possibility to select default -preferences between public and system delegation, -xmlCatalogSetDefaultPrefer() allows this, xmlCatalogSetDefaults() and -xmlCatalogGetDefaults() allow to control if XML Catalogs resolution should -be forbidden, allowed for global catalog, for document catalog or both, the -default is to allow both.</p> - -<p>And of course xmlCatalogSetDebug() allows to generate debug messages -(through the xmlGenericError() mechanism).</p> - -<h4>Querying routines:</h4> - -<p>xmlCatalogResolve(), xmlCatalogResolveSystem(), xmlCatalogResolvePublic() -and xmlCatalogResolveURI() are relatively explicit if you read the XML -Catalog specification they correspond to section 7 algorithms, they should -also work if you have loaded an SGML catalog with a simplified semantic.</p> - -<p>xmlCatalogLocalResolve() and xmlCatalogLocalResolveURI() are the same but -operate on the document catalog list</p> - -<h4>Cleanup and Miscellaneous:</h4> - -<p>xmlCatalogCleanup() free-up the global catalog, xmlCatalogFreeLocal() is -the per-document equivalent.</p> - -<p>xmlCatalogAdd() and xmlCatalogRemove() are used to dynamically modify the -first catalog in the global list, and xmlCatalogDump() allows to dump a -catalog state, those routines are primarily designed for xmlcatalog, I'm not -sure that exposing more complex interfaces (like navigation ones) would be -really useful.</p> - -<p>The xmlParseCatalogFile() is a function used to load XML Catalog files, -it's similar as xmlParseFile() except it bypass all catalog lookups, it's -provided because this functionality may be useful for client tools.</p> - -<h4>threaded environments:</h4> - -<p>Since the catalog tree is built progressively, some care has been taken to -try to avoid troubles in multithreaded environments. The code is now thread -safe assuming that the libxml2 library has been compiled with threads -support.</p> - -<p></p> - -<h3><a name="Other">Other resources</a></h3> - -<p>The XML Catalog specification is relatively recent so there isn't much -literature to point at:</p> -<ul> - <li>You can find a good rant from Norm Walsh about <a - href="http://www.arbortext.com/Think_Tank/XML_Resources/Issue_Three/issue_three.html">the - need for catalogs</a>, it provides a lot of context information even if - I don't agree with everything presented. Norm also wrote a more recent - article <a - href="http://wwws.sun.com/software/xml/developers/resolver/article/">XML - entities and URI resolvers</a> describing them.</li> - <li>An <a href="http://home.ccil.org/~cowan/XML/XCatalog.html">old XML - catalog proposal</a> from John Cowan</li> - <li>The <a href="http://www.rddl.org/">Resource Directory Description - Language</a> (RDDL) another catalog system but more oriented toward - providing metadata for XML namespaces.</li> - <li>the page from the OASIS Technical <a - href="http://www.oasis-open.org/committees/entity/">Committee on Entity - Resolution</a> who maintains XML Catalog, you will find pointers to the - specification update, some background and pointers to others tools - providing XML Catalog support</li> - <li>There is a <a href="buildDocBookCatalog">shell script</a> to generate - XML Catalogs for DocBook 4.1.2 . If it can write to the /etc/xml/ - directory, it will set-up /etc/xml/catalog and /etc/xml/docbook based on - the resources found on the system. Otherwise it will just create - ~/xmlcatalog and ~/dbkxmlcatalog and doing: - <p><code>export XML_CATALOG_FILES=$HOME/xmlcatalog</code></p> - <p>should allow to process DocBook documentations without requiring - network accesses for the DTD or stylesheets</p> - </li> - <li>I have uploaded <a href="ftp://xmlsoft.org/libxml2/test/dbk412catalog.tar.gz">a - small tarball</a> containing XML Catalogs for DocBook 4.1.2 which seems - to work fine for me too</li> - <li>The <a href="http://www.xmlsoft.org/xmlcatalog_man.html">xmlcatalog - manual page</a></li> -</ul> - -<p>If you have suggestions for corrections or additions, simply contact -me:</p> - -<h2><a name="library">The parser interfaces</a></h2> - -<p>This section is directly intended to help programmers getting bootstrapped -using the XML tollkit from the C language. It is not intended to be -extensive. I hope the automatically generated documents will provide the -completeness required, but as a separate set of documents. The interfaces of -the XML parser are by principle low level, Those interested in a higher level -API should <a href="#DOM">look at DOM</a>.</p> - -<p>The <a href="html/libxml-parser.html">parser interfaces for XML</a> are -separated from the <a href="html/libxml-htmlparser.html">HTML parser -interfaces</a>. Let's have a look at how the XML parser can be called:</p> - -<h3><a name="Invoking">Invoking the parser : the pull method</a></h3> - -<p>Usually, the first thing to do is to read an XML input. The parser accepts -documents either from in-memory strings or from files. The functions are -defined in "parser.h":</p> -<dl> - <dt><code>xmlDocPtr xmlParseMemory(char *buffer, int size);</code></dt> - <dd><p>Parse a null-terminated string containing the document.</p> - </dd> -</dl> -<dl> - <dt><code>xmlDocPtr xmlParseFile(const char *filename);</code></dt> - <dd><p>Parse an XML document contained in a (possibly compressed) - file.</p> - </dd> -</dl> - -<p>The parser returns a pointer to the document structure (or NULL in case of -failure).</p> - -<h3 id="Invoking1">Invoking the parser: the push method</h3> - -<p>In order for the application to keep the control when the document is -being fetched (which is common for GUI based programs) libxml2 provides a -push interface, too, as of version 1.8.3. Here are the interface -functions:</p> -<pre>xmlParserCtxtPtr xmlCreatePushParserCtxt(xmlSAXHandlerPtr sax, - void *user_data, - const char *chunk, - int size, - const char *filename); -int xmlParseChunk (xmlParserCtxtPtr ctxt, - const char *chunk, - int size, - int terminate);</pre> - -<p>and here is a simple example showing how to use the interface:</p> -<pre> FILE *f; - - f = fopen(filename, "r"); - if (f != NULL) { - int res, size = 1024; - char chars[1024]; - xmlParserCtxtPtr ctxt; - - res = fread(chars, 1, 4, f); - if (res > 0) { - ctxt = xmlCreatePushParserCtxt(NULL, NULL, - chars, res, filename); - while ((res = fread(chars, 1, size, f)) > 0) { - xmlParseChunk(ctxt, chars, res, 0); - } - xmlParseChunk(ctxt, chars, 0, 1); - doc = ctxt->myDoc; - xmlFreeParserCtxt(ctxt); - } - }</pre> - -<p>The HTML parser embedded into libxml2 also has a push interface; the -functions are just prefixed by "html" rather than "xml".</p> - -<h3 id="Invoking2">Invoking the parser: the SAX interface</h3> - -<p>The tree-building interface makes the parser memory-hungry, first loading -the document in memory and then building the tree itself. Reading a document -without building the tree is possible using the SAX interfaces (see SAX.h and -<a href="http://www.daa.com.au/~james/gnome/xml-sax/xml-sax.html">James -Henstridge's documentation</a>). Note also that the push interface can be -limited to SAX: just use the two first arguments of -<code>xmlCreatePushParserCtxt()</code>.</p> - -<h3><a name="Building">Building a tree from scratch</a></h3> - -<p>The other way to get an XML tree in memory is by building it. Basically -there is a set of functions dedicated to building new elements. (These are -also described in <libxml/tree.h>.) For example, here is a piece of -code that produces the XML document used in the previous examples:</p> -<pre> #include <libxml/tree.h> - xmlDocPtr doc; - xmlNodePtr tree, subtree; - - doc = xmlNewDoc("1.0"); - doc->children = xmlNewDocNode(doc, NULL, "EXAMPLE", NULL); - xmlSetProp(doc->children, "prop1", "gnome is great"); - xmlSetProp(doc->children, "prop2", "& linux too"); - tree = xmlNewChild(doc->children, NULL, "head", NULL); - subtree = xmlNewChild(tree, NULL, "title", "Welcome to Gnome"); - tree = xmlNewChild(doc->children, NULL, "chapter", NULL); - subtree = xmlNewChild(tree, NULL, "title", "The Linux adventure"); - subtree = xmlNewChild(tree, NULL, "p", "bla bla bla ..."); - subtree = xmlNewChild(tree, NULL, "image", NULL); - xmlSetProp(subtree, "href", "linus.gif");</pre> - -<p>Not really rocket science ...</p> - -<h3><a name="Traversing">Traversing the tree</a></h3> - -<p>Basically by <a href="html/libxml-tree.html">including "tree.h"</a> your -code has access to the internal structure of all the elements of the tree. -The names should be somewhat simple like <strong>parent</strong>, -<strong>children</strong>, <strong>next</strong>, <strong>prev</strong>, -<strong>properties</strong>, etc... For example, still with the previous -example:</p> -<pre><code>doc->children->children->children</code></pre> - -<p>points to the title element,</p> -<pre>doc->children->children->next->children->children</pre> - -<p>points to the text node containing the chapter title "The Linux -adventure".</p> - -<p><strong>NOTE</strong>: XML allows <em>PI</em>s and <em>comments</em> to be -present before the document root, so <code>doc->children</code> may point -to an element which is not the document Root Element; a function -<code>xmlDocGetRootElement()</code> was added for this purpose.</p> - -<h3><a name="Modifying">Modifying the tree</a></h3> - -<p>Functions are provided for reading and writing the document content. Here -is an excerpt from the <a href="html/libxml-tree.html">tree API</a>:</p> -<dl> - <dt><code>xmlAttrPtr xmlSetProp(xmlNodePtr node, const xmlChar *name, const - xmlChar *value);</code></dt> - <dd><p>This sets (or changes) an attribute carried by an ELEMENT node. - The value can be NULL.</p> - </dd> -</dl> -<dl> - <dt><code>const xmlChar *xmlGetProp(xmlNodePtr node, const xmlChar - *name);</code></dt> - <dd><p>This function returns a pointer to new copy of the property - content. Note that the user must deallocate the result.</p> - </dd> -</dl> - -<p>Two functions are provided for reading and writing the text associated -with elements:</p> -<dl> - <dt><code>xmlNodePtr xmlStringGetNodeList(xmlDocPtr doc, const xmlChar - *value);</code></dt> - <dd><p>This function takes an "external" string and converts it to one - text node or possibly to a list of entity and text nodes. All - non-predefined entity references like &Gnome; will be stored - internally as entity nodes, hence the result of the function may not be - a single node.</p> - </dd> -</dl> -<dl> - <dt><code>xmlChar *xmlNodeListGetString(xmlDocPtr doc, xmlNodePtr list, int - inLine);</code></dt> - <dd><p>This function is the inverse of - <code>xmlStringGetNodeList()</code>. It generates a new string - containing the content of the text and entity nodes. Note the extra - argument inLine. If this argument is set to 1, the function will expand - entity references. For example, instead of returning the &Gnome; - XML encoding in the string, it will substitute it with its value (say, - "GNU Network Object Model Environment").</p> - </dd> -</dl> - -<h3><a name="Saving">Saving a tree</a></h3> - -<p>Basically 3 options are possible:</p> -<dl> - <dt><code>void xmlDocDumpMemory(xmlDocPtr cur, xmlChar**mem, int - *size);</code></dt> - <dd><p>Returns a buffer into which the document has been saved.</p> - </dd> -</dl> -<dl> - <dt><code>extern void xmlDocDump(FILE *f, xmlDocPtr doc);</code></dt> - <dd><p>Dumps a document to an open file descriptor.</p> - </dd> -</dl> -<dl> - <dt><code>int xmlSaveFile(const char *filename, xmlDocPtr cur);</code></dt> - <dd><p>Saves the document to a file. In this case, the compression - interface is triggered if it has been turned on.</p> - </dd> -</dl> - -<h3><a name="Compressio">Compression</a></h3> - -<p>The library transparently handles compression when doing file-based -accesses. The level of compression on saves can be turned on either globally -or individually for one file:</p> -<dl> - <dt><code>int xmlGetDocCompressMode (xmlDocPtr doc);</code></dt> - <dd><p>Gets the document compression ratio (0-9).</p> - </dd> -</dl> -<dl> - <dt><code>void xmlSetDocCompressMode (xmlDocPtr doc, int mode);</code></dt> - <dd><p>Sets the document compression ratio.</p> - </dd> -</dl> -<dl> - <dt><code>int xmlGetCompressMode(void);</code></dt> - <dd><p>Gets the default compression ratio.</p> - </dd> -</dl> -<dl> - <dt><code>void xmlSetCompressMode(int mode);</code></dt> - <dd><p>Sets the default compression ratio.</p> - </dd> -</dl> - -<h2><a name="Entities">Entities or no entities</a></h2> - -<p>Entities in principle are similar to simple C macros. An entity defines an -abbreviation for a given string that you can reuse many times throughout the -content of your document. Entities are especially useful when a given string -may occur frequently within a document, or to confine the change needed to a -document to a restricted area in the internal subset of the document (at the -beginning). Example:</p> -<pre>1 <?xml version="1.0"?> -2 <!DOCTYPE EXAMPLE SYSTEM "example.dtd" [ -3 <!ENTITY xml "Extensible Markup Language"> -4 ]> -5 <EXAMPLE> -6 &xml; -7 </EXAMPLE></pre> - -<p>Line 3 declares the xml entity. Line 6 uses the xml entity, by prefixing -its name with '&' and following it by ';' without any spaces added. There -are 5 predefined entities in libxml2 allowing you to escape characters with -predefined meaning in some parts of the xml document content: -<strong>&lt;</strong> for the character '<', <strong>&gt;</strong> -for the character '>', <strong>&apos;</strong> for the character ''', -<strong>&quot;</strong> for the character '"', and -<strong>&amp;</strong> for the character '&'.</p> - -<p>One of the problems related to entities is that you may want the parser to -substitute an entity's content so that you can see the replacement text in -your application. Or you may prefer to keep entity references as such in the -content to be able to save the document back without losing this usually -precious information (if the user went through the pain of explicitly -defining entities, he may have a a rather negative attitude if you blindly -substitute them as saving time). The <a -href="html/libxml-parser.html#xmlSubstituteEntitiesDefault">xmlSubstituteEntitiesDefault()</a> -function allows you to check and change the behaviour, which is to not -substitute entities by default.</p> - -<p>Here is the DOM tree built by libxml2 for the previous document in the -default case:</p> -<pre>/gnome/src/gnome-xml -> ./xmllint --debug test/ent1 -DOCUMENT -version=1.0 - ELEMENT EXAMPLE - TEXT - content= - ENTITY_REF - INTERNAL_GENERAL_ENTITY xml - content=Extensible Markup Language - TEXT - content=</pre> - -<p>And here is the result when substituting entities:</p> -<pre>/gnome/src/gnome-xml -> ./tester --debug --noent test/ent1 -DOCUMENT -version=1.0 - ELEMENT EXAMPLE - TEXT - content= Extensible Markup Language</pre> - -<p>So, entities or no entities? Basically, it depends on your use case. I -suggest that you keep the non-substituting default behaviour and avoid using -entities in your XML document or data if you are not willing to handle the -entity references elements in the DOM tree.</p> - -<p>Note that at save time libxml2 enforces the conversion of the predefined -entities where necessary to prevent well-formedness problems, and will also -transparently replace those with chars (i.e. it will not generate entity -reference elements in the DOM tree or call the reference() SAX callback when -finding them in the input).</p> - -<p><span style="background-color: #FF0000">WARNING</span>: handling entities -on top of the libxml2 SAX interface is difficult!!! If you plan to use -non-predefined entities in your documents, then the learning curve to handle -then using the SAX API may be long. If you plan to use complex documents, I -strongly suggest you consider using the DOM interface instead and let libxml -deal with the complexity rather than trying to do it yourself.</p> - -<h2><a name="Namespaces">Namespaces</a></h2> - -<p>The libxml2 library implements <a -href="http://www.w3.org/TR/REC-xml-names/">XML namespaces</a> support by -recognizing namespace constructs in the input, and does namespace lookup -automatically when building the DOM tree. A namespace declaration is -associated with an in-memory structure and all elements or attributes within -that namespace point to it. Hence testing the namespace is a simple and fast -equality operation at the user level.</p> - -<p>I suggest that people using libxml2 use a namespace, and declare it in the -root element of their document as the default namespace. Then they don't need -to use the prefix in the content but we will have a basis for future semantic -refinement and merging of data from different sources. This doesn't increase -the size of the XML output significantly, but significantly increases its -value in the long-term. Example:</p> -<pre><mydoc xmlns="http://mydoc.example.org/schemas/"> - <elem1>...</elem1> - <elem2>...</elem2> -</mydoc></pre> - -<p>The namespace value has to be an absolute URL, but the URL doesn't have to -point to any existing resource on the Web. It will bind all the element and -attributes with that URL. I suggest to use an URL within a domain you -control, and that the URL should contain some kind of version information if -possible. For example, <code>"http://www.gnome.org/gnumeric/1.0/"</code> is a -good namespace scheme.</p> - -<p>Then when you load a file, make sure that a namespace carrying the -version-independent prefix is installed on the root element of your document, -and if the version information don't match something you know, warn the user -and be liberal in what you accept as the input. Also do *not* try to base -namespace checking on the prefix value. <foo:text> may be exactly the -same as <bar:text> in another document. What really matters is the URI -associated with the element or the attribute, not the prefix string (which is -just a shortcut for the full URI). In libxml, element and attributes have an -<code>ns</code> field pointing to an xmlNs structure detailing the namespace -prefix and its URI.</p> - -<p>@@Interfaces@@</p> -<pre>xmlNodePtr node; -if(!strncmp(node->name,"mytag",5) - && node->ns - && !strcmp(node->ns->href,"http://www.mysite.com/myns/1.0")) { - ... -}</pre> - -<p>Usually people object to using namespaces together with validity checking. -I will try to make sure that using namespaces won't break validity checking, -so even if you plan to use or currently are using validation I strongly -suggest adding namespaces to your document. A default namespace scheme -<code>xmlns="http://...."</code> should not break validity even on less -flexible parsers. Using namespaces to mix and differentiate content coming -from multiple DTDs will certainly break current validation schemes. To check -such documents one needs to use schema-validation, which is supported in -libxml2 as well. See <a href="http://www.relaxng.org/">relagx-ng</a> and <a -href="http://www.w3c.org/XML/Schema">w3c-schema</a>.</p> - -<h2><a name="Upgrading">Upgrading 1.x code</a></h2> - -<p>Incompatible changes:</p> - -<p>Version 2 of libxml2 is the first version introducing serious backward -incompatible changes. The main goals were:</p> -<ul> - <li>a general cleanup. A number of mistakes inherited from the very early - versions couldn't be changed due to compatibility constraints. Example - the "childs" element in the nodes.</li> - <li>Uniformization of the various nodes, at least for their header and link - parts (doc, parent, children, prev, next), the goal is a simpler - programming model and simplifying the task of the DOM implementors.</li> - <li>better conformances to the XML specification, for example version 1.x - had an heuristic to try to detect ignorable white spaces. As a result the - SAX event generated were ignorableWhitespace() while the spec requires - character() in that case. This also mean that a number of DOM node - containing blank text may populate the DOM tree which were not present - before.</li> -</ul> - -<h3>How to fix libxml-1.x code:</h3> - -<p>So client code of libxml designed to run with version 1.x may have to be -changed to compile against version 2.x of libxml. Here is a list of changes -that I have collected, they may not be sufficient, so in case you find other -change which are required, <a href="mailto:Daniel.Veillard@w3.org">drop me a -mail</a>:</p> -<ol> - <li>The package name have changed from libxml to libxml2, the library name - is now -lxml2 . There is a new xml2-config script which should be used to - select the right parameters libxml2</li> - <li>Node <strong>childs</strong> field has been renamed - <strong>children</strong> so s/childs/children/g should be applied - (probability of having "childs" anywhere else is close to 0+</li> - <li>The document don't have anymore a <strong>root</strong> element it has - been replaced by <strong>children</strong> and usually you will get a - list of element here. For example a Dtd element for the internal subset - and it's declaration may be found in that list, as well as processing - instructions or comments found before or after the document root element. - Use <strong>xmlDocGetRootElement(doc)</strong> to get the root element of - a document. Alternatively if you are sure to not reference DTDs nor have - PIs or comments before or after the root element - s/->root/->children/g will probably do it.</li> - <li>The white space issue, this one is more complex, unless special case of - validating parsing, the line breaks and spaces usually used for indenting - and formatting the document content becomes significant. So they are - reported by SAX and if your using the DOM tree, corresponding nodes are - generated. Too approach can be taken: - <ol> - <li>lazy one, use the compatibility call - <strong>xmlKeepBlanksDefault(0)</strong> but be aware that you are - relying on a special (and possibly broken) set of heuristics of - libxml to detect ignorable blanks. Don't complain if it breaks or - make your application not 100% clean w.r.t. to it's input.</li> - <li>the Right Way: change you code to accept possibly insignificant - blanks characters, or have your tree populated with weird blank text - nodes. You can spot them using the commodity function - <strong>xmlIsBlankNode(node)</strong> returning 1 for such blank - nodes.</li> - </ol> - <p>Note also that with the new default the output functions don't add any - extra indentation when saving a tree in order to be able to round trip - (read and save) without inflating the document with extra formatting - chars.</p> - </li> - <li>The include path has changed to $prefix/libxml/ and the includes - themselves uses this new prefix in includes instructions... If you are - using (as expected) the - <pre>xml2-config --cflags</pre> - <p>output to generate you compile commands this will probably work out of - the box</p> - </li> - <li>xmlDetectCharEncoding takes an extra argument indicating the length in - byte of the head of the document available for character detection.</li> -</ol> - -<h3>Ensuring both libxml-1.x and libxml-2.x compatibility</h3> - -<p>Two new version of libxml (1.8.11) and libxml2 (2.3.4) have been released -to allow smooth upgrade of existing libxml v1code while retaining -compatibility. They offers the following:</p> -<ol> - <li>similar include naming, one should use - <strong>#include<libxml/...></strong> in both cases.</li> - <li>similar identifiers defined via macros for the child and root fields: - respectively <strong>xmlChildrenNode</strong> and - <strong>xmlRootNode</strong></li> - <li>a new macro <strong>LIBXML_TEST_VERSION</strong> which should be - inserted once in the client code</li> -</ol> - -<p>So the roadmap to upgrade your existing libxml applications is the -following:</p> -<ol> - <li>install the libxml-1.8.8 (and libxml-devel-1.8.8) packages</li> - <li>find all occurrences where the xmlDoc <strong>root</strong> field is - used and change it to <strong>xmlRootNode</strong></li> - <li>similarly find all occurrences where the xmlNode - <strong>childs</strong> field is used and change it to - <strong>xmlChildrenNode</strong></li> - <li>add a <strong>LIBXML_TEST_VERSION</strong> macro somewhere in your - <strong>main()</strong> or in the library init entry point</li> - <li>Recompile, check compatibility, it should still work</li> - <li>Change your configure script to look first for xml2-config and fall - back using xml-config . Use the --cflags and --libs output of the command - as the Include and Linking parameters needed to use libxml.</li> - <li>install libxml2-2.3.x and libxml2-devel-2.3.x (libxml-1.8.y and - libxml-devel-1.8.y can be kept simultaneously)</li> - <li>remove your config.cache, relaunch your configuration mechanism, and - recompile, if steps 2 and 3 were done right it should compile as-is</li> - <li>Test that your application is still running correctly, if not this may - be due to extra empty nodes due to formating spaces being kept in libxml2 - contrary to libxml1, in that case insert xmlKeepBlanksDefault(1) in your - code before calling the parser (next to - <strong>LIBXML_TEST_VERSION</strong> is a fine place).</li> -</ol> - -<p>Following those steps should work. It worked for some of my own code.</p> - -<p>Let me put some emphasis on the fact that there is far more changes from -libxml 1.x to 2.x than the ones you may have to patch for. The overall code -has been considerably cleaned up and the conformance to the XML specification -has been drastically improved too. Don't take those changes as an excuse to -not upgrade, it may cost a lot on the long term ...</p> - -<h2><a name="Thread">Thread safety</a></h2> - -<p>Starting with 2.4.7, libxml2 makes provisions to ensure that concurrent -threads can safely work in parallel parsing different documents. There is -however a couple of things to do to ensure it:</p> -<ul> - <li>configure the library accordingly using the --with-threads options</li> - <li>call xmlInitParser() in the "main" thread before using any of the - libxml2 API (except possibly selecting a different memory allocator)</li> -</ul> - -<p>Note that the thread safety cannot be ensured for multiple threads sharing -the same document, the locking must be done at the application level, libxml -exports a basic mutex and reentrant mutexes API in <libxml/threads.h>. -The parts of the library checked for thread safety are:</p> -<ul> - <li>concurrent loading</li> - <li>file access resolution</li> - <li>catalog access</li> - <li>catalog building</li> - <li>entities lookup/accesses</li> - <li>validation</li> - <li>global variables per-thread override</li> - <li>memory handling</li> -</ul> - -<p>XPath is supposed to be thread safe now, but this wasn't tested -seriously.</p> - -<h2><a name="DOM"></a><a name="Principles">DOM Principles</a></h2> - -<p><a href="http://www.w3.org/DOM/">DOM</a> stands for the <em>Document -Object Model</em>; this is an API for accessing XML or HTML structured -documents. Native support for DOM in Gnome is on the way (module gnome-dom), -and will be based on gnome-xml. This will be a far cleaner interface to -manipulate XML files within Gnome since it won't expose the internal -structure.</p> - -<p>The current DOM implementation on top of libxml2 is the <a -href="http:///svn.gnome.org/viewcvs/gdome2/trunk/">gdome2 Gnome module</a>, this -is a full DOM interface, thanks to Paolo Casarini, check the <a -href="http://gdome2.cs.unibo.it/">Gdome2 homepage</a> for more -information.</p> - -<h2><a name="Example"></a><a name="real">A real example</a></h2> - -<p>Here is a real size example, where the actual content of the application -data is not kept in the DOM tree but uses internal structures. It is based on -a proposal to keep a database of jobs related to Gnome, with an XML based -storage structure. Here is an <a href="gjobs.xml">XML encoded jobs -base</a>:</p> -<pre><?xml version="1.0"?> -<gjob:Helping xmlns:gjob="http://www.gnome.org/some-location"> - <gjob:Jobs> - - <gjob:Job> - <gjob:Project ID="3"/> - <gjob:Application>GBackup</gjob:Application> - <gjob:Category>Development</gjob:Category> - - <gjob:Update> - <gjob:Status>Open</gjob:Status> - <gjob:Modified>Mon, 07 Jun 1999 20:27:45 -0400 MET DST</gjob:Modified> - <gjob:Salary>USD 0.00</gjob:Salary> - </gjob:Update> - - <gjob:Developers> - <gjob:Developer> - </gjob:Developer> - </gjob:Developers> - - <gjob:Contact> - <gjob:Person>Nathan Clemons</gjob:Person> - <gjob:Email>nathan@windsofstorm.net</gjob:Email> - <gjob:Company> - </gjob:Company> - <gjob:Organisation> - </gjob:Organisation> - <gjob:Webpage> - </gjob:Webpage> - <gjob:Snailmail> - </gjob:Snailmail> - <gjob:Phone> - </gjob:Phone> - </gjob:Contact> - - <gjob:Requirements> - The program should be released as free software, under the GPL. - </gjob:Requirements> - - <gjob:Skills> - </gjob:Skills> - - <gjob:Details> - A GNOME based system that will allow a superuser to configure - compressed and uncompressed files and/or file systems to be backed - up with a supported media in the system. This should be able to - perform via find commands generating a list of files that are passed - to tar, dd, cpio, cp, gzip, etc., to be directed to the tape machine - or via operations performed on the filesystem itself. Email - notification and GUI status display very important. - </gjob:Details> - - </gjob:Job> - - </gjob:Jobs> -</gjob:Helping></pre> - -<p>While loading the XML file into an internal DOM tree is a matter of -calling only a couple of functions, browsing the tree to gather the data and -generate the internal structures is harder, and more error prone.</p> - -<p>The suggested principle is to be tolerant with respect to the input -structure. For example, the ordering of the attributes is not significant, -the XML specification is clear about it. It's also usually a good idea not to -depend on the order of the children of a given node, unless it really makes -things harder. Here is some code to parse the information for a person:</p> -<pre>/* - * A person record - */ -typedef struct person { - char *name; - char *email; - char *company; - char *organisation; - char *smail; - char *webPage; - char *phone; -} person, *personPtr; - -/* - * And the code needed to parse it - */ -personPtr parsePerson(xmlDocPtr doc, xmlNsPtr ns, xmlNodePtr cur) { - personPtr ret = NULL; - -DEBUG("parsePerson\n"); - /* - * allocate the struct - */ - ret = (personPtr) malloc(sizeof(person)); - if (ret == NULL) { - fprintf(stderr,"out of memory\n"); - return(NULL); - } - memset(ret, 0, sizeof(person)); - - /* We don't care what the top level element name is */ - cur = cur->xmlChildrenNode; - while (cur != NULL) { - if ((!strcmp(cur->name, "Person")) && (cur->ns == ns)) - ret->name = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1); - if ((!strcmp(cur->name, "Email")) && (cur->ns == ns)) - ret->email = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1); - cur = cur->next; - } - - return(ret); -}</pre> - -<p>Here are a couple of things to notice:</p> -<ul> - <li>Usually a recursive parsing style is the more convenient one: XML data - is by nature subject to repetitive constructs and usually exhibits highly - structured patterns.</li> - <li>The two arguments of type <em>xmlDocPtr</em> and <em>xmlNsPtr</em>, - i.e. the pointer to the global XML document and the namespace reserved to - the application. Document wide information are needed for example to - decode entities and it's a good coding practice to define a namespace for - your application set of data and test that the element and attributes - you're analyzing actually pertains to your application space. This is - done by a simple equality test (cur->ns == ns).</li> - <li>To retrieve text and attributes value, you can use the function - <em>xmlNodeListGetString</em> to gather all the text and entity reference - nodes generated by the DOM output and produce an single text string.</li> -</ul> - -<p>Here is another piece of code used to parse another level of the -structure:</p> -<pre>#include <libxml/tree.h> -/* - * a Description for a Job - */ -typedef struct job { - char *projectID; - char *application; - char *category; - personPtr contact; - int nbDevelopers; - personPtr developers[100]; /* using dynamic alloc is left as an exercise */ -} job, *jobPtr; - -/* - * And the code needed to parse it - */ -jobPtr parseJob(xmlDocPtr doc, xmlNsPtr ns, xmlNodePtr cur) { - jobPtr ret = NULL; - -DEBUG("parseJob\n"); - /* - * allocate the struct - */ - ret = (jobPtr) malloc(sizeof(job)); - if (ret == NULL) { - fprintf(stderr,"out of memory\n"); - return(NULL); - } - memset(ret, 0, sizeof(job)); - - /* We don't care what the top level element name is */ - cur = cur->xmlChildrenNode; - while (cur != NULL) { - - if ((!strcmp(cur->name, "Project")) && (cur->ns == ns)) { - ret->projectID = xmlGetProp(cur, "ID"); - if (ret->projectID == NULL) { - fprintf(stderr, "Project has no ID\n"); - } - } - if ((!strcmp(cur->name, "Application")) && (cur->ns == ns)) - ret->application = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1); - if ((!strcmp(cur->name, "Category")) && (cur->ns == ns)) - ret->category = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1); - if ((!strcmp(cur->name, "Contact")) && (cur->ns == ns)) - ret->contact = parsePerson(doc, ns, cur); - cur = cur->next; - } - - return(ret); -}</pre> - -<p>Once you are used to it, writing this kind of code is quite simple, but -boring. Ultimately, it could be possible to write stubbers taking either C -data structure definitions, a set of XML examples or an XML DTD and produce -the code needed to import and export the content between C data and XML -storage. This is left as an exercise to the reader :-)</p> - -<p>Feel free to use <a href="example/gjobread.c">the code for the full C -parsing example</a> as a template, it is also available with Makefile in the -Gnome SVN base under libxml2/example</p> - -<h2><a name="Contributi">Contributions</a></h2> -<ul> - <li>Bjorn Reese, William Brack and Thomas Broyer have provided a number of - patches, Gary Pennington worked on the validation API, threading support - and Solaris port.</li> - <li>John Fleck helps maintaining the documentation and man pages.</li> - <li><a href="mailto:igor@zlatkovic.com">Igor Zlatkovic</a> is now the - maintainer of the Windows port, <a - href="http://www.zlatkovic.com/projects/libxml/index.html">he provides - binaries</a></li> - <li><a href="mailto:Gary.Pennington@sun.com">Gary Pennington</a> provides - <a href="http://garypennington.net/libxml2/">Solaris binaries</a></li> - <li><a - href="http://mail.gnome.org/archives/xml/2001-March/msg00014.html">Matt - Sergeant</a> developed <a - href="http://axkit.org/download/">XML::LibXSLT</a>, a Perl wrapper for - libxml2/libxslt as part of the <a href="http://axkit.com/">AxKit XML - application server</a></li> - <li><a href="mailto:fnatter@gmx.net">Felix Natter</a> and <a - href="mailto:geertk@ai.rug.nl">Geert Kloosterman</a> provide <a - href="libxml-doc.el">an emacs module</a> to lookup libxml(2) functions - documentation</li> - <li><a href="mailto:sherwin@nlm.nih.gov">Ziying Sherwin</a> provided <a - href="http://xmlsoft.org/messages/0488.html">man pages</a></li> - <li>there is a module for <a - href="http://acs-misc.sourceforge.net/nsxml.html">libxml/libxslt support - in OpenNSD/AOLServer</a></li> - <li><a href="mailto:dkuhlman@cutter.rexx.com">Dave Kuhlman</a> provided the - first version of libxml/libxslt <a - href="http://www.rexx.com/~dkuhlman">wrappers for Python</a></li> - <li>Petr Kozelka provides <a - href="http://sourceforge.net/projects/libxml2-pas">Pascal units to glue - libxml2</a> with Kylix and Delphi and other Pascal compilers</li> - <li><a href="mailto:aleksey@aleksey.com">Aleksey Sanin</a> implemented the - <a href="http://www.w3.org/Signature/">XML Canonicalization and XML - Digital Signature</a> <a - href="http://www.aleksey.com/xmlsec/">implementations for libxml2</a></li> - <li><a href="mailto:Steve.Ball@explain.com.au">Steve Ball</a> and - contributors maintain <a href="http://tclxml.sourceforge.net/">tcl - bindings for libxml2 and libxslt</a>, as well as <a - href="http://tclxml.sf.net/tkxmllint.html">tkxmllint</a> a GUI for - xmllint and <a href="http://tclxml.sf.net/tkxsltproc.html">tkxsltproc</a> - a GUI for xsltproc.</li> -</ul> - -<p></p> -</body> -</html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xml2-config.1 b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xml2-config.1 deleted file mode 100644 index 8a259620..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xml2-config.1 +++ /dev/null @@ -1,31 +0,0 @@ -.TH GNOME-XML 1 "3 July 1999" Version 1.1.0 -.SH NAME -xml-config - script to get information about the installed version of GNOME-XML -.SH SYNOPSIS -.B xml-config -[\-\-prefix\fI[=DIR]\fP] [\-\-libs] [\-\-cflags] [\-\-version] [\-\-help] -.SH DESCRIPTION -\fIxml-config\fP is a tool that is used to determine the compile and -linker flags that should be used to compile and link programs that use -\fIGNOME-XML\fP. -.SH OPTIONS -.l -\fIxml-config\fP accepts the following options: -.TP 8 -.B \-\-version -Print the currently installed version of \fIGNOME-XML\fP on the standard output. -.TP 8 -.B \-\-libs -Print the linker flags that are necessary to link a \fIGNOME-XML\fP program. -.TP 8 -.B \-\-cflags -Print the compiler flags that are necessary to compile a \fIGNOME-XML\fP program. -.TP 8 -.B \-\-prefix=PREFIX -If specified, use PREFIX instead of the installation prefix that -\fIGNOME-XML\fP was built with when computing the output for the -\-\-cflags and \-\-libs options. This option must be specified before -any \-\-libs or \-\-cflags options. -.SH AUTHOR -This manual page was written by Fredrik Hallenberg <hallon@lysator.liu.se>, -for the Debian GNU/linux system (but may be used by others). diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlcatalog_man.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlcatalog_man.html deleted file mode 100644 index c27c1ef0..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlcatalog_man.html +++ /dev/null @@ -1,101 +0,0 @@ -<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>xmlcatalog</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"><a name="id2431614"></a><div class="titlepage"><div></div><div></div></div><div class="refnamediv"><h2>Name</h2><p>xmlcatalog — Command line tool to parse and manipulate <span class="acronym">XML</span> or - <span class="acronym">SGML</span> catalog files.</p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><div class="cmdsynopsis"><p><tt class="command">xmlcatalog</tt> [[--shell] | [--create] | [--add <i class="replaceable"><tt>type</tt></i> - <i class="replaceable"><tt>orig</tt></i> <i class="replaceable"><tt>replace</tt></i>] | [--del <i class="replaceable"><tt>values</tt></i>] | [--noout] | [--verbose]] [<tt class="option"><i class="replaceable"><tt>catalogfile</tt></i></tt>] [<tt class="option"><i class="replaceable"><tt>entities</tt></i></tt>]</p></div></div><div class="refsect1" lang="en"><a name="introduction"></a><h2>Introduction</h2><p> - <span class="application">xmlcatalog</span> is a command line application - allowing users to monitor and manipulate <span class="acronym">XML</span> and - <span class="acronym">SGML</span> catalogs. It is included in - <span class="application">libxml2</span>. - </p><p> - Its functions can be invoked from a single command from the command line, - or it can perform multiple functions in interactive mode. It can operate - on both <span class="acronym">XML</span> and <span class="acronym">SGML</span> files. - </p></div><div class="refsect1" lang="en"><a name="cloptions"></a><h2>Command Line Options</h2><div class="variablelist"><dl><dt><span class="term"><tt class="option">--shell</tt> <i class="replaceable"><tt>filename</tt></i></span></dt><dd> - Run a shell - allowing interactive queries on catalog file - <i class="replaceable"><tt>filename</tt></i>. - </dd><dt><span class="term"><tt class="option">--create</tt> <i class="replaceable"><tt>filename</tt></i></span></dt><dd> - Create a new - <span class="acronym">XML</span> catalog. Outputs to stdout, ignoring - <i class="replaceable"><tt>filename</tt></i> unless <tt class="option">--noout</tt> is - used, in which case it creates a new catalog file - <i class="replaceable"><tt>filename</tt></i>. - </dd><dt><span class="term"><tt class="option">--add</tt> <i class="replaceable"><tt>'type'</tt></i> <i class="replaceable"><tt>'orig'</tt></i> <i class="replaceable"><tt>'replace'</tt></i> <i class="replaceable"><tt>filename</tt></i></span></dt><dd><p> - Add an entry to catalog file - <tt class="filename">filename</tt>. <i class="replaceable"><tt>type</tt></i> - indicates the type of entry. Possible types are 'public', 'system', - 'rewriteSystem', 'delegatePublic', 'delegateSystem'amd - 'rewriteURI'. <i class="replaceable"><tt>'orig'</tt></i> is the original - reference to be replaced, and <i class="replaceable"><tt>'replace'</tt></i> - is the <span class="acronym">URI</span> of the replacement entity to be - used. The <tt class="option">--add</tt> option will not overwrite - <i class="replaceable"><tt>filename</tt></i>, outputing to stdout, unless - <tt class="option">--noout</tt> is used. The <tt class="option">--add</tt> will - always take three parameters even if some of the - <span class="acronym">XML</span> catalog constructs will have only a single - argument. - - </p><p> - If the <tt class="option">--add</tt> option is used following the - <tt class="option">--sgml</tt> option, only a single argument, a - <i class="replaceable"><tt>filename</tt></i>, is used. This is used to add - the name of a catalog file to an <span class="acronym">SGML</span> - supercatalog, a file that contains references to other included - <span class="acronym">SGML</span> catalog files. - </p></dd><dt><span class="term"><tt class="option">--del</tt> <i class="replaceable"><tt>'values'</tt></i> <i class="replaceable"><tt>filename</tt></i></span></dt><dd> - Remove entries from the catalog file - <i class="replaceable"><tt>filename</tt></i> matching - <i class="replaceable"><tt>'values'</tt></i>. The <tt class="option">--del</tt> option - will not overwrite <i class="replaceable"><tt>filename</tt></i>, outputing to - stdout, unless <tt class="option">--noout</tt> is used. - </dd><dt><span class="term"><tt class="option">--noout</tt></span></dt><dd> - Save output to the named file rather than - outputing to stdout. - </dd><dt><span class="term"><tt class="option">--sgml</tt></span></dt><dd> - Uses SGML Super catalogs for --add and --del options - </dd><dt><span class="term"><tt class="option">-v</tt> or <tt class="option">--verbose</tt></span></dt><dd> - output debugging - information. - </dd></dl></div></div><div class="refsect1" lang="en"><a name="shell"></a><h2>Shell Commands</h2><p>Invoking <span class="application">xmlcatalog</span> with the - <tt class="option">--shell</tt> <i class="replaceable"><tt>filename</tt></i> option opens - a command line shell allowing interactive access to the catalog file - identified by <i class="replaceable"><tt>filename</tt></i>. Invoking the shell - provides a command line prompt after which commands can be entered. - </p><div class="variablelist"><dl><dt><span class="term"><tt class="option">public</tt> <i class="replaceable"><tt>'PublicID'</tt></i></span></dt><dd> - Execute a - public identifier lookup of the catalog entry for - <i class="replaceable"><tt>'PublicID'</tt></i>. The corresponding entry will be - output to the command line. - </dd><dt><span class="term"><tt class="option">system</tt> <i class="replaceable"><tt>'SystemID'</tt></i></span></dt><dd> - Execute a - public identifier lookup of the catalog entry for - <i class="replaceable"><tt>'SystemID'</tt></i>. The corresponding entry will be - output to the command line. - </dd><dt><span class="term"><tt class="option">add </tt> <i class="replaceable"><tt>'type'</tt></i> <i class="replaceable"><tt>'orig'</tt></i> <i class="replaceable"><tt>'replace'</tt></i></span></dt><dd> - Add an entry to the catalog - file. <i class="replaceable"><tt>type</tt></i> indicates the type of - entry. Possible types are 'public', 'system', 'rewriteSystem', - 'delegatePublic' and 'delegateSystem'. <i class="replaceable"><tt>'orig'</tt></i> - is the original reference to be replaced, and - <i class="replaceable"><tt>'replace'</tt></i> is the <span class="acronym">URI</span> of the - replacement entity to be used. - </dd><dt><span class="term"><tt class="option">del</tt> <i class="replaceable"><tt>'values'</tt></i></span></dt><dd> - Remove the - catalog entry corresponding to <i class="replaceable"><tt>'values'</tt></i>. - </dd><dt><span class="term"><tt class="option">dump</tt></span></dt><dd> - Print the current catalog. - </dd><dt><span class="term"><tt class="option">debug</tt></span></dt><dd> - Print debugging statements showing the steps - <span class="application">xmlcatalog</span> is executing. - </dd><dt><span class="term"><tt class="option">quiet</tt></span></dt><dd> - Stop printing debugging statements. - </dd><dt><span class="term"><tt class="option">exit</tt></span></dt><dd> - Quit the shell. - </dd></dl></div></div><div class="refsect1" lang="en"><a name="return"></a><h2>Return values</h2><p><span class="application">xmlcatalog</span>'s return codes provide - information that can be used when calling it from scripts.</p><p>0: normal</p><p>1: Failed to remove an entry from the catalog</p><p>2: Failed to save to the catalog, check file permissions</p><p>3: Failed to add an entry to the catalog</p><p>4: Failed to lookup and entry in the catalog</p></div><div class="refsect1" lang="en"><h2>Catalogs</h2><p>Catalog behavior can be changed by redirecting - queries to the user's own set of catalogs. This can be done by setting the - <tt class="varname">XML_CATALOG_FILES</tt> environment variable to a list of - catalogs. An empty one should deactivate loading the default - <tt class="filename">/etc/xml/catalog</tt> default catalog.</p></div><div class="refsect1" lang="en"><h2>References</h2><p><a href="http://www.xmlsoft.org/" target="_top">libxml web page</a></p><p><a href="http://www.xmlsoft.org/catalog.html" target="_top"><span class="application">libxml</span> - catalog support web page:</a></p><p><a href="http://www.jclark.com/sp/catalog.htm" target="_top">James Clark's - <span class="acronym">SGML</span> catalog page:</a></p><p><a href="http://www.oasis-open.org/committees/entity/spec.html" target="_top"><span class="acronym">OASIS</span> - <span class="acronym">XML</span> catalog specification: </a></p></div></div></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlcatalog_man.xml b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlcatalog_man.xml deleted file mode 100644 index 08d3a417..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlcatalog_man.xml +++ /dev/null @@ -1,446 +0,0 @@ -<?xml version="1.0"?> -<?xml-stylesheet type="text/xsl" - href="http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl"?> -<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [ - - <!ENTITY xmlcatalog "<command>xmlcatalog</command>"> -]> - -<refentry> - -<refentryinfo> - <title>xmlcatalog Manual</title> - <productname>libxml2</productname> - <copyright> - <year>2001</year> - <year>2004</year> - </copyright> - <author> - <firstname>John</firstname> - <surname>Fleck</surname> - <affiliation> - <address> - <email>jfleck@inkstain.net</email> - </address> - </affiliation> - </author> - <!-- date should be the date of the latest change or the release version --> - <date>$Date: 2006-08-21 10:34:11 +0200 (Mon, 21 Aug 2006) $</date> - <!-- still a bit buggy output, will talk to docbook-xsl upstream to fix this --> - <!-- <releaseinfo>This is release 0.3 of the xmlcatalog Manual.</releaseinfo> --> - <!-- <edition>0.3</edition> --> -</refentryinfo> - -<refmeta> - <refentrytitle>xmlcatalog</refentrytitle> - <manvolnum>1</manvolnum> -</refmeta> - -<refnamediv> - <refname>xmlcatalog</refname> - <refpurpose> - Command line tool to parse and manipulate <acronym>XML</acronym> - or <acronym>SGML</acronym> catalog files. - </refpurpose> -</refnamediv> - -<refsynopsisdiv> - <cmdsynopsis> - <command>xmlcatalog</command> - <group choice="opt"> - <arg choice="plain"><option>--sgml</option></arg> - <arg choice="plain"><option>--shell</option></arg> - <arg choice="plain"><option>--create</option></arg> - <arg choice="plain"><option>--del <replaceable>VALUE(S)</replaceable></option></arg> - <arg choice="plain"> - <group choice="opt"> - <arg choice="plain"> - <option>--add - <replaceable>TYPE</replaceable> - <replaceable>ORIG</replaceable> - <replaceable>REPLACE</replaceable> - </option> - </arg> - <arg choice="plain"><option>--add <replaceable>FILENAME</replaceable></option></arg> - </group> - </arg> - <arg choice="plain"><option>--noout</option></arg> - <arg choice="plain"><option>--no-super-update</option></arg> - <arg choice="plain"> - <group choice="opt"> - <arg choice="plain"><option>-v</option></arg> - <arg choice="plain"><option>--verbose</option></arg> - </group> - </arg> - </group> - <arg choice="req" rep="norepeat"><replaceable>CATALOGFILE</replaceable></arg> - <arg choice="req" rep="repeat"><replaceable>ENTITIES</replaceable></arg> - </cmdsynopsis> -</refsynopsisdiv> - -<refsect1 id="description"> - <title>DESCRIPTION</title> - <para> - &xmlcatalog; is a command line application allowing users to monitor and - manipulate <acronym>XML</acronym> and <acronym>SGML</acronym> catalogs. It - is included in <citerefentry> - <refentrytitle>libxml</refentrytitle> - <manvolnum>3</manvolnum> - </citerefentry>. - </para> - <para> - Its functions can be invoked from a single command from the command line, - or it can perform multiple functions in interactive mode. It can operate - on both <acronym>XML</acronym> and <acronym>SGML</acronym> files. - </para> -</refsect1> - -<refsect1 id="options"> - <title>OPTIONS</title> - <para> - &xmlcatalog; accepts the following options (in alphabetical order): - </para> - - <variablelist> - - <varlistentry> - <term> - <option>--add - <replaceable>TYPE</replaceable> - <replaceable>ORIG</replaceable> - <replaceable>REPLACE</replaceable> - </option> - </term> - <listitem> - <para> - Add an entry to <filename>CATALOGFILE</filename>. <replaceable>TYPE</replaceable> - indicates the type of entry. Possible types are: <simplelist type="inline"> - <member><parameter>public</parameter></member> - <member><parameter>system</parameter></member> - <member><parameter>rewriteSystem</parameter></member> - <member><parameter>rewriteURI</parameter></member> - <member><parameter>delegatePublic</parameter></member> - <member><parameter>delegateSystem</parameter></member> - <member><parameter>nextCatalog</parameter></member> - </simplelist>. <replaceable>ORIG</replaceable> is the original - reference to be replaced, and <replaceable>REPLACE</replaceable> - is the <acronym>URI</acronym> of the replacement entity to be - used. The <option>--add</option> option will not overwrite - <filename>CATALOGFILE</filename>, outputting - to <filename class="devicefile">stdout</filename>, unless - <option>--noout</option> is used. The <option>--add</option> will - always take three parameters even if some of the <acronym>XML</acronym> - catalog constructs will have only a single argument. - </para> - <!-- - FIXME - Is my list of possible types correct? Are SGML types the same? - --> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--add <replaceable>FILENAME</replaceable></option></term> - <listitem> - <para> - If the <option>--add</option> option is used following - the <option>--sgml</option> option, only a single argument, - a <replaceable>FILENAME</replaceable>, is used. This is used to add - the name of a catalog file to an <acronym>SGML</acronym> supercatalog, - a file that contains references to other included <acronym>SGML</acronym> - catalog files. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--create</option></term> - <listitem> - <para> - Create a new <acronym>XML</acronym> catalog. Outputs - to <filename class="devicefile">stdout</filename>, - ignoring <replaceable>filename</replaceable> unless <option>--noout</option> is - used, in which case it creates a new catalog - file <replaceable>filename</replaceable>. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--del <replaceable>VALUE(S)</replaceable></option></term> - <listitem> - <para> - Remove entries from <replaceable>CATALOGFILE</replaceable> - matching <replaceable>VALUE(S)</replaceable>. The <option>--del</option> - option will not overwrite <replaceable>CATALOGFILE</replaceable>, - outputting to <filename class="devicefile">stdout</filename>, - unless <option>--noout</option> is used. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--noout</option></term> - <listitem> - <para> - Save output to the named file rather than outputting - to <filename class="devicefile">stdout</filename>. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--no-super-update</option></term> - <listitem> - <para> - Do not update the <acronym>SGML</acronym> super catalog. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--shell</option></term> - <listitem> - <para> - Run a shell allowing interactive queries on catalog - file <replaceable>CATALOGFILE</replaceable>. For the set of available - commands see <xref linkend="shell"/>. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--sgml</option></term> - <listitem> - <para> - Uses <acronym>SGML</acronym> super catalogs for <option>--add</option> - and <option>--del</option> options. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>-v</option></term> - <term><option>--verbose</option></term> - <listitem> - <para>Output debugging information.</para> - </listitem> - </varlistentry> - - </variablelist> -</refsect1> - -<refsect1 id="shell"> - <title>SHELL COMMANDS</title> - <para> - Invoking &xmlcatalog; with - the <option>--shell <replaceable>CATALOGFILE</replaceable></option> option opens - a command line shell allowing interactive access to the catalog file - identified by <replaceable>CATALOGFILE</replaceable>. Invoking the shell - provides a command line prompt after which the following commands (described in - alphabetical order) can be entered. - </para> - - <variablelist> - - <varlistentry> - <term> - <option>add - <replaceable>TYPE</replaceable> - <replaceable>ORIG</replaceable> - <replaceable>REPLACE</replaceable> - </option> - </term> - <listitem> - <para> - Add an entry to the catalog file. <replaceable>TYPE</replaceable> - indicates the type of entry. Possible types are: <simplelist type="inline"> - <member><parameter>public</parameter></member> - <member><parameter>system</parameter></member> - <member><parameter>rewriteSystem</parameter></member> - <member><parameter>rewriteURI</parameter></member> - <member><parameter>delegatePublic</parameter></member> - <member><parameter>delegateSystem</parameter></member> - <member><parameter>nextCatalog</parameter></member> - </simplelist>. <replaceable>ORIG</replaceable> is the original - reference to be replaced, and <replaceable>REPLACE</replaceable> - is the <acronym>URI</acronym> of the replacement entity to be - used. The <option>--add</option> option will not overwrite - <filename>CATALOGFILE</filename>, outputting - to <filename class="devicefile">stdout</filename>, unless - <option>--noout</option> is used. The <option>--add</option> will - always take three parameters even if some of the <acronym>XML</acronym> - catalog constructs will have only a single argument. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>debug</option></term> - <listitem> - <para> - Print debugging statements showing the steps &xmlcatalog; is executing. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>del <replaceable>VALUE(S)</replaceable></option></term> - <listitem> - <para> - Remove the catalog entry corresponding to <replaceable>VALUE(S)</replaceable>. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>dump</option></term> - <listitem> - <para>Print the current catalog.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>exit</option></term> - <listitem> - <para>Quit the shell.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>public <replaceable>PUBLIC-ID</replaceable></option></term> - <listitem> - <para> - Execute a Formal Public Identifier look-up of the catalog entry - for <replaceable>PUBLIC-ID</replaceable>. The corresponding entry will be - output to the command line. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>quiet</option></term> - <listitem> - <para>Stop printing debugging statements.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>system <replaceable>SYSTEM-ID</replaceable></option></term> - <listitem> - <para> - Execute a Formal Public Identifier look-up of the catalog entry - for <replaceable>SYSTEM-ID</replaceable>. The corresponding entry will be - output to the command line. - </para> - </listitem> - </varlistentry> - - </variablelist> -</refsect1> - -<refsect1 id="environment"> - <title>ENVIRONMENT</title> - <variablelist> - - <varlistentry> - <term><envar>XML_CATALOG_FILES</envar></term> - <listitem> - <para><acronym>XML</acronym> catalog behavior can be changed by redirecting - queries to the user's own set of catalogs. This can be done by setting - the <envar>XML_CATALOG_FILES</envar> environment variable to a list - of catalogs. An empty one should deactivate loading the - default <filename>/etc/xml/catalog</filename> catalog. - </para> - </listitem> - </varlistentry> - - </variablelist> -</refsect1> - -<refsect1 id="diagnostics"> - <title>DIAGNOSTICS</title> - <para> - &xmlcatalog; return codes provide information that can be used when - calling it from scripts. - </para> - <variablelist> - - <varlistentry> - <term><errorcode>0</errorcode></term> - <listitem> - <para>No error</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>1</errorcode></term> - <listitem> - <para>Failed to remove an entry from the catalog</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>2</errorcode></term> - <listitem> - <para>Failed to save to the catalog, check file permissions</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>3</errorcode></term> - <listitem> - <para>Failed to add an entry to the catalog</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>4</errorcode></term> - <listitem> - <para>Failed to look up an entry in the catalog</para> - </listitem> - </varlistentry> - - </variablelist> -</refsect1> - -<refsect1 id="seealso"> - <title>SEE ALSO</title> - <para><citerefentry> - <refentrytitle>libxml</refentrytitle> - <manvolnum>3</manvolnum> - </citerefentry> - </para> - <para> - More information can be found at - <itemizedlist> - <listitem> - <para><citerefentry> - <refentrytitle>libxml</refentrytitle> - <manvolnum>3</manvolnum> - </citerefentry> web page <ulink url="http://www.xmlsoft.org/"/> - </para> - </listitem> - <listitem> - <para><citerefentry> - <refentrytitle>libxml</refentrytitle> - <manvolnum>3</manvolnum> - </citerefentry> catalog support web page - at <ulink url="http://www.xmlsoft.org/catalog.html"/> - </para> - </listitem> - <listitem> - <para>James Clark's <acronym>SGML</acronym> catalog - page <ulink url="http://www.jclark.com/sp/catalog.htm"/> - </para> - </listitem> - <listitem> - <para><acronym>OASIS</acronym> <acronym>XML</acronym> catalog specification - <ulink url="http://www.oasis-open.org/committees/entity/spec.html"/> - </para> - </listitem> - </itemizedlist> - </para> -</refsect1> - -</refentry> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmldtd.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmldtd.html deleted file mode 100644 index fb1f807a..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmldtd.html +++ /dev/null @@ -1,100 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Validation & DTDs</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Validation & DTDs</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="html/index.html">Reference Manual</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">Releases</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">Recent Changes</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Table of Content:</p><ol><li><a href="#General5">General overview</a></li> - <li><a href="#definition">The definition</a></li> - <li><a href="#Simple">Simple rules</a> - <ol><li><a href="#reference">How to reference a DTD from a document</a></li> - <li><a href="#Declaring">Declaring elements</a></li> - <li><a href="#Declaring1">Declaring attributes</a></li> - </ol></li> - <li><a href="#Some">Some examples</a></li> - <li><a href="#validate">How to validate</a></li> - <li><a href="#Other">Other resources</a></li> -</ol><h3><a name="General5" id="General5">General overview</a></h3><p>Well what is validation and what is a DTD ?</p><p>DTD is the acronym for Document Type Definition. This is a description of -the content for a family of XML files. This is part of the XML 1.0 -specification, and allows one to describe and verify that a given document -instance conforms to the set of rules detailing its structure and content.</p><p>Validation is the process of checking a document against a DTD (more -generally against a set of construction rules).</p><p>The validation process and building DTDs are the two most difficult parts -of the XML life cycle. Briefly a DTD defines all the possible elements to be -found within your document, what is the formal shape of your document tree -(by defining the allowed content of an element; either text, a regular -expression for the allowed list of children, or mixed content i.e. both text -and children). The DTD also defines the valid attributes for all elements and -the types of those attributes.</p><h3><a name="definition1" id="definition1">The definition</a></h3><p>The <a href="http://www.w3.org/TR/REC-xml">W3C XML Recommendation</a> (<a href="http://www.xml.com/axml/axml.html">Tim Bray's annotated version of -Rev1</a>):</p><ul><li><a href="http://www.w3.org/TR/REC-xml#elemdecls">Declaring - elements</a></li> - <li><a href="http://www.w3.org/TR/REC-xml#attdecls">Declaring - attributes</a></li> -</ul><p>(unfortunately) all this is inherited from the SGML world, the syntax is -ancient...</p><h3><a name="Simple1" id="Simple1">Simple rules</a></h3><p>Writing DTDs can be done in many ways. The rules to build them if you need -something permanent or something which can evolve over time can be radically -different. Really complex DTDs like DocBook ones are flexible but quite -harder to design. I will just focus on DTDs for a formats with a fixed simple -structure. It is just a set of basic rules, and definitely not exhaustive nor -usable for complex DTD design.</p><h4><a name="reference1" id="reference1">How to reference a DTD from a document</a>:</h4><p>Assuming the top element of the document is <code>spec</code> and the dtd -is placed in the file <code>mydtd</code> in the subdirectory -<code>dtds</code> of the directory from where the document were loaded:</p><p><code><!DOCTYPE spec SYSTEM "dtds/mydtd"></code></p><p>Notes:</p><ul><li>The system string is actually an URI-Reference (as defined in <a href="http://www.ietf.org/rfc/rfc2396.txt">RFC 2396</a>) so you can use a - full URL string indicating the location of your DTD on the Web. This is a - really good thing to do if you want others to validate your document.</li> - <li>It is also possible to associate a <code>PUBLIC</code> identifier (a - magic string) so that the DTD is looked up in catalogs on the client side - without having to locate it on the web.</li> - <li>A DTD contains a set of element and attribute declarations, but they - don't define what the root of the document should be. This is explicitly - told to the parser/validator as the first element of the - <code>DOCTYPE</code> declaration.</li> -</ul><h4><a name="Declaring2" id="Declaring2">Declaring elements</a>:</h4><p>The following declares an element <code>spec</code>:</p><p><code><!ELEMENT spec (front, body, back?)></code></p><p>It also expresses that the spec element contains one <code>front</code>, -one <code>body</code> and one optional <code>back</code> children elements in -this order. The declaration of one element of the structure and its content -are done in a single declaration. Similarly the following declares -<code>div1</code> elements:</p><p><code><!ELEMENT div1 (head, (p | list | note)*, div2?)></code></p><p>which means div1 contains one <code>head</code> then a series of optional -<code>p</code>, <code>list</code>s and <code>note</code>s and then an -optional <code>div2</code>. And last but not least an element can contain -text:</p><p><code><!ELEMENT b (#PCDATA)></code></p><p><code>b</code> contains text or being of mixed content (text and elements -in no particular order):</p><p><code><!ELEMENT p (#PCDATA|a|ul|b|i|em)*></code></p><p><code>p </code>can contain text or <code>a</code>, <code>ul</code>, -<code>b</code>, <code>i </code>or <code>em</code> elements in no particular -order.</p><h4><a name="Declaring1" id="Declaring1">Declaring attributes</a>:</h4><p>Again the attributes declaration includes their content definition:</p><p><code><!ATTLIST termdef name CDATA #IMPLIED></code></p><p>means that the element <code>termdef</code> can have a <code>name</code> -attribute containing text (<code>CDATA</code>) and which is optional -(<code>#IMPLIED</code>). The attribute value can also be defined within a -set:</p><p><code><!ATTLIST list type (bullets|ordered|glossary) -"ordered"></code></p><p>means <code>list</code> element have a <code>type</code> attribute with 3 -allowed values "bullets", "ordered" or "glossary" and which default to -"ordered" if the attribute is not explicitly specified.</p><p>The content type of an attribute can be text (<code>CDATA</code>), -anchor/reference/references -(<code>ID</code>/<code>IDREF</code>/<code>IDREFS</code>), entity(ies) -(<code>ENTITY</code>/<code>ENTITIES</code>) or name(s) -(<code>NMTOKEN</code>/<code>NMTOKENS</code>). The following defines that a -<code>chapter</code> element can have an optional <code>id</code> attribute -of type <code>ID</code>, usable for reference from attribute of type -IDREF:</p><p><code><!ATTLIST chapter id ID #IMPLIED></code></p><p>The last value of an attribute definition can be <code>#REQUIRED -</code>meaning that the attribute has to be given, <code>#IMPLIED</code> -meaning that it is optional, or the default value (possibly prefixed by -<code>#FIXED</code> if it is the only allowed).</p><p>Notes:</p><ul><li>Usually the attributes pertaining to a given element are declared in a - single expression, but it is just a convention adopted by a lot of DTD - writers: - <pre><!ATTLIST termdef - id ID #REQUIRED - name CDATA #IMPLIED></pre> - <p>The previous construct defines both <code>id</code> and - <code>name</code> attributes for the element <code>termdef</code>.</p> - </li> -</ul><h3><a name="Some1" id="Some1">Some examples</a></h3><p>The directory <code>test/valid/dtds/</code> in the libxml2 distribution -contains some complex DTD examples. The example in the file -<code>test/valid/dia.xml</code> shows an XML file where the simple DTD is -directly included within the document.</p><h3><a name="validate1" id="validate1">How to validate</a></h3><p>The simplest way is to use the xmllint program included with libxml. The -<code>--valid</code> option turns-on validation of the files given as input. -For example the following validates a copy of the first revision of the XML -1.0 specification:</p><p><code>xmllint --valid --noout test/valid/REC-xml-19980210.xml</code></p><p>the -- noout is used to disable output of the resulting tree.</p><p>The <code>--dtdvalid dtd</code> allows validation of the document(s) -against a given DTD.</p><p>Libxml2 exports an API to handle DTDs and validation, check the <a href="http://xmlsoft.org/html/libxml-valid.html">associated -description</a>.</p><h3><a name="Other1" id="Other1">Other resources</a></h3><p>DTDs are as old as SGML. So there may be a number of examples on-line, I -will just list one for now, others pointers welcome:</p><ul><li><a href="http://www.xml101.com:8081/dtd/">XML-101 DTD</a></li> -</ul><p>I suggest looking at the examples found under test/valid/dtd and any of -the large number of books available on XML. The dia example in test/valid -should be both simple and complete enough to allow you to build your own.</p><p></p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlio.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlio.html deleted file mode 100644 index ddffe4a4..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlio.html +++ /dev/null @@ -1,137 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>I/O Interfaces</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>I/O Interfaces</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Table of Content:</p><ol><li><a href="#General1">General overview</a></li> - <li><a href="#basic">The basic buffer type</a></li> - <li><a href="#Input">Input I/O handlers</a></li> - <li><a href="#Output">Output I/O handlers</a></li> - <li><a href="#entities">The entities loader</a></li> - <li><a href="#Example2">Example of customized I/O</a></li> -</ol><h3><a name="General1" id="General1">General overview</a></h3><p>The module <code><a href="http://xmlsoft.org/html/libxml-xmlio.html">xmlIO.h</a></code> provides -the interfaces to the libxml2 I/O system. This consists of 4 main parts:</p><ul><li>Entities loader, this is a routine which tries to fetch the entities - (files) based on their PUBLIC and SYSTEM identifiers. The default loader - don't look at the public identifier since libxml2 do not maintain a - catalog. You can redefine you own entity loader by using - <code>xmlGetExternalEntityLoader()</code> and - <code>xmlSetExternalEntityLoader()</code>. <a href="#entities">Check the - example</a>.</li> - <li>Input I/O buffers which are a commodity structure used by the parser(s) - input layer to handle fetching the information to feed the parser. This - provides buffering and is also a placeholder where the encoding - converters to UTF8 are piggy-backed.</li> - <li>Output I/O buffers are similar to the Input ones and fulfill similar - task but when generating a serialization from a tree.</li> - <li>A mechanism to register sets of I/O callbacks and associate them with - specific naming schemes like the protocol part of the URIs. - <p>This affect the default I/O operations and allows to use specific I/O - handlers for certain names.</p> - </li> -</ul><p>The general mechanism used when loading http://rpmfind.net/xml.html for -example in the HTML parser is the following:</p><ol><li>The default entity loader calls <code>xmlNewInputFromFile()</code> with - the parsing context and the URI string.</li> - <li>the URI string is checked against the existing registered handlers - using their match() callback function, if the HTTP module was compiled - in, it is registered and its match() function will succeeds</li> - <li>the open() function of the handler is called and if successful will - return an I/O Input buffer</li> - <li>the parser will the start reading from this buffer and progressively - fetch information from the resource, calling the read() function of the - handler until the resource is exhausted</li> - <li>if an encoding change is detected it will be installed on the input - buffer, providing buffering and efficient use of the conversion - routines</li> - <li>once the parser has finished, the close() function of the handler is - called once and the Input buffer and associated resources are - deallocated.</li> -</ol><p>The user defined callbacks are checked first to allow overriding of the -default libxml2 I/O routines.</p><h3><a name="basic" id="basic">The basic buffer type</a></h3><p>All the buffer manipulation handling is done using the -<code>xmlBuffer</code> type define in <code><a href="http://xmlsoft.org/html/libxml-tree.html">tree.h</a> </code>which is a -resizable memory buffer. The buffer allocation strategy can be selected to be -either best-fit or use an exponential doubling one (CPU vs. memory use -trade-off). The values are <code>XML_BUFFER_ALLOC_EXACT</code> and -<code>XML_BUFFER_ALLOC_DOUBLEIT</code>, and can be set individually or on a -system wide basis using <code>xmlBufferSetAllocationScheme()</code>. A number -of functions allows to manipulate buffers with names starting with the -<code>xmlBuffer...</code> prefix.</p><h3><a name="Input" id="Input">Input I/O handlers</a></h3><p>An Input I/O handler is a simple structure -<code>xmlParserInputBuffer</code> containing a context associated to the -resource (file descriptor, or pointer to a protocol handler), the read() and -close() callbacks to use and an xmlBuffer. And extra xmlBuffer and a charset -encoding handler are also present to support charset conversion when -needed.</p><h3><a name="Output" id="Output">Output I/O handlers</a></h3><p>An Output handler <code>xmlOutputBuffer</code> is completely similar to an -Input one except the callbacks are write() and close().</p><h3><a name="entities" id="entities">The entities loader</a></h3><p>The entity loader resolves requests for new entities and create inputs for -the parser. Creating an input from a filename or an URI string is done -through the xmlNewInputFromFile() routine. The default entity loader do not -handle the PUBLIC identifier associated with an entity (if any). So it just -calls xmlNewInputFromFile() with the SYSTEM identifier (which is mandatory in -XML).</p><p>If you want to hook up a catalog mechanism then you simply need to -override the default entity loader, here is an example:</p><pre>#include <libxml/xmlIO.h> - -xmlExternalEntityLoader defaultLoader = NULL; - -xmlParserInputPtr -xmlMyExternalEntityLoader(const char *URL, const char *ID, - xmlParserCtxtPtr ctxt) { - xmlParserInputPtr ret; - const char *fileID = NULL; - /* lookup for the fileID depending on ID */ - - ret = xmlNewInputFromFile(ctxt, fileID); - if (ret != NULL) - return(ret); - if (defaultLoader != NULL) - ret = defaultLoader(URL, ID, ctxt); - return(ret); -} - -int main(..) { - ... - - /* - * Install our own entity loader - */ - defaultLoader = xmlGetExternalEntityLoader(); - xmlSetExternalEntityLoader(xmlMyExternalEntityLoader); - - ... -}</pre><h3><a name="Example2" id="Example2">Example of customized I/O</a></h3><p>This example come from <a href="http://xmlsoft.org/messages/0708.html">a -real use case</a>, xmlDocDump() closes the FILE * passed by the application -and this was a problem. The <a href="http://xmlsoft.org/messages/0711.html">solution</a> was to redefine a -new output handler with the closing call deactivated:</p><ol><li>First define a new I/O output allocator where the output don't close - the file: - <pre>xmlOutputBufferPtr -xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) { - xmlOutputBufferPtr ret; - - if (xmlOutputCallbackInitialized == 0) - xmlRegisterDefaultOutputCallbacks(); - - if (file == NULL) return(NULL); - ret = xmlAllocOutputBuffer(encoder); - if (ret != NULL) { - ret->context = file; - ret->writecallback = xmlFileWrite; - ret->closecallback = NULL; /* No close callback */ - } - return(ret); -} </pre> - </li> - <li>And then use it to save the document: - <pre>FILE *f; -xmlOutputBufferPtr output; -xmlDocPtr doc; -int res; - -f = ... -doc = .... - -output = xmlOutputBufferCreateOwn(f, NULL); -res = xmlSaveFileTo(output, doc, NULL); - </pre> - </li> -</ol><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmllint.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmllint.html deleted file mode 100644 index 0a55877c..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmllint.html +++ /dev/null @@ -1,175 +0,0 @@ -<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>xmllint</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en"><a name="id2876302"></a><div class="titlepage"><div></div><div></div></div><div class="refnamediv"><h2>Name</h2><p>xmllint — command line <span class="acronym">XML</span> tool</p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><div class="cmdsynopsis"><p><tt class="command">xmllint</tt> [[--version] | [--debug] | [--shell] | [--debugent] | [--copy] | [--recover] | [--noent] | [--noout] | [--nonet] | [--htmlout] | [--nowrap] | [--valid] | [--postvalid] | [--dtdvalid <i class="replaceable"><tt>URL</tt></i>] | [--dtdvalidfpi <i class="replaceable"><tt>FPI</tt></i>] | [--timing] | [--output <i class="replaceable"><tt>file</tt></i>] | [--repeat] | [--insert] | [--compress] | [--html] | [--xmlout] | [--push] | [--memory] | [--maxmem <i class="replaceable"><tt>nbbytes</tt></i>] | [--nowarning] | [--noblanks] | [--nocdata] | [--format] | [--encode <i class="replaceable"><tt>encoding</tt></i>] | [--dropdtd] | [--nsclean] | [--testIO] | [--catalogs] | [--nocatalogs] | [--auto] | [--xinclude] | [--noxincludenode] | [--loaddtd] | [--dtdattr] | [--stream] | [--walker] | [--pattern <i class="replaceable"><tt>patternvalue</tt></i>] | [--chkregister] | [--relaxng] | [--schema] | [--c14n]] [<tt class="option"><i class="replaceable"><tt>xmlfile</tt></i></tt>]</p></div></div><div class="refsect1" lang="en"><a name="introduction"></a><h2>Introduction</h2><p> - The xmllint program parses one or more XML files, specified on the - command line as <i class="replaceable"><tt>xmlfile</tt></i>. It prints various - types of output, depending upon the options selected. It is useful for - detecting errors both in <span class="acronym">XML</span> code and in the - <span class="acronym">XML</span> parser itself. - </p><p> - It is included in <span class="application">libxml2</span>. - </p></div><div class="refsect1" lang="en"><a name="options"></a><h2>Options</h2><div class="variablelist"><dl><dt><span class="term"><tt class="option">--version</tt></span></dt><dd> - Display the version of - <span class="application">libxml2</span> used. - </dd><dt><span class="term"><tt class="option">--debug</tt></span></dt><dd> - Parse a file and output an annotated tree of the - in-memory version of the document. - </dd><dt><span class="term"><tt class="option">--shell</tt></span></dt><dd> - Run a navigating shell. Details on available commands in shell mode - are below. - </dd><dt><span class="term"><tt class="option">--debugent</tt></span></dt><dd> - Debug the entities defined in the document. - </dd><dt><span class="term"><tt class="option">--copy</tt> </span></dt><dd> - Test the internal copy implementation. - </dd><dt><span class="term"><tt class="option">--recover</tt></span></dt><dd> - Output any parsable portions of an invalid - document. - </dd><dt><span class="term"><tt class="option">--noent</tt></span></dt><dd> - Substitute entity values for entity - references. By default, <span class="application">xmllint</span> leaves entity - references in place. - </dd><dt><span class="term"><tt class="option">--nocdata</tt></span></dt><dd> - Substitute CDATA section by equivalent text nodes. - </dd><dt><span class="term"><tt class="option">--nsclean</tt></span></dt><dd> - Remove redundant namespace declarations. - </dd><dt><span class="term"><tt class="option">--noout</tt></span></dt><dd> - Suppress output. By default, - <span class="application">xmllint</span> outputs the result tree. - </dd><dt><span class="term"><tt class="option">--htmlout</tt></span></dt><dd> - Output results as an <span class="acronym">HTML</span> - file. This causes <span class="application">xmllint</span> to output - the necessary <span class="acronym">HTML</span> tags surrounding the result tree - output so the results can be displayed in a browser. - </dd><dt><span class="term"><tt class="option">--nowrap </tt></span></dt><dd> - Do not output HTML doc wrapper. - </dd><dt><span class="term"><tt class="option">--valid </tt></span></dt><dd> - Determine if the document is a valid instance - of the included Document Type Definition (<span class="acronym">DTD</span>). A - <span class="acronym">DTD</span> to be validated against also can be specified at - the command line using the <tt class="option">--dtdvalid</tt> option. By default, - <span class="application">xmllint</span> also checks to determine if the - document is well-formed. - </dd><dt><span class="term"><tt class="option">--postvalid</tt></span></dt><dd> - Validate after parsing is completed. - </dd><dt><span class="term"> <tt class="option">--dtdvalid</tt> <i class="replaceable"><tt>URL</tt></i></span></dt><dd> - Use the - <span class="acronym">DTD</span> specified by <i class="replaceable"><tt>URL</tt></i> for - validation. - </dd><dt><span class="term"> <tt class="option">--dtdvalidfpi</tt> <i class="replaceable"><tt>FPI</tt></i></span></dt><dd> - Use the - <span class="acronym">DTD</span> specified by the Public Identifier - <i class="replaceable"><tt>FPI</tt></i> for validation, note that this - will require a Catalog exporting that Public Identifier to work. - </dd><dt><span class="term"><tt class="option">--timing</tt></span></dt><dd> - Output information about the time it takes - <span class="application">xmllint</span> to perform the various steps. - </dd><dt><span class="term"><tt class="option">--output</tt> <i class="replaceable"><tt>file</tt></i></span></dt><dd>Define a file path where xmllint will save the result of - parsing. Usually the programs build a tree and save it on stdout, with - this option the result XML instance will be saved onto a file.</dd><dt><span class="term"><tt class="option">--repeat</tt></span></dt><dd> - Repeat 100 times, for timing or profiling. - </dd><dt><span class="term"><tt class="option">--insert</tt></span></dt><dd> - Test for valid insertions. - </dd><dt><span class="term"><tt class="option">--compress</tt></span></dt><dd> - Turn on gzip compression of output. - </dd><dt><span class="term"><tt class="option">--html</tt></span></dt><dd> - Use the <span class="acronym">HTML</span> parser. - </dd><dt><span class="term"><tt class="option">--xmlout</tt></span></dt><dd>Used in conjunction with <tt class="option">--html</tt>. Usually - when HTML is parsed the document is saved with the HTML serializer, but with - this option the resulting document is saved with the XML serializer. This is - primarily used to generate XHTML from HTML input.</dd><dt><span class="term"><tt class="option">--push</tt></span></dt><dd> - Use the push mode of the parser. - </dd><dt><span class="term"><tt class="option">--memory</tt></span></dt><dd> - Parse from memory. - </dd><dt><span class="term"><tt class="option">--maxmem</tt> <i class="replaceable"><tt>nnbytes</tt></i></span></dt><dd>Test the parser memory - support. <i class="replaceable"><tt>nnbytes</tt></i> is the maximum number of bytes the - library is allowed to allocate. This can also be used to make sure batch - processing of XML files will not exhaust the virtual memory of the server - running them.</dd><dt><span class="term"><tt class="option">--nowarning</tt></span></dt><dd> - Do not emit warnings from the parser and/or validator. - </dd><dt><span class="term"><tt class="option">--noblanks</tt></span></dt><dd> - Drop ignorable blank spaces. - </dd><dt><span class="term"><tt class="option">--format</tt></span></dt><dd> - Reformat and reindent the output. The $XMLLINT_INDENT - environment variable controls the indentation (default - value is two spaces " "). - </dd><dt><span class="term"><tt class="option">--testIO</tt></span></dt><dd> - Test user input/output support. - </dd><dt><span class="term"><tt class="option">--encode</tt> <i class="replaceable"><tt>encoding</tt></i></span></dt><dd> - Output in the given encoding. - </dd><dt><span class="term"><tt class="option">--catalogs</tt></span></dt><dd> - Use the catalogs from $SGML_CATALOG_FILES. Otherwise /etc/xml/catalog - is used by default. - </dd><dt><span class="term"><tt class="option">--nocatalogs</tt></span></dt><dd> - Do not use any catalogs. - </dd><dt><span class="term"><tt class="option">--auto</tt></span></dt><dd> - Generate a small document for testing purposes. - </dd><dt><span class="term"><tt class="option">--xinclude</tt></span></dt><dd> - Do XInclude processing. - </dd><dt><span class="term"><tt class="option">--noxincludenode</tt></span></dt><dd> - Do XInclude processing but do not generate XInclude start and end - nodes. - </dd><dt><span class="term"><tt class="option">--loaddtd</tt></span></dt><dd> - Fetch external DTD. - </dd><dt><span class="term"><tt class="option">--dtdattr</tt></span></dt><dd> - Fetch external DTD and populate the tree with inherited attributes. - </dd><dt><span class="term"><tt class="option">--dropdtd</tt></span></dt><dd> - Remove <span class="acronym">DTD</span> from output. - </dd><dt><span class="term"><tt class="option">--stream</tt></span></dt><dd>Use streaming API - useful when used in combination with - --relaxng or --valid options for validation of files that are - too large to be held in memory.</dd><dt><span class="term"><tt class="option">--walker</tt></span></dt><dd>Test the walker module, which is a reader interface but for a - document tree, instead of using the reader API on an unparsed document it - works on a existing in-memory tree. Used in debugging.</dd><dt><span class="term"><tt class="option">--chkregister</tt></span></dt><dd>Turn on node registration. Useful for developers testing - libxml2 node tracking code.</dd><dt><span class="term"><tt class="option">--pattern</tt> <i class="replaceable"><tt>patternvalue</tt></i></span></dt><dd>Used to exercise the pattern recognition engine, which can be - used with the reader interface to the parser. It allows to select some - nodes in the document based on an XPath (subset) expression. Used for - debugging.</dd><dt><span class="term"><tt class="option">--relaxng</tt> <i class="replaceable"><tt>schema</tt></i></span></dt><dd>Use RelaxNG file named <i class="replaceable"><tt>schema</tt></i> for - validation.</dd><dt><span class="term"><tt class="option">--schema</tt> <i class="replaceable"><tt>schema</tt></i></span></dt><dd>Use a W3C XML Schema file named <i class="replaceable"><tt>schema</tt></i> for validation.</dd><dt><span class="term"> - <tt class="option">--c14n</tt></span></dt><dd>Use the W3C XML Canonicalisation (C14N) to -serialize the result of parsing to stdout. It keeps comments in -the result.</dd></dl></div></div><div class="refsect1" lang="en"><a name="shell"></a><h2>Shell</h2><p> - <span class="application">xmllint</span> offers an interactive shell mode - invoked with the <tt class="option">--shell</tt> command. Available commands in - shell mode include: - </p><div class="variablelist"><dl><dt><span class="term"><tt class="option">base</tt></span></dt><dd> - display XML base of the node - </dd><dt><span class="term"><tt class="option">bye</tt></span></dt><dd> - leave shell - </dd><dt><span class="term"><tt class="option">cat <i class="replaceable"><tt>node</tt></i></tt></span></dt><dd> - Display node if given or current node. - </dd><dt><span class="term"><tt class="option">cd <i class="replaceable"><tt>path</tt></i></tt></span></dt><dd> - Change the current node to <i class="replaceable"><tt>path</tt></i> (if given - and unique) or root if no argument given. - </dd><dt><span class="term"><tt class="option">dir <i class="replaceable"><tt>path</tt></i></tt></span></dt><dd> - Dumps information about the node (namespace, attributes, content). - </dd><dt><span class="term"><tt class="option">du <i class="replaceable"><tt>path</tt></i></tt></span></dt><dd> - Show the structure of the subtree under path or the current node. - </dd><dt><span class="term"><tt class="option">exit</tt></span></dt><dd> - Leave the shell. - </dd><dt><span class="term"><tt class="option">help</tt></span></dt><dd> - Show this help. - </dd><dt><span class="term"><tt class="option">free</tt></span></dt><dd> - Display memory usage. - </dd><dt><span class="term"><tt class="option">load <i class="replaceable"><tt>name</tt></i></tt></span></dt><dd> - Load a new document with the given name. - </dd><dt><span class="term"><tt class="option">ls <i class="replaceable"><tt>path</tt></i></tt></span></dt><dd> - List contents of <i class="replaceable"><tt>path</tt></i> (if given) or the - current directory. - </dd><dt><span class="term"><tt class="option">pwd</tt></span></dt><dd> - Display the path to the current node. - </dd><dt><span class="term"><tt class="option">quit</tt></span></dt><dd> - Leave the shell. - </dd><dt><span class="term"><tt class="option">save <i class="replaceable"><tt>name</tt></i></tt></span></dt><dd> - Saves the current document to <i class="replaceable"><tt>name</tt></i> if - given or to the original name. - </dd><dt><span class="term"><tt class="option">validate</tt></span></dt><dd> - Check the document for error. - </dd><dt><span class="term"><tt class="option">write <i class="replaceable"><tt>name</tt></i></tt></span></dt><dd> - Write the current node to the given filename. - </dd></dl></div></div><div class="refsect1" lang="en"><h2>Catalogs</h2><p>Catalog behavior can be changed by redirecting - queries to the user's own set of catalogs. This can be done by setting the - <tt class="varname">XML_CATALOG_FILES</tt> environment variable to a list of - catalogs. An empty one should deactivate loading the default - <tt class="filename">/etc/xml/catalog</tt> default catalog.</p></div><div class="refsect1" lang="en"><h2>Debugging Catalogs</h2><p>Setting the environment variable <tt class="varname">XML_DEBUG_CATALOG</tt> - using the command <b class="command">"export XML_DEBUG_CATALOG="</b> - outputs debugging information related to catalog operations.</p></div><div class="refsect1" lang="en"><h2>Error Return Codes</h2><p>On the completion of execution, <span class="application">Xmllint</span> - returns the following error codes:</p><div class="variablelist"><dl><dt><span class="term">0</span></dt><dd>No error</dd><dt><span class="term">1</span></dt><dd>Unclassified</dd><dt><span class="term">2</span></dt><dd>Error in DTD</dd><dt><span class="term">3</span></dt><dd>Validation error</dd><dt><span class="term">4</span></dt><dd>Validation error</dd><dt><span class="term">5</span></dt><dd>Error in schema compilation</dd><dt><span class="term">6</span></dt><dd>Error writing output</dd><dt><span class="term">7</span></dt><dd>Error in pattern (generated when - [<span class="optional">--pattern</span>] option is used)</dd><dt><span class="term">8</span></dt><dd>Error in Reader registration (generated when - [<span class="optional">--chkregister</span>] option is used)</dd><dt><span class="term">9</span></dt><dd>Out of memory error</dd></dl></div></div></div></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmllint.xml b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmllint.xml deleted file mode 100644 index f9f4692f..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmllint.xml +++ /dev/null @@ -1,916 +0,0 @@ -<?xml version="1.0"?> -<?xml-stylesheet type="text/xsl" - href="http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl"?> -<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" - "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [ - - <!ENTITY xmllint "<command>xmllint</command>"> -]> - -<refentry> - -<refentryinfo> - <title>xmllint Manual</title> - <productname>libxml2</productname> - <copyright> - <year>2001</year> - <year>2004</year> - </copyright> - <authorgroup> - <author> - <firstname>John</firstname> - <surname>Fleck</surname> - <affiliation> - <address> - <email>jfleck@inkstain.net</email> - </address> - </affiliation> - </author> - <author> - <firstname>Ziying</firstname> - <surname>Sherwin</surname> - <affiliation> - <address> - <email>sherwin@nlm.nih.gov</email> - </address> - </affiliation> - </author> - <author> - <firstname>Heiko</firstname> - <surname>Rupp</surname> - <affiliation> - <address> - <email>hwr@pilhuhn.de</email> - </address> - </affiliation> - </author> - </authorgroup> - <!-- date should be the date of the latest change or the release version --> - <date>$Date: 2006-08-21 10:34:11 +0200 (Mon, 21 Aug 2006) $</date> - <!-- still a bit buggy output, will talk to docbook-xsl upstream to fix this --> - <!-- <releaseinfo>This is release 0.5 of the xmllint Manual.</releaseinfo> --> - <!-- <edition>0.5</edition> --> -</refentryinfo> - -<refmeta> - <refentrytitle>xmllint</refentrytitle> - <manvolnum>1</manvolnum> -</refmeta> - -<refnamediv> - <refname>xmllint</refname> - <refpurpose>command line <acronym>XML</acronym> tool</refpurpose> -</refnamediv> - -<refsynopsisdiv> - <cmdsynopsis> - <command>xmllint</command> - <group choice="opt"> - <arg choice="plain"><option>--version</option></arg> - <arg choice="plain"><option>--debug</option></arg> - <arg choice="plain"><option>--shell</option></arg> - <arg choice="plain"><option>--debugent</option></arg> - <arg choice="plain"><option>--copy</option></arg> - <arg choice="plain"><option>--recover</option></arg> - <arg choice="plain"><option>--noent</option></arg> - <arg choice="plain"><option>--noout</option></arg> - <arg choice="plain"><option>--nonet</option></arg> - <arg choice="plain"><option>--path "<replaceable class="option">PATH(S)</replaceable>"</option></arg> - <arg choice="plain"><option>--load-trace</option></arg> - <arg choice="plain"><option>--htmlout</option></arg> - <arg choice="plain"><option>--nowrap</option></arg> - <arg choice="plain"><option>--valid</option></arg> - <arg choice="plain"><option>--postvalid</option></arg> - <arg choice="plain"><option>--dtdvalid <replaceable class="option">URL</replaceable></option></arg> - <arg choice="plain"><option>--dtdvalidfpi <replaceable class="option">FPI</replaceable></option></arg> - <arg choice="plain"><option>--timing</option></arg> - <arg choice="plain"><option>--output <replaceable class="option">FILE</replaceable></option></arg> - <arg choice="plain"><option>--repeat</option></arg> - <arg choice="plain"><option>--insert</option></arg> - <arg choice="plain"><option>--compress</option></arg> - <arg choice="plain"><option>--html</option></arg> - <arg choice="plain"><option>--xmlout</option></arg> - <arg choice="plain"><option>--push</option></arg> - <arg choice="plain"><option>--memory</option></arg> - <arg choice="plain"><option>--maxmem <replaceable class="option">NBBYTES</replaceable></option></arg> - <arg choice="plain"><option>--nowarning</option></arg> - <arg choice="plain"><option>--noblanks</option></arg> - <arg choice="plain"><option>--nocdata</option></arg> - <arg choice="plain"><option>--format</option></arg> - <arg choice="plain"><option>--encode <replaceable class="option">ENCODING</replaceable></option></arg> - <arg choice="plain"><option>--dropdtd</option></arg> - <arg choice="plain"><option>--nsclean</option></arg> - <arg choice="plain"><option>--testIO</option></arg> - <arg choice="plain"><option>--catalogs</option></arg> - <arg choice="plain"><option>--nocatalogs</option></arg> - <arg choice="plain"><option>--auto</option></arg> - <arg choice="plain"><option>--xinclude</option></arg> - <arg choice="plain"><option>--noxincludenode</option></arg> - <arg choice="plain"><option>--loaddtd</option></arg> - <arg choice="plain"><option>--dtdattr</option></arg> - <arg choice="plain"><option>--stream</option></arg> - <arg choice="plain"><option>--walker</option></arg> - <arg choice="plain"><option>--pattern <replaceable class="option">PATTERNVALUE</replaceable></option></arg> - <arg choice="plain"><option>--chkregister</option></arg> - <arg choice="plain"><option>--relaxng <replaceable class="option">SCHEMA</replaceable></option></arg> - <arg choice="plain"><option>--schema <replaceable class="option">SCHEMA</replaceable></option></arg> - <arg choice="plain"><option>--c14n</option></arg> - </group> - <group choice="req"> - <arg choice="plain" rep="repeat"><replaceable>XML-FILE(S)</replaceable></arg> - <arg choice="plain" rep="norepeat">-</arg> - </group> - </cmdsynopsis> - <cmdsynopsis> - <command>xmllint</command> - <arg choice="plain"><option>--help</option></arg> - </cmdsynopsis> -</refsynopsisdiv> - -<refsect1 id="description"> - <title>DESCRIPTION</title> - <para> - The &xmllint; program parses one or more <acronym>XML</acronym> files, - specified on the command line as <replaceable>XML-FILE</replaceable> - (or the standard input if the filename provided - is <emphasis role="bold">-</emphasis> ). It prints various types of - output, depending upon the options selected. It is useful for detecting - errors both in <acronym>XML</acronym> code and in - the <acronym>XML</acronym> parser itself. - </para> - <para>&xmllint; is included in <citerefentry> - <refentrytitle>libxml</refentrytitle> - <manvolnum>3</manvolnum> - </citerefentry>.</para> -</refsect1> - -<refsect1 id="options"> - <title>OPTIONS</title> - <para> - &xmllint; accepts the following options (in alphabetical order): - </para> - - <variablelist> - - <varlistentry> - <term><option>--auto</option></term> - <listitem> - <para>Generate a small document for testing purposes.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--catalogs</option></term> - <listitem> - <para> - Use the <acronym>SGML</acronym> catalog(s) from <envar>SGML_CATALOG_FILES</envar>. - Otherwise <acronym>XML</acronym> catalogs starting - from <filename>/etc/xml/catalog</filename> are used by default. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--chkregister</option></term> - <listitem> - <para> - Turn on node registration. Useful for developers testing <citerefentry> - <refentrytitle>libxml</refentrytitle> - <manvolnum>3</manvolnum> - </citerefentry> node tracking code. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--compress</option></term> - <listitem> - <para> - Turn on <citerefentry> - <refentrytitle>gzip</refentrytitle> - <manvolnum>1</manvolnum> - </citerefentry> compression of output. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--copy</option></term> - <listitem> - <para>Test the internal copy implementation.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--c14n</option></term> - <listitem> - <para> - Use the W3C <acronym>XML</acronym> Canonicalisation (<acronym>C14N</acronym>) to - serialize the result of parsing to <filename class="devicefile">stdout</filename>. - It keeps comments in the result. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--dtdvalid <replaceable class="option">URL</replaceable></option></term> - <listitem> - <para> - Use the <acronym>DTD</acronym> specified by - an <replaceable>URL</replaceable> for validation. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--dtdvalidfpi <replaceable class="option">FPI</replaceable></option></term> - <listitem> - <para> - Use the <acronym>DTD</acronym> specified by a Formal Public - Identifier <replaceable>FPI</replaceable> for validation, note that this - will require a catalog exporting that Formal Public Identifier to work. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--debug</option></term> - <listitem> - <para> - Parse a file and output an annotated tree of the - in-memory version of the document. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--debugent</option></term> - <listitem> - <para>Debug the entities defined in the document.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--dropdtd</option></term> - <listitem> - <para>Remove <acronym>DTD</acronym> from output.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--dtdattr</option></term> - <listitem> - <para> - Fetch external <acronym>DTD</acronym> and populate the tree with - inherited attributes. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--encode <replaceable class="option">ENCODING</replaceable></option></term> - <listitem> - <para>Output in the given encoding.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--format</option></term> - <listitem> - <para> - Reformat and reindent the output. The <envar>XMLLINT_INDENT</envar> - environment variable controls the indentation. The default value is two - spaces " "). - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--help</option></term> - <listitem> - <para>Print out a short usage summary for &xmllint;.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--html</option></term> - <listitem> - <para>Use the <acronym>HTML</acronym> parser.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--htmlout</option></term> - <listitem> - <para> - Output results as an <acronym>HTML</acronym> file. This - causes &xmllint; to output the necessary <acronym>HTML</acronym> - tags surrounding the result tree output so the results can be - displayed/viewed in a browser. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--insert</option></term> - <listitem> - <para>Test for valid insertions.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--loaddtd</option></term> - <listitem> - <para>Fetch an external <acronym>DTD</acronym>.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--load-trace</option></term> - <listitem> - <para> - Display all the documents loaded during the processing - to <filename class="devicefile">stderr</filename>. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--maxmem <replaceable class="option">NNBYTES</replaceable></option></term> - <listitem> - <para> - Test the parser memory support. <replaceable>NNBYTES</replaceable> - is the maximum number of bytes the library is allowed to allocate. - This can also be used to make sure batch processing - of <acronym>XML</acronym> files will not exhaust the virtual memory - of the server running them. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--memory</option></term> - <listitem> - <para>Parse from memory.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--noblanks</option></term> - <listitem> - <para>Drop ignorable blank spaces.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--nocatalogs</option></term> - <listitem> - <para>Do not use any catalogs.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--nocdata</option></term> - <listitem> - <para>Substitute CDATA section by equivalent text nodes.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--noent</option></term> - <listitem> - <para> - Substitute entity values for entity references. By default, &xmllint; - leaves entity references in place. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--nonet</option></term> - <listitem> - <para> - Do not use the Internet to fetch <acronym>DTD</acronym>s or entities. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--noout</option></term> - <listitem> - <para> - Suppress output. By default, &xmllint; outputs the result tree. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--nowarning</option></term> - <listitem> - <para>Do not emit warnings from the parser and/or validator.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--nowrap</option></term> - <listitem> - <para>Do not output <acronym>HTML</acronym> doc wrapper.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--noxincludenode</option></term> - <listitem> - <para> - Do XInclude processing but do not generate XInclude start and end nodes. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--nsclean</option></term> - <listitem> - <para>Remove redundant namespace declarations.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--output <replaceable class="option">FILE</replaceable></option></term> - <listitem> - <para> - Define a file path where &xmllint; will save the result of parsing. - Usually the programs build a tree and save it - on <filename class="devicefile">stdout</filename>, with this option - the result <acronym>XML</acronym> instance will be saved onto a file. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--path "<replaceable class="option">PATH(S)</replaceable>"</option></term> - <listitem> - <para> - Use the (space- or colon-separated) list of filesystem paths specified - by <replaceable>PATHS</replaceable> to load <acronym>DTD</acronym>s or - entities. Enclose space-separated lists by quotation marks. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--pattern <replaceable class="option">PATTERNVALUE</replaceable></option></term> - <listitem> - <para> - Used to exercise the pattern recognition engine, which can be used - with the reader interface to the parser. It allows to select some - nodes in the document based on an XPath (subset) expression. Used - for debugging. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--postvalid</option></term> - <listitem> - <para>Validate after parsing has completed.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--push</option></term> - <listitem> - <para>Use the push mode of the parser.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--recover</option></term> - <listitem> - <para>Output any parsable portions of an invalid document.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--relaxng <replaceable class="option">SCHEMA</replaceable></option></term> - <listitem> - <para> - Use RelaxNG file named <replaceable class="option">SCHEMA</replaceable> - for validation. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--repeat</option></term> - <listitem> - <para>Repeat 100 times, for timing or profiling.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--schema <replaceable>SCHEMA</replaceable></option></term> - <listitem> - <para> - Use a W3C <acronym>XML</acronym> Schema file - named <replaceable>SCHEMA</replaceable> for validation. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--shell</option></term> - <listitem> - <para> - Run a navigating shell. Details on available commands in shell mode - are below (see <xref linkend="shell"/>). - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--stream</option></term> - <listitem> - <para> - Use streaming <acronym>API</acronym> - useful when used in combination - with <option>--relaxng</option> or <option>--valid</option> options - for validation of files that are too large to be held in memory. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--testIO</option></term> - <listitem> - <para>Test user input/output support.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--timing</option></term> - <listitem> - <para> - Output information about the time it takes &xmllint; to perform the - various steps. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--valid</option></term> - <listitem> - <para> - Determine if the document is a valid instance of the included - Document Type Definition (<acronym>DTD</acronym>). - A <acronym>DTD</acronym> to be validated against also can be - specified at the command line using the <option>--dtdvalid</option> - option. By default, &xmllint; also checks to determine if the - document is well-formed. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--version</option></term> - <listitem> - <para> - Display the version of <citerefentry> - <refentrytitle>libxml</refentrytitle> - <manvolnum>3</manvolnum> - </citerefentry> used. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--walker</option></term> - <listitem> - <para> - Test the walker module, which is a reader interface but for a - document tree, instead of using the reader <acronym>API</acronym> on - an unparsed document it works on an existing in-memory tree. Used for - debugging. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--xinclude</option></term> - <listitem> - <para>Do XInclude processing.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>--xmlout</option></term> - <listitem> - <para> - Used in conjunction with <option>--html</option>. Usually - when <acronym>HTML</acronym> is parsed the document is saved with - the <acronym>HTML</acronym> serializer. But with this option the - resulting document is saved with the <acronym>XML</acronym> - serializer. This is primarily used to - generate <acronym>XHTML</acronym> from <acronym>HTML</acronym> input. - </para> - </listitem> - </varlistentry> - - </variablelist> -</refsect1> - -<refsect1 id="shell"> - <title>SHELL COMMANDS</title> - <para> - &xmllint; offers an interactive shell mode invoked with - the <option>--shell</option> command. Available commands in shell mode - include (in alphabetical order): - </para> - <variablelist> - - <varlistentry> - <term><command>base</command></term> - <listitem> - <para>Display <acronym>XML</acronym> base of the node.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>bye</command></term> - <listitem> - <para>Leave the shell.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>cat <replaceable>NODE</replaceable></command></term> - <listitem> - <para>Display the given node or the current one.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>cd <replaceable>PATH</replaceable></command></term> - <listitem> - <para> - Change the current node to the given path (if unique) or root if no - argument is given. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>dir <replaceable>PATH</replaceable></command></term> - <listitem> - <para> - Dumps information about the node (namespace, attributes, content). - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>du <replaceable>PATH</replaceable></command></term> - <listitem> - <para> - Show the structure of the subtree under the given path or the current node. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>exit</command></term> - <listitem> - <para>Leave the shell.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>help</command></term> - <listitem> - <para>Show this help.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>free</command></term> - <listitem> - <para>Display memory usage.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>load <replaceable>FILENAME</replaceable></command></term> - <listitem> - <para>Load a new document with the given filename.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>ls <replaceable>PATH</replaceable></command></term> - <listitem> - <para>List contents of the given path or the current directory.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>pwd</command></term> - <listitem> - <para>Display the path to the current node.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>quit</command></term> - <listitem> - <para>Leave the shell.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>save <replaceable>FILENAME</replaceable></command></term> - <listitem> - <para> - Save the current document to the given filename or to the original name. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><option>validate</option></term> - <listitem> - <para>Check the document for errors.</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><command>write <replaceable>FILENAME</replaceable></command></term> - <listitem> - <para>Write the current node to the given filename.</para> - </listitem> - </varlistentry> - - </variablelist> -</refsect1> - -<refsect1 id="environment"> - <title>ENVIRONMENT</title> - <variablelist> - - <varlistentry> - <term><envar>SGML_CATALOG_FILES</envar></term> - <listitem> - <para><acronym>SGML</acronym> catalog behavior can be changed by redirecting - queries to the user's own set of catalogs. This can be done by setting - the <envar>SGML_CATALOG_FILES</envar> environment variable to a list - of catalogs. An empty one should deactivate loading the - default <filename>/etc/sgml/catalog</filename> catalog. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><envar>XML_CATALOG_FILES</envar></term> - <listitem> - <para><acronym>XML</acronym> catalog behavior can be changed by redirecting - queries to the user's own set of catalogs. This can be done by setting - the <envar>XML_CATALOG_FILES</envar> environment variable to a list - of catalogs. An empty one should deactivate loading the - default <filename>/etc/xml/catalog</filename> catalog. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><envar>XML_DEBUG_CATALOG</envar></term> - <listitem> - <para>Setting the environment variable <envar>XML_DEBUG_CATALOG</envar> - to <parameter>non-zero</parameter> using the <command>export</command> - command outputs debugging information related to catalog operations. - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><envar>XMLLINT_INDENT</envar></term> - <listitem> - <para>Setting the environment variable <envar>XMLLINT_INDENT</envar> - controls the indentation. The default value is two spaces " ". - </para> - </listitem> - </varlistentry> - - </variablelist> -</refsect1> - -<refsect1 id="diagnostics"> - <title>DIAGNOSTICS</title> - <para> - &xmllint; return codes provide information that can be used when - calling it from scripts. - </para> - <!-- better use segmentedlist element later, - which is currently only supported in snapshots --> - <variablelist> - - <varlistentry> - <term><errorcode>0</errorcode></term> - <listitem> - <para>No error</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>1</errorcode></term> - <listitem> - <para>Unclassified</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>2</errorcode></term> - <listitem> - <para>Error in <acronym>DTD</acronym></para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>3</errorcode></term> - <listitem> - <para>Validation error</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>4</errorcode></term> - <listitem> - <para>Validation error</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>5</errorcode></term> - <listitem> - <para>Error in schema compilation</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>6</errorcode></term> - <listitem> - <para>Error writing output</para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>7</errorcode></term> - <listitem> - <para> - Error in pattern (generated when <option>--pattern</option> option is used) - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>8</errorcode></term> - <listitem> - <para> - Error in Reader registration (generated - when <option>--chkregister</option> option is used) - </para> - </listitem> - </varlistentry> - - <varlistentry> - <term><errorcode>9</errorcode></term> - <listitem> - <para>Out of memory error</para> - </listitem> - </varlistentry> - - </variablelist> -</refsect1> - -<refsect1 id="seealso"> - <title>SEE ALSO</title> - <para><citerefentry> - <refentrytitle>libxml</refentrytitle> - <manvolnum>3</manvolnum> - </citerefentry> - </para> - <para> - More information can be found at - <itemizedlist> - <listitem> - <para><citerefentry> - <refentrytitle>libxml</refentrytitle> - <manvolnum>3</manvolnum> - </citerefentry> web page <ulink url="http://www.xmlsoft.org/"/> - </para> - </listitem> - <listitem> - <para>W3C <acronym>XSLT</acronym> page <ulink url="http://www.w3.org/TR/xslt"/> - </para> - </listitem> - </itemizedlist> - </para> -</refsect1> - -</refentry> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlmem.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlmem.html deleted file mode 100644 index 1ca4334d..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlmem.html +++ /dev/null @@ -1,102 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><link rel="SHORTCUT ICON" href="/favicon.ico" /><style type="text/css"> -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } -</style><title>Memory Management</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Memory Management</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Developer Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html" style="font-weight:bold">Main Menu</a></li><li><a href="html/index.html" style="font-weight:bold">Reference Manual</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="tutorial/index.html">Tutorial</a></li><li><a href="xmlreader.html">The Reader Interface</a></li><li><a href="ChangeLog.html">ChangeLog</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="python.html">Python and bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.html">The tree output</a></li><li><a href="interface.html">The SAX interface</a></li><li><a href="xmlmem.html">Memory Management</a></li><li><a href="xmlio.html">I/O Interfaces</a></li><li><a href="library.html">The parser interfaces</a></li><li><a href="entities.html">Entities or no entities</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="upgrade.html">Upgrading 1.x code</a></li><li><a href="threads.html">Thread safety</a></li><li><a href="DOM.html">DOM Principles</a></li><li><a href="example.html">A real example</a></li><li><a href="xml.html">flat page</a>, <a href="site.xsl">stylesheet</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="APIchunk0.html">Alphabetic</a></li><li><a href="APIconstructors.html">Constructors</a></li><li><a href="APIfunctions.html">Functions/Types</a></li><li><a href="APIfiles.html">Modules</a></li><li><a href="APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://www.blastwave.org/packages.php/libxml2">Solaris binaries</a></li><li><a href="http://www.explain.com.au/oss/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://codespeak.net/lxml/">lxml Python bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li><a href="http://libxmlplusplus.sourceforge.net/">C++ bindings</a></li><li><a href="http://www.zend.com/php5/articles/php5-xmlphp.php#Heading4">PHP bindings</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://libxml.rubyforge.org/">Ruby bindings</a></li><li><a href="http://tclxml.sourceforge.net/">Tcl bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>Table of Content:</p><ol><li><a href="#General3">General overview</a></li> - <li><a href="#setting">Setting libxml2 set of memory routines</a></li> - <li><a href="#cleanup">Cleaning up after parsing</a></li> - <li><a href="#Debugging">Debugging routines</a></li> - <li><a href="#General4">General memory requirements</a></li> -</ol><h3><a name="General3" id="General3">General overview</a></h3><p>The module <code><a href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlmemory.h</a></code> -provides the interfaces to the libxml2 memory system:</p><ul><li>libxml2 does not use the libc memory allocator directly but xmlFree(), - xmlMalloc() and xmlRealloc()</li> - <li>those routines can be reallocated to a specific set of routine, by - default the libc ones i.e. free(), malloc() and realloc()</li> - <li>the xmlmemory.c module includes a set of debugging routine</li> -</ul><h3><a name="setting" id="setting">Setting libxml2 set of memory routines</a></h3><p>It is sometimes useful to not use the default memory allocator, either for -debugging, analysis or to implement a specific behaviour on memory management -(like on embedded systems). Two function calls are available to do so:</p><ul><li><a href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlMemGet - ()</a> which return the current set of functions in use by the parser</li> - <li><a href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlMemSetup()</a> - which allow to set up a new set of memory allocation functions</li> -</ul><p>Of course a call to xmlMemSetup() should probably be done before calling -any other libxml2 routines (unless you are sure your allocations routines are -compatibles).</p><h3><a name="cleanup" id="cleanup">Cleaning up after parsing</a></h3><p>Libxml2 is not stateless, there is a few set of memory structures needing -allocation before the parser is fully functional (some encoding structures -for example). This also mean that once parsing is finished there is a tiny -amount of memory (a few hundred bytes) which can be recollected if you don't -reuse the parser immediately:</p><ul><li><a href="http://xmlsoft.org/html/libxml-parser.html">xmlCleanupParser - ()</a> is a centralized routine to free the parsing states. Note that it - won't deallocate any produced tree if any (use the xmlFreeDoc() and - related routines for this).</li> - <li><a href="http://xmlsoft.org/html/libxml-parser.html">xmlInitParser - ()</a> is the dual routine allowing to preallocate the parsing state - which can be useful for example to avoid initialization reentrancy - problems when using libxml2 in multithreaded applications</li> -</ul><p>Generally xmlCleanupParser() is safe, if needed the state will be rebuild -at the next invocation of parser routines, but be careful of the consequences -in multithreaded applications.</p><h3><a name="Debugging" id="Debugging">Debugging routines</a></h3><p>When configured using --with-mem-debug flag (off by default), libxml2 uses -a set of memory allocation debugging routines keeping track of all allocated -blocks and the location in the code where the routine was called. A couple of -other debugging routines allow to dump the memory allocated infos to a file -or call a specific routine when a given block number is allocated:</p><ul><li><a href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlMallocLoc()</a> - <a href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlReallocLoc()</a> - and <a href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlMemStrdupLoc()</a> - are the memory debugging replacement allocation routines</li> - <li><a href="http://xmlsoft.org/html/libxml-xmlmemory.html">xmlMemoryDump - ()</a> dumps all the information about the allocated memory block lefts - in the <code>.memdump</code> file</li> -</ul><p>When developing libxml2 memory debug is enabled, the tests programs call -xmlMemoryDump () and the "make test" regression tests will check for any -memory leak during the full regression test sequence, this helps a lot -ensuring that libxml2 does not leak memory and bullet proof memory -allocations use (some libc implementations are known to be far too permissive -resulting in major portability problems!).</p><p>If the .memdump reports a leak, it displays the allocation function and -also tries to give some information about the content and structure of the -allocated blocks left. This is sufficient in most cases to find the culprit, -but not always. Assuming the allocation problem is reproducible, it is -possible to find more easily:</p><ol><li>write down the block number xxxx not allocated</li> - <li>export the environment variable XML_MEM_BREAKPOINT=xxxx , the easiest - when using GDB is to simply give the command - <p><code>set environment XML_MEM_BREAKPOINT xxxx</code></p> - <p>before running the program.</p> - </li> - <li>run the program under a debugger and set a breakpoint on - xmlMallocBreakpoint() a specific function called when this precise block - is allocated</li> - <li>when the breakpoint is reached you can then do a fine analysis of the - allocation an step to see the condition resulting in the missing - deallocation.</li> -</ol><p>I used to use a commercial tool to debug libxml2 memory problems but after -noticing that it was not detecting memory leaks that simple mechanism was -used and proved extremely efficient until now. Lately I have also used <a href="http://developer.kde.org/~sewardj/">valgrind</a> with quite some -success, it is tied to the i386 architecture since it works by emulating the -processor and instruction set, it is slow but extremely efficient, i.e. it -spot memory usage errors in a very precise way.</p><h3><a name="General4" id="General4">General memory requirements</a></h3><p>How much libxml2 memory require ? It's hard to tell in average it depends -of a number of things:</p><ul><li>the parser itself should work in a fixed amount of memory, except for - information maintained about the stacks of names and entities locations. - The I/O and encoding handlers will probably account for a few KBytes. - This is true for both the XML and HTML parser (though the HTML parser - need more state).</li> - <li>If you are generating the DOM tree then memory requirements will grow - nearly linear with the size of the data. In general for a balanced - textual document the internal memory requirement is about 4 times the - size of the UTF8 serialization of this document (example the XML-1.0 - recommendation is a bit more of 150KBytes and takes 650KBytes of main - memory when parsed). Validation will add a amount of memory required for - maintaining the external Dtd state which should be linear with the - complexity of the content model defined by the Dtd</li> - <li>If you need to work with fixed memory requirements or don't need the - full DOM tree then using the <a href="xmlreader.html">xmlReader - interface</a> is probably the best way to proceed, it still allows to - validate or operate on subset of the tree if needed.</li> - <li>If you don't care about the advanced features of libxml2 like - validation, DOM, XPath or XPointer, don't use entities, need to work with - fixed memory requirements, and try to get the fastest parsing possible - then the SAX interface should be used, but it has known restrictions.</li> -</ul><p></p><p><a href="bugs.html">Daniel Veillard</a></p></td></tr></table></td></tr></table></td></tr></table></td></tr></table></td></tr></table></body></html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlreader.html b/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlreader.html deleted file mode 100644 index 416f0472..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/Resources/en.lproj/xmlreader.html +++ /dev/null @@ -1,475 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" - "http://www.w3.org/TR/html4/loose.dtd"> -<html> -<head> - <meta http-equiv="Content-Type" content="text/html"> - <style type="text/css"></style> -<!-- -TD {font-family: Verdana,Arial,Helvetica} -BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em} -H1 {font-family: Verdana,Arial,Helvetica} -H2 {font-family: Verdana,Arial,Helvetica} -H3 {font-family: Verdana,Arial,Helvetica} -A:link, A:visited, A:active { text-decoration: underline } - </style> ---> - <title>Libxml2 XmlTextReader Interface tutorial</title> -</head> - -<body bgcolor="#fffacd" text="#000000"> -<h1 align="center">Libxml2 XmlTextReader Interface tutorial</h1> - -<p></p> - -<p>This document describes the use of the XmlTextReader streaming API added -to libxml2 in version 2.5.0 . This API is closely modeled after the <a -href="http://dotgnu.org/pnetlib-doc/System/Xml/XmlTextReader.html">XmlTextReader</a> -and <a -href="http://dotgnu.org/pnetlib-doc/System/Xml/XmlReader.html">XmlReader</a> -classes of the C# language.</p> - -<p>This tutorial will present the key points of this API, and working -examples using both C and the Python bindings:</p> - -<p>Table of content:</p> -<ul> - <li><a href="#Introducti">Introduction: why a new API</a></li> - <li><a href="#Walking">Walking a simple tree</a></li> - <li><a href="#Extracting">Extracting informations for the current - node</a></li> - <li><a href="#Extracting1">Extracting informations for the - attributes</a></li> - <li><a href="#Validating">Validating a document</a></li> - <li><a href="#Entities">Entities substitution</a></li> - <li><a href="#L1142">Relax-NG Validation</a></li> - <li><a href="#Mixing">Mixing the reader and tree or XPath - operations</a></li> -</ul> - -<p></p> - -<h2><a name="Introducti">Introduction: why a new API</a></h2> - -<p>Libxml2 <a href="http://xmlsoft.org/html/libxml-tree.html">main API is -tree based</a>, where the parsing operation results in a document loaded -completely in memory, and expose it as a tree of nodes all availble at the -same time. This is very simple and quite powerful, but has the major -limitation that the size of the document that can be hamdled is limited by -the size of the memory available. Libxml2 also provide a <a -href="http://www.saxproject.org/">SAX</a> based API, but that version was -designed upon one of the early <a -href="http://www.jclark.com/xml/expat.html">expat</a> version of SAX, SAX is -also not formally defined for C. SAX basically work by registering callbacks -which are called directly by the parser as it progresses through the document -streams. The problem is that this programming model is relatively complex, -not well standardized, cannot provide validation directly, makes entity, -namespace and base processing relatively hard.</p> - -<p>The <a -href="http://dotgnu.org/pnetlib-doc/System/Xml/XmlTextReader.html">XmlTextReader -API from C#</a> provides a far simpler programming model. The API acts as a -cursor going forward on the document stream and stopping at each node in the -way. The user's code keeps control of the progress and simply calls a -Read() function repeatedly to progress to each node in sequence in document -order. There is direct support for namespaces, xml:base, entity handling and -adding DTD validation on top of it was relatively simple. This API is really -close to the <a href="http://www.w3.org/TR/DOM-Level-2-Core/">DOM Core -specification</a> This provides a far more standard, easy to use and powerful -API than the existing SAX. Moreover integrating extension features based on -the tree seems relatively easy.</p> - -<p>In a nutshell the XmlTextReader API provides a simpler, more standard and -more extensible interface to handle large documents than the existing SAX -version.</p> - -<h2><a name="Walking">Walking a simple tree</a></h2> - -<p>Basically the XmlTextReader API is a forward only tree walking interface. -The basic steps are:</p> -<ol> - <li>prepare a reader context operating on some input</li> - <li>run a loop iterating over all nodes in the document</li> - <li>free up the reader context</li> -</ol> - -<p>Here is a basic C sample doing this:</p> -<pre>#include <libxml/xmlreader.h> - -void processNode(xmlTextReaderPtr reader) { - /* handling of a node in the tree */ -} - -int streamFile(char *filename) { - xmlTextReaderPtr reader; - int ret; - - reader = xmlNewTextReaderFilename(filename); - if (reader != NULL) { - ret = xmlTextReaderRead(reader); - while (ret == 1) { - processNode(reader); - ret = xmlTextReaderRead(reader); - } - xmlFreeTextReader(reader); - if (ret != 0) { - printf("%s : failed to parse\n", filename); - } - } else { - printf("Unable to open %s\n", filename); - } -}</pre> - -<p>A few things to notice:</p> -<ul> - <li>the include file needed : <code>libxml/xmlreader.h</code></li> - <li>the creation of the reader using a filename</li> - <li>the repeated call to xmlTextReaderRead() and how any return value - different from 1 should stop the loop</li> - <li>that a negative return means a parsing error</li> - <li>how xmlFreeTextReader() should be used to free up the resources used by - the reader.</li> -</ul> - -<p>Here is similar code in python for exactly the same processing:</p> -<pre>import libxml2 - -def processNode(reader): - pass - -def streamFile(filename): - try: - reader = libxml2.newTextReaderFilename(filename) - except: - print "unable to open %s" % (filename) - return - - ret = reader.Read() - while ret == 1: - processNode(reader) - ret = reader.Read() - - if ret != 0: - print "%s : failed to parse" % (filename)</pre> - -<p>The only things worth adding are that the <a -href="http://dotgnu.org/pnetlib-doc/System/Xml/XmlTextReader.html">xmlTextReader -is abstracted as a class like in C#</a> with the same method names (but the -properties are currently accessed with methods) and that one doesn't need to -free the reader at the end of the processing. It will get garbage collected -once all references have disapeared.</p> - -<h2><a name="Extracting">Extracting information for the current node</a></h2> - -<p>So far the example code did not indicate how information was extracted -from the reader. It was abstrated as a call to the processNode() routine, -with the reader as the argument. At each invocation, the parser is stopped on -a given node and the reader can be used to query those node properties. Each -<em>Property</em> is available at the C level as a function taking a single -xmlTextReaderPtr argument whose name is -<code>xmlTextReader</code><em>Property</em> , if the return type is an -<code>xmlChar *</code> string then it must be deallocated with -<code>xmlFree()</code> to avoid leaks. For the Python interface, there is a -<em>Property</em> method to the reader class that can be called on the -instance. The list of the properties is based on the <a -href="http://dotgnu.org/pnetlib-doc/System/Xml/XmlTextReader.html">C# -XmlTextReader class</a> set of properties and methods:</p> -<ul> - <li><em>NodeType</em>: The node type, 1 for start element, 15 for end of - element, 2 for attributes, 3 for text nodes, 4 for CData sections, 5 for - entity references, 6 for entity declarations, 7 for PIs, 8 for comments, - 9 for the document nodes, 10 for DTD/Doctype nodes, 11 for document - fragment and 12 for notation nodes.</li> - <li><em>Name</em>: the <a - href="http://www.w3.org/TR/REC-xml-names/#ns-qualnames">qualified - name</a> of the node, equal to (<em>Prefix</em>:)<em>LocalName</em>.</li> - <li><em>LocalName</em>: the <a - href="http://www.w3.org/TR/REC-xml-names/#NT-LocalPart">local name</a> of - the node.</li> - <li><em>Prefix</em>: a shorthand reference to the <a - href="http://www.w3.org/TR/REC-xml-names/">namespace</a> associated with - the node.</li> - <li><em>NamespaceUri</em>: the URI defining the <a - href="http://www.w3.org/TR/REC-xml-names/">namespace</a> associated with - the node.</li> - <li><em>BaseUri:</em> the base URI of the node. See the <a - href="http://www.w3.org/TR/xmlbase/">XML Base W3C specification</a>.</li> - <li><em>Depth:</em> the depth of the node in the tree, starts at 0 for the - root node.</li> - <li><em>HasAttributes</em>: whether the node has attributes.</li> - <li><em>HasValue</em>: whether the node can have a text value.</li> - <li><em>Value</em>: provides the text value of the node if present.</li> - <li><em>IsDefault</em>: whether an Attribute node was generated from the - default value defined in the DTD or schema (<em>unsupported - yet</em>).</li> - <li><em>XmlLang</em>: the <a - href="http://www.w3.org/TR/REC-xml#sec-lang-tag">xml:lang</a> scope - within which the node resides.</li> - <li><em>IsEmptyElement</em>: check if the current node is empty, this is a - bit bizarre in the sense that <code><a/></code> will be considered - empty while <code><a></a></code> will not.</li> - <li><em>AttributeCount</em>: provides the number of attributes of the - current node.</li> -</ul> - -<p>Let's look first at a small example to get this in practice by redefining -the processNode() function in the Python example:</p> -<pre>def processNode(reader): - print "%d %d %s %d" % (reader.Depth(), reader.NodeType(), - reader.Name(), reader.IsEmptyElement())</pre> - -<p>and look at the result of calling streamFile("tst.xml") for various -content of the XML test file.</p> - -<p>For the minimal document "<code><doc/></code>" we get:</p> -<pre>0 1 doc 1</pre> - -<p>Only one node is found, its depth is 0, type 1 indicate an element start, -of name "doc" and it is empty. Trying now with -"<code><doc></doc></code>" instead leads to:</p> -<pre>0 1 doc 0 -0 15 doc 0</pre> - -<p>The document root node is not flagged as empty anymore and both a start -and an end of element are detected. The following document shows how -character data are reported:</p> -<pre><doc><a/><b>some text</b> -<c/></doc></pre> - -<p>We modifying the processNode() function to also report the node Value:</p> -<pre>def processNode(reader): - print "%d %d %s %d %s" % (reader.Depth(), reader.NodeType(), - reader.Name(), reader.IsEmptyElement(), - reader.Value())</pre> - -<p>The result of the test is:</p> -<pre>0 1 doc 0 None -1 1 a 1 None -1 1 b 0 None -2 3 #text 0 some text -1 15 b 0 None -1 3 #text 0 - -1 1 c 1 None -0 15 doc 0 None</pre> - -<p>There are a few things to note:</p> -<ul> - <li>the increase of the depth value (first row) as children nodes are - explored</li> - <li>the text node child of the b element, of type 3 and its content</li> - <li>the text node containing the line return between elements b and c</li> - <li>that elements have the Value None (or NULL in C)</li> -</ul> - -<p>The equivalent routine for <code>processNode()</code> as used by -<code>xmllint --stream --debug</code> is the following and can be found in -the xmllint.c module in the source distribution:</p> -<pre>static void processNode(xmlTextReaderPtr reader) { - xmlChar *name, *value; - - name = xmlTextReaderName(reader); - if (name == NULL) - name = xmlStrdup(BAD_CAST "--"); - value = xmlTextReaderValue(reader); - - printf("%d %d %s %d", - xmlTextReaderDepth(reader), - xmlTextReaderNodeType(reader), - name, - xmlTextReaderIsEmptyElement(reader)); - xmlFree(name); - if (value == NULL) - printf("\n"); - else { - printf(" %s\n", value); - xmlFree(value); - } -}</pre> - -<h2><a name="Extracting1">Extracting information for the attributes</a></h2> - -<p>The previous examples don't indicate how attributes are processed. The -simple test "<code><doc a="b"/></code>" provides the following -result:</p> -<pre>0 1 doc 1 None</pre> - -<p>This proves that attribute nodes are not traversed by default. The -<em>HasAttributes</em> property allow to detect their presence. To check -their content the API has special instructions. Basically two kinds of operations -are possible:</p> -<ol> - <li>to move the reader to the attribute nodes of the current element, in - that case the cursor is positionned on the attribute node</li> - <li>to directly query the element node for the attribute value</li> -</ol> - -<p>In both case the attribute can be designed either by its position in the -list of attribute (<em>MoveToAttributeNo</em> or <em>GetAttributeNo</em>) or -by their name (and namespace):</p> -<ul> - <li><em>GetAttributeNo</em>(no): provides the value of the attribute with - the specified index no relative to the containing element.</li> - <li><em>GetAttribute</em>(name): provides the value of the attribute with - the specified qualified name.</li> - <li>GetAttributeNs(localName, namespaceURI): provides the value of the - attribute with the specified local name and namespace URI.</li> - <li><em>MoveToAttributeNo</em>(no): moves the position of the current - instance to the attribute with the specified index relative to the - containing element.</li> - <li><em>MoveToAttribute</em>(name): moves the position of the current - instance to the attribute with the specified qualified name.</li> - <li><em>MoveToAttributeNs</em>(localName, namespaceURI): moves the position - of the current instance to the attribute with the specified local name - and namespace URI.</li> - <li><em>MoveToFirstAttribute</em>: moves the position of the current - instance to the first attribute associated with the current node.</li> - <li><em>MoveToNextAttribute</em>: moves the position of the current - instance to the next attribute associated with the current node.</li> - <li><em>MoveToElement</em>: moves the position of the current instance to - the node that contains the current Attribute node.</li> -</ul> - -<p>After modifying the processNode() function to show attributes:</p> -<pre>def processNode(reader): - print "%d %d %s %d %s" % (reader.Depth(), reader.NodeType(), - reader.Name(), reader.IsEmptyElement(), - reader.Value()) - if reader.NodeType() == 1: # Element - while reader.MoveToNextAttribute(): - print "-- %d %d (%s) [%s]" % (reader.Depth(), reader.NodeType(), - reader.Name(),reader.Value())</pre> - -<p>The output for the same input document reflects the attribute:</p> -<pre>0 1 doc 1 None --- 1 2 (a) [b]</pre> - -<p>There are a couple of things to note on the attribute processing:</p> -<ul> - <li>Their depth is the one of the carrying element plus one.</li> - <li>Namespace declarations are seen as attributes, as in DOM.</li> -</ul> - -<h2><a name="Validating">Validating a document</a></h2> - -<p>Libxml2 implementation adds some extra features on top of the XmlTextReader -API. The main one is the ability to DTD validate the parsed document -progressively. This is simply the activation of the associated feature of the -parser used by the reader structure. There are a few options available -defined as the enum xmlParserProperties in the libxml/xmlreader.h header -file:</p> -<ul> - <li>XML_PARSER_LOADDTD: force loading the DTD (without validating)</li> - <li>XML_PARSER_DEFAULTATTRS: force attribute defaulting (this also imply - loading the DTD)</li> - <li>XML_PARSER_VALIDATE: activate DTD validation (this also imply loading - the DTD)</li> - <li>XML_PARSER_SUBST_ENTITIES: substitute entities on the fly, entity - reference nodes are not generated and are replaced by their expanded - content.</li> - <li>more settings might be added, those were the one available at the 2.5.0 - release...</li> -</ul> - -<p>The GetParserProp() and SetParserProp() methods can then be used to get -and set the values of those parser properties of the reader. For example</p> -<pre>def parseAndValidate(file): - reader = libxml2.newTextReaderFilename(file) - reader.SetParserProp(libxml2.PARSER_VALIDATE, 1) - ret = reader.Read() - while ret == 1: - ret = reader.Read() - if ret != 0: - print "Error parsing and validating %s" % (file)</pre> - -<p>This routine will parse and validate the file. Error messages can be -captured by registering an error handler. See python/tests/reader2.py for -more complete Python examples. At the C level the equivalent call to cativate -the validation feature is just:</p> -<pre>ret = xmlTextReaderSetParserProp(reader, XML_PARSER_VALIDATE, 1)</pre> - -<p>and a return value of 0 indicates success.</p> - -<h2><a name="Entities">Entities substitution</a></h2> - -<p>By default the xmlReader will report entities as such and not replace them -with their content. This default behaviour can however be overriden using:</p> - -<p><code>reader.SetParserProp(libxml2.PARSER_SUBST_ENTITIES,1)</code></p> - -<h2><a name="L1142">Relax-NG Validation</a></h2> - -<p style="font-size: 10pt">Introduced in version 2.5.7</p> - -<p>Libxml2 can now validate the document being read using the xmlReader using -Relax-NG schemas. While the Relax NG validator can't always work in a -streamable mode, only subsets which cannot be reduced to regular expressions -need to have their subtree expanded for validation. In practice it means -that, unless the schemas for the top level element content is not expressable -as a regexp, only chunk of the document needs to be parsed while -validating.</p> - -<p>The steps to do so are:</p> -<ul> - <li>create a reader working on a document as usual</li> - <li>before any call to read associate it to a Relax NG schemas, either the - preparsed schemas or the URL to the schemas to use</li> - <li>errors will be reported the usual way, and the validity status can be - obtained using the IsValid() interface of the reader like for DTDs.</li> -</ul> - -<p>Example, assuming the reader has already being created and that the schema -string contains the Relax-NG schemas:</p> -<pre><code>rngp = libxml2.relaxNGNewMemParserCtxt(schema, len(schema))<br> -rngs = rngp.relaxNGParse()<br> -reader.RelaxNGSetSchema(rngs)<br> -ret = reader.Read()<br> -while ret == 1:<br> - ret = reader.Read()<br> -if ret != 0:<br> - print "Error parsing the document"<br> -if reader.IsValid() != 1:<br> - print "Document failed to validate"</code><br> -</pre> - -<p>See <code>reader6.py</code> in the sources or documentation for a complete -example.</p> - -<h2><a name="Mixing">Mixing the reader and tree or XPath operations</a></h2> - -<p style="font-size: 10pt">Introduced in version 2.5.7</p> - -<p>While the reader is a streaming interface, its underlying implementation -is based on the DOM builder of libxml2. As a result it is relatively simple -to mix operations based on both models under some constraints. To do so the -reader has an Expand() operation allowing to grow the subtree under the -current node. It returns a pointer to a standard node which can be -manipulated in the usual ways. The node will get all its ancestors and the -full subtree available. Usual operations like XPath queries can be used on -that reduced view of the document. Here is an example extracted from -reader5.py in the sources which extract and prints the bibliography for the -"Dragon" compiler book from the XML 1.0 recommendation:</p> -<pre>f = open('../../test/valid/REC-xml-19980210.xml') -input = libxml2.inputBuffer(f) -reader = input.newTextReader("REC") -res="" -while reader.Read(): - while reader.Name() == 'bibl': - node = reader.Expand() # expand the subtree - if node.xpathEval("@id = 'Aho'"): # use XPath on it - res = res + node.serialize() - if reader.Next() != 1: # skip the subtree - break;</pre> - -<p>Note, however that the node instance returned by the Expand() call is only -valid until the next Read() operation. The Expand() operation does not -affects the Read() ones, however usually once processed the full subtree is -not useful anymore, and the Next() operation allows to skip it completely and -process to the successor or return 0 if the document end is reached.</p> - -<p><a href="mailto:xml@gnome.org">Daniel Veillard</a></p> - -<p>$Id: xmlreader.html 3320 2005-10-18 19:11:55Z veillard $</p> - -<p></p> -</body> -</html> diff --git a/Frameworks/libxml.framework/Versions/2.6.30/libxml b/Frameworks/libxml.framework/Versions/2.6.30/libxml Binary files differdeleted file mode 100755 index a4e6b291..00000000 --- a/Frameworks/libxml.framework/Versions/2.6.30/libxml +++ /dev/null |