mercurial/hgweb/webcommands.py
changeset 7409 0fa3b6677027
parent 7361 9fe97eea5510
child 7410 f1111704061e
equal deleted inserted replaced
7408:f031a12dfc31 7409:0fa3b6677027
   553                          "author": ctx.user(),
   553                          "author": ctx.user(),
   554                          "date": ctx.date(),
   554                          "date": ctx.date(),
   555                          "rename": webutil.renamelink(fctx),
   555                          "rename": webutil.renamelink(fctx),
   556                          "parent": webutil.siblings(fctx.parents()),
   556                          "parent": webutil.siblings(fctx.parents()),
   557                          "child": webutil.siblings(fctx.children()),
   557                          "child": webutil.siblings(fctx.children()),
   558                          "desc": ctx.description()})
   558                          "desc": ctx.description(),
   559 
   559                          "tags": webutil.nodetagsdict(web.repo, ctx.node()),
       
   560                          "branch": webutil.nodebranchnodefault(ctx),
       
   561                          "inbranch": webutil.nodeinbranch(web.repo, ctx),
       
   562                          "branches": webutil.nodebranchdict(web.repo, ctx)})
       
   563                      
   560         if limit > 0:
   564         if limit > 0:
   561             l = l[:limit]
   565             l = l[:limit]
   562 
   566 
   563         for e in l:
   567         for e in l:
   564             yield e
   568             yield e