X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=push-to-web.sh;h=00448c38f556e9963dd22e95840977c5bfb2272d;hb=7bd1be5b6eb3ee09d7da9bb1ab7cd1b3ad5974bd;hp=c5826cb4695e1bda462cdb62100c771068e81e66;hpb=5b6d85fdd7b79dc62886a67a08fb9019c98f796c;p=dygraphs.git diff --git a/push-to-web.sh b/push-to-web.sh index c5826cb..00448c3 100755 --- a/push-to-web.sh +++ b/push-to-web.sh @@ -9,18 +9,24 @@ fi set -x site=$1 + # Produce dygraph-combined.js. ./generate-combined.sh # Generate documentation. ./generate-documentation.py > docs/options.html +chmod a+r docs/options.html if [ -s docs/options.html ] ; then ./generate-jsdoc.sh + # 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. - scp -r gallery common tests jsdoc experimental $site \ + rsync -avzr gallery strftime rgbcolor common tests jsdoc experimental plugins $site \ && \ - scp dygraph*.js gadget.xml excanvas.js thumbnail.png screenshot.png docs/* $site/ + rsync -avzr dashed-canvas.js stacktrace.js dygraph*.js gadget.xml excanvas.js thumbnail.png screenshot.png docs/* $site/ else echo "generate-documentation.py failed" fi