| Commit message (Expand) | Author | Age | Files | Lines |
| * | Return response code from utils.http.get_url when code=True and soup=True | jesopo | 2018-10-09 | 1 | -4/+11 |
| * | Don't continue trying to use None data | jesopo | 2018-10-08 | 1 | -0/+2 |
| * | Support post_data in utils.http.get_url | jesopo | 2018-10-08 | 1 | -2/+7 |
| * | Support multiple types of comments in utils.get_hashflags | jesopo | 2018-10-07 | 1 | -3/+11 |
| * | clear _trigger_functions after we've called all the waiting functions | jesopo | 2018-10-07 | 1 | -0/+3 |
| * | Optionally take a function in IRCBot.trigger, a function to be called on the•••main thread
| jesopo | 2018-10-07 | 1 | -1/+8 |
| * | Socket on_read functions take 2 args (socket, string) | jesopo | 2018-10-07 | 1 | -1/+1 |
| * | This is a far less complicated way of triggering epoll.poll | jesopo | 2018-10-07 | 2 | -45/+5 |
| * | Research suggests _config and config are not synonymous | Evelyn | 2018-10-06 | 1 | -1/+1 |
| * | Add control-socket to bot.conf.example, only start up control socket is a unix•••domain socket location is provided
| jesopo | 2018-10-06 | 1 | -5/+6 |
| * | 'control_socket_client' -> '_control_client' in src/IRCBot.py | jesopo | 2018-10-06 | 1 | -3/+3 |
| * | Remove debug print in src/ControlSocket.py | jesopo | 2018-10-06 | 1 | -1/+0 |
| * | Add a ControlSocket client to IRCBot.py, use it to trigger the epoll loop when a•••github webhook has been caught!
| jesopo | 2018-10-06 | 1 | -1/+8 |
| * | Add a way to track non-IRC sockets within the main epoll loop; use this for a•••unix domain control socket!
| jesopo | 2018-10-06 | 4 | -16/+139 |
| * | Add database.find_by_setting, send github commits to interested channels | jesopo | 2018-10-06 | 1 | -0/+13 |
| * | 'ssl-certificate'/'ssl-key' -> 'tls-certificate'/'tls-key' | jesopo | 2018-10-05 | 1 | -2/+2 |
| * | Typo in utils, 'line.replace[3:]' -> 'line[3:]' | jesopo | 2018-10-04 | 1 | -1/+1 |
| * | Checking for the presence of the seperator in the return from .partition is a•••more "correct" way of doing this
| jesopo | 2018-10-04 | 1 | -2/+2 |
| * | Non-present hashflag values should be None, not empty string | jesopo | 2018-10-04 | 1 | -1/+1 |
| * | Simplify hashflag parsing | jesopo | 2018-10-04 | 1 | -6/+1 |
| * | Try calling module.unload() (if it exists) when unloading a module | jesopo | 2018-10-04 | 1 | -0/+5 |
| * | IRCChannel.send_part should have a `self` param! | jesopo | 2018-10-04 | 1 | -1/+1 |
| * | `self.lock.acquire()` should be after epoll.poll has returned | jesopo | 2018-10-04 | 1 | -1/+1 |
| * | Move 'top 10' logic to utils, add !wordiest to modules/words.py | jesopo | 2018-10-04 | 1 | -0/+11 |
| * | Typo in src/IRCChannel.py. 'del self.user_modes' -> 'del self.user_modes[user]' | jesopo | 2018-10-04 | 1 | -1/+1 |
| * | Print user status symbols in modules/print_activity.py | jesopo | 2018-10-03 | 1 | -5/+10 |
| * | 'mode_prefixes' -> prefix_modes and prefix_symbols | jesopo | 2018-10-03 | 2 | -8/+9 |
| * | Use docstring key, not value, as a key. | jesopo | 2018-10-03 | 1 | -3/+3 |
| * | Fix start.py not giving the right arguments to database.servers.add | jesopo | 2018-10-03 | 1 | -3/+3 |
| * | Move src/Utils.py in to src/utils/, splitting functionality out in to modules of•••related functionality
| jesopo | 2018-10-03 | 10 | -399/+404 |
| * | Add a way to not add a user automatically in IRCServer.get_user | jesopo | 2018-10-03 | 1 | -3/+3 |
| * | Move parsing IRC lines to src/Utils.py, added base support for parsing outgoing•••messages
| jesopo | 2018-10-03 | 1 | -0/+34 |
| * | Support changing command responses from PRIVMSG to NOTICE | jesopo | 2018-10-02 | 3 | -9/+29 |
| * | Simplify Utils.seperate_hostmask | jesopo | 2018-10-02 | 1 | -8/+2 |
| * | Make use of str.partition in Utils.parse_docstring | jesopo | 2018-10-02 | 1 | -8/+3 |
| * | ... actually add src/IRCObject.py to git. that should have been present many•••commits ago.
| jesopo | 2018-10-02 | 1 | -0/+3 |
| * | Add !leave to modules/channel_op.py | jesopo | 2018-10-02 | 1 | -0/+2 |
| * | Better support for msgtags with PRIVMSGs; put functionality in to•••modules/commands.py to reply to specific messages by use of msgids
| jesopo | 2018-10-01 | 4 | -11/+23 |
| * | EventHook._call takes 3 args | jesopo | 2018-10-01 | 1 | -2/+2 |
| * | Change trace logging level from `5` to `logging.DEBUG-1` | jesopo | 2018-10-01 | 1 | -1/+1 |
| * | Add call_unsafe functions to EventManager.EventHook, to not swallow errors on•••specific function calls (e.g. preprocess.command)
| jesopo | 2018-10-01 | 2 | -10/+25 |
| * | Implement client-side bindhost | jesopo | 2018-10-01 | 3 | -11/+14 |
| * | Implement src/IRCObject.py to convert specific objects in to strings when•••passing them to modules/scripts.py scripts
| jesopo | 2018-10-01 | 3 | -6/+10 |
| * | Add 'trace' logging level for src/Database.py and src/EventManager.py very•••verbose debugging
| jesopo | 2018-10-01 | 4 | -13/+26 |
| * | Log remaining referrers to a module when it's unloaded | jesopo | 2018-09-30 | 1 | -1/+5 |
| * | Add modules/strip_color.py | jesopo | 2018-09-30 | 2 | -3/+15 |
| * | Move src/IRCLineHandler.py to modules/line_handler.py | jesopo | 2018-09-30 | 3 | -597/+3 |
| * | Cache._items is a {id: [item, timeout]} dict, not {id: item} | jesopo | 2018-09-30 | 1 | -1/+1 |
| * | Switch to using docstring for usage, permission and require_mode | jesopo | 2018-09-30 | 2 | -0/+39 |
| * | Refactor modules/channel_op.py and add !tempban/!tempkickban | jesopo | 2018-09-30 | 1 | -0/+6 |