Edit

kc3-lang/libxml2/result/HTML/entities.html.sax

Branch :

  • Show log

    Commit

  • Author : Daniel Veillard
    Date : 2000-08-28 10:04:51
    Hash : e010c17d
    Message : Mostly HTML generation and parsing enhancements: - HTMLparser.[ch] testHTML.c: applied the second set of patches from Wayne Davison <wayned@blorf.net>, adding htmlEncodeEntities() - HTMLparser.c: fixed an ignorable white space detection bug occuring when parsing with SAX only - result/HTML/*.sax: updated since the output is now HTML encoded... Daniel.

  • result/HTML/entities.html.sax
  • SAX.setDocumentLocator()
    SAX.startDocument()
    SAX.startElement(html)
    SAX.startElement(body)
    SAX.error: htmlParseEntityRef: expecting ';'
    SAX.error: htmlParseEntityRef: no name
    SAX.startElement(p, tst='a&amp;b', tst2='a&amp;b', tst3='a &amp; b')
    SAX.characters(
    a, 2)
    SAX.characters(&amp;, 1)
    SAX.characters(b
    a, 3)
    SAX.error: htmlParseEntityRef: expecting ';'
    SAX.characters(&amp;, 1)
    SAX.characters(b, 1)
    SAX.characters(
    a , 3)
    SAX.error: htmlParseEntityRef: no name
    SAX.characters(&amp;, 1)
    SAX.characters( b
    , 3)
    SAX.endElement(p)
    SAX.ignorableWhitespace(
    , 1)
    SAX.endElement(body)
    SAX.endElement(html)
    SAX.endDocument()