[Mpuls-commits] r770 - in wasko/branches/2.0: . waskaweb/lib
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Tue Jan 19 19:46:37 CET 2010
Author: bh
Date: 2010-01-19 19:46:36 +0100 (Tue, 19 Jan 2010)
New Revision: 770
Modified:
wasko/branches/2.0/ChangeLog.txt
wasko/branches/2.0/waskaweb/lib/base.py
Log:
* waskaweb/lib/base.py (BaseController.__before__): Fix syntax
error
Modified: wasko/branches/2.0/ChangeLog.txt
===================================================================
--- wasko/branches/2.0/ChangeLog.txt 2010-01-19 18:28:31 UTC (rev 769)
+++ wasko/branches/2.0/ChangeLog.txt 2010-01-19 18:46:36 UTC (rev 770)
@@ -1,5 +1,10 @@
2010-01-19 Bernhard Herzog <bh at intevation.de>
+ * waskaweb/lib/base.py (BaseController.__before__): Fix syntax
+ error
+
+2010-01-19 Bernhard Herzog <bh at intevation.de>
+
* waskaweb/lib/config.py (MpulsConfig.build_defaults): Remove
defaults for now unused paths settings
Modified: wasko/branches/2.0/waskaweb/lib/base.py
===================================================================
--- wasko/branches/2.0/waskaweb/lib/base.py 2010-01-19 18:28:31 UTC (rev 769)
+++ wasko/branches/2.0/waskaweb/lib/base.py 2010-01-19 18:46:36 UTC (rev 770)
@@ -100,7 +100,7 @@
if (not user.isActivated()
and not request.path_info in
('/administration/accountDeactivated', '/styles/web.css',
- '/styles/all.css'):
+ '/styles/all.css')):
redirect_to(controller="administration",
action="accountDeactivated")
@@ -109,7 +109,7 @@
and not request.path_info in
('/usersettings/changePasswordOnLogin',
'/usersettings/changePasswordOnLoginAction',
- '/styles/web.css', '/styles/all.css'):
+ '/styles/web.css', '/styles/all.css')):
redirect_to(controller="usersettings",
action="changePasswordOnLogin")
More information about the Mpuls-commits
mailing list