Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | removing old callable utilities and porting stuff over. | Christopher Allan Webber | 2013-04-19 | 2 | -4/+4 |
| | |||||
* | Switch several functions over to using the new callable_run* tools! | Christopher Allan Webber | 2013-04-10 | 2 | -7/+4 |
| | |||||
* | Updated raven plugin | Joar Wandborg | 2013-03-03 | 2 | -0/+9 |
| | | | | | | | - Added wrap_wsgi, celery_setup, celery_logging_setup hooks - Updated raven plugin docs - Updated production considerations docs - Added raven logging setup | ||||
* | You can now set the PASTE_CONFIG environment variable to control logging setup | Christopher Allan Webber | 2013-02-25 | 1 | -0/+5 |
| | | | | | | | | So this should work: PASTE_CONFIG=/path/to/paste_foo.ini ./lazycelery.sh Thanks to Laurent Fournier for sponsoring this commit! | ||||
* | Use logging.config.fileConfig() | Joar Wandborg | 2013-02-07 | 1 | -41/+2 |
| | | | | Instead of the monster I had built before. | ||||
* | Removed debugging stuff from master | Joar Wandborg | 2012-09-30 | 1 | -8/+0 |
| | |||||
* | Use RawConfigParser instead of dict.viewitems | Joar Wandborg | 2012-09-30 | 1 | -3/+7 |
| | | | | dict.viewitems breaks python 2.6 compatibility. | ||||
* | Set up celery logging from paste ini | Joar Wandborg | 2012-09-30 | 1 | -0/+65 |
| | |||||
* | from_celery.setup_self() didn't pay attention to default_conf_file kwarg, fixed. | Christopher Allan Webber | 2012-05-20 | 1 | -4/+5 |
| | |||||
* | Making celeryd consistent: look for mediagoblin_local.ini | Christopher Allan Webber | 2012-04-22 | 1 | -1/+6 |
| | | | | | Use mediagoblin_local.ini as default conf file if it exists, else use mediagoblin.ini, just like everything else. | ||||
* | SQL based tests and refactored Celery setup stuff | Christopher Allan Webber | 2012-03-26 | 1 | -15/+40 |
| | | | | | | - Changed config files of test configs to use SQL - Updated celery initialization tools, factored them to be able to use the "big instance" application stuff | ||||
* | And fix the in-celeryd import. | Elrond | 2012-03-21 | 1 | -1/+1 |
| | | | | So that celeryd also loads the task. | ||||
* | Accidentally overwrote the celery/__init__.py, fixed this and removed the ↵ | Luke Slater | 2012-02-28 | 1 | -1/+55 |
| | | | | upper correctly | ||||
* | Changed celery config keys to upper case and removed upper casing of keys ↵ | Luke Slater | 2012-02-28 | 1 | -56/+1 |
| | | | | when initialising the config as per issue #214 | ||||
* | Should be all that's needed to switch celery/kombu settings to sqlalchemy | Christopher Allan Webber | 2012-02-25 | 1 | -20/+3 |
| | |||||
* | It's 2012 all up in here | Christopher Allan Webber | 2012-02-02 | 3 | -3/+3 |
| | |||||
* | Fixes after merging video branch into master | Joar Wandborg | 2011-11-21 | 1 | -3/+1 |
| | | | | | | | | | | | | | - Removed debug output from init/celery - Moved process_media/__init__ to processing.py - Centralized the processing.ProcessMedia task class - Updated media managers to reference the processing function instead of the ProcessMedia instance - Updated new-style image processing to previous, newer old-style image processing - Updated video transcoding - Changed method in progress output, sometimes message.structure['percent'] raises KeyError | ||||
* | Merge branch 'video_gstreamer-only' | Joar Wandborg | 2011-11-21 | 1 | -0/+2 |
|\ | | | | | | | | | | | Conflicts: mediagoblin/db/migrations.py mediagoblin/submit/views.py | ||||
| * | Stashing changes | Joar Wandborg | 2011-11-21 | 1 | -3/+0 |
| | | |||||
| * | Multimedia support - Commiting from a not yet finished state - Details below | Joar Wandborg | 2011-09-23 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | * DONE Initially testing with arista ** DONE Video display templates *** TODO Multi-browser support ** TODO Video thumbnails ** TODO Link to original video ** TODO Video cropping Also contains a lot of "debug" print's | ||||
* | | has_key is deprecated, converting uses to use "in" operator. | Nathan Yergler | 2011-10-01 | 1 | -5/+5 |
| | | |||||
* | | Whitespace and formatting cleanup. | Nathan Yergler | 2011-10-01 | 2 | -2/+2 |
|/ | | | | | | | * Removed trailing whitespace * Line length < 80 where possible * Honor conventions on number of blank lines * Honor conventions about spaces around :, = | ||||
* | 508. Updates copyright/license information | Will Kahn-Greene | 2011-09-01 | 3 | -3/+3 |
| | |||||
* | Move db_name default into config_spec.ini | Elrond | 2011-07-11 | 1 | -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. | ||||
* | Move mediagoblin.celery_setup -> mediagoblin.init.celery | Elrond | 2011-07-02 | 4 | -0/+182 |
As the first target of the new .init. submodule move celery_setup there. Quite straight forward, just a lot of places to change. |