Updated the on-line documentation, Daniel
diff --git a/doc/html/libxml-tree.html b/doc/html/libxml-tree.html
index b105b5f..8d302e5 100644
--- a/doc/html/libxml-tree.html
+++ b/doc/html/libxml-tree.html
@@ -2613,7 +2613,7 @@
><PRE
CLASS="PROGRAMLISTING"
>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 @@
><PRE
CLASS="PROGRAMLISTING"
>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 @@
><PRE
CLASS="PROGRAMLISTING"
>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 @@
><PRE
CLASS="PROGRAMLISTING"
>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 @@
><PRE
CLASS="PROGRAMLISTING"
>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 @@
></TR
></TABLE
><P
->macro to extract the line number of an element node</P
+>macro to extract the line number of an element node.
+This will work only if line numbering is activated by
+calling xmlLineNumbersDefault(1) before parsing</P
><P
></P
><DIV
@@ -3585,7 +3587,7 @@
><PRE
CLASS="PROGRAMLISTING"
>struct 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 fdc17e2..8342a2a 100644
--- a/doc/news.html
+++ b/doc/news.html
@@ -84,6 +84,14 @@
<li>(seeems working but delayed from release) parsing/import of Docbook
SGML docs</li>
</ul>
+<h3>2.4.11: Nov 26 2001</h3>
+<ul>
+<li>fixed a couple of errors in the includes, fixed a few bugs, some code
+ cleanups</li>
+<li>xmllint man pages improvement by Heiko Rupp</li>
+<li>updated VMS build instructions from John A Fotheringham</li>
+<li>Windows Makefiles updates from Igor</li>
+</ul>
<h3>2.4.10: Nov 10 2001</h3>
<ul>
<li>URI escaping fix (Joel Young)</li>
diff --git a/doc/xml.html b/doc/xml.html
index 4265fe3..6dcd5a4 100644
--- a/doc/xml.html
+++ b/doc/xml.html
@@ -559,6 +559,15 @@
SGML docs</li>
</ul>
+<h3>2.4.11: Nov 26 2001</h3>
+<ul>
+ <li>fixed a couple of errors in the includes, fixed a few bugs, some code
+ cleanups</li>
+ <li>xmllint man pages improvement by Heiko Rupp</li>
+ <li>updated VMS build instructions from John A Fotheringham</li>
+ <li>Windows Makefiles updates from Igor</li>
+</ul>
+
<h3>2.4.10: Nov 10 2001</h3>
<ul>
<li>URI escaping fix (Joel Young)</li>
@@ -2167,6 +2176,7 @@
+
} </pre>
</li>
<li>And then use it to save the document:
diff --git a/doc/xmlio.html b/doc/xmlio.html
index 0be0d86..f9f5576 100644
--- a/doc/xmlio.html
+++ b/doc/xmlio.html
@@ -218,6 +218,7 @@
+
} </pre>
</li>
<li>And then use it to save the document: