aboutsummaryrefslogtreecommitdiffstats
path: root/TODO
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2007-09-02 19:05:16 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2007-09-02 19:05:16 -0500
commit66a30f539e2b4941c552e7a3e7de414c9cba5738 (patch)
tree8ed06a48f11f078451a59e0f600e1c06ff467228 /TODO
parentd7815eea4ce679106b1edf559527cd5b29c17749 (diff)
downloadluairc-66a30f539e2b4941c552e7a3e7de414c9cba5738.tar.gz
luairc-66a30f539e2b4941c552e7a3e7de414c9cba5738.zip
on second thought, let's not release something that ugly
Diffstat (limited to 'TODO')
-rw-r--r--TODO6
1 files changed, 3 insertions, 3 deletions
diff --git a/TODO b/TODO
index 5eff581..e97617b 100644
--- a/TODO
+++ b/TODO
@@ -4,15 +4,15 @@ Before next release
- Allow the user to set the socket ip (for dcc, etc) in case it's different from what we detect (behind a firewall, etc)
- Rework the way irc.lua uses things from modules - there are quite a few things which shouldn't be part of the public user interface which are right now. Probably just use the leading underscore convention for right now, but hopefully a lot of that stuff can be refactored.
- Don't send color escape sequences to files if we have redirected output
-
-For the future
-==============
- Rework the way CTCP quoting is handled throughout the code... the whole string/table thing is pretty ugly
- Rework callback system to use registration rather than just assigning to stuff inside the irc module, so that we can do things like have multiple handlers automatically
- Separate out the DCC module some more so that the callbacks aren't registered unless the module is loaded
- Also separate out all of the CTCP commands/callbacks into the CTCP module
- The chain of callbacks for sending a file over DCC shouldn't have to pass the filesize all around... it's only needed at the end, and it can be gotten easily from the file object which we are already passing around
- We should also probably be seeking to the beginning of the file before sending it over DCC (or do we want to allow sending partial files through manually specifying the offset and size?)
+
+For the future
+==============
- Implement callbacks for user mode changes (need to figure out how to represent users in the callback info)
- Allow a server parameter in whois() so that the returned data can include the user's idle time
- chan:ban()/chan:unban() should take a usermask, not a nick, or be able to generate a usermask from a nick, or something like that