mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
valid: Deprecate old DTD serialization API
This commit is contained in:
parent
fbe10a466f
commit
cf8751942b
@ -148,9 +148,11 @@ XMLPUBFUN xmlNotationTablePtr
|
|||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
xmlFreeNotationTable (xmlNotationTablePtr table);
|
xmlFreeNotationTable (xmlNotationTablePtr table);
|
||||||
#ifdef LIBXML_OUTPUT_ENABLED
|
#ifdef LIBXML_OUTPUT_ENABLED
|
||||||
|
XML_DEPRECATED
|
||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
xmlDumpNotationDecl (xmlBufferPtr buf,
|
xmlDumpNotationDecl (xmlBufferPtr buf,
|
||||||
xmlNotationPtr nota);
|
xmlNotationPtr nota);
|
||||||
|
/* XML_DEPRECATED, still used in lxml */
|
||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
xmlDumpNotationTable (xmlBufferPtr buf,
|
xmlDumpNotationTable (xmlBufferPtr buf,
|
||||||
xmlNotationTablePtr table);
|
xmlNotationTablePtr table);
|
||||||
@ -182,13 +184,12 @@ XMLPUBFUN void
|
|||||||
xmlElementContentPtr content,
|
xmlElementContentPtr content,
|
||||||
int englob);
|
int englob);
|
||||||
#ifdef LIBXML_OUTPUT_ENABLED
|
#ifdef LIBXML_OUTPUT_ENABLED
|
||||||
/* DEPRECATED */
|
XML_DEPRECATED
|
||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
xmlSprintfElementContent(char *buf,
|
xmlSprintfElementContent(char *buf,
|
||||||
xmlElementContentPtr content,
|
xmlElementContentPtr content,
|
||||||
int englob);
|
int englob);
|
||||||
#endif /* LIBXML_OUTPUT_ENABLED */
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
||||||
/* DEPRECATED */
|
|
||||||
|
|
||||||
/* Element */
|
/* Element */
|
||||||
XMLPUBFUN xmlElementPtr
|
XMLPUBFUN xmlElementPtr
|
||||||
@ -204,9 +205,11 @@ XMLPUBFUN xmlElementTablePtr
|
|||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
xmlFreeElementTable (xmlElementTablePtr table);
|
xmlFreeElementTable (xmlElementTablePtr table);
|
||||||
#ifdef LIBXML_OUTPUT_ENABLED
|
#ifdef LIBXML_OUTPUT_ENABLED
|
||||||
|
XML_DEPRECATED
|
||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
xmlDumpElementTable (xmlBufferPtr buf,
|
xmlDumpElementTable (xmlBufferPtr buf,
|
||||||
xmlElementTablePtr table);
|
xmlElementTablePtr table);
|
||||||
|
XML_DEPRECATED
|
||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
xmlDumpElementDecl (xmlBufferPtr buf,
|
xmlDumpElementDecl (xmlBufferPtr buf,
|
||||||
xmlElementPtr elem);
|
xmlElementPtr elem);
|
||||||
@ -240,9 +243,11 @@ XMLPUBFUN xmlAttributeTablePtr
|
|||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
xmlFreeAttributeTable (xmlAttributeTablePtr table);
|
xmlFreeAttributeTable (xmlAttributeTablePtr table);
|
||||||
#ifdef LIBXML_OUTPUT_ENABLED
|
#ifdef LIBXML_OUTPUT_ENABLED
|
||||||
|
XML_DEPRECATED
|
||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
xmlDumpAttributeTable (xmlBufferPtr buf,
|
xmlDumpAttributeTable (xmlBufferPtr buf,
|
||||||
xmlAttributeTablePtr table);
|
xmlAttributeTablePtr table);
|
||||||
|
XML_DEPRECATED
|
||||||
XMLPUBFUN void
|
XMLPUBFUN void
|
||||||
xmlDumpAttributeDecl (xmlBufferPtr buf,
|
xmlDumpAttributeDecl (xmlBufferPtr buf,
|
||||||
xmlAttributePtr attr);
|
xmlAttributePtr attr);
|
||||||
|
12
valid.c
12
valid.c
@ -1409,6 +1409,8 @@ xmlCopyElementTable(xmlElementTablePtr table) {
|
|||||||
* @buf: the XML buffer output
|
* @buf: the XML buffer output
|
||||||
* @elem: An element table
|
* @elem: An element table
|
||||||
*
|
*
|
||||||
|
* DEPRECATED: Use xmlSaveTree.
|
||||||
|
*
|
||||||
* This will dump the content of the element declaration as an XML
|
* This will dump the content of the element declaration as an XML
|
||||||
* DTD definition
|
* DTD definition
|
||||||
*/
|
*/
|
||||||
@ -1443,6 +1445,8 @@ xmlDumpElementDeclScan(void *elem, void *buf,
|
|||||||
* @buf: the XML buffer output
|
* @buf: the XML buffer output
|
||||||
* @table: An element table
|
* @table: An element table
|
||||||
*
|
*
|
||||||
|
* DEPRECATED: Don't use.
|
||||||
|
*
|
||||||
* This will dump the content of the element table as an XML DTD definition
|
* This will dump the content of the element table as an XML DTD definition
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
@ -1948,6 +1952,8 @@ xmlCopyAttributeTable(xmlAttributeTablePtr table) {
|
|||||||
* @buf: the XML buffer output
|
* @buf: the XML buffer output
|
||||||
* @attr: An attribute declaration
|
* @attr: An attribute declaration
|
||||||
*
|
*
|
||||||
|
* DEPRECATED: Use xmlSaveTree.
|
||||||
|
*
|
||||||
* This will dump the content of the attribute declaration as an XML
|
* This will dump the content of the attribute declaration as an XML
|
||||||
* DTD definition
|
* DTD definition
|
||||||
*/
|
*/
|
||||||
@ -1981,6 +1987,8 @@ xmlDumpAttributeDeclScan(void *attr, void *buf,
|
|||||||
* @buf: the XML buffer output
|
* @buf: the XML buffer output
|
||||||
* @table: An attribute table
|
* @table: An attribute table
|
||||||
*
|
*
|
||||||
|
* DEPRECATED: Don't use.
|
||||||
|
*
|
||||||
* This will dump the content of the attribute table as an XML DTD definition
|
* This will dump the content of the attribute table as an XML DTD definition
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
@ -2181,6 +2189,8 @@ xmlCopyNotationTable(xmlNotationTablePtr table) {
|
|||||||
* @buf: the XML buffer output
|
* @buf: the XML buffer output
|
||||||
* @nota: A notation declaration
|
* @nota: A notation declaration
|
||||||
*
|
*
|
||||||
|
* DEPRECATED: Don't use.
|
||||||
|
*
|
||||||
* This will dump the content the notation declaration as an XML DTD definition
|
* This will dump the content the notation declaration as an XML DTD definition
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
@ -2200,6 +2210,8 @@ xmlDumpNotationDecl(xmlBufferPtr buf, xmlNotationPtr nota) {
|
|||||||
* @buf: the XML buffer output
|
* @buf: the XML buffer output
|
||||||
* @table: A notation table
|
* @table: A notation table
|
||||||
*
|
*
|
||||||
|
* DEPRECATED: Don't use.
|
||||||
|
*
|
||||||
* This will dump the content of the notation table as an XML DTD definition
|
* This will dump the content of the notation table as an XML DTD definition
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
|
Loading…
x
Reference in New Issue
Block a user