Files
@ fcab58c43ea1
Branch filter:
Location: kallithea/pylons_app/controllers/branches.py - annotation
fcab58c43ea1
752 B
text/x-python
Fixed access to repos and users.
aec4c0071cb3 aec4c0071cb3 20dc7a5eb748 aec4c0071cb3 aec4c0071cb3 aec4c0071cb3 20dc7a5eb748 20dc7a5eb748 b68b2246e5a6 20dc7a5eb748 aec4c0071cb3 aec4c0071cb3 aec4c0071cb3 b68b2246e5a6 b68b2246e5a6 20dc7a5eb748 b68b2246e5a6 b68b2246e5a6 aec4c0071cb3 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 | import logging
from pylons import tmpl_context as c, app_globals as g, session, request, config, url
from pylons.controllers.util import abort, redirect
from pylons_app.lib.base import BaseController, render
from pylons_app.lib.utils import get_repo_slug
from pylons_app.model.hg_model import HgModel
from pylons_app.lib.auth import LoginRequired
log = logging.getLogger(__name__)
class BranchesController(BaseController):
@LoginRequired()
def __before__(self):
super(BranchesController, self).__before__()
def index(self):
hg_model = HgModel()
c.repo_info = hg_model.get_repo(c.repo_name)
c.repo_branches = c.repo_info.branches
return render('branches/branches.html')
|