mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parser: Deprecate more internal symbols
- xmlParseExternalSubset - xmlPushInput - xmlPopInput - xmlCopyCharMultiByte - xmlCreateEntityParserCtxt - xmlStringComment
This commit is contained in:
parent
2fcdc5f7e7
commit
e2ad249c23
@ -294,6 +294,7 @@ XMLPUBVAR const unsigned int xmlParserMaxDepth;
|
|||||||
*/
|
*/
|
||||||
XMLPUBVAR const xmlChar xmlStringText[];
|
XMLPUBVAR const xmlChar xmlStringText[];
|
||||||
XMLPUBVAR const xmlChar xmlStringTextNoenc[];
|
XMLPUBVAR const xmlChar xmlStringTextNoenc[];
|
||||||
|
XML_DEPRECATED
|
||||||
XMLPUBVAR const xmlChar xmlStringComment[];
|
XMLPUBVAR const xmlChar xmlStringComment[];
|
||||||
|
|
||||||
XML_DEPRECATED
|
XML_DEPRECATED
|
||||||
@ -310,6 +311,7 @@ XMLPUBFUN xmlParserCtxtPtr
|
|||||||
XMLPUBFUN xmlParserCtxtPtr
|
XMLPUBFUN xmlParserCtxtPtr
|
||||||
xmlCreateMemoryParserCtxt(const char *buffer,
|
xmlCreateMemoryParserCtxt(const char *buffer,
|
||||||
int size);
|
int size);
|
||||||
|
XML_DEPRECATED
|
||||||
XMLPUBFUN xmlParserCtxtPtr
|
XMLPUBFUN xmlParserCtxtPtr
|
||||||
xmlCreateEntityParserCtxt(const xmlChar *URL,
|
xmlCreateEntityParserCtxt(const xmlChar *URL,
|
||||||
const xmlChar *ID,
|
const xmlChar *ID,
|
||||||
@ -341,9 +343,11 @@ XML_DEPRECATED
|
|||||||
XMLPUBFUN xmlParserInputPtr
|
XMLPUBFUN xmlParserInputPtr
|
||||||
xmlNewEntityInputStream (xmlParserCtxtPtr ctxt,
|
xmlNewEntityInputStream (xmlParserCtxtPtr ctxt,
|
||||||
xmlEntityPtr entity);
|
xmlEntityPtr entity);
|
||||||
|
XML_DEPRECATED
|
||||||
XMLPUBFUN int
|
XMLPUBFUN int
|
||||||
xmlPushInput (xmlParserCtxtPtr ctxt,
|
xmlPushInput (xmlParserCtxtPtr ctxt,
|
||||||
xmlParserInputPtr input);
|
xmlParserInputPtr input);
|
||||||
|
XML_DEPRECATED
|
||||||
XMLPUBFUN xmlChar
|
XMLPUBFUN xmlChar
|
||||||
xmlPopInput (xmlParserCtxtPtr ctxt);
|
xmlPopInput (xmlParserCtxtPtr ctxt);
|
||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
@ -509,6 +513,7 @@ XMLPUBFUN void
|
|||||||
XML_DEPRECATED
|
XML_DEPRECATED
|
||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
xmlParseMisc (xmlParserCtxtPtr ctxt);
|
xmlParseMisc (xmlParserCtxtPtr ctxt);
|
||||||
|
XML_DEPRECATED
|
||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
xmlParseExternalSubset (xmlParserCtxtPtr ctxt,
|
xmlParseExternalSubset (xmlParserCtxtPtr ctxt,
|
||||||
const xmlChar *ExternalID,
|
const xmlChar *ExternalID,
|
||||||
@ -593,6 +598,7 @@ XMLPUBFUN int xmlCheckLanguageID (const xmlChar *lang);
|
|||||||
XML_DEPRECATED
|
XML_DEPRECATED
|
||||||
XMLPUBFUN int xmlCurrentChar (xmlParserCtxtPtr ctxt,
|
XMLPUBFUN int xmlCurrentChar (xmlParserCtxtPtr ctxt,
|
||||||
int *len);
|
int *len);
|
||||||
|
XML_DEPRECATED
|
||||||
XMLPUBFUN int xmlCopyCharMultiByte (xmlChar *out,
|
XMLPUBFUN int xmlCopyCharMultiByte (xmlChar *out,
|
||||||
int val);
|
int val);
|
||||||
XML_DEPRECATED
|
XML_DEPRECATED
|
||||||
|
6
parser.c
6
parser.c
@ -2549,6 +2549,8 @@ xmlSkipBlankCharsPE(xmlParserCtxtPtr ctxt) {
|
|||||||
* xmlPopInput:
|
* xmlPopInput:
|
||||||
* @ctxt: an XML parser context
|
* @ctxt: an XML parser context
|
||||||
*
|
*
|
||||||
|
* DEPRECATED: Internal function, don't use.
|
||||||
|
*
|
||||||
* xmlPopInput: the current input pointed by ctxt->input came to an end
|
* xmlPopInput: the current input pointed by ctxt->input came to an end
|
||||||
* pop it and return the next char.
|
* pop it and return the next char.
|
||||||
*
|
*
|
||||||
@ -2571,6 +2573,8 @@ xmlPopInput(xmlParserCtxtPtr ctxt) {
|
|||||||
* @ctxt: an XML parser context
|
* @ctxt: an XML parser context
|
||||||
* @input: an XML parser input fragment (entity, XML fragment ...).
|
* @input: an XML parser input fragment (entity, XML fragment ...).
|
||||||
*
|
*
|
||||||
|
* DEPRECATED: Internal function, don't use.
|
||||||
|
*
|
||||||
* Push an input stream onto the stack.
|
* Push an input stream onto the stack.
|
||||||
*
|
*
|
||||||
* Returns -1 in case of error or the index in the input stack
|
* Returns -1 in case of error or the index in the input stack
|
||||||
@ -7260,6 +7264,8 @@ xmlParseTextDecl(xmlParserCtxtPtr ctxt) {
|
|||||||
* @ExternalID: the external identifier
|
* @ExternalID: the external identifier
|
||||||
* @SystemID: the system identifier (or URL)
|
* @SystemID: the system identifier (or URL)
|
||||||
*
|
*
|
||||||
|
* DEPRECATED: Internal function, don't use.
|
||||||
|
*
|
||||||
* parse Markup declarations from an external subset
|
* parse Markup declarations from an external subset
|
||||||
*
|
*
|
||||||
* [30] extSubset ::= textDecl? extSubsetDecl
|
* [30] extSubset ::= textDecl? extSubsetDecl
|
||||||
|
@ -990,6 +990,8 @@ xmlStringCurrentChar(xmlParserCtxtPtr ctxt ATTRIBUTE_UNUSED,
|
|||||||
* @out: pointer to an array of xmlChar
|
* @out: pointer to an array of xmlChar
|
||||||
* @val: the char value
|
* @val: the char value
|
||||||
*
|
*
|
||||||
|
* DEPRECATED: Internal function, don't use.
|
||||||
|
*
|
||||||
* append the char value in the array
|
* append the char value in the array
|
||||||
*
|
*
|
||||||
* Returns the number of xmlChar written
|
* Returns the number of xmlChar written
|
||||||
|
@ -308,6 +308,8 @@ deprecated_funcs = {
|
|||||||
'xmlCleanupCharEncodingHandlers': True,
|
'xmlCleanupCharEncodingHandlers': True,
|
||||||
'xmlCleanupGlobals': True,
|
'xmlCleanupGlobals': True,
|
||||||
'xmlCopyChar': True,
|
'xmlCopyChar': True,
|
||||||
|
'xmlCopyCharMultiByte': True,
|
||||||
|
'xmlCreateEntityParserCtxt': True,
|
||||||
'xmlDefaultSAXHandlerInit': True,
|
'xmlDefaultSAXHandlerInit': True,
|
||||||
'xmlDictCleanup': True,
|
'xmlDictCleanup': True,
|
||||||
'xmlFileMatch': True,
|
'xmlFileMatch': True,
|
||||||
@ -341,6 +343,7 @@ deprecated_funcs = {
|
|||||||
'xmlParseEntity': True,
|
'xmlParseEntity': True,
|
||||||
'xmlParseEntityDecl': True,
|
'xmlParseEntityDecl': True,
|
||||||
'xmlParseEntityRef': True,
|
'xmlParseEntityRef': True,
|
||||||
|
'xmlParseExternalSubset': True,
|
||||||
'xmlParseMarkupDecl': True,
|
'xmlParseMarkupDecl': True,
|
||||||
'xmlParseMisc': True,
|
'xmlParseMisc': True,
|
||||||
'xmlParseName': True,
|
'xmlParseName': True,
|
||||||
@ -368,6 +371,7 @@ deprecated_funcs = {
|
|||||||
'xmlParserSetReplaceEntities': True,
|
'xmlParserSetReplaceEntities': True,
|
||||||
'xmlParserSetValidate': True,
|
'xmlParserSetValidate': True,
|
||||||
'xmlPedanticParserDefault': True,
|
'xmlPedanticParserDefault': True,
|
||||||
|
'xmlPopInput': True,
|
||||||
'xmlRecoverDoc': True,
|
'xmlRecoverDoc': True,
|
||||||
'xmlRecoverFile': True,
|
'xmlRecoverFile': True,
|
||||||
'xmlRecoverMemory': True,
|
'xmlRecoverMemory': True,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user