2 # This script generates the combined JS file, pushes all content to a web site
3 # and then reverts the combined file.
5 if [ "$1" == "" ] ; then
6 echo "usage: $0 destination"
12 # Produce dygraph-combined.js.
13 .
/generate-combined.sh
15 # Generate documentation.
16 .
/generate-documentation.py
> docs
/options.html
17 if [ -s docs
/options.html
] ; then
20 # Copy everything to the site.
21 scp
-r gallery common tests jsdoc experimental
$site \
23 scp dygraph
*.js gadget.xml excanvas.js thumbnail.png screenshot.png docs
/* $site/
25 echo "generate-documentation.py failed"
28 # Revert changes to dygraph-combined.js and docs/options.html
29 git checkout dygraph-combined.js