Merge branch 'develop' of git-ungleich:dynamicweb into develop

This commit is contained in:
rascencio 2015-09-15 11:16:02 -06:00
commit 81207b8e12
106 changed files with 189 additions and 473 deletions

View file

@ -15,9 +15,14 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/
ADMINS = (
('Nico Schottelius', 'nico.schottelius@ungleich.ch'),
)
# ('Sanghee Kim', 'sanghee.kim@ungleich.ch'),
MANAGERS = ADMINS
SITE_ID = 1
@ -65,6 +70,7 @@ INSTALLED_APPS = (
'djangocms_link',
'djangocms_snippet',
'djangocms_teaser',
'djangocms_page_meta',
#django-filer
'cmsplugin_filer_file',
'cmsplugin_filer_folder',
@ -91,9 +97,8 @@ INSTALLED_APPS = (
'compressor',
# ungleich
'ungleich',
'railshosting',
'hosting',
'digitalglarus',
'djangocms_page_meta',
)
MIDDLEWARE_CLASSES = (

View file

@ -12,6 +12,7 @@ urlpatterns = [
namespace="digitalglarus")),
url(r'^railshosting/', include('railshosting.urls',
namespace="railshosting")),
url(r'^hosting/', include('hosting.urls', namespace="hosting")),
url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')),
url(r'^jsi18n/(?P<packages>\S+?)/$', 'django.views.i18n.javascript_catalog'),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)