# -*- coding: utf-8 -*-
+from __future__ import absolute_import
import os.path
PROJECT_ROOT = os.path.realpath(os.path.dirname(os.path.dirname(__file__)))
"django.core.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
- "redakcja.context_processors.settings", # this is instead of media
+ "redakcja.context_processors.settings", # this is instead of media
"django.core.context_processors.request",
)
# CAS_SERVER_URL = "http://cas.fnp.pl/
CAS_LOGOUT_COMPLETELY = True
-from compress_settings import *
-
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'south',
'sorl.thumbnail',
'filebrowser',
+ 'dvcs',
'wiki',
'toolbar',
"AUTH_PASSWD": "platforma",
}
-# Import localsettings file, which may override settings defined here
+SHOW_APP_VERSION = False
try:
- import logging
- if os.path.isfile(LOGGING_CONFIG_FILE):
- import logging.config
- logging.config.fileConfig(LOGGING_CONFIG_FILE)
- else:
- import sys
- logging.basicConfig(stream=sys.stderr)
-except NameError:
- print "No logging"
+ from redakcja.settings.compress import *
+except ImportError:
pass
-except ImportError as exc:
- raise
+