]> gitweb.michael.orlitzky.com - dead/census-tools.git/blobdiff - www/maps/maps/lib/base.py
Added the "maps" Pylons project.
[dead/census-tools.git] / www / maps / maps / lib / base.py
diff --git a/www/maps/maps/lib/base.py b/www/maps/maps/lib/base.py
new file mode 100644 (file)
index 0000000..56a090b
--- /dev/null
@@ -0,0 +1,15 @@
+"""The base Controller API
+
+Provides the BaseController class for subclassing.
+"""
+from pylons.controllers import WSGIController
+from pylons.templating import render_mako as render
+
+class BaseController(WSGIController):
+
+    def __call__(self, environ, start_response):
+        """Invoke the Controller"""
+        # WSGIController.__call__ dispatches to the Controller method
+        # the request is routed to. This routing information is
+        # available in environ['pylons.routes_dict']
+        return WSGIController.__call__(self, environ, start_response)