mirror of
https://github.com/GNOME/libxml2.git
synced 2025-04-18 19:40:25 +08:00
* Makefile.am results/*.sax SAXResult/*: removing the SAXresults tree, keeping result in the same tree, added SAXtests to the default "make tests" Daniel
12 lines
302 B
Plaintext
12 lines
302 B
Plaintext
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(dia:diagram, xmlns:dia='http://www.lysator.liu.se/~alla/dia/')
|
|
SAX.characters(
|
|
, 3)
|
|
SAX.startElement(dia:diagramdata, dia:testattr='test')
|
|
SAX.endElement(dia:diagramdata)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(dia:diagram)
|
|
SAX.endDocument()
|