Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4

Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4

Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4

Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4

Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4

Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
common.php000066600000014325150775172120006565 0ustar00values = func_get_args(); $this->i = -1; $this->count = count($this->values); } function next() { $this->i = ($this->i + 1) % $this->count; return $this->values[$this->i]; } function cur() { return $this->values[$this->i]; } function reset() { $this->i = -1; } } function switcher($name, $options) { $n = isset($_GET[$name]) ? $_GET[$name] : null; $html = array(); foreach ($options as $k => $v) { $html[] = sprintf('%s', $name, $k, $k == $n ? ' class="active"' : '', $v); } return implode('', $html); } function mainnav() { foreach (array( "http://xcache.lighttpd.net/" => "XCache", "http://xcache.lighttpd.net/wiki/DocTOC" => _T("Document"), "http://xcache.lighttpd.net/wiki/PhpIni" => _T("INI Reference"), "http://xcache.lighttpd.net/wiki/GetSupport" => _T("Get Support"), "https://groups.google.com/group/xcache/" => _T("Discusson"), "http://www.php.net/" => "PHP", "http://www.lighttpd.net/" => "Lighttpd", ) as $url => $title) { $html[] = sprintf('%s', $url, $title); } return implode('|', $html); } function subnav() { global $module, $modules; $html = array(); foreach ($modules as $k => $v) { $html[] = sprintf('%s', $k, $k == $module ? ' class="active"' : '', $v); } return implode('', $html); } function th($name, $attrs = null) { $translated = __($name); if ($translated == $name) { $translated = "$name|$name"; } list($text, $title) = explode('|', $translated, 2); return sprintf('%s%s%s' , "\t" , $attrs ? " $attrs" : "" , $name, htmlspecialchars(trim($title)), trim($text) , "\n"); } function xcache_validateFileName($name) { return preg_match('!^[a-zA-Z0-9._-]+$!', $name); } function get_language_file_ex($dir, $lang) { static $langMap = array( 'zh' => 'zh-simplified', 'zh-hk' => 'zh-traditional', 'zh-tw' => 'zh-traditional', ); if (isset($langMap[$lang])) { $lang = $langMap[$lang]; } else if (!xcache_validateFileName($lang)) { return null; } $file = "$dir/$lang.php"; if (file_exists($file)) { return $file; } return null; } function get_language_file($dir) { global $config; if (!empty($config['lang'])) { $lang = strtolower($config['lang']); $file = get_language_file_ex($dir, $lang); if (!isset($file)) { $lang = strtok($lang, ':-'); $file = get_language_file_ex($dir, $lang); } } else { $config['lang'] = 'en'; if (!empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { foreach (explode(',', str_replace(' ', '', $_SERVER['HTTP_ACCEPT_LANGUAGE'])) as $lang) { $lang = strtok($lang, ':;'); $file = get_language_file_ex($dir, $lang); if (isset($file)) { $config['lang'] = $lang; break; } if (strpos($lang, '-') !== false) { $file = get_language_file_ex($dir, strtok($lang, ':-')); if (isset($file)) { $config['lang'] = $lang; break; } } } } } return isset($file) ? $file : "$dir/en.php"; } function _T($str) { if (isset($GLOBALS['strings'][$str])) { return $GLOBALS['strings'][$str]; } if (!empty($GLOBALS['config']['show_todo_strings'])) { return '' . $str . '|'; } return $str; } function __($str) { return _T($str); } function N_($str) { return $str; } function number_formats($a, $keys) { foreach ($keys as $k) { $a[$k] = number_format($a[$k]); } return $a; } function size($size) { $size = (int) $size; if ($size < 1024) return number_format($size, 2) . ' b'; if ($size < 1048576) return number_format($size / 1024, 2) . ' K'; return number_format($size / 1048576, 2) . ' M'; } function age($time) { if (!$time) return ''; $delta = REQUEST_TIME - $time; if ($delta < 0) { $delta = -$delta; } static $seconds = array(1, 60, 3600, 86400, 604800, 2678400, 31536000); static $name = array('s', 'm', 'h', 'd', 'w', 'M', 'Y'); for ($i = 6; $i >= 0; $i --) { if ($delta >= $seconds[$i]) { $ret = (int) ($delta / $seconds[$i]); return $ret . $name[$i]; } } return '0s'; } function stripaddslashes_array($value, $mqs = false) { if (is_array($value)) { foreach($value as $k => $v) { $value[$k] = stripaddslashes_array($v, $mqs); } } else if(is_string($value)) { $value = $mqs ? str_replace('\'\'', '\'', $value) : stripslashes($value); } return $value; } function ob_filter_path_nicer_default($list_html) { $sep = DIRECTORY_SEPARATOR; $docRoot = $_SERVER['DOCUMENT_ROOT']; if ($sep != '/') { $docRoot = str_replace('/', $sep, $docRoot); } $list_html = str_replace(">$docRoot", ">{DOCROOT}" . (substr($docRoot, -1) == $sep ? $sep : ""), $list_html); $xcachedir = realpath(dirname(__FILE__) . "$sep..$sep"); $list_html = str_replace(">$xcachedir$sep", ">{XCache}$sep", $list_html); if ($sep == '/') { $list_html = str_replace(">/home/", ">{H}/", $list_html); } return $list_html; } error_reporting(E_ALL); ini_set('display_errors', 'On'); define('REQUEST_TIME', time()); if (function_exists('get_magic_quotes_gpc') && @get_magic_quotes_gpc()) { $mqs = (bool) ini_get('magic_quotes_sybase'); $_GET = stripaddslashes_array($_GET, $mqs); $_POST = stripaddslashes_array($_POST, $mqs); $_REQUEST = stripaddslashes_array($_REQUEST, $mqs); unset($mqs); } ini_set('magic_quotes_runtime', '0'); $config = array(); if (file_exists("./config.default.php")) { include "./config.default.php"; } include "../config.default.php"; if (file_exists("../config.php")) { include "../config.php"; } if (file_exists("./config.php")) { include "./config.php"; } $strings = array(); include get_language_file("../common/lang"); $modules = array(); if (file_exists("../cacher/index.php")) { $modules["cacher"] = _T("Cacher"); } if (file_exists("../coverager/index.php")) { $modules["coverager"] = _T("Coverager"); } if (file_exists("../diagnosis/index.php")) { $modules["diagnosis"] = _T("Diagnosis"); } header("Cache-Control: no-cache, must-revalidate"); header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); header("Content-Type: text/html; " . $GLOBALS['config']['charset']); header("Content-Language: " . $GLOBALS['config']['lang']); ?> common.css000066600000010116150775172120006560 0ustar00* { box-sizing: border-box; -moz-box-sizing: border-box; } body { background: white; color: black; margin: 0; padding: 0; font-family: arial; font-size: 12pt; } form { margin: 0; padding: 0; } a:link , a:visited { color: #0066CC; } a:link:hover , a:visited:hover { color: #BB0000; } a:link:active , a:visited:active { color: red; } #header { background: #5084D5; position: relative; height: 51px; color: #d0d0d0; } h1, h2, h3, h4, h5, h6 { margin-bottom: 2px; } #header #banner { font: 32px/51px "arial", serif; color: white; } #header #banner a { color: white; } #header #banner #logo { border: 0; display: block; float: left; margin-right: 5px; background: white; } #header #mainnav { top: 3px; right: 5px; font-size: 16px; line-height: 16px; position: absolute; } #header #mainnav a { font-size: 14px; } #header #subnav { bottom: 0; right: 5px; position: absolute; font-size: 28px; line-height: 28px; } #header #subnav a { font-size: 24px; } #header #nav { font-family: "arial", serif; } #header #mainnav a:link, #header #mainnav a:visited { color: black; } #header #mainnav a:active, #header #mainnav a:hover { color: red; } #header #mainnav a { padding: 0 8px 0 8px; } #headerbase { background: #1163BC; border: 1px solid #334C66; border-width: 1px 0 1px 0; margin-bottom: 10px; font: 12px/12px serif; } #main table { font-size: 12px; border: 1px solid #334C66; border-top-width: 0; } #main table caption { background: #1163BC; color: white; line-height: 20px; border: 1px solid #334C66; border-bottom-width: 0; padding: 0; } #main table tfoot { background: #1163BC; } #main table th { background: #E7E7FF; color: black; } #main table td { vertical-align: top; } #main { margin: 20px; } #note { font-size: 11.9px; } #footer { bottom: 0px; background: #E7E7FF; border-top: 1px solid gray; } #poweredBy { overflow: hidden; } #footer { clear: both; height: 40px; position: relative; } #footer img { margin-top: 2px; margin-left: 2px; border: 0; } #poweredBy h3 { float: right; margin-right: 20px; margin-top: 20px; } #poweredBy h3 { margin: 0; font-size: 12px; position: absolute; bottom: 8px; right: 8px; } .phpinfo table { border: 1px solid #334C66; margin-bottom: 1px; } .phpinfo table th, .phpinfo table td { border: 1px solid #334C66; } .phpinfo table th { font-weight: bold; } .phpinfo .e {background: #81BBF2; font-weight: bold; color: #000000;} #main .phpinfo .h th {background: #5084D5; font-weight: bold; color: #000000;} .phpinfo .v {color: #000000;} .button { } span.sortarrow { color: white; text-decoration: none; } table.cycles { border: 1px solid #334C66; margin-bottom: 5px; } table.cycles .col1 { background: #f5f5f5; } table.cycles .col2 { background: #e0e0e0; } table.cycles th, table.cycles td { border: 1px solid #334C66; font-family: monospace; } #main table.cycles caption { color: white; font-weight: bold; height: 24px; line-height: 24px; font-family: serif; } #main table.cycles th { background: #81BBF2; color: #334C66; font-weight: bold; height: 20px; line-height: 20px; font-family: serif; } #main table.cycles th.h { background: #5084D5; } th.h a:visited , th.h a:link { color: black; } th.h a:hover { color: #BB0000; } th.h a:active { color: red; } th a { font-weight: bold; display: block; width: 100%; height: 100%; } th { font-size: 12px; } input, table { font-family: sans-serif; } input { font-size: 12px; } table { border-collapse: collapse; font-size: 11px; margin: 0; } table caption { font-size: 14px; font-weight: bold; } a { text-decoration: none; } #main table td { vertical-align: middle; } .switcher a { color: black; padding: 1px 8px 1px 8px; border: 1px solid white; } .switcher a { border-color: white; border-bottom-color: #334C66; } #nav .switcher a { border-color: #5084D5; border-bottom-color: #334C66; } #nav .switcher a.active, .switcher a.active { color: white; background: #1163BC; border-color: #334C66; border-bottom-color: #1163BC; } #nav .switcher a:hover.active, .switcher a:hover.active { background: #81BBF2; } .switcher a:hover { background: #81BBF2; } #nav .switcher a:active, .switcher a:active { background: #81BBF2; } xcache.png000066600000013753150775172120006531 0ustar00PNG  IHDR36XMgAMA cHRM Uy}=. *"iCCPICC Profile8˭k@ovi+(UTbYYzhѺn5 Zt7$_!=TQxI)HAPB&dz 3o2o nx^3qCM3.╗qޏmk+ݱoZ)xHٽ\@{Pm=whMk?Rw̢lR;Y%,%X]jK5@Zur9D g N-s {OZ霴LT9dA dFuNQԓ<ҌiOH_mM'{Y$Щ$sLc|?_Y`ѻXz3^-oٷPR-klA pHYs+DIDATx^] xU~6Inh XRMvPĂ13zeq;0:x FD@DևUYeP(Z(Жii2w`ٓ.9] \r$#2\n0~"ª<5͡&kw{|탦Z{; ZYḛe&kBAJ\/3vg"|9׺Ԗ#W e PVV@.h܈Ԁ~qxj@[\' ."Xz:5[׶|u3Vh%&BWs"o`@d'͸QfA!y=.oK{Z%eN#.C#OpBO!?/l0jJBh|'ɜfpjKαF[B&}t;wIM1"e)ʸIt!ȝj5^(WNrR4)tׯ"=| `ONKjwn76bݮk]!-;ouQaJm1Pd0\VdyN $ʃ8edaIjf1w}!QN!"X;{ ڲH^Hveq]-ýb~2._~v FWu:uCH "MZI.W )a42ڐ,,<CJR9 }O#0鎍$=/*bƨ?! ͈o RN h TķDG8ك@sq.^*r ֩,:FzVJVy!ett2rK}KA<&\UHWe=Cd] cOZÂѭsnͷ|s( vha+mY&yop؄lud5/! +فfܳvi}{ \nཱུ? "Da?GZGJa74t1ȇC\\e]J^EN ]%R3eo įuTpzu Q,qy~.rܟe7g-'KFܦh0h<E)BCǐ}%rHXC6zҲn;tFrD5口n›Faj #TēѨA0)ȩGv^.]# i6V FBӆAz~n $52u_ێ qgZ.d;%P)m#wFkL,P;te\'ڤgJ%j*!a3.Sydc*ۘaDlﯫcI9^9)p;7|2 @^o._tb6QGIKeDxbmDۡ#iƊ[ӳ)VU|@_?[6;Q~6T+h8J:HU{?>0f h c!1diWoar̉41 )m W'0 gzz:Y ™%4 !Ct}{ZJnOkY~1$9vmn$2ќhq+">ĺM$庶nY 筥[E1v5o*ӈ,, vgkg~ }`^?7ygm)U0:GW-}*903חo%ppl e9u_baiv8"󦱅|zIx )5yKUY$ԯgx4 6A-|qO13E!$xũ 6aٽ8:X.mBddU!-<($BZ܂b!7ѐbfIcFkǫ~IBo.ZRL`l/uo wI9OO7$ N(Pρk筼JHS`hp9g˄;67'X_t >L7} VN`WG{a 6c>;S I6f,^k7.WUJ2aьhKWzt6:.om0vci6 6[c茩Ui?+P&%>#IJ^,hk0yҳ>./oioES\{ÿsGmpvaoe' wM&yXүR&9Di,o)7dcYDVWWlde.2,XrfQ=?aS7IJ]ZC%IBmfCqVEPW2]YA+O8$xn iL`3coX!?XXP̫N|hdv8'sPX& Ro| Aki򡯣-WpyܸvѫCKܚubehm,XVXto0qh/ Z!e,m#9'R@rH[f`/8\:*}r?1w_zvh%rN 4K`βaZ{,jRYB-*yt=.Y'~mcd s3e7V۬S0r;VcEO⳹=1 7)T>L}J %;ҝ %#ŗ[ֆ7,Y!>RM ĺ=p"-zQXaqBZ̾U E@\$2Y2iuZtiӌZVySJĦ'Jٚ !{1_\Oڜf2$V/9 x Z-qLTmtfWm($۠).KjYxKtVsܳ#IGN.~r.ϦK8p* 3ۜX3 ^PY^J zoj\0eԃؽ=a};cBrO?7G ?\qlfTNJq0,p$n75XZZ>4<oP }Յ=gቡkx?&E.ö/V ;+ֳ. I{ȸ V\MM6RΕ ׷h39t;7/dx1<9LGS"t$4'gS@6f1 _ydf1U}Vm)$1ck]~wn^馵';頑 sߦkCB*kH?2$Ǣ7y=f8C}Y󡲗%!Uh$ȡYŖ-D\) w 4{Rs^~wvZ;ao7Q/R\dطanBFR'R2/OӅBHg)zH J}[o5 s[R-!5τ /Ob3h DctA!M33RN ^z/{w2.x.ΔNۙFNz6~[D=!GE᝔Ȓ-p+ޝM/ ?khQDߝKSP6YPJȕ8s mZP/ $.KWn/8w^8ׯ9Ǎ'1iG&'?$3P{zwMģ˿h׃ GY$V?x9oYaoܴ!WH+P:u/yj9EIENDB`header.tpl.php000066600000002355150775172120007323 0ustar00 <?php echo sprintf("XCache %s", $xcache_version = defined('XCACHE_VERSION') ? XCACHE_VERSION : ''); ?> - <?php echo ucfirst($GLOBALS['module']); ?>
 
tablesort.js000066600000003012150775172120007110 0ustar00var sort_column; var prev_span = null; function get_inner_text(el) { if((typeof el == 'string')||(typeof el == 'undefined')) return el; if(el.innerText) return el.innerText; else { var str = ""; var cs = el.childNodes; var l = cs.length; for (var i=0;i "帮助文档", "INI Reference" => "INI 参考", "Get Support" => "获取支持", "Discusson" => "讨论", "Cacher" => "缓存器", "Coverager" => "代码覆盖查看器", "Diagnosis" => "诊断", ); lang/zh-traditional.php000066600000000457150775172120011150 0ustar00 "幫助文檔", "INI Reference" => "INI 參考", "Get Support" => "獲取支持", "Discusson" => "討論", "Cacher" => "快取器", "Coverager" => "代码覆盖查看器", "Diagnosis" => "診斷", ); footer.tpl.php000066600000001171150775172120007364 0ustar00