Mercurial > hg-stable
annotate templates/coal/changeset.tmpl @ 7331:650e9d6988cb
Keep sessionvars with repository links added in a0843c82d1a2
Without this, e.g. "?style=coal" would be dropped.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 07 Nov 2008 13:22:41 +0100 |
parents | a1758089ee35 |
children | 03b60f2f90bf |
rev | line source |
---|---|
6436 | 1 {header} |
2 <title>{repo|escape}: {node|short}</title> | |
3 </head> | |
4 <body> | |
6453 | 5 <div class="container"> |
6436 | 6 <div class="menu"> |
7 <div class="logo"> | |
8 <a href="http://www.selenic.com/mercurial/"> | |
9 <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a> | |
10 </div> | |
11 <ul> | |
6775
54ccf41761c9
coal: include current node in log, graph menu links
Brendan Cully <brendan@kublai.com>
parents:
6691
diff
changeset
|
12 <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
|
13 <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> |
6436 | 14 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> |
15 </ul> | |
16 <ul> | |
17 <li class="active">changeset</li> | |
6946
0061498f8ab8
coal/paper: Add link to raw changeset as other styles have it, too
Rocco Rutte <pdmef@gmx.net>
parents:
6905
diff
changeset
|
18 <li><a href="{url}raw-rev/{node|short}{sessionvars%urlparameter}">raw</a></li> |
6436 | 19 <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">browse</a></li> |
20 </ul> | |
21 <ul> | |
6905
248e54a9456e
coal/paper: make output well-formed and fix css syntax error breaking rendering
Rocco Rutte <pdmef@gmx.net>
parents:
6775
diff
changeset
|
22 {archives%archiveentry} |
6436 | 23 </ul> |
24 </div> | |
25 | |
26 <div class="main"> | |
27 | |
7331
650e9d6988cb
Keep sessionvars with repository links added in a0843c82d1a2
Thomas Arendsen Hein <thomas@intevation.de>
parents:
7327
diff
changeset
|
28 <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> |
6452 | 29 <h3>changeset {rev}:{node|short} {changesettag}</h3> |
6436 | 30 |
31 <form class="search" action="{url}log"> | |
32 {sessionvars%hiddenformentry} | |
33 <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
|
34 <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:
6946
diff
changeset
|
35 files, or words in the commit message</span> |
6436 | 36 </form> |
37 | |
38 <div class="description">{desc|strip|escape|addbreaks}</div> | |
39 | |
40 <table id="changesetEntry"> | |
41 <tr> | |
42 <th class="author">author</th> | |
43 <td class="author">{author|obfuscate}</td> | |
44 </tr> | |
45 <tr> | |
46 <th class="date">date</th> | |
47 <td class="date">{date|date} ({date|age} ago)</td></tr> | |
48 <tr> | |
49 <th class="author">parents</th> | |
50 <td class="author">{parent%changesetparent}</td> | |
51 </tr> | |
52 <tr> | |
53 <th class="author">children</th> | |
54 <td class="author">{child%changesetchild}</td> | |
55 </tr> | |
56 <tr> | |
57 <th class="files">files</th> | |
6905
248e54a9456e
coal/paper: make output well-formed and fix css syntax error breaking rendering
Rocco Rutte <pdmef@gmx.net>
parents:
6775
diff
changeset
|
58 <td class="files">{files}</td> |
6436 | 59 </tr> |
60 </table> | |
61 | |
62 <div class="overflow"> | |
63 <table class="bigtable"> | |
64 <tr> | |
6454 | 65 <th class="lineno">line</th> |
66 <th class="source">diff</th> | |
6436 | 67 </tr> |
68 </table> | |
69 {diff} | |
70 </div> | |
6905
248e54a9456e
coal/paper: make output well-formed and fix css syntax error breaking rendering
Rocco Rutte <pdmef@gmx.net>
parents:
6775
diff
changeset
|
71 |
248e54a9456e
coal/paper: make output well-formed and fix css syntax error breaking rendering
Rocco Rutte <pdmef@gmx.net>
parents:
6775
diff
changeset
|
72 </div> |
6453 | 73 </div> |
6436 | 74 {footer} |