1 # -*- coding: utf-8 -*-
4 PROJECT_ROOT = path.realpath(path.dirname(__file__))
9 MAINTENANCE_MODE = True
13 (u'Marek Stępniowski', 'marek@stepniowski.com'),
14 (u'Łukasz Rekucki', 'lrekucki@gmail.com'),
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.
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
31 TIME_ZONE = 'Europe/Warsaw Poland'
33 # Language code for this installation. All choices can be found here:
34 # http://www.i18nguy.com/unicode/language-identifiers.html
38 #locale.setlocale(locale.LC_ALL, '')
42 # If you set this to False, Django will make some optimizations so as not
43 # to load the internationalization machinery.
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/'
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/"
55 STATIC_URL = '/static/'
57 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
59 # Examples: "http://foo.com/media/", "/media/".
60 ADMIN_MEDIA_PREFIX = '/admin-media/'
62 # Make this unique, and don't share it with anybody.
63 SECRET_KEY = 'ife@x^_lak+x84=lxtr!-ur$5g$+s6xt85gbbm@e_fk6q3r8=+'
65 # List of callables that know how to import templates from various sources.
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',
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",
81 MIDDLEWARE_CLASSES = (
82 'django.middleware.common.CommonMiddleware',
83 'django.contrib.sessions.middleware.SessionMiddleware',
85 'django.contrib.auth.middleware.AuthenticationMiddleware',
86 'django_cas.middleware.CASMiddleware',
88 'django.middleware.doc.XViewMiddleware',
89 'maintenancemode.middleware.MaintenanceModeMiddleware',
92 AUTHENTICATION_BACKENDS = (
93 'django.contrib.auth.backends.ModelBackend',
94 'django_cas.backends.CASBackend',
100 PROJECT_ROOT + '/templates',
105 # Central Auth System
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
112 # CSS and JS files to compress
115 # 'source_filenames': ('css/master.css', 'css/jquery.date_input.css', 'css/jquery.countdown.css',),
116 # 'output_filename': 'css/all.min.css',
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',
128 # COMPRESS_CSS_FILTERS = None
132 'django.contrib.auth',
133 'django.contrib.contenttypes',
134 'django.contrib.sessions',
135 'django.contrib.sites',
136 'django.contrib.admin',
137 'django.contrib.admindocs',
152 TEST_RUNNER = 'django_nose.run_tests'
153 TEST_MODULES = ('wiki', 'toolbar', 'vstorage')
155 '--tests=' + ','.join(TEST_MODULES),
156 '--cover-package=' + ','.join(TEST_MODULES),
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"
169 # REPOSITORY_PATH = '/Users/zuber/Projekty/platforma/files/books'
172 # Python logging settings
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)
183 # Import localsettings file, which may override settings defined here
185 from localsettings import *