aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Typo in utils, 'line.replace[3:]' -> 'line[3:]'Gravatar jesopo2018-10-041-1/+1
* Checking for the presence of the seperator in the return from .partition is a•••more "correct" way of doing this Gravatar jesopo2018-10-041-2/+2
* Non-present hashflag values should be None, not empty stringGravatar jesopo2018-10-041-1/+1
* Simplify hashflag parsingGravatar jesopo2018-10-041-6/+1
* Try calling module.unload() (if it exists) when unloading a moduleGravatar jesopo2018-10-041-0/+5
* IRCChannel.send_part should have a `self` param!Gravatar jesopo2018-10-041-1/+1
* `self.lock.acquire()` should be after epoll.poll has returnedGravatar jesopo2018-10-041-1/+1
* Move 'top 10' logic to utils, add !wordiest to modules/words.pyGravatar jesopo2018-10-041-0/+11
* Typo in src/IRCChannel.py. 'del self.user_modes' -> 'del self.user_modes[user]'Gravatar jesopo2018-10-041-1/+1
* Print user status symbols in modules/print_activity.pyGravatar jesopo2018-10-031-5/+10
* 'mode_prefixes' -> prefix_modes and prefix_symbolsGravatar jesopo2018-10-032-8/+9
* Use docstring key, not value, as a key.Gravatar jesopo2018-10-031-3/+3
* Fix start.py not giving the right arguments to database.servers.addGravatar jesopo2018-10-031-3/+3
* Move src/Utils.py in to src/utils/, splitting functionality out in to modules of•••related functionality Gravatar jesopo2018-10-0310-399/+404
* Add a way to not add a user automatically in IRCServer.get_userGravatar jesopo2018-10-031-3/+3
* Move parsing IRC lines to src/Utils.py, added base support for parsing outgoing•••messages Gravatar jesopo2018-10-031-0/+34
* Support changing command responses from PRIVMSG to NOTICEGravatar jesopo2018-10-023-9/+29
* Simplify Utils.seperate_hostmaskGravatar jesopo2018-10-021-8/+2
* Make use of str.partition in Utils.parse_docstringGravatar jesopo2018-10-021-8/+3
* ... actually add src/IRCObject.py to git. that should have been present many•••commits ago. Gravatar jesopo2018-10-021-0/+3
* Add !leave to modules/channel_op.pyGravatar jesopo2018-10-021-0/+2
* Better support for msgtags with PRIVMSGs; put functionality in to•••modules/commands.py to reply to specific messages by use of msgids Gravatar jesopo2018-10-014-11/+23
* EventHook._call takes 3 argsGravatar jesopo2018-10-011-2/+2
* Change trace logging level from `5` to `logging.DEBUG-1`Gravatar jesopo2018-10-011-1/+1
* Add call_unsafe functions to EventManager.EventHook, to not swallow errors on•••specific function calls (e.g. preprocess.command) Gravatar jesopo2018-10-012-10/+25
* Implement client-side bindhostGravatar jesopo2018-10-013-11/+14
* Implement src/IRCObject.py to convert specific objects in to strings when•••passing them to modules/scripts.py scripts Gravatar jesopo2018-10-013-6/+10
* Add 'trace' logging level for src/Database.py and src/EventManager.py very•••verbose debugging Gravatar jesopo2018-10-014-13/+26
* Log remaining referrers to a module when it's unloadedGravatar jesopo2018-09-301-1/+5
* Add modules/strip_color.pyGravatar jesopo2018-09-302-3/+15
* Move src/IRCLineHandler.py to modules/line_handler.pyGravatar jesopo2018-09-303-597/+3
* Cache._items is a {id: [item, timeout]} dict, not {id: item}Gravatar jesopo2018-09-301-1/+1
* Switch to using docstring for usage, permission and require_modeGravatar jesopo2018-09-302-0/+39
* Refactor modules/channel_op.py and add !tempban/!tempkickbanGravatar jesopo2018-09-301-0/+6
* Use a zero-width non-joiner to prevent highlights, instead of a zero-width•••joiner Gravatar jesopo2018-09-291-1/+1
* Add !reloadscripts to modules/scripts.pyGravatar jesopo2018-09-291-4/+23
* Actually get "item" when a cached item expiresGravatar jesopo2018-09-291-0/+1
* Add src/Cache.py, use it in modules/coins.pyGravatar jesopo2018-09-292-3/+55
* Add IRCBot.directory, in case we need it.Gravatar jesopo2018-09-291-2/+3
* Give EventHook objects their full delimited event nameGravatar jesopo2018-09-291-1/+1
* Move hashflag parsing to Utils.get_hashflagsGravatar jesopo2018-09-292-27/+38
* Correct syntax of event call in Timers.callGravatar jesopo2018-09-281-1/+2
* Correctly access bot_settings in Timers.pyGravatar jesopo2018-09-281-3/+4
* Add missing 'self' to args of Timer.finish()Gravatar jesopo2018-09-281-1/+1
* Fix find_prefix functions in Database.py ('%s%' -> '%s%%')Gravatar jesopo2018-09-281-5/+5
* Remove cyclical references to IRCBotGravatar jesopo2018-09-286-117/+126
* Open module files explicitly as utf8 in ModuleManagerGravatar jesopo2018-09-271-2/+2
* Pass parent EventHook down to childrenGravatar jesopo2018-09-271-1/+1
* Use ModuleManager.BaseModule in more modulesGravatar jesopo2018-09-271-1/+3
* Implement @Utils.export, to denote an export on a moduleGravatar jesopo2018-09-272-9/+20