Annotation of embedaddon/libxml2/result/xml1.sax2, revision 1.1
1.1 ! misho 1: SAX.setDocumentLocator()
! 2: SAX.startDocument()
! 3: SAX.internalSubset(test, , )
! 4: SAX.entityDecl(example, 1, (null), (null), <p>An ampersand (&) may be escaped
! 5: numerically (&#38;) or with a general entity
! 6: (&amp;).</p>)
! 7: SAX.getEntity(example)
! 8: SAX.externalSubset(test, , )
! 9: SAX.startElementNs(test, NULL, NULL, 0, 0, 0)
! 10: SAX.getEntity(example)
! 11: SAX.startElementNs(p, NULL, NULL, 0, 0, 0)
! 12: SAX.characters(An ampersand (, 14)
! 13: SAX.characters(&, 1)
! 14: SAX.characters() may be escaped
! 15: numerically , 31)
! 16: SAX.characters(&, 1)
! 17: SAX.characters(#38;) or with a general entity, 34)
! 18: SAX.characters(&, 1)
! 19: SAX.characters(amp;)., 6)
! 20: SAX.endElementNs(p, NULL, NULL)
! 21: SAX.reference(example)
! 22: SAX.endElementNs(test, NULL, NULL)
! 23: SAX.endDocument()
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>