2013-07-20 17:41:56 -05:00
|
|
|
{extends "idf/source/base.html"}
|
|
|
|
{block docclass}yui-t1{assign $inChangeLog=true}{/block}
|
|
|
|
{block body}
|
2014-12-27 17:30:37 -06:00
|
|
|
{if !$full}
|
|
|
|
<a href="?full=true">Click Here for the full changelog</a>
|
|
|
|
{/if}
|
|
|
|
<br/>
|
|
|
|
<br/>
|
2013-07-20 17:41:56 -05:00
|
|
|
<table summary="" class="tree-list">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{trans 'Age'}</th>
|
|
|
|
<th>{trans 'Message'}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{foreach $changes as $change}
|
|
|
|
{aurl 'url', 'IDF_Views_Source::commit', array($project.shortname, $change.scm_id)}
|
|
|
|
<tr class="log">
|
|
|
|
<td class="nobrk"><a href="{$url}">{$change.creation_dtime|dateago:"without"}</a></td>
|
|
|
|
<td>{issuetext $change.summary, $request}{if $change.fullmessage}<br /><br />{issuetext $change.fullmessage, $request, true, false, true, true, true}{/if}
|
|
|
|
|
|
|
|
|
|
|
|
{assign $parents = $change.extra.getVal('parents')}
|
|
|
|
|
|
|
|
{if count($parents) > 1}<div class="helptext">
|
|
|
|
{foreach $parents as $parent}<br />
|
|
|
|
{trans 'Parent:'} <a href="{url 'IDF_Views_Source::commit', array($project.shortname, $parent)}" title="{trans 'View corresponding commit'}" class="mono">{$parent}</a>
|
|
|
|
{/foreach}</div>{/if}
|
|
|
|
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="extra">
|
|
|
|
<td colspan="2">
|
|
|
|
<div class="helptext right">{trans 'Commit'} <a href="{$url}" class="mono">{$change.scm_id}</a>,
|
|
|
|
{trans 'by'} {showuser $change.get_author(), $request, $change.origauthor}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{/foreach}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{/block}
|