Handbuch:$wgBrowserBlackList
Diese Funktion wurde in der Version 1.32.0 vollständig entfernt. |
Einstellungen für Sprache, Region und Zeichenkodierung: $wgBrowserBlackList | |
---|---|
Browserverbotliste für nicht-Unicode-konforme Browser. |
|
Eingeführt in Version: | 1.4.0 (r5793) |
Veraltet in Version: | 1.30.0 (Gerrit change 374422; git #I20c2e39) |
Entfernt in Version: | 1.32.0 (Gerrit change 443759; git #If796e77) |
Erlaubte Werte: | (array of regular expressions) |
Standardwert: | siehe unten |
Andere Einstellungen: Alphabetisch | Nach Funktion |
Details
Browserverbotliste für nicht-Unicode-konforme Browser.
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 Handbuch:Parameter von index.php for details).
Standardwerte
MediaWiki Versions: | 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 Versions: | 1.11 – 1.29 |
$wgBrowserBlackList = array(
/**
* Netscape 2-4-Erkennung
* 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 auf Mac OS 9 ist schlecht, wandelt þ in <thorn>, ð in <eth>, Þ in <THORN> und Ð in <ETH> um
*
* Bekannte User-Agents:
* - 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 Versions: | 1.7 – 1.10 |
$wgBrowserBlackList = array(
/**
* Netscape 2-4-Erkennung
* 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 auf Mac OS 9 ist schlecht, wandelt þ in <thorn>, ð in <eth>, Þ in <THORN> und Ð in <ETH> um
*
* Bekannte User-Agents:
* - 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 Versions: | 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 auf Mac OS 9 ist schlecht, wandelt þ in <thorn>, ð in <eth>, Þ in <THORN> und Ð in <ETH> um
*
* Bekannte User-Agents:
* - 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 Version: | 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
);