]> git.openstreetmap.org Git - chef.git/commitdiff
Install the CodeEditor extension and configure Sribunto to use it
authorTom Hughes <tom@compton.nu>
Sun, 29 Jul 2018 11:50:07 +0000 (12:50 +0100)
committerTom Hughes <tom@compton.nu>
Sun, 29 Jul 2018 11:56:35 +0000 (12:56 +0100)
cookbooks/mediawiki/resources/extension.rb
cookbooks/wiki/recipes/default.rb
cookbooks/wiki/templates/default/mw-ext-Scribunto.inc.php.erb [new file with mode: 0644]

index 47e807052c148966636ac17dd153232650e6ad0a..152e843d381ca1ac513ccd084f0f3fb3dabddfc9 100644 (file)
@@ -23,6 +23,7 @@ property :extension, :kind_of => String, :name_attribute => true
 property :site, :kind_of => String, :required => true
 property :source, :kind_of => String
 property :template, :kind_of => String
+property :template_cookbook, :kind_of => String, :default => "mediawiki"
 property :variables, :kind_of => Hash, :default => {}
 property :version, :kind_of => String
 property :repository, :kind_of => String
@@ -66,7 +67,7 @@ action :create do
 
   if new_resource.template # ~FC023
     declare_resource :template, "#{mediawiki_directory}/LocalSettings.d/Ext-#{new_resource.extension}.inc.php" do
-      cookbook "mediawiki"
+      cookbook new_resource.template_cookbook
       source new_resource.template
       user node[:mediawiki][:user]
       group node[:mediawiki][:group]
index 96cbacaa980fd8254274ede9ac15b47f19b1ed15..322612d2973ff2184356a5d38d34a75dca5466b2 100644 (file)
@@ -59,8 +59,14 @@ mediawiki_extension "MobileFrontend" do
   template "mw-ext-MobileFrontend.inc.php.erb"
 end
 
+mediawiki_extension "CodeEditor" do
+  site "wiki.openstreetmap.org"
+end
+
 mediawiki_extension "Scribunto" do
   site "wiki.openstreetmap.org"
+  template "mw-ext-Scribunto.inc.php.erb"
+  template_cookbook "wiki"
 end
 
 cookbook_file "/srv/wiki.openstreetmap.org/osm_logo_wiki.png" do
diff --git a/cookbooks/wiki/templates/default/mw-ext-Scribunto.inc.php.erb b/cookbooks/wiki/templates/default/mw-ext-Scribunto.inc.php.erb
new file mode 100644 (file)
index 0000000..2d974f5
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+# DO NOT EDIT - This file is being maintained by Chef
+
+wfLoadExtension('Scribunto');
+
+// Enable syntax highlighting
+$wgScribuntoUseGeSHi = true;
+
+// Use code editor
+$wgScribuntoUseCodeEditor = true;