##// END OF EJS Templates
coal: fix some glitches in annotate header
Dirkjan Ochtman -
r6471:0c1ec0cd default
parent child Browse files
Show More
@@ -1,76 +1,76 b''
1 1 {header}
2 2 <title>{repo|escape}: {file|escape} annotate</title>
3 3 </head>
4 4 <body>
5 5
6 6 <div class="container">
7 7 <div class="menu">
8 8 <div class="logo">
9 9 <a href="http://www.selenic.com/mercurial/">
10 10 <img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a>
11 11 </div>
12 12 <ul>
13 13 <li><a href="{url}shortlog/{sessionvars%urlparameter}">log</a></li>
14 14 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
15 15 </ul>
16 16
17 17 <ul>
18 18 <li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a></li>
19 19 <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">browse</a></li>
20 20 </ul>
21 21 <ul>
22 22 <li><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file</a></li>
23 23 <li><a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a></li>
24 24 <li class="active">annotate</li>
25 25 <li><a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file log</a></li>
26 26 <li><a href="{url}raw-annotate/{node|short}/{file|urlescape}">raw</a></li>
27 27 </ul>
28 28 </div>
29 29
30 30 <div class="main">
31 31 <h2>{repo|escape}</h2>
32 <h3>Annotate {file|escape} @ {diff}:{node|short}</h2>
32 <h3>annotate {file|escape} @ {rev}:{node|short}</h2>
33 33
34 34 <form class="search" action="{url}log">
35 35 {sessionvars%hiddenformentry}
36 36 <p><input name="rev" id="search1" type="text" size="30"></p>
37 37 </form>
38 38
39 39 <div class="description">{desc|strip|escape|addbreaks}</div>
40 40
41 41 <table id="changesetEntry">
42 42 <tr>
43 43 <th class="author">author</th>
44 44 <td class="author">{author|obfuscate}</td>
45 45 </tr>
46 46 <tr>
47 47 <th class="date">date</th>
48 48 <td class="date">{date|date} ({date|age} ago)</td>
49 49 </tr>
50 50 <tr>
51 51 <th class="author">parents</th>
52 52 <td class="author">{parent%filerevparent}</td>
53 53 </tr>
54 54 <tr>
55 55 <th class="author">children</th>
56 56 <td class="author">{child%filerevchild}</td>
57 57 </tr>
58 58 {changesettag}
59 59 </table>
60 60
61 61 <br/>
62 62
63 63 <div class="overflow">
64 64 <table class="bigtable">
65 65 <tr>
66 66 <th class="annotate">rev</th>
67 67 <th class="lineno">line</th>
68 68 <th class="line">source</th>
69 69 </tr>
70 70 {annotate%annotateline}
71 71 </table>
72 72 </div>
73 73 </div>
74 74 </div>
75 75
76 76 {footer}
General Comments 0
You need to be logged in to leave comments. Login now