2008-11-18 08:15:02 +00:00
|
|
|
{extends "idf/source/base.html"}
|
2009-11-06 15:12:54 +00:00
|
|
|
{block extraheader}<link rel="stylesheet" type="text/css" href="{media '/idf/css/prettify.css'}"/>{/block}
|
2008-07-28 20:09:17 +00:00
|
|
|
{block docclass}yui-t1{assign $inCommit=true}{/block}
|
|
|
|
{block body}
|
|
|
|
<table class="commit" summary="">
|
|
|
|
<tr>
|
|
|
|
<th><strong>{trans 'Date:'}</strong></th><td>{$cobject.date|date:"%Y-%m-%d %H:%M:%S"} ({$cobject.date|dateago})</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2009-02-25 13:36:08 +00:00
|
|
|
<th><strong>{trans 'Author:'}</strong></th><td>{showuser $rcommit.get_author(), $request, $cobject.author}</td>
|
2008-07-28 20:09:17 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2010-11-17 00:53:17 +00:00
|
|
|
<th><strong>{trans 'Branch:'}</strong></th><td>{$cobject.branch}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2008-07-29 13:13:40 +00:00
|
|
|
<th><strong>{trans 'Commit:'}</strong></th><td class="mono"><a href="{url 'IDF_Views_Source::treeBase', array($project.shortname, $commit)}" title="{trans 'View corresponding source tree'}">{$cobject.commit}</a></td>
|
2008-07-28 20:09:17 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2009-11-06 15:12:54 +00:00
|
|
|
<th><strong>{trans 'Message:'}</strong></th><td>{issuetext $cobject.title, $request}{if isset($cobject.full_message)}<br/><br/>{issuetext $cobject.full_message, $request, true, false, true, true, true}{/if}</td>
|
2010-12-23 10:57:39 +00:00
|
|
|
</tr>{if count($changes)}
|
2008-07-31 22:38:29 +00:00
|
|
|
<tr>
|
2010-12-08 00:48:26 +00:00
|
|
|
<th><strong>{trans 'Changes:'}</strong></th>
|
2008-07-31 22:38:29 +00:00
|
|
|
<td>
|
2010-12-08 00:48:26 +00:00
|
|
|
<table class="changes">
|
|
|
|
{foreach $changes.deletions as $filename}
|
|
|
|
<tr><td>D</td><td>{$filename}{if !empty($diff.files[$filename])} (<a href="#diff-{$filename|md5}">{trans 'full'}</a>){/if}</td></tr>
|
|
|
|
{/foreach}
|
|
|
|
{foreach $changes.renames as $oldname => $newname}
|
|
|
|
<tr><td>R</td><td><a href="{url 'IDF_Views_Source::tree', array($project.shortname, $commit, $newname)}">{$oldname} -> {$newname}</a></td></tr>
|
|
|
|
{/foreach}
|
|
|
|
{foreach $changes.additions as $filename}
|
|
|
|
<tr><td>A</td><td><a href="{url 'IDF_Views_Source::tree', array($project.shortname, $commit, $filename)}">{$filename}</a>{if !empty($diff.files[$filename])} (<a href="#diff-{$filename|md5}">{trans 'full'}</a>){/if}</td></tr>
|
|
|
|
{/foreach}
|
|
|
|
{foreach $changes.patches as $filename}
|
|
|
|
{assign $ndiff = count($diff.files[$filename]['chunks'])}
|
|
|
|
<tr><td>M</td><td><a href="{url 'IDF_Views_Source::tree', array($project.shortname, $commit, $filename)}">{$filename}</a>{if !empty($diff.files[$filename])} (<a href="#diff-{$filename|md5}">{blocktrans $ndiff}{$ndiff} diff{plural}{$ndiff} diffs{/blocktrans}</a>){/if}</td></tr>
|
|
|
|
{/foreach}
|
|
|
|
{foreach $changes.properties as $filename => $properties}
|
|
|
|
<tr><td>P</td><td><a href="{url 'IDF_Views_Source::tree', array($project.shortname, $commit, $filename)}">{$filename}</a>
|
|
|
|
<table class="properties">
|
|
|
|
{foreach $properties as $key => $value}
|
|
|
|
<tr><td>{$key}</td>
|
|
|
|
{if $value == null}
|
|
|
|
<td class="removed">{trans 'removed'}</td>
|
|
|
|
{else}
|
|
|
|
<td>{$value}</td>
|
|
|
|
{/if}
|
|
|
|
</tr>
|
|
|
|
{/foreach}
|
|
|
|
</table>
|
|
|
|
</td></tr>
|
2008-07-31 22:38:29 +00:00
|
|
|
{/foreach}
|
2010-12-08 00:48:26 +00:00
|
|
|
</table>
|
2008-07-31 22:38:29 +00:00
|
|
|
</td>
|
2010-12-23 10:57:39 +00:00
|
|
|
</tr>{/if} {* End of the if count($changes) *}
|
2008-07-28 20:09:17 +00:00
|
|
|
</table>
|
2010-12-08 00:48:26 +00:00
|
|
|
|
2008-08-02 07:38:06 +00:00
|
|
|
{if count($diff.files)}
|
2010-12-08 00:48:26 +00:00
|
|
|
<h2>{trans 'File differences'}</h2>
|
2008-07-31 22:38:29 +00:00
|
|
|
|
2008-11-11 21:32:01 +00:00
|
|
|
{$diff.as_html()}
|
2009-01-17 17:46:26 +00:00
|
|
|
{/if}{if count($diff.files) or $large_commit}
|
2008-11-25 19:11:09 +00:00
|
|
|
{aurl 'url', 'IDF_Views_Source::downloadDiff', array($project.shortname, $commit)}
|
2009-11-06 15:12:54 +00:00
|
|
|
<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 the corresponding diff file'}</a></p>
|
2008-08-02 07:38:06 +00:00
|
|
|
{/if}
|
2009-01-17 17:46:26 +00:00
|
|
|
|
2008-07-28 20:09:17 +00:00
|
|
|
{/block}
|
2008-11-15 20:10:37 +00:00
|
|
|
{block javascript}
|
|
|
|
<script type="text/javascript" src="{media '/idf/js/prettify.js'}"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
prettyPrint();
|
|
|
|
</script>
|
|
|
|
{/block}
|