Mercurial > hg-stable
annotate templates/coal/search.tmpl @ 7314:a0843c82d1a2
coal/paper: link repo name to hgweb root
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Wed, 05 Nov 2008 09:48:56 +0100 |
parents | 288dda59233c |
children | a1758089ee35 |
rev | line source |
---|---|
6436 | 1 {header} |
2 <title>{repo|escape}: searching for {query|escape}</title> | |
3 </head> | |
4 <body> | |
5 | |
6454 | 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> | |
13 <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
|
14 <li><a href="{url}graph{sessionvars%urlparameter}">graph</a></li> |
6436 | 15 <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> |
16 </ul> | |
17 </div> | |
18 | |
19 <div class="main"> | |
7314
a0843c82d1a2
coal/paper: link repo name to hgweb root
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents:
7299
diff
changeset
|
20 <h2><a href="{url}">{repo|escape}</a></h2> |
6436 | 21 <h3>searching for '{query|escape}'</h3> |
22 | |
23 <form class="search" action="{url}log"> | |
24 {sessionvars%hiddenformentry} | |
25 <p><input name="rev" id="search1" type="text" size="30"></p> | |
7299
288dda59233c
coal/paper: show a search tip when hovering over search box
Benoit Allard <benoit@aeteurope.nl>
parents:
6905
diff
changeset
|
26 <span>find changesets by author, revision, |
288dda59233c
coal/paper: show a search tip when hovering over search box
Benoit Allard <benoit@aeteurope.nl>
parents:
6905
diff
changeset
|
27 files, or words in the commit message</span> |
6436 | 28 </form> |
29 | |
30 <table class="bigtable"> | |
31 <tr> | |
6905
248e54a9456e
coal/paper: make output well-formed and fix css syntax error breaking rendering
Rocco Rutte <pdmef@gmx.net>
parents:
6691
diff
changeset
|
32 <th class="age">age</th> |
248e54a9456e
coal/paper: make output well-formed and fix css syntax error breaking rendering
Rocco Rutte <pdmef@gmx.net>
parents:
6691
diff
changeset
|
33 <th class="author">author</th> |
248e54a9456e
coal/paper: make output well-formed and fix css syntax error breaking rendering
Rocco Rutte <pdmef@gmx.net>
parents:
6691
diff
changeset
|
34 <th class="description">description</th> |
6436 | 35 </tr> |
36 {entries} | |
37 </table> | |
38 | |
39 </div> | |
6453 | 40 </div> |
6436 | 41 |
42 {footer} |