mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2026-01-26 21:41:34 +03:00
21 lines
593 B
Plaintext
21 lines
593 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.internalSubset(test, (null), (null))
|
|
SAX.elementDecl(test, 3, ...)
|
|
SAX.entityDecl(xx, 4, (null), (null), %zz;)
|
|
SAX.getEntity(xx)
|
|
SAX.entityDecl(zz, 4, (null), (null), <!ENTITY tricky "error-prone" >)
|
|
SAX.getEntity(zz)
|
|
SAX.getEntity(xx)
|
|
SAX.warning: xmlParsePEReference: %xx; not found
|
|
SAX.startElement(test)
|
|
SAX.characters(This sample shows a , 20)
|
|
SAX.getEntity(tricky)
|
|
SAX.isStandalone()
|
|
SAX.hasInternalSubset()
|
|
SAX.hasExternalSubset()
|
|
SAX.error: Entity 'tricky' not defined
|
|
SAX.characters( method., 8)
|
|
SAX.endElement(test)
|
|
SAX.endDocument()
|