X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=settings.py;h=9b20669291b8a702718c5f7195dafb34f230abd9;hb=d15bbfa3bcde826f90cd7c6c34682d7889635b33;hp=dfe7fce421646e63d02c792f1f340fd775822026;hpb=f1833394374f434a61ab1ab9a551f2bded207182;p=matthijs%2Fprojects%2Fxerxes.git diff --git a/settings.py b/settings.py index dfe7fce..9b20669 100644 --- a/settings.py +++ b/settings.py @@ -1,15 +1,19 @@ -# Django settings for ee project. +# Django settings for xerxes project. -from dbsettings import * import os +# Import database settings from a default file (so we can keep those out +# of git). +from dbsettings import * + PROJECT_DIR = os.path.dirname(__file__) -DEBUG = True +DEBUG = False TEMPLATE_DEBUG = DEBUG ADMINS = ( - # ('Your Name', 'your_email@domain.com'), + # Server errors get sent here + ('Matthijs Kooijman', 'matthijs@stdin.nl'), ) MANAGERS = ADMINS @@ -47,7 +51,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 @@ -75,7 +79,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". @@ -88,12 +92,11 @@ INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', '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 = ( @@ -101,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/" @@ -110,9 +113,17 @@ LOGIN_REDIRECT_URL = "/influences/" # Allow authentication against the phpb user accounts AUTHENTICATION_BACKENDS = ( - 'ee.auth.PhpBBBackend', + 'xerxes.auth.PhpBBBackend', 'django.contrib.auth.backends.ModelBackend', ) AUTH_PROFILE_MODULE = 'base.UserProfile' + +# Import local settings, that are specific to this installation. These +# can override any settings specified here. +try: + from localsettings import * +except ImportError: + pass + # vim: set sts=4 sw=4 expandtab: