aboutsummaryrefslogtreecommitdiff
path: root/modules/line_handler.py
Commit message (Expand)AuthorAgeFilesLines
* Reply to statusmsg commands (e.g. '/msg +channel !ping') with the same statusmsgGravatar jesopo2019-02-041-3/+5
* Use `target` (after prefixes lstrip) to get channel object (line_handler.py)Gravatar jesopo2019-01-271-1/+1
* We need to pass a str to lstrip, not an array (line_handler.py)Gravatar jesopo2019-01-271-1/+2
* Strip `prefix_symbols` from PRIVMSG target, for e.g. 'PRIVMSG +#chan :hi'•••(line_handler.py) Gravatar jesopo2019-01-271-0/+5
* Handle `prefix` being null when we've received a server notice (line_handler.py)Gravatar jesopo2019-01-261-1/+2
* Set server name by `event["prefix"].hoskmask` not `.nickname`, they're the same•••thing at the moment when it's not a `nick!user@host` but eventually it might not be (line_handler.py) Gravatar jesopo2019-01-261-1/+1
* `extended-join` JOINs have 3 args, not 2 (line_handler.py)Gravatar jesopo2019-01-261-1/+1
* Remove users from channels they're kicked from (line_handler.py)Gravatar jesopo2019-01-251-0/+6
* Add `irc_lower()` and `irc_equals()` to IRCServer.Server so that no where else•••in the code has to know about the server having a casemapping Gravatar jesopo2019-01-241-2/+1
* We should be checking if a channel name is in server.channels, not serverGravatar jesopo2018-12-191-1/+1
* Only pop MODE args when we're certain we should (pays more attention to•••CHANMODES ISUPPORT) Gravatar jesopo2018-12-061-3/+8
* Remove use of `print()` in modules/line_handler.pyGravatar jesopo2018-12-021-1/+1
* Don't prefix "self." events with "received."Gravatar jesopo2018-11-271-5/+6
* Send WHO on self mode change, to catch any important changes to our user•••information that mode changes can cause (e.g. hostname change) Gravatar jesopo2018-11-271-0/+1
* Fix missing spaces in some event calls in line_handler.pyGravatar jesopo2018-11-271-5/+5
* Use WHO/WHOX to also keep track of our own username/hostnameGravatar jesopo2018-11-271-13/+23
* Don't enable write throttling until we get 005Gravatar jesopo2018-11-191-0/+1
* This `elif` should have actually been one even indented!Gravatar jesopo2018-11-141-6/+6
* `IRCBuffer.add_notice` doesn't have an `action` paramGravatar jesopo2018-11-141-1/+1
* Remove a ") i should have removed beforeGravatar jesopo2018-11-141-1/+1
* only do server-notice checking if we have a "prefix" in event, even if it's NoneGravatar jesopo2018-11-141-1/+1
* `if is_channel` should be `if channel`, `buffer.add_notice` doesn't take an•••`action` param and `elif` can't go after `else`! Gravatar jesopo2018-11-141-7/+7
* Better parsing of CTCP messages, support raw.send.privmsg/raw.send.notice in•••modules/line_handler.py Gravatar jesopo2018-11-141-21/+51
* Better support passing "send" events through the parsers already present in•••modules/line_handler.py Gravatar jesopo2018-11-141-110/+122
* Add 375 data to server.motd_linesGravatar jesopo2018-11-141-0/+1
* Print MOTD in modules/print_activity.py (after caching it in•••modules/line_handler.py) Gravatar jesopo2018-11-131-0/+8
* The target channel of an /INVITE is the second argument!Gravatar jesopo2018-11-121-1/+1
* Remove no-longer-used Regexes in modules/line_handler.pyGravatar jesopo2018-11-121-4/+0
* Don't implicitly create channels, explicitly create channels when we join oneGravatar jesopo2018-11-111-1/+3
* Typo in modules/line_handler.py, 'getl' -> 'get'Gravatar jesopo2018-11-111-1/+1
* Move channel tracking data/functions to src/IRCChannel.ChannelsGravatar jesopo2018-11-111-18/+17
* Add a way to more explicitly denote when a CAP handshake has ended earlyGravatar jesopo2018-11-091-4/+6
* Add a way to halt CAP before it hits CAP ENDGravatar jesopo2018-11-081-3/+4
* Only send 'PROTOCTL NAMESX' when we're not already got IRCv3's multi-prefix CAP•••active Gravatar jesopo2018-11-081-1/+2
* Keep a dict of isupport key:values on IRCServer.ServerGravatar jesopo2018-11-081-0/+1
* Refactor handling ISUPPORT and support hex escapes thereinGravatar jesopo2018-11-081-23/+34
* `server` should be passed in received.rename in modules/line_handler.pyGravatar jesopo2018-11-051-1/+1
* Support JSON messages tags, as per IRCv'3 message-tags-0.3 #318 pull requestGravatar jesopo2018-11-051-2/+2
* 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 of•••`args` so we can get rid of `last`/`arbitrary` and add IRCArgs (with .get()) to help only getting an arg index if it exists Gravatar jesopo2018-11-041-27/+26
* Implement IRCv3's `draft/rename`Gravatar jesopo2018-11-041-1/+13
* Update modules/line_handler.py to now not pass a `server` param to•••utils.irc.parse_line Gravatar jesopo2018-10-301-6/+7
* Add type/return hints throughout src/ and, in doing so, fix some cyclical•••references. Gravatar jesopo2018-10-301-1/+2
* event["args"] is an array already, args_split does not exist. Also send raw•••events from src/IRCServer.py as call_unsafe to make errors like that more apparent. Gravatar jesopo2018-10-151-1/+1
* 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 of•••related functionality Gravatar jesopo2018-10-031-41/+41
* Fix BATCH parsingGravatar jesopo2018-10-031-1/+1