X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=push-to-web.sh;h=00448c38f556e9963dd22e95840977c5bfb2272d;hb=48fc47867e9796ad49e105546fbb21c5304039c1;hp=c5826cb4695e1bda462cdb62100c771068e81e66;hpb=56f64289bdbd75dea1ee58faf529d39465d11008;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