summaryrefslogtreecommitdiff
path: root/alot/db/__init__.py
Commit message (Collapse)AuthorAge
* cleanup: make Thread and Message available in alot.dbPatrick Totzke2012-08-10
|
* cleanup: move DBManager to its own filePatrick Totzke2012-08-10
|
* add copyright statements to all source filesPatrick Totzke2012-06-14
| | | | cf issue #472
* doc: minor docstring corrections for dbPatrick Totzke2012-06-05
|
* added debug statements for flushingPatrick Totzke2012-05-17
| | | | issue #413
* neater error handling while flushingPatrick Totzke2012-05-17
| | | | | this avoids logging a traceback on temporarily locked indices and imports db.error classes directly for use in DBManager
* use new db's for writequeue entries in flushPatrick Totzke2012-05-17
| | | | | | | | | | This moves the creation / destruction of the notmuch.Database object used to change the index to the code for a single writequeue entry: Instead of using one db for all entries, we let each one have its own. This *should* allow the "afterwards" callback allow to retrieve data from an updated index, that already reflects the changes just made. issue #317
* db: count_threadsPatrick Totzke2012-03-18
| | | | | | | | this introduces a new method `count_threads` for DBManager that uses a recently introduced getter of the same name in the bindings. We also adjust the dependencies for the bindings accordingly issue #178
* pep8 fixesPatrick Totzke2012-03-11
|
* refacor: move db errors to separate filePatrick Totzke2012-03-11
|
* refactor db: move into submodulePatrick Totzke2012-03-11
this moves messages into the new submodule alot.db which from now on also contains Threads in a separate file