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