2008-08-29 19:50:10 +02:00
|
|
|
{extends "source/base.html"}
|
|
|
|
{block docclass}yui-t1{assign $inSourceTree=true}{/block}
|
|
|
|
{block body}
|
|
|
|
<h2><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 summary="" class="tree-list">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th colspan="2">{trans 'File'}</th>
|
|
|
|
<th>{trans 'Age'}</th>
|
|
|
|
<th>{trans 'Rev'}</th>
|
|
|
|
<th>{trans 'Message'}</th>
|
|
|
|
<th>{trans 'Size'}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>{if !$tree_in || $props}
|
|
|
|
{aurl 'url', 'IDF_Views_Source::commit', array($project.shortname, $commit)}
|
|
|
|
<tfoot>
|
|
|
|
{if $props}
|
|
|
|
<tr><th colspan="6">
|
|
|
|
<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="6">{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>
|
|
|
|
{if $base}
|
|
|
|
<tr>
|
|
|
|
<td> </td>
|
|
|
|
<td>
|
|
|
|
<a href="{url 'IDF_Views_Source::tree', array($project.shortname, $commit, $prev)}">..</a></td>
|
|
|
|
<td colspan="3"></td>
|
|
|
|
</tr>
|
|
|
|
{/if}
|
|
|
|
{foreach $files as $file}
|
|
|
|
{aurl 'url', 'IDF_Views_Source::tree', array($project.shortname, $commit, $file.fullpath)}
|
|
|
|
<tr>
|
|
|
|
<td class="fileicon"><img src="{media '/idf/img/'~$file.type~'.png'}" alt="{$file.type}" /></td>
|
|
|
|
|
|
|
|
<td><a href="{$url}">{$file.file}</a></td>
|
|
|
|
<td><span class="smaller">{$file.date|dateago:"wihtout"}</span></td>
|
|
|
|
<td>{$file.rev}</td>
|
|
|
|
<td{if $file.type != 'blob'} colspan="2"{/if}><span class="smaller">{$file.log|nl2br}</span></td>
|
|
|
|
{if $file.type == 'blob'}
|
|
|
|
<td>{$file.size|size}</td>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
{/foreach}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2008-09-02 15:51:57 +02:00
|
|
|
<p class="right soft"><kbd>svn co -r {$commit} {$project.getRemoteAccessUrl()}</kbd></p>
|
2008-08-29 19:50:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
{/block}
|
|
|
|
{block context}
|
2008-08-29 20:38:13 +02:00
|
|
|
<form class="star" action="{url 'IDF_Views_Source::treeRev', array($project.shortname)}" method="get">
|
|
|
|
<p><strong>{trans 'Revison:'}</strong> {$commit}</p>
|
|
|
|
<p>
|
|
|
|
<input accesskey="4" type="text" value="{$commit}" name="rev" size="5" />
|
2008-08-29 19:50:10 +02:00
|
|
|
<input type="hidden" name="sourcefile" value="{$base}"/>
|
2008-08-29 20:38:13 +02:00
|
|
|
<input type="submit" name="s" value="{trans 'Go to revision'}" /></p>
|
2008-08-29 19:50:10 +02:00
|
|
|
</form>
|
2008-08-29 20:38:13 +02:00
|
|
|
|
2008-08-29 19:50:10 +02:00
|
|
|
{/block}
|