* Removed unneeded files.
[wolnelektury.git] / wolnelektury / settings.py
1 # Django settings for wolnelektury project.
2 from os import path
3
4 PROJECT_DIR = path.abspath(path.dirname(__file__))
5
6 DEBUG = True
7 TEMPLATE_DEBUG = DEBUG
8
9 ADMINS = [
10     # ('Your Name', 'your_email@domain.com'),
11 ]
12
13 MANAGERS = ADMINS
14
15 DATABASE_ENGINE = 'sqlite3'    # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
16 DATABASE_NAME = path.join(PROJECT_DIR, 'dev.db')  # 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 SITE_ID = 1
34
35 # If you set this to False, Django will make some optimizations so as not
36 # to load the internationalization machinery.
37 USE_I18N = True
38
39 # Absolute path to the directory that holds media.
40 # Example: "/home/media/media.lawrence.com/"
41 MEDIA_ROOT = path.join(PROJECT_DIR, '../media')
42 STATIC_ROOT = path.join(PROJECT_DIR, 'static')
43
44 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
45 # trailing slash if there is a path component (optional in other cases).
46 # Examples: "http://media.lawrence.com", "http://example.com/media/"
47 MEDIA_URL = '/media/'
48 STATIC_URL = '/static/'
49
50 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
51 # trailing slash.
52 # Examples: "http://foo.com/media/", "/media/".
53 ADMIN_MEDIA_PREFIX = '/admin-media/'
54
55 # Make this unique, and don't share it with anybody.
56
57 # List of callables that know how to import templates from various sources.
58 TEMPLATE_LOADERS = [
59     'django.template.loaders.filesystem.load_template_source',
60     'django.template.loaders.app_directories.load_template_source',
61 #     'django.template.loaders.eggs.load_template_source',
62 ]
63
64 TEMPLATE_CONTEXT_PROCESSORS = [
65     'django.core.context_processors.auth',
66     'django.core.context_processors.debug',
67     'django.core.context_processors.i18n',
68     'django.core.context_processors.media',
69     'django.core.context_processors.request',
70     'wolnelektury.context_processors.extra_settings',
71 ]
72
73 MIDDLEWARE_CLASSES = [
74     'django.middleware.common.CommonMiddleware',
75     'django.contrib.sessions.middleware.SessionMiddleware',
76     'django.contrib.auth.middleware.AuthenticationMiddleware',
77     'django.middleware.doc.XViewMiddleware',
78     'pagination.middleware.PaginationMiddleware',
79     'django.middleware.locale.LocaleMiddleware',
80 ]
81
82 ROOT_URLCONF = 'wolnelektury.urls'
83
84 TEMPLATE_DIRS = [
85     path.join(PROJECT_DIR, 'templates'),
86 ]
87
88 LOGIN_URL = '/uzytkownicy/zaloguj/'
89
90 LOGIN_REDIRECT_URL = '/'
91
92 INSTALLED_APPS = [
93     # included
94     'django.contrib.auth',
95     'django.contrib.contenttypes',
96     'django.contrib.sessions',
97     'django.contrib.sites',
98     'django.contrib.admin',
99     'django.contrib.admindocs',
100
101     # external
102     'south',
103     'sorl.thumbnail',
104     'sponsors',
105     'newtagging',
106     'pagination',
107     'chunks',
108     'compress',
109     'catalogue',
110     'lessons',
111     'piston',
112     'api',
113 ]
114
115 CACHE_BACKEND = 'locmem:///?max_entries=3000'
116
117 # CSS and JavaScript file groups
118 COMPRESS_CSS = {
119     'all': {
120         'source_filenames': ('css/master.css', 'css/jquery.autocomplete.css', 'css/jquery.countdown.css', 'css/master.plain.css', 'css/sponsors.css',),
121         'output_filename': 'css/all.min?.css',
122     },
123     'book': {
124         'source_filenames': ('css/master.book.css',),
125         'output_filename': 'css/book.min?.css',
126     }
127 }
128
129 COMPRESS_JS = {
130     'jquery': {
131         'source_filenames': ('js/jquery.js',),
132         'output_filename': 'js/jquery.min.js',
133     },
134     'all': {
135         'source_filenames': ('js/jquery.autocomplete.js', 'js/jquery.form.js',
136             'js/jquery.countdown.js', 'js/jquery.countdown-pl.js',
137             'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/catalogue.js',
138             'js/jquery.cookie.js',),
139         'output_filename': 'js/all?.min.js',
140     },
141     'book': {
142         'source_filenames': ('js/jquery.eventdelegation.js', 'js/jquery.scrollto.js', 'js/jquery.highlightfade.js', 'js/book.js',),
143         'output_filename': 'js/book?.min.js',
144     }
145 }
146
147 COMPRESS_VERSION = True
148 COMPRESS_CSS_FILTERS = None
149
150 THUMBNAIL_QUALITY = 95
151 THUMBNAIL_EXTENSION = 'png'
152
153 THUMBNAIL_PROCESSORS = (
154     # Default processors
155     'sorl.thumbnail.processors.colorspace',
156     'sorl.thumbnail.processors.autocrop',
157     'sorl.thumbnail.processors.scale_and_crop',
158     'sorl.thumbnail.processors.filters',
159     # Custom processors
160     'sponsors.processors.add_padding',
161 )
162
163 # Load localsettings, if they exist
164 try:
165     from localsettings import *
166 except ImportError:
167     pass
168