Extension:AddHTML

From MediaWiki.org
Jump to: navigation, search
MediaWiki extensions manual - list
Crystal Clear action run.png
AddHTML

Release status: Unmaintained

Implementation Tag
Description Used to securely insert HTML section(s) on a wiki page.
Author(s) Jean-Lou Dupont (Jlduponttalk)
Last version 1.1
MediaWiki tested on 1.8.2, 1.9.3
License No license specified
Download addHTML.php and ExtensionClass.php
Check usage and version matrix; stats

Contents

Better Option[edit]

See SecureHTML extension for a better solution.

Features[edit]

  • Secure: Only people who can edit 'protected' pages (sysops) can use the tag
  • Inserts HTML code section either through:
    • inline code without the tagged section e.g. <addhtml> code here </addhtml>
    • or through PHP code
  • Parser Cache friendly

Limitation[edit]

The tag can only be used on pages which are 'protected', which means you might be forced to protect a page in order to use some HTML, which otherwise you would permit open editing on.

Example1[edit]

<addhtml id=xyz />

and use an extension such as <runphp> to populate the section # 'xyz' with HTML code.

Example2[edit]

<addhtml><html>
<head>
<script type="text/javascript">
function disp_prompt()
  {
  var name=prompt("Please enter your name","t3h h4x0r")
  if (name!=null && name!="")
    {
    document.write("Hello " + name + "! How are you today?")
    }
  }
</script>
</head>
<body>
<input type="button" onclick="disp_prompt()" value="CLICK!" />

<table border=0><tr><td>Anand</td><td>Sharma</td></tr></table>

</body>
</html></addhtml>

Security[edit]

Pages where 'addhtml' is used must be protected or else an 'unauthorized use of addhtml' message will be displayed. If you have several 'sysop' users, you must trust them all not to abuse this feature.


Changes to LocalSettings.php[edit]

require_once("$IP/extensions/ExtensionClass.php");
require_once("$IP/extensions/addHTML.php");
Language: English  • français • русский