1 """The base Controller API
3 Provides the BaseController class for subclassing.
5 from pylons.controllers import WSGIController
6 from pylons.templating import render_genshi as render
7 from wradmin.model import meta
9 class BaseController(WSGIController):
11 def __call__(self, environ, start_response):
12 """Invoke the Controller"""
13 # WSGIController.__call__ dispatches to the Controller method
14 # the request is routed to. This routing information is
15 # available in environ['pylons.routes_dict']
17 return WSGIController.__call__(self, environ, start_response)