[Mpuls-commits] r1123 - wasko/branches/2.0/waskaweb/controllers

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Tue Feb 2 12:04:34 CET 2010


Author: torsten
Date: 2010-02-02 12:04:34 +0100 (Tue, 02 Feb 2010)
New Revision: 1123

Added:
   wasko/branches/2.0/waskaweb/controllers/caseappointment.py
Log:
* waskaweb/controllers/caseappointment.py: New.


Added: wasko/branches/2.0/waskaweb/controllers/caseappointment.py
===================================================================
--- wasko/branches/2.0/waskaweb/controllers/caseappointment.py	2010-02-02 11:03:54 UTC (rev 1122)
+++ wasko/branches/2.0/waskaweb/controllers/caseappointment.py	2010-02-02 11:04:34 UTC (rev 1123)
@@ -0,0 +1,16 @@
+import logging
+
+from pylons import request, response, session, tmpl_context as c
+from pylons.controllers.util import abort, redirect_to
+
+from waskaweb.lib.base import BaseController, render
+
+log = logging.getLogger(__name__)
+
+class CaseappointmentController(BaseController):
+
+    def index(self):
+        # Return a rendered template
+        #return render('/caseappointment.mako')
+        # or, return a response
+        return 'Hello World'



More information about the Mpuls-commits mailing list