summaryrefslogtreecommitdiff
path: root/alot/buffers/envelope.py
Commit message (Collapse)AuthorAge
* mail/envelope: add a special class for headersAnton Khirnov2021-11-20
| | | | Handle multiple headers with ordering and case-insensitive operations.
* Cosmetics, clean up importsAnton Khirnov2021-02-10
|
* widgets/global: move HeadersList to the only place where it is usedAnton Khirnov2021-01-26
|
* buffers: make get_info() asynchronousAnton Khirnov2021-01-20
| | | | | Allows computing message/thread counts asynchronously in a separate thread.
* helper: move string_sanitize() to the only place where it is usedAnton Khirnov2020-05-05
|
* buffer: drop the ui parameter when not neededAnton Khirnov2020-04-25
|
* sanitize message text for displayPatrick Totzke2019-11-21
| | | | | | | | This ensures that non-printable characters (tabs) are replaced in the message body texts in envelope buffers and in source texts in thread mode. fix #1439
* add missing importPatrick Totzke2018-06-22
| | | | | .. that accidentally got dropped during c86623d9c7daaa2f9a832135a11870a0d91110a3 This fixes #1255
* remove deprecated future importsPatrick Totzke2018-06-19
| | | | see also #1250
* refactor buffersPatrick Totzke2018-06-19
This splits buffers.py, which contained all buffer classes, into several smaller files. issue #1226