[Mpuls-commits] r1658 - in wasko/branches/2.0: . waskaweb/controllers
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Thu Feb 18 12:33:29 CET 2010
Author: bh
Date: 2010-02-18 12:33:28 +0100 (Thu, 18 Feb 2010)
New Revision: 1658
Modified:
wasko/branches/2.0/ChangeLog
wasko/branches/2.0/waskaweb/controllers/casedocument.py
Log:
* waskaweb/controllers/casedocument.py
(CasedocumentController.overview): Use the _loadCase method
instead of the loadCase function.
Modified: wasko/branches/2.0/ChangeLog
===================================================================
--- wasko/branches/2.0/ChangeLog 2010-02-18 11:30:38 UTC (rev 1657)
+++ wasko/branches/2.0/ChangeLog 2010-02-18 11:33:28 UTC (rev 1658)
@@ -1,5 +1,11 @@
2010-02-18 Bernhard Herzog <bh at intevation.de>
+ * waskaweb/controllers/casedocument.py
+ (CasedocumentController.overview): Use the _loadCase method
+ instead of the loadCase function.
+
+2010-02-18 Bernhard Herzog <bh at intevation.de>
+
* waskaweb/controllers/caseappointment.py (loadCase): Removed. No
longer used.
Modified: wasko/branches/2.0/waskaweb/controllers/casedocument.py
===================================================================
--- wasko/branches/2.0/waskaweb/controllers/casedocument.py 2010-02-18 11:30:38 UTC (rev 1657)
+++ wasko/branches/2.0/waskaweb/controllers/casedocument.py 2010-02-18 11:33:28 UTC (rev 1658)
@@ -52,7 +52,7 @@
@checkRole(('admin_ka', 'cm_ka'))
def overview(self, id):
id = self._checkInt(id)
- case = loadCase(id)
+ case = self._loadCase(id)
c.files = case.getDocuments()
return render('/documents/case_overview.mako')
More information about the Mpuls-commits
mailing list