Let Influence list and annote its comments itself.
[matthijs/projects/xerxes.git] / settings.py
1 # Django settings for xerxes project.
2
3 import os
4
5 # Import database settings from a default file (so we can keep those out
6 # of git).
7 from dbsettings import *
8
9 PROJECT_DIR = os.path.dirname(__file__)
10
11 DEBUG = False
12 TEMPLATE_DEBUG = False
13
14 ADMINS = (
15     # Server errors get sent here
16     ('Matthijs Kooijman', 'matthijs@stdin.nl'),
17 )
18
19 MANAGERS = ADMINS
20
21
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
26 # system time zone.
27 TIME_ZONE = 'Europe/Amsterdam'
28
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'
33 LANGUAGE_CODE = 'nl'
34 LANGUAGES = (
35     ('nl', 'Nederlands'),
36     ('en', 'English'),
37 )
38
39 SITE_ID = 1
40
41 # If you set this to False, Django will make some optimizations so as not
42 # to load the internationalization machinery.
43 USE_I18N = True
44
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')
48
49 # URL that handles the media served from MEDIA_ROOT.
50 # Example: "http://media.lawrence.com"
51 MEDIA_URL = '/media/'
52
53 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
54 # trailing slash.
55 # Examples: "http://foo.com/media/", "/media/".
56 ADMIN_MEDIA_PREFIX = '/admin/media/'
57
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='
60
61 # List of callables that know how to import templates from various sources.
62 TEMPLATE_LOADERS = (
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',
66 )
67
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
74     # users).
75     #'django.middleware.locale.LocaleMiddleware',
76 )
77
78 ROOT_URLCONF = 'xerxes.urls'
79
80 TEMPLATE_DIRS = (
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'),
85 )
86
87 INSTALLED_APPS = (
88     'django.contrib.auth',
89     'django.contrib.contenttypes',
90     'django.contrib.sessions',
91     'django.contrib.admin',
92     'xerxes.events',
93     'xerxes.influences',
94     'xerxes.base',
95     'xerxes.tools',
96     'threadedcomments',
97 )
98
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 )
105
106 LOGIN_URL = "/accounts/login/"
107 LOGIN_REDIRECT_URL = "/influences/"
108
109 # Allow authentication against the phpb user accounts
110
111 AUTHENTICATION_BACKENDS = (
112     'xerxes.auth.PhpBBBackend',
113     'django.contrib.auth.backends.ModelBackend',
114 )
115
116 AUTH_PROFILE_MODULE = 'base.UserProfile'
117
118 # Import local settings, that are specific to this installation. These
119 # can override any settings specified here.
120 try:
121     from localsettings import *
122 except ImportError:
123     pass
124
125 # vim: set sts=4 sw=4 expandtab: