Faster javascript and usability enchancements in book reader.
[wolnelektury.git] / wolnelektury / settings.py
1 # -*- coding: utf-8 -*-
2 # Django settings for wolnelektury project.
3 from os import path
4
5 PROJECT_DIR = path.abspath(path.dirname(__file__))
6
7 DEBUG = True
8 TEMPLATE_DEBUG = DEBUG
9
10 ADMINS = (
11     (u'Marek StÄ™pniowski', 'marek@stepniowski.com'),
12 )
13
14 MANAGERS = ADMINS
15
16 DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
17 DATABASE_NAME = path.join(PROJECT_DIR, 'lektury.sqlite')  # Or path to database file if using sqlite3.
18 DATABASE_USER = ''             # Not used with sqlite3.
19 DATABASE_PASSWORD = ''         # Not used with sqlite3.
20 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
21 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
22
23 # Local time zone for this installation. Choices can be found here:
24 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
25 # although not all choices may be available on all operating systems.
26 # If running in a Windows environment this must be set to the same as your
27 # system time zone.
28 TIME_ZONE = 'America/Chicago'
29
30 # Language code for this installation. All choices can be found here:
31 # http://www.i18nguy.com/unicode/language-identifiers.html
32 LANGUAGE_CODE = 'pl'
33
34 SITE_ID = 1
35
36 # If you set this to False, Django will make some optimizations so as not
37 # to load the internationalization machinery.
38 USE_I18N = True
39
40 # Absolute path to the directory that holds media.
41 # Example: "/home/media/media.lawrence.com/"
42 MEDIA_ROOT = PROJECT_DIR + '/media/'
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
49 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
50 # trailing slash.
51 # Examples: "http://foo.com/media/", "/media/".
52 ADMIN_MEDIA_PREFIX = '/admin-media/'
53
54 # Make this unique, and don't share it with anybody.
55
56 # List of callables that know how to import templates from various sources.
57 TEMPLATE_LOADERS = (
58     'django.template.loaders.filesystem.load_template_source',
59     'django.template.loaders.app_directories.load_template_source',
60 #     'django.template.loaders.eggs.load_template_source',
61 )
62
63 TEMPLATE_CONTEXT_PROCESSORS = (
64     'django.core.context_processors.auth',
65     'django.core.context_processors.debug',
66     'django.core.context_processors.i18n',
67     'django.core.context_processors.media',
68     'django.core.context_processors.request',
69 )
70
71 MIDDLEWARE_CLASSES = [
72     'django.middleware.common.CommonMiddleware',
73     'django.contrib.sessions.middleware.SessionMiddleware',
74     'django.contrib.auth.middleware.AuthenticationMiddleware',
75     'django.middleware.doc.XViewMiddleware',
76     'pagination.middleware.PaginationMiddleware',
77 ]
78
79 # If DEBUG is enabled add query log to bottom of every template
80 if DEBUG:
81     MIDDLEWARE_CLASSES.append('middleware.ProfileMiddleware')
82
83 ROOT_URLCONF = 'urls'
84
85 TEMPLATE_DIRS = (
86     PROJECT_DIR + '/templates/'
87 )
88
89 # CSS and JS files to compress
90 COMPRESS_CSS = {
91     'all': {
92         'source_filenames': ('css/master.css', 'css/jquery.autocomplete.css', 'css/master.plain.css',),
93         'output_filename': 'css/all.min.css',
94     },
95     'book': {
96         'source_filenames': ('css/master.book.css',),
97         'output_filename': 'css/book.min.css',
98     }
99 }
100
101 COMPRESS_JS = {
102     'jquery': {
103         'source_filenames': ('js/jquery.js',),
104         'output_filename': 'js/jquery.min.js',
105     },
106     'all': {
107         'source_filenames': ('js/jquery.autocomplete.js', 'js/jquery.form.js', 
108             'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/catalogue.js',),
109         'output_filename': 'js/all.min.js',
110     },
111     'book': {
112         'source_filenames': ('js/jquery.eventdelegation.js', 'js/jquery.scrollto.js', 'js/jquery.highlightfade.js', 'js/book.js',),
113         'output_filename': 'js/book.min.js',
114     }
115 }
116
117 COMPRESS_CSS_FILTERS = None
118
119 LOGIN_URL = '/uzytkownicy/zaloguj/'
120
121 LOGIN_REDIRECT_URL = '/'
122
123 INSTALLED_APPS = (
124     'django.contrib.auth',
125     'django.contrib.contenttypes',
126     'django.contrib.sessions',
127     'django.contrib.sites',
128     'django.contrib.admin',
129     'newtagging',
130     'pagination',
131     'chunks',
132     'compress',
133     'catalogue',
134 )
135