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