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>
|
|
13 |
<li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li>
|
|
14 |
</ul>
|
|
15 |
<ul>
|
|
16 |
<li class="active">changeset</li>
|
|
17 |
<li><a href="{url}file/{node|short}{sessionvars%urlparameter}">browse</a></li>
|
|
18 |
</ul>
|
|
19 |
<ul>
|
|
20 |
{archives%archiveentry}</ul>
|
|
21 |
</ul>
|
|
22 |
</div>
|
|
23 |
|
|
24 |
<div class="main">
|
|
25 |
|
|
26 |
<h2>{repo|escape}</h2>
|
6452
|
27 |
<h3>changeset {rev}:{node|short} {changesettag}</h3>
|
6436
|
28 |
|
|
29 |
<form class="search" action="{url}log">
|
|
30 |
{sessionvars%hiddenformentry}
|
|
31 |
<p><input name="rev" id="search1" type="text" size="30"></p>
|
|
32 |
</form>
|
|
33 |
|
|
34 |
<div class="description">{desc|strip|escape|addbreaks}</div>
|
|
35 |
|
|
36 |
<table id="changesetEntry">
|
|
37 |
<tr>
|
|
38 |
<th class="author">author</th>
|
|
39 |
<td class="author">{author|obfuscate}</td>
|
|
40 |
</tr>
|
|
41 |
<tr>
|
|
42 |
<th class="date">date</th>
|
|
43 |
<td class="date">{date|date} ({date|age} ago)</td></tr>
|
|
44 |
<tr>
|
|
45 |
<th class="author">parents</th>
|
|
46 |
<td class="author">{parent%changesetparent}</td>
|
|
47 |
</tr>
|
|
48 |
<tr>
|
|
49 |
<th class="author">children</th>
|
|
50 |
<td class="author">{child%changesetchild}</td>
|
|
51 |
</tr>
|
|
52 |
<tr>
|
|
53 |
<th class="files">files</th>
|
|
54 |
<td class="files">{files}</td></tr>
|
|
55 |
</tr>
|
|
56 |
</table>
|
|
57 |
<tr>
|
|
58 |
|
|
59 |
<div class="overflow">
|
|
60 |
<table class="bigtable">
|
|
61 |
<tr>
|
|
62 |
<th class="lineno">Line</th>
|
|
63 |
<th class="source">Diff</th>
|
|
64 |
</tr>
|
|
65 |
</table>
|
|
66 |
{diff}
|
|
67 |
</div>
|
6453
|
68 |
</div>
|
6436
|
69 |
{footer}
|
|
70 |
|
|
71 |
|