##// END OF EJS Templates
templates: graph lacked bottom search in default style
templates: graph lacked bottom search in default style

File last commit:

r6693:7f58dec6 default
r6702:af7b26b0 default
Show More
filerevision.tmpl
45 lines | 1.3 KiB | application/x-cheetah | CheetahLexer
mpm@selenic.com
Prettify the web interface...
r142 #header#
Peter van Dijk
changed template escape filter, added urlescape filter; audited all templates for insertion bugs; added note to manifest.py about newlines in filenames
r1650 <title>#repo|escape#:#file|escape#</title>
mpm@selenic.com
Prettify the web interface...
r142 </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">
Thomas Arendsen Hein
hgweb: Apply the new method of passing session variables to links.
r3363 <a href="#url#log/#rev#{sessionvars%urlparameter}">changelog</a>
<a href="#url#shortlog/#rev#{sessionvars%urlparameter}">shortlog</a>
Augie Fackler
hgweb: Fix up non-coal styles to support graph.
r6693 <a href="#url#graph{sessionvars%urlparameter}">graph</a>
Thomas Arendsen Hein
hgweb: Apply the new method of passing session variables to links.
r3363 <a href="#url#tags{sessionvars%urlparameter}">tags</a>
<a href="#url#rev/#node|short#{sessionvars%urlparameter}">changeset</a>
Thomas Arendsen Hein
Renamed "manifest" to "files" in web templates....
r6177 <a href="#url#file/#node|short##path|urlescape#{sessionvars%urlparameter}">files</a>
Thomas Arendsen Hein
hgweb: Apply the new method of passing session variables to links.
r3363 <a href="#url#log/#node|short#/#file|urlescape#{sessionvars%urlparameter}">revisions</a>
<a href="#url#annotate/#node|short#/#file|urlescape#{sessionvars%urlparameter}">annotate</a>
Brendan Cully
Update templates to use NewWebInterface
r3265 <a href="#url#raw-file/#node|short#/#file|urlescape#">raw</a>
mpm@selenic.com
Prettify the web interface...
r142 </div>
mpm@selenic.com
Revamped templated hgweb
r138
Peter van Dijk
changed template escape filter, added urlescape filter; audited all templates for insertion bugs; added note to manifest.py about newlines in filenames
r1650 <h2>#file|escape#</h2>
mpm@selenic.com
Revamped templated hgweb
r138
<table>
<tr>
mpm@selenic.com
Hide most revision numbers in hgweb
r167 <td class="metatag">changeset #rev#:</td>
Thomas Arendsen Hein
hgweb: Apply the new method of passing session variables to links.
r3363 <td><a href="#url#rev/#node|short#{sessionvars%urlparameter}">#node|short#</a></td></tr>
Benoit Boissinot
hgweb: hide trivial parent (like in show_changeset)
r1416 #parent%filerevparent#
Muli Ben-Yehuda
- duplicate the parent link logic to show child links...
r1606 #child%filerevchild#
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
hgweb: add template filters, template style maps, and raw pages...
r201 <td>#author|obfuscate#</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">date:</td>
mpm@selenic.com
hgweb: add template filters, template style maps, and raw pages...
r201 <td>#date|date# (#date|age# ago)</td></tr>
mpm@selenic.com
hgweb: add file permissions...
r359 <tr>
<td class="metatag">permissions:</td>
<td>#permissions|permissions#</td></tr>
Brendan Cully
hgweb: add changeset description to file revision page
r3395 <tr>
<td class="metatag">description:</td>
<td>{desc|strip|escape|addbreaks}</td>
</tr>
mpm@selenic.com
Revamped templated hgweb
r138 </table>
<pre>
Josef "Jeff" Sipek
hgweb: Changed file page to list format syntax
r976 #text%fileline#
mpm@selenic.com
Revamped templated hgweb
r138 </pre>
mpm@selenic.com
Prettify the web interface...
r142 #footer#