X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=push-to-web.sh;h=77bd91f3453d90e22289c0d8e7ffd1a41016845b;hb=3b3b39e7140cf45dfdc95f636978c5353e3a6c38;hp=00448c38f556e9963dd22e95840977c5bfb2272d;hpb=38e3d209effd6f9a3e49d993719808006d9d2ada;p=dygraphs.git diff --git a/push-to-web.sh b/push-to-web.sh index 00448c3..77bd91f 100755 --- a/push-to-web.sh +++ b/push-to-web.sh @@ -18,6 +18,12 @@ site=$1 chmod a+r docs/options.html if [ -s docs/options.html ] ; then ./generate-jsdoc.sh + ./generate-download.py > docs/download.html + + 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. @@ -26,11 +32,13 @@ if [ -s docs/options.html ] ; then # Copy everything to the site. rsync -avzr gallery strftime rgbcolor common tests jsdoc experimental plugins $site \ && \ - rsync -avzr dashed-canvas.js stacktrace.js 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 -# Revert changes to dygraph-combined.js and docs/options.html +# Revert changes to dygraph-combined.js and docs. git checkout dygraph-combined.js +git checkout docs/download.html rm docs/options.html +rm -rf $temp_dir