mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-31 06:50:06 +03:00
preparing release 2.4.27 updated and rebuilt the docs try to make sure the
* configure.in: preparing release 2.4.27 * doc/* : updated and rebuilt the docs * doc/Makefile.am libxml.spec.in: try to make sure the tutorial and all the docs are actually packaged and in the final RPMs * parser.c parserInternals.c include/libxml/parser.h: restore xmllint --recover feature. Daniel
This commit is contained in:
parent
68e9e74af8
commit
dad3f680e5
@ -1,3 +1,12 @@
|
||||
Sun Nov 17 10:25:43 CET 2002 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* configure.in: preparing release 2.4.27
|
||||
* doc/* : updated and rebuilt the docs
|
||||
* doc/Makefile.am libxml.spec.in: try to make sure the tutorial
|
||||
and all the docs are actually packaged and in the final RPMs
|
||||
* parser.c parserInternals.c include/libxml/parser.h: restore
|
||||
xmllint --recover feature.
|
||||
|
||||
Sat Nov 16 16:30:25 CET 2002 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* parser.c xpath.c: fixing #96925 wich was also dependant on the
|
||||
|
46
DOCBparser.c
46
DOCBparser.c
@ -312,7 +312,7 @@ docbCurrentChar(xmlParserCtxtPtr ctxt, int *len) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"Char 0x%X out of allowed range\n", val);
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
return(val);
|
||||
} else {
|
||||
@ -2520,14 +2520,14 @@ docbParseCtxtExternalEntity(xmlParserCtxtPtr ctx, const xmlChar *URL,
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"chunk is not well balanced\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
} else if (RAW != 0) {
|
||||
ctxt->errNo = XML_ERR_EXTRA_CONTENT;
|
||||
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"extra content at the end of well balanced chunk\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
if (ctxt->node != newDoc->children) {
|
||||
ctxt->errNo = XML_ERR_NOT_WELL_BALANCED;
|
||||
@ -2535,7 +2535,7 @@ docbParseCtxtExternalEntity(xmlParserCtxtPtr ctx, const xmlChar *URL,
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"chunk is not well balanced\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
|
||||
if (!ctxt->wellFormed) {
|
||||
@ -3161,7 +3161,7 @@ docbParsePI(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"PI declaration doesn't start and stop in the same entity\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
SKIP(2);
|
||||
|
||||
@ -3210,7 +3210,7 @@ docbParsePI(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"docbParsePI: PI %s space expected\n", target);
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
SKIP_BLANKS;
|
||||
}
|
||||
@ -3248,7 +3248,7 @@ docbParsePI(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"docbParsePI: PI %s never end ...\n", target);
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
} else {
|
||||
if (input != ctxt->input) {
|
||||
ctxt->errNo = XML_ERR_ENTITY_BOUNDARY;
|
||||
@ -3256,7 +3256,7 @@ docbParsePI(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"PI declaration doesn't start and stop in the same entity\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
SKIP(2);
|
||||
|
||||
@ -3276,7 +3276,7 @@ docbParsePI(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"docbParsePI : no target name\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
ctxt->instate = state;
|
||||
}
|
||||
@ -3616,7 +3616,7 @@ docbCheckEncoding(docbParserCtxtPtr ctxt, const xmlChar *attvalue) {
|
||||
"Unsupported encoding %s\n", encoding);
|
||||
/* xmlFree(encoding); */
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
ctxt->errNo = XML_ERR_UNSUPPORTED_ENCODING;
|
||||
}
|
||||
}
|
||||
@ -4392,7 +4392,7 @@ docbParseEntityDecl(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"Space required after '<!ENTITY'\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
SKIP_BLANKS;
|
||||
|
||||
@ -4404,7 +4404,7 @@ docbParseEntityDecl(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"Space required after '%'\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
SKIP_BLANKS;
|
||||
isParameter = 1;
|
||||
@ -4416,7 +4416,7 @@ docbParseEntityDecl(xmlParserCtxtPtr ctxt) {
|
||||
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
|
||||
ctxt->sax->error(ctxt->userData, "sgmlarseEntityDecl: no name\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
return;
|
||||
}
|
||||
if (!IS_BLANK(CUR)) {
|
||||
@ -4425,7 +4425,7 @@ docbParseEntityDecl(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"Space required after the entity name\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
SKIP_BLANKS;
|
||||
|
||||
@ -4450,7 +4450,7 @@ docbParseEntityDecl(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"Entity value required\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
if (URI) {
|
||||
xmlURIPtr uri;
|
||||
@ -4501,7 +4501,7 @@ docbParseEntityDecl(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"Entity value required\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
if (URI) {
|
||||
xmlURIPtr uri;
|
||||
@ -4534,7 +4534,7 @@ docbParseEntityDecl(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"Space required before content model\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
SKIP_BLANKS;
|
||||
|
||||
@ -4552,7 +4552,7 @@ docbParseEntityDecl(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"Could not parse entity content model\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
} else {
|
||||
if (xmlStrEqual(contmod, BAD_CAST"NDATA")) {
|
||||
if (!IS_BLANK(CUR)) {
|
||||
@ -4562,7 +4562,7 @@ docbParseEntityDecl(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"Space required after 'NDATA'\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
SKIP_BLANKS;
|
||||
ndata = xmlParseName(ctxt);
|
||||
@ -4614,7 +4614,7 @@ docbParseEntityDecl(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"docbParseEntityDecl: entity %s not terminated\n", name);
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
} else {
|
||||
if (input != ctxt->input) {
|
||||
ctxt->errNo = XML_ERR_ENTITY_BOUNDARY;
|
||||
@ -4622,7 +4622,7 @@ docbParseEntityDecl(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"Entity declaration doesn't start and stop in the same entity\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
NEXT;
|
||||
}
|
||||
@ -4726,7 +4726,7 @@ docbParseInternalSubset(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"docbParseInternalSubset: error detected in Markup declaration\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -4744,7 +4744,7 @@ docbParseInternalSubset(xmlParserCtxtPtr ctxt) {
|
||||
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
|
||||
ctxt->sax->error(ctxt->userData, "DOCTYPE improperly terminated\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
NEXT;
|
||||
}
|
||||
|
@ -259,7 +259,7 @@ htmlCurrentChar(xmlParserCtxtPtr ctxt, int *len) {
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"Char 0x%X out of allowed range\n", val);
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
return(val);
|
||||
} else {
|
||||
|
@ -6,7 +6,7 @@ AC_CANONICAL_HOST
|
||||
|
||||
LIBXML_MAJOR_VERSION=2
|
||||
LIBXML_MINOR_VERSION=4
|
||||
LIBXML_MICRO_VERSION=26
|
||||
LIBXML_MICRO_VERSION=27
|
||||
LIBXML_VERSION=$LIBXML_MAJOR_VERSION.$LIBXML_MINOR_VERSION.$LIBXML_MICRO_VERSION
|
||||
LIBXML_VERSION_INFO=`expr $LIBXML_MAJOR_VERSION + $LIBXML_MINOR_VERSION`:$LIBXML_MICRO_VERSION:$LIBXML_MINOR_VERSION
|
||||
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -274,10 +279,12 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEATTRIBUTEDECL">xmlValidateAttributeDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
</dd>
|
||||
<dt>Attributes</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-xpointer.html#XMLXPTRBUILDNODELIST">xmlXPtrBuildNodeList</a>
|
||||
</dd>
|
||||
<dt>Automatic</dt>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -206,6 +211,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-parserinternals.html#XMLHANDLEENTITY">xmlHandleEntity</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEATTRIBUTEDECL">xmlValidateAttributeDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
</dd>
|
||||
<dt>Deletes</dt>
|
||||
<dd>
|
||||
@ -484,6 +490,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-tree.html#XMLNODEGETBASE">xmlNodeGetBase</a>
|
||||
<a href="html/libxml-tree.html#XMLNODEGETCONTENT">xmlNodeGetContent</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
</dd>
|
||||
<dt>EntityValue</dt>
|
||||
<dd>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -248,6 +253,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</dd>
|
||||
<dt>files</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-catalog.html#XMLLOADCATALOGS">xmlLoadCatalogs</a>
|
||||
<a href="html/libxml-nanoftp.html#XMLNANOFTPLIST">xmlNanoFTPList</a>
|
||||
</dd>
|
||||
<dt>filled</dt>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -373,7 +378,6 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</dd>
|
||||
<dt>heuristic:</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-valid.html#XMLISID">xmlIsID</a>
|
||||
<a href="html/libxml-valid.html#XMLISREF">xmlIsRef</a>
|
||||
</dd>
|
||||
<dt>hex</dt>
|
||||
@ -913,6 +917,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONDECL">xmlValidateNotationDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEROOT">xmlValidateRoot</a>
|
||||
</dd>
|
||||
<dt>instances</dt>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -469,6 +474,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<dd>
|
||||
<a href="html/libxml-sax.html#RESOLVEENTITY">resolveEntity</a>
|
||||
<a href="html/libxml-parser.html#RESOLVEENTITYSAXFUNC">resolveEntitySAXFunc</a>
|
||||
<a href="html/libxml-valid.html#XMLISID">xmlIsID</a>
|
||||
<a href="html/libxml-debugxml.html#XMLSHELLLOAD">xmlShellLoad</a>
|
||||
</dd>
|
||||
<dt>loads</dt>
|
||||
@ -569,7 +575,6 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<dt>lowercase</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-htmlparser.html#HTMLTAGLOOKUP">htmlTagLookup</a>
|
||||
<a href="html/libxml-valid.html#XMLISID">xmlIsID</a>
|
||||
<a href="html/libxml-valid.html#XMLISREF">xmlIsRef</a>
|
||||
</dd>
|
||||
<dt>luckily</dt>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -217,10 +222,10 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</dd>
|
||||
<dt>path</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-xmlio.html#XMLCHECKFILENAME">xmlCheckFilename</a>
|
||||
<a href="html/libxml-tree.html#XMLGETNODEPATH">xmlGetNodePath</a>
|
||||
<a href="html/libxml-catalog.html#XMLLOADACATALOG">xmlLoadACatalog</a>
|
||||
<a href="html/libxml-catalog.html#XMLLOADCATALOG">xmlLoadCatalog</a>
|
||||
<a href="html/libxml-catalog.html#XMLLOADCATALOGS">xmlLoadCatalogs</a>
|
||||
<a href="html/libxml-catalog.html#XMLLOADSGMLSUPERCATALOG">xmlLoadSGMLSuperCatalog</a>
|
||||
<a href="html/libxml-nanoftp.html#XMLNANOFTPGETSOCKET">xmlNanoFTPGetSocket</a>
|
||||
<a href="html/libxml-nanoftp.html#XMLNANOFTPUPDATEURL">xmlNanoFTPUpdateURL</a>
|
||||
@ -624,6 +629,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-parser.html#XMLSTOPPARSER">xmlStopParser</a>
|
||||
<a href="html/libxml-uri.html#XMLURI">xmlURI</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-xinclude.html#XMLXINCLUDEPROCESS">xmlXIncludeProcess</a>
|
||||
</dd>
|
||||
<dt>processor</dt>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -274,6 +279,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONDECL">xmlValidateNotationDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEROOT">xmlValidateRoot</a>
|
||||
</dd>
|
||||
<dt>recomputed</dt>
|
||||
@ -605,6 +611,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<dt>requested</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-parser.html#XMLEXTERNALENTITYLOADER">xmlExternalEntityLoader</a>
|
||||
<a href="html/libxml-valid.html#XMLISID">xmlIsID</a>
|
||||
<a href="html/libxml-xmlmemory.html#XMLMALLOCFUNC">xmlMallocFunc</a>
|
||||
<a href="html/libxml-xmlmemory.html#XMLREALLOCFUNC">xmlReallocFunc</a>
|
||||
</dd>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -283,6 +288,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-c14n.html#XMLC14NDOCSAVE">xmlC14NDocSave</a>
|
||||
<a href="html/libxml-c14n.html#XMLC14NDOCSAVETO">xmlC14NDocSaveTo</a>
|
||||
<a href="html/libxml-c14n.html#XMLC14NEXECUTE">xmlC14NExecute</a>
|
||||
<a href="html/libxml-xmlio.html#XMLCHECKFILENAME">xmlCheckFilename</a>
|
||||
<a href="html/libxml-parserinternals.html#XMLISBASECHAR">xmlIsBaseChar</a>
|
||||
<a href="html/libxml-parserinternals.html#XMLISCOMBINING">xmlIsCombining</a>
|
||||
<a href="html/libxml-parserinternals.html#XMLISDIGIT">xmlIsDigit</a>
|
||||
@ -310,7 +316,6 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</dd>
|
||||
<dt>separated</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-catalog.html#XMLLOADCATALOGS">xmlLoadCatalogs</a>
|
||||
<a href="html/libxml-uri.html#XMLURI">xmlURI</a>
|
||||
</dd>
|
||||
<dt>sequence</dt>
|
||||
@ -502,7 +507,6 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<dd>
|
||||
<a href="html/libxml-threads.html#XMLFREEMUTEX">xmlFreeMutex</a>
|
||||
<a href="html/libxml-hash.html#XMLHASHSCANNER">xmlHashScanner</a>
|
||||
<a href="html/libxml-valid.html#XMLISID">xmlIsID</a>
|
||||
<a href="html/libxml-valid.html#XMLISREF">xmlIsRef</a>
|
||||
<a href="html/libxml-threads.html#XMLMUTEXLOCK">xmlMutexLock</a>
|
||||
<a href="html/libxml-threads.html#XMLMUTEXUNLOCK">xmlMutexUnlock</a>
|
||||
@ -525,6 +529,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONDECL">xmlValidateNotationDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-xpathinternals.html#XMLXPATHNEWNODESET">xmlXPathNewNodeSet</a>
|
||||
<a href="html/libxml-xpathinternals.html#XMLXPATHNORMALIZEFUNCTION">xmlXPathNormalizeFunction</a>
|
||||
<a href="html/libxml-xpointer.html#XMLXPTRNEWCOLLAPSEDRANGE">xmlXPtrNewCollapsedRange</a>
|
||||
@ -555,6 +560,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</dd>
|
||||
<dt>socket</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-xmlio.html#XMLCHECKFILENAME">xmlCheckFilename</a>
|
||||
<a href="html/libxml-nanoftp.html#XMLNANOFTPGETSOCKET">xmlNanoFTPGetSocket</a>
|
||||
</dd>
|
||||
<dt>software</dt>
|
||||
@ -590,6 +596,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<dt>source</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-htmltree.html#HTMLGETMETAENCODING">htmlGetMetaEncoding</a>
|
||||
<a href="html/libxml-xmlio.html#XMLCHECKFILENAME">xmlCheckFilename</a>
|
||||
</dd>
|
||||
<dt>sourceforge</dt>
|
||||
<dd>
|
||||
@ -606,6 +613,10 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-parserinternals.html#XMLSKIPBLANKCHARS">xmlSkipBlankChars</a>
|
||||
<a href="html/libxml-xpathinternals.html#XMLXPATHNORMALIZEFUNCTION">xmlXPathNormalizeFunction</a>
|
||||
</dd>
|
||||
<dt>space-separated</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-catalog.html#XMLLOADCATALOGS">xmlLoadCatalogs</a>
|
||||
</dd>
|
||||
<dt>spaces</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-htmltree.html#HTMLDOCCONTENTDUMPFORMATOUTPUT">htmlDocContentDumpFormatOutput</a>
|
||||
@ -618,7 +629,6 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-tree.html#XMLDOCDUMPFORMATMEMORYENC">xmlDocDumpFormatMemoryEnc</a>
|
||||
<a href="html/libxml-tree.html#XMLDOCFORMATDUMP">xmlDocFormatDump</a>
|
||||
<a href="html/libxml-parser.html#XMLKEEPBLANKSDEFAULT">xmlKeepBlanksDefault</a>
|
||||
<a href="html/libxml-catalog.html#XMLLOADCATALOGS">xmlLoadCatalogs</a>
|
||||
<a href="html/libxml-parserinternals.html#XMLPARSEELEMENTCHILDRENCONTENTDECL">xmlParseElementChildrenContentDecl</a>
|
||||
<a href="html/libxml-parserinternals.html#XMLPARSEELEMENTMIXEDCONTENTDECL">xmlParseElementMixedContentDecl</a>
|
||||
<a href="html/libxml-tree.html#XMLSAVEFORMATFILE">xmlSaveFormatFile</a>
|
||||
@ -785,8 +795,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-xmlio.html#XMLOUTPUTBUFFERCREATEFILENAME">xmlOutputBufferCreateFilename</a>
|
||||
<a href="html/libxml-tree.html#XMLSAVEFILE">xmlSaveFile</a>
|
||||
<a href="html/libxml-tree.html#XMLSAVEFORMATFILE">xmlSaveFormatFile</a>
|
||||
<a href="html/libxml-debugxml.html#XMLSHELLPRINTNODE">xmlShellPrintNode</a>
|
||||
<a href="html/libxml-debugxml.html#XMLSHELLPRINTXPATHRESULT">xmlShellPrintXPathResult</a>
|
||||
<a href="html/libxml-debugxml.html#XMLSHELL">xmlShell</a>
|
||||
</dd>
|
||||
<dt>steam</dt>
|
||||
<dd>
|
||||
@ -1196,6 +1205,10 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<dd>
|
||||
<a href="html/libxml-threads.html#XMLMUTEXPTR">xmlMutexPtr</a>
|
||||
</dd>
|
||||
<dt>systematically</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-valid.html#XMLISID">xmlIsID</a>
|
||||
</dd>
|
||||
</dl>
|
||||
<h2 align="center">
|
||||
<a href="APIchunk0.html">A-C</a>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -176,6 +181,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<dt>Fixed</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
</dd>
|
||||
<dt>Float</dt>
|
||||
<dd>
|
||||
@ -427,6 +433,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<dd>
|
||||
<a href="html/libxml-tree.html#XMLREF">xmlRef</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
</dd>
|
||||
<dt>IDs</dt>
|
||||
<dd>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -267,7 +272,6 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</dd>
|
||||
<dt>upper</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-valid.html#XMLISID">xmlIsID</a>
|
||||
<a href="html/libxml-valid.html#XMLISREF">xmlIsRef</a>
|
||||
</dd>
|
||||
<dt>uri</dt>
|
||||
@ -365,6 +369,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONDECL">xmlValidateNotationDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEROOT">xmlValidateRoot</a>
|
||||
</dd>
|
||||
<dt>validates</dt>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -333,6 +338,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-tree.html#XMLNEWGLOBALNS">xmlNewGlobalNs</a>
|
||||
<a href="html/libxml-parserinternals.html#XMLSCANNAME">xmlScanName</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
</dd>
|
||||
<dt>won</dt>
|
||||
<dd>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -384,6 +389,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-parserinternals.html#XMLSCANNAME">xmlScanName</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENAMEVALUE">xmlValidateNameValue</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
</dd>
|
||||
<dt>Names</dt>
|
||||
<dd>
|
||||
@ -472,6 +478,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-parserinternals.html#XMLPARSENOTATIONTYPE">xmlParseNotationType</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONUSE">xmlValidateNotationUse</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
</dd>
|
||||
<dt>Note</dt>
|
||||
<dd>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -202,6 +207,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<dt>Token</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
</dd>
|
||||
<dt>Traversal</dt>
|
||||
<dd>
|
||||
@ -250,6 +256,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONDECL">xmlValidateNotationDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEROOT">xmlValidateRoot</a>
|
||||
</dd>
|
||||
<dt>Type</dt>
|
||||
@ -257,6 +264,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-schemasinternals.html#XMLSCHEMAFREETYPE">xmlSchemaFreeType</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEELEMENTDECL">xmlValidateElementDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEROOT">xmlValidateRoot</a>
|
||||
</dd>
|
||||
<dt>Types</dt>
|
||||
@ -389,6 +397,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONUSE">xmlValidateNotationUse</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEROOT">xmlValidateRoot</a>
|
||||
</dd>
|
||||
<dt>VMS</dt>
|
||||
@ -416,6 +425,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<dt>Value</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-xpathinternals.html#XMLXPATHNEWVALUETREE">xmlXPathNewValueTree</a>
|
||||
</dd>
|
||||
<dt>Values</dt>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -128,6 +133,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONDECL">xmlValidateNotationDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEROOT">xmlValidateRoot</a>
|
||||
</dd>
|
||||
<dt>XMLSchema</dt>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -173,6 +178,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONDECL">xmlValidateNotationDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEROOT">xmlValidateRoot</a>
|
||||
</dd>
|
||||
<dt>basis</dt>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -427,6 +432,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-xmlversion.html#LIBXML-TEST-VERSION-CAPS">LIBXML_TEST_VERSION</a>
|
||||
<a href="html/libxml-sax.html#CHECKNAMESPACE">checkNamespace</a>
|
||||
<a href="html/libxml-htmltree.html#HTMLISBOOLEANATTR">htmlIsBooleanAttr</a>
|
||||
<a href="html/libxml-xmlio.html#XMLCHECKFILENAME">xmlCheckFilename</a>
|
||||
<a href="html/libxml-encoding.html#XMLCHECKUTF8">xmlCheckUTF8</a>
|
||||
<a href="html/libxml-xmlversion.html#XMLCHECKVERSION">xmlCheckVersion</a>
|
||||
<a href="html/libxml-xmlio.html#XMLIOFTPMATCH">xmlIOFTPMatch</a>
|
||||
@ -455,6 +461,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<dd>
|
||||
<a href="html/libxml-htmlparser.html#HTMLAUTOCLOSETAG">htmlAutoCloseTag</a>
|
||||
<a href="html/libxml-htmlparser.html#HTMLISAUTOCLOSED">htmlIsAutoClosed</a>
|
||||
<a href="html/libxml-xmlio.html#XMLCHECKFILENAME">xmlCheckFilename</a>
|
||||
<a href="html/libxml-encoding.html#XMLCHECKUTF8">xmlCheckUTF8</a>
|
||||
<a href="html/libxml-nanoftp.html#XMLNANOFTPINIT">xmlNanoFTPInit</a>
|
||||
<a href="html/libxml-nanohttp.html#XMLNANOHTTPINIT">xmlNanoHTTPInit</a>
|
||||
@ -466,6 +473,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONDECL">xmlValidateNotationDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-xpathinternals.html#XMLXPATHNODESETCONTAINS">xmlXPathNodeSetContains</a>
|
||||
</dd>
|
||||
<dt>children</dt>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -238,6 +243,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</dd>
|
||||
<dt>defaults</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-debugxml.html#XMLSHELL">xmlShell</a>
|
||||
<a href="html/libxml-xpathinternals.html#XMLXPATHLOCALNAMEFUNCTION">xmlXPathLocalNameFunction</a>
|
||||
<a href="html/libxml-xpathinternals.html#XMLXPATHNAMESPACEURIFUNCTION">xmlXPathNamespaceURIFunction</a>
|
||||
<a href="html/libxml-xpathinternals.html#XMLXPATHNORMALIZEFUNCTION">xmlXPathNormalizeFunction</a>
|
||||
@ -367,6 +373,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONDECL">xmlValidateNotationDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEROOT">xmlValidateRoot</a>
|
||||
</dd>
|
||||
<dt>describing</dt>
|
||||
@ -470,6 +477,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-docbparser.html#DOCBCREATEPUSHPARSERCTXT">docbCreatePushParserCtxt</a>
|
||||
<a href="html/libxml-htmlparser.html#HTMLCREATEPUSHPARSERCTXT">htmlCreatePushParserCtxt</a>
|
||||
<a href="html/libxml-parser.html#XMLCREATEPUSHPARSERCTXT">xmlCreatePushParserCtxt</a>
|
||||
<a href="html/libxml-valid.html#XMLISID">xmlIsID</a>
|
||||
<a href="html/libxml-parser.html#XMLPARSEBALANCEDCHUNKMEMORY">xmlParseBalancedChunkMemory</a>
|
||||
<a href="html/libxml-parser.html#XMLPARSEBALANCEDCHUNKMEMORYRECOVER">xmlParseBalancedChunkMemoryRecover</a>
|
||||
<a href="html/libxml-parser.html#XMLPARSEEXTERNALENTITY">xmlParseExternalEntity</a>
|
||||
@ -606,6 +614,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</dd>
|
||||
<dt>documents</dt>
|
||||
<dd>
|
||||
<a href="html/libxml-valid.html#XMLISID">xmlIsID</a>
|
||||
<a href="html/libxml-parser.html#XMLSAXPARSEDOC">xmlSAXParseDoc</a>
|
||||
<a href="html/libxml-parser.html#XMLSAXPARSEFILE">xmlSAXParseFile</a>
|
||||
<a href="html/libxml-parser.html#XMLSAXPARSEFILEWITHDATA">xmlSAXParseFileWithData</a>
|
||||
@ -625,6 +634,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONDECL">xmlValidateNotationDecl</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEROOT">xmlValidateRoot</a>
|
||||
<a href="html/libxml-xpathinternals.html#XMLXPATHSUBSTRINGAFTERFUNCTION">xmlXPathSubstringAfterFunction</a>
|
||||
<a href="html/libxml-xpathinternals.html#XMLXPATHSUBSTRINGBEFOREFUNCTION">xmlXPathSubstringBeforeFunction</a>
|
||||
@ -661,6 +671,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-entities.html#XMLENCODESPECIALCHARS">xmlEncodeSpecialChars</a>
|
||||
<a href="html/libxml-entities.html#XMLGETDOCENTITY">xmlGetDocEntity</a>
|
||||
<a href="html/libxml-catalog.html#XMLINITIALIZECATALOG">xmlInitializeCatalog</a>
|
||||
<a href="html/libxml-valid.html#XMLISID">xmlIsID</a>
|
||||
<a href="html/libxml-parser.html#XMLKEEPBLANKSDEFAULT">xmlKeepBlanksDefault</a>
|
||||
<a href="html/libxml-catalog.html#XMLLOADCATALOG">xmlLoadCatalog</a>
|
||||
<a href="html/libxml-catalog.html#XMLLOADCATALOGS">xmlLoadCatalogs</a>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -1077,7 +1082,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEELEMENT">xmlValidateElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEDOCUMENTFINAL">xmlValidateDocumentFinal</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONUSE">xmlValidateNotationUse</a>
|
||||
<a href="html/libxml-valid.html#XMLISMIXEDELEMENT">xmlIsMixedElement</a>
|
||||
@ -1095,6 +1100,46 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDBUILDCONTENTMODEL">xmlValidBuildContentModel</a>
|
||||
</p>
|
||||
<h2>
|
||||
<a name="wsockcompat">Module wsockcompat</a>:</h2>
|
||||
<p>
|
||||
<a href="html/libxml-wsockcompat.html#SOCKLEN-T-CAPS">SOCKLEN_T</a>
|
||||
<a href="html/libxml-wsockcompat.html#EWOULDBLOCK-CAPS">EWOULDBLOCK</a>
|
||||
<a href="html/libxml-wsockcompat.html#EINPROGRESS-CAPS">EINPROGRESS</a>
|
||||
<a href="html/libxml-wsockcompat.html#EALREADY-CAPS">EALREADY</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENOTSOCK-CAPS">ENOTSOCK</a>
|
||||
<a href="html/libxml-wsockcompat.html#EDESTADDRREQ-CAPS">EDESTADDRREQ</a>
|
||||
<a href="html/libxml-wsockcompat.html#EMSGSIZE-CAPS">EMSGSIZE</a>
|
||||
<a href="html/libxml-wsockcompat.html#EPROTOTYPE-CAPS">EPROTOTYPE</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENOPROTOOPT-CAPS">ENOPROTOOPT</a>
|
||||
<a href="html/libxml-wsockcompat.html#EPROTONOSUPPORT-CAPS">EPROTONOSUPPORT</a>
|
||||
<a href="html/libxml-wsockcompat.html#ESOCKTNOSUPPORT-CAPS">ESOCKTNOSUPPORT</a>
|
||||
<a href="html/libxml-wsockcompat.html#EOPNOTSUPP-CAPS">EOPNOTSUPP</a>
|
||||
<a href="html/libxml-wsockcompat.html#EPFNOSUPPORT-CAPS">EPFNOSUPPORT</a>
|
||||
<a href="html/libxml-wsockcompat.html#EAFNOSUPPORT-CAPS">EAFNOSUPPORT</a>
|
||||
<a href="html/libxml-wsockcompat.html#EADDRINUSE-CAPS">EADDRINUSE</a>
|
||||
<a href="html/libxml-wsockcompat.html#EADDRNOTAVAIL-CAPS">EADDRNOTAVAIL</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENETDOWN-CAPS">ENETDOWN</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENETUNREACH-CAPS">ENETUNREACH</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENETRESET-CAPS">ENETRESET</a>
|
||||
<a href="html/libxml-wsockcompat.html#ECONNABORTED-CAPS">ECONNABORTED</a>
|
||||
<a href="html/libxml-wsockcompat.html#ECONNRESET-CAPS">ECONNRESET</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENOBUFS-CAPS">ENOBUFS</a>
|
||||
<a href="html/libxml-wsockcompat.html#EISCONN-CAPS">EISCONN</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENOTCONN-CAPS">ENOTCONN</a>
|
||||
<a href="html/libxml-wsockcompat.html#ESHUTDOWN-CAPS">ESHUTDOWN</a>
|
||||
<a href="html/libxml-wsockcompat.html#ETOOMANYREFS-CAPS">ETOOMANYREFS</a>
|
||||
<a href="html/libxml-wsockcompat.html#ETIMEDOUT-CAPS">ETIMEDOUT</a>
|
||||
<a href="html/libxml-wsockcompat.html#ECONNREFUSED-CAPS">ECONNREFUSED</a>
|
||||
<a href="html/libxml-wsockcompat.html#ELOOP-CAPS">ELOOP</a>
|
||||
<a href="html/libxml-wsockcompat.html#EHOSTDOWN-CAPS">EHOSTDOWN</a>
|
||||
<a href="html/libxml-wsockcompat.html#EHOSTUNREACH-CAPS">EHOSTUNREACH</a>
|
||||
<a href="html/libxml-wsockcompat.html#EPROCLIM-CAPS">EPROCLIM</a>
|
||||
<a href="html/libxml-wsockcompat.html#EUSERS-CAPS">EUSERS</a>
|
||||
<a href="html/libxml-wsockcompat.html#EDQUOT-CAPS">EDQUOT</a>
|
||||
<a href="html/libxml-wsockcompat.html#ESTALE-CAPS">ESTALE</a>
|
||||
<a href="html/libxml-wsockcompat.html#EREMOTE-CAPS">EREMOTE</a>
|
||||
</p>
|
||||
<h2>
|
||||
<a name="xinclude">Module xinclude</a>:</h2>
|
||||
<p>
|
||||
<a href="html/libxml-xinclude.html#XMLXINCLUDEPROCESS">xmlXIncludeProcess</a>
|
||||
@ -1143,6 +1188,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-xmlio.html#XMLREGISTERHTTPPOSTCALLBACKS">xmlRegisterHTTPPostCallbacks</a>
|
||||
<a href="html/libxml-xmlio.html#XMLNONETEXTERNALENTITYLOADER">xmlNoNetExternalEntityLoader</a>
|
||||
<a href="html/libxml-xmlio.html#XMLNORMALIZEWINDOWSPATH">xmlNormalizeWindowsPath</a>
|
||||
<a href="html/libxml-xmlio.html#XMLCHECKFILENAME">xmlCheckFilename</a>
|
||||
<a href="html/libxml-xmlio.html#XMLFILEMATCH">xmlFileMatch</a>
|
||||
<a href="html/libxml-xmlio.html#XMLFILEOPEN">xmlFileOpen</a>
|
||||
<a href="html/libxml-xmlio.html#XMLFILEREAD">xmlFileRead</a>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -443,8 +448,8 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDCTXTNORMALIZEATTRIBUTEVALUE">xmlValidCtxtNormalizeAttributeValue</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEATTRIBUTEVALUE">xmlValidateAttributeValue</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="">xmlValidateOneNamespace</a>
|
||||
<a href="">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONUSE">xmlValidateNotationUse</a>
|
||||
<a href="html/libxml-valid.html#XMLISMIXEDELEMENT">xmlIsMixedElement</a>
|
||||
<a href="html/libxml-valid.html#XMLGETDTDATTRDESC">xmlGetDtdAttrDesc</a>
|
||||
@ -1198,7 +1203,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEELEMENT">xmlValidateElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEDOCUMENTFINAL">xmlValidateDocumentFinal</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONUSE">xmlValidateNotationUse</a>
|
||||
<a href="html/libxml-valid.html#XMLISMIXEDELEMENT">xmlIsMixedElement</a>
|
||||
@ -1569,7 +1574,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEELEMENT">xmlValidateElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-xpath.html#XMLXPATHNODESETCREATE">xmlXPathNodeSetCreate</a>
|
||||
<a href="html/libxml-xpath.html#XMLXPATHCMPNODES">xmlXPathCmpNodes</a>
|
||||
<a href="html/libxml-xpath.html#XMLXPATHCMPNODES">xmlXPathCmpNodes</a>
|
||||
@ -1692,7 +1697,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-tree.html#XMLCOPYNAMESPACELIST">xmlCopyNamespaceList</a>
|
||||
<a href="html/libxml-tree.html#XMLSETNSPROP">xmlSetNsProp</a>
|
||||
<a href="html/libxml-tree.html#XMLUNSETNSPROP">xmlUnsetNsProp</a>
|
||||
<a href="">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-xpathinternals.html#XMLXPATHNODESETADDNS">xmlXPathNodeSetAddNs</a>
|
||||
<a href="html/libxml-xpathinternals.html#XMLXPATHNODESETFREENS">xmlXPathNodeSetFreeNs</a>
|
||||
</p>
|
||||
@ -1969,7 +1974,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEELEMENT">xmlValidateElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEDOCUMENTFINAL">xmlValidateDocumentFinal</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONUSE">xmlValidateNotationUse</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDBUILDCONTENTMODEL">xmlValidBuildContentModel</a>
|
||||
|
@ -63,13 +63,18 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
</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>
|
||||
<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="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>
|
||||
</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>
|
||||
@ -113,6 +118,44 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-xmlmemory.html#DEBUG-MEMORY-CAPS">DEBUG_MEMORY</a>
|
||||
<a href="html/libxml-xmlversion.html#DEBUG-MEMORY-LOCATION-CAPS">DEBUG_MEMORY_LOCATION</a>
|
||||
</p>
|
||||
<h2>Letter E:</h2>
|
||||
<p>
|
||||
<a href="html/libxml-wsockcompat.html#EADDRINUSE-CAPS">EADDRINUSE</a>
|
||||
<a href="html/libxml-wsockcompat.html#EADDRNOTAVAIL-CAPS">EADDRNOTAVAIL</a>
|
||||
<a href="html/libxml-wsockcompat.html#EAFNOSUPPORT-CAPS">EAFNOSUPPORT</a>
|
||||
<a href="html/libxml-wsockcompat.html#EALREADY-CAPS">EALREADY</a>
|
||||
<a href="html/libxml-wsockcompat.html#ECONNABORTED-CAPS">ECONNABORTED</a>
|
||||
<a href="html/libxml-wsockcompat.html#ECONNREFUSED-CAPS">ECONNREFUSED</a>
|
||||
<a href="html/libxml-wsockcompat.html#ECONNRESET-CAPS">ECONNRESET</a>
|
||||
<a href="html/libxml-wsockcompat.html#EDESTADDRREQ-CAPS">EDESTADDRREQ</a>
|
||||
<a href="html/libxml-wsockcompat.html#EDQUOT-CAPS">EDQUOT</a>
|
||||
<a href="html/libxml-wsockcompat.html#EHOSTDOWN-CAPS">EHOSTDOWN</a>
|
||||
<a href="html/libxml-wsockcompat.html#EHOSTUNREACH-CAPS">EHOSTUNREACH</a>
|
||||
<a href="html/libxml-wsockcompat.html#EINPROGRESS-CAPS">EINPROGRESS</a>
|
||||
<a href="html/libxml-wsockcompat.html#EISCONN-CAPS">EISCONN</a>
|
||||
<a href="html/libxml-wsockcompat.html#ELOOP-CAPS">ELOOP</a>
|
||||
<a href="html/libxml-wsockcompat.html#EMSGSIZE-CAPS">EMSGSIZE</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENETDOWN-CAPS">ENETDOWN</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENETRESET-CAPS">ENETRESET</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENETUNREACH-CAPS">ENETUNREACH</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENOBUFS-CAPS">ENOBUFS</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENOPROTOOPT-CAPS">ENOPROTOOPT</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENOTCONN-CAPS">ENOTCONN</a>
|
||||
<a href="html/libxml-wsockcompat.html#ENOTSOCK-CAPS">ENOTSOCK</a>
|
||||
<a href="html/libxml-wsockcompat.html#EOPNOTSUPP-CAPS">EOPNOTSUPP</a>
|
||||
<a href="html/libxml-wsockcompat.html#EPFNOSUPPORT-CAPS">EPFNOSUPPORT</a>
|
||||
<a href="html/libxml-wsockcompat.html#EPROCLIM-CAPS">EPROCLIM</a>
|
||||
<a href="html/libxml-wsockcompat.html#EPROTONOSUPPORT-CAPS">EPROTONOSUPPORT</a>
|
||||
<a href="html/libxml-wsockcompat.html#EPROTOTYPE-CAPS">EPROTOTYPE</a>
|
||||
<a href="html/libxml-wsockcompat.html#EREMOTE-CAPS">EREMOTE</a>
|
||||
<a href="html/libxml-wsockcompat.html#ESHUTDOWN-CAPS">ESHUTDOWN</a>
|
||||
<a href="html/libxml-wsockcompat.html#ESOCKTNOSUPPORT-CAPS">ESOCKTNOSUPPORT</a>
|
||||
<a href="html/libxml-wsockcompat.html#ESTALE-CAPS">ESTALE</a>
|
||||
<a href="html/libxml-wsockcompat.html#ETIMEDOUT-CAPS">ETIMEDOUT</a>
|
||||
<a href="html/libxml-wsockcompat.html#ETOOMANYREFS-CAPS">ETOOMANYREFS</a>
|
||||
<a href="html/libxml-wsockcompat.html#EUSERS-CAPS">EUSERS</a>
|
||||
<a href="html/libxml-wsockcompat.html#EWOULDBLOCK-CAPS">EWOULDBLOCK</a>
|
||||
</p>
|
||||
<h2>Letter H:</h2>
|
||||
<p>
|
||||
<a href="html/libxml-htmltree.html#HTML-COMMENT-NODE-CAPS">HTML_COMMENT_NODE</a>
|
||||
@ -180,6 +223,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<h2>Letter S:</h2>
|
||||
<p>
|
||||
<a href="html/libxml-parserinternals.html#SKIP-EOL-CAPS">SKIP_EOL</a>
|
||||
<a href="html/libxml-wsockcompat.html#SOCKLEN-T-CAPS">SOCKLEN_T</a>
|
||||
</p>
|
||||
<h2>Letter U:</h2>
|
||||
<p>
|
||||
@ -563,6 +607,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-encoding.html#XMLCHARENCODINGOUTPUTFUNC">xmlCharEncodingOutputFunc</a>
|
||||
<a href="html/libxml-parser.html#XMLCHARSTRDUP">xmlCharStrdup</a>
|
||||
<a href="html/libxml-parser.html#XMLCHARSTRNDUP">xmlCharStrndup</a>
|
||||
<a href="html/libxml-xmlio.html#XMLCHECKFILENAME">xmlCheckFilename</a>
|
||||
<a href="html/libxml-parserinternals.html#XMLCHECKLANGUAGEID">xmlCheckLanguageID</a>
|
||||
<a href="html/libxml-encoding.html#XMLCHECKUTF8">xmlCheckUTF8</a>
|
||||
<a href="html/libxml-xmlversion.html#XMLCHECKVERSION">xmlCheckVersion</a>
|
||||
@ -1433,6 +1478,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<a href="html/libxml-valid.html#XMLVALIDATENOTATIONUSE">xmlValidateNotationUse</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEATTRIBUTE">xmlValidateOneAttribute</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONEELEMENT">xmlValidateOneElement</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEONENAMESPACE">xmlValidateOneNamespace</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDATEROOT">xmlValidateRoot</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDITYERRORFUNC">xmlValidityErrorFunc</a>
|
||||
<a href="html/libxml-valid.html#XMLVALIDITYWARNINGFUNC">xmlValidityWarningFunc</a>
|
||||
|
15
doc/FAQ.html
15
doc/FAQ.html
@ -197,8 +197,8 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
<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>
|
||||
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>
|
||||
<li>
|
||||
@ -357,13 +357,12 @@ xmlDtdPtr dtd = xmlParseDTD(NULL, filename_of_dtd); /* parse the DTD */
|
||||
else xmlAddPrevSibling(doc->children, (xmlNodePtr)dtd);
|
||||
</pre>
|
||||
</li>
|
||||
<li>So what is this funky "xmlChar" used all the time?
|
||||
<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>So what is this funky "xmlChar" used all the time?
|
||||
<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>
|
||||
|
@ -18,7 +18,9 @@ PAGES= architecture.html bugs.html contribs.html docs.html DOM.html \
|
||||
tree.html xmldtd.html XMLinfo.html XSLT.html
|
||||
APIPAGES=APIconstructors.html APIfiles.html APIfunctions.html \
|
||||
APIsymbols.html APIchunk0.html
|
||||
EXTRA_DIST=xmlcatalog_man.xml
|
||||
EXTRA_DIST=xmlcatalog_man.xml tutorial/*.html tutorial/*.c tutorial/*.pdf \
|
||||
tutorial/images/*.png tutorial/images/callouts/*.png \
|
||||
API*.html
|
||||
|
||||
man_MANS = xmllint.1 xmlcatalog.1
|
||||
|
||||
@ -48,7 +50,7 @@ xml: sgml
|
||||
-@(for s in sgml/*.sgml ; do name=`basename $$s .sgml` ; \
|
||||
echo '<!DOCTYPE refentry [ <!ENTITY nbsp " "> ]>' > \
|
||||
xml/"$$name".xml ;\
|
||||
grep -v "^<colspec" $$s >> xml/"$$name".xml ; done)
|
||||
grep -v "^<colspec" $$s | sed 's+<anchor(.*>+<anchor\1/>+' >> xml/"$$name".xml ; done)
|
||||
|
||||
libxml2-api.xml libxml2-refs.xml: xml parsedecl.py libxml-decl.txt libxml-decl-list.txt
|
||||
-(./parsedecl.py)
|
||||
@ -78,8 +80,9 @@ install-data-local:
|
||||
-@INSTALL@ -m 0644 $(srcdir)/html/*.html $(DESTDIR)$(TARGET_DIR)
|
||||
-@INSTALL@ -m 0644 $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR)
|
||||
-(cd $(DESTDIR); gtkdoc-fixxref --module=libxml --html-dir=$(HTML_DIR))
|
||||
-@(tar cf - tutorial | (cd $(DESTDIR)$(TARGET_DIR) && tar xvf -)
|
||||
|
||||
dist-hook:
|
||||
(cd $(srcdir) ; tar cvf - *.1 site.xsl *.html *.gif w3c.png html/*.html html/*.sgml libxml2-api.xml parsedecl.py index.py search.php) | (cd $(distdir); tar xf -)
|
||||
(cd $(srcdir) ; tar cvf - *.1 site.xsl *.html *.gif w3c.png html/*.html html/*.sgml libxml2-api.xml parsedecl.py index.py search.php tutorial/*.* tutorial/images/*.* tutorial/images/callouts/*.*) | (cd $(distdir); tar xf -)
|
||||
|
||||
.PHONY : html sgml templates scan
|
||||
|
@ -106,7 +106,8 @@ A:link, A:visited, A:active { text-decoration: underline }
|
||||
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>John Fleck's libxml tutorial: <a href="tutorial/index.html">html</a> or <a href="tutorial/xmltutorial.pdf">pdf</a>.</li>
|
||||
<li>John Fleck's libxml tutorial: <a href="tutorial/index.html">html</a> or
|
||||
<a href="tutorial/xmltutorial.pdf">pdf</a>.</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>
|
||||
|
@ -41,7 +41,6 @@
|
||||
<ANCHOR id ="HASEXTERNALSUBSETSAXFUNC" href="libxml/libxml-parser.html#HASEXTERNALSUBSETSAXFUNC">
|
||||
<ANCHOR id ="XMLSAXHANDLER" href="libxml/libxml-parser.html#XMLSAXHANDLER">
|
||||
<ANCHOR id ="XMLEXTERNALENTITYLOADER" href="libxml/libxml-parser.html#XMLEXTERNALENTITYLOADER">
|
||||
<ANCHOR id ="XMLSUBSTITUTEENTITIESDEFAULTVALUE" href="libxml/libxml-parser.html#XMLSUBSTITUTEENTITIESDEFAULTVALUE">
|
||||
<ANCHOR id ="XMLINITPARSER" href="libxml/libxml-parser.html#XMLINITPARSER">
|
||||
<ANCHOR id ="XMLCLEANUPPARSER" href="libxml/libxml-parser.html#XMLCLEANUPPARSER">
|
||||
<ANCHOR id ="XMLPARSERINPUTREAD" href="libxml/libxml-parser.html#XMLPARSERINPUTREAD">
|
||||
@ -79,6 +78,7 @@
|
||||
<ANCHOR id ="XMLSAXUSERPARSEFILE" href="libxml/libxml-parser.html#XMLSAXUSERPARSEFILE">
|
||||
<ANCHOR id ="XMLSAXUSERPARSEMEMORY" href="libxml/libxml-parser.html#XMLSAXUSERPARSEMEMORY">
|
||||
<ANCHOR id ="XMLSAXPARSEMEMORY" href="libxml/libxml-parser.html#XMLSAXPARSEMEMORY">
|
||||
<ANCHOR id ="XMLSAXPARSEMEMORYWITHDATA" href="libxml/libxml-parser.html#XMLSAXPARSEMEMORYWITHDATA">
|
||||
<ANCHOR id ="XMLSAXPARSEFILE" href="libxml/libxml-parser.html#XMLSAXPARSEFILE">
|
||||
<ANCHOR id ="XMLSAXPARSEFILEWITHDATA" href="libxml/libxml-parser.html#XMLSAXPARSEFILEWITHDATA">
|
||||
<ANCHOR id ="XMLSAXPARSEENTITY" href="libxml/libxml-parser.html#XMLSAXPARSEENTITY">
|
||||
@ -318,7 +318,6 @@
|
||||
<ANCHOR id ="XMLREMOVEPROP" href="libxml/libxml-tree.html#XMLREMOVEPROP">
|
||||
<ANCHOR id ="XMLUNSETPROP" href="libxml/libxml-tree.html#XMLUNSETPROP">
|
||||
<ANCHOR id ="XMLUNSETNSPROP" href="libxml/libxml-tree.html#XMLUNSETNSPROP">
|
||||
<ANCHOR id ="XMLBUFFERWRITEXMLCHAR" href="libxml/libxml-tree.html#XMLBUFFERWRITEXMLCHAR">
|
||||
<ANCHOR id ="XMLBUFFERWRITECHAR" href="libxml/libxml-tree.html#XMLBUFFERWRITECHAR">
|
||||
<ANCHOR id ="XMLBUFFERWRITECHAR" href="libxml/libxml-tree.html#XMLBUFFERWRITECHAR">
|
||||
<ANCHOR id ="XMLBUFFERWRITEQUOTEDSTRING" href="libxml/libxml-tree.html#XMLBUFFERWRITEQUOTEDSTRING">
|
||||
@ -807,7 +806,6 @@
|
||||
<ANCHOR id ="XMLCLEANUPOUTPUTCALLBACKS" href="libxml/libxml-xmlio.html#XMLCLEANUPOUTPUTCALLBACKS">
|
||||
<ANCHOR id ="XMLREGISTERDEFAULTINPUTCALLBACKS" href="libxml/libxml-xmlio.html#XMLREGISTERDEFAULTINPUTCALLBACKS">
|
||||
<ANCHOR id ="XMLALLOCPARSERINPUTBUFFER" href="libxml/libxml-xmlio.html#XMLALLOCPARSERINPUTBUFFER">
|
||||
<ANCHOR id ="XMLPARSERINPUTBUFFERCREATEFNAME" href="libxml/libxml-xmlio.html#XMLPARSERINPUTBUFFERCREATEFNAME">
|
||||
<ANCHOR id ="XMLPARSERINPUTBUFFERCREATEFILENAME" href="libxml/libxml-xmlio.html#XMLPARSERINPUTBUFFERCREATEFILENAME">
|
||||
<ANCHOR id ="XMLPARSERINPUTBUFFERCREATEFILE" href="libxml/libxml-xmlio.html#XMLPARSERINPUTBUFFERCREATEFILE">
|
||||
<ANCHOR id ="XMLPARSERINPUTBUFFERCREATEFD" href="libxml/libxml-xmlio.html#XMLPARSERINPUTBUFFERCREATEFD">
|
||||
@ -1030,7 +1028,6 @@
|
||||
<ANCHOR id ="XMLPARSEATTRIBUTETYPE" href="libxml/libxml-parserinternals.html#XMLPARSEATTRIBUTETYPE">
|
||||
<ANCHOR id ="XMLPARSEATTRIBUTELISTDECL" href="libxml/libxml-parserinternals.html#XMLPARSEATTRIBUTELISTDECL">
|
||||
<ANCHOR id ="XMLPARSEELEMENTMIXEDCONTENTDECL" href="libxml/libxml-parserinternals.html#XMLPARSEELEMENTMIXEDCONTENTDECL">
|
||||
<ANCHOR id ="XMLPARSEELEMENTCHILDRENCONTENTD" href="libxml/libxml-parserinternals.html#XMLPARSEELEMENTCHILDRENCONTENTD">
|
||||
<ANCHOR id ="XMLPARSEELEMENTCHILDRENCONTENTDECL" href="libxml/libxml-parserinternals.html#XMLPARSEELEMENTCHILDRENCONTENTDECL">
|
||||
<ANCHOR id ="XMLPARSEELEMENTCONTENTDECL" href="libxml/libxml-parserinternals.html#XMLPARSEELEMENTCONTENTDECL">
|
||||
<ANCHOR id ="XMLPARSEELEMENTDECL" href="libxml/libxml-parserinternals.html#XMLPARSEELEMENTDECL">
|
||||
@ -1106,6 +1103,7 @@
|
||||
<ANCHOR id ="XMLCHARENCCLOSEFUNC" href="libxml/libxml-encoding.html#XMLCHARENCCLOSEFUNC">
|
||||
<ANCHOR id ="UTF8TOISOLAT1" href="libxml/libxml-encoding.html#UTF8TOISOLAT1">
|
||||
<ANCHOR id ="ISOLAT1TOUTF8" href="libxml/libxml-encoding.html#ISOLAT1TOUTF8">
|
||||
<ANCHOR id ="XMLGETUTF8CHAR" href="libxml/libxml-encoding.html#XMLGETUTF8CHAR">
|
||||
<ANCHOR id ="XMLCHECKUTF8" href="libxml/libxml-encoding.html#XMLCHECKUTF8">
|
||||
<ANCHOR id ="XMLUTF8STRSIZE" href="libxml/libxml-encoding.html#XMLUTF8STRSIZE">
|
||||
<ANCHOR id ="XMLUTF8STRNDUP" href="libxml/libxml-encoding.html#XMLUTF8STRNDUP">
|
||||
@ -1184,6 +1182,10 @@
|
||||
<ANCHOR id ="XMLMEMDISPLAY" href="libxml/libxml-xmlmemory.html#XMLMEMDISPLAY">
|
||||
<ANCHOR id ="XMLMEMSHOW" href="libxml/libxml-xmlmemory.html#XMLMEMSHOW">
|
||||
<ANCHOR id ="XMLMEMORYDUMP" href="libxml/libxml-xmlmemory.html#XMLMEMORYDUMP">
|
||||
<ANCHOR id ="XMLMEMMALLOC" href="libxml/libxml-xmlmemory.html#XMLMEMMALLOC">
|
||||
<ANCHOR id ="XMLMEMREALLOC" href="libxml/libxml-xmlmemory.html#XMLMEMREALLOC">
|
||||
<ANCHOR id ="XMLMEMFREE" href="libxml/libxml-xmlmemory.html#XMLMEMFREE">
|
||||
<ANCHOR id ="XMLMEMORYSTRDUP" href="libxml/libxml-xmlmemory.html#XMLMEMORYSTRDUP">
|
||||
<ANCHOR id ="XMLMALLOC" href="libxml/libxml-xmlmemory.html#XMLMALLOC">
|
||||
<ANCHOR id ="XMLREALLOC" href="libxml/libxml-xmlmemory.html#XMLREALLOC">
|
||||
<ANCHOR id ="XMLMEMSTRDUP" href="libxml/libxml-xmlmemory.html#XMLMEMSTRDUP">
|
||||
|
@ -102,6 +102,21 @@ to test those</p>
|
||||
Schemas</a> and <a href="http://www.w3.org/TR/xinclude">XInclude</a>
|
||||
</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>
|
||||
|
35
doc/xml.html
35
doc/xml.html
@ -250,8 +250,8 @@ libxml2</p>
|
||||
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="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>
|
||||
@ -407,13 +407,12 @@ xmlDtdPtr dtd = xmlParseDTD(NULL, filename_of_dtd); /* parse the DTD */
|
||||
else xmlAddPrevSibling(doc->children, (xmlNodePtr)dtd);
|
||||
</pre>
|
||||
</li>
|
||||
<li>So what is this funky "xmlChar" used all the time?
|
||||
<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>So what is this funky "xmlChar" used all the time?
|
||||
<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>
|
||||
|
||||
@ -434,7 +433,8 @@ xmlDtdPtr dtd = xmlParseDTD(NULL, filename_of_dtd); /* parse the DTD */
|
||||
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>John Fleck's libxml tutorial: <a href="tutorial/index.html">html</a> or <a href="tutorial/xmltutorial.pdf">pdf</a>.</li>
|
||||
<li>John Fleck's libxml tutorial: <a href="tutorial/index.html">html</a> or
|
||||
<a href="tutorial/xmltutorial.pdf">pdf</a>.</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>
|
||||
@ -589,6 +589,22 @@ to test those</p>
|
||||
Schemas</a> and <a href="http://www.w3.org/TR/xinclude">XInclude</a></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>
|
||||
@ -2707,6 +2723,7 @@ xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
} </pre>
|
||||
</li>
|
||||
|
@ -248,6 +248,7 @@ xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
} </pre>
|
||||
</li>
|
||||
|
@ -219,6 +219,7 @@ struct _xmlParserCtxt {
|
||||
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 */
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -115,6 +115,7 @@ rm -fr %{buildroot}
|
||||
%doc %{_mandir}/man1/xml2-config.1*
|
||||
%doc AUTHORS ChangeLog NEWS README Copyright TODO
|
||||
%doc doc/*.html doc/html doc/*.gif doc/*.png
|
||||
%doc doc/tutorial
|
||||
|
||||
%{_libdir}/lib*.so
|
||||
%{_libdir}/*a
|
||||
|
@ -1175,7 +1175,7 @@ xmlNextChar(xmlParserCtxtPtr ctxt) {
|
||||
"Char 0x%X out of allowed range\n", val);
|
||||
ctxt->errNo = XML_ERR_INVALID_ENCODING;
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
} else
|
||||
/* 2-byte code */
|
||||
@ -1317,7 +1317,7 @@ xmlCurrentChar(xmlParserCtxtPtr ctxt, int *len) {
|
||||
"Char 0x%X out of allowed range\n", val);
|
||||
ctxt->errNo = XML_ERR_INVALID_ENCODING;
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
return(val);
|
||||
} else {
|
||||
@ -1438,7 +1438,7 @@ xmlStringCurrentChar(xmlParserCtxtPtr ctxt, const xmlChar * cur, int *len)
|
||||
val);
|
||||
ctxt->errNo = XML_ERR_INVALID_ENCODING;
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
}
|
||||
return (val);
|
||||
} else {
|
||||
@ -1568,7 +1568,7 @@ xmlSwitchEncoding(xmlParserCtxtPtr ctxt, xmlCharEncoding enc)
|
||||
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
|
||||
ctxt->sax->error(ctxt->userData, "encoding unknown\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
break;
|
||||
case XML_CHAR_ENCODING_NONE:
|
||||
/* let's assume it's UTF-8 without the XML decl */
|
||||
@ -1604,7 +1604,7 @@ xmlSwitchEncoding(xmlParserCtxtPtr ctxt, xmlCharEncoding enc)
|
||||
if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
|
||||
ctxt->sax->error(ctxt->userData, "encoding unknown\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
ctxt->charset = XML_CHAR_ENCODING_UTF8;
|
||||
break;
|
||||
case XML_CHAR_ENCODING_NONE:
|
||||
@ -2750,7 +2750,7 @@ xmlDecodeEntities(xmlParserCtxtPtr ctxt ATTRIBUTE_UNUSED, int len ATTRIBUTE_UNUS
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"Detected entity reference loop\n");
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
ctxt->errNo = XML_ERR_ENTITY_LOOP;
|
||||
return(NULL);
|
||||
}
|
||||
@ -3051,7 +3051,7 @@ xmlGenericError(xmlGenericErrorContext,
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"String not closed \"%.50s\"\n", buf);
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
} else {
|
||||
NEXT;
|
||||
}
|
||||
@ -3078,7 +3078,7 @@ xmlGenericError(xmlGenericErrorContext,
|
||||
ctxt->sax->error(ctxt->userData,
|
||||
"String not closed \"%.50s\"\n", buf);
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
} else {
|
||||
NEXT;
|
||||
}
|
||||
@ -3189,7 +3189,7 @@ xmlGenericError(xmlGenericErrorContext,
|
||||
}
|
||||
ctxt->errNo = XML_ERR_NS_DECL_ERROR;
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
NEXT;
|
||||
}
|
||||
}
|
||||
@ -3344,7 +3344,7 @@ xmlHandleEntity(xmlParserCtxtPtr ctxt ATTRIBUTE_UNUSED, xmlEntityPtr entity ATTR
|
||||
ctxt->sax->error(ctxt->userData, "xmlHandleEntity %s: content == NULL\n",
|
||||
entity->name);
|
||||
ctxt->wellFormed = 0;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->recovery == 0) ctxt->disableSAX = 1;
|
||||
return;
|
||||
}
|
||||
len = xmlStrlen(entity->content);
|
||||
|
Loading…
x
Reference in New Issue
Block a user