mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-10-23 01:52:48 +03:00
parser: Undeprecate some xmlParserCtxt members
These are essential for SAX parsers.
This commit is contained in:
@@ -213,21 +213,20 @@ struct _xmlParserCtxt {
|
|||||||
xmlDocPtr myDoc;
|
xmlDocPtr myDoc;
|
||||||
/* is the document well formed */
|
/* is the document well formed */
|
||||||
int wellFormed;
|
int wellFormed;
|
||||||
|
|
||||||
/* shall we replace entities ? */
|
/* shall we replace entities ? */
|
||||||
int replaceEntities XML_DEPRECATED_MEMBER;
|
int replaceEntities XML_DEPRECATED_MEMBER;
|
||||||
/* the XML version string */
|
/* the XML version string */
|
||||||
const xmlChar *version XML_DEPRECATED_MEMBER;
|
const xmlChar *version;
|
||||||
/* the declared encoding, if any */
|
/* the declared encoding, if any */
|
||||||
const xmlChar *encoding XML_DEPRECATED_MEMBER;
|
const xmlChar *encoding;
|
||||||
/* standalone document */
|
/* standalone document */
|
||||||
int standalone XML_DEPRECATED_MEMBER;
|
int standalone;
|
||||||
|
|
||||||
/* an HTML(1) document
|
/* an HTML(1) document
|
||||||
* 3 is HTML after <head>
|
* 3 is HTML after <head>
|
||||||
* 10 is HTML after <body>
|
* 10 is HTML after <body>
|
||||||
*/
|
*/
|
||||||
int html XML_DEPRECATED_MEMBER;
|
int html;
|
||||||
|
|
||||||
/* Input stream stack */
|
/* Input stream stack */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user