Annotation of XML/TODO, revision 1.1

1.1     ! daniel      1: 
        !             2:            TODO for the XML parser:
        !             3: 
        !             4: - Support for UTF-8 encoding
        !             5: - progressive parsing. Currently the parser uses a single
        !             6:   string containing the full document. The good point is
        !             7:   that there is no context associated with the parser, the
        !             8:   full state is in the stack. The bad point is that such a
        !             9:   recursive disign is hard to make progressive ...
        !            10: - DOM support, instead of using a proprietary in memory
        !            11:   format for the document representation, the parser should
        !            12:   call a DOM API to actually build the resulting document.
        !            13:   Then the parser becomes independent of the in-memory
        !            14:   representation of the document. Even better using RPC's
        !            15:   the parser can actually build the document in another
        !            16:   program.
        !            17: - finish the support for Entities.
        !            18: - Support for Comments (bad, should be in ASAP, they are parsed
        !            19:   but not stored).
        !            20: - Support for PI.
        !            21: - Support for CDATA.
        !            22: 
        !            23: $Id$

Webmaster