From 4ffc694ae35f4ee14c99e62b1f1292e3d505c253 Mon Sep 17 00:00:00 2001 From: vargenau Date: Wed, 17 Apr 2013 10:06:40 +0000 Subject: [PATCH] No underscore for private function git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@8763 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- lib/plugin/AppendText.php | 12 ++++----- lib/plugin/ExternalSearch.php | 6 ++--- lib/plugin/FoafViewer.php | 4 +-- lib/plugin/FuzzyPages.php | 8 +++--- lib/plugin/GraphViz.php | 6 ++--- lib/plugin/HtmlConverter.php | 16 ++++++------ lib/plugin/ModeratedPage.php | 6 ++--- lib/plugin/OldStyleTable.php | 8 +++--- lib/plugin/SystemInfo.php | 8 +++--- lib/plugin/WantedPagesOld.php | 14 +++++------ lib/plugin/_AuthInfo.php | 46 +++++++++++++++++------------------ lib/plugin/_Retransform.php | 13 ++++------ 12 files changed, 72 insertions(+), 75 deletions(-) diff --git a/lib/plugin/AppendText.php b/lib/plugin/AppendText.php index aa38b460d..d0f4b752d 100644 --- a/lib/plugin/AppendText.php +++ b/lib/plugin/AppendText.php @@ -54,7 +54,7 @@ class WikiPlugin_AppendText ); } - private function _fallback($addtext, $oldtext, $notfound, &$message) + private function fallback($addtext, $oldtext, $notfound, &$message) { $message->pushContent(sprintf(_("%s not found"), $notfound) . ". " . _("Appending at the end.") . "\n"); @@ -66,19 +66,19 @@ class WikiPlugin_AppendText $args = $this->getArgs($argstr, $request); if (!$args['pages'] or !$request->isPost()) { - return $this->_work($args['page'], $args, $dbi, $request); + return $this->work($args['page'], $args, $dbi, $request); } else { $html = HTML(); if ($args['page'] != $basepage) $html->pushContent("pages argument overrides page argument. ignored.", HTML::br()); foreach ($args['pages'] as $pagename) { - $html->pushContent($this->_work($pagename, $args, $dbi, $request)); + $html->pushContent($this->work($pagename, $args, $dbi, $request)); } return $html; } } - private function _work($pagename, $args, $dbi, &$request) + private function work($pagename, $args, $dbi, &$request) { if (empty($args['s'])) { if ($request->isPost()) { @@ -109,7 +109,7 @@ class WikiPlugin_AppendText ? preg_replace("/(\n${before})/", "\n" . preg_quote($text, "/") . "\\1", $oldtext) - : $this->_fallback($text, $oldtext, $args['before'], $message); + : $this->fallback($text, $oldtext, $args['before'], $message); } elseif (!empty($args['after'])) { // Insert after $after = preg_quote($args['after'], "/"); @@ -117,7 +117,7 @@ class WikiPlugin_AppendText ? preg_replace("/(\n${after})/", "\\1\n" . preg_quote($text, "/"), $oldtext) - : $this->_fallback($text, $oldtext, $args['after'], $message); + : $this->fallback($text, $oldtext, $args['after'], $message); } else { // Append at the end $newtext = $oldtext . diff --git a/lib/plugin/ExternalSearch.php b/lib/plugin/ExternalSearch.php index 75a204a57..86abfa4bc 100644 --- a/lib/plugin/ExternalSearch.php +++ b/lib/plugin/ExternalSearch.php @@ -47,7 +47,7 @@ class WikiPlugin_ExternalSearch //fixme: better description } - private function _getInterWikiUrl(&$request) + private function getInterWikiUrl(&$request) { $intermap = getInterwikiMap(); $map = $intermap->_map; @@ -88,7 +88,7 @@ class WikiPlugin_ExternalSearch if (in_array('url', array_keys($posted))) { $s = $posted['s']; $this->_url = $posted['url']; - $this->_getInterWikiUrl($request); + $this->getInterWikiUrl($request); if (strstr($this->_url, '%s')) { $this->_url = sprintf($this->_url, $s); } else @@ -104,7 +104,7 @@ class WikiPlugin_ExternalSearch if ($formsize < 1) $formsize = 30; $this->_url = $url; - $this->_getInterWikiUrl($request); + $this->getInterWikiUrl($request); $form = HTML::form(array('action' => $request->getPostURL(), 'method' => 'post', //'class' => 'class', //fixme diff --git a/lib/plugin/FoafViewer.php b/lib/plugin/FoafViewer.php index 1e2417e27..bff5d75e5 100644 --- a/lib/plugin/FoafViewer.php +++ b/lib/plugin/FoafViewer.php @@ -57,7 +57,7 @@ class WikiPlugin_FoafViewer { // The handler is handled okay. The only problem is that it still // throws a fatal. - private function _error_handler($error) + private function error_handler($error) { if (strstr($error->errstr, "Failed opening required 'XML/FOAF/Parser.php'")) return true; @@ -90,7 +90,7 @@ class WikiPlugin_FoafViewer /* ignore fatal on loading */ /* global $ErrorManager; - $ErrorManager->pushErrorHandler(new WikiMethodCb($this,'_error_handler')); + $ErrorManager->pushErrorHandler(new WikiMethodCb($this,'error_handler')); */ // Require the XML_FOAF_Parser class. This is a PEAR library not included with phpwiki. // see doc/README.foaf diff --git a/lib/plugin/FuzzyPages.php b/lib/plugin/FuzzyPages.php index 55bf58e02..d46101753 100644 --- a/lib/plugin/FuzzyPages.php +++ b/lib/plugin/FuzzyPages.php @@ -111,7 +111,7 @@ class WikiPlugin_FuzzyPages $row = HTML::tr(HTML::th(_("Name")), HTML::th(_("Score"))); if (defined('DEBUG') && DEBUG && $this->debug) { - $this->_pushDebugHeadingTDinto($row); + $this->pushDebugHeadingTDinto($row); } $table->pushContent(HTML::thead($row)); @@ -132,7 +132,7 @@ class WikiPlugin_FuzzyPages round($score))); if (defined('DEBUG') && DEBUG && $this->debug) { - $this->_pushDebugTDinto($row, $found_pagename); + $this->pushDebugTDinto($row, $found_pagename); } $tbody->pushContent($row); @@ -173,14 +173,14 @@ class WikiPlugin_FuzzyPages return $this->formatTable($this->_list, $dbi); } - private function _pushDebugHeadingTDinto(&$row) + private function pushDebugHeadingTDinto(&$row) { $row->pushContent(HTML::td(_("Spelling Score")), HTML::td(_("Sound Score")), HTML::td('Metaphones')); } - private function _pushDebugTDinto(&$row, $pagename) + private function pushDebugTDinto(&$row, $pagename) { // This actually calculates everything a second time for each pagename // so the individual scores can be displayed separately for debugging. diff --git a/lib/plugin/GraphViz.php b/lib/plugin/GraphViz.php index 92ed7ad80..dbdf0f377 100644 --- a/lib/plugin/GraphViz.php +++ b/lib/plugin/GraphViz.php @@ -73,7 +73,7 @@ class WikiPlugin_GraphViz extends WikiPluginCached { - private function _mapTypes() + private function mapTypes() { return array("imap", "cmapx", "ismap", "cmap"); } @@ -89,7 +89,7 @@ class WikiPlugin_GraphViz if ($type == $this->_args['imgtype']) return PLUGIN_CACHED_IMG_INLINE; $device = strtolower($this->_args['imgtype']); - if (in_array($device, $this->_mapTypes())) + if (in_array($device, $this->mapTypes())) return PLUGIN_CACHED_MAP; if (in_array($device, array('svg', 'swf', 'svgz', 'eps', 'ps'))) { switch ($this->_args['imgtype']) { @@ -185,7 +185,7 @@ class WikiPlugin_GraphViz //$other_imgtypes = $GLOBALS['PLUGIN_CACHED_IMGTYPES']; //unset ($other_imgtypes[$def['imgtype']]); $imgtypes = $GLOBALS['PLUGIN_CACHED_IMGTYPES']; - $imgtypes = array_merge($imgtypes, array("svg", "svgz", "ps"), $this->_mapTypes()); + $imgtypes = array_merge($imgtypes, array("svg", "svgz", "ps"), $this->mapTypes()); $helparr = array( '< ' = "' . $def['imgtype'] . "(default)|" . join('|', $imgtypes) . '"', diff --git a/lib/plugin/HtmlConverter.php b/lib/plugin/HtmlConverter.php index 4f1f53e4f..910f1db3f 100644 --- a/lib/plugin/HtmlConverter.php +++ b/lib/plugin/HtmlConverter.php @@ -83,7 +83,7 @@ class WikiPlugin_HtmlConverter extends WikiPlugin } else { $message->pushContent(_("Processed $userfile_name"), HTML::br(), HTML::br()); $message->pushContent(_("Copy the output below and paste it into your Wiki page."), HTML::br()); - $message->pushContent($this->_process($userfile_tmpname)); + $message->pushContent($this->process($userfile_tmpname)); } } else { $message->pushContent(HTML::br(), HTML::br()); @@ -95,7 +95,7 @@ class WikiPlugin_HtmlConverter extends WikiPlugin return $result; } - private function _processA(&$file) + private function processA(&$file) { $file = eregi_replace( @@ -104,7 +104,7 @@ class WikiPlugin_HtmlConverter extends WikiPlugin $file = eregi_replace("{{([-/a-zA-Z0-9._~#@%$?&=:\200-\377\(\)[:space:]]+)}}([^<]+)", "[ \\2 | \\1 ]", $file); } - private function _processIMG(&$file) + private function processIMG(&$file) { $img_regexp = "_]*>_"; @@ -112,7 +112,7 @@ class WikiPlugin_HtmlConverter extends WikiPlugin $file = preg_replace($img_regexp, "\n\n[Upload:\\1]", $file); } - private function _processUL(&$file) + private function processUL(&$file) { // put any
  • -Tag in a new line to indent correctly and strip trailing white space (including new-lines) @@ -132,15 +132,15 @@ class WikiPlugin_HtmlConverter extends WikiPlugin } } - private function _process($file_name) + private function process($file_name) { $result = HTML(); $file = file_get_contents($file_name); $file = html_entity_decode($file); - $this->_processA($file); - $this->_processIMG($file); - $this->_processUL($file); + $this->processA($file); + $this->processIMG($file); + $this->processUL($file); $file = str_replace("\r\n", "\n", $file); diff --git a/lib/plugin/ModeratedPage.php b/lib/plugin/ModeratedPage.php index 1c1ba70e6..4fab64e8a 100644 --- a/lib/plugin/ModeratedPage.php +++ b/lib/plugin/ModeratedPage.php @@ -321,7 +321,7 @@ class WikiPlugin_ModeratedPage // timestamp,user(obj)+userid // handle $moderated['data'][$id]['args']['action'] } else { - return $this->_approval_form($request, $args, $moderation, 'approve'); + return $this->approval_form($request, $args, $moderation, 'approve'); } } @@ -335,7 +335,7 @@ class WikiPlugin_ModeratedPage // clean up and notify the requestor. Mabye: store and revert to have a diff later on? $this->cleanup_and_notify($request, $args, $moderation); } else { - return $this->_approval_form($request, $args, $moderation, 'reject'); + return $this->approval_form($request, $args, $moderation, 'reject'); } } @@ -371,7 +371,7 @@ class WikiPlugin_ModeratedPage } } - private function _approval_form(&$request, $args, $moderation, $pass = 'approve') + private function approval_form(&$request, $args, $moderation, $pass = 'approve') { $header = HTML::h3(_("Please approve or reject this request:")); diff --git a/lib/plugin/OldStyleTable.php b/lib/plugin/OldStyleTable.php index 5d5eed321..2f785b321 100644 --- a/lib/plugin/OldStyleTable.php +++ b/lib/plugin/OldStyleTable.php @@ -111,17 +111,17 @@ class WikiPlugin_OldStyleTable // bogus error if argument trigger_error(sprintf(_("Line %s does not begin with a '|'."), $line), E_USER_WARNING); } else { - $table->pushContent($this->_parse_row($line, $basepage)); + $table->pushContent($this->parse_row($line, $basepage)); } } return $table; } - private function _parse_row($line, $basepage) + private function parse_row($line, $basepage) { - $brkt_link = "\\[ .*? [^]\s] .*? \\]"; - $cell_content = "(?: [^[] | " . ESCAPE_CHAR . "\\[ | $brkt_link )*?"; + $bracket_link = "\\[ .*? [^]\s] .*? \\]"; + $cell_content = "(?: [^[] | " . ESCAPE_CHAR . "\\[ | $bracket_link )*?"; preg_match_all("/(\\|+) (v*) ([<>^]?) \s* ($cell_content) \s* (?=\\||\$)/x", $line, $matches, PREG_SET_ORDER); diff --git a/lib/plugin/SystemInfo.php b/lib/plugin/SystemInfo.php index 3ea663182..5b93dd476 100644 --- a/lib/plugin/SystemInfo.php +++ b/lib/plugin/SystemInfo.php @@ -211,7 +211,7 @@ class WikiPlugin_SystemInfo } // numeric array - private function _stats($hits, $treshold = 10.0) + private function get_stats($hits, $treshold = 10.0) { sort($hits); reset($hits); @@ -268,7 +268,7 @@ class WikiPlugin_SystemInfo } } $treshold = 10.0; - $stats = $this->_stats($hits, $treshold); + $stats = $this->get_stats($hits, $treshold); $s = sprintf(_("total hits: %d"), $stats['sum']); $s .= ", " . sprintf(_("max: %d"), $stats['max']); @@ -353,8 +353,8 @@ class WikiPlugin_SystemInfo $stats['sum']['major'], $stats['sum']['major_perc'], $stats['sum']['minor'], $stats['sum']['minor_perc'], $stats['sum']['all']); - $stats['perpage'] = $this->_stats($stats['perpage']); - $stats['perpage_major'] = $this->_stats($stats['perpage_major']); + $stats['perpage'] = $this->get_stats($stats['perpage']); + $stats['perpage_major'] = $this->get_stats($stats['perpage_major']); $stats['perpage']['major_perc'] = $stats['perpage_major']['sum'] * 100.0 / $stats['perpage']['sum']; $stats['perpage']['minor_perc'] = 100 - $stats['perpage']['major_perc']; $stats['perpage_minor']['sum'] = $stats['perpage']['sum'] - $stats['perpage_major']['sum']; diff --git a/lib/plugin/WantedPagesOld.php b/lib/plugin/WantedPagesOld.php index e5e2e5516..c54fc8b74 100644 --- a/lib/plugin/WantedPagesOld.php +++ b/lib/plugin/WantedPagesOld.php @@ -76,12 +76,12 @@ class WikiPlugin_WantedPagesOld $name = $page_handle->getName(); if ($name == __("InterWikiMap")) continue; if (!in_array($name, $exclude)) - $this->_iterateLinks($page_handle, $dbi); + $this->iterateLinks($page_handle, $dbi); } } elseif ($page && $pageisWikiPage = $dbi->isWikiPage($page)) { //only get WantedPages links for one page $page_handle = $dbi->getPage($page); - $this->_iterateLinks($page_handle, $dbi); + $this->iterateLinks($page_handle, $dbi); if (!$request->getArg('count')) { $args['count'] = count($this->pagelist); } else { @@ -111,7 +111,7 @@ class WikiPlugin_WantedPagesOld $caption = fmt("Wanted Pages for %s (%d total):", $pagelink, $c); } - return $this->_generateList($caption); + return $this->generateList($caption); } else { $spacer = new RawXml("    "); @@ -146,13 +146,13 @@ class WikiPlugin_WantedPagesOld $c); $this->_columns = array(_("Count"), _("Page Name")); if ($c > 0) - return $this->_generateTable($caption); + return $this->generateTable($caption); else return HTML(HTML::p($caption), HTML::p($this->_messageIfEmpty)); } } - private function _generateTable($caption) + private function generateTable($caption) { if (count($this->pagelist) > 0) { @@ -187,7 +187,7 @@ class WikiPlugin_WantedPagesOld return $table; } - private function _generateList($caption) + private function generateList($caption) { $list = HTML(); $c = count($this->pagelist); @@ -202,7 +202,7 @@ class WikiPlugin_WantedPagesOld return $list; } - private function _iterateLinks($page_handle, $dbi) + private function iterateLinks($page_handle, $dbi) { $links_iter = $page_handle->getLinks($reversed = false); while ($link_handle = $links_iter->next()) { diff --git a/lib/plugin/_AuthInfo.php b/lib/plugin/_AuthInfo.php index 5a3ff27d3..d160fc92d 100644 --- a/lib/plugin/_AuthInfo.php +++ b/lib/plugin/_AuthInfo.php @@ -65,36 +65,36 @@ class WikiPlugin__AuthInfo $table = HTML::table(array('border' => 1, 'cellpadding' => 2, 'cellspacing' => 0)); - $table->pushContent($this->_showhash("AUTH DEFINES", - $this->_buildConstHash( + $table->pushContent($this->show_hash("AUTH DEFINES", + $this->buildConstHash( array("ENABLE_USER_NEW", "ALLOW_ANON_USER", "ALLOW_ANON_EDIT", "ALLOW_BOGO_LOGIN", "REQUIRE_SIGNIN_BEFORE_EDIT", "ALLOW_USER_PASSWORDS", "PASSWORD_LENGTH_MINIMUM", "USE_DB_SESSION")))); if ((defined('ALLOW_LDAP_LOGIN') && ALLOW_LDAP_LOGIN) or in_array("LDAP", $GLOBALS['USER_AUTH_ORDER'])) - $table->pushContent($this->_showhash("LDAP DEFINES", - $this->_buildConstHash(array("LDAP_AUTH_HOST", "LDAP_BASE_DN")))); + $table->pushContent($this->show_hash("LDAP DEFINES", + $this->buildConstHash(array("LDAP_AUTH_HOST", "LDAP_BASE_DN")))); if ((defined('ALLOW_IMAP_LOGIN') && ALLOW_IMAP_LOGIN) or in_array("IMAP", $GLOBALS['USER_AUTH_ORDER'])) - $table->pushContent($this->_showhash("IMAP DEFINES", array("IMAP_AUTH_HOST" => IMAP_AUTH_HOST))); + $table->pushContent($this->show_hash("IMAP DEFINES", array("IMAP_AUTH_HOST" => IMAP_AUTH_HOST))); if (defined('AUTH_USER_FILE') or in_array("File", $GLOBALS['USER_AUTH_ORDER'])) - $table->pushContent($this->_showhash("AUTH_USER_FILE", - $this->_buildConstHash(array("AUTH_USER_FILE", + $table->pushContent($this->show_hash("AUTH_USER_FILE", + $this->buildConstHash(array("AUTH_USER_FILE", "AUTH_USER_FILE_STORABLE")))); if (defined('GROUP_METHOD')) - $table->pushContent($this->_showhash("GROUP_METHOD", - $this->_buildConstHash(array("GROUP_METHOD", "AUTH_GROUP_FILE", "GROUP_LDAP_QUERY")))); - $table->pushContent($this->_showhash("\$USER_AUTH_ORDER[]", $GLOBALS['USER_AUTH_ORDER'])); - $table->pushContent($this->_showhash("USER_AUTH_POLICY", array("USER_AUTH_POLICY" => USER_AUTH_POLICY))); + $table->pushContent($this->show_hash("GROUP_METHOD", + $this->buildConstHash(array("GROUP_METHOD", "AUTH_GROUP_FILE", "GROUP_LDAP_QUERY")))); + $table->pushContent($this->show_hash("\$USER_AUTH_ORDER[]", $GLOBALS['USER_AUTH_ORDER'])); + $table->pushContent($this->show_hash("USER_AUTH_POLICY", array("USER_AUTH_POLICY" => USER_AUTH_POLICY))); $DBParams = $GLOBALS['DBParams']; $DBParams['dsn'] = class_exists('WikiDB_SQL') ? WikiDB_SQL::view_dsn($DBParams['dsn']) : ''; - $table->pushContent($this->_showhash("\$DBParams[]", $DBParams)); + $table->pushContent($this->show_hash("\$DBParams[]", $DBParams)); $DBAuthParams = $GLOBALS['DBAuthParams']; if (isset($DBAuthParams['auth_dsn']) and class_exists('WikiDB_SQL')) $DBAuthParams['auth_dsn'] = WikiDB_SQL::view_dsn($DBAuthParams['auth_dsn']); else $DBAuthParams['auth_dsn'] = ''; unset($DBAuthParams['dummy']); - $table->pushContent($this->_showhash("\$DBAuthParams[]", $DBAuthParams)); + $table->pushContent($this->show_hash("\$DBAuthParams[]", $DBAuthParams)); $html->pushContent($table); $html->pushContent(HTML(HTML::h3(fmt("Personal Auth Settings for “%s”", $userid)))); if (!$user) { @@ -110,33 +110,33 @@ class WikiPlugin__AuthInfo $userdata['_file']->users[$u] = ""; } } - $table->pushContent($this->_showhash("User: Object of " . get_class($user), $userdata)); + $table->pushContent($this->show_hash("User: Object of " . get_class($user), $userdata)); if (ENABLE_USER_NEW) { $group = &$request->getGroup(); $groups = $group->getAllGroupsIn(); $groupdata = obj2hash($group, array('_dbi', '_request', 'password', 'passwd')); unset($groupdata['request']); - $table->pushContent($this->_showhash("Group: Object of " . get_class($group), $groupdata)); + $table->pushContent($this->show_hash("Group: Object of " . get_class($group), $groupdata)); $groups = $group->getAllGroupsIn(); $groupdata = array('getAllGroupsIn' => $groups); foreach ($groups as $g) { $groupdata["getMembersOf($g)"] = $group->getMembersOf($g); $groupdata["isMember($g)"] = $group->isMember($g); } - $table->pushContent($this->_showhash("Group Methods: ", $groupdata)); + $table->pushContent($this->show_hash("Group Methods: ", $groupdata)); } $html->pushContent($table); } return $html; } - private function _showhash($heading, $hash, $depth = 0) + private function show_hash($heading, $hash, $depth = 0) { static $seen = array(); - static $maxdepth = 0; + static $max_depth = 0; $rows = array(); - $maxdepth++; - if ($maxdepth > 35) return $heading; + $max_depth++; + if ($max_depth > 35) return $heading; if ($heading) $rows[] = HTML::tr(array('bgcolor' => '#ffcccc', @@ -157,7 +157,7 @@ class WikiPlugin__AuthInfo $val = HTML::table(array('border' => 1, 'cellpadding' => 2, 'cellspacing' => 0), - $this->_showhash($heading, obj2hash($val), $depth + 1)); + $this->show_hash($heading, obj2hash($val), $depth + 1)); } else { $val = $heading; } @@ -169,7 +169,7 @@ class WikiPlugin__AuthInfo $val = HTML::table(array('border' => 1, 'cellpadding' => 2, 'cellspacing' => 0), - $this->_showhash($heading, $val, $depth + 1)); + $this->show_hash($heading, $val, $depth + 1)); } else { $val = $heading; } @@ -189,7 +189,7 @@ class WikiPlugin__AuthInfo return $rows; } - private function _buildConstHash($constants) + private function buildConstHash($constants) { $hash = array(); foreach ($constants as $c) { diff --git a/lib/plugin/_Retransform.php b/lib/plugin/_Retransform.php index d59d07935..aa45886c8 100644 --- a/lib/plugin/_Retransform.php +++ b/lib/plugin/_Retransform.php @@ -38,8 +38,7 @@ class WikiPlugin__Retransform function getDefaultArguments() { - return array('page' => '[pagename]', - ); + return array('page' => '[pagename]'); } function run($dbi, $argstr, &$request, $basepage) @@ -49,8 +48,7 @@ class WikiPlugin__Retransform if (empty($page)) return ''; - $html = HTML(HTML::h3(fmt("Retransform page “%s”", - $page))); + $html = HTML(HTML::h3(fmt("Retransform page “%s”", $page))); // bypass WikiDB and cache, go directly through the backend. $backend = &$dbi->_backend; @@ -61,16 +59,16 @@ class WikiPlugin__Retransform include_once 'lib/PageType.php'; $formatted = new TransformedText($dbi->getPage($page), $vdata['%content'], $vdata); $content =& $formatted->_content; - $html->pushContent($this->_DebugPrintArray($content)); + $html->pushContent($this->DebugPrintArray($content)); $links = $formatted->getWikiPageLinks(); if (count($links) > 0) { $html->pushContent(HTML::h3("Links")); - $html->pushContent($this->_DebugPrintArray($links)); + $html->pushContent($this->DebugPrintArray($links)); } return $html; } - private function _DebugPrintArray(&$array) + private function DebugPrintArray(&$array) { $html = HTML(); foreach ($array as $line) { @@ -82,7 +80,6 @@ class WikiPlugin__Retransform } return $html; } - } // Local Variables: -- 2.42.0