diff mercurial/hgweb/webcommands.py @ 25132:917b5a071888

paper: show branch/tags/bookmarks when browsing (issue3559) Browse (or manifest) action allows browsing the directory structure at some specified revision. In gitweb and monoblue styles, the revision header already has branch/tag/bookmark information for the revision, but in paper style this header was only showing tags. This patch adds branches and bookmarks. Branch name needs to be obtained in this special way to be consistent with regular changeset page, where in paper style default branch is never shown.
author Anton Shestakov <engored@ya.ru>
date Fri, 15 May 2015 18:17:36 +0800
parents 9668c653eb9d
children 3d82c517b9c5
line wrap: on
line diff
--- a/mercurial/hgweb/webcommands.py	Sat May 16 21:42:09 2015 +0900
+++ b/mercurial/hgweb/webcommands.py	Fri May 15 18:17:36 2015 +0800
@@ -546,6 +546,7 @@
                 archives=web.archivelist(hex(node)),
                 tags=webutil.nodetagsdict(web.repo, node),
                 bookmarks=webutil.nodebookmarksdict(web.repo, node),
+                branch=webutil.nodebranchnodefault(ctx),
                 inbranch=webutil.nodeinbranch(web.repo, ctx),
                 branches=webutil.nodebranchdict(web.repo, ctx))