Show More
@@ -555,8 +555,12 b' def filelog(web, req, tmpl):' | |||||
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 |
@@ -1,5 +1,5 b'' | |||||
1 | <tr class="parity{parity}"> |
|
1 | <tr class="parity{parity}"> | |
2 | <td class="age">{date|age}</td> |
|
2 | <td class="age">{date|age}</td> | |
3 | <td class="author">{author|person}</td> |
|
3 | <td class="author">{author|person}</td> | |
4 | <td class="description"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{desc|strip|firstline|escape}</a></td> |
|
4 | <td class="description"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{desc|strip|firstline|escape}</a>{inbranch%changelogbranchname}{branches%changelogbranchhead}{tags%changelogtag}</td> | |
5 | </tr> |
|
5 | </tr> |
General Comments 0
You need to be logged in to leave comments.
Login now