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 $
* Number of leading context "lines" to preserve.
var $_leading_context_lines = 4;
* Number of trailing context "lines" to preserve.
var $_trailing_context_lines = 4;
function _blockHeader ($xbeg, $xlen, $ybeg, $ylen)
return " @@ -$xbeg +$ybeg @@";
return $this->_lines ($lines, '+');
function _deleted ($lines)
return $this->_lines ($lines, '-');
function _changed ($orig, $final)
return $this->_deleted ($orig) . $this->_added ($final);
Documentation generated on Mon, 11 Mar 2019 14:16:38 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|