1 # -*- coding: utf-8 -*-
4 PROJECT_ROOT = path.realpath(path.dirname(__file__))
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.
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
25 TIME_ZONE = 'Europe/Warsaw Poland'
27 # Language code for this installation. All choices can be found here:
28 # http://www.i18nguy.com/unicode/language-identifiers.html
33 # If you set this to False, Django will make some optimizations so as not
34 # to load the internationalization machinery.
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/'
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/"
46 STATIC_URL = '/static/'
48 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
50 # Examples: "http://foo.com/media/", "/media/".
51 ADMIN_MEDIA_PREFIX = '/admin-media/'
53 # List of callables that know how to import templates from various sources.
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',
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",
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',
75 ROOT_URLCONF = 'cas.urls'
78 PROJECT_ROOT + '/templates',
82 'django.contrib.auth',
83 'django.contrib.contenttypes',
84 'django.contrib.sessions',
85 'django.contrib.sites',
86 'django.contrib.admin',
87 'django.contrib.admindocs',
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'
98 # Import localsettings file, which may override settings defined here
100 from localsettings import *