diff --git a/doc/html/libxml-tree.html b/doc/html/libxml-tree.html index b105b5fb..8d302e56 100644 --- a/doc/html/libxml-tree.html +++ b/doc/html/libxml-tree.html @@ -2613,7 +2613,7 @@ CELLPADDING="6" >
struct xmlAttribute { - void *_private; /* for Corba, must be first ! */ + void *_private; /* application data */ xmlElementType type; /* XML_ATTRIBUTE_DECL, must be second ! */ const xmlChar *name; /* Attribute name */ struct _xmlNode *children; /* NULL */ @@ -2848,7 +2848,7 @@ CELLPADDING="6" >struct xmlElement { - void *_private; /* for Corba, must be first ! */ + void *_private; /* application data */ xmlElementType type; /* XML_ELEMENT_DECL, must be second ! */ const xmlChar *name; /* Element name */ struct _xmlNode *children; /* NULL */ @@ -3034,7 +3034,7 @@ CELLPADDING="6" >struct xmlDtd { - void *_private; /* for Corba, must be first ! */ + void *_private; /* application data */ xmlElementType type; /* XML_DTD_NODE, must be second ! */ const xmlChar *name; /* Name of the DTD */ struct _xmlNode *children; /* the value of the property link */ @@ -3108,7 +3108,7 @@ CELLPADDING="6" >struct xmlAttr { - void *_private; /* for Corba, must be first ! */ + void *_private; /* application data */ xmlElementType type; /* XML_ATTRIBUTE_NODE, must be second ! */ const xmlChar *name; /* the name of the property */ struct _xmlNode *children; /* the value of the property */ @@ -3381,7 +3381,7 @@ CELLPADDING="6" >struct xmlNode { - void *_private; /* for Corba, must be first ! */ + void *_private; /* application data */ xmlElementType type; /* type number, must be second ! */ const xmlChar *name; /* the name of the node, or the entity */ struct _xmlNode *children; /* parent->childs link */ @@ -3524,7 +3524,9 @@ CLASS="PROGRAMLISTING" >macro to extract the line number of an element node
macro to extract the line number of an element node. +This will work only if line numbering is activated by +calling xmlLineNumbersDefault(1) before parsingstruct xmlDoc { - void *_private; /* for Corba, must be first ! */ + void *_private; /* application data */ xmlElementType type; /* XML_DOCUMENT_NODE, must be second ! */ char *name; /* name/filename/URI of the document */ struct _xmlNode *children; /* the document tree */ diff --git a/doc/news.html b/doc/news.html index fdc17e2f..8342a2a1 100644 --- a/doc/news.html +++ b/doc/news.html @@ -84,6 +84,14 @@ you want to test those(seeems working but delayed from release) parsing/import of Docbook SGML docs +2.4.11: Nov 26 2001
++
- fixed a couple of errors in the includes, fixed a few bugs, some code + cleanups
+- xmllint man pages improvement by Heiko Rupp
+- updated VMS build instructions from John A Fotheringham
+- Windows Makefiles updates from Igor
+2.4.10: Nov 10 2001
+
- URI escaping fix (Joel Young)
diff --git a/doc/xml.html b/doc/xml.html index 4265fe3c..6dcd5a43 100644 --- a/doc/xml.html +++ b/doc/xml.html @@ -559,6 +559,15 @@ you want to test those SGML docs2.4.11: Nov 26 2001
++
+- fixed a couple of errors in the includes, fixed a few bugs, some code + cleanups
+- xmllint man pages improvement by Heiko Rupp
+- updated VMS build instructions from John A Fotheringham
+- Windows Makefiles updates from Igor
+2.4.10: Nov 10 2001
- URI escaping fix (Joel Young)
@@ -2167,6 +2176,7 @@ xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) { + }- And then use it to save the document: diff --git a/doc/xmlio.html b/doc/xmlio.html index 0be0d862..f9f55763 100644 --- a/doc/xmlio.html +++ b/doc/xmlio.html @@ -218,6 +218,7 @@ xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) { + }
- And then use it to save the document: