##// END OF EJS Templates
Static files for production fixed...
Static files for production fixed Error handler for debug on, added admin auth function authenticates only admins changed creation of db

File last commit:

r17:436bee78 default
r46:9db77827 default
Show More
base.py
19 lines | 648 B | text/x-python | PythonLexer
"""The base Controller API
Provides the BaseController class for subclassing.
"""
from pylons.controllers import WSGIController
from pylons.templating import render_mako as render
from pylons_app.model import meta
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']
try:
return WSGIController.__call__(self, environ, start_response)
finally:
pass