2008-07-26 23:31:10 +00:00
|
|
|
{extends "source/base.html"}
|
2008-07-27 15:43:51 +00:00
|
|
|
{block docclass}yui-t1{assign $inChangeLog=true}{/block}
|
2008-07-26 23:31:10 +00:00
|
|
|
{block body}
|
|
|
|
<table summary="" class="tree-list">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{trans 'Age'}</th>
|
|
|
|
<th>{trans 'Message'}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{foreach $changes as $change}
|
2008-07-28 20:09:17 +00:00
|
|
|
{aurl 'url', 'IDF_Views_Source::commit', array($project.shortname, $change.commit)}
|
2008-07-27 15:43:51 +00:00
|
|
|
<tr class="log">
|
2008-07-26 23:31:10 +00:00
|
|
|
<td><a href="{$url}">{$change.date|dateago:"wihtout"}</a></td>
|
2008-08-07 13:35:03 +00:00
|
|
|
<td>{issuetext $change.title, $request}{if $change.full_message}<br /><br />{issuetext $change.full_message, $request}{/if}</td>
|
2008-07-27 15:43:51 +00:00
|
|
|
</tr>
|
|
|
|
<tr class="extra">
|
|
|
|
<td colspan="2">
|
|
|
|
<div class="helptext right">{trans 'Commit:'} <a href="{$url}" class="mono">{$change.commit}</a>,
|
|
|
|
{trans 'by'} {$change.author|strip_tags} {* this remove the email address *}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</td>
|
2008-07-26 23:31:10 +00:00
|
|
|
</tr>
|
|
|
|
{/foreach}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{/block}
|
|
|
|
{block context}
|
2008-08-29 17:50:10 +00:00
|
|
|
{if $scm == 'git'}
|
2008-07-26 23:31:10 +00:00
|
|
|
<p><strong>{trans 'Branches:'}</strong><br />
|
|
|
|
{foreach $branches as $branch}
|
|
|
|
{aurl 'url', 'IDF_Views_Source::changeLog', array($project.shortname, $branch)}
|
|
|
|
<span class="label{if $commit == $branch} active{/if}"><a href="{$url}" class="label">{$branch}</a></span><br />
|
|
|
|
{/foreach}
|
|
|
|
</p>
|
2008-08-29 17:50:10 +00:00
|
|
|
{/if}
|
|
|
|
{if $scm == 'svn'}
|
2008-08-29 18:38:13 +00:00
|
|
|
<form class="star" action="{url 'IDF_Views_Source::changelogRev', array($project.shortname)}" method="get">
|
2008-09-03 07:33:29 +00:00
|
|
|
<p><strong>{trans 'Revision:'}</strong> {$commit}</p>
|
2008-08-29 18:38:13 +00:00
|
|
|
<p>
|
|
|
|
<input accesskey="4" type="text" value="{$commit}" name="rev" size="5" />
|
2008-08-29 17:50:10 +00:00
|
|
|
<input type="submit" name="s" value="{trans 'Go to revision'}" />
|
|
|
|
</p>
|
2008-08-29 18:38:13 +00:00
|
|
|
</form>
|
|
|
|
|
2008-08-29 17:50:10 +00:00
|
|
|
{/if}
|
2008-07-26 23:31:10 +00:00
|
|
|
{/block}
|
|
|
|
|