xmlNewEntityInputStream ()
-xmlParserInputPtr xmlNewEntityInputStream (xmlParserCtxtPtr ctxt,
xmlEntityPtr entity)
+xmlParserInputPtr xmlNewEntityInputStream (xmlParserCtxtPtr ctxt,
xmlEntityPtr ent)
DEPRECATED: Internal function, do not use. Create a new input stream based on an xmlEntityPtr
@@ -1098,7 +1115,7 @@ int xmlSwitchToEncoding (entity:
+ent: |
an Entity pointer |
@@ -1359,7 +1376,7 @@ int xmlSwitchToEncoding (xmlParseContent ()
void xmlParseContent (xmlParserCtxtPtr ctxt)
-Parse a content sequence. Stops at EOF or '</'. [43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*
+Parse XML element content. This is useful if you're only interested in custom SAX callbacks. If you want a node list, use xmlParseInNodeContext.
@@ -1602,7 +1619,7 @@ int xmlSwitchToEncoding (xmlParseEntityRef ()
xmlEntityPtr xmlParseEntityRef (xmlParserCtxtPtr ctxt)
-DEPRECATED: Internal function, don't use. Parse an entitiy reference. Always consumes '&'. [68] EntityRef ::= '&' Name ';' [ WFC: Entity Declared ] In a document without any DTD, a document with only an internal DTD subset which contains no parameter entity references, or a document with "standalone='yes'", the Name given in the entity reference must match that in an entity declaration, except that well-formed documents need not declare any of the following entities: amp, lt, gt, apos, quot. The declaration of a parameter entity must precede any reference to it. Similarly, the declaration of a general entity must precede any reference to it which appears in a default value in an attribute-list declaration. Note that if entities are declared in the external subset or in external parameter entities, a non-validating processor is not obligated to read and process their declarations; for such documents, the rule that an entity must be declared is a well-formedness constraint only if standalone='yes'. [ WFC: Parsed Entity ] An entity reference must not contain the name of an unparsed entity
+DEPRECATED: Internal function, don't use.
@@ -2182,7 +2199,7 @@ int xmlSwitchToEncoding (xmlPushInput ()
int xmlPushInput (xmlParserCtxtPtr ctxt,
xmlParserInputPtr input)
-xmlPushInput: switch to a new input stream which is stacked on top of the previous one(s).
+Push an input stream onto the stack. This makes the parser use an input returned from advanced functions like xmlNewInputURL or xmlNewInputMemory.
@@ -2243,7 +2260,7 @@ int xmlSwitchToEncoding (xmlSkipBlankChars ()
int xmlSkipBlankChars (xmlParserCtxtPtr ctxt)
-DEPRECATED: Internal function, do not use. skip all blanks character found at that point in the input streams. It pops up finished entities in the process if allowable at that point.
+DEPRECATED: Internal function, do not use. Skip whitespace in the input stream.
@@ -2262,7 +2279,7 @@ int xmlSwitchToEncoding (
xmlSplitQName ()
-xmlChar * xmlSplitQName (xmlParserCtxtPtr ctxt,
const xmlChar * name,
xmlChar ** prefix)
+xmlChar * xmlSplitQName (xmlParserCtxtPtr ctxt,
const xmlChar * name,
xmlChar ** prefixOut)
parse an UTF8 encoded XML qualified name string [NS 5] QName ::= (Prefix ':')? LocalPart [NS 6] Prefix ::= NCName [NS 7] LocalPart ::= NCName
@@ -2277,7 +2294,7 @@ int xmlSwitchToEncoding (prefix:
+prefixOut: |
a xmlChar ** |
@@ -2322,7 +2339,7 @@ int xmlSwitchToEncoding (xmlStringDecodeEntities ()
xmlChar * xmlStringDecodeEntities (xmlParserCtxtPtr ctxt,
const xmlChar * str,
int what,
xmlChar end,
xmlChar end2,
xmlChar end3)
-DEPRECATED: Internal function, don't use. Takes a entity string content and process to do the adequate substitutions. [67] Reference ::= EntityRef | CharRef [69] PEReference ::= '%' Name ';'
+DEPRECATED: Internal function, don't use.
@@ -2364,7 +2381,7 @@ int