1 # Django settings for ee project.
3 from dbsettings import *
9 # ('Your Name', 'your_email@domain.com'),
15 # Local time zone for this installation. Choices can be found here:
16 # http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
17 # although not all variations may be possible on all operating systems.
18 # If running in a Windows environment this must be set to the same as your
20 TIME_ZONE = 'Europe/Amsterdam'
22 # Language code for this installation. All choices can be found here:
23 # http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
24 # http://blogs.law.harvard.edu/tech/stories/storyReader$15
25 LANGUAGE_CODE = 'en-us'
29 # If you set this to False, Django will make some optimizations so as not
30 # to load the internationalization machinery.
33 # Absolute path to the directory that holds media.
34 # Example: "/home/media/media.lawrence.com/"
37 # URL that handles the media served from MEDIA_ROOT.
38 # Example: "http://media.lawrence.com"
41 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
43 # Examples: "http://foo.com/media/", "/media/".
44 ADMIN_MEDIA_PREFIX = '/media/'
46 # Make this unique, and don't share it with anybody.
47 SECRET_KEY = '6-zo+-1@-342%k4%82aw#kxr4f%5w00xhwby5$&fa@+!dh@(2='
49 # List of callables that know how to import templates from various sources.
51 'django.template.loaders.filesystem.load_template_source',
52 'django.template.loaders.app_directories.load_template_source',
53 # 'django.template.loaders.eggs.load_template_source',
56 MIDDLEWARE_CLASSES = (
57 'django.middleware.common.CommonMiddleware',
58 'django.contrib.sessions.middleware.SessionMiddleware',
59 'django.contrib.auth.middleware.AuthenticationMiddleware',
60 'django.middleware.doc.XViewMiddleware',
63 ROOT_URLCONF = 'ee.urls'
66 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
67 # Always use forward slashes, even on Windows.
68 # Don't forget to use absolute paths, not relative paths.
69 '/home/matthijs/docs/src/django/ee/templates',
73 'django.contrib.auth',
74 'django.contrib.contenttypes',
75 'django.contrib.sessions',
76 'django.contrib.sites',
77 'django.contrib.admin',
83 TEMPLATE_CONTEXT_PROCESSORS = (
84 "django.core.context_processors.auth",
85 "django.core.context_processors.debug",
86 "django.core.context_processors.i18n",
89 LOGIN_URL = "/accounts/login/"
91 # Allow authentication against the phpb user accounts
93 AUTHENTICATION_BACKENDS = (
94 'ee.auth.PhpBBBackend',
95 'django.contrib.auth.backends.ModelBackend',