Index: trunk/extensions/Configure/Configure.settings.i18n.php |
— | — | @@ -480,6 +480,7 @@ |
481 | 481 | 'configure-setting-wgDiff3' => "Path to the GNU diff3 utility", |
482 | 482 | 'configure-setting-wgFavicon' => "URL of the site favicon", |
483 | 483 | 'configure-setting-wgLogo' => "URL of the site logo", |
| 484 | + 'configure-setting-wgNullFile' => "Path to null output", |
484 | 485 | 'configure-setting-wgMathDirectory' => "File system path of the directory containing LaTeX math images", |
485 | 486 | 'configure-setting-wgMathPath' => "URL base of the directory containing LaTeX math images", |
486 | 487 | 'configure-setting-wgRedirectScript' => "URL of redirect.php, needed for backwards compatibility", |
Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -2,7 +2,8 @@ |
3 | 3 | Localisation updates are done on betawiki and aren't listed here. |
4 | 4 | |
5 | 5 | 0.10.15 - 5 December 2008 |
6 | | - Fixed PHP notices on Special:ViewConfig. |
| 6 | + * Fixed PHP notices on Special:ViewConfig. |
| 7 | + * Added $wgNullFile |
7 | 8 | |
8 | 9 | 0.10.14 - 4 December 2008 |
9 | 10 | * Added support for $wgRateLimits |
Index: trunk/extensions/Configure/default-setting-names.php |
— | — | @@ -13,6 +13,7 @@ |
14 | 14 | 'wgDiff3' => "Path to the GNU diff3 utility", |
15 | 15 | 'wgFavicon' => "The URL of the site favicon", |
16 | 16 | 'wgLogo' => "The URL of the site logo", |
| 17 | + 'wgNullFile' => "Path to null output", |
17 | 18 | 'wgPhpCli' => "Executable name of PHP cli client (php/php5)", |
18 | 19 | 'wgRedirectScript' => "The URL of redirect.php, needed for backwards compatibility", |
19 | 20 | 'wgScript' => "The URL of index.php", |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -138,6 +138,7 @@ |
139 | 139 | 'external-tools' => array( |
140 | 140 | 'wgDiff' => 'text', |
141 | 141 | 'wgDiff3' => 'text', |
| 142 | + 'wgNullFile' => 'text', |
142 | 143 | 'wgPhpCli' => 'text', |
143 | 144 | 'wgTexvc' => 'text', |
144 | 145 | 'wgExternalDiffEngine' => 'text', |
— | — | @@ -839,6 +840,7 @@ |
840 | 841 | $emptyValues = array( |
841 | 842 | 'wgAppleTouchIcon' => false, |
842 | 843 | 'wgVariantArticlePath' => false, |
| 844 | + 'wgNullFile' => false, |
843 | 845 | 'wgDBerrorLog' => null, |
844 | 846 | 'wgSearchType' => null, |
845 | 847 | 'wgSharedDB' => null, |
— | — | @@ -888,6 +890,7 @@ |
889 | 891 | 'wgDiff3', |
890 | 892 | 'wgFavicon', |
891 | 893 | 'wgLogo', |
| 894 | + 'wgNullFile', |
892 | 895 | 'wgMathDirectory', |
893 | 896 | 'wgMathPath', |
894 | 897 | 'wgProto', |
— | — | @@ -1089,6 +1092,7 @@ |
1090 | 1093 | 'wgImageMagickTempDir' => array( array( '1.14alpha', '>=' ) ), |
1091 | 1094 | 'wgNamespacesToBeSearchedProject' => array( array( '1.14alpha', '>=' ) ), |
1092 | 1095 | 'wgUsePrivateIPs' => array( array( '1.14alpha', '>=' ) ), |
| 1096 | + 'wgNullFile' => array( array( '1.14alpha', '>=' ) ), |
1093 | 1097 | # Obsolete |
1094 | 1098 | 'wgAjaxSearch' => array( array( '1.14alpha', '<' ) ), |
1095 | 1099 | ); |