mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-12 09:17:37 +03:00
ac097cc683
* configure.in doc/* : 2.6.0beta1 changes * SAX2.c hash.c parser.c parserInternals.c: Fixing attribute normalization, might not be totally fixed but this should make sure SAX event provide the right strings for attributes except entities for which libxml2 is different by default This should fix #109564 * result/attrib.xml.sax result/ent3.sax result/p3p.sax: minor changes in attribute callback values * result/c14n/with-comments/example-4 result/c14n/without-comments/example-4: this also fixes a subtle bug in the canonicalization tests. Daniel
14 lines
406 B
Plaintext
14 lines
406 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.internalSubset(EXAMPLE, , example.dtd)
|
|
SAX.entityDecl(xml, 1, (null), (null), Extensible Markup Language)
|
|
SAX.getEntity(xml)
|
|
SAX.externalSubset(EXAMPLE, , example.dtd)
|
|
SAX.getEntity(amp)
|
|
SAX.getEntity(xml)
|
|
SAX.startElement(EXAMPLE, prop1='a&b', prop2='&xml;')
|
|
SAX.characters(
|
|
Test of entities in attribu, 35)
|
|
SAX.endElement(EXAMPLE)
|
|
SAX.endDocument()
|