1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
<?php // -*-php-*-
rcs_id('$Id: _BackendInfo.php,v 1.24 2005/01/29 19:47:43 rurban Exp $');
/**
Copyright 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam
This file is part of PhpWiki.
PhpWiki is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
PhpWiki is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PhpWiki; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
require_once('lib/Template.php');
/**
*/
class WikiPlugin__BackendInfo
extends WikiPlugin
{
function getName () {
return _("DebugInfo");
}
function getDescription () {
return sprintf(_("Get debugging information for %s."), '[pagename]');
}
function getVersion() {
return preg_replace("/[Revision: $]/", '',
"\$Revision: 1.24 $");
}
function getDefaultArguments() {
return array('page' => '[pagename]');
}
function run($dbi, $argstr, &$request, $basepage) {
$args = $this->getArgs($argstr, $request);
extract($args);
if (empty($page))
return '';
$backend = &$dbi->_backend;
$html = HTML(HTML::h3(fmt("Querying backend directly for '%s'",
$page)));
$table = HTML::table(array('border' => 1,
'cellpadding' => 2,
'cellspacing' => 0));
$pagedata = $backend->get_pagedata($page);
if (!$pagedata) {
// FIXME: invalid HTML
$html->pushContent(HTML::p(fmt("No pagedata for %s", $page)));
}
else {
$this->_fixupData($pagedata);
$table->pushContent($this->_showhash("get_pagedata('$page')", $pagedata));
}
for ($version = $backend->get_latest_version($page);
$version;
$version = $backend->get_previous_version($page, $version))
{
$vdata = $backend->get_versiondata($page, $version, true);
$this->_fixupData($vdata);
$table->pushContent(HTML::tr(HTML::td(array('colspan' => 2))));
$table->pushContent($this->_showhash("get_versiondata('$page',$version)",
$vdata));
}
$html->pushContent($table);
return $html;
}
/**
* Really should have a _fixupPagedata and _fixupVersiondata, but this works.
*/
function _fixupData(&$data) {
global $request;
$user = $request->getUser();
foreach ($data as $key => $val) {
if (is_integer($key)) {
;
} elseif ($key == 'passwd' and !$user->isAdmin()) {
$data[$key] = $val ? _("<not displayed>") : _("<empty>");
} elseif ($key and $key == '_cached_html') {
$val = TransformedText::unpack($val);
ob_start();
print_r($val);
$data[$key] = HTML::pre(ob_get_contents());
ob_end_clean();
}
elseif (is_bool($val)) {
$data[$key] = $val ? "<true>" : "<false>";
}
elseif (is_string($val) && (substr($val, 0, 2) == 'a:')) {
// how to indent this table?
$val = unserialize($val);
$this->_fixupData($val);
$data[$key] = HTML::table(array('border' => 1,
'cellpadding' => 2,
'cellspacing' => 0),
$this->_showhash(false, $val));
}
elseif (is_array($val)) {
// how to indent this table?
$this->_fixupData($val);
$data[$key] = HTML::table(array('border' => 1,
'cellpadding' => 2,
'cellspacing' => 0),
$this->_showhash(false, $val));
}
elseif ($key and $key == '%content') {
if ($val === true)
$val = '<true>';
elseif (strlen($val) > 40)
$val = substr($val,0,40) . " ...";
$data[$key] = $val;
}
}
unset($data['%pagedata']); // problem in backend
}
function _showhash ($heading, $hash, $pagename = '') {
$rows = array();
if ($heading)
$rows[] = HTML::tr(array('bgcolor' => '#ffcccc',
'style' => 'color:#000000'),
HTML::td(array('colspan' => 2,
'style' => 'color:#000000'),
$heading));
ksort($hash);
foreach ($hash as $key => $val) {
$rows[] = HTML::tr(HTML::td(array('align' => 'right',
'bgcolor' => '#cccccc',
'style' => 'color:#000000'),
HTML(HTML::raw(' '), $key,
HTML::raw(' '))),
HTML::td(array('bgcolor' => '#ffffff',
'style' => 'color:#000000'),
$val ? $val : HTML::raw(' '))
);
}
return $rows;
}
};
// $Log: _BackendInfo.php,v $
// Revision 1.24 2005/01/29 19:47:43 rurban
// support bool
//
// Revision 1.23 2005/01/21 14:13:23 rurban
// stabilize on numeric keys (strange php problem)
//
// Revision 1.22 2004/02/17 12:11:36 rurban
// added missing 4th basepage arg at plugin->run() to almost all plugins. This caused no harm so far, because it was silently dropped on normal usage. However on plugin internal ->run invocations it failed. (InterWikiSearch, IncludeSiteMap, ...)
//
// Revision 1.21 2003/02/21 04:22:28 dairiki
// Make this work for array-valued data. Make display of cached markup
// readable. Some code cleanups. (This still needs more work.)
//
// Revision 1.20 2003/01/18 21:19:24 carstenklapp
// Code cleanup:
// Reformatting; added copyleft, getVersion, getDescription
//
// (c-file-style: "gnu")
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>
|