1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00
libxml2/result/xml1.sax
Daniel Veillard 4b1577f14a removing the SAXresults tree, keeping result in the same tree, added
* Makefile.am results/*.sax SAXResult/*: removing the SAXresults
  tree, keeping result in the same tree, added SAXtests to the
  default "make tests"
Daniel
2003-09-03 13:10:37 +00:00

25 lines
669 B
Plaintext

SAX.setDocumentLocator()
SAX.startDocument()
SAX.internalSubset(test, , )
SAX.entityDecl(example, 1, (null), (null), <p>An ampersand (&#38;) may be escaped
numerically (&#38;#38;) or with a general entity
(&amp;amp;).</p>)
SAX.getEntity(example)
SAX.externalSubset(test, , )
SAX.startElement(test)
SAX.getEntity(example)
SAX.startElement(p)
SAX.characters(An ampersand (, 14)
SAX.characters(&, 1)
SAX.characters() may be escaped
numerically , 31)
SAX.characters(&, 1)
SAX.characters(#38;) or with a general entity, 34)
SAX.getEntity(amp)
SAX.characters(&, 1)
SAX.characters(amp;)., 6)
SAX.endElement(p)
SAX.reference(example)
SAX.endElement(test)
SAX.endDocument()