aboutsummaryrefslogtreecommitdiff
path: root/src/IRCServer.py
Commit message (Collapse)AuthorAgeFilesLines
...
* event["args"] is an array already, args_split does not exist. Also send rawGravatar jesopo2018-10-151-1/+1
| | | | | events from src/IRCServer.py as call_unsafe to make errors like that more apparent.
* Typo in src/IRCServer.py, 'defau;t' -> 'default'Gravatar jesopo2018-10-141-1/+1
|
* Work directly from users in modules/coins.py.interest(), so as to not giveGravatar jesopo2018-10-141-0/+8
| | | | double-interest to two "users" online at the same time sharing the same identity
* Improve "non-complete line" TRACE logGravatar jesopo2018-10-111-2/+2
|
* TRACE log when we receive and buffer a non-complete lineGravatar jesopo2018-10-111-0/+3
|
* Add a way to track non-IRC sockets within the main epoll loop; use this for aGravatar jesopo2018-10-061-5/+10
| | | | unix domain control socket!
* 'ssl-certificate'/'ssl-key' -> 'tls-certificate'/'tls-key'Gravatar jesopo2018-10-051-2/+2
|
* 'mode_prefixes' -> prefix_modes and prefix_symbolsGravatar jesopo2018-10-031-3/+5
|
* Move src/Utils.py in to src/utils/, splitting functionality out in to modules ofGravatar jesopo2018-10-031-9/+9
| | | | related functionality
* Add a way to not add a user automatically in IRCServer.get_userGravatar jesopo2018-10-031-3/+3
|
* Support changing command responses from PRIVMSG to NOTICEGravatar jesopo2018-10-021-6/+17
|
* Better support for msgtags with PRIVMSGs; put functionality in toGravatar jesopo2018-10-011-4/+14
| | | | modules/commands.py to reply to specific messages by use of msgids
* Add call_unsafe functions to EventManager.EventHook, to not swallow errors onGravatar jesopo2018-10-011-1/+1
| | | | specific function calls (e.g. preprocess.command)
* Implement client-side bindhostGravatar jesopo2018-10-011-1/+3
|
* Implement src/IRCObject.py to convert specific objects in to strings whenGravatar jesopo2018-10-011-2/+2
| | | | passing them to modules/scripts.py scripts
* Add modules/strip_color.pyGravatar jesopo2018-09-301-3/+7
|
* Move src/IRCLineHandler.py to modules/line_handler.pyGravatar jesopo2018-09-301-1/+1
|
* Move most code in root directory to src/Gravatar jesopo2018-09-241-0/+402