Jeremy Fincher
|
645302a163
|
Added handling for ambiguous commands to doPrivmsg.
|
2003-10-20 11:34:54 +00:00 |
|
Jeremy Fincher
|
3212ece69c
|
Finished 'big change' to allow dispatching and stuff.
|
2003-10-20 11:34:21 +00:00 |
|
Jeremy Fincher
|
55ccb85542
|
Removed the syntax command; changed interface of callbacks.findCallbackForCommand to return a list of the matching callbacks; fix help to handle the prefixing of the plugin name.
|
2003-10-20 10:25:13 +00:00 |
|
Stéphan Kochen
|
e12f69b7a2
|
Added conf.replyWithPrivateNotice and 'notice' command.
|
2003-10-20 10:10:46 +00:00 |
|
Jeremy Fincher
|
0b6c2084cf
|
Fixed handling of callbacks.ArgumentError in PrivmsgCommandAndRegexp.
|
2003-10-20 07:31:17 +00:00 |
|
Jeremy Fincher
|
7815d2c0b6
|
Added code to make dataDir/logDir/confDir directories if they don't exist.
|
2003-10-20 07:18:43 +00:00 |
|
Jeremy Fincher
|
1ddc5195d4
|
Fixed bug in list, was using .startswith instead of == for the plugin name.
|
2003-10-20 05:56:14 +00:00 |
|
Jeremy Fincher
|
eb31db6277
|
Added memoization optimization to tokenize function.
|
2003-10-20 04:26:37 +00:00 |
|
Jeremy Fincher
|
68fd496516
|
Added memoization optimization to tokenize function.
|
2003-10-20 04:17:14 +00:00 |
|
Jeremy Fincher
|
06cd9ae285
|
Added memoization optimization to tokenize function.
|
2003-10-20 04:16:44 +00:00 |
|
Jeremy Fincher
|
8fc200ae1f
|
Removed premature optimization of using the regexp to decide when to tokenize. We'll optimize when we have to, likely by making tokenize memoize.
|
2003-10-20 03:56:15 +00:00 |
|
Jeremy Fincher
|
d21a99a37a
|
Added stripping of prefix characters from help argument.
|
2003-10-19 19:19:47 +00:00 |
|
Jeremy Fincher
|
f57a523bb4
|
Oops, forgot to update the privmsgs.thread.
|
2003-10-19 15:15:58 +00:00 |
|
Jeremy Fincher
|
f917053150
|
Didn't update nickmods to match conf.nickmods when Irc.reset is called, in case we're on a dumb network like Freenode.
|
2003-10-19 13:59:00 +00:00 |
|
Jeremy Fincher
|
4c8bb936b8
|
Changed bug to reportbug.
|
2003-10-17 16:39:05 +00:00 |
|
Jeremy Fincher
|
5ff709375e
|
Oops, forgot the docstring.
|
2003-10-16 20:06:17 +00:00 |
|
Jeremy Fincher
|
2ffe5a13dd
|
Added depluralize function and fixed latent (untested) capitalization buggerishness.
|
2003-10-16 20:05:45 +00:00 |
|
Jeremy Fincher
|
121be3d9cf
|
Made the constructor take dictionaries.
|
2003-10-16 19:40:14 +00:00 |
|
Jeremy Fincher
|
f392696d98
|
Added TwoWayDictionary.
|
2003-10-16 19:36:33 +00:00 |
|
Jeremy Fincher
|
683ba63949
|
Fixed bug in IrcState.copy -- it wasn't doing deep copies.
|
2003-10-16 13:27:40 +00:00 |
|
Jeremy Fincher
|
ee24accaf7
|
Fixed bug in default argument for IrcMsg.__init__ -- args should default to (), not None.
|
2003-10-16 13:11:46 +00:00 |
|
Jeremy Fincher
|
3c676f844a
|
Removed the OwnerCommands.say command; it wasn't useful enough.
|
2003-10-16 10:47:48 +00:00 |
|
Jeremy Fincher
|
889e99cec6
|
Fixed an invalid irc.error in the part command.
|
2003-10-16 10:43:35 +00:00 |
|
Jeremy Fincher
|
63135c4c48
|
Removed a debugging print.
|
2003-10-15 06:53:54 +00:00 |
|
Jeremy Fincher
|
ed3d757081
|
Made perlReToPythonRe always raise a ValueError instead of re.error.
|
2003-10-15 05:07:07 +00:00 |
|
Jeremy Fincher
|
6476e63f20
|
Added an unban command.
|
2003-10-15 04:46:19 +00:00 |
|
Jeremy Fincher
|
1edbaab882
|
Removed a comment.
|
2003-10-15 03:32:18 +00:00 |
|
Jeremy Fincher
|
76c4b7ed4c
|
Converted the Irc class to use IrcCommandDispatcher.
|
2003-10-14 04:48:45 +00:00 |
|
Jeremy Fincher
|
b692681e1c
|
Found bug in utils.sortBy, mentioned by Tim Peters on Python-dev. Fixed, and tested.
|
2003-10-14 03:47:35 +00:00 |
|
Jeremy Fincher
|
8e37d2ae88
|
Made loadPluginModule case-insensitive.
|
2003-10-14 03:34:47 +00:00 |
|
Jeremy Fincher
|
56016de47c
|
Added more information to the load help.
|
2003-10-14 03:06:47 +00:00 |
|
Jeremy Fincher
|
6150a21ba3
|
Added an assert to unAction.
|
2003-10-14 00:39:54 +00:00 |
|
Jeremy Fincher
|
aa1b992643
|
Added error reporting to regexp-based callCommands.
|
2003-10-13 23:20:15 +00:00 |
|
Jeremy Fincher
|
a5042e2a3d
|
Oops, debug.reset opens all the fds into the same file!
|
2003-10-13 23:07:07 +00:00 |
|
Jeremy Fincher
|
1d5dfa070d
|
Added an optional key argument to cycle.
|
2003-10-13 03:58:37 +00:00 |
|
Jeremy Fincher
|
68a84e17b0
|
Changed date from 2002 to 2003.
|
2003-10-12 15:12:18 +00:00 |
|
Jeremy Fincher
|
a0fe5410c0
|
Fixed bug in perlReToReplacer where escaped slashes would stay in the output.
|
2003-10-12 13:11:53 +00:00 |
|
Jeremy Fincher
|
a1dc34643b
|
Moved setting of debug variables earlier so nothing would print when debug.stderr is false.
|
2003-10-12 12:43:24 +00:00 |
|
Jeremy Fincher
|
9eff6d997e
|
Removed/commented out some debug.printfs.
|
2003-10-12 12:42:43 +00:00 |
|
Jeremy Fincher
|
7528215674
|
Fixed handling of secure flag by IrcUser.setAuth.
|
2003-10-11 10:20:15 +00:00 |
|
Jeremy Fincher
|
5e3c5fc703
|
Faster implementations for all/any.
|
2003-10-11 03:20:51 +00:00 |
|
Jeremy Fincher
|
701380de7c
|
Updated version.
|
2003-10-10 23:18:01 +00:00 |
|
Jeremy Fincher
|
7fe7c03d81
|
Removed the whole dealio with PRINTF and whatnot.
|
2003-10-10 06:03:02 +00:00 |
|
Daniel DiPaolo
|
d9d141a8e7
|
* Added the most horribly named command ever - utils.ellipsisify
|
2003-10-10 04:28:49 +00:00 |
|
Jeremy Fincher
|
18a8f81985
|
Fixed bug in list where _exec would show.
|
2003-10-09 18:06:46 +00:00 |
|
Jeremy Fincher
|
b7f4cbe7d8
|
Added fix for msvcrt.heapmin not working in Windows 9x.
|
2003-10-09 17:24:28 +00:00 |
|
Jeremy Fincher
|
155aeebe42
|
Added dccIP and unDccIP.
|
2003-10-09 16:12:53 +00:00 |
|
Jeremy Fincher
|
8eed3f0982
|
Stupid __eq__ not being used in __ne__...
|
2003-10-09 05:46:35 +00:00 |
|
Jeremy Fincher
|
ce0002f454
|
Made IrcString more efficient/better, added a test for it.
|
2003-10-09 05:34:44 +00:00 |
|
Jeremy Fincher
|
aee2b1555b
|
Fixed to handle secure flag properly.
|
2003-10-09 05:09:05 +00:00 |
|