0
I Use This!
Inactive

Commits : Listings

Analyzed 3 days ago. based on code collected 3 days ago.
Aug 25, 2024 — Aug 25, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Dict: Refer to the server config variable in Dict.dict's help. More... almost 15 years ago
User: Handle DuplicateHostmask exception in hostmask.add. More... almost 15 years ago
User: Only require name for set.password when changing other user's password. More... almost 15 years ago
User: Require set.password to be sent in private. More... almost 15 years ago
User: Specify changename must be used in private in its help. More... almost 15 years ago
Model Admin's ignore help after Channel's. More... almost 15 years ago
Merge commit '05e8b658e633f37456340b83b01fa304f9fcc5d3', Add script to automatically update version with a datestamp upon commit. More... about 15 years ago
Fix setup.py version import. It failed on clean install, since module supybot is not yet available. When importing 'from src', that pulled src/__init__.py, which in turn tried to import the supybot module. Now we edit sys.path and import the .py file directly. More... about 15 years ago
Add script to automatically update version with a datestamp upon commit. More... about 15 years ago
Consolidate the version string to reside in one central place to ease change making. More... about 15 years ago
MessageParser: added configurable separator for the list command. More... about 15 years ago
Make plugin loading/reloading case-insensitive. More... about 15 years ago
String: make levenshtein command threaded, since it can take a nontrivial amount of time with longer inputs. More... about 15 years ago
String: make re timeout configurable. More... about 15 years ago
Fix error handling for subprocesses. More... about 15 years ago
Status.processes: add output of currently active processes. More... about 15 years ago
commands.process: return immediately when terminating process, without having to deal with the queue. otherwise, we have to block for $smalldelay between putting and getting the item, since queue putting is not instantaneous and sometimes we would get 'nothing returned' instead of the timeout message. More... about 15 years ago
Merge branch 'multiprocess' More... about 15 years ago
Status: add 'processes' command, the multiprocessing equivalent of the threads command. More... about 15 years ago
Some improvements to the commands.process function - better process naming and informational output. More... about 15 years ago
Format.replace: replacement text is now allowed to be the empty string. More... about 15 years ago
Create a commands.process function which runs a function inside a separate process. This is the only way to limit the execution time of a possibly long-running python statement. Use this on String.re, due to the possibility of pathologically long re matching in python. This allows us to remove the 'trusted-only' restriction on string.re. In the future, this should probably be used in other places that take user-supplied regexps, such as 'misc last --regexp', for example, as well as other potentially long-running tasks that can block the bot. More... about 15 years ago
MoobotFactoids: add check_same_thread=False to the sqlite3 connect calls, so it doesn't complain. (thanks malex!) also fix up the code a bit so it doesn't fail the tests, and doesn't require presence of plain sqlite. More... about 15 years ago
Ensure channel-specific reply.whenNotAddressed works. More... about 15 years ago
Google: fix encoding bug in lucky --snippet; need to pass encoded string to utils.web.htmlToText More... about 15 years ago
Topic: fix bug in invalid number error output. Previously, when giving an invalid positive number, error would reference number-1 as being invalid. More... about 15 years ago
Filter: catch invalid input for unbinary command. More... about 15 years ago
Unix: add call command, giving owner ability to call any system command. More... about 15 years ago
Google: in lucky --snippet, properly convert html to text, using utils.web.htmlToText. More... about 15 years ago
Google: add --snippet option to lucky command, which shows the text snippet for the page. More... about 15 years ago