mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-14 19:24:06 +03:00
b717abdd09
Always use XML_WAR_UNDECLARED_ENTITY with warning error level in documents with external subset or parameter entities. Use XML_ERR_UNDECLARED_ENTITY otherwise.
22 lines
726 B
Plaintext
22 lines
726 B
Plaintext
xmlParseDocument returned error 26
|
|
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.characters(', 1)
|
|
SAX.endElementNs(para, NULL, NULL)
|
|
SAX.endElementNs(item, NULL, NULL)
|
|
SAX.endDocument()
|