summaryrefslogtreecommitdiff
path: root/plugins/MirOTR/ekhtml/TODO
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-05-19 18:01:32 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-05-19 18:01:32 +0000
commitb1509f22892dc98057c750e7fae39ded5cea3b09 (patch)
tree6bdcc9379ae86339a67022b758575729d1304074 /plugins/MirOTR/ekhtml/TODO
parente7a776a6f5ab323cd9dd824e815846ef268fa7f1 (diff)
added MirOTR
git-svn-id: http://svn.miranda-ng.org/main/trunk@83 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirOTR/ekhtml/TODO')
-rw-r--r--plugins/MirOTR/ekhtml/TODO24
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/MirOTR/ekhtml/TODO b/plugins/MirOTR/ekhtml/TODO
new file mode 100644
index 0000000000..6a0ddaff19
--- /dev/null
+++ b/plugins/MirOTR/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.