view build.sh @ 1256:f961f94495c8

Remove erroneous error handling. This code seems to expect any LADA validation results coming along with an HTTP status not indicating success, which should not happen. Instead, Ext.JSON.decode() failed because of the non-JSON responseText resulting from other errors.
author Tom Gottfried <tom@intevation.de>
date Fri, 18 Nov 2016 19:46:15 +0100
parents 94d8ea3b98ba
children a152353eba26
line wrap: on
line source

SENCHAPATH=~/bin/Sencha/Cmd/4.0.5.87/sencha
VNUMBER=$(grep Lada.clientVersion app.js | cut -d '=' -f 2 | cut -d "'" -f 2)
VERSION=lada-client-$VNUMBER

# Minify
echo "Minifying...."
$SENCHAPATH --sdk-path extjs compile \
    --classpath=app,resources/lib/ext/upload,resources/lib/ext/i18n page \
    -yui -i index.html -o $VERSION/index.html

# Copy additional files
# Extjs Styles
echo "Copying additional files...."

mkdir --parents $VERSION/extjs/resources
cp -r extjs/resources/css $VERSION/extjs/resources
cp -r extjs/resources/ext-theme-gray $VERSION/extjs/resources

# Additional resources
mkdir --parents $VERSION/resources/css
mkdir --parents $VERSION/resources/i18n
mkdir --parents $VERSION/resources/img
mkdir --parents $VERSION/resources/lib

cp -r resources/css $VERSION/resources/
cp -r resources/img $VERSION/resources/
cp -r resources/i18n $VERSION/resources/
cp -r resources/lib/Blob $VERSION/resources/lib/
cp -r resources/lib/Blob.js-master $VERSION/resources/lib/
cp -r resources/lib/FileSaver $VERSION/resources/lib/
cp -r resources/lib/FileSaver.js-master $VERSION/resources/lib/
cp -r resources/lib/OpenLayers $VERSION/resources/lib/
cp -r resources/lib/openlayers-release-2.13.1 $VERSION/resources/lib/

echo "Compressing...."
tar -czf $VERSION.tgz $VERSION

echo "Done here.\n\n"

http://lada.wald.intevation.org