Profile edit and password change views. Better login/logout templates. Some polish...
[cas.git] / src / cas / settings.py
1 # -*- coding: utf-8 -*-
2 from os import path
3
4 PROJECT_ROOT = path.realpath(path.dirname(__file__))
5
6 DEBUG = True
7 TEMPLATE_DEBUG = DEBUG
8
9 ADMINS = [
10     "lrekucki@gmail.com",
11 ]
12
13 MANAGERS = ADMINS
14
15 DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
16 DATABASE_NAME = PROJECT_ROOT + '/dev.sqlite'             # Or path to database file if using sqlite3.
17 DATABASE_USER = ''             # Not used with sqlite3.
18 DATABASE_PASSWORD = ''         # Not used with sqlite3.
19 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
20 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
21
22 # Local time zone for this installation. Choices can be found here:
23 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
24 # although not all choices may be available 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/Warsaw Poland'
28
29 # Language code for this installation. All choices can be found here:
30 # http://www.i18nguy.com/unicode/language-identifiers.html
31 LANGUAGE_CODE = 'pl'
32
33 SITE_ID = 1
34
35 # If you set this to False, Django will make some optimizations so as not
36 # to load the internationalization machinery.
37 USE_I18N = True
38
39 # Absolute path to the directory that holds media.
40 # Example: "/home/media/media.lawrence.com/"
41 MEDIA_ROOT = PROJECT_ROOT + '/media/'
42
43 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
44 # trailing slash if there is a path component (optional in other cases).
45 # Examples: "http://media.lawrence.com", "http://example.com/media/"
46 MEDIA_URL = '/media/'
47
48 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
49 # trailing slash.
50 # Examples: "http://foo.com/media/", "/media/".
51 ADMIN_MEDIA_PREFIX = '/admin-media/'
52
53 # List of callables that know how to import templates from various sources.
54 TEMPLATE_LOADERS = (
55     'django.template.loaders.filesystem.load_template_source',
56     'django.template.loaders.app_directories.load_template_source',
57 #     'django.template.loaders.eggs.load_template_source',
58 )
59
60 TEMPLATE_CONTEXT_PROCESSORS = (
61     "django.core.context_processors.auth",
62     "django.core.context_processors.debug",
63     "django.core.context_processors.i18n",
64     'django.core.context_processors.media',
65     "django.core.context_processors.request",
66 )
67
68
69 MIDDLEWARE_CLASSES = (
70     'django.middleware.common.CommonMiddleware',
71     'django.contrib.sessions.middleware.SessionMiddleware',
72     'django.contrib.auth.middleware.AuthenticationMiddleware',
73     'django.middleware.doc.XViewMiddleware',
74 )
75
76 ROOT_URLCONF = 'cas.urls'
77
78 TEMPLATE_DIRS = (
79     PROJECT_ROOT + '/templates',
80 )
81
82 INSTALLED_APPS = (
83     'django.contrib.auth',
84     'django.contrib.contenttypes',
85     'django.contrib.sessions',
86     'django.contrib.sites',
87     'django.contrib.admin',
88     'django.contrib.admindocs',
89
90     'cas_provider',
91     'accounts',
92 )
93
94 # django-cas-provider settings
95 LOGIN_URL = '/cas/login/'
96 LOGOUT_URL = '/cas/logout/'
97 CAS_CUSTOM_ATTRIBUTES_CALLBACK = 'utils.custom_attributes_callback'
98 SESSION_COOKIE_NAME = 'fnpcas'
99
100 # Import localsettings file, which may override settings defined here
101 try:
102     from localsettings import *
103 except ImportError:
104     pass