X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=push-to-web.sh;h=00448c38f556e9963dd22e95840977c5bfb2272d;hb=7bd1be5b6eb3ee09d7da9bb1ab7cd1b3ad5974bd;hp=4d8985c2f8b377a54809886decd39ab3a9b8ad7f;hpb=a0d7a78e2403b5921cb9abbb02556847308d66f1;p=dygraphs.git diff --git a/push-to-web.sh b/push-to-web.sh index 4d8985c..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 plugins $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