aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* User.id doesn't exist anymore; it's User.get_id()Gravatar jesopo2018-09-191-1/+1
|
* Fix exception in commands.py any time anyone sends an empty orGravatar jesopo2018-09-191-1/+1
| | | | whitespace-prefixed PRIVMSG
* Change log level to show in logs as "[LEVEL]" instead of " - LEVEL - "Gravatar jesopo2018-09-191-1/+1
|
* Set IRCServer.channel_types to ["#"] by defaultGravatar jesopo2018-09-171-1/+1
|
* Implement __str__ and __repr__ on Utils.IRCHostmaskGravatar jesopo2018-09-171-0/+5
|
* Also catch socket.timeout in IRCServer.read()Gravatar jesopo2018-09-171-1/+1
|
* When we get a command without *any* arguments e.g. ":nick!user@host AWAY" don'tGravatar jesopo2018-09-171-0/+2
| | | | continue to parse that when we've seperated hostmask and command
* 'USER <username> 0 * :<realname>' is technically more correct, per RFC2812, thanGravatar jesopo2018-09-171-1/+1
| | | | "USER <username> - - :<realname>'
* Typo in sasl.py; proceed with sasl regardless of mechanism when using CAP 3.1Gravatar jesopo2018-09-171-1/+1
|
* Fix a copypaste fail that caused sasl.py to have two sasl_success functionsGravatar jesopo2018-09-171-1/+1
|
* Utils.irc_lower was returning an unchanged string because .replace on a stringGravatar jesopo2018-09-171-1/+1
| | | | returns a new string
* In handling raw.part, remove_channel after calling self.part instead of beforeGravatar jesopo2018-09-171-1/+1
|
* Handle 904 (ERR_SASLFAIL) in sasl.pyGravatar jesopo2018-09-171-1/+6
|
* Don't just listen for 'sasl=PLAIN' in IRCv3 CAP 3.2Gravatar jesopo2018-09-171-6/+11
|
* Add ability to not vertify a server's certificate ('ssl-verify')Gravatar jesopo2018-09-171-1/+2
|
* Support EXTERNAL sasl authenticationGravatar jesopo2018-09-171-7/+19
|
* Fix highlight checking in commands.pyGravatar jesopo2018-09-171-3/+3
|
* Ignore .key/.crt in .gitignoreGravatar jesopo2018-09-171-4/+15
|
* Add support for TLS client certificate/keyGravatar jesopo2018-09-172-0/+9
|
* Verify server TLS certificatesGravatar jesopo2018-09-171-0/+2
|
* Don't pass nickname!username@hostname through to IRCChannel's add_mode onGravatar jesopo2018-09-141-0/+1
| | | | /NAMES resposne
* Add !enablemodule and !disablemodule to modules.pyGravatar jesopo2018-09-133-6/+40
|
* Oops, this isn't C#.Gravatar jesopo2018-09-131-1/+1
|
* Support "nickname@hostname" hostmask, even though it's almost certain it'llGravatar jesopo2018-09-131-1/+3
| | | | never be seen in the wild.
* Remove additional %Gravatar jesopo2018-09-131-1/+1
|
* Specific "n%" for WHOX as to only return nicks.Gravatar jesopo2018-09-132-4/+3
|
* join.py -> bot_channel.py, make the bot channel (default #bitbot) configurableGravatar jesopo2018-09-122-8/+12
|
* Add missing argument to Utils._multi_replace calls in irc_lowerGravatar jesopo2018-09-121-6/+7
|
* .lower() is also not valid for ascii case mappingGravatar jesopo2018-09-121-7/+3
|
* .lower() is not valid as "Á" is not the same as "á" within RFC1459 casemappingGravatar jesopo2018-09-121-10/+12
|
* Support 'strict-rfc1459' case mappingGravatar jesopo2018-09-121-0/+8
|
* Don't return 0 as "time until next ping" when we've already sent a ping. returnGravatar jesopo2018-09-112-1/+5
| | | | None instead.
* Fix weird double indentation in IRCBot.pyGravatar jesopo2018-09-111-2/+2
|
* Remove boot_time from stats.py, move it to start_time in IRCBot otherwise aGravatar jesopo2018-09-112-2/+2
| | | | module reload of stats.py would reset !uptime
* Utils.irc_lower and Utils.irc_equals take an IRCServer parameterGravatar jesopo2018-09-115-17/+21
|
* Fix copypaste fail in Utils that meant we had no RFC1459_LOWERGravatar jesopo2018-09-111-1/+1
|
* Forgot to import Utils in IRCServerGravatar jesopo2018-09-111-1/+1
|
* Respect RFC1459 casemapping rulesGravatar jesopo2018-09-116-17/+45
|
* Pass around an IRCPrefix object instead of "nickname!username@hostname", fix aGravatar jesopo2018-09-102-64/+42
| | | | | | bug in TAGMSG handling that was trying to get a user object from a channel, fix a bug in ACCOUNT handling that was literally using "nickname" as a user's nickname, instead of the parsed nickname.
* Handle CHGHOST referencing the bot instead of another userGravatar jesopo2018-09-101-3/+7
|
* Typo, event["server"] -> serverGravatar jesopo2018-09-101-1/+1
|
* Send '111' as the default WHOX token, not '001', as some servers cut that downGravatar jesopo2018-09-101-2/+2
| | | | to '1'
* Add support for IRCv3's batch and draft/labeled-responseGravatar jesopo2018-09-102-4/+21
|
* Standardise the "last" argument of a line; be that an :arbitrary or just theGravatar jesopo2018-09-101-11/+10
| | | | last argument.
* Fix a copypaste fail that pointed TAGMSG at ACCOUNT handling codeGravatar jesopo2018-09-091-1/+1
|
* bitly-api-key isn't used anymoreGravatar jesopo2018-09-091-1/+0
|
* Merge pull request #22 from dngfx/masterGravatar jesopo2018-09-091-10/+10
|\ | | | | Replace bit.ly with is.gd
| * Replace bit.ly with is.gd. No API key, no beeping Bit. It's a win win!Gravatar dngfx2018-09-091-10/+10
| |
* | Merge pull request #21 from dngfx/masterGravatar jesopo2018-09-091-1/+1
|\| | | | | Fix regex in karma.py
| * There's nothing regular about these expressions.Gravatar dngfx2018-09-091-1/+1
| |