1 # Django settings for xerxes project.
5 # Import database settings from a default file (so we can keep those out
7 from dbsettings import *
9 PROJECT_DIR = os.path.dirname(__file__)
12 TEMPLATE_DEBUG = False
15 # Server errors get sent here
16 ('Matthijs Kooijman', 'matthijs@stdin.nl'),
22 # Local time zone for this installation. Choices can be found here:
23 # http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
24 # although not all variations may be possible on all operating systems.
25 # If running in a Windows environment this must be set to the same as your
27 TIME_ZONE = 'Europe/Amsterdam'
29 # Language code for this installation. All choices can be found here:
30 # http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
31 # http://blogs.law.harvard.edu/tech/stories/storyReader$15
32 #LANGUAGE_CODE = 'en-us'
41 # If you set this to False, Django will make some optimizations so as not
42 # to load the internationalization machinery.
45 # Absolute path to the directory that holds media.
46 # Example: "/home/media/media.lawrence.com/"
47 MEDIA_ROOT = os.path.join(PROJECT_DIR, 'media')
49 # URL that handles the media served from MEDIA_ROOT.
50 # Example: "http://media.lawrence.com"
53 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
55 # Examples: "http://foo.com/media/", "/media/".
56 ADMIN_MEDIA_PREFIX = '/admin/media/'
58 # Make this unique, and don't share it with anybody.
59 SECRET_KEY = '6-zo+-1@-342%k4%82aw#kxr4f%5w00xhwby5$&fa@+!dh@(2='
61 # List of callables that know how to import templates from various sources.
63 'django.template.loaders.filesystem.load_template_source',
64 'django.template.loaders.app_directories.load_template_source',
65 # 'django.template.loaders.eggs.load_template_source',
68 MIDDLEWARE_CLASSES = (
69 'django.middleware.common.CommonMiddleware',
70 'django.contrib.sessions.middleware.SessionMiddleware',
71 'django.contrib.auth.middleware.AuthenticationMiddleware',
72 'django.middleware.doc.XViewMiddleware',
73 # Let's keep this disabled (until we can offer language selection to
75 #'django.middleware.locale.LocaleMiddleware',
78 ROOT_URLCONF = 'xerxes.urls'
81 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
82 # Always use forward slashes, even on Windows.
83 # Don't forget to use absolute paths, not relative paths.
84 os.path.join(PROJECT_DIR, 'templates'),
88 'django.contrib.auth',
89 'django.contrib.contenttypes',
90 'django.contrib.sessions',
91 'django.contrib.admin',
99 TEMPLATE_CONTEXT_PROCESSORS = (
100 "django.core.context_processors.auth",
101 "django.core.context_processors.debug",
102 "django.core.context_processors.i18n",
103 "django.core.context_processors.media",
104 "django.core.context_processors.request",
107 LOGIN_URL = "/accounts/login/"
108 LOGIN_REDIRECT_URL = "/influences/"
110 # Allow authentication against the phpb user accounts
112 AUTHENTICATION_BACKENDS = (
113 'xerxes.auth.PhpBBBackend',
114 'django.contrib.auth.backends.ModelBackend',
117 AUTH_PROFILE_MODULE = 'base.UserProfile'
119 # Import local settings, that are specific to this installation. These
120 # can override any settings specified here.
122 from localsettings import *
126 # vim: set sts=4 sw=4 expandtab: