aboutsummaryrefslogtreecommitdiff
path: root/src/IRCBot.py
Commit message (Collapse)AuthorAgeFilesLines
* Print lines not [lines] in src/IRCBot.pyGravatar jesopo2018-10-171-1/+1
|
* Pass context-wrapped timers to each module, add ModuleManager.BaseModule.on_loadGravatar jesopo2018-10-121-4/+4
|
* Don't continue trying to use None dataGravatar jesopo2018-10-081-0/+2
|
* clear _trigger_functions after we've called all the waiting functionsGravatar jesopo2018-10-071-0/+3
|
* Optionally take a function in IRCBot.trigger, a function to be called on theGravatar jesopo2018-10-071-1/+8
| | | | main thread
* Socket on_read functions take 2 args (socket, string)Gravatar jesopo2018-10-071-1/+1
|
* This is a far less complicated way of triggering epoll.pollGravatar jesopo2018-10-071-10/+5
|
* Add control-socket to bot.conf.example, only start up control socket is a unixGravatar jesopo2018-10-061-5/+6
| | | | domain socket location is provided
* 'control_socket_client' -> '_control_client' in src/IRCBot.pyGravatar jesopo2018-10-061-3/+3
|
* Add a ControlSocket client to IRCBot.py, use it to trigger the epoll loop when aGravatar jesopo2018-10-061-1/+8
| | | | github webhook has been caught!
* Add a way to track non-IRC sockets within the main epoll loop; use this for aGravatar jesopo2018-10-061-11/+42
| | | | unix domain control socket!
* `self.lock.acquire()` should be after epoll.poll has returnedGravatar jesopo2018-10-041-1/+1
|
* Implement client-side bindhostGravatar jesopo2018-10-011-2/+2
|
* Add 'trace' logging level for src/Database.py and src/EventManager.py veryGravatar jesopo2018-10-011-5/+1
| | | | verbose debugging
* Move src/IRCLineHandler.py to modules/line_handler.pyGravatar jesopo2018-09-301-4/+2
|
* Refactor modules/channel_op.py and add !tempban/!tempkickbanGravatar jesopo2018-09-301-0/+6
|
* Add src/Cache.py, use it in modules/coins.pyGravatar jesopo2018-09-291-3/+5
|
* Add IRCBot.directory, in case we need it.Gravatar jesopo2018-09-291-2/+3
|
* Remove cyclical references to IRCBotGravatar jesopo2018-09-281-54/+19
|
* Change IRCBot.reconnect to only pass server_id to IRCBot.add_serverGravatar jesopo2018-09-271-2/+1
|
* IRCBot.bot_directory is no longer usedGravatar jesopo2018-09-241-1/+0
|
* Move most code in root directory to src/Gravatar jesopo2018-09-241-0/+197