| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
And change references.
|
| |
|
|
|
|
|
|
|
| |
* Removed trailing whitespace
* Line length < 80 where possible
* Honor conventions on number of blank lines
* Honor conventions about spaces around :, =
|
|\ |
|
| | |
|
|/ |
|
|
|
|
|
| |
Chris Webber says not to care about backward compatibility
at this stage. So drop the last bits.
|
|
|
|
|
| |
Chris Webber says "no backward compatibility for this".
So start removing the backward compat stuff.
|
|
|
|
|
|
|
|
|
|
| |
Instead of configuring storage X by parameters in the main
section "X_class = backend" and "X_param = value", use a
new section in the config: "[storage:X]" and use "class =
backend" and "param = value" there.
This is the beginning, it includes a try at being backward
compatible. But that try isn't really fully useful anyway.
|
| |
|
|
|
|
|
|
|
| |
Factoring out this one should be the last one needed to
rewrite the celery setup. The idea is to not setup the
whole app, but just call a bunch of individual setup_*
functions and be done.
|
|
|
|
|
|
| |
Setting up the database now involves checking the
migrations status and setting up the globals.
Moved all of that into init/__init__.py:setup_database().
|
| |
|
|
|
|
|
|
| |
Let setup_global_and_app_config set the global and app
config in the mg_globals already. This way, the config is
available to everyone very early.
|
|
|
|
|
|
|
| |
Moving the config reading and error reporting from app.py
to init/__init__.py. Straight forward.
This also fixes the duplicated exceptions.
|
|
|
|
|
| |
This duplicates some exceptions, which will be fixed very
soon.
|
| |
|
|
|