]> git.proxmox.com Git - pve-docs.git/blobdiff - debian/tree/pve-docs-mediawiki/pvedocs-include.php
mediawiki: make docs include plugin tags robuster for new MW version
[pve-docs.git] / debian / tree / pve-docs-mediawiki / pvedocs-include.php
index 29f013fa8d65acc1f6f03e8eeb14da7cf427a1f4..f8d62d42d9ea0d5f0d4ecc4095d93e3c3ac2bf8f 100644 (file)
@@ -4,23 +4,45 @@
 
 $wgExtensionCredits['parserhook'][] = array(
     'name' => "PVE Documentation Pages",
-    'description' => "Display PVE Documentation Pages", 
+    'description' => "Display PVE Documentation Pages",
     'author' => "Dietmar Maurer",
 );
+
 # Define a setup function
 $wgHooks['ParserFirstCallInit'][] = 'efPvedocsParserFunction_Setup';
+$wgHooks['ParserAfterTidy'][] = 'efPvedocsPostProcessFunction';
 
 # Add a hook to initialise the magic word
 $wgHooks['LanguageGetMagic'][] = 'efPvedocsParserFunction_Magic';
+
 function efPvedocsParserFunction_Setup(&$parser) {
     # Set a function hook associating the "pvedocs" magic
     # word with our function
-    $parser->setFunctionHook( 'pvedocs', 'efPvedocsParserFunction_Render' );
+    $parser->setFunctionHook('pvedocs', 'efPvedocsParserFunction_Render');
+
+    $parser->setHook('pvehide', 'renderTagPveHideContent');
+
     return true;
 }
+
+# similar code as in <htmlet> tag...
+function efPvedocsPostProcessFunction($parser, &$text) {
+       $text = preg_replace_callback(
+               '/-_- @PVEDOCS_BASE64@ ([0-9a-zA-Z\\+\\/]+=*) @PVEDOCS_BASE64@ -_-/sm',
+               function ($m) { return base64_decode("$m[1]"); },
+               $text);
+
+       return true;
+}
+
+// Render <pvehide>
+function renderTagPveHideContent($input, array $args, Parser $parser,
+PPFrame $frame ) {
+    // simply return nothing
+    return '';
+}
+
+
 function efPvedocsParserFunction_Magic(&$magicWords, $langCode) {
     # Add the magic word
     # The first array element is whether to be case sensitive,
@@ -32,11 +54,6 @@ function efPvedocsParserFunction_Magic(&$magicWords, $langCode) {
     return true;
 }
 
-function encodeURI($uri) {
-    return preg_replace_callback("{[^0-9a-z_.!~*'();,/?:@&=+$#-]}i",
-        function ($m) { return sprintf('%%%02X', ord($m[0])); }, $uri);
-}
-
 function efPvedocsParserFunction_Render($parser, $param1 = '', $param2 = '') {
 
        $parser->disableCache();
@@ -45,25 +62,14 @@ function efPvedocsParserFunction_Render($parser, $param1 = '', $param2 = '') {
     # files from within "/usr/share/pve-docs/"
        if (!preg_match("/[a-z0-9.-]+\.html/i", $param1)) {
         die("no such manual page");
-       }   
+       }
 
        $content = file_get_contents("/usr/share/pve-docs/$param1");
 
-    $output = "<noscript><div><p>" .
-        "This page requires java-script. To view " .
-        "this page without java-script goto " .
-        "<a href='/pve-docs/$param1'>$param1</a>" .
-        "</div></noscript>\n";
-
-       # hack to inject html without modifications my mediawiki parser
-       $encHtml = encodeURI($content);
-       $output .= "<div id='pve_embed_data'></div>";
-       $output .= "<script>" .
-        "var data = decodeURI(\"".$encHtml."\");" .
-        "document.getElementById('pve_embed_data').innerHTML = data;" .
-        "</script>";
-       
-       return array($output, 'noparse' => true, 'isHTML' => true);
+    # do not use '<' or '>', it seems newer mediawiki converts it to '&lt;' and '&gt;'
+    # and then the regex for the decode in efPvedocsPostProcessFunction does not matches..
+    $output = '-_- @PVEDOCS_BASE64@ '.base64_encode($content).' @PVEDOCS_BASE64@ -_-';
+    return array($output, 'noparse' => true, 'isHTML' => true);
 }
 
 ?>