Manual:$wgBrowserBlackList
Appearance
この機能は、バージョン 1.32.0 で完全に除去されました。 |
言語、地域、文字エンコードの設定: $wgBrowserBlackList | |
---|---|
Unicode に準拠していないブラウザーのブラウザー ブラックリスト。 |
|
導入されたバージョン: | 1.4.0 (r5793) |
廃止予定になったバージョン: | 1.30.0 (Gerrit change 374422; git #I20c2e39) |
除去されたバージョン: | 1.32.0 (Gerrit change 443759; git #If796e77) |
許容される値: | (正規表現の配列) |
既定値: | 下記参照 |
その他の設定: アルファベット順 | 機能順 |
詳細
Unicode に準拠していないブラウザーのブラウザー ブラックリストです。
Contains a list of regexps: "/regexp/" matching problematic browsers.
If the user-agent of a browser matches one such regex, the "safemode" field is used when editing (see the safemode
item in Manual:index.php のパラメーター for details).
既定値
MediaWiki バージョン: | 1.30 – 1.31 |
In MediaWiki 1.30 , a feature test is used to check whether browsers can correctly round-trip Unicode characters:
$wgBrowserBlackList = [];
MediaWiki バージョン: | 1.11 – 1.29 |
$wgBrowserBlackList = array(
/**
* Netscape 2-4 の検出
* The minor version may contain strings such as "Gold" or "SGoldC-SGI"
* Lots of non-netscape user agents have "compatible", so it's useful to check for that with a negative assertion. The [UIN] identifier specifies the level of security in a Netscape/Mozilla browser, checking for it rules out a number of fakers.
* The language string is unreliable, it is missing on NS4 Mac.
*
* Reference: http://www.psychedelix.com/agents/index.shtml
*/
'/^Mozilla\/2\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
'/^Mozilla\/3\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
'/^Mozilla\/4\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
/**
* MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>, Þ to <THORN> and Ð to <ETH>
*
* 既知のユーザーエージェント:
* - Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
* - Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)
* - Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)
* - [...]
*
* @link https://en.wikipedia.org/w/index.php?title=User%3A%C6var_Arnfj%F6r%F0_Bjarmason%2Ftestme&diff=12356041&oldid=12355864
* @link https://en.wikipedia.org/wiki/Template%3AOS9
*/
'/^Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/',
/**
* Google wireless transcoder, seems to eat a lot of chars alive
* http://it.wikipedia.org/w/index.php?title=Luciano_Ligabue&diff=prev&oldid=8857361
*/
'/^Mozilla\/4\.0 \(compatible; MSIE 6.0; Windows NT 5.0; Google Wireless Transcoder;\)/'
);
The changes between this and the previous version are:
- There was a change to regexes for Netscape 2-4 detection.
- The Google Wireless Transcoder regex was added.
MediaWiki バージョン: | 1.7 – 1.10 |
$wgBrowserBlackList = array(
/**
* Netscape 2-4 の検出
* The minor version may contain strings such as "Gold" or "SGoldC-SGI"
* Lots of non-netscape user agents have "compatible", so it's useful to check for that with a negative assertion. The [UIN] identifier specifies the level of security in a Netscape/Mozilla browser, checking for it rules out a number of fakers.
* The language string is unreliable, it is missing on NS4 Mac.
*
* Reference: http://www.psychedelix.com/agents/index.shtml
*/
'/^Mozilla\/2\.[^ ]+ .*?\((?!compatible).*; [UIN]/',
'/^Mozilla\/3\.[^ ]+ .*?\((?!compatible).*; [UIN]/',
'/^Mozilla\/4\.[^ ]+ .*?\((?!compatible).*; [UIN]/',
/**
* MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>, Þ to <THORN> and Ð to <ETH>
*
* 既知のユーザーエージェント:
* - Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
* - Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)
* - Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)
* - [...]
*
* @link https://en.wikipedia.org/w/index.php?title=User%3A%C6var_Arnfj%F6r%F0_Bjarmason%2Ftestme&diff=12356041&oldid=12355864
* @link https://en.wikipedia.org/wiki/Template%3AOS9
*/
'/^Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/'
);
MediaWiki バージョン: | 1.4 – 1.6 |
From 1.4.1 to 1.6.10, this setting had the following default values:
$wgBrowserBlackList = array(
"/Mozilla\/4\.78 \[en\] \(X11; U; Linux/",
/**
* MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>, Þ to <THORN> and Ð to <ETH>
*
* 既知のユーザーエージェント:
* - Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
* - Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)
* - Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)
* - [...]
*
* @link https://en.wikipedia.org/w/index.php?title=User%3A%C6var_Arnfj%F6r%F0_Bjarmason%2Ftestme&diff=12356041&oldid=12355864
* @link https://en.wikipedia.org/wiki/Template%3AOS9
*/
"/Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/"
);
MediaWiki バージョン: | 1.4 |
In 1.4.0, this setting had the following default value:
$wgBrowserBlackList = array(
"/Mozilla\/4\.78 \[en\] \(X11; U; Linux/"
// FIXME: Add some accurate, true things here
);