mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-17 18:29:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4484 201d5d3c-b55e-5fd7-737f-ddc643e51545
40 lines
1.1 KiB
HTML
40 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>
|
|
<li>[<a href="{getUrl('type','file','path',urlencode($path),'revs',$erev)}">view code</a>]</li>
|
|
</ol>
|
|
|
|
<!--@if($diff)-->
|
|
<table>
|
|
<col width="80" />
|
|
<col width="*" />
|
|
<col width="*" />
|
|
<thead>
|
|
<tr>
|
|
<th>Status</th>
|
|
<th class="before">Rev. {$brev}</th>
|
|
<th class="after">Rev. {$erev}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!--@foreach($diff as $item)-->
|
|
<tr class="line">
|
|
<td rowspan="2" class="tCenter {$item->diff_type}">{$item->diff_type}</td>
|
|
<td class="before">line {$item->before_line}</td>
|
|
<td class="after">line {$item->after_line}</td>
|
|
</tr>
|
|
<tr class="code">
|
|
<td>{nl2br(htmlspecialchars($item->before_code))}</td>
|
|
<td>{nl2br(htmlspecialchars($item->after_code))}</td>
|
|
</tr>
|
|
<!--@end-->
|
|
</tbody>
|
|
</table>
|
|
|
|
<!--@end-->
|
|
|
|
<!--#include("source_footer.html")-->
|