##// END OF EJS Templates
hgweb: add tags links and manifest links...
hgweb: add tags links and manifest links This adds a simple new tags page to browse by tag, adds the tag link everywhere, and adds manifest links to the tags and changelog pages.

File last commit:

r168:65cf1b0c default
r168:65cf1b0c default
Show More
filerevision.tmpl
38 lines | 882 B | application/x-cheetah | CheetahLexer
mpm@selenic.com
Prettify the web interface...
r142 #header#
<title>#repo#:#file#</title>
</head>
mpm@selenic.com
Revamped templated hgweb
r138 <body>
jake@edge2.net
fixed problem with head/body tags, added dtd, fixed table attributes...
r154 <div class="buttons">
jake@edge2.net
changed pos to rev for changelog cmd, changed & to ;
r153 <a href="?cmd=changelog;rev=#rev#">changelog</a>
mpm@selenic.com
hgweb: add tags links and manifest links...
r168 <a href="?cmd=tags">tags</a>
jake@edge2.net
changed pos to rev for changelog cmd, changed & to ;
r153 <a href="?cmd=changeset;node=#node#">changeset</a>
<a href="?cmd=manifest;manifest=#manifest#;path=#path#">manifest</a>
<a href="?cmd=filelog;file=#file#;filenode=#filenode#">revisions</a>
<a href="?cmd=annotate;file=#file#;filenode=#filenode#">annotate</a>
mpm@selenic.com
Prettify the web interface...
r142 </div>
mpm@selenic.com
Revamped templated hgweb
r138
<h2>#file# (revision #filenode#)</h2>
<table>
<tr>
mpm@selenic.com
Hide most revision numbers in hgweb
r167 <td class="metatag">changeset #rev#:</td>
<td><a href="?cmd=changeset;node=#node#">#node#</a></td></tr>
mpm@selenic.com
Prettify the web interface...
r142 #parent1#
#parent2#
mpm@selenic.com
Revamped templated hgweb
r138 <tr>
jake@edge2.net
fixed problem with head/body tags, added dtd, fixed table attributes...
r154 <td class="metatag">manifest:</td>
mpm@selenic.com
Hide most revision numbers in hgweb
r167 <td><a href="?cmd=manifest;manifest=#manifest#;path=/">#manifest#</a></td></tr>
mpm@selenic.com
Revamped templated hgweb
r138 <tr>
jake@edge2.net
fixed problem with head/body tags, added dtd, fixed table attributes...
r154 <td class="metatag">author:</td>
mpm@selenic.com
Revamped templated hgweb
r138 <td>#author#</td></tr>
<tr>
jake@edge2.net
fixed problem with head/body tags, added dtd, fixed table attributes...
r154 <td class="metatag">date:</td>
mpm@selenic.com
Revamped templated hgweb
r138 <td>#date#</td></tr>
</table>
<pre>
#text#
</pre>
mpm@selenic.com
Prettify the web interface...
r142 #footer#