Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -5088,6 +5088,37 @@ |
5089 | 5089 | * Enabes or disables JavaScript-based suggestions of password strength |
5090 | 5090 | */ |
5091 | 5091 | $wgLivePasswordStrengthChecks = false; |
| 5092 | + |
| 5093 | +/** |
| 5094 | + * The location of the MediaWiki package repository to use. |
| 5095 | + * |
| 5096 | + * @since 1.17 |
| 5097 | + * @var string |
| 5098 | + */ |
| 5099 | +$wgRepositoryApiLocation = 'http://www.mediawiki.org/w/api.php'; |
| 5100 | + |
| 5101 | +/** |
| 5102 | + * The location of the remote web interface for the selected repository. |
| 5103 | + * |
| 5104 | + * @since 1.17 |
| 5105 | + * @var string |
| 5106 | + */ |
| 5107 | +$wgRepositoryLocation = 'http://www.mediawiki.org/wiki/Special:Repository'; |
| 5108 | + |
| 5109 | +/** |
| 5110 | + * List of package states to filter update detection and extension listing on. |
| 5111 | + * |
| 5112 | + * @since 1.17 |
| 5113 | + * @var array |
| 5114 | + */ |
| 5115 | +$wgRepositoryPackageStates = array( |
| 5116 | + //'dev', |
| 5117 | + //'alpha', |
| 5118 | + 'beta', |
| 5119 | + //'rc', |
| 5120 | + 'stable', |
| 5121 | + //'deprecated', |
| 5122 | +); |
5092 | 5123 | |
5093 | 5124 | /** |
5094 | 5125 | * For really cool vim folding this needs to be at the end: |