diff --git a/rhodecode/controllers/branches.py b/rhodecode/controllers/branches.py --- a/rhodecode/controllers/branches.py +++ b/rhodecode/controllers/branches.py @@ -26,11 +26,12 @@ import logging from pylons import tmpl_context as c +import binascii from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator from rhodecode.lib.base import BaseRepoController, render from rhodecode.lib.odict import OrderedDict - +from rhodecode.lib import safe_unicode log = logging.getLogger(__name__) @@ -44,8 +45,34 @@ class BranchesController(BaseRepoControl def index(self): - c.repo_branches = OrderedDict() - for name, hash_ in c.rhodecode_repo.branches.items(): - c.repo_branches[name] = c.rhodecode_repo.get_changeset(hash_) + def _branchtags(localrepo): + + bt = {} + bt_closed = {} + + for bn, heads in localrepo.branchmap().iteritems(): + tip = heads[-1] + if 'close' not in localrepo.changelog.read(tip)[5]: + bt[bn] = tip + else: + bt_closed[bn] = tip + return bt, bt_closed + + + bt, bt_closed = _branchtags(c.rhodecode_repo._repo) + cs_g = c.rhodecode_repo.get_changeset + _branches = [(safe_unicode(n), cs_g(binascii.hexlify(h)),) for n, h in + bt.items()] + + _closed_branches = [(safe_unicode(n), cs_g(binascii.hexlify(h)),) for n, h in + bt_closed.items()] + + c.repo_branches = OrderedDict(sorted(_branches, + key=lambda ctx: ctx[0], + reverse=False)) + c.repo_closed_branches = OrderedDict(sorted(_closed_branches, + key=lambda ctx: ctx[0], + reverse=False)) + return render('branches/branches.html') diff --git a/rhodecode/templates/branches/branches_data.html b/rhodecode/templates/branches/branches_data.html --- a/rhodecode/templates/branches/branches_data.html +++ b/rhodecode/templates/branches/branches_data.html @@ -9,8 +9,7 @@ %for cnt,branch in enumerate(c.repo_branches.items()):