fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Seettings cleanup.
[redakcja.git]
/
redakcja
/
settings
/
common.py
diff --git
a/redakcja/settings/common.py
b/redakcja/settings/common.py
index
24a4258
..
9689f72
100644
(file)
--- a/
redakcja/settings/common.py
+++ b/
redakcja/settings/common.py
@@
-1,7
+1,8
@@
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
+from __future__ import absolute_import
import os.path
import os.path
-PROJECT_ROOT = os.path.realpath(os.path.dirname(
__file__
))
+PROJECT_ROOT = os.path.realpath(os.path.dirname(
os.path.dirname(__file__)
))
DEBUG = False
TEMPLATE_DEBUG = DEBUG
DEBUG = False
TEMPLATE_DEBUG = DEBUG
@@
-102,8
+103,6
@@
FIREPYTHON_LOGGER_NAME = "fnp"
# CAS_SERVER_URL = "http://cas.fnp.pl/
CAS_LOGOUT_COMPLETELY = True
# CAS_SERVER_URL = "http://cas.fnp.pl/
CAS_LOGOUT_COMPLETELY = True
-from compress_settings import *
-
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
@@
-139,4
+138,7
@@
WL_API_CONFIG = {
"AUTH_PASSWD": "platforma",
}
"AUTH_PASSWD": "platforma",
}
-# Import localsettings file, which may override settings defined here
+try:
+ from redakcja.settings.compress import *
+except ImportError:
+ pass