* Readonly document view.
[redakcja.git] / platforma / settings.py
1 # -*- coding: utf-8 -*-
2 import os.path
3
4 PROJECT_ROOT = os.path.realpath(os.path.dirname(__file__))
5
6 DEBUG = False
7 TEMPLATE_DEBUG = DEBUG
8
9 MAINTENANCE_MODE = False
10
11 ADMINS = (
12     # (u'Marek Stępniowski', 'marek@stepniowski.com'),
13     (u'Łukasz Rekucki', 'lrekucki@gmail.com'),
14 )
15
16 MANAGERS = ADMINS
17
18 DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
19 DATABASE_NAME = PROJECT_ROOT + '/dev.sqlite'             # Or path to database file if using sqlite3.
20 DATABASE_USER = ''             # Not used with sqlite3.
21 DATABASE_PASSWORD = ''         # Not used with sqlite3.
22 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
23 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
24
25 # Local time zone for this installation. Choices can be found here:
26 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
27 # although not all choices may be available on all operating systems.
28 # If running in a Windows environment this must be set to the same as your
29 # system time zone.
30 TIME_ZONE = 'Europe/Warsaw'
31
32 # Language code for this installation. All choices can be found here:
33 # http://www.i18nguy.com/unicode/language-identifiers.html
34 LANGUAGE_CODE = 'pl'
35
36 #import locale
37 #locale.setlocale(locale.LC_ALL, '')
38
39 SITE_ID = 1
40
41 # If you set this to False, Django will make some optimizations so as not
42 # to load the internationalization machinery.
43 USE_I18N = True
44
45 # Absolute path to the directory that holds media.
46 # Example: "/home/media/media.lawrence.com/"
47 MEDIA_ROOT = PROJECT_ROOT + '/media/'
48 STATIC_ROOT = PROJECT_ROOT + '/static/'
49
50 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
51 # trailing slash if there is a path component (optional in other cases).
52 # Examples: "http://media.lawrence.com", "http://example.com/media/"
53 MEDIA_URL = '/media/'
54 STATIC_URL = '/static/'
55
56 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
57 # trailing slash.
58 # Examples: "http://foo.com/media/", "/media/".
59 ADMIN_MEDIA_PREFIX = '/admin-media/'
60
61 # Make this unique, and don't share it with anybody.
62 SECRET_KEY = 'ife@x^_lak+x84=lxtr!-ur$5g$+s6xt85gbbm@e_fk6q3r8=+'
63 SESSION_COOKIE_NAME = "redakcja_sessionid"
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     # 'debug_toolbar.middleware.DebugToolbarMiddleware' #
91 )
92
93 AUTHENTICATION_BACKENDS = (
94     'django.contrib.auth.backends.ModelBackend',
95     'django_cas.backends.CASBackend',
96 )
97
98 ROOT_URLCONF = 'platforma.urls'
99
100 TEMPLATE_DIRS = (
101     PROJECT_ROOT + '/templates',
102 )
103
104
105 #
106 # Central Auth System
107 #
108 ## Set this to where the CAS server lives
109 # CAS_SERVER_URL = "http://cas.fnp.pl/
110 CAS_LOGOUT_COMPLETELY = True
111
112 from compress_settings import *
113
114 INSTALLED_APPS = (
115     'django.contrib.auth',
116     'django.contrib.contenttypes',
117     'django.contrib.sessions',
118     'django.contrib.sites',
119     'django.contrib.admin',
120     'django.contrib.admindocs',
121
122     'django_cas',
123     'compress',
124     'south',
125     'sorl.thumbnail',
126     'filebrowser',
127
128     'wiki',
129     'toolbar',
130 )
131
132
133 #
134 # Nose tests
135 #
136
137 TEST_RUNNER = 'django_nose.run_tests'
138 TEST_MODULES = ('wiki', 'toolbar', 'vstorage')
139 NOSE_ARGS = (
140     '--tests=' + ','.join(TEST_MODULES),
141     '--cover-package=' + ','.join(TEST_MODULES),
142     '-d',
143     '--with-coverage',
144     '--with-doctest',
145 )
146
147
148 FILEBROWSER_URL_FILEBROWSER_MEDIA = STATIC_URL + 'filebrowser/'
149 FILEBROWSER_DIRECTORY = 'images/'
150 FILEBROWSER_ADMIN_VERSIONS = []
151 FILEBROWSER_VERSIONS_BASEDIR = 'thumbnails/'
152 FILEBROWSER_DEFAULT_ORDER = "path_relative"
153
154 # REPOSITORY_PATH = '/Users/zuber/Projekty/platforma/files/books'
155 IMAGE_DIR = 'images'
156
157
158 WL_API_CONFIG = {
159     "URL": "http://localhost:7000/api/",
160     "AUTH_REALM": "WL API",
161     "AUTH_USER": "platforma",
162     "AUTH_PASSWD": "platforma",
163 }
164
165 # Import localsettings file, which may override settings defined here
166 try:
167     from localsettings import *
168 except ImportError:
169     pass
170
171 try:
172     LOGGING_CONFIG_FILE
173 except NameError:
174     LOGGING_CONFIG_FILE = os.path.join(PROJECT_ROOT, 'config',
175                                 ('logging.cfg' if not DEBUG else 'logging.cfg.dev'))
176 try:
177     import logging
178     import logging.config
179
180     logging.config.fileConfig(LOGGING_CONFIG_FILE)
181 except ImportError, exc:
182     raise