summaryrefslogtreecommitdiff
path: root/alot
Commit message (Collapse)AuthorAge
* added --version switch to commandline argumentsPatrick Totzke2011-12-16
|
* properly read multi valued headersPatrick Totzke2011-12-15
| | | | | pitfall: mail.get('key') always returns the value of the first header line for that key. Fixes issue #106
* fix: focussing of empty pilePatrick Totzke2011-12-14
| | | | | | | if no attachments are in the envelope, don't add an empty pile to the EnvelopeBuffer. If this gets focussed, urwid dies. issue #150
* fix: remove decode_header call from ComposeCommandPatrick Totzke2011-12-14
| | | | | envelope.headers' values are already decoded! fixes issue #155
* fix: added missing import loggingPatrick Totzke2011-12-11
|
* remove unused HooksManagerPatrick Totzke2011-12-11
| | | | | hooks are now organized by AlotConfigParser issue #146
* move hook lookups to AlotConfigParserPatrick Totzke2011-12-11
| | | | issue #146
* remove confused TODOsPatrick Totzke2011-12-11
|
* pep8Patrick Totzke2011-12-11
|
* remove unused Command.get_helpstringPatrick Totzke2011-12-11
|
* remove unused SearchBuffer.debugPatrick Totzke2011-12-11
|
* remove unused Envelope.get_emailPatrick Totzke2011-12-10
|
* removed unused Envelope.set_emailPatrick Totzke2011-12-10
|
* removed unused Buffer.apply_commandPatrick Totzke2011-12-10
|
* pep8Patrick Totzke2011-12-10
|
* removed unused importPatrick Totzke2011-12-10
|
* [cosmetic] 's' indicating plural in Buffer.__str_Patrick Totzke2011-12-10
|
* include mode string in Buffer.__str__Patrick Totzke2011-12-10
| | | | | | | before, __str__ returned a mode identifier or additional info for the buffer. Now the modestring is always included and is not artificially prepended for the buffers that only yield additional info. issue #143
* remove unused dbman instance from CommandCompleterPatrick Totzke2011-12-10
| | | | issue #147
* accounts docstringsPatrick Totzke2011-12-10
|
* docstrings for thread commandsPatrick Totzke2011-12-10
|
* docstrings for search and bufferlist commandsPatrick Totzke2011-12-10
|
* docstrings for envelope commandsPatrick Totzke2011-12-10
|
* docstrings for global commandsPatrick Totzke2011-12-10
|
* Merge branch 'master' into docsPatrick Totzke2011-12-10
|\
| * read commands help from docstrings if undefinedPatrick Totzke2011-12-10
| | | | | | | | | | | | if the help parameter to the registercommand decorator is unset, take the classes docstring. this way one doesn't have to duplicate it for simple commands
* | completion docsPatrick Totzke2011-12-09
| |
* | docstrings for CompletersPatrick Totzke2011-12-09
| |
* | docs for EnvelopePatrick Totzke2011-12-09
| |
* | Merge branch 'docs' of github.com:pazz/alot into docsPatrick Totzke2011-12-08
|\ \
| * | Merge branch 'master' into docsPatrick Totzke2011-12-08
| |\| | | | | | | | | | | | | Conflicts: alot/commands/envelope.py
| | * remove unnecessary decode parm to Envelope.getPatrick Totzke2011-12-07
| | |
| | * remove decode_header callsPatrick Totzke2011-12-07
| | | | | | | | | | | | | | | | | | forgot to remove unnecessary `decode_header` calls for headers stored in `Envelope.headers`, which now contains decoded unicode strings directly.
* | | docs for settingsPatrick Totzke2011-12-08
|/ /
* | commands docsPatrick Totzke2011-12-08
| |
* | started documenting completionPatrick Totzke2011-12-07
| |
* | Merge branch 'master' into docsPatrick Totzke2011-12-06
|\|
| * EnvelopeBuffer statusline lovePatrick Totzke2011-12-06
| | | | | | | | | | | | use unencoded recipient string from envelope for EnvelopeBuffers statusline and shorten it using helper.shorten_authors_string.
| * removed remaining encode_header calls.Patrick Totzke2011-12-06
| | | | | | | | | | This is now done only once, in Envelope.construct_mail, just before sending out a message.
* | Merge branch 'master' into docsPatrick Totzke2011-12-06
|\|
| * Merge remote-tracking branch 'origin/issue-135'Patrick Totzke2011-12-06
| |\
| | * delay encoding of header valuesPatrick Totzke2011-12-04
| | | | | | | | | | | | | | | | | | | | | .. from `commands.globals.compose` to `Envelope.construct_message`. This ensures that no newlines are introduced before editing the mail template. issue #135
| * | Merge branch 'master' into hardenPatrick Totzke2011-12-04
| |\|
| * | gracefully handle inaccessible message filesPatrick Totzke2011-12-03
| | |
| * | make MessageWidget handle empty headerlistsPatrick Totzke2011-12-03
| | |
* | | docs for buffers and widgetsPatrick Totzke2011-12-04
| | |
* | | buffers documentationPatrick Totzke2011-12-04
| | |
* | | started buffers documentationPatrick Totzke2011-12-03
| | |
* | | more docs for uiPatrick Totzke2011-12-03
| | |
* | | directly import inlineCallbacksPatrick Totzke2011-12-03
| |/ |/| | | | | Solves an issue with readthemanual.org builds