Mercurial > hg
annotate templates/coal/filelog.tmpl @ 7327:a1758089ee35
Kill trailing whitespace in templates
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 07 Nov 2008 13:02:02 +0100 |
parents | a0843c82d1a2 |
children | 650e9d6988cb |
rev | line source |
---|---|
6436 | 1 {header} |
2 <title>{repo|escape}: {file|escape} history</title> | |
3 <link rel="alternate" type="application/atom+xml" | |
4 href="{url}atom-log/tip/{file|urlescape}" title="Atom feed for {repo|escape}:{file}"> | |
5 <link rel="alternate" type="application/rss+xml" | |
6 href="{url}rss-log/tip/{file|urlescape}" title="RSS feed for {repo|escape}:{file}"> | |
7 </head> | |
8 <body> | |
9 | |
6453 | 10 <div class="container"> |
6436 | 11 <div class="menu"> |
12 <div class="logo"> | |
13 <a href="http://www.selenic.com/mercurial/"> | |
14 <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |
15 </div> | |
16 <ul> | |
6775
54ccf41761c9
coal: include current node in log, graph menu links
Brendan Cully <brendan@kublai.com>
parents:
6691
diff
changeset
|
17 <li><a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">log</a></li> |
54ccf41761c9
coal: include current node in log, graph menu links
Brendan Cully <brendan@kublai.com>
parents:
6691
diff
changeset
|
18 <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> |
6436 | 19 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> |
20 </ul> | |
21 <ul> | |
22 <li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a></li> | |
23 <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">browse</a></li> | |
24 </ul> | |
25 <ul> | |
26 <li><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file</a></li> | |
6452 | 27 <li><a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a></li> |
6436 | 28 <li><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a></li> |
29 <li class="active">file log</li> | |
30 <li><a href="{url}raw-file/{node|short}/{file|urlescape}">raw</a></li> | |
31 </ul> | |
32 </div> | |
33 | |
34 <div class="main"> | |
7314
a0843c82d1a2
coal/paper: link repo name to hgweb root
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7299
diff
changeset
|
35 <h2><a href="{url}">{repo|escape}</a></h2> |
6452 | 36 <h3>log {file|escape}</h3> |
6436 | 37 |
38 <form class="search" action="{url}log"> | |
39 {sessionvars%hiddenformentry} | |
40 <p><input name="rev" id="search1" type="text" size="30"></p> | |
7327
a1758089ee35
Kill trailing whitespace in templates
Thomas Arendsen Hein <thomas@intevation.de>
parents:
7314
diff
changeset
|
41 <span>find changesets by author, revision, |
7299
288dda59233c
coal/paper: show a search tip when hovering over search box
Benoit Allard <benoit@aeteurope.nl>
parents:
6905
diff
changeset
|
42 files, or words in the commit message</span> |
6436 | 43 </form> |
44 | |
45 <div class="navigate">{nav%filenaventry}</div> | |
46 | |
47 <table class="bigtable"> | |
7327
a1758089ee35
Kill trailing whitespace in templates
Thomas Arendsen Hein <thomas@intevation.de>
parents:
7314
diff
changeset
|
48 <tr> |
6905
248e54a9456e
coal/paper: make output well-formed and fix css syntax error breaking rendering
Rocco Rutte <pdmef@gmx.net>
parents:
6775
diff
changeset
|
49 <th class="age">age</th> |
248e54a9456e
coal/paper: make output well-formed and fix css syntax error breaking rendering
Rocco Rutte <pdmef@gmx.net>
parents:
6775
diff
changeset
|
50 <th class="author">author</th> |
248e54a9456e
coal/paper: make output well-formed and fix css syntax error breaking rendering
Rocco Rutte <pdmef@gmx.net>
parents:
6775
diff
changeset
|
51 <th class="description">description</th> |
6436 | 52 </tr> |
53 {entries%filelogentry} | |
54 </table> | |
55 | |
56 </div> | |
6453 | 57 </div> |
6436 | 58 |
59 {footer} |