X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=push-to-web.sh;h=9234c57f6a5771e8b4dea255c076c724c1085e05;hb=5bcc58b46734fb5c9e821ed041318cb53127feb5;hp=422f0fd96b237136ebe426921a6c6389ba9f3a54;hpb=b7d36956d0b31d38788b9508e2de9f1047395c1f;p=dygraphs.git diff --git a/push-to-web.sh b/push-to-web.sh index 422f0fd..9234c57 100755 --- a/push-to-web.sh +++ b/push-to-web.sh @@ -9,6 +9,7 @@ fi set -x site=$1 + # Produce dygraph-combined.js. ./generate-combined.sh @@ -18,10 +19,19 @@ chmod a+r docs/options.html if [ -s docs/options.html ] ; then ./generate-jsdoc.sh + temp_dir=$(mktemp -d /tmp/dygraphs-docs.XXXX) + cd docs + ./ssi_expander.py $temp_dir + cd .. + + # Make sure everything will be readable on the web. + # This is like "chmod -R a+rX", but excludes the .git directory. + find . -path ./.git -prune -o -print | xargs chmod a+rX + # Copy everything to the site. - rsync -avzr gallery common tests jsdoc experimental plugins $site \ + rsync -avzr gallery strftime rgbcolor common tests jsdoc experimental plugins $site \ && \ - rsync -avzr dygraph*.js gadget.xml excanvas.js thumbnail.png screenshot.png docs/ $site/ + rsync -avzr --copy-links dashed-canvas.js stacktrace.js dygraph*.js gadget.xml excanvas.js thumbnail.png screenshot.png $temp_dir/* $site/ else echo "generate-documentation.py failed" fi @@ -29,3 +39,4 @@ fi # Revert changes to dygraph-combined.js and docs/options.html git checkout dygraph-combined.js rm docs/options.html +rm -rf $temp_dir