mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-24 21:33:51 +03:00
fdc5ff3657
When parsing with XML_PARSE_DTDLOAD, missing entities are always an
error.
Also consolidate behavior when validating. See b717abdd
.
22 lines
716 B
Plaintext
22 lines
716 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.internalSubset(item, , )
|
|
SAX.entityDecl(sampleEnt, 4, (null), (null), <!ELEMENT item (para)+>)
|
|
SAX.getParameterEntity(sampleEnt)
|
|
SAX.entityDecl(sampleEnt, 1, (null), (null), the hyacinth girl)
|
|
SAX.getEntity(sampleEnt)
|
|
SAX.getParameterEntity(sampleEnt)
|
|
SAX.elementDecl(item, 4, ...)
|
|
SAX.elementDecl(para, 3, ...)
|
|
SAX.externalSubset(item, , )
|
|
SAX.startElementNs(item, NULL, NULL, 0, 0, 0)
|
|
SAX.startElementNs(para, NULL, NULL, 0, 0, 0)
|
|
SAX.characters('they called me , 16)
|
|
SAX.getEntity(sampleEnt)
|
|
SAX.characters(the hyacinth girl, 17)
|
|
SAX.reference(sampleEnt)
|
|
SAX.characters(', 1)
|
|
SAX.endElementNs(para, NULL, NULL)
|
|
SAX.endElementNs(item, NULL, NULL)
|
|
SAX.endDocument()
|