Update plugin registry
[dygraphs.git] / push-to-web.sh
CommitLineData
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
5if [ "$1" == "" ] ; then
cf88e0ec 6 echo "usage: $0 destination"
5f303314
RK
7 exit 1
8fi
9
11a25550 10set -x
ff533c10 11site=$1
ff533c10
DV
12# Produce dygraph-combined.js.
13./generate-combined.sh
14
d3454ce4 15# Generate documentation.
817b08dd 16./generate-documentation.py > docs/options.html
aade5c60
RK
17if [ -s docs/options.html ] ; then
18 ./generate-jsdoc.sh
d3454ce4 19
aade5c60 20 # Copy everything to the site.
a0d7a78e 21 scp -r gallery common tests jsdoc experimental plugins $site \
aade5c60
RK
22 && \
23 scp dygraph*.js gadget.xml excanvas.js thumbnail.png screenshot.png docs/* $site/
24else
25 echo "generate-documentation.py failed"
26fi
ff533c10 27
d3454ce4 28# Revert changes to dygraph-combined.js and docs/options.html
fccae3c0 29git checkout dygraph-combined.js
d3454ce4 30rm docs/options.html