X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=generate-combined.sh;h=09f316fe7f366fd0b5247b41171fec963fb3eca0;hb=5b9b214237898b4b841eea2ff664e9c65b661ddf;hp=d38d2207cd743352903367e799caa4635198a372;hpb=e26b71566419e1c051f3fbd1f4f8f64b063a04c9;p=dygraphs.git diff --git a/generate-combined.sh b/generate-combined.sh index d38d220..09f316f 100755 --- a/generate-combined.sh +++ b/generate-combined.sh @@ -1,32 +1,72 @@ #!/bin/bash # Generates a single JS file that's easier to include. -# Pack all the JS together. +GetSources () { + # This list needs to be kept in sync w/ the one in dygraph-dev.js + # and the one in jsTestDriver.conf. Order matters, except for the plugins. + for F in \ + strftime/strftime-min.js \ + rgbcolor/rgbcolor.js \ + stacktrace.js \ + dashed-canvas.js \ + dygraph-options.js \ + dygraph-layout.js \ + dygraph-canvas.js \ + dygraph.js \ + dygraph-utils.js \ + dygraph-gviz.js \ + dygraph-interaction-model.js \ + dygraph-tickers.js \ + dygraph-plugin-base.js \ + plugins/*.js \ + dygraph-plugin-install.js \ + datahandler/datahandler.js \ + datahandler/default.js \ + datahandler/default-fractions.js \ + datahandler/bars.js \ + datahandler/bars-custom.js \ + datahandler/bars-error.js \ + datahandler/bars-fractions.js + do + echo "$F" + done +} -# This list needs to be kept in sync w/ the one in dygraph-dev.js -# and the one in jsTestDriver.conf. -cat \ -dygraph-layout.js \ -dygraph-canvas.js \ -dygraph.js \ -dygraph-utils.js \ -dygraph-gviz.js \ -dygraph-interaction-model.js \ -dygraph-range-selector.js \ -dygraph-tickers.js \ -rgbcolor/rgbcolor.js \ -strftime/strftime-min.js \ -plugins/base.js \ -plugins/legend.js \ -plugins/install.js \ -| perl -ne 'print unless m,REMOVE_FOR_COMBINED,..m,/REMOVE_FOR_COMBINED,' \ -> /tmp/dygraph.js +# Pack all the JS together. +CatSources () { + GetSources \ + | xargs cat \ + | perl -ne 'print unless m,REMOVE_FOR_COMBINED,..m,/REMOVE_FOR_COMBINED,' +} -java -jar yuicompressor-2.4.2.jar /tmp/dygraph.js \ -> /tmp/dygraph-packed.js +Copyright () { + echo '/*! @license Copyright 2011 Dan Vanderkam (danvdk@gmail.com) MIT-licensed (http://opensource.org/licenses/MIT) */' +} -# TODO(danvk): ensure the dygraphs copyright, etc. gets into the packed js. +CatCompressed () { + Copyright + CatSources \ + | java -jar yuicompressor-2.4.2.jar --type js +} -cat \ -/tmp/dygraph-packed.js \ -> dygraph-combined.js +ACTION="${1:-update}" +case "$ACTION" in +ls) + GetSources + ;; +cat) + Copyright + CatSources + ;; +compress*|cat_compress*) + CatCompressed + ;; +update) + CatCompressed > dygraph-combined.js + chmod a+r dygraph-combined.js + ;; +*) + echo >&2 "Unknown action '$ACTION'" + exit 1 + ;; +esac