]> git.openstreetmap.org Git - chef.git/commitdiff
mediawiki: fix CirrusSearch tweak
authorGrant Slater <git@firefishy.com>
Tue, 2 Aug 2022 21:57:23 +0000 (00:57 +0300)
committerGrant Slater <git@firefishy.com>
Tue, 2 Aug 2022 21:57:51 +0000 (00:57 +0300)
cookbooks/mediawiki/templates/default/LocalSettings.php.erb
cookbooks/mediawiki/templates/default/mw-ext-CirrusSearch.inc.php.erb

index 7b7190005395909fc09b8aec55c64c28eb2ff5ba..d5bbf71a7a08194bd997f6c8b9598add8b005395 100644 (file)
@@ -368,6 +368,13 @@ $wgForceUIMsgAsContentMsg = array( 'mainpage-url', 'mapfeatures-url', 'contribut
 <%= "require_once('#{file}');" %>
 <% end -%>
 
+<% if @name == "wiki.openstreetmap.org" -%>
+# setting the search weight of the main wiki's proposal namespace lower then general talk pages (0.2), but
+# higher then wiki project namespace (0.1)
+# Documentation at https://phabricator.wikimedia.org/source/extension-cirrussearch/browse/master/docs/settings.txt$693
+$wgCirrusSearchNamespaceWeights = array_merge ( $wgCirrusSearchNamespaceWeights, array ( NS_PROPOSAL => 0.15 ));
+<% end -%>
+
 <% if not(@mediawiki[:private_accounts]) and not(@mediawiki[:private_site]) -%>
 # require user confirmation for certain actions
 $wgGroupPermissions['user']['move'] = false;
index 8a6ef31ca4eac83916cfade6871647b580ad94f7..ddb87f166eb3d755f92d597498c95ee347204b6a 100644 (file)
@@ -3,8 +3,3 @@
 wfLoadExtension( 'CirrusSearch' );
 $wgDisableSearchUpdate = false;
 $wgSearchType = 'CirrusSearch';
-
-# setting the search weight of the main wiki's proposal namespace lower then general talk pages (0.2), but
-# higher then wiki project namespace (0.1)
-# Documentation at https://phabricator.wikimedia.org/source/extension-cirrussearch/browse/master/docs/settings.txt$693
-$wgCirrusSearchNamespaceWeights = array_merge ( $wgCirrusSearchNamespaceWeights, array ( NS_PROPOSAL => 0.15 ));