PROJECT_DIR = path.abspath(path.dirname(__file__))
-DEBUG = True
+DEBUG = False
TEMPLATE_DEBUG = DEBUG
+MAINTENANCE_MODE = False
ADMINS = [
# ('Your Name', 'your_email@domain.com'),
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = 'pl'
+gettext = lambda s: s
+
+LANGUAGES = (
+ ('pl', gettext('Polish')),
+ ('de', gettext('German')),
+ ('en', gettext('English')),
+ ('lt', gettext('Lithuanian')),
+ ('fr', gettext('French')),
+ ('ru', gettext('Russian')),
+ ('es', gettext('Spanish')),
+ ('uk', gettext('Ukrainian')),
+)
+
+
SITE_ID = 1
# If you set this to False, Django will make some optimizations so as not
'django.core.context_processors.i18n',
'django.core.context_processors.media',
'django.core.context_processors.request',
+ 'wolnelektury.context_processors.extra_settings',
]
MIDDLEWARE_CLASSES = [
'django.middleware.doc.XViewMiddleware',
'pagination.middleware.PaginationMiddleware',
'django.middleware.locale.LocaleMiddleware',
+
+ 'maintenancemode.middleware.MaintenanceModeMiddleware',
]
ROOT_URLCONF = 'wolnelektury.urls'
'django.contrib.sites',
'django.contrib.admin',
'django.contrib.admindocs',
-
+
# external
'south',
'sorl.thumbnail',
'pagination',
'chunks',
'compress',
+ 'modeltranslation',
'catalogue',
'lessons',
'piston',
'api',
+ 'rosetta',
+ 'infopages',
+ 'suggest',
]
CACHE_BACKEND = 'locmem:///?max_entries=3000'
},
'all': {
'source_filenames': ('js/jquery.autocomplete.js', 'js/jquery.form.js',
- 'js/jquery.countdown.js', 'js/jquery.countdown-pl.js',
+ 'js/jquery.countdown.js', 'js/jquery.countdown-pl.js',
+ 'js/jquery.countdown-de.js', 'js/jquery.countdown-uk.js',
+ 'js/jquery.countdown-es.js', 'js/jquery.countdown-lt.js',
+ 'js/jquery.countdown-ru.js', 'js/jquery.countdown-fr.js',
'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/catalogue.js',
- 'js/jquery.cookie.js',),
+ ),
'output_filename': 'js/all?.min.js',
},
'book': {
'sponsors.processors.add_padding',
)
+TRANSLATION_REGISTRY = "wolnelektury.translation"
+
+# limit number of filtering tags
+MAX_TAG_LIST = 6
+
# Load localsettings, if they exist
try:
from localsettings import *