Files
@ 0c00fbaff55a
Branch filter:
Location: kallithea/pylons_app/lib/base.py - annotation
0c00fbaff55a
979 B
text/x-python
Fixed differ to properly extract filenames, and dates from diff file. and swaped order of columns with lines nr in diff html
564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 5e2470ebdbc6 5e2470ebdbc6 5e2470ebdbc6 564e40829f80 79a4f9f1cbd6 79a4f9f1cbd6 79a4f9f1cbd6 79a4f9f1cbd6 564e40829f80 5e2470ebdbc6 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 79a4f9f1cbd6 988477a05db6 564e40829f80 564e40829f80 564e40829f80 a699c0088344 | """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
from beaker.cache import cache_region
from pylons import tmpl_context as c
from pylons_app.model.hg_model import HgModel
@cache_region('long_term', 'repo_list_2')
def _get_repos():
return [rep['name'] for rep in HgModel().get_repos()]
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']
c.repo_list = _get_repos()
self.sa = meta.Session
try:
return WSGIController.__call__(self, environ, start_response)
finally:
meta.Session.remove()
|