Manual:$wgAllowTitlesInSVG/zh
此功能已在版本1.35.0中完全移除。 |
SVG: $wgAllowTitlesInSVG | |
---|---|
Allow <title> tag in SVG files. |
|
引进版本: | 1.7.0 (r14084) |
弃用版本: | 1.34.0 (Gerrit change 487527; git #2e833876) |
移除版本: | 1.35.0 (Gerrit change 574920; git #I7c54d28) |
允许的值: | (布尔值) |
默认值: | true (1.34)false (1.7-1.33) |
其他设置: 按首字母排序 | 按功能排序 |
细节
If true, the text <title>
will be allowed in files with a "svg" file extension or "image/svg+xml" MIME type.
MediaWiki will reject HTML-esque tags (including <title>
) in uploaded files, as some browsers can't perform basic stuff like MIME detection and are therefore vulnerable to displaying valid image files as HTML and doing insecure things.
You should leave this set to false if your web server is misconfigured and doesn't send appropriate MIME types for SVG images.
What are appropriate MIME types for SVG images? Well, that is currently under debate at the W3C[1], but you should see Content-Type: image/svg+xml
in response headers when making a GET request for an svg file.
You can easily check your server using the W3C's online SVG check tool.
Or, from the command-line with curl:
curl -I https://mywiki.example.org/w/img_auth.php/0/09/MediaWiki_Architecture.svg
HTTP/1.1 200 OK Date: Sun, 11 Feb 2018 05:01:23 GMT Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.6.33 X-Powered-By: PHP/5.6.33 X-Content-Type-Options: nosniff Last-Modified: Sat, 01 Jul 2017 15:50:20 GMT Content-Length: 69832 Content-Type: image/svg+xml