mercurial/templates/spartan/filerevision.tmpl
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
Tue, 01 Dec 2009 16:06:10 +0100
changeset 9999 f91e5630ce7e
parent 9721 templates/spartan/filerevision.tmpl@1d75c683ada1
child 12680 d664547ef540
permissions -rw-r--r--
setup: install translation files as package data Remove the `install_package_data' subclass of `install_data' and use the `package_data' functionality provided by distutils instead. As package data must be located within the package directory, the data files are now generated in the build directory. To simplify the functionality of this change, the top-level `doc' and `templates' directories have been moved into the `mercurial' package directory.

{header}
<title>{repo|escape}:{file|escape}</title>
</head>
<body>

<div class="buttons">
<a href="{url}log/{rev}{sessionvars%urlparameter}">changelog</a>
<a href="{url}shortlog/{rev}{sessionvars%urlparameter}">shortlog</a>
<a href="{url}graph{sessionvars%urlparameter}">graph</a>
<a href="{url}tags{sessionvars%urlparameter}">tags</a>
<a href="{url}branches{sessionvars%urlparameter}">branches</a>
<a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a>
<a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">files</a>
<a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">revisions</a>
<a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a>
<a href="{url}raw-file/{node|short}/{file|urlescape}">raw</a>
</div>

<h2>{file|escape}</h2>

<table>
<tr>
 <td class="metatag">changeset {rev}:</td>
 <td><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td></tr>
{parent%filerevparent}
{child%filerevchild}
<tr>
 <td class="metatag">author:</td>
 <td>{author|obfuscate}</td></tr>
<tr>
 <td class="metatag">date:</td>
 <td>{date|date} ({date|age})</td></tr>
<tr>
 <td class="metatag">permissions:</td>
 <td>{permissions|permissions}</td></tr>
<tr>
  <td class="metatag">description:</td>
  <td>{desc|strip|escape|addbreaks|nonempty}</td>
</tr>
</table>

<pre>
{text%fileline}
</pre>

{footer}