comparison templates/filelogentry.tmpl @ 201:f918a6fa2572

hgweb: add template filters, template style maps, and raw pages -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hgweb: add template filters, template style maps, and raw pages Template filters: in templates, you can now specify a chain of filters like #desc|firstline|escape# #desc|escape|addbreaks# #date|age# to specify how you'd like raw text (or whatever) to be transformed. Template style maps: add ;style=foo to a URL and we'll use templates/map-foo if it exists. Raw output: Together, these two features make it east to implement raw downloadable files and patches. Simply link to the same page with style=raw and present the output as unfiltered text/plain with that template. manifest hash: 5954a648b3d6b4e6dc2dcd1975f96b4b0178da2a -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCnUMyywK+sNU5EO8RAkKjAJ9h9JElSCbWBPUnL+koCSDxgo38AwCgrccM 0qwyKdh/fUNglICxSh3HBNA= =Svlo -----END PGP SIGNATURE-----
author mpm@selenic.com
date Tue, 31 May 2005 21:10:10 -0800
parents fad9ad1ec7c7
children 33c48b635690 4f802588cdfb afe895fcc0d0
comparison
equal deleted inserted replaced
200:8450c18f2a45 201:f918a6fa2572
1 <table class="parity#parity#" width="100%" cellspacing="0" cellpadding="0"> 1 <table class="parity#parity#" width="100%" cellspacing="0" cellpadding="0">
2 <tr> 2 <tr>
3 <td align="right" width="15%"><b>#age# ago:&nbsp;</b></td> 3 <td align="right" width="15%"><b>#date|age# ago:&nbsp;</b></td>
4 <td><b><a href="?cmd=changeset;node=#node#">#shortdesc#</a></b></td</tr> 4 <td><b><a href="?cmd=changeset;node=#node#">#desc|firstline|escape#</a></b></td</tr>
5 <tr> 5 <tr>
6 <td align="right">revision #filerev#:&nbsp;</td> 6 <td align="right">revision #filerev#:&nbsp;</td>
7 <td><a href="?cmd=file;file=#file#;filenode=#filenode#">#filenode#</a> 7 <td><a href="?cmd=file;file=#file#;filenode=#filenode#">#filenode#</a>
8 <a href="?cmd=filediff;file=#file#;node=#node#">(diff)</a> 8 <a href="?cmd=filediff;file=#file#;node=#node#">(diff)</a>
9 <a href="?cmd=annotate;file=#file#;filenode=#filenode#">(annotate)</a> 9 <a href="?cmd=annotate;file=#file#;filenode=#filenode#">(annotate)</a>
10 </td></tr> 10 </td></tr>
11 <tr> 11 <tr>
12 <td align="right">author:&nbsp;</td> 12 <td align="right">author:&nbsp;</td>
13 <td>#author#</td></tr> 13 <td>#author|obfuscate#</td></tr>
14 <tr> 14 <tr>
15 <td align="right">date:&nbsp;</td> 15 <td align="right">date:&nbsp;</td>
16 <td>#date#</td></tr> 16 <td>#date|date# (#date|age# ago)</td></tr>
17 </table> 17 </table>
18 18
19 19