X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/3ac9cb26acd9b7c5ba421dac123ba8f75b782bd2..ba44660a1a87d1c385b3a9e101ce946672fed755:/wolnelektury/settings.py diff --git a/wolnelektury/settings.py b/wolnelektury/settings.py index 62a2c9e23..dcf0cc304 100644 --- a/wolnelektury/settings.py +++ b/wolnelektury/settings.py @@ -3,8 +3,9 @@ from os import path PROJECT_DIR = path.abspath(path.dirname(__file__)) -DEBUG = True +DEBUG = False TEMPLATE_DEBUG = DEBUG +MAINTENANCE_MODE = False ADMINS = [ # ('Your Name', 'your_email@domain.com'), @@ -30,6 +31,19 @@ TIME_ZONE = 'Europe/Warsaw Poland' # http://www.i18nguy.com/unicode/language-identifiers.html LANGUAGE_CODE = 'pl' +gettext = lambda s: s + +LANGUAGES = ( + ('de', gettext('German')), + ('en', gettext('English')), + ('pl', gettext('Polish')), + ('lt', gettext('Lithuanian')), + ('fr', gettext('French')), + ('ru', gettext('Russian')), + ('es', gettext('Spain')), +) + + SITE_ID = 1 # If you set this to False, Django will make some optimizations so as not @@ -67,6 +81,7 @@ TEMPLATE_CONTEXT_PROCESSORS = [ 'django.core.context_processors.i18n', 'django.core.context_processors.media', 'django.core.context_processors.request', + 'wolnelektury.context_processors.extra_settings', ] MIDDLEWARE_CLASSES = [ @@ -76,6 +91,8 @@ MIDDLEWARE_CLASSES = [ 'django.middleware.doc.XViewMiddleware', 'pagination.middleware.PaginationMiddleware', 'django.middleware.locale.LocaleMiddleware', + + 'maintenancemode.middleware.MaintenanceModeMiddleware', ] ROOT_URLCONF = 'wolnelektury.urls' @@ -96,7 +113,7 @@ INSTALLED_APPS = [ 'django.contrib.sites', 'django.contrib.admin', 'django.contrib.admindocs', - + # external 'south', 'sorl.thumbnail', @@ -109,6 +126,7 @@ INSTALLED_APPS = [ 'lessons', 'piston', 'api', + 'rosetta', ] CACHE_BACKEND = 'locmem:///?max_entries=3000' @@ -132,7 +150,10 @@ COMPRESS_JS = { }, '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-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',