File:  [Public] / XML / TODO
Revision 1.1: download - view: text, annotated - select for diffs
Tue Jun 16 02:20:00 1998 UTC (25 years, 11 months ago) by daniel
Branches: MAIN
CVS tags: HEAD
Updated the Makefiles, added the TODO, Daniel.


           TODO for the XML parser:

- Support for UTF-8 encoding
- progressive parsing. Currently the parser uses a single
  string containing the full document. The good point is
  that there is no context associated with the parser, the
  full state is in the stack. The bad point is that such a
  recursive disign is hard to make progressive ...
- DOM support, instead of using a proprietary in memory
  format for the document representation, the parser should
  call a DOM API to actually build the resulting document.
  Then the parser becomes independent of the in-memory
  representation of the document. Even better using RPC's
  the parser can actually build the document in another
  program.
- finish the support for Entities.
- Support for Comments (bad, should be in ASAP, they are parsed
  but not stored).
- Support for PI.
- Support for CDATA.

$Id: TODO,v 1.1 1998/06/16 02:20:00 daniel Exp $

Webmaster