aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/config_spec.ini
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge remote branch 'remotes/jwandborg/configure_smtp'Christopher Allan Webber2011-08-271-0/+4
|\ \ | |/ |/|
| * Feature #489 - SMTP configuration options - Acts on feedback from cwebber.Joar Wandborg2011-08-251-1/+1
| | | | | | | | http://bugs.foocorp.net/issues/489#note-2
| * Added SMTP configuration optionsJoar Wandborg2011-08-071-0/+4
| |
* | Merge branch 'master' into jwandborg-f482_media_attachmentsChristopher Allan Webber2011-08-221-5/+9
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: mediagoblin/config_spec.ini mediagoblin/edit/forms.py mediagoblin/edit/views.py mediagoblin/submit/views.py mediagoblin/templates/mediagoblin/user_pages/media.html
| * | Storage Config: Use own sectionElrond2011-08-091-5/+7
| |/ | | | | | | | | | | | | | | | | | | 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.
* / Feature #482 - Media attachmentsJoar Wandborg2011-08-051-0/+5
|/
* 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.