Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | formatter: Implement truncation of joined/quit users in netsplits | Wolfgang Müller | 2021-04-28 | -13/+14 |
| | | | | | | | The list of users that have quit or joined after a netsplit can become quite large. Quassel itself cuts reporting off after printing 15 users, so let's follow that. Note that this will not affect queries - the search is performed against the whole netsplit message. | |||
* | formatter: Use functools.partial to simplify the formatter | Wolfgang Müller | 2021-04-28 | -32/+9 |
| | | | | | | | | Instead of defining a function for every message format that trivially returns an f-string, have a generic partially-applied helper function that applies the Message object as a dictionary to the format() function. That way, we can inline the formatter definitions directly in the FORMATTERS dictionary. | |||
* | Initial prototype | Wolfgang Müller | 2021-04-28 | -0/+522 |