зеркало из https://github.com/mozilla/bedrock.git
Adding django_jobvite
This commit is contained in:
Родитель
306e0e5164
Коммит
74d4beb18c
|
@ -21,3 +21,6 @@ django-celery
|
|||
Babel>=0.9.4
|
||||
-e git://github.com/clouserw/tower.git#egg=tower
|
||||
-e git://github.com/fwenzel/django-mozilla-product-details#egg=django-mozilla-product-details
|
||||
|
||||
# Jobvite integration
|
||||
-e git://github.com/mozilla/django-jobvite#egg=django_jobvite
|
||||
|
|
|
@ -201,6 +201,9 @@ INSTALLED_APPS = (
|
|||
# L10n
|
||||
'product_details',
|
||||
'l10n_utils',
|
||||
|
||||
# Jobvite
|
||||
'django_jobvite',
|
||||
)
|
||||
|
||||
# Tells the extract script what files to look for L10n in and what function
|
||||
|
@ -248,3 +251,6 @@ BROKER_VHOST = 'playdoh'
|
|||
BROKER_CONNECTION_TIMEOUT = 0.1
|
||||
CELERY_RESULT_BACKEND = 'amqp'
|
||||
CELERY_IGNORE_RESULT = True
|
||||
|
||||
# Jobvite XML URI
|
||||
JOBVITE_URI = '' # http://www.jobvite.com/CompanyJobs/Xml.aspx?c=...
|
||||
|
|
1
urls.py
1
urls.py
|
@ -8,6 +8,7 @@ from django.conf.urls.defaults import *
|
|||
|
||||
urlpatterns = patterns('',
|
||||
(r'', include('careers.urls')),
|
||||
(r'^jobvite/', include('django_jobvite.urls')),
|
||||
|
||||
# L10n example.
|
||||
(r'^l10n_example/', include('l10n_example.urls')),
|
||||
|
|
Загрузка…
Ссылка в новой задаче