50 lines
2.0 KiB
HTML
50 lines
2.0 KiB
HTML
{extends "idf/source/base.html"}
|
|
{block extraheader}<link rel="stylesheet" type="text/css" href="{media '/idf/css/prettify.css'}" />{/block}
|
|
{block docclass}yui-t1{assign $inSourceTree=true}{/block}
|
|
{block body}
|
|
<h2 class="top"><a href="{url 'IDF_Views_Source::treeBase', array($project.shortname, $commit)}">{trans 'Root'}</a><span class="sep">/</span>{if $breadcrumb}{$breadcrumb|safe}{/if}</h2>
|
|
|
|
<table class="code" summary=" ">
|
|
{if !$tree_in || $props}
|
|
{aurl 'url', 'IDF_Views_Source::commit', array($project.shortname, $commit)}
|
|
<tfoot>
|
|
{if $props}
|
|
<tr><th colspan="2">
|
|
<ul>
|
|
{foreach $props as $prop => $val}
|
|
<li>{trans 'Property'} <strong>{$prop}</strong> {trans 'set to:'} <em>{$val}</em></li>
|
|
{/foreach}
|
|
</ul>
|
|
</th></tr>
|
|
{/if}
|
|
{if !$tree_in}
|
|
<tr><th colspan="2">{blocktrans}Source at commit <a class="mono" href="{$url}">{$commit}</a> created {$cobject.date|dateago}.{/blocktrans}<br />
|
|
<span class="smaller">{blocktrans}By {$cobject.author|strip_tags|trim}, {$cobject.title}{/blocktrans}</span>
|
|
</th></tr>
|
|
{/if}
|
|
</tfoot>
|
|
{/if}
|
|
<tbody>
|
|
{$file}
|
|
</tbody>
|
|
</table>
|
|
{aurl 'url', 'IDF_Views_Source::getFile', array($project.shortname, $commit, $fullpath)}
|
|
<p class="right soft"><a href="{$url}"><img style="vertical-align: text-bottom;" src="{media '/idf/img/package-grey.png'}" alt="{trans 'Archive'}" align="bottom" /></a> <a href="{$url}">{trans 'Download this file'}</a></p>
|
|
|
|
{/block}
|
|
{block context}
|
|
<form class="star" action="{url 'IDF_Views_Source_Svn::treeRev', array($project.shortname)}" method="get">
|
|
<p><strong>{trans 'Revision:'}</strong> {$commit}</p>
|
|
<p>
|
|
<input accesskey="4" type="text" value="{$commit}" name="rev" size="5" />
|
|
<input type="hidden" name="sourcefile" value="{$base}"/>
|
|
<input type="submit" name="s" value="{trans 'Go to revision'}" /></p>
|
|
</form>
|
|
|
|
{/block}
|
|
|
|
{block javascript}
|
|
<script type="text/javascript" src="{media '/idf/js/prettify.js'}"></script>
|
|
<script type="text/javascript">prettyPrint();</script>
|
|
{/block}
|