X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/c7f85a5704a2da33748f04e0447b681652318ac4..9f1d9b668a5de15e370dc0cd85997f458bbb2c98:/settings.py diff --git a/settings.py b/settings.py index a1044e5..cd153f4 100644 --- a/settings.py +++ b/settings.py @@ -7,12 +7,7 @@ SITE_ID = 1 ADMIN_MEDIA_PREFIX = '/admin_media/' SECRET_KEY = '$oo^&_m&qwbib=(_4m_n*zn-d=g#s0he5fx9xonnym#8p6yigm' -TEMPLATE_LOADERS = [ - 'django.template.loaders.filesystem.load_template_source', - 'django.template.loaders.app_directories.load_template_source', - 'forum.modules.template_loader.module_templates_loader', - 'forum.skins.load_template_source', -] +CACHE_MAX_KEY_LENGTH = 235 MIDDLEWARE_CLASSES = [ 'django.middleware.csrf.CsrfViewMiddleware', @@ -56,6 +51,23 @@ ALLOW_MAX_FILE_SIZE = 1024 * 1024 # User settings from settings_local import * +if DEBUG: + TEMPLATE_LOADERS = [ + 'django.template.loaders.filesystem.load_template_source', + 'django.template.loaders.app_directories.load_template_source', + 'forum.modules.template_loader.module_templates_loader', + 'forum.skins.load_template_source', + ] +else: + TEMPLATE_LOADERS = [ + ('django.template.loaders.cached.Loader',( + 'django.template.loaders.filesystem.load_template_source', + 'django.template.loaders.app_directories.load_template_source', + 'forum.modules.template_loader.module_templates_loader', + 'forum.skins.load_template_source', + )), + ] + try: if len(FORUM_SCRIPT_ALIAS) > 0: APP_URL = '%s/%s' % (APP_URL, FORUM_SCRIPT_ALIAS[:-1])