diff --git a/ChangeLog b/ChangeLog index aa910dc3..92966da9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Apr 15 19:11:36 CEST 2002 Daniel Veillard + + * configure.in: release of 2.4.20 + * doc/*: updated and rebuilt the docs + Mon Apr 15 14:55:53 CEST 2002 Daniel Veillard * python/Makefile.am: patch from Cristian Gafton to build on diff --git a/configure.in b/configure.in index a11bcb90..e6738934 100644 --- a/configure.in +++ b/configure.in @@ -6,7 +6,7 @@ AC_CANONICAL_HOST LIBXML_MAJOR_VERSION=2 LIBXML_MINOR_VERSION=4 -LIBXML_MICRO_VERSION=19 +LIBXML_MICRO_VERSION=20 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 diff --git a/doc/html/index.sgml b/doc/html/index.sgml index 050eb055..f3e35434 100644 --- a/doc/html/index.sgml +++ b/doc/html/index.sgml @@ -426,6 +426,10 @@ + + + + @@ -781,11 +785,11 @@ - + diff --git a/doc/html/libxml-c14n.html b/doc/html/libxml-c14n.html index 362d85c1..06b89eca 100644 --- a/doc/html/libxml-c14n.html +++ b/doc/html/libxml-c14n.html @@ -123,7 +123,7 @@ NAME="LIBXML-C14N" >

Name

Synopsis

Description

Details



Name

Synopsis

Description

Details










































Name

Synopsis

Description

Details






























Name

Synopsis

Description

Details



















Name

Synopsis

Description

Details






























Name

Synopsis

Description

Details



























Name

Synopsis

Description

Details












table : the hash table
name : the name of the userdata
name2 : a second name of the userdata
userdata : a pointer to the userdata
f : the deallocator function for replaced item (if any)
Returns :0 the addition succeeded and -1 in case of error.


xmlHashAddEntry3 ()

int         xmlHashAddEntry3                (xmlHashTablePtr table,
-                                             const xmlChar *name,
-                                             const xmlChar *name2,
-                                             const xmlChar *name3,
-                                             void *userdata);

Add the userdata to the hash table. This can later be retrieved -by using the tuple (name, name2, name3). Duplicate entries generate -errors.

table : the hash table
name : the name of the userdata
name2 : a second name of the userdata
name3 : a third name of the userdata
userdata : a pointer to the userdata
Returns :0 the addition succeeded and -1 in case of error.


xmlHashUpdateEntry3 ()

int         xmlHashUpdateEntry3             (xmlHashTablePtr table,
-                                             const xmlChar *name,
-                                             const xmlChar *name2,
-                                             const xmlChar *name3,
-                                             void *userdata,
-                                             xmlHashDeallocator f);

Add the userdata to the hash table. This can later be retrieved -by using the tuple (name, name2, name3). Existing entry for this tuple -will be removed and freed with f if found.

userdata : a pointer to the userdataf : the deallocator function for replaced item (if any)Returns :0 the addition succeeded and -1 in case of error.


xmlHashAddEntry3 ()

int         xmlHashAddEntry3                (xmlHashTablePtr table,
+                                             const xmlChar *name,
+                                             const xmlChar *name2,
+                                             const xmlChar *name3,
+                                             void *userdata);

Add the userdata to the hash table. This can later be retrieved +by using the tuple (name, name2, name3). Duplicate entries generate +errors.

table : the hash table
name : the name of the userdata
name2 : a second name of the userdata
name3 : a third name of the userdata
userdata : a pointer to the userdata
Returns :0 the addition succeeded and -1 in case of error.


xmlHashUpdateEntry3 ()

int         xmlHashUpdateEntry3             (xmlHashTablePtr table,
+                                             const xmlChar *name,
+                                             const xmlChar *name2,
+                                             const xmlChar *name3,
+                                             void *userdata,
+                                             xmlHashDeallocator f);

Add the userdata to the hash table. This can later be retrieved +by using the tuple (name, name2, name3). Existing entry for this tuple +will be removed and freed with f if found.













Name

Synopsis

Description

Details
































Name

Synopsis

Description

Details




















Name

Synopsis

Description

Details























Name

Synopsis

Description

Details













Name

Synopsis

Description

Details



















































































































Name

Synopsis

Description

Details



















Name

Synopsis

Description

Details













xmlChar **list, int *len, - int max);xmlValidateNameValue (const xmlChar *value); +int xmlValidateNamesValue (const xmlChar *value); +int xmlValidateNmtokenValue (const xmlChar *value); +int xmlValidateNmtokensValue (const xmlChar *value);

table : the hash table
name : the name of the userdata
name2 : a second name of the userdata
name3 :

Description

Details





































































xmlValidateNameValue ()

int         xmlValidateNameValue            (const xmlChar *value);

Validate that the given value match Name production

value : an Name value
Returns :1 if valid or 0 otherwise


xmlValidateNamesValue ()

int         xmlValidateNamesValue           (const xmlChar *value);

Validate that the given value match Names production

value : an Names value
Returns :1 if valid or 0 otherwise


xmlValidateNmtokenValue ()

int         xmlValidateNmtokenValue         (const xmlChar *value);

Validate that the given value match Nmtoken production

[ VC: Name Token ]

value : an Nmtoken value
Returns :1 if valid or 0 otherwise


xmlValidateNmtokensValue ()

int         xmlValidateNmtokensValue        (const xmlChar *value);

Validate that the given value match Nmtokens production

[ VC: Name Token ]

value : an Nmtokens value
Returns :1 if valid or 0 otherwise