aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/master' into is315cfdv2011-06-1926-312/+588
|\
| * Need to run nosetests with CELERY_CONFIG_MODULE set to from_tests again.Christopher Allan Webber2011-06-193-8/+40
| | | | | | | | | | Basically, if we don't do this celery sets itself up before it should and improperly. :\
| * Documenting the setup_globals function.Christopher Allan Webber2011-06-191-0/+6
| |
| * Document our new global objects added during the configobj branchChristopher Allan Webber2011-06-191-0/+8
| |
| * Merge remote branch 'remotes/elrond/idea/globals_check'Christopher Allan Webber2011-06-192-0/+18
| |\ | | | | | | | | | | | | Conflicts: mediagoblin/tests/test_globals.py
| | * Let setup_globals check for known globalsElrond2011-06-122-0/+18
| | | | | | | | | | | | | | | | | | To avoid typos in calling setup_globals(), only allow globals, which are already known to the system. Plugins should have their own globals.
| * | Reset the globals parameters while testing parametersChristopher Allan Webber2011-06-191-11/+20
| | | | | | | | | | | | | | | (This way we can be sure that the database is torn down if necessary but this was the only test that passed last.)
| * | Actually we need pkg_resources again in test_celery_setup :)Christopher Allan Webber2011-06-191-0/+2
| | | | | | | | | | | | | | | This got removed in master at the same time that it got used in the configobj branch...
| * | Merge branch 'configobj'Christopher Allan Webber2011-06-1924-328/+531
| |\ \
| | * | Removing a couple of unused imports from util.pyChristopher Allan Webber2011-06-191-2/+0
| | | |
| | * | Removing "paste config" phrasing where we're no longer using paste's configChristopher Allan Webber2011-06-191-3/+3
| | | |
| | * | renaming storage_system_from_paste_config()->storage_system_from_config()Christopher Allan Webber2011-06-193-7/+7
| | | | | | | | | | | | | | | | | | | | As Elrond points out, this name doesn't make sense anymore since this isn't based on the paste config. Thanks Elrond!
| | * | util.read_config_file() no longer needed; removing.Christopher Allan Webber2011-06-191-22/+0
| | | |
| | * | Preparing celery unit tests for new setup.Christopher Allan Webber2011-06-184-17/+45
| | | | | | | | | | | | | | | | | | | | Instead of the previous passing in of dictionaries, we're actually checking some example config files.
| | * | ./bin/gmg commands upgraded to work with the new setup.Christopher Allan Webber2011-06-183-25/+1
| | | |
| | * | Nosetests should now be able to run using the new configobj / app init setupChristopher Allan Webber2011-06-184-68/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Lots of changes: - CELERY_CONFIG_FILE does not need to be set to the from_tests module to run tests anymore, in fact it *should not be set at all* and is specifically forbidden. - moved around the configuration to the new 2-file format - and generally adjusting the code appropriately.
| | * | Only kill the database if it's really set up.Christopher Allan Webber2011-06-181-3/+4
| | | |
| | * | It's a good idea for us to pass the application itself into mg_globals :)Christopher Allan Webber2011-06-181-0/+1
| | | |
| | * | Updating celery_setup.from_celery to use new config loading / app initChristopher Allan Webber2011-06-181-54/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - The code for this is significantly simpler now. The app sets up everything but celery, and from_celery finishes the job. - There's no more specifying the mediagoblin section in the file, which doesn't make sense anymore and was already confusing.
| | * | Removing option to set celery config section.Christopher Allan Webber2011-06-181-3/+3
| | | | | | | | | | | | | | | | | | | | There's no real reason to support setting the celery config section; so we'll just make it always ['celery'].
| | * | Removing type conversions from setup_celery_from_config.Christopher Allan Webber2011-06-181-64/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | These simply aren't needed any more, not now that the config validator stuff does type conversion for us. Also fixed the docstring to explain force_celery_always_eager.
| | * | Move entire app structure over to using the new config system.Christopher Allan Webber2011-06-182-64/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| | * | Tests for mediagoblin.config functionsChristopher Allan Webber2011-06-185-0/+134
| | | | | | | | | | | | | | | | | | | | | | | | Tests for: - read_mediagoblin_config() - generate_validation_report()
| | * | CONFIG_SPEC_PATH should be config_spec here, fixing.Christopher Allan Webber2011-06-181-1/+1
| | | |
| | * | Make REPORT_HEADER a unicode string also. Unicode everywhere, ideally!Christopher Allan Webber2011-06-181-1/+1
| | | |
| | * | Validation error reporting functionality.Christopher Allan Webber2011-06-181-6/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed a few things so we can report errors to users properly in the config loading system. - We now return from read_mediagoblin_config both a loaded config and the validation results - We now have a helper function generate_validation_report that can generate a proper validation report saying if there are errors in a way that's useful to users. - Moved conf->config in the read_mediagoblin_config function, which looks nicer IMO.
| | * | Let's specifically import string_list()s in the config_spec.Christopher Allan Webber2011-06-181-2/+2
| | | |
| | * | Merge branch 'master' into configobjChristopher Allan Webber2011-06-185-5/+116
| | |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: setup.py
| | * | | Configuration file loading via ConfigObj.Christopher Allan Webber2011-06-161-0/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Uses ConfigObj to open the config file. Also does validation via the config spec, so defaults are provided, strings are interpolated, types are converted.
| | * | | 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.
| * | | | Removing unused pkg_resources import from test_celery_setupChristopher Allan Webber2011-06-181-2/+0
| | |/ / | |/| |
* | | | enables primitive display of profile data on user pagecfdv2011-06-182-0/+37
| | | |
* | | | enables entering user details including website url and biocfdv2011-06-184-7/+9
| | | | | | | | | | | | | | | | fixes usage of objects. still need to display the data on user page
* | | | baby step towards enabling profile editscfdv2011-06-186-2/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | adds * url and bio fields to database * form for editing the user profile * route to the edit profile controller * view for the profile editing page * template for the profile editing page * link to edit profile in the welcome page still needs * thorough inspection to see if it makes sense * tests * ?
* | | | adds user bio and website url fields to the databasecfdv2011-06-181-0/+2
| | | |
* | | | adds global link to user's home page in the base.html templatecfdv2011-06-171-0/+2
|/ / / | | | | | | | | | | | | | | | Issue #315 (add bio and website to user page) * enable profile edits * provide place in user's home page for details to appear
* | | Merge remote branch 'remotes/cmoylan/test_auth_views_364'Christopher Allan Webber2011-06-171-5/+43
|\ \ \
| * | | logins are now somewhat testedChris Moylan2011-06-171-5/+43
| |/ /
* | | adds link from gallery back to user pagecfdv2011-06-161-1/+3
| | |
* | | adds link to user gallery in mediagoblin_header_right of user pagecfdv2011-06-161-0/+2
| | |
* | | user_gallery controller calls render_to_reponsecfdv2011-06-161-9/+6
| | |
* | | adds routing.py and view.py changescfdv2011-06-162-0/+32
| | |
* | | issue #330 - creates a user gallery templateCaleb Forbes Davis V2011-06-161-0/+40
|/ /
* | Merge remote branch 'remotes/elrond/dev/workbench_class'Christopher Allan Webber2011-06-143-67/+78
|\ \
| * | Move destroy_workbench to Workbench classElrond2011-06-143-37/+25
| | | | | | | | | | | | | | | And add a lot of warnings, as the checks for "being part of the main Manager" are all gone.
| * | Drop WorkbenchManager.localized_file()Elrond2011-06-142-9/+5
| | | | | | | | | | | | | | | | | | | | | | | | As Workbench has the localized_file() method, use this everywhere and drop the wrapper method from WorkbenchManager. The processing code already did that.
| * | Create a Workbench class and use it everywhere.Elrond2011-06-133-45/+72
| | | | | | | | | | | | | | | Some references to Workbench.dir look ugly, I'm happy to hear suggestions there.
* | | A super strict HTML cleaner method with mediocre tests.Christopher Allan Webber2011-06-132-0/+46
| | |
* | | Merge remote branch 'remotes/elrond/idea/simple_proc_media_clean'Christopher Allan Webber2011-06-121-8/+10
|\ \ \ | |/ / |/| | | | | | | | Conflicts: mediagoblin/process_media/__init__.py
| * | Refactor filename generation in the public storeElrond2011-06-081-8/+10
| | | | | | | | | | | | | | | Just a small refactoring of the filename setup in the public store. Very simple.