Commit | Line | Data |
---|---|---|
ff533c10 DV |
1 | #!/bin/bash |
2 | # This script generates the combined JS file, pushes all content to a web site | |
3 | # and then reverts the combined file. | |
5f303314 RK |
4 | |
5 | if [ "$1" == "" ] ; then | |
cf88e0ec | 6 | echo "usage: $0 destination" |
5f303314 RK |
7 | exit 1 |
8 | fi | |
9 | ||
11a25550 | 10 | set -x |
ff533c10 | 11 | site=$1 |
c9093b7b | 12 | |
ff533c10 DV |
13 | # Produce dygraph-combined.js. |
14 | ./generate-combined.sh | |
15 | ||
d3454ce4 | 16 | # Generate documentation. |
817b08dd | 17 | ./generate-documentation.py > docs/options.html |
b7d36956 | 18 | chmod a+r docs/options.html |
aade5c60 RK |
19 | if [ -s docs/options.html ] ; then |
20 | ./generate-jsdoc.sh | |
d3454ce4 | 21 | |
c9093b7b DV |
22 | # Make sure everything will be readable on the web. |
23 | # This is like "chmod -R a+rX", but excludes the .git directory. | |
24 | find . -path ./.git -prune -o -print | xargs chmod a+rX | |
25 | ||
aade5c60 | 26 | # Copy everything to the site. |
38e3d209 | 27 | rsync -avzr gallery strftime rgbcolor common tests jsdoc experimental plugins $site \ |
aade5c60 | 28 | && \ |
38e3d209 | 29 | rsync -avzr dashed-canvas.js stacktrace.js dygraph*.js gadget.xml excanvas.js thumbnail.png screenshot.png docs/* $site/ |
aade5c60 RK |
30 | else |
31 | echo "generate-documentation.py failed" | |
32 | fi | |
ff533c10 | 33 | |
d3454ce4 | 34 | # Revert changes to dygraph-combined.js and docs/options.html |
fccae3c0 | 35 | git checkout dygraph-combined.js |
d3454ce4 | 36 | rm docs/options.html |