lib/moin: update for 1.9.9, fix config order
[hcoop/domtool2.git] / lib / web_apps.dtl
index 5d4da16..e73e1ac 100644 (file)
@@ -2,22 +2,27 @@
 
 val addWordPress = \ loc : (location) ->
   location loc with
-    phpVersion php5;
+    rewriteRule "^(.*/)?\.svn/" "-" [forbidden, last];
+    rewriteRule "^(.*/)?\.git/" "-" [forbidden, last];
+
     rewriteCond "%{REQUEST_FILENAME}" "!-f" [];
     rewriteCond "%{REQUEST_FILENAME}" "!-d" [];
-    rewriteRule "." "/index.php" [last]
+
+    rewriteRule "." "/index.php" [last];
   end;
 {{Add a standard WordPress blog set-up code to a virtual host.  The WordPress
   files should be rooted at the location you specify.}}
 
-val wordPress = \ host : (host) ->
+val wordPress = \ host : (host) -> \\ config : Vhost ->
   web host with
-    addWordPress "/"
+    addWordPress "/";
+    diskCache "/wp-content";
+    config
   end;
 {{Create a WordPress blog with just the standard set-up code.  The WordPress blog should
   be rooted at the vhost's <tt>DocumentRoot</tt>.}}
 
-val moin_default_htdocs : (location) = "/moin_static196";
+val moin_default_htdocs : (location) = "/moin_static199";
 {{Alias for static content used by the system-wide MoinMoin.}}
 
 val addMoinMoin = begin
@@ -25,17 +30,19 @@ val addMoinMoin = begin
   prefix <- Prefix;
   script <- Script;
 
-  alias htdocs "/afs/hcoop.net/common/app/moin/installed/moin19/lib/python2.6/site-packages/MoinMoin/web/static/htdocs";
-  scriptAlias prefix (end_in_slash script)
+  alias htdocs "/afs/hcoop.net/common/app/moin/installed/moin19/lib/python2.7/site-packages/MoinMoin/web/static/htdocs";
+  (*diskCache htdocs;*) (* disabled 2017-02-01 clinton : don't think this helps after all *)
+  scriptAlias prefix (end_in_slash script);
 end;
 {{Add a MoinMoin wiki to a vhost.}}
 
-val moinMoin = \ host : (host) ->
+val moinMoin = \ host : (host) -> \\ config : Vhost ->
   web host with
     addMoinMoin where
       Htdocs = moin_default_htdocs;
       Prefix = "/"
-    end
+    end;
+    config
   end;
 {{Create a new vhost with just a MoinMoin wiki.}}
 
@@ -49,13 +56,4 @@ val addMoinMoinOld = begin
   alias htdocs "/usr/share/moin/htdocs";
   scriptAlias prefix (end_in_slash script)
 end;
-{{Add a MoinMoin wiki to a vhost.}}
-
-val moinMoinOld = \ host : (host) ->
-  webAt "mire" host with
-    addMoinMoinOld where
-      Htdocs = "/moin";
-      Prefix = "/"
-    end
-  end;
-{{Create a new vhost with just a MoinMoin wiki.}}
\ No newline at end of file
+{{Add a MoinMoin wiki to a vhost.}}
\ No newline at end of file