mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parser: Remove xmlSetEntityReferenceFunc feature
This has been deprecated for a long time.
This commit is contained in:
parent
b848338c5a
commit
579186f2e0
11
legacy.c
11
legacy.c
@ -739,6 +739,17 @@ xmlEncodeEntities(xmlDocPtr doc ATTRIBUTE_UNUSED,
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
/**
|
||||
* xmlSetEntityReferenceFunc:
|
||||
* @func: A valid function
|
||||
*
|
||||
* Set the function to call call back when a xml reference has been made
|
||||
*/
|
||||
void
|
||||
xmlSetEntityReferenceFunc(xmlEntityReferenceFunc func ATTRIBUTE_UNUSED)
|
||||
{
|
||||
}
|
||||
|
||||
/************************************************************************
|
||||
* *
|
||||
* Old set of SAXv1 functions *
|
||||
|
58
parser.c
58
parser.c
@ -207,11 +207,6 @@ static xmlEntityPtr xmlParseStringPEReference(xmlParserCtxtPtr ctxt,
|
||||
static int
|
||||
xmlCtxtUseOptionsInternal(xmlParserCtxtPtr ctxt, int options,
|
||||
const char *encoding);
|
||||
#ifdef LIBXML_LEGACY_ENABLED
|
||||
static void
|
||||
xmlAddEntityReference(xmlEntityPtr ent, xmlNodePtr firstNode,
|
||||
xmlNodePtr lastNode);
|
||||
#endif /* LIBXML_LEGACY_ENABLED */
|
||||
|
||||
static xmlParserErrors
|
||||
xmlCtxtParseEntity(xmlParserCtxtPtr oldctxt, xmlEntityPtr ent,
|
||||
@ -7121,10 +7116,6 @@ xmlParseReference(xmlParserCtxtPtr ctxt) {
|
||||
list = list->next;
|
||||
}
|
||||
list = ent->children;
|
||||
#ifdef LIBXML_LEGACY_ENABLED
|
||||
if (ent->etype == XML_EXTERNAL_GENERAL_PARSED_ENTITY)
|
||||
xmlAddEntityReference(ent, list, NULL);
|
||||
#endif /* LIBXML_LEGACY_ENABLED */
|
||||
}
|
||||
} else {
|
||||
if ((ret != XML_ERR_OK) &&
|
||||
@ -7251,10 +7242,6 @@ xmlParseReference(xmlParserCtxtPtr ctxt) {
|
||||
}
|
||||
cur = cur->next;
|
||||
}
|
||||
#ifdef LIBXML_LEGACY_ENABLED
|
||||
if (ent->etype == XML_EXTERNAL_GENERAL_PARSED_ENTITY)
|
||||
xmlAddEntityReference(ent, firstChild, nw);
|
||||
#endif /* LIBXML_LEGACY_ENABLED */
|
||||
} else if ((list == NULL) || (ctxt->inputNr > 0)) {
|
||||
xmlNodePtr nw = NULL, cur, next, last,
|
||||
firstChild = NULL;
|
||||
@ -7293,10 +7280,6 @@ xmlParseReference(xmlParserCtxtPtr ctxt) {
|
||||
}
|
||||
if (ent->owner == 0)
|
||||
ent->owner = 1;
|
||||
#ifdef LIBXML_LEGACY_ENABLED
|
||||
if (ent->etype == XML_EXTERNAL_GENERAL_PARSED_ENTITY)
|
||||
xmlAddEntityReference(ent, firstChild, nw);
|
||||
#endif /* LIBXML_LEGACY_ENABLED */
|
||||
} else {
|
||||
const xmlChar *nbktext;
|
||||
|
||||
@ -13563,47 +13546,6 @@ xmlParseDoc(const xmlChar *cur) {
|
||||
}
|
||||
#endif /* LIBXML_SAX1_ENABLED */
|
||||
|
||||
#ifdef LIBXML_LEGACY_ENABLED
|
||||
/************************************************************************
|
||||
* *
|
||||
* Specific function to keep track of entities references *
|
||||
* and used by the XSLT debugger *
|
||||
* *
|
||||
************************************************************************/
|
||||
|
||||
static xmlEntityReferenceFunc xmlEntityRefFunc = NULL;
|
||||
|
||||
/**
|
||||
* xmlAddEntityReference:
|
||||
* @ent : A valid entity
|
||||
* @firstNode : A valid first node for children of entity
|
||||
* @lastNode : A valid last node of children entity
|
||||
*
|
||||
* Notify of a reference to an entity of type XML_EXTERNAL_GENERAL_PARSED_ENTITY
|
||||
*/
|
||||
static void
|
||||
xmlAddEntityReference(xmlEntityPtr ent, xmlNodePtr firstNode,
|
||||
xmlNodePtr lastNode)
|
||||
{
|
||||
if (xmlEntityRefFunc != NULL) {
|
||||
(*xmlEntityRefFunc) (ent, firstNode, lastNode);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* xmlSetEntityReferenceFunc:
|
||||
* @func: A valid function
|
||||
*
|
||||
* Set the function to call call back when a xml reference has been made
|
||||
*/
|
||||
void
|
||||
xmlSetEntityReferenceFunc(xmlEntityReferenceFunc func)
|
||||
{
|
||||
xmlEntityRefFunc = func;
|
||||
}
|
||||
#endif /* LIBXML_LEGACY_ENABLED */
|
||||
|
||||
/************************************************************************
|
||||
* *
|
||||
* New set (2.6.0) of simpler and more flexible APIs *
|
||||
|
Loading…
x
Reference in New Issue
Block a user