X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/01e93f28b2829fd3924a3b6021a201c1b6ed3d72..32509c7ba5495ee0b0e42b0343cbd2a6125532cd:/settings.py diff --git a/settings.py b/settings.py index c895381..cd153f4 100644 --- a/settings.py +++ b/settings.py @@ -9,13 +9,6 @@ SECRET_KEY = '$oo^&_m&qwbib=(_4m_n*zn-d=g#s0he5fx9xonnym#8p6yigm' CACHE_MAX_KEY_LENGTH = 235 -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', -] - MIDDLEWARE_CLASSES = [ 'django.middleware.csrf.CsrfViewMiddleware', 'django.middleware.csrf.CsrfResponseMiddleware', @@ -58,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])