83456f8d0bcae95460b2af652c3f54ac9c508f1f
[redakcja.git] / platforma / 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     (u'Łukasz Rekucki', 'lrekucki@gmail.com'),
12 )
13
14 MANAGERS = ADMINS
15
16 DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
17 DATABASE_NAME = PROJECT_ROOT + '/dev.sqlite'             # Or path to database file if using sqlite3.
18 DATABASE_USER = ''             # Not used with sqlite3.
19 DATABASE_PASSWORD = ''         # Not used with sqlite3.
20 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
21 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
22
23 # Local time zone for this installation. Choices can be found here:
24 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
25 # although not all choices may be available on all operating systems.
26 # If running in a Windows environment this must be set to the same as your
27 # system time zone.
28 TIME_ZONE = 'Europe/Warsaw Poland'
29
30 # Language code for this installation. All choices can be found here:
31 # http://www.i18nguy.com/unicode/language-identifiers.html
32 LANGUAGE_CODE = 'pl'
33
34 #import locale
35 #locale.setlocale(locale.LC_ALL, '')
36
37 SITE_ID = 1
38
39 # If you set this to False, Django will make some optimizations so as not
40 # to load the internationalization machinery.
41 USE_I18N = True
42
43 # Absolute path to the directory that holds media.
44 # Example: "/home/media/media.lawrence.com/"
45 MEDIA_ROOT = PROJECT_ROOT + '/media/'
46 STATIC_ROOT = PROJECT_ROOT + '/static/'
47
48 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
49 # trailing slash if there is a path component (optional in other cases).
50 # Examples: "http://media.lawrence.com", "http://example.com/media/"
51 MEDIA_URL = '/media/'
52 STATIC_URL = '/static/'
53
54 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
55 # trailing slash.
56 # Examples: "http://foo.com/media/", "/media/".
57 ADMIN_MEDIA_PREFIX = '/admin-media/'
58
59 # Make this unique, and don't share it with anybody.
60 SECRET_KEY = 'ife@x^_lak+x84=lxtr!-ur$5g$+s6xt85gbbm@e_fk6q3r8=+'
61
62 # List of callables that know how to import templates from various sources.
63 TEMPLATE_LOADERS = (
64     'django.template.loaders.filesystem.load_template_source',
65     'django.template.loaders.app_directories.load_template_source',
66 #     'django.template.loaders.eggs.load_template_source',
67 )
68
69 TEMPLATE_CONTEXT_PROCESSORS = (
70     "django.core.context_processors.auth",
71     "django.core.context_processors.debug",
72     "django.core.context_processors.i18n",
73     "platforma.context_processors.settings",
74     "django.core.context_processors.request",
75 )
76
77
78 MIDDLEWARE_CLASSES = (
79     'django.middleware.common.CommonMiddleware',
80     'django.contrib.sessions.middleware.SessionMiddleware',
81
82     'django.contrib.auth.middleware.AuthenticationMiddleware',
83     'django_cas.middleware.CASMiddleware',
84
85     'django.middleware.doc.XViewMiddleware',
86     'maintenancemode.middleware.MaintenanceModeMiddleware',
87 )
88
89 AUTHENTICATION_BACKENDS = (
90     'django.contrib.auth.backends.ModelBackend',
91     'django_cas.backends.CASBackend',
92 )
93
94 ROOT_URLCONF = 'urls'
95
96 TEMPLATE_DIRS = (
97     PROJECT_ROOT + '/templates',
98 )
99
100
101 #
102 # Central Auth System
103 #
104 ## Set this to where the CAS server lives 
105 # CAS_SERVER_URL = "http://cas.fnp.pl/
106 CAS_ADMIN_PREFIX = "/admin/"
107 CAS_LOGOUT_COMPLETELY = True
108
109 # CSS and JS files to compress
110 # COMPRESS_CSS = {
111 #     'all': {
112 #         'source_filenames': ('css/master.css', 'css/jquery.date_input.css', 'css/jquery.countdown.css',),
113 #         'output_filename': 'css/all.min.css',
114 #     }
115 # }
116
117 # COMPRESS_JS = {
118 #     'all': {
119 #         'source_filenames': ('js/jquery.js', 'js/jquery.date_input.js', 'js/jquery.date_input-pl.js',
120 #             'js/jquery.countdown.js', 'js/jquery.countdown-pl.js',),
121 #         'output_filename': 'js/all.min.js',
122 #     }
123 # }
124
125 # COMPRESS_CSS_FILTERS = None
126
127
128 INSTALLED_APPS = (
129     'django.contrib.auth',
130     'django.contrib.contenttypes',
131     'django.contrib.sessions',
132     'django.contrib.sites',
133     'django.contrib.admin',
134     'django.contrib.admindocs',
135
136     'django_nose',
137
138     'wiki',
139     'sorl.thumbnail',
140     'filebrowser',
141     'toolbar',
142 )
143
144
145 #
146 # Nose tests
147 #
148
149 TEST_RUNNER = 'django_nose.run_tests'
150 TEST_MODULES = ('wiki', 'toolbar', 'vstorage')
151 NOSE_ARGS = (
152     '--tests=' + ','.join(TEST_MODULES),
153     '--cover-package=' + ','.join(TEST_MODULES),
154     '-d',
155     '--with-coverage',
156     '--with-doctest'
157 )
158
159
160 FILEBROWSER_URL_FILEBROWSER_MEDIA = STATIC_URL + 'filebrowser/'
161 FILEBROWSER_DIRECTORY = 'images/'
162 FILEBROWSER_ADMIN_VERSIONS = []
163 FILEBROWSER_VERSIONS_BASEDIR = 'thumbnails/'
164 FILEBROWSER_DEFAULT_ORDER = "path_relative"
165
166 # REPOSITORY_PATH = '/Users/zuber/Projekty/platforma/files/books'
167 IMAGE_DIR = 'images'
168
169 # Python logging settings
170 import logging
171
172 log = logging.getLogger('platforma')
173 log.setLevel(logging.DEBUG)
174 ch = logging.StreamHandler()
175 ch.setLevel(logging.DEBUG)
176 formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
177 ch.setFormatter(formatter)
178 log.addHandler(ch)
179
180 # Import localsettings file, which may override settings defined here
181 try:
182     from localsettings import *
183 except ImportError:
184     pass
185