1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-12-25 23:21:26 +03:00

preparing 2.4.21 raised a too low limit rebuilt the docs Daniel

* configure.in include/libxml/xmlwin32version.h: preparing 2.4.21
* valid.c: raised a too low limit
* doc/*: rebuilt the docs
Daniel
This commit is contained in:
Daniel Veillard 2002-04-29 15:50:14 +00:00
parent 93d3a47873
commit fc57b41cb1
9 changed files with 1307 additions and 1668 deletions

View File

@ -1,3 +1,9 @@
Mon Apr 29 17:48:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in include/libxml/xmlwin32version.h: preparing 2.4.21
* valid.c: raised a too low limit
* doc/*: rebuilt the docs
Wed Apr 24 13:41:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
* test/XPath/expr/floats test/XPath/expr/functions

View File

@ -6,7 +6,7 @@ AC_CANONICAL_HOST
LIBXML_MAJOR_VERSION=2
LIBXML_MINOR_VERSION=4
LIBXML_MICRO_VERSION=20
LIBXML_MICRO_VERSION=21
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

View File

@ -34,7 +34,7 @@ $(APIPAGES): libxml2-refs.xml site.xsl api.xsl
$(bindir)/xsltproc --html $(top_srcdir)/doc/api.xsl $(top_srcdir)/doc/xml.html ; fi );
scan:
gtkdoc-scan --module=libxml --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="acconfig.h config.h xmlwin32version.h win32config.h trio.h triostr.h triop.h config-mac.h XMLTestPrefix2.h XMLTestPrefix.h triodef.h trionan.h xlink.h libxml.h libxml2-py.h libxml_wrap.h"
gtkdoc-scan --module=libxml --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="acconfig.h config.h xmlwin32version.h win32config.h trio.h triostr.h triop.h config-mac.h XMLTestPrefix2.h XMLTestPrefix.h triodef.h trionan.h xlink.h libxml.h libxml2-py.h libxml_wrap.h xmlunicode.h xmlregexp.h xmlautomata.h xmlschemas.h xmlschemastypes.h"
templates: scan
gtkdoc-mktmpl --module=libxml

View File

@ -8812,8 +8812,8 @@ compressed document is provided by default if found at compile-time.
It use the given SAX function block to handle the parsing callback.
If sax is NULL, fallback to the default DOM tree building routines.</P
><P
>User data (void *) is stored within the parser context, so it is
available nearly everywhere in libxml.</P
>User data (void *) is stored within the parser context in the
context's _private member, so it is available nearly everywhere in libxml</P
><P
></P
><DIV

View File

@ -1025,7 +1025,7 @@ HREF="libxml-tree.html#XMLNODEPTR"
> <A
HREF="libxml-tree.html#XMLDOCCOPYNODE"
>xmlDocCopyNode</A
> (<A
> (const <A
HREF="libxml-tree.html#XMLNODEPTR"
>xmlNodePtr</A
> node,
@ -1040,7 +1040,7 @@ HREF="libxml-tree.html#XMLNODEPTR"
> <A
HREF="libxml-tree.html#XMLCOPYNODELIST"
>xmlCopyNodeList</A
> (<A
> (const <A
HREF="libxml-tree.html#XMLNODEPTR"
>xmlNodePtr</A
> node);
@ -9423,7 +9423,7 @@ CLASS="PROGRAMLISTING"
><A
HREF="libxml-tree.html#XMLNODEPTR"
>xmlNodePtr</A
> xmlDocCopyNode (<A
> xmlDocCopyNode (const <A
HREF="libxml-tree.html#XMLNODEPTR"
>xmlNodePtr</A
> node,
@ -9551,7 +9551,7 @@ CLASS="PROGRAMLISTING"
><A
HREF="libxml-tree.html#XMLNODEPTR"
>xmlNodePtr</A
> xmlCopyNodeList (<A
> xmlCopyNodeList (const <A
HREF="libxml-tree.html#XMLNODEPTR"
>xmlNodePtr</A
> node);</PRE

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -27,21 +27,21 @@ extern void xmlCheckVersion(int version);
*
* the version string like "1.2.3"
*/
#define LIBXML_DOTTED_VERSION "2.4.20"
#define LIBXML_DOTTED_VERSION "2.4.21"
/**
* LIBXML_VERSION:
*
* the version number: 1.2.3 value is 1002003
*/
#define LIBXML_VERSION 20420
#define LIBXML_VERSION 20421
/**
* LIBXML_VERSION_STRING:
*
* the version number string, 1.2.3 value is "1002003"
*/
#define LIBXML_VERSION_STRING "20420"
#define LIBXML_VERSION_STRING "20421"
/**
* LIBXML_TEST_VERSION:
@ -49,7 +49,7 @@ extern void xmlCheckVersion(int version);
* Macro to check that the libxml version in use is compatible with
* the version the software has been compiled against
*/
#define LIBXML_TEST_VERSION xmlCheckVersion(20420);
#define LIBXML_TEST_VERSION xmlCheckVersion(20421);
#if 0
/**

View File

@ -91,7 +91,7 @@ typedef struct _xmlValidState {
unsigned char state; /* ROLLBACK_XXX */
} _xmlValidState;
#define MAX_RECURSE 1024
#define MAX_RECURSE 25000
#define MAX_DEPTH ((sizeof(_xmlValidState.occurs)) * 8)
#define CONT ctxt->vstate->cont
#define NODE ctxt->vstate->node