Extension:NativeSvgHandler

From mediawiki.org
MediaWiki extensions manual
NativeSvgHandler
Release status: stable
Implementation Media
Description Serves SVG images directly to clients
Author(s) alistair3149talk
Latest version 1.4.0
Compatibility policy Master maintains backward compatibility.
MediaWiki 1.35+
Database changes No
Composer mediawiki/native-svg-handler
License GNU General Public License 3.0
Download
Quarterly downloads 206 (Ranked 35th)
Translate the NativeSvgHandler extension if it is available at translatewiki.net

The NativeSvgHandler extension allows SVG files to be served directly to clients for client-side rendering.

Installation[edit]

  • Download and move the extracted NativeSvgHandler folder to your extensions/ directory.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/NativeSvgHandler
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'NativeSvgHandler' );
    
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Security[edit]

NativeSvgHandler serves SVG directly to clients through image tags, which is not vulnerable to XSS attack. XSS attacks are only relevant when it is accessed directly through original file on the file page, which is neither in the scope nor in control of this extension.

See also[edit]