aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Add a way to more explicitly denote when a CAP handshake has ended earlyGravatar jesopo2018-11-091-1/+2
* Filter out empty items in utils.parse.keyvalueGravatar jesopo2018-11-081-1/+1
* Support passing unrestricted args between connectionsGravatar jesopo2018-11-081-1/+3
* Keep a track of bytes written and read per serverGravatar jesopo2018-11-081-2/+7
* Keep a dict of isupport key:values on IRCServer.ServerGravatar jesopo2018-11-081-1/+2
* Technically, we only need to unescape non-json message-tag *values*Gravatar jesopo2018-11-081-4/+2
* Only mesage-tag unescape non-json tags after we split on ";"Gravatar jesopo2018-11-081-2/+4
* Unescape message-tags as per spec Escaping RulesGravatar jesopo2018-11-081-0/+9
* Fix issues that were introduced in message-tag parsing when I added support for•••JSON message tags Gravatar jesopo2018-11-081-3/+3
* Explicitly denote when an :arbitrary arg is present in an IRCLineGravatar jesopo2018-11-081-4/+8
* 'rename_channel' -> 'rename' in src/Database.channelsGravatar jesopo2018-11-051-1/+1
* Don't pass connection_params through to reconnect in normal circumstancesGravatar jesopo2018-11-051-2/+1
* Only automatically reconnect to a server when we don't already have a server•••with the same ID (to make reconnection work) Gravatar jesopo2018-11-051-11/+8
* Cache a server fileno from connect onwards, like we used toGravatar jesopo2018-11-051-1/+1
* Typo in IRCServer, 'nicknamme' -> 'nickname'Gravatar jesopo2018-11-051-1/+1
* Update IRCServer.__repr__ to use connection_paramsGravatar jesopo2018-11-051-1/+2
* Fall back to nickname for username/realname, as it used to beGravatar jesopo2018-11-051-3/+6
* Clarify typing of .nickname/.nickname_lower/.name in IRCUserGravatar jesopo2018-11-051-1/+5
* Fix the order of some connection params, add `alias` as a seperate argument to•••IRCServer.Server Gravatar jesopo2018-11-053-4/+6
* Pass connection parameters around in their own object (IRCConnectionParameters)Gravatar jesopo2018-11-054-39/+59
* Add missing import of json in utils.ircGravatar jesopo2018-11-051-1/+1
* Call Database.channels.rename in IRCServer.Server.rename_channelGravatar jesopo2018-11-051-0/+1
* Add Database.channels.rename, as part of support for IRCv3's RENAMEGravatar jesopo2018-11-051-0/+3
* Support JSON messages tags, as per IRCv'3 message-tags-0.3 #318 pull requestGravatar jesopo2018-11-051-4/+10
* Reschedule STS expiration on disconnectGravatar jesopo2018-11-051-0/+1
* Give Logging.Log object to modulesGravatar jesopo2018-11-051-2/+4
* I forgot the "normal" event hook syntax!Gravatar jesopo2018-11-051-1/+1
* 'self.events' -> 'self._events' in IRCBotGravatar jesopo2018-11-051-1/+1
* Cache socket fileno in IRCServer.Server just before disconnectingGravatar jesopo2018-11-051-1/+3
* @utils.hook doesn't work outside of modules!Gravatar jesopo2018-11-051-5/+8
* it should be self.bindhost, now that we've moved the logic to .connect() instead•••of __init__ Gravatar jesopo2018-11-051-2/+3
* Typo in src/IRCServer.py; 'self.AF_INET' -> 'socket.AF_INET'Gravatar jesopo2018-11-051-1/+1
* Clarify `items` and `var_items` typing in src.utils.parseGravatar jesopo2018-11-051-3/+4
* Add src.utils.parse.keyvalue, mostly for IRCv3 CAP negotiationGravatar jesopo2018-11-051-0/+10
* Refactor IRCServer .connect() logicGravatar jesopo2018-11-052-22/+15
* Add __repr__ to utils.irc.IRCArgsGravatar jesopo2018-11-051-0/+2
* Don't set `args` to a split of the data left over when parsing out a command if•••there's not a space after the command Gravatar jesopo2018-11-041-2/+5
* Implement utils.irc.IRCArgs.__len__Gravatar jesopo2018-11-041-2/+7
* Fix typo in utils.irc, 'self_args' -> 'self._args'Gravatar jesopo2018-11-041-1/+1
* Move definition of IRCArgs above IRCLineGravatar jesopo2018-11-041-8/+8
* Fix typo in utils.ircGravatar jesopo2018-11-041-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-6/+14
* Implement IRCv3's `draft/rename`Gravatar jesopo2018-11-041-0/+5
* utils.irc.color should take `int` for foreground/background, not strGravatar jesopo2018-11-021-1/+1
* Add src/__init__.py to allow mypy to see src/ as a moduleGravatar jesopo2018-11-021-0/+0
* Fix some non-explicit None returns, add type hints to important variablesGravatar jesopo2018-10-316-17/+23
* Move setting BitBotFormatter's converter (to time.gmtime) to class definition as•••it's not technically correct to overwrite a funcion on an existing object Gravatar jesopo2018-10-301-1/+1
* Fix/refactor issues brought up by type hint lintingGravatar jesopo2018-10-3013-59/+73
* Typo in src/Exports; 'self_exports' -> 'self.exports'Gravatar jesopo2018-10-301-1/+1
* Add type/return hints throughout src/ and, in doing so, fix some cyclical•••references. Gravatar jesopo2018-10-3019-509/+594