aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/config_spec.ini
Commit message (Collapse)AuthorAgeFilesLines
* Removing option to make tags lowercaseChristopher Allan Webber2011-07-301-1/+0
| | | | ...that's basically handled by the slugification
* Merge branch 'remotes/gullydwarf-cfdv/f360_tagging' (early part) into mergetagsChristopher Allan Webber2011-07-301-0/+5
|\ | | | | | | | | | | | | Conflicts: mediagoblin/config_spec.ini mediagoblin/edit/views.py mediagoblin/util.py
| * use config_spec.ini to store tag parsing directivesCaleb Forbes Davis V2011-07-251-0/+5
| |
* | Move db_name default into config_spec.iniElrond2011-07-111-1/+1
| | | | | | | | | | | | | | The default name of the database ("mediagoblin") was coded in db/open.py and init/celery/__init__.py. Instead use the new config system to have this as the default for the "db_name" config option.
* | Added configuration variable to toggle registrations, if disabled the ↵Rasmus Larsson2011-07-091-1/+4
|/ | | | registration page redirects to index and no link to register is shown
* Preparing celery unit tests for new setup.Christopher Allan Webber2011-06-181-0/+5
| | | | | Instead of the previous passing in of dictionaries, we're actually checking some example config files.
* Move entire app structure over to using the new config system.Christopher Allan Webber2011-06-181-2/+4
| | | | | | | | | | | | | | | | | | | This is a huge change! This means several things. - From the python point of view, launching the application is a heck of a lot cleaner. You just need to pass in the config file path to MediaGoblinApp's __init__() and whether or not this funtion should setup celery and you're good. - There are now two separate config files, separating the server setup from the application setup. - server.ini: the paste deploy config file, which configures the applications and server setup but *NOT* the mediagoblin application itself. - mediagoblin.ini: where you configure mediagoblin (and possibly celery) - Launching the application is now different. Instead of: ./bin/paster serve mediagoblin.ini --reload We launch like: ./bin/paster serve server.ini --reload
* Let's specifically import string_list()s in the config_spec.Christopher Allan Webber2011-06-181-2/+2
|
* Basic config "requirements" file.Christopher Allan Webber2011-06-151-0/+69
Not used yet, but this will be used by ConfigObj to transform values, set defaults, etc.