Mercurial > hg
annotate templates/paper/branches.tmpl @ 9184:f6eb03027411
Fix issue1679: path reconstruction in hgwebdir was mangling things badly
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Wed, 22 Jul 2009 15:26:27 -0700 |
parents | 1de6e7e1bb9f |
children |
rev | line source |
---|---|
8353 | 1 {header} |
2 <title>{repo|escape}: branches</title> | |
3 <link rel="alternate" type="application/atom+xml" | |
4 href="{url}atom-tags" title="Atom feed for {repo|escape}: branches" /> | |
5 <link rel="alternate" type="application/rss+xml" | |
6 href="{url}rss-tags" title="RSS feed for {repo|escape}: branches" /> | |
7 </head> | |
8 <body> | |
9 | |
10 <div class="container"> | |
11 <div class="menu"> | |
12 <div class="logo"> | |
8936
1de6e7e1bb9f
change wiki/bts URLs to point to new hostname
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
8353
diff
changeset
|
13 <a href="http://mercurial.selenic.com/"> |
8353 | 14 <img src="{staticurl}hglogo.png" alt="mercurial" /></a> |
15 </div> | |
16 <ul> | |
17 <li><a href="{url}shortlog{sessionvars%urlparameter}">log</a></li> | |
18 <li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li> | |
19 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> | |
20 <li class="active">branches</li> | |
21 </ul> | |
22 </div> | |
23 | |
24 <div class="main"> | |
25 <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a></h2> | |
26 <h3>branches</h3> | |
27 | |
28 <form class="search" action="{url}log"> | |
29 {sessionvars%hiddenformentry} | |
30 <p><input name="rev" id="search1" type="text" size="30" /></p> | |
31 <div id="hint">find changesets by author, revision, | |
32 files, or words in the commit message</div> | |
33 </form> | |
34 | |
35 <table class="bigtable"> | |
36 <tr> | |
37 <th>branch</th> | |
38 <th>node</th> | |
39 </tr> | |
40 {entries%branchentry} | |
41 </table> | |
42 </div> | |
43 </div> | |
44 | |
45 {footer} |