Dodanie aplikacji django-cas-provider.
[redakcja.git] / project / 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     (u'Marek StÄ™pniowski', 'marek@stepniowski.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 import locale
34 locale.setlocale(locale.LC_ALL, '')
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
42 # Absolute path to the directory that holds media.
43 # Example: "/home/media/media.lawrence.com/"
44 MEDIA_ROOT = PROJECT_ROOT + '/media/'
45 STATIC_ROOT = PROJECT_ROOT + '/static/'
46
47 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
48 # trailing slash if there is a path component (optional in other cases).
49 # Examples: "http://media.lawrence.com", "http://example.com/media/"
50 MEDIA_URL = '/media/'
51 STATIC_URL = '/static/'
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 = 'ife@x^_lak+x84=lxtr!-ur$5g$+s6xt85gbbm@e_fk6q3r8=+'
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 TEMPLATE_CONTEXT_PROCESSORS = (
69     "django.core.context_processors.auth",
70     "django.core.context_processors.debug",
71     "django.core.context_processors.i18n",
72     "explorer.context_processors.settings",
73     "django.core.context_processors.request",
74 )
75
76
77 MIDDLEWARE_CLASSES = (
78     'django.middleware.common.CommonMiddleware',
79     'django.contrib.sessions.middleware.SessionMiddleware',
80     'django.contrib.auth.middleware.AuthenticationMiddleware',
81     'explorer.middleware.EditorSettingsMiddleware',
82     'django.middleware.doc.XViewMiddleware',
83
84     'maintenancemode.middleware.MaintenanceModeMiddleware',
85 )
86
87 ROOT_URLCONF = 'urls'
88
89 TEMPLATE_DIRS = (
90     PROJECT_ROOT + '/templates',    
91 )
92
93 # CSS and JS files to compress
94 # COMPRESS_CSS = {
95 #     'all': {
96 #         'source_filenames': ('css/master.css', 'css/jquery.date_input.css', 'css/jquery.countdown.css',),
97 #         'output_filename': 'css/all.min.css',
98 #     }
99 # }
100
101 # COMPRESS_JS = {
102 #     'all': {
103 #         'source_filenames': ('js/jquery.js', 'js/jquery.date_input.js', 'js/jquery.date_input-pl.js',
104 #             'js/jquery.countdown.js', 'js/jquery.countdown-pl.js',),
105 #         'output_filename': 'js/all.min.js',
106 #     }
107 # }
108
109 # COMPRESS_CSS_FILTERS = None
110
111 INSTALLED_APPS = (
112     'django.contrib.auth',
113     'django.contrib.contenttypes',
114     'django.contrib.sessions',
115     'django.contrib.sites',
116     'django.contrib.admin',
117     'django.contrib.admindocs',
118     
119     'cas_provider',
120     'cas_consumer',
121     'explorer',
122     'toolbar',
123     'api',
124     'wysiwyg',
125 )
126
127
128 # REPOSITORY_PATH = '/Users/zuber/Projekty/platforma/files/books'
129 IMAGE_DIR = 'images'
130 EDITOR_COOKIE_NAME = 'options'
131 EDITOR_DEFAULT_SETTINGS = {
132     'panels': [
133         {'name': 'htmleditor', 'ratio': 0.5},
134         {'name': 'gallery', 'ratio': 0.5}
135     ],
136 }
137
138 # django-cas-provider
139 LOGIN_URL = '/cas/login/'
140 LOGOUT_URL = '/cas/logout/'
141
142 # Python logging settings
143 import logging
144
145 log = logging.getLogger('platforma')
146 log.setLevel(logging.DEBUG)
147 ch = logging.StreamHandler()
148 ch.setLevel(logging.DEBUG)
149 formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
150 ch.setFormatter(formatter)
151 log.addHandler(ch)
152
153
154 # Import localsettings file, which may override settings defined here
155 try:
156     from localsettings import *
157 except ImportError:
158     pass
159