summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/js/js-conf
diff options
context:
space:
mode:
Diffstat (limited to 'sca-cpp/trunk/modules/js/js-conf')
-rwxr-xr-xsca-cpp/trunk/modules/js/js-conf75
1 files changed, 75 insertions, 0 deletions
diff --git a/sca-cpp/trunk/modules/js/js-conf b/sca-cpp/trunk/modules/js/js-conf
new file mode 100755
index 0000000000..09289a1899
--- /dev/null
+++ b/sca-cpp/trunk/modules/js/js-conf
@@ -0,0 +1,75 @@
+#!/bin/sh
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# Add Javascript scripts and CSS to a server conf
+here=`echo "import os; print os.path.realpath('$0')" | python`; here=`dirname $here`
+mkdir -p $1
+root=`echo "import os; print os.path.realpath('$1')" | python`
+
+cat >>$root/conf/httpd.conf <<EOF
+# Generated by: js-conf $*
+# Serve JavaScript scripts and CSS
+Alias /ui.css $here/htdocs/ui.css
+Alias /ui-min.css $here/htdocs/ui-min.css
+Alias /all.js $here/htdocs/all.js
+Alias /all-min.js $here/htdocs/all-min.js
+Alias /proxy/ui.css $here/htdocs/ui.css
+Alias /proxy/ui-min.css $here/htdocs/ui-min.css
+Alias /proxy/all.js $here/htdocs/all.js
+Alias /proxy/all-min.js $here/htdocs/all-min.js
+
+EOF
+
+cat >>$root/conf/pubauth.conf <<EOF
+# Generated by: js-conf $*
+<Location /ui.css>
+AuthType None
+Require all granted
+</Location>
+<Location /ui-min.css>
+AuthType None
+Require all granted
+</Location>
+<Location /all.js>
+AuthType None
+Require all granted
+</Location>
+<Location /all-min.js>
+AuthType None
+Require all granted
+</Location>
+<Location /proxy/ui.css>
+AuthType None
+Require all granted
+</Location>
+<Location /proxy/ui-min.css>
+AuthType None
+Require all granted
+</Location>
+<Location /proxy/all.js>
+AuthType None
+Require all granted
+</Location>
+<Location /proxy/all-min.js>
+AuthType None
+Require all granted
+</Location>
+
+EOF
+