diff --git a/ChangeLog b/ChangeLog index add96c7b..338af0fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Aug 12 23:19:42 CEST 2000 Daniel Veillard + + * doc/* : rebuilt the docs + * getting ready for 2.2.2 release + Sat Aug 12 16:42:37 EDT 2000 Daniel Veillard * parser.[ch]: added xmlGetFeaturesList() xmlGetFeature() diff --git a/doc/html/gnome-xml-debugxml.html b/doc/html/gnome-xml-debugxml.html index 6d688710..b57fbd43 100644 --- a/doc/html/gnome-xml-debugxml.html +++ b/doc/html/gnome-xml-debugxml.html @@ -115,7 +115,7 @@ SIZE="3" >

Name

Synopsis

Description

Details















Name

Synopsis

Description

Details


















Name

Synopsis

Description

Details






















Name

Synopsis

Description

Details




























Name

Synopsis

Description

Details












Name

Synopsis

Description

Details























Name

Synopsis

Description

Details










xmlNodePtr *list); +int xmlParseCtxtExternalEntity (xmlParserCtxtPtr ctx, + const xmlChar *URL, + const xmlChar *ID, + xmlNodePtr *list); void xmlDefaultSAXHandlerInitxmlChar *cur); +int xmlGetFeaturesList (int *len, + const char **result); +int xmlGetFeature (xmlParserCtxtPtr ctxt, + const char *name, + void *result); +int xmlSetFeature (xmlParserCtxtPtr ctxt, + const char *name, + void *value); xmlParserCtxtPtr

Description

Details



















































































xmlParseCtxtExternalEntity ()

int         xmlParseCtxtExternalEntity      (xmlParserCtxtPtr ctx,
+                                             const xmlChar *URL,
+                                             const xmlChar *ID,
+                                             xmlNodePtr *list);

Parse an external general entity within an existing parsing context +An external general parsed entity is well-formed if it matches the +production labeled extParsedEnt.

[78] extParsedEnt ::= TextDecl? content

ctx : the existing parsing context
URL : the URL for the entity to load
ID : the System ID for the entity to load
list : the return value for the set of parsed nodes
Returns :0 if the entity is well formed, -1 in case of args problem and +the parser error code otherwise









xmlGetFeaturesList ()

int         xmlGetFeaturesList              (int *len,
+                                             const char **result);

len : 
result : 
Returns : 


xmlGetFeature ()

int         xmlGetFeature                   (xmlParserCtxtPtr ctxt,
+                                             const char *name,
+                                             void *result);

ctxt : 
name : 
result : 
Returns : 


xmlSetFeature ()

int         xmlSetFeature                   (xmlParserCtxtPtr ctxt,
+                                             const char *name,
+                                             void *value);

ctxt : 
name : 
value : 
Returns : 













Name

Synopsis

Description

Details




























































































Name

Synopsis

Description

Details



































Name

Synopsis

xmlNodePtr xmlAddChildList (xmlNodePtr parent, + xmlNodePtr cur); +xmlNodePtr xmlReplaceNode (

Description

Details







































































































xmlAddChildList ()

xmlNodePtr  xmlAddChildList                 (xmlNodePtr parent,
+                                             xmlNodePtr cur);

Add a list of node at the end of the child list of the parent

parent : the parent node
cur : the first node in the list
Returns :the last child or NULL in case of error.
















































Name

Synopsis

Description

Details








































































Name

Synopsis

Description

Details







Name

Synopsis

xmlParserInputBufferPtr xmlParserInputBufferCreateMem + (const char *mem, + int size, + xmlCharEncoding enc); +xmlParserInputBufferPtr xmlParserInputBufferCreateIO @@ -452,7 +465,7 @@ HREF="gnome-xml-tree.html#XMLDOCPTR" >

Description

Details

















xmlParserInputBufferCreateMem ()

xmlParserInputBufferPtr xmlParserInputBufferCreateMem
+                                            (const char *mem,
+                                             int size,
+                                             xmlCharEncoding enc);

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

mem : the memory input
size : the length of the memory block
enc : the charset encoding if known
Returns :the new parser input or NULL



















Name

Synopsis

Description