mercurial/hgweb/webcommands.py
changeset 7409 0fa3b6677027
parent 7361 9fe97eea5510
child 7410 f1111704061e
--- a/mercurial/hgweb/webcommands.py	Tue Nov 25 22:32:11 2008 +0100
+++ b/mercurial/hgweb/webcommands.py	Tue Nov 25 21:54:28 2008 +0100
@@ -555,8 +555,12 @@
                          "rename": webutil.renamelink(fctx),
                          "parent": webutil.siblings(fctx.parents()),
                          "child": webutil.siblings(fctx.children()),
-                         "desc": ctx.description()})
-
+                         "desc": ctx.description(),
+                         "tags": webutil.nodetagsdict(web.repo, ctx.node()),
+                         "branch": webutil.nodebranchnodefault(ctx),
+                         "inbranch": webutil.nodeinbranch(web.repo, ctx),
+                         "branches": webutil.nodebranchdict(web.repo, ctx)})
+                     
         if limit > 0:
             l = l[:limit]