Release status: beta |
|
|---|---|
| Implementation | Tag, User rights |
| Description | Allows only sysops and certain user groups to edit pages containing the <html> tag. |
| Author(s) | Antoine Mercier-Linteau (Tinsstalk) |
| Latest version | 0.3b (2021-05-22) |
| Compatibility policy | Master maintains backward compatibility. |
| MediaWiki | 1.31+ |
| License | GNU General Public License 2.0 or later |
| Download | GitHub: Note: README |
|
Added rights
edit-html
|
|
|
Hooks used
|
|
The SaferHTMLTag extension prevents edition of pages that contain the <html> tag by unauthorized users and groups.
Installation
- Download, extract and place the file(s) in a directory called
SaferHTMLTagin yourextensions/folder. - Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'SaferHTMLTag' );
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
To users running MediaWiki 1.24 or earlier:
The instructions above describe the new way of installing this extension using wfLoadExtension().
If you need to install this extension on these earlier versions (MediaWiki 1.24 and earlier), instead of wfLoadExtension( 'SaferHTMLTag' );, you need to use:
require_once "$IP/extensions/SaferHTMLTag/SaferHTMLTag.php";
Enabling for a group
To enable for a group (eg: sysops), add the following to you LocalSettings.php file:
$wgGroupPermissions['sysop']['edit-html'] = true; // Enable in-wiki HTML editing for sysops.
See also
- Extension:Secure_HTML - Lets you include arbitrary HTML in an authorized and secure way.
- Extension:NamespaceHTML - Allows raw HTML in specified namespaces
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.