mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-10-21 14:53:44 +03:00
- HTMLparser.c: fixed loop on invalid char in scripts
- parser.c: update to description of xmlIOParseDTD() - libxml.m4 xmlversion.h.in: changes contributed by Michael Schmeing <m.schmeing@internet-factory.de> - configure.in: preparing for 2.2.7 - Makefile.am: trying to avoid config.h and acconfig.h being included in the distrib - rebuilt the docs - configure.in: released 2.2.7 Daniel
This commit is contained in:
@@ -40,11 +40,10 @@ typedef enum {
|
||||
XML_DTD_NODE= 14,
|
||||
XML_ELEMENT_DECL= 15,
|
||||
XML_ATTRIBUTE_DECL= 16,
|
||||
#ifdef LIBXML_SGML_ENABLED
|
||||
XML_ENTITY_DECL= 17,
|
||||
XML_SGML_DOCUMENT_NODE= 18
|
||||
#else
|
||||
XML_ENTITY_DECL= 17
|
||||
XML_NAMESPACE_DECL= 18
|
||||
#ifdef LIBXML_SGML_ENABLED
|
||||
,XML_SGML_DOCUMENT_NODE= 19
|
||||
#endif
|
||||
} xmlElementType;
|
||||
|
||||
@@ -192,12 +191,13 @@ struct _xmlElement {
|
||||
* An XML namespace.
|
||||
* Note that prefix == NULL is valid, it defines the default namespace
|
||||
* within the subtree (until overriden).
|
||||
*
|
||||
* XML_GLOBAL_NAMESPACE is now deprecated for good
|
||||
* xmlNsType is unified with xmlElementType
|
||||
*/
|
||||
|
||||
typedef enum {
|
||||
XML_GLOBAL_NAMESPACE = 1, /* old style global namespace */
|
||||
XML_LOCAL_NAMESPACE /* new style local scoping */
|
||||
} xmlNsType;
|
||||
#define XML_LOCAL_NAMESPACE XML_NAMESPACE_DECL
|
||||
typedef xmlElementType xmlNsType;
|
||||
|
||||
typedef struct _xmlNs xmlNs;
|
||||
typedef xmlNs *xmlNsPtr;
|
||||
|
Reference in New Issue
Block a user