mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-19 14:50:07 +03:00
Updated the on-line documentation, Daniel
This commit is contained in:
parent
bd9b0e8eed
commit
a4871052e0
@ -2613,7 +2613,7 @@ CELLPADDING="6"
|
||||
><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 @@ CELLPADDING="6"
|
||||
><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 @@ CELLPADDING="6"
|
||||
><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 @@ CELLPADDING="6"
|
||||
><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 @@ CELLPADDING="6"
|
||||
><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 @@ CLASS="PROGRAMLISTING"
|
||||
></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 @@ CELLPADDING="6"
|
||||
><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 */
|
||||
|
@ -84,6 +84,14 @@ you want to test those</p>
|
||||
<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>
|
||||
|
10
doc/xml.html
10
doc/xml.html
@ -559,6 +559,15 @@ you want to test those</p>
|
||||
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 @@ xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) {
|
||||
|
||||
|
||||
|
||||
|
||||
} </pre>
|
||||
</li>
|
||||
<li>And then use it to save the document:
|
||||
|
@ -218,6 +218,7 @@ xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) {
|
||||
|
||||
|
||||
|
||||
|
||||
} </pre>
|
||||
</li>
|
||||
<li>And then use it to save the document:
|
||||
|
Loading…
x
Reference in New Issue
Block a user