summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAge
* buffers/namedqueries: add a hook for sorting queriesAnton Khirnov2021-02-04
|
* docs: regenerate alotrc_tableAnton Khirnov2020-02-25
|
* docs: use python3 for buildingAnton Khirnov2020-02-25
|
* thread: drop the use of urwidtreesAnton Khirnov2020-02-19
| | | | | | | | | | Their API is misdesigned - forces the use of trees for nontree objects and mixes data relationships with display properties. The result is a mess that is hard to understand/maintain/extend. Replace the use of urwidtrees with urwid Pile and ListBox. This temporarily removes tree-style indentation and decorations for thread buffers. That will be reimplemented in following commits.
* widgets/thread: drop thread_focus_linewiseAnton Khirnov2020-02-03
| | | | | There is no meaningful reason to focus on individual lines, since they are unactionable.
* envelope: add setting for custom Message-ID domainpacien2019-11-24
| | | | | This allows users to use a custom domain in automatically generated Message-ID headers instead of the local hostname.
* Remove unicode literals syntax from python2Lucas Hoffmann2019-11-06
|
* Bump twisted to >= 18.4.0 fix #1420Guillaume Seren2019-11-02
|
* unused imports and variablesPatrick Totzke2019-08-15
|
* remove field_key parameter from PipetoCommandPatrick Totzke2019-08-15
| | | | I don't think anyone needs anything else but copiousoutput here
* pep8 fixesPatrick Totzke2019-08-11
|
* docs: replace updated links to urwid docsPatrick Totzke2019-06-22
| | | | fixes #1411
* docs: update dependenciesPatrick Totzke2019-05-25
|
* docs: add note regarding docs generationPatrick Totzke2019-05-12
|
* update generated docs for search mode tag cmdsPatrick Totzke2019-05-12
|
* expose subject and to headers to forward_prefix hookNick Hu2019-05-11
|
* adding new config options to the docsAndrés Martano2019-03-04
|
* ~ expansion for .config/alot/configbrady2019-01-06
| | | | | | | | pep8! Better variable names, new feature into docs. Make sphinx documentation.
* docs: mention pipeto in FAQPatrick Totzke2018-11-11
|
* docs: reformat faqPatrick Totzke2018-11-11
| | | | the html one is now on top
* docs: update installationPatrick Totzke2018-11-11
|
* docs: cleanupPatrick Totzke2018-11-11
|
* docs: clean up sphinx configPatrick Totzke2018-11-11
|
* docs: use sphinx's autodoc_mock_imports to mockPatrick Totzke2018-11-11
| | | | | .. out stuff whne building the docs instead of using homebrew methods. http://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#confval-autodoc_mock_imports
* docs: Remove references to twistedDylan Baker2018-07-26
| | | | Except for an FAQ entry about it.
* Describe options the same way in help and manualAlexander Shpilkin2018-07-25
| | | | | The descriptions of --help and --version are the same as used in e.g. GNU coreutils (different from the Python default).
* Fix typo in documentationAlexander Shpilkin2018-07-25
|
* Reword description of options -C and colourmodeAlexander Shpilkin2018-07-25
|
* Avoid abbreviations in documentationAlexander Shpilkin2018-07-25
|
* Capitalize option and command descriptions consistentlyAlexander Shpilkin2018-07-25
|
* Fix typo in description of option -dAlexander Shpilkin2018-07-25
|
* Rewrap option descriptions in the manualAlexander Shpilkin2018-07-25
|
* Fix typesetting of option arguments in the manualAlexander Shpilkin2018-07-25
| | | | | | Sphinx appears to not typeset an option properly when only the long version lists an argument. Add the arguments to the short versions as well.
* update docsPatrick Totzke2018-07-24
|
* update docsPatrick Totzke2018-07-24
|
* Respect colour mode set in config fileAlexander Shpilkin2018-07-22
| | | | | | Terminal colour mode can be set both in the config file and on the command line, but a default value for the command-line option overrode whatever was specified in the config file. Fix this.
* simplify contributing infoPatrick Totzke2018-07-07
|
* provide retagprompt command in thread modeMichael J Gruber2018-06-22
| | | | | | | | | | | | retagprompt in search mode allows to retag a whole thread. The new thread mode version allows to do the same for each selected message. The common command infers its mode from the UI object that it is passed when applied. Therefore, the docstring (and everything else) is mode-agnostic. When this command command is registered for the wrong mode and applied it raises a KeyError (on purpose).
* Remove old __future__ importsLucas Hoffmann2018-06-19
| | | | They are not needed for python >= 3.0.
* Revert "docs: mock urwid.util"Dylan Baker2018-05-15
| | | | This reverts commit a86e346b0aed72f3a93d553ed699e0a89f4748e1.
* docs: mock urwid.utilDylan Baker2018-05-15
| | | | To allow the docs to build.
* Reformat a long statement in documentation code.Ben Finney2018-04-23
|
* Correct over-long comment lines in documentation code.Ben Finney2018-04-23
|
* Merge branch 'master' into py3kDylan Baker2018-03-05
|\ | | | | | | | | This requires regenerating the accounts_table docs, as they've changed for python 3.
| * implement replied and passed tagsMichael J Gruber2018-03-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | maildir knows R and P flags which denote messages that have been replied to resp. passed on (fowarded, bounced). They correspond to IMAP flags \Replied and $Forwarded which are used by many clients and by synchronisation software. E.g., mbsync syncs \Replied to R, a patch for P is pending. Implement replied_tags and passed_tags for alot which work similar to sent_tags: sent_tags tags the sent message; replied_tags (resp. passed_tags) tags the message being replied to (resp. being fowarded). Basically, setting the replied_tags config to `replied` and replying to a message has the same effect as doing `tag replied; reply`, but the latter would tag even sending the reply is aborted or fails. The implementation in this patch makes sure that the tagging is done only if and when the reply resp. forward has been sent successfully.
| * provide defaults and doc for draft_tagsMichael J Gruber2018-03-05
| | | | | | | | | | draft_tags works the same way as sent_tags, so provide the same defaults and doc.
| * remove superfluous list() for ConfigObjMichael J Gruber2018-03-05
| | | | | | | | | | | | force_list() converts single items to lists already. Thus, remove a superfluous list() that could be mistaken for converting a single string into a list of chars.
* | docs: regenerate again, hopefully for the last timeDylan Baker2018-03-01
| |
* | generate_commands: sort modecommands tooDylan Baker2018-03-01
| |
* | docs: regenerate generated sourcesDylan Baker2018-03-01
| |