-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:DDMAL/Rodan
Conflicts: rodan/jobs/neon/module_loader.py
- Loading branch information
Showing
40 changed files
with
326 additions
and
177 deletions.
There are no files selected for viewing
Submodule client
updated
from 6a338a to eb7447
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,39 @@ | ||
Django==1.5.1 | ||
Fabric==1.6.0 | ||
Markdown==2.3.1 | ||
PIL==1.1.7 | ||
PyYAML==3.10 | ||
South==0.7.6 | ||
Spawning==0.9.7 | ||
Werkzeug==0.8.3 | ||
amqp==1.0.10 | ||
Django==1.7b3 | ||
Pillow==2.4.0 | ||
Werkzeug==0.9.4 | ||
amqp==1.4.5 | ||
amqplib==1.0.2 | ||
anyjson==0.3.3 | ||
background-estimation==2.2.0pre2 | ||
billiard==2.7.3.23 | ||
border-removal==2.2.0pre2 | ||
celery==3.0.17 | ||
distribute==0.6.35 | ||
django-celery==3.0.17 | ||
django-celery-transactions==0.1.3 | ||
django-extensions==1.1.1 | ||
backports.ssl-match-hostname==3.4.0.2 | ||
billiard==3.3.0.17 | ||
celery==3.1.11 | ||
django-extensions==1.3.5 | ||
django-filter==0.7 | ||
django-guardian==1.1.0.beta | ||
django-picklefield==0.3.0 | ||
django-uuidfield==0.4.0 | ||
djangorestframework==2.3.6 | ||
eventlet==0.12.1 | ||
flower==0.4.3 | ||
django-guardian==1.2.0 | ||
django-picklefield==0.3.1 | ||
django-uuidfield==0.5.0 | ||
djangorestframework==2.3.13 | ||
ecdsa==0.11 | ||
eventlet==0.14.0 | ||
flower==0.6.0 | ||
## FIXME: could not find svn URL in dependency_links for this package: | ||
flup==1.0.3.dev-20110405 | ||
gamera==3.4.0 | ||
greenlet==0.4.0 | ||
ipython==0.13.1 | ||
jsonfield==0.9.13 | ||
kombu==2.5.8 | ||
lxml==3.2.1 | ||
lyric-extraction==2.2.0pre2 | ||
greenlet==0.4.2 | ||
ipython==2.0.0 | ||
jsonfield==0.9.20 | ||
kombu==3.0.16 | ||
lxml==3.3.5 | ||
mimeparse==0.1.3 | ||
musicstaves==1.3.8 | ||
paramiko==1.10.0 | ||
psycopg2==2.4.6 | ||
py==1.4.13 | ||
pycrypto==2.6 | ||
pyparsing==1.5.6 | ||
pypng==0.0.15 | ||
pytest==2.3.4 | ||
python-dateutil==2.1 | ||
pytz==2013b | ||
paramiko==1.13.0 | ||
psycopg2==2.5.2 | ||
pybagit==1.5.1 | ||
pycrypto==2.6.1 | ||
pyparsing==2.0.2 | ||
pypng==0.0.16 | ||
python-dateutil==2.2 | ||
pytz==2014.2 | ||
readline==6.2.4.1 | ||
rodan-plugins==3.0.1 | ||
six==1.3.0 | ||
solrpy==0.9.5 | ||
ssh==1.8.0 | ||
staffline-removal==2.2.0pre2 | ||
tornado==3.0 | ||
six==1.6.1 | ||
solrpy==0.9.6 | ||
tornado==3.2.1 | ||
wsgiref==0.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from __future__ import absolute_import | ||
|
||
# This will make sure the app is always imported when | ||
# Django starts so that shared_task will use this app. | ||
from .celery import app as celery_app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from __future__ import absolute_import | ||
import os | ||
# set the default Django settings module for the 'celery' program. | ||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'rodan.settings') | ||
import django | ||
django.setup() | ||
from django.conf import settings | ||
from celery import Celery | ||
|
||
app = Celery('rodan') | ||
|
||
# Using a string here means the worker will not have to | ||
# pickle the object when using Windows. | ||
app.config_from_object('django.conf:settings') | ||
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.