From e8f379330e16fcfae7d2737bbc22007b69cc3704 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Thu, 23 Aug 2001 23:21:04 +0000 Subject: [PATCH] Rebuilt the docs, preparing for release, Daniel --- doc/html/index.sgml | 1 + doc/html/libxml-catalog.html | 186 ++++++-- doc/html/libxml-debugxml.html | 64 +-- doc/html/libxml-docbparser.html | 66 +-- doc/html/libxml-encoding.html | 116 ++--- doc/html/libxml-parser.html | 2 +- doc/html/libxml-parserinternals.html | 612 +++++++++++++-------------- doc/html/libxml-xmlmemory.html | 78 ++-- 8 files changed, 610 insertions(+), 515 deletions(-) diff --git a/doc/html/index.sgml b/doc/html/index.sgml index 016ec7e1..6b2d30d3 100644 --- a/doc/html/index.sgml +++ b/doc/html/index.sgml @@ -820,6 +820,7 @@ + diff --git a/doc/html/libxml-catalog.html b/doc/html/libxml-catalog.html index af6005c3..da3f97b4 100644 --- a/doc/html/libxml-catalog.html +++ b/doc/html/libxml-catalog.html @@ -250,6 +250,13 @@ HREF="libxml-catalog.html#XMLCATALOGREMOVE" HREF="libxml-tree.html#XMLCHAR" >xmlChar *value); +xmlDocPtr xmlParseCatalogFile (const char *filename); void xmlCatalogFreeLocal

Description

Details
















xmlParseCatalogFile ()

xmlDocPtr   xmlParseCatalogFile             (const char *filename);

parse an XML file and build a tree. It's like xmlParseFile() +except it bypass all catalog lookups.

filename : the filename
Returns :the resulting document tree or NULL in case of error











Name

Synopsis

Description

Details















Name

Synopsis

Description

Details



















Name

Synopsis

Description

Details






























the System ID for the entity to load the Public ID for the entity to load

Name

Synopsis

Description

Details


























































ctxt : an XML parser context


xmlParseEntityDecl ()

void        xmlParseEntityDecl              (xmlParserCtxtPtr ctxt);

parse <!ENTITY declarations

[70] EntityDecl ::= GEDecl | PEDecl

[71] GEDecl ::= '<!ENTITY' S Name S EntityDef S? '>'

[72] PEDecl ::= '<!ENTITY' S '%' S Name S PEDef S? '>'

[73] EntityDef ::= EntityValue | (ExternalID NDataDecl?)

[74] PEDef ::= EntityValue | ExternalID

[76] NDataDecl ::= S 'NDATA' S Name

[ VC: Notation Declared ] -The Name must match the declared name of a notation.

xmlParseEntityDecl ()

void        xmlParseEntityDecl              (xmlParserCtxtPtr ctxt);

parse <!ENTITY declarations

[70] EntityDecl ::= GEDecl | PEDecl

[71] GEDecl ::= '<!ENTITY' S Name S EntityDef S? '>'

[72] PEDecl ::= '<!ENTITY' S '%' S Name S PEDef S? '>'

[73] EntityDef ::= EntityValue | (ExternalID NDataDecl?)

[74] PEDef ::= EntityValue | ExternalID

[76] NDataDecl ::= S 'NDATA' S Name

[ VC: Notation Declared ] +The Name must match the declared name of a notation.

ctxt : an XML parser context


xmlParseDefaultDecl ()
























































Name

Synopsis

Description

Details