1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00
libxml2/result/ns6.sax
Daniel Veillard 48df9613ba fixed namespace bug in push mode reported by Rob Richards added it to the
* parser.c: fixed namespace bug in push mode reported by
  Rob Richards
* test/ns6 result//ns6*: added it to the regression tests
* xmlmodule.c testModule.c include/libxml/xmlmodule.h:
  added an extra option argument to module opening and defined
  a couple of flags to the API.
Daniel
2005-01-04 21:50:05 +00:00

16 lines
278 B
Plaintext

SAX.setDocumentLocator()
SAX.startDocument()
SAX.startElement(root)
SAX.characters(
, 3)
SAX.startElement(foo, xmlns='http://abc')
SAX.endElement(foo)
SAX.characters(
, 3)
SAX.startElement(bar)
SAX.endElement(bar)
SAX.characters(
, 1)
SAX.endElement(root)
SAX.endDocument()