Tag
Hash :
97fea18b
Author :
Date :
1999-06-26T23:07:37
Allocate a per-parser SAX table, correct the SAX results, Daniel.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
SAX.setDocumentLocator()
SAX.startDocument()
SAX.startElement(D:propertyupdate, xmlns:D='http://www.ietf.org/standards/dav/', xmlns:Z='http://www.w3.com/standards/z39.50/')
SAX.characters(
<D:set>
<D:prop>
, 3)
SAX.startElement(D:set)
SAX.characters(
<D:prop>
<Z:authors, 5)
SAX.startElement(D:prop)
SAX.characters(
<Z:authors>
<Z:, 7)
SAX.startElement(Z:authors)
SAX.characters(
<Z:Author>Jim Whitehe, 9)
SAX.startElement(Z:Author)
SAX.characters(Jim Whitehead</Z:Author>
, 13)
SAX.endElement(Z:Author)
SAX.characters(
<Z:Author>Roy Fieldin, 9)
SAX.startElement(Z:Author)
SAX.characters(Roy Fielding</Z:Author>
, 12)
SAX.endElement(Z:Author)
SAX.characters(
</Z:authors>
</D:pr, 7)
SAX.endElement(Z:authors)
SAX.characters(
</D:prop>
</D:set>
<D, 5)
SAX.endElement(D:prop)
SAX.characters(
</D:set>
<D:remove>
<, 3)
SAX.endElement(D:set)
SAX.characters(
<D:remove>
<D:prop>
, 3)
SAX.startElement(D:remove)
SAX.characters(
<D:prop>
<Z:Copyrig, 5)
SAX.startElement(D:prop)
SAX.characters(
<Z:Copyright-Owner/>
, 7)
SAX.startElement(Z:Copyright-Owner)
SAX.endElement(Z:Copyright-Owner)
SAX.characters(
</D:prop>
</D:remove>
<, 5)
SAX.endElement(D:prop)
SAX.characters(
</D:remove>
</D:propertyupd, 3)
SAX.endElement(D:remove)
SAX.characters(
</D:propertyupdate>
, 1)
SAX.endElement(D:propertyupdate)
SAX.endDocument()