Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorFabian Becker <halfdan@xnorfz.de>2013-04-07 03:05:05 +0400
committerFabian Becker <halfdan@xnorfz.de>2013-04-07 03:05:05 +0400
commite799ff6f465bbee4289adbcb71d43dd788b9ef20 (patch)
tree9f0441f97fc2e91ed6612807142c883cd237bf45 /libs
parentef99dc67d689c6cc8283db4d2b1dc159239d0104 (diff)
parent16b7362976fd189ada1e15101cd3866633cbdda3 (diff)
Merge branch 'master' into 2.x-twig
Diffstat (limited to 'libs')
-rwxr-xr-xlibs/jqplot/build_minified_script.sh22
1 files changed, 2 insertions, 20 deletions
diff --git a/libs/jqplot/build_minified_script.sh b/libs/jqplot/build_minified_script.sh
index 9ba958e670..7276679ae1 100755
--- a/libs/jqplot/build_minified_script.sh
+++ b/libs/jqplot/build_minified_script.sh
@@ -1,26 +1,8 @@
# build jqplot-custom.min.js
# the yuicompressor needs to be set up in piwik/js (see piwik/js/README.md)
-cat jqplot.core.js > jqplot-custom.min.js-temp
-cat jqplot.linearAxisRenderer.js >> jqplot-custom.min.js-temp
-cat jqplot.axisTickRenderer.js >> jqplot-custom.min.js-temp
-cat jqplot.axisLabelRenderer.js >> jqplot-custom.min.js-temp
-cat jqplot.tableLegendRenderer.js >> jqplot-custom.min.js-temp
-cat jqplot.lineRenderer.js >> jqplot-custom.min.js-temp
-cat jqplot.linePattern.js >> jqplot-custom.min.js-temp
-cat jqplot.markerRenderer.js >> jqplot-custom.min.js-temp
-cat jqplot.divTitleRenderer.js >> jqplot-custom.min.js-temp
-cat jqplot.canvasGridRenderer.js >> jqplot-custom.min.js-temp
-cat jqplot.shadowRenderer.js >> jqplot-custom.min.js-temp
-cat jqplot.shapeRenderer.js >> jqplot-custom.min.js-temp
-cat jqplot.sprintf.js >> jqplot-custom.min.js-temp
-cat jqplot.themeEngine.js >> jqplot-custom.min.js-temp
-cat plugins/jqplot.pieRenderer.js >> jqplot-custom.min.js-temp
-cat plugins/jqplot.barRenderer.js >> jqplot-custom.min.js-temp
-cat plugins/jqplot.categoryAxisRenderer.js >> jqplot-custom.min.js-temp
-cat plugins/jqplot.canvasTextRenderer.js >> jqplot-custom.min.js-temp
-cat plugins/jqplot.canvasAxisTickRenderer.js >> jqplot-custom.min.js-temp
+find . -name 'jqplot*.js' -print|xargs cat > jqplot-custom.min.js-temp
java -jar ../../js/yuicompressor-2.4.2/build/yuicompressor-2.4.2.jar --type js --line-break 1000 jqplot-custom.min.js-temp > jqplot-custom.min.js
-rm ./jqplot-custom.min.js-temp \ No newline at end of file
+rm ./jqplot-custom.min.js-temp