diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2011-10-24 08:45:54 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2011-10-24 08:45:54 +0000 |
commit | 0f3b340da7acffba93de0618d80d6018097e98ee (patch) | |
tree | a81b295d68321af87b7baa13f820d1a486573da5 /sca-cpp/trunk/modules/edit/start | |
parent | 1f29c4ef1374655383a0a065d2839a8ad43717e2 (diff) |
Refactor and simplify edit app, and optimize app resource loading and caching.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1188045 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/modules/edit/start')
-rwxr-xr-x | sca-cpp/trunk/modules/edit/start | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/sca-cpp/trunk/modules/edit/start b/sca-cpp/trunk/modules/edit/start index 6125ba02bf..b9fe5953d6 100755 --- a/sca-cpp/trunk/modules/edit/start +++ b/sca-cpp/trunk/modules/edit/start @@ -35,18 +35,18 @@ jsprefix=`echo "import os; print os.path.realpath('$here/../js')" | python` # Configure error pages cat >>tmp/conf/svhost.conf <<EOF # Error pages -ErrorDocument 404 /public/notfound.html -ErrorDocument 401 /public/notauth.html -ErrorDocument 500 /public/oops.html +ErrorDocument 404 /notfound/ +ErrorDocument 401 /notauth/ +ErrorDocument 500 /oops/ EOF # Configure app home pages cat >>tmp/conf/dvhost.conf <<EOF # App error pages -ErrorDocument 404 /public/notfound.html -ErrorDocument 401 /public/notauth.html -ErrorDocument 500 /public/oops.html +ErrorDocument 404 /notfound/ +ErrorDocument 401 /notauth/ +ErrorDocument 500 /oops/ # Redirect www to main home page RewriteEngine on @@ -70,6 +70,14 @@ SCAVirtualComposite app.composite EOF +# Configure main aliases +cat >>tmp/conf/httpd.conf <<EOF + +Alias /home/home.png $here/htdocs/home/home.png +Alias /home/home.b64 $here/htdocs/home/home.b64 + +EOF + # Create app links and sub-directories if needed ./mkapplinks @@ -85,7 +93,10 @@ Alias /headconfig.js $here/htdocs/headconfig.js Alias /index.html $here/htdocs/app/index.html Alias /login $here/htdocs/login Alias /logout $here/htdocs/logout -Alias /menu.js $here/htdocs/menu.js +Alias /notauth $here/htdocs/notauth +Alias /notfound $here/htdocs/notfound +Alias /notyet $here/htdocs/notyet +Alias /oops $here/htdocs/oops Alias /public $here/htdocs/public Alias /robots.txt $here/htdocs/robots.txt |