Source for file Renderer.php
Documentation is available at Renderer.php
* A class to render Diffs in different formats.
* This class renders the diff in classic diff format. It is intended
* that this class be customized via inheritance, to obtain fancier
* $Horde: framework/Text_Diff/Diff/Renderer.php,v 1.2 2004/01/09 21:46:30 chuck Exp $
* Number of leading context "lines" to preserve.
* This should be left at zero for this class, but subclasses
* may want to set this to other values.
var $_leading_context_lines = 0;
* Number of trailing context "lines" to preserve.
* This should be left at zero for this class, but subclasses
* may want to set this to other values.
var $_trailing_context_lines = 0;
* @param $diff object Text_Diff A Text_Diff object.
* @return string The formatted output.
$nlead = $this->_leading_context_lines;
$ntrail = $this->_trailing_context_lines;
foreach ($diff->getDiff () as $edit) {
if (is_a($edit, 'Text_Diff_Op_copy')) {
if (count($edit->orig ) <= $nlead + $ntrail) {
$block[] = &new Text_Diff_Op_copy ($context);
$this->_block ($x0, $ntrail + $xi - $x0,
$y0, $ntrail + $yi - $y0,
$x0 = $xi - count($context);
$y0 = $yi - count($context);
$block[] = &new Text_Diff_Op_copy ($context);
$xi += count($edit->orig );
$yi += count($edit->final );
$this->_block ($x0, $xi - $x0,
return $this->_endDiff ();
function _block ($xbeg, $xlen, $ybeg, $ylen, &$edits)
$this->_startBlock ($this->_blockHeader ($xbeg, $xlen, $ybeg, $ylen));
foreach ($edits as $edit) {
case 'text_diff_op_copy':
$this->_context ($edit->orig );
$this->_added ($edit->final );
case 'text_diff_op_delete':
$this->_deleted ($edit->orig );
case 'text_diff_op_change':
$this->_changed ($edit->orig , $edit->final );
function _blockHeader ($xbeg, $xlen, $ybeg, $ylen)
$xbeg .= ',' . ($xbeg + $xlen - 1 );
$ybeg .= ',' . ($ybeg + $ylen - 1 );
return $xbeg . ($xlen ? ($ylen ? 'c' : 'd') : 'a') . $ybeg;
function _startBlock ($header)
function _lines ($lines, $prefix = ' ')
foreach ($lines as $line) {
function _context ($lines)
$this->_lines ($lines, '>');
function _deleted ($lines)
$this->_lines ($lines, '<');
function _changed ($orig, $final)
Documentation generated on Mon, 11 Mar 2019 10:15:12 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|