mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
doc: Make apibuild.py work again
This commit is contained in:
11
HTMLparser.c
11
HTMLparser.c
@ -4268,6 +4268,13 @@ htmlParseElement(htmlParserCtxtPtr ctxt) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* htmlCtxtParseContentInternal:
|
||||||
|
* @ctxt: parser context
|
||||||
|
* @input: parser input
|
||||||
|
*
|
||||||
|
* Returns a node list.
|
||||||
|
*/
|
||||||
xmlNodePtr
|
xmlNodePtr
|
||||||
htmlCtxtParseContentInternal(htmlParserCtxtPtr ctxt, xmlParserInputPtr input) {
|
htmlCtxtParseContentInternal(htmlParserCtxtPtr ctxt, xmlParserInputPtr input) {
|
||||||
xmlNodePtr root;
|
xmlNodePtr root;
|
||||||
@ -4694,7 +4701,7 @@ htmlCreateDocParserCtxt(const xmlChar *str, const char *url,
|
|||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
enum xmlLookupStates {
|
typedef enum {
|
||||||
LSTATE_TAG_NAME = 0,
|
LSTATE_TAG_NAME = 0,
|
||||||
LSTATE_BEFORE_ATTR_NAME,
|
LSTATE_BEFORE_ATTR_NAME,
|
||||||
LSTATE_ATTR_NAME,
|
LSTATE_ATTR_NAME,
|
||||||
@ -4703,7 +4710,7 @@ enum xmlLookupStates {
|
|||||||
LSTATE_ATTR_VALUE_DQUOTED,
|
LSTATE_ATTR_VALUE_DQUOTED,
|
||||||
LSTATE_ATTR_VALUE_SQUOTED,
|
LSTATE_ATTR_VALUE_SQUOTED,
|
||||||
LSTATE_ATTR_VALUE_UNQUOTED
|
LSTATE_ATTR_VALUE_UNQUOTED
|
||||||
};
|
} xmlLookupStates;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* htmlParseLookupGt:
|
* htmlParseLookupGt:
|
||||||
|
@ -21,6 +21,7 @@ debugsym=None
|
|||||||
ignored_files = {
|
ignored_files = {
|
||||||
"config.h": "generated portability layer",
|
"config.h": "generated portability layer",
|
||||||
"libxml.h": "internal only",
|
"libxml.h": "internal only",
|
||||||
|
"legacy.c": "legacy code",
|
||||||
"testModule.c": "test tool",
|
"testModule.c": "test tool",
|
||||||
"testapi.c": "generated regression tests",
|
"testapi.c": "generated regression tests",
|
||||||
"runtest.c": "regression tests program",
|
"runtest.c": "regression tests program",
|
||||||
@ -57,6 +58,7 @@ ignored_words = {
|
|||||||
"LIBXML_ATTR_ALLOC_SIZE": (3, "macro for gcc checking extension"),
|
"LIBXML_ATTR_ALLOC_SIZE": (3, "macro for gcc checking extension"),
|
||||||
"ATTRIBUTE_NO_SANITIZE": (3, "macro keyword"),
|
"ATTRIBUTE_NO_SANITIZE": (3, "macro keyword"),
|
||||||
"ATTRIBUTE_NO_SANITIZE_INTEGER": (0, "macro keyword"),
|
"ATTRIBUTE_NO_SANITIZE_INTEGER": (0, "macro keyword"),
|
||||||
|
"ATTRIBUTE_COUNTED_BY": (3, "macro keyword"),
|
||||||
"XML_DEPRECATED": (0, "macro keyword"),
|
"XML_DEPRECATED": (0, "macro keyword"),
|
||||||
"XML_DEPRECATED_MEMBER": (0, "macro keyword"),
|
"XML_DEPRECATED_MEMBER": (0, "macro keyword"),
|
||||||
"XML_GLOBALS_ALLOC": (0, "macro keyword"),
|
"XML_GLOBALS_ALLOC": (0, "macro keyword"),
|
||||||
|
Reference in New Issue
Block a user