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