mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-30 22:43:14 +03:00
regenerated might fix includes problems with the Ipv6 support on solaris
* NEWS doc/*: regenerated * nanoftp.c nanohttp.c: might fix includes problems with the Ipv6 support on solaris * tree.c: patch from Markus Keim about xmlHasNsProp() on attributes defined as #IMPLIED Daniel
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
Mon Jul 7 16:39:31 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* NEWS doc/*: regenerated
|
||||||
|
* nanoftp.c nanohttp.c: might fix includes problems with the
|
||||||
|
Ipv6 support on solaris
|
||||||
|
* tree.c: patch from Markus Keim about xmlHasNsProp() on attributes
|
||||||
|
defined as #IMPLIED
|
||||||
|
|
||||||
Sun Jul 6 23:09:13 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
Sun Jul 6 23:09:13 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* configure.in doc/*: preparing release 1.5.8
|
* configure.in doc/*: preparing release 1.5.8
|
||||||
|
20
NEWS
20
NEWS
@ -15,6 +15,26 @@ to test those - More testing on RelaxNG
|
|||||||
Schemas
|
Schemas
|
||||||
|
|
||||||
|
|
||||||
|
2.5.8: Jul 6 2003:
|
||||||
|
- bugfixes: XPath, XInclude, file/URI mapping, UTF-16 save (Mark
|
||||||
|
Itzcovitz), UTF-8 checking, URI saving, error printing (William Brack),
|
||||||
|
PI related memleak, compilation without schemas or without xpath (Joerg
|
||||||
|
Schmitz-Linneweber/Garry Pennington), xmlUnlinkNode problem with DTDs,
|
||||||
|
rpm problem on , i86_64, removed a few compilation problems from 2.5.7,
|
||||||
|
xmlIOParseDTD, and xmlSAXParseDTD (Malcolm Tredinnick)
|
||||||
|
- portability: DJGPP (MsDos) , OpenVMS (Craig A. Berry)
|
||||||
|
- William Brack fixed multithreading lock problems
|
||||||
|
- IPv6 patch for FTP and HTTP accesses (Archana Shah/Wipro)
|
||||||
|
- Windows fixes (Igor Zlatkovic, Eric Zurcher), threading (St<53>phane
|
||||||
|
Bidoul)
|
||||||
|
- A few W3C Schemas Structure improvements
|
||||||
|
- W3C Schemas Datatype improvements (Charlie Bozeman)
|
||||||
|
- Python bindings for thread globals (St<53>phane Bidoul), and method/class
|
||||||
|
generator
|
||||||
|
- added --nonet option to xmllint
|
||||||
|
- documentation improvements (John Fleck)
|
||||||
|
|
||||||
|
|
||||||
2.5.7: Apr 25 2003:
|
2.5.7: Apr 25 2003:
|
||||||
- Relax-NG: Compiling to regexp and streaming validation on top of the
|
- Relax-NG: Compiling to regexp and streaming validation on top of the
|
||||||
xmlReader interface, added to xmllint --stream
|
xmlReader interface, added to xmllint --stream
|
||||||
|
@ -52,6 +52,12 @@
|
|||||||
#ifdef HAVE_SYS_SELECT_H
|
#ifdef HAVE_SYS_SELECT_H
|
||||||
#include <sys/select.h>
|
#include <sys/select.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_SYS_SOCKET_H
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_SYS_TYPES_H
|
||||||
|
#include <sys/types.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_STRINGS_H
|
#ifdef HAVE_STRINGS_H
|
||||||
#include <strings.h>
|
#include <strings.h>
|
||||||
#endif
|
#endif
|
||||||
|
@ -27,6 +27,9 @@
|
|||||||
#ifdef HAVE_UNISTD_H
|
#ifdef HAVE_UNISTD_H
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_SYS_TYPES_H
|
||||||
|
#include <sys/types.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_SYS_SOCKET_H
|
#ifdef HAVE_SYS_SOCKET_H
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#endif
|
#endif
|
||||||
|
12
tree.c
12
tree.c
@ -5560,7 +5560,9 @@ xmlHasProp(xmlNodePtr node, const xmlChar *name) {
|
|||||||
attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name);
|
attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name);
|
||||||
if ((attrDecl == NULL) && (doc->extSubset != NULL))
|
if ((attrDecl == NULL) && (doc->extSubset != NULL))
|
||||||
attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name);
|
attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name);
|
||||||
if (attrDecl != NULL)
|
if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL))
|
||||||
|
/* return attribute declaration only if a default value is given
|
||||||
|
(that includes #FIXED declarations) */
|
||||||
return((xmlAttrPtr) attrDecl);
|
return((xmlAttrPtr) attrDecl);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -5701,7 +5703,9 @@ xmlGetProp(xmlNodePtr node, const xmlChar *name) {
|
|||||||
attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name);
|
attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name);
|
||||||
if ((attrDecl == NULL) && (doc->extSubset != NULL))
|
if ((attrDecl == NULL) && (doc->extSubset != NULL))
|
||||||
attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name);
|
attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name);
|
||||||
if (attrDecl != NULL)
|
if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL))
|
||||||
|
/* return attribute declaration only if a default value is given
|
||||||
|
(that includes #FIXED declarations) */
|
||||||
return(xmlStrdup(attrDecl->defaultValue));
|
return(xmlStrdup(attrDecl->defaultValue));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -5756,7 +5760,9 @@ xmlGetNoNsProp(xmlNodePtr node, const xmlChar *name) {
|
|||||||
attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name);
|
attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name);
|
||||||
if ((attrDecl == NULL) && (doc->extSubset != NULL))
|
if ((attrDecl == NULL) && (doc->extSubset != NULL))
|
||||||
attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name);
|
attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name);
|
||||||
if (attrDecl != NULL)
|
if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL))
|
||||||
|
/* return attribute declaration only if a default value is given
|
||||||
|
(that includes #FIXED declarations) */
|
||||||
return(xmlStrdup(attrDecl->defaultValue));
|
return(xmlStrdup(attrDecl->defaultValue));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user