Source for file unified.php
Documentation is available at unified.php
* "Unified" diff renderer.
* This class renders the diff in classic "unified diff" format.
* $Horde: framework/Text_Diff/Diff/Renderer/unified.php,v 1.2 2004/01/09 21:46:30 chuck Exp $
$this->_leading_context_lines = $context_lines;
$this->_trailing_context_lines = $context_lines;
function _blockHeader ($xbeg, $xlen, $ybeg, $ylen)
return " @@ -$xbeg +$ybeg @@";
$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.
|