Show More
@@ -555,8 +555,12 b' def filelog(web, req, tmpl):' | |||
|
555 | 555 | "rename": webutil.renamelink(fctx), |
|
556 | 556 | "parent": webutil.siblings(fctx.parents()), |
|
557 | 557 | "child": webutil.siblings(fctx.children()), |
|
558 |
"desc": ctx.description() |
|
|
559 | ||
|
558 | "desc": ctx.description(), | |
|
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 | 564 | if limit > 0: |
|
561 | 565 | l = l[:limit] |
|
562 | 566 |
@@ -1,5 +1,5 b'' | |||
|
1 | 1 | <tr class="parity{parity}"> |
|
2 | 2 | <td class="age">{date|age}</td> |
|
3 | 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 | 5 | </tr> |
General Comments 0
You need to be logged in to leave comments.
Login now