]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/mediawiki/templates/default/mw-ext-VisualEditor.inc.php.erb
Switch VisualEditor to new style loading for MediaWiki 1.37
[chef.git] / cookbooks / mediawiki / templates / default / mw-ext-VisualEditor.inc.php.erb
index 66f43fb796134f961c6227a7006a98116e3f1337..ed9740571b388039280d68f728ce548dc5906adc 100644 (file)
@@ -1,10 +1,14 @@
 <?php
 $wgVirtualRestConfig['modules']['parsoid'] = array(
-  'url' => 'http://<%= @mediawiki[:name] %>:8142'
+  'url' => 'http://localhost:8142'
 );
 $wgVirtualRestConfig['modules']['parsoid']['forwardCookies'] = true;
 
-require_once "$IP/extensions/VisualEditor/VisualEditor.php";
+<% if @version >= "1.37" -%>
+wfLoadExtension( 'VisualEditor' );
+<% else -%>
+require_once($IP .'/extensions/VisualEditor/VisualEditor.php');
+<% end -%>
 
 // Enable by default for everybody
 $wgDefaultUserOptions['visualeditor-enable'] = 1;