acc59885df7b6aee58377b1dc5ea4ef999981f77
[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
11 MANAGERS = ADMINS
12
13 DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
14 DATABASE_NAME = PROJECT_ROOT + '/dev.sqlite'             # Or path to database file if using sqlite3.
15 DATABASE_USER = ''             # Not used with sqlite3.
16 DATABASE_PASSWORD = ''         # Not used with sqlite3.
17 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
18 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
19
20 # Local time zone for this installation. Choices can be found here:
21 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
22 # although not all choices may be available on all operating systems.
23 # If running in a Windows environment this must be set to the same as your
24 # system time zone.
25 TIME_ZONE = 'Europe/Warsaw Poland'
26
27 # Language code for this installation. All choices can be found here:
28 # http://www.i18nguy.com/unicode/language-identifiers.html
29 LANGUAGE_CODE = 'pl'
30
31 SITE_ID = 1
32
33 # If you set this to False, Django will make some optimizations so as not
34 # to load the internationalization machinery.
35 USE_I18N = True
36
37 # Absolute path to the directory that holds media.
38 # Example: "/home/media/media.lawrence.com/"
39 MEDIA_ROOT = PROJECT_ROOT + '/media/'
40 STATIC_ROOT = PROJECT_ROOT + '/static/'
41
42 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
43 # trailing slash if there is a path component (optional in other cases).
44 # Examples: "http://media.lawrence.com", "http://example.com/media/"
45 MEDIA_URL = '/media/'
46 STATIC_URL = '/static/'
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.request",
65 )
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 )
74
75 ROOT_URLCONF = 'cas.urls'
76
77 TEMPLATE_DIRS = (
78     PROJECT_ROOT + '/templates',    
79 )
80
81 INSTALLED_APPS = (
82     'django.contrib.auth',
83     'django.contrib.contenttypes',
84     'django.contrib.sessions',
85     'django.contrib.sites',
86     'django.contrib.admin',
87     'django.contrib.admindocs',
88     
89     'cas_provider',
90 )
91
92 # django-cas-provider settings
93 LOGIN_URL = '/cas/login/'
94 LOGOUT_URL = '/cas/logout/'
95 CAS_CUSTOM_ATTRIBUTES_CALLBACK = 'utils.custom_attributes_callback'
96 SESSION_COOKIE_NAME = 'fnpcas'
97
98 # Import localsettings file, which may override settings defined here
99 try:
100     from localsettings import *
101 except ImportError:
102     pass