mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-02-11 01:58:56 +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
14 lines
251 B
XML
14 lines
251 B
XML
SAX.setDocumentLocator()
|
|
SAX.startDocument()
|
|
SAX.comment( document start )
|
|
SAX.startElement(doc)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.startElement(empty)
|
|
SAX.endElement(empty)
|
|
SAX.characters(
|
|
, 1)
|
|
SAX.endElement(doc)
|
|
SAX.comment( document end )
|
|
SAX.endDocument()
|