123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <?php
- require_once dirname(__FILE__).'/Array.php';
- class Diff_Renderer_Html_Inline extends Diff_Renderer_Html_Array
- {
-
- public function render()
- {
- $changes = parent::render();
- $html = '';
- if(empty($changes)) {
- return $html;
- }
- $html .= '<table class="Differences DifferencesInline">';
- $html .= '<thead>';
- $html .= '<tr>';
- $html .= '<th>Old</th>';
- $html .= '<th>New</th>';
- $html .= '<th>Differences</th>';
- $html .= '</tr>';
- $html .= '</thead>';
- foreach($changes as $i => $blocks) {
-
-
-
- if($i > 0) {
- $html .= '<tbody class="Skipped">';
- $html .= '<th>…</th>';
- $html .= '<th>…</th>';
- $html .= '<td> </td>';
- $html .= '</tbody>';
- }
- foreach($blocks as $change) {
- $html .= '<tbody class="Change'.ucfirst($change['tag']).'">';
-
- if($change['tag'] == 'equal') {
- foreach($change['base']['lines'] as $no => $line) {
- $fromLine = $change['base']['offset'] + $no + 1;
- $toLine = $change['changed']['offset'] + $no + 1;
- $html .= '<tr>';
- $html .= '<th>'.$fromLine.'</th>';
- $html .= '<th>'.$toLine.'</th>';
- $html .= '<td class="Left">'.$line.'</td>';
- $html .= '</tr>';
- }
- }
-
- else if($change['tag'] == 'insert') {
- foreach($change['changed']['lines'] as $no => $line) {
- $toLine = $change['changed']['offset'] + $no + 1;
- $html .= '<tr>';
- $html .= '<th> </th>';
- $html .= '<th>'.$toLine.'</th>';
- $html .= '<td class="Right"><ins>'.$line.'</ins> </td>';
- $html .= '</tr>';
- }
- }
-
- else if($change['tag'] == 'delete') {
- foreach($change['base']['lines'] as $no => $line) {
- $fromLine = $change['base']['offset'] + $no + 1;
- $html .= '<tr>';
- $html .= '<th>'.$fromLine.'</th>';
- $html .= '<th> </th>';
- $html .= '<td class="Left"><del>'.$line.'</del> </td>';
- $html .= '</tr>';
- }
- }
-
- else if($change['tag'] == 'replace') {
- foreach($change['base']['lines'] as $no => $line) {
- $fromLine = $change['base']['offset'] + $no + 1;
- $html .= '<tr>';
- $html .= '<th>'.$fromLine.'</th>';
- $html .= '<th> </th>';
- $html .= '<td class="Left"><span>'.$line.'</span></td>';
- $html .= '</tr>';
- }
- foreach($change['changed']['lines'] as $no => $line) {
- $toLine = $change['changed']['offset'] + $no + 1;
- $html .= '<tr>';
- $html .= '<th> </th>';
- $html .= '<th>'.$toLine.'</th>';
- $html .= '<td class="Right"><span>'.$line.'</span></td>';
- $html .= '</tr>';
- }
- }
- $html .= '</tbody>';
- }
- }
- $html .= '</table>';
- return $html;
- }
- }
|