]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/_Retransform.php
Add private keyword for functions
[SourceForge/phpwiki.git] / lib / plugin / _Retransform.php
1 <?php
2
3 /**
4  * Copyright 2007 $ThePhpWikiProgrammingTeam
5  *
6  * This file is part of PhpWiki.
7  *
8  * PhpWiki is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * PhpWiki is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 /**
24  * Only useful for link and parser debugging purposes.
25  */
26 class WikiPlugin__Retransform
27     extends WikiPlugin
28 {
29     function getName()
30     {
31         return _("Retransform CachedMarkup");
32     }
33
34     function getDescription()
35     {
36         return sprintf(_("Show a markup retransformation of page %s."), '[pagename]');
37     }
38
39     function getDefaultArguments()
40     {
41         return array('page' => '[pagename]',
42         );
43     }
44
45     function run($dbi, $argstr, &$request, $basepage)
46     {
47         $args = $this->getArgs($argstr, $request);
48         extract($args);
49         if (empty($page))
50             return '';
51
52         $html = HTML(HTML::h3(fmt("Retransform page ā€œ%sā€",
53             $page)));
54
55         // bypass WikiDB and cache, go directly through the backend.
56         $backend = &$dbi->_backend;
57         //$pagedata = $backend->get_pagedata($page);
58         $version = $backend->get_latest_version($page);
59         $vdata = $backend->get_versiondata($page, $version, true);
60
61         include_once 'lib/PageType.php';
62         $formatted = new TransformedText($dbi->getPage($page), $vdata['%content'], $vdata);
63         $content =& $formatted->_content;
64         $html->pushContent($this->_DebugPrintArray($content));
65         $links = $formatted->getWikiPageLinks();
66         if (count($links) > 0) {
67             $html->pushContent(HTML::h3("Links"));
68             $html->pushContent($this->_DebugPrintArray($links));
69         }
70         return $html;
71     }
72
73     private function _DebugPrintArray(&$array)
74     {
75         $html = HTML();
76         foreach ($array as $line) {
77             ob_start();
78             print_r($line);
79             $s = HTML::pre(ob_get_contents());
80             ob_end_clean();
81             $html->pushContent($s);
82         }
83         return $html;
84     }
85
86 }
87
88 // Local Variables:
89 // mode: php
90 // tab-width: 8
91 // c-basic-offset: 4
92 // c-hanging-comment-ender-p: nil
93 // indent-tabs-mode: nil
94 // End: