diff options
author | admin@progandy.co.cc <admin@progandy.co.cc@eced67a3-f377-a0ae-92ae-d6de1850b05a> | 2010-09-13 18:11:13 +0000 |
---|---|---|
committer | admin@progandy.co.cc <admin@progandy.co.cc@eced67a3-f377-a0ae-92ae-d6de1850b05a> | 2010-09-13 18:11:13 +0000 |
commit | 376594ac1d65cbb31165f5a74775d624c3fd2981 (patch) | |
tree | b1f9bf2ee2f1a82c5d9378c03cf09f72535c001d /ekhtml/TODO | |
parent | 99ef7f1cfcaa4ead4b860faec88754abbe31ebfc (diff) |
- added basic html conversion for receiving (maybe a bit too powerful)
- some bugfixes
git-svn-id: http://mirotr.googlecode.com/svn/trunk@12 eced67a3-f377-a0ae-92ae-d6de1850b05a
Diffstat (limited to 'ekhtml/TODO')
-rw-r--r-- | ekhtml/TODO | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ekhtml/TODO b/ekhtml/TODO new file mode 100644 index 0000000..6a0ddaf --- /dev/null +++ b/ekhtml/TODO @@ -0,0 +1,24 @@ +- Give more information in callbacks, such as when the beginning and + end braces of a tag occurred (offset in the stream) + +- Provide a way to parse entity-refs. This will be handy for usertrack + in that we can then just specify a &USERTRACK; entity anywhere, and + have it substituted with the session ID. + +- Make sure comments and <!FOO tags are processed directly. Provide the + option of either passing them through as raw data or as actual structures + +- Possibly make the return value of a flushing operation more usable by + external programs. I.e. usertrack's callbacks simply pass the brigade, + and really have no way of returning any result information back up the + stack and out of a feed or flush operation. + +- Perhaps speed up some of the charmap lookup operations by making a 64k + table, and comparing short values. + +- Put some goto's in the starttag parsing to immediately jump between + some of the state transitions. + +- Maybe make starttag registering return an integer, representing the + tag that is requested. That way callbacks won't have to strcmp, and + can just use the integer. |