##// END OF EJS Templates
templates: export extra as a dict to templates...
Benoit Boissinot -
r18581:3490c91a default
parent child Browse files
Show More
@@ -89,6 +89,7 b' def _filerevision(web, tmpl, fctx):'
89 89 author=fctx.user(),
90 90 date=fctx.date(),
91 91 desc=fctx.description(),
92 extra=fctx.extra(),
92 93 branch=webutil.nodebranchnodefault(fctx),
93 94 parent=webutil.parents(fctx),
94 95 child=webutil.children(fctx),
@@ -162,6 +163,7 b' def _search(web, req, tmpl):'
162 163 child=webutil.children(ctx),
163 164 changelogtag=showtags,
164 165 desc=ctx.description(),
166 extra=ctx.extra(),
165 167 date=ctx.date(),
166 168 files=files,
167 169 rev=ctx.rev(),
@@ -216,6 +218,7 b' def changelog(web, req, tmpl, shortlog=F'
216 218 "child": webutil.children(ctx, i + 1),
217 219 "changelogtag": showtags,
218 220 "desc": ctx.description(),
221 "extra": ctx.extra(),
219 222 "date": ctx.date(),
220 223 "files": files,
221 224 "rev": i,
@@ -299,6 +302,7 b' def changeset(web, req, tmpl):'
299 302 changesetbranch=showbranch,
300 303 author=ctx.user(),
301 304 desc=ctx.description(),
305 extra=ctx.extra(),
302 306 date=ctx.date(),
303 307 files=files,
304 308 diffsummary=lambda **x: webutil.diffsummary(diffstatgen),
@@ -531,6 +535,7 b' def summary(web, req, tmpl):'
531 535 parity=parity.next(),
532 536 author=ctx.user(),
533 537 desc=ctx.description(),
538 extra=ctx.extra(),
534 539 date=ctx.date(),
535 540 rev=i,
536 541 node=hn,
@@ -590,6 +595,7 b' def filediff(web, req, tmpl):'
590 595 rev=ctx.rev(),
591 596 date=ctx.date(),
592 597 desc=ctx.description(),
598 extra=ctx.extra(),
593 599 author=ctx.user(),
594 600 rename=rename,
595 601 branch=webutil.nodebranchnodefault(ctx),
@@ -651,6 +657,7 b' def comparison(web, req, tmpl):'
651 657 rev=ctx.rev(),
652 658 date=ctx.date(),
653 659 desc=ctx.description(),
660 extra=ctx.extra(),
654 661 author=ctx.user(),
655 662 rename=rename,
656 663 branch=webutil.nodebranchnodefault(ctx),
@@ -689,6 +696,7 b' def annotate(web, req, tmpl):'
689 696 "rev": f.rev(),
690 697 "author": f.user(),
691 698 "desc": f.description(),
699 "extra": f.extra(),
692 700 "file": f.path(),
693 701 "targetline": targetline,
694 702 "line": l,
@@ -705,6 +713,7 b' def annotate(web, req, tmpl):'
705 713 author=fctx.user(),
706 714 date=fctx.date(),
707 715 desc=fctx.description(),
716 extra=fctx.extra(),
708 717 rename=webutil.renamelink(fctx),
709 718 branch=webutil.nodebranchnodefault(fctx),
710 719 parent=webutil.parents(fctx),
@@ -770,6 +779,7 b' def filelog(web, req, tmpl):'
770 779 "parent": webutil.parents(iterfctx),
771 780 "child": webutil.children(iterfctx),
772 781 "desc": iterfctx.description(),
782 "extra": iterfctx.extra(),
773 783 "tags": webutil.nodetagsdict(repo, iterfctx.node()),
774 784 "bookmarks": webutil.nodebookmarksdict(
775 785 repo, iterfctx.node()),
General Comments 0
You need to be logged in to leave comments. Login now