Merge branch 'develop'

master
Loïc d'Anterroches 2010-12-23 11:57:48 +01:00
commit b4b53d3e22
2 changed files with 8 additions and 3 deletions

View File

@ -299,8 +299,13 @@ class IDF_Views_Source
$rcommit = IDF_Commit::getOrAdd($cobject, $request->project);
$diff = new IDF_Diff($cobject->diff);
$diff->parse();
$changes = $scm->getChanges($commit);
$scmConf = $request->conf->getVal('scm', 'git');
try {
$changes = $scm->getChanges($commit);
} catch (Exception $e) {
// getChanges is not yes supported by this backend.
$changes = array();
}
$branches = $scm->getBranches();
$in_branches = $scm->inBranches($cobject->commit, '');
$tags = $scm->getTags();

View File

@ -17,7 +17,7 @@
</tr>
<tr>
<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>
</tr>
</tr>{if count($changes)}
<tr>
<th><strong>{trans 'Changes:'}</strong></th>
<td>
@ -52,7 +52,7 @@
{/foreach}
</table>
</td>
</tr>
</tr>{/if} {* End of the if count($changes) *}
</table>
{if count($diff.files)}