mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-04 05:17:37 +03:00
2b8c4a151b
* Makefile.am: changed 'make tests' to use a concise output, scrolling to see where thing broke wasn't pleasant * configure.in: some beta4 preparation, but not ready yet * error.c globals.c include/libxml/globals.h include/libxml/xmlerror.h: new error handling code, last error informations are stored in the parsing context or a global variable, new APIs to handle the xmlErrorPtr type. * parser.c parserInternals.c valid.c : started migrating to the new error handling code, it's a royal pain. * include/libxml/parser.h include/libxml/parserInternals.h: moved the definition of xmlNewParserCtxt() * parser.c: small potential buffer access problem in push code provided by Justin Fletcher * result/*.sax result/VC/PENesting* result/namespaces/* result/valid/*.err: some error messages were sligthly changed. Daniel
18 lines
563 B
Plaintext
18 lines
563 B
Plaintext
xmlSAXUserParseFile returned error 27
|
|
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.internalSubset(test, , )
|
|
SAX.elementDecl(test, 3, ...)
|
|
SAX.entityDecl(xx, 4, (null), (null), %zz;)
|
|
SAX.getParameterEntity(xx)
|
|
SAX.entityDecl(zz, 4, (null), (null), <!ENTITY tricky "error-prone" >)
|
|
SAX.getParameterEntity(zz)
|
|
SAX.getParameterEntity(xx)
|
|
SAX.error: PEReference: %xx; not found
|
|
SAX.characters(This sample shows a , 20)
|
|
SAX.getEntity(tricky)
|
|
SAX.error: Entity 'tricky' not defined
|
|
SAX.characters( method., 8)
|
|
SAX.endDocument()
|
|
xmlSAXUserParseFile returned error 27
|