mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 19:29:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4484 201d5d3c-b55e-5fd7-737f-ddc643e51545
42 lines
1.1 KiB
HTML
42 lines
1.1 KiB
HTML
<!--#include("source_header.html")-->
|
|
|
|
<h3>Diff between revs {$brev} to revs {$erev}</h3>
|
|
<h1>{$path}</h1>
|
|
|
|
<ol>
|
|
<li>[<a href="{getUrl('type','log','path',urlencode($path),'erev',$erev,'brev',$brev)}">view log</a>]</li>
|
|
</ol>
|
|
|
|
<!--@if($comp)-->
|
|
<!--@foreach($comp as $item)-->
|
|
<table>
|
|
<col width="*" />
|
|
<col width="*" />
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2" class="filename">{$item->filename}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="revision">
|
|
<td class="before">Rev. {$item->before_revision}</td>
|
|
<td class="after">Rev. {$item->after_revision}</td>
|
|
</tr>
|
|
<!--@foreach($item->changed as $change)-->
|
|
<tr class="line">
|
|
<td class="before">line {$change->before_line}</td>
|
|
<td class="after">line {$change->after_line}</td>
|
|
</tr>
|
|
<!--@for($i=0;$i<count($change->before_code);$i++)-->
|
|
<tr class="code">
|
|
<td>{nl2br(str_replace(' ',' ',htmlspecialchars($change->before_code[$i])))}</td>
|
|
<td>{nl2br(str_replace(' ',' ',htmlspecialchars($change->after_code[$i])))}</td>
|
|
</tr>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
</tbody>
|
|
</table>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
|
|
<!--#include("source_footer.html")-->
|