summaryrefslogtreecommitdiff
path: root/alot/init.py
Commit message (Collapse)AuthorAge
* Reset logging before configuringdtk2012-01-05
| | | | | | | | | | | | | | | | Some unknown piece of code causes the `logging` lib to create a default configuration, which includes a logging level of `logging.WARNING` and a `StreamHandler`. The existence of this default configuration prevents our call to `logging.basicConfig()` to set the configured values, which leads to `debug` and `info` messages not being logged and all messages being streamed to `stderr` (which is controlled and gets flushed by `urwid`) instead of being written to the configured log file. This commit removes the existing `StreamHandler` before calling `logging.basicConfig()` which makes the latter install the desired logging configuration. Closes #170.
* Purge logging objectdtk2012-01-05
| | | | | | | | | Consistently use module functions instead. Introduce a non-default log format that replaces the logger name with the module name. Cf issue #170. Closes #231.
* Fix basic logging functionalitydtk2012-01-05
| | | | | | | | This commit roughly restores the broken logging functionality. The first few messages are still logged to `stderr` as well as to the specified log file. Closes #170.
* pep8Patrick Totzke2012-01-03
|
* propagate search parameter to commandline argsPatrick Totzke2012-01-03
| | | | | this makes the --sort parameter available as a command line parameter
* Get the db manager instance into the accountsJustus Winter2011-12-25
|
* more verbose helpstringsPatrick Totzke2011-12-22
|
* pep8/pyflakes fixesPatrick Totzke2011-12-21
|
* use generic SubcommandOptions in initPatrick Totzke2011-12-20
| | | | and fix version strings. issue #166
* added --attach parameter to compose cmdPatrick Totzke2011-12-20
|
* pep8 fixesPatrick Totzke2011-12-19
|
* initial option parsing with subcommandsPatrick Totzke2011-12-19
| | | | | via twisted.python.usage.Options instead of argparse issue #132
* gracefully exit if config parsing failsPatrick Totzke2011-12-16
| | | | issue #152
* added --version switch to commandline argumentsPatrick Totzke2011-12-16
|
* remove unused HooksManagerPatrick Totzke2011-12-11
| | | | | hooks are now organized by AlotConfigParser issue #146
* removed GPL headers from individual source filesPatrick Totzke2011-11-16
|
* infrastructure for argparser in commandfactoryPatrick Totzke2011-10-15
|
* globals and search commands donePatrick Totzke2011-10-12
|
* 2nd attemptPatrick Totzke2011-10-12
|
* bend importsPatrick Totzke2011-10-08
|
* fix typo from manual mergePatrick Totzke2011-10-02
|
* Merge branch 'master' of github.com:pazz/alotPatrick Totzke2011-10-02
|\ | | | | | | | | Conflicts: alot/init.py
| * Remove dead assignmentsJustus Winter2011-10-02
| |
* | initial command instead of search: issue #79Patrick Totzke2011-10-02
|/
* make sure only one config file is usedPatrick Totzke2011-10-02
|
* cleanup initPatrick Totzke2011-10-02
|
* Move urwid maps to config fileJustus Winter2011-09-29
|
* continue with defauls if no config foundPatrick Totzke2011-09-22
|
* Adhere to the freedesktop basedir spec to locate the config fileJustus Winter2011-09-22
| | | | | | | This patch retains the current behavior while also looking for the config in ~/.config/alot/config. For more details see: http://www.freedesktop.org/wiki/Specifications/basedir-spec
* fix (semi)colons in example.full.rcPatrick Totzke2011-09-18
|
* pep8 fixesPatrick Totzke2011-09-11
|
* Add config option for initial searchstringRuben Pollan2011-09-08
| | | | | New option for the alot.rc initial_searchstring where can be defined the default search string when alot is opend without params.
* access notmuch's config via settings.notmuchconfigPatrick Totzke2011-08-17
| | | | | This adds a comdline option "-n" to specify the location of notmuch's config file and splits the CustomConfigparser
* renamed colour theme sections, removed hook ex.pazz2011-08-13
| | | | | | highcolour-theme -> 256c-theme normal-theme -> 16c-theme mono-theme -> 1c-theme
* merged sender back into accountspazz2011-08-13
|
* accountmanager ->account.pypazz2011-07-26
|
* oop-idied settingspazz2011-07-24
|
* split promptwidget for later reusepazz2011-07-15
|
* use urwid.command_map to map jk and spacepazz2011-07-06
|
* pep8pazz2011-07-04
|
* added accounts and sender, sendCmd workspazz2011-06-22
|
* log to /dev/null by defaultpazz2011-06-18
|
* read colour theme from config filepazz2011-06-08
|
* read default colourmode from config filepazz2011-06-06
|
* config parserpazz2011-06-05
|
* setup.py and friendspazz2011-06-02