phpbb: Make the username case-insensitve on login again.
[matthijs/projects/dorestad-bookings.git] / settings.py
1 # Django settings for dorestad1493 project.
2
3 import os
4
5 PROJECT_DIR = os.path.dirname(__file__)
6
7 DEBUG = False
8 TEMPLATE_DEBUG = DEBUG
9
10 ADMINS = (
11     # Server errors get sent here
12     ('Matthijs Kooijman', 'matthijs@stdin.nl'),
13 )
14
15 MANAGERS = ADMINS
16
17 # Import database settings from a default file (so we can keep those out
18 # of git).
19 from dbsettings import *
20 # Import alternative database settings for when running a south schema
21 # migration. The soutsettings.py takes care of detecting this case and
22 # prompting for a password, then.
23 from southsettings import *
24
25 # Local time zone for this installation. Choices can be found here:
26 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
27 # although not all choices may be available on all operating systems.
28 # If running in a Windows environment this must be set to the same as your
29 # system time zone.
30 TIME_ZONE = 'Europe/Amsterdam'
31
32 # Language code for this installation. All choices can be found here:
33 # http://www.i18nguy.com/unicode/language-identifiers.html
34 LANGUAGE_CODE = 'nl'
35
36 SITE_ID = 1
37
38 # If you set this to False, Django will make some optimizations so as not
39 # to load the internationalization machinery.
40 USE_I18N = True
41 # Also use localization (formatting of numbers and dates)
42 USE_L10N = True
43
44 # Absolute path to the directory that holds media.
45 # Example: "/home/media/media.lawrence.com/"
46 MEDIA_ROOT = ''
47
48 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
49 # trailing slash if there is a path component (optional in other cases).
50 # Examples: "http://media.lawrence.com", "http://example.com/media/"
51 MEDIA_URL = ''
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 = 'dd1=%ckg%xhi((eq)^@ri0o62trw-j!3(4bed9#u5)$_h&a!)0'
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.csrf.CsrfViewMiddleware',
73     'debug_toolbar.middleware.DebugToolbarMiddleware',
74 )
75
76 ROOT_URLCONF = 'dorestad-bookings.urls'
77
78 TEMPLATE_DIRS = (
79     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
80     # Always use forward slashes, even on Windows.
81     # Don't forget to use absolute paths, not relative paths.
82     os.path.join(PROJECT_DIR, 'templates'),
83 )
84
85 LOGIN_URL = "/reserveren/login/"
86 LOGIN_REDIRECT_URL = "/reserveren/"
87
88 INSTALLED_APPS = (
89     'django.contrib.auth',
90     'django.contrib.contenttypes',
91     'django.contrib.sessions',
92     'django.contrib.admin',
93     'tickets',
94     'debug_toolbar',
95     'south',
96 )
97
98 TEMPLATE_CONTEXT_PROCESSORS = (
99     "django.core.context_processors.auth",
100     "django.core.context_processors.debug",
101     "django.core.context_processors.i18n",
102     "django.core.context_processors.media",
103     "django.core.context_processors.request",
104 )
105
106 # Allow authentication against the phpb user accounts
107
108 AUTHENTICATION_BACKENDS = (
109     'dorestad-bookings.auth.PhpBBBackend',
110 )
111
112 # Import local settings, that are specific to this installation. These
113 # can override any settings specified here.
114 try:
115     from localsettings import *
116 except ImportError:
117     pass
118
119 # vim: set sts=4 sw=4 expandtab: