Dodanie aplikacji sponsors do zarządzania logami sponsorów w stopce.
[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 = False
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
43 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
44 # trailing slash if there is a path component (optional in other cases).
45 # Examples: "http://media.lawrence.com", "http://example.com/media/"
46 MEDIA_URL = '/media/'
47
48 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
49 # trailing slash.
50 # Examples: "http://foo.com/media/", "/media/".
51 ADMIN_MEDIA_PREFIX = '/admin-media/'
52
53 # Make this unique, and don't share it with anybody.
54
55 # List of callables that know how to import templates from various sources.
56 TEMPLATE_LOADERS = [
57     'django.template.loaders.filesystem.load_template_source',
58     'django.template.loaders.app_directories.load_template_source',
59 #     'django.template.loaders.eggs.load_template_source',
60 ]
61
62 TEMPLATE_CONTEXT_PROCESSORS = [
63     'django.core.context_processors.auth',
64     'django.core.context_processors.debug',
65     'django.core.context_processors.i18n',
66     'django.core.context_processors.media',
67     'django.core.context_processors.request',
68 ]
69
70 MIDDLEWARE_CLASSES = [
71     'django.middleware.common.CommonMiddleware',
72     'django.contrib.sessions.middleware.SessionMiddleware',
73     'django.contrib.auth.middleware.AuthenticationMiddleware',
74     'django.middleware.doc.XViewMiddleware',
75     'pagination.middleware.PaginationMiddleware',
76 ]
77
78 ROOT_URLCONF = 'wolnelektury.urls'
79
80 TEMPLATE_DIRS = [
81     path.join(PROJECT_DIR, 'templates'),
82 ]
83
84 LOGIN_URL = '/uzytkownicy/zaloguj/'
85
86 LOGIN_REDIRECT_URL = '/'
87
88 INSTALLED_APPS = [
89     # included
90     'django.contrib.auth',
91     'django.contrib.contenttypes',
92     'django.contrib.sessions',
93     'django.contrib.sites',
94     'django.contrib.admin',
95     'django.contrib.admindocs',
96     
97     # external
98     'south',
99     'sponsors',
100     'newtagging',
101     'pagination',
102     'chunks',
103     'compress',
104     'catalogue',
105 ]
106
107 CACHE_BACKEND = 'locmem:///?max_entries=3000'
108
109 # CSS and JavaScript file groups
110 COMPRESS_CSS = {
111     'all': {
112         'source_filenames': ('css/master.css', 'css/jquery.autocomplete.css', 'css/master.plain.css', 'css/sponsors.css',),
113         'output_filename': 'css/all.min.css',
114     },
115     'book': {
116         'source_filenames': ('css/master.book.css',),
117         'output_filename': 'css/book.min.css',
118     }
119 }
120
121 COMPRESS_JS = {
122     'jquery': {
123         'source_filenames': ('js/jquery.js',),
124         'output_filename': 'js/jquery.min.js',
125     },
126     'all': {
127         'source_filenames': ('js/jquery.autocomplete.js', 'js/jquery.form.js', 
128             'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/catalogue.js',),
129         'output_filename': 'js/all.min.js',
130     },
131     'book': {
132         'source_filenames': ('js/jquery.eventdelegation.js', 'js/jquery.scrollto.js', 'js/jquery.highlightfade.js', 'js/book.js',),
133         'output_filename': 'js/book.min.js',
134     }
135 }
136
137 COMPRESS_CSS_FILTERS = None
138
139
140 # Load localsettings, if they exist
141 try:
142     from localsettings import *
143 except ImportError:
144     pass
145