Server IP : 103.233.192.212 / Your IP : 18.218.135.221 Web Server : Apache/2 System : Linux sv1.inde.co.th 3.10.0-1160.36.2.el7.x86_64 #1 SMP Wed Jul 21 11:57:15 UTC 2021 x86_64 User : sumpatuan ( 1058) PHP Version : 5.5.38 Disable Function : symlink,shell_exec,exec,proc_close,proc_open,popen,system,dl,putenv,passthru,escapeshellarg,escapeshellcmd,pcntl_exec,proc_get_status,proc_nice,proc_terminate,pclose,ini_alter,virtual,openlog,ini_restore MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sumpatuan/public_html/backup/framework/gii/components/Pear/Text/Diff/Renderer/ |
Upload File : |
<?php /** * "Context" diff renderer. * * This class renders the diff in classic "context diff" format. * * $Horde: framework/Text_Diff/Diff/Renderer/context.php,v 1.3.2.3 2008/01/04 10:37:27 jan Exp $ * * Copyright 2004-2008 The Horde Project (http://www.horde.org/) * * See the enclosed file COPYING for license information (LGPL). If you did * not receive this file, see http://opensource.org/licenses/lgpl-license.php. * * @package Text_Diff */ /** Text_Diff_Renderer */ require_once 'Text/Diff/Renderer.php'; /** * @package Text_Diff */ class Text_Diff_Renderer_context extends Text_Diff_Renderer { /** * Number of leading context "lines" to preserve. */ var $_leading_context_lines = 4; /** * Number of trailing context "lines" to preserve. */ var $_trailing_context_lines = 4; var $_second_block = ''; function _blockHeader($xbeg, $xlen, $ybeg, $ylen) { if ($xlen != 1) { $xbeg .= ',' . $xlen; } if ($ylen != 1) { $ybeg .= ',' . $ylen; } $this->_second_block = "--- $ybeg ----\n"; return "***************\n*** $xbeg ****"; } function _endBlock() { return $this->_second_block; } function _context($lines) { $this->_second_block .= $this->_lines($lines, ' '); return $this->_lines($lines, ' '); } function _added($lines) { $this->_second_block .= $this->_lines($lines, '+ '); return ''; } function _deleted($lines) { return $this->_lines($lines, '- '); } function _changed($orig, $final) { $this->_second_block .= $this->_lines($final, '! '); return $this->_lines($orig, '! '); } }