aboutsummaryrefslogtreecommitdiff
path: root/modules/line_handler.py
Commit message (Collapse)AuthorAgeFilesLines
* Add src.utils.parse.keyvalue, mostly for IRCv3 CAP negotiationGravatar jesopo2018-11-051-8/+1
|
* Fix a crash in modules/line_handler.py; QUIT can have an empty reason!Gravatar jesopo2018-11-051-1/+1
|
* Change line parsing to put arbitrary-length args on the end ofGravatar jesopo2018-11-041-27/+26
| | | | | `args` so we can get rid of `last`/`arbitrary` and add IRCArgs (with .get()) to help only getting an arg index if it exists
* Implement IRCv3's `draft/rename`Gravatar jesopo2018-11-041-1/+13
|
* Update modules/line_handler.py to now not pass a `server` param toGravatar jesopo2018-10-301-6/+7
| | | | utils.irc.parse_line
* Add type/return hints throughout src/ and, in doing so, fix some cyclicalGravatar jesopo2018-10-301-1/+2
| | | | references.
* 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.
* Correctly check if someone's logged in to an account with extended-joinGravatar jesopo2018-10-151-1/+1
|
* raw.* events should be call_unsafeGravatar jesopo2018-10-061-1/+1
|
* 'mode_prefixes' -> prefix_modes and prefix_symbolsGravatar jesopo2018-10-031-9/+9
|
* Move src/Utils.py in to src/utils/, splitting functionality out in to modules ofGravatar jesopo2018-10-031-41/+41
| | | | related functionality
* Fix BATCH parsingGravatar jesopo2018-10-031-1/+1
|
* Move parsing IRC lines to src/Utils.py, added base support for parsing outgoingGravatar jesopo2018-10-031-35/+24
| | | | messages
* Support changing command responses from PRIVMSG to NOTICEGravatar jesopo2018-10-021-2/+3
|
* Simplify modules/line_handler.handleGravatar jesopo2018-10-021-35/+21
|
* Better support for msgtags with PRIVMSGs; put functionality in toGravatar jesopo2018-10-011-2/+3
| | | | modules/commands.py to reply to specific messages by use of msgids
* Some networks send NICK as 'nick!user@host NICK newnick` instead ofGravatar jesopo2018-10-011-1/+1
| | | | | 'nick!user@host NICK :newnick' (which is RFC compliant but BitBot didn't support it)
* Change modules/line_handler.py to use @Utils.hookGravatar jesopo2018-10-011-43/+35
|
* Move src/IRCLineHandler.py to modules/line_handler.pyGravatar jesopo2018-09-301-0/+597