X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=generate-combined.sh;h=9e184ae5833a3434cb3977f48806de82579ec716;hb=124ff6e65f332ced8a38dbb40e5f0d4d1ed0a058;hp=2b81f75decfbef7eff40f0b283dff6debd1830e7;hpb=35a3c487b50e297b4a01522ab208ed394cfd88e3;p=dygraphs.git diff --git a/generate-combined.sh b/generate-combined.sh index 2b81f75..9e184ae 100755 --- a/generate-combined.sh +++ b/generate-combined.sh @@ -1,20 +1,65 @@ #!/bin/bash # Generates a single JS file that's easier to include. -# Pack the dygraphs JS and rgbcolor -cat \ -dygraph-canvas.js \ -dygraph.js \ -rgbcolor/rgbcolor.js \ -strftime/strftime-min.js \ -| perl -ne 'print unless m,REMOVE_FOR_COMBINED,..m,/REMOVE_FOR_COMBINED,' \ -> /tmp/dygraph.js +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 + do + echo "$F" + done +} -java -jar yuicompressor-2.4.2.jar /tmp/dygraph.js \ -> /tmp/dygraph-packed.js +# Pack all the JS together. +CatSources () { + GetSources \ + | xargs cat \ + | perl -ne 'print unless m,REMOVE_FOR_COMBINED,..m,/REMOVE_FOR_COMBINED,' +} -# TODO(danvk): ensure the dygraphs copyright, etc. gets into the packed js. +Copyright () { + echo '/*! @license Copyright 2011 Dan Vanderkam (danvdk@gmail.com) MIT-licensed (http://opensource.org/licenses/MIT) */' +} -cat \ -/tmp/dygraph-packed.js \ -> dygraph-combined.js +CatCompressed () { + Copyright + CatSources \ + | java -jar yuicompressor-2.4.2.jar --type 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