mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-02-21 17:57:22 +03:00
Added xmlValidGetValidElements and xmlValidGetPotentialChildren, Completed and cleaned up the tests, Added doc for new modules gnome-xml-xmlmemory.html and gnome-xml-nanohttp.html, Daniel
18 lines
293 B
XML
18 lines
293 B
XML
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.startElement(doc)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.comment( document start )
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(empty)
|
|
SAX.endElement(empty)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.comment( document end )
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(doc)
|
|
SAX.endDocument()
|