mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
preparing 2.4.15 rebuilt some docs Daniel
* configure.in include/libxml/xmlwin32version.h: preparing 2.4.15 * doc/news.html doc/xml.html doc/xmlio.html: rebuilt some docs Daniel
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Mon Feb 11 19:25:44 CET 2002 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* configure.in include/libxml/xmlwin32version.h: preparing 2.4.15
|
||||||
|
* doc/news.html doc/xml.html doc/xmlio.html: rebuilt some docs
|
||||||
|
|
||||||
Mon Feb 11 14:53:24 CET 2002 Daniel Veillard <daniel@veillard.com>
|
Mon Feb 11 14:53:24 CET 2002 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* doc/xmlcatalog_man.xml: trying to close Red Hat bug #58707
|
* doc/xmlcatalog_man.xml: trying to close Red Hat bug #58707
|
||||||
|
@ -6,7 +6,7 @@ AC_CANONICAL_HOST
|
|||||||
|
|
||||||
LIBXML_MAJOR_VERSION=2
|
LIBXML_MAJOR_VERSION=2
|
||||||
LIBXML_MINOR_VERSION=4
|
LIBXML_MINOR_VERSION=4
|
||||||
LIBXML_MICRO_VERSION=14
|
LIBXML_MICRO_VERSION=15
|
||||||
LIBXML_VERSION=$LIBXML_MAJOR_VERSION.$LIBXML_MINOR_VERSION.$LIBXML_MICRO_VERSION
|
LIBXML_VERSION=$LIBXML_MAJOR_VERSION.$LIBXML_MINOR_VERSION.$LIBXML_MICRO_VERSION
|
||||||
LIBXML_VERSION_INFO=`expr $LIBXML_MAJOR_VERSION + $LIBXML_MINOR_VERSION`:$LIBXML_MICRO_VERSION:$LIBXML_MINOR_VERSION
|
LIBXML_VERSION_INFO=`expr $LIBXML_MAJOR_VERSION + $LIBXML_MINOR_VERSION`:$LIBXML_MICRO_VERSION:$LIBXML_MINOR_VERSION
|
||||||
|
|
||||||
|
@ -94,6 +94,12 @@ you want to test those</p>
|
|||||||
<li>(seeems working but delayed from release) parsing/import of Docbook
|
<li>(seeems working but delayed from release) parsing/import of Docbook
|
||||||
SGML docs</li>
|
SGML docs</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<h3>2.4.15: Feb 11 2002</h3>
|
||||||
|
<ul>
|
||||||
|
<li>Fixed the Makefiles, especially the python module ones</li>
|
||||||
|
<li>A few bug fixes and cleanup</li>
|
||||||
|
<li>Includes cleanup</li>
|
||||||
|
</ul>
|
||||||
<h3>2.4.14: Feb 8 2002</h3>
|
<h3>2.4.14: Feb 8 2002</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Change of Licence to the <a href="http://www.opensource.org/licenses/mit-license.html">MIT
|
<li>Change of Licence to the <a href="http://www.opensource.org/licenses/mit-license.html">MIT
|
||||||
|
@ -548,6 +548,13 @@ you want to test those</p>
|
|||||||
SGML docs</li>
|
SGML docs</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<h3>2.4.15: Feb 11 2002</h3>
|
||||||
|
<ul>
|
||||||
|
<li>Fixed the Makefiles, especially the python module ones</li>
|
||||||
|
<li>A few bug fixes and cleanup</li>
|
||||||
|
<li>Includes cleanup</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<h3>2.4.14: Feb 8 2002</h3>
|
<h3>2.4.14: Feb 8 2002</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Change of Licence to the <a
|
<li>Change of Licence to the <a
|
||||||
@ -2207,6 +2214,7 @@ xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} </pre>
|
} </pre>
|
||||||
</li>
|
</li>
|
||||||
<li>And then use it to save the document:
|
<li>And then use it to save the document:
|
||||||
|
@ -237,6 +237,7 @@ xmlOutputBufferCreateOwn(FILE *file, xmlCharEncodingHandlerPtr encoder) {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} </pre>
|
} </pre>
|
||||||
</li>
|
</li>
|
||||||
<li>And then use it to save the document:
|
<li>And then use it to save the document:
|
||||||
|
@ -27,21 +27,21 @@ extern void xmlCheckVersion(int version);
|
|||||||
*
|
*
|
||||||
* the version string like "1.2.3"
|
* the version string like "1.2.3"
|
||||||
*/
|
*/
|
||||||
#define LIBXML_DOTTED_VERSION "2.4.14"
|
#define LIBXML_DOTTED_VERSION "2.4.15"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LIBXML_VERSION:
|
* LIBXML_VERSION:
|
||||||
*
|
*
|
||||||
* the version number: 1.2.3 value is 1002003
|
* the version number: 1.2.3 value is 1002003
|
||||||
*/
|
*/
|
||||||
#define LIBXML_VERSION 20414
|
#define LIBXML_VERSION 20415
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LIBXML_VERSION_STRING:
|
* LIBXML_VERSION_STRING:
|
||||||
*
|
*
|
||||||
* the version number string, 1.2.3 value is "1002003"
|
* the version number string, 1.2.3 value is "1002003"
|
||||||
*/
|
*/
|
||||||
#define LIBXML_VERSION_STRING "20414"
|
#define LIBXML_VERSION_STRING "20415"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LIBXML_TEST_VERSION:
|
* LIBXML_TEST_VERSION:
|
||||||
@ -49,7 +49,7 @@ extern void xmlCheckVersion(int version);
|
|||||||
* Macro to check that the libxml version in use is compatible with
|
* Macro to check that the libxml version in use is compatible with
|
||||||
* the version the software has been compiled against
|
* the version the software has been compiled against
|
||||||
*/
|
*/
|
||||||
#define LIBXML_TEST_VERSION xmlCheckVersion(20414);
|
#define LIBXML_TEST_VERSION xmlCheckVersion(20415);
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user