* Rename project from ee to xerxes.
[matthijs/projects/xerxes.git] / settings.py
index 9393d9494882b9fae7dd0883e9edfca9f03b3c3b..15de0b1e83fafd310d4bb4f3a68c2bd7c7e53535 100644 (file)
@@ -1,4 +1,4 @@
-# Django settings for ee project.
+# Django settings for xerxes project.
 
 import os
 
@@ -50,7 +50,7 @@ MEDIA_ROOT = ''
 MEDIA_URL = ''
 
 # URL prefix for static files. Will be made available by
-# ee.tools.context_processors.static
+# xerxes.tools.context_processors.static
 STATIC_URL_PREFIX = '/static/'
 
 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
@@ -78,7 +78,7 @@ MIDDLEWARE_CLASSES = (
     #'django.middleware.locale.LocaleMiddleware',
 )
 
-ROOT_URLCONF = 'ee.urls'
+ROOT_URLCONF = 'xerxes.urls'
 
 TEMPLATE_DIRS = (
     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
@@ -93,10 +93,10 @@ INSTALLED_APPS = (
     'django.contrib.sessions',
     'django.contrib.sites',
     'django.contrib.admin',
-    'ee.events',
-    'ee.influences',
-    'ee.base',
-    'ee.tools',
+    'xerxes.events',
+    'xerxes.influences',
+    'xerxes.base',
+    'xerxes.tools',
 )
 
 TEMPLATE_CONTEXT_PROCESSORS = (
@@ -104,7 +104,7 @@ TEMPLATE_CONTEXT_PROCESSORS = (
     "django.core.context_processors.debug",
     "django.core.context_processors.i18n",
     # Add STATIC_URL_PREFIX to the context
-    "ee.tools.context_processors.static",
+    "xerxes.tools.context_processors.static",
 )
 
 LOGIN_URL = "/accounts/login/"
@@ -113,7 +113,7 @@ LOGIN_REDIRECT_URL = "/influences/"
 # Allow authentication against the phpb user accounts
 
 AUTHENTICATION_BACKENDS = (
-    'ee.auth.PhpBBBackend',
+    'xerxes.auth.PhpBBBackend',
     'django.contrib.auth.backends.ModelBackend',
 )