Mercurial > hg
annotate templates/coal/changeset.tmpl @ 6736:369ddc9c0339
lookup: optimize '.'
Remove error messages as behavior is documented in hg help revs
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 25 Jun 2008 17:33:34 -0500 |
parents | 0dba955c2636 |
children | 54ccf41761c9 |
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> | |
12 <li><a href="{url}shortlog{sessionvars%urlparameter}">log</a></li> | |
6691
0dba955c2636
add graph page to hgweb
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
6454
diff
changeset
|
13 <li><a href="{url}graph{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> | |
18 <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">browse</a></li> | |
19 </ul> | |
20 <ul> | |
21 {archives%archiveentry}</ul> | |
22 </ul> | |
23 </div> | |
24 | |
25 <div class="main"> | |
26 | |
27 <h2>{repo|escape}</h2> | |
6452 | 28 <h3>changeset {rev}:{node|short} {changesettag}</h3> |
6436 | 29 |
30 <form class="search" action="{url}log"> | |
31 {sessionvars%hiddenformentry} | |
32 <p><input name="rev" id="search1" type="text" size="30"></p> | |
33 </form> | |
34 | |
35 <div class="description">{desc|strip|escape|addbreaks}</div> | |
36 | |
37 <table id="changesetEntry"> | |
38 <tr> | |
39 <th class="author">author</th> | |
40 <td class="author">{author|obfuscate}</td> | |
41 </tr> | |
42 <tr> | |
43 <th class="date">date</th> | |
44 <td class="date">{date|date} ({date|age} ago)</td></tr> | |
45 <tr> | |
46 <th class="author">parents</th> | |
47 <td class="author">{parent%changesetparent}</td> | |
48 </tr> | |
49 <tr> | |
50 <th class="author">children</th> | |
51 <td class="author">{child%changesetchild}</td> | |
52 </tr> | |
53 <tr> | |
54 <th class="files">files</th> | |
55 <td class="files">{files}</td></tr> | |
56 </tr> | |
57 </table> | |
58 <tr> | |
59 | |
60 <div class="overflow"> | |
61 <table class="bigtable"> | |
62 <tr> | |
6454 | 63 <th class="lineno">line</th> |
64 <th class="source">diff</th> | |
6436 | 65 </tr> |
66 </table> | |
67 {diff} | |
68 </div> | |
6453 | 69 </div> |
6436 | 70 {footer} |
71 | |
72 |