| Commit message (Expand) | Author | Age | Files | Lines |
| * | IRCServer.alias is no longer optional | jesopo | 2019-04-24 | 1 | -6/+2 |
| * | change utils.iso8601_format to default to no milliseconds, switch to using•••utils.iso8601 functions in badges.py
| jesopo | 2019-04-23 | 1 | -1/+2 |
| * | Add IRCServer.send_raw so modules don't have to parse messages before sending•••them
| jesopo | 2019-04-16 | 1 | -0/+2 |
| * | add IRCServer.send_enabled, to prevent sending after QUIT in signals.py | jesopo | 2019-03-05 | 1 | -0/+5 |
| * | Add IRCServer.has_capability and use it throughout line_handler | jesopo | 2019-03-03 | 1 | -0/+2 |
| * | Rename IRCLine.Line to IRCLine.SentLine, for clarity | jesopo | 2019-02-24 | 1 | -26/+27 |
| * | Fire preprocess.send per-command - use this to only strip colors from ParsedLine•••objects for PRIVMSG and NOTICE
| jesopo | 2019-02-23 | 1 | -6/+3 |
| * | Move utils.irc.IRCParsedLine to IRCLine.ParsedLine, improve truncation•••mechanism, don't convert sent line from ParsedLine to text to ParsedLine for
line_handler handling
| jesopo | 2019-02-23 | 1 | -8/+9 |
| * | Add `target` typehint on IRCServer.send_tagmsg, add send_tagmsg to IRCChannel... | jesopo | 2019-02-22 | 1 | -1/+1 |
| * | Add IRCServer.send_joins, a nicer interface than manually `",".join`ing | jesopo | 2019-02-20 | 1 | -0/+4 |
| * | Don't pass `None` around as tag default, fix some missing return type args | jesopo | 2019-02-19 | 1 | -2/+3 |
| * | Add `make_batch` and `send_batch` to IRCServer | jesopo | 2019-02-18 | 1 | -0/+11 |
| * | Shift formatting protocol data to it's own file: utils.irc.protocol | jesopo | 2019-02-18 | 1 | -68/+36 |
| * | Put a helper function in utils to do iso8601 formatting. change IRCServer's•••last-read setting to use it.
| jesopo | 2019-02-17 | 1 | -2/+1 |
| * | How did this newline get here | jesopo | 2019-02-17 | 1 | -1/+0 |
| * | 'src/IRCServer.capabilities' -> 'src/IRCServer.agreed_capabilities' | jesopo | 2019-02-16 | 1 | -1/+1 |
| * | Send `CAP REQ` in 10-item chunks (src/IRCServer.py) | jesopo | 2019-02-16 | 1 | -3/+6 |
| * | Don't add a space after a formatted tagmsg in _tag_str (src/IRCServer.py) | jesopo | 2019-02-14 | 1 | -3/+5 |
| * | Add IRCServer.send_tagmsg, to send `TAGMSG` commands | jesopo | 2019-02-14 | 1 | -0/+3 |
| * | Only put a ":" on trailing args when it's required | jesopo | 2019-02-12 | 1 | -13/+21 |
| * | Upgrade resume.py to `draft/resume-0.3` and support sending last-read timestamp | jesopo | 2019-02-12 | 1 | -0/+4 |
| * | IRCServer should handle ping_sent, not IRCSocket | jesopo | 2019-02-11 | 1 | -1/+5 |
| * | last_read/last_send is now handled by IRCSocket.py | jesopo | 2019-02-11 | 1 | -5/+2 |
| * | `connected` status is now tracked by IRCSockets | jesopo | 2019-02-11 | 1 | -2/+0 |
| * | Shift socket.socket related logic to IRCSocket.py | jesopo | 2019-02-11 | 1 | -158/+27 |
| * | We don't need to send `writebuffer.empty` event any more (src/IRCServer.py) | jesopo | 2019-02-11 | 1 | -3/+0 |
| * | Let IRCLine.Line handle truncating command output | jesopo | 2019-02-10 | 1 | -1/+1 |
| * | Parse sent data in IRCServer._send, not IRCServer.send | jesopo | 2019-02-10 | 1 | -2/+6 |
| * | Add `IRCServer.hostmask()` to construct our nick!user@host hostmask | jesopo | 2019-02-10 | 1 | -0/+3 |
| * | Shift encoding/truncating IRC lines to src/IRCLine.py | jesopo | 2019-02-10 | 1 | -8/+2 |
| * | Return truncted data from encode_truncate and hold it in IRCLine.Line | jesopo | 2019-02-10 | 1 | -2/+3 |
| * | Make use of utils.truncate_encode, to avoid cutting utf8 sequences in half | jesopo | 2019-02-10 | 1 | -4/+3 |
| * | Don't send empty space with JOIN if key=="" (src/IRCServer.py) | jesopo | 2019-02-10 | 1 | -1/+1 |
| * | Return IRCLine object from IRCServer.send() (and functions that call .send()) | jesopo | 2019-02-10 | 1 | -48/+55 |
| * | fix `self.batches` type hint (src/IRCServer.py) | jesopo | 2019-02-10 | 1 | -1/+1 |
| * | `now` isn't defined now that throttle code has been separated out (src/IRCSer... | jesopo | 2019-02-10 | 1 | -1/+1 |
| * | Track lines-to-be-sent up until they're completely sent, queue up more than 1•••line at a time in write buffer if we've got space (src/IRCServer.py)
| jesopo | 2019-02-10 | 1 | -14/+43 |
| * | Make line cutoff character count a const (src/IRCServer.py) | jesopo | 2019-02-10 | 1 | -2/+3 |
| * | Abstract ssl socket wrapping away so we can reuse it | jesopo | 2019-02-10 | 1 | -13/+4 |
| * | Set default values for various types of channel modes (src/IRCServer.py) | jesopo | 2019-02-09 | 1 | -4/+9 |
| * | Also capture channel setting-related modes (e.g. +f for flood settings) | jesopo | 2019-02-09 | 1 | -0/+1 |
| * | Send `CAP LS` after we send `PASS` (if applicable) (src/IRCServer.py) | jesopo | 2019-02-07 | 1 | -1/+2 |
| * | If a server has a hostname that's not an IP, use it as SNI server name | jesopo | 2019-02-06 | 1 | -1/+6 |
| * | Don't break if we try to "finish" a waiting CAP when it's already finished | jesopo | 2019-02-06 | 1 | -1/+1 |
| * | Don't .lower() nicknames in Database.py, it doesn't know about IRC casemapping | jesopo | 2019-02-06 | 1 | -2/+3 |
| * | STARTTLS was removed long ago | jesopo | 2019-02-05 | 1 | -2/+0 |
| * | Manually count ACK/NAK for REQed CAPs before ENDing CAP negotiation | jesopo | 2019-02-05 | 1 | -0/+2 |
| * | Make sure more than one hook can catch `preprocess.send` but still respect any•••that return a change to the output (src/IRCServer.py)
| jesopo | 2019-01-26 | 1 | -2/+5 |
| * | `IRCServer.Server.irc_lower` should have a return type hint of `str` | jesopo | 2019-01-24 | 1 | -1/+1 |
| * | Typo, `IRCServer.Server.irc_equal` -> `IRCServer.Server.irc_equals` | jesopo | 2019-01-24 | 1 | -1/+1 |