Annotation of embedaddon/libxml2/result/ent10.sax2, revision 1.1

1.1     ! misho       1: SAX.setDocumentLocator()
        !             2: SAX.startDocument()
        !             3: SAX.internalSubset(rnode, , )
        !             4: SAX.elementDecl(rnode, 4, ...)
        !             5: SAX.elementDecl(f, 3, ...)
        !             6: SAX.attributeDecl(f, att1, 1, 4, J, ...)
        !             7: SAX.entityDecl(f, 1, (null), (null), 
        !             8:    <f>
        !             9:    hello world
        !            10:    </f>
        !            11:    )
        !            12: SAX.getEntity(f)
        !            13: SAX.externalSubset(rnode, , )
        !            14: SAX.startElementNs(rnode, NULL, NULL, 0, 0, 0)
        !            15: SAX.characters(
        !            16:    , 4)
        !            17: SAX.getEntity(f)
        !            18: SAX.ignorableWhitespace(
        !            19:    , 4)
        !            20: SAX.startElementNs(f, NULL, NULL, 0, 1, 1, att1='J...', 1)
        !            21: SAX.characters(
        !            22:    hello world
        !            23:    , 19)
        !            24: SAX.endElementNs(f, NULL, NULL)
        !            25: SAX.characters(
        !            26:    , 4)
        !            27: SAX.reference(f)
        !            28: SAX.characters(
        !            29: , 1)
        !            30: SAX.endElementNs(rnode, NULL, NULL)
        !            31: SAX.endDocument()

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>