view contrib/make_flys_release/h2/createDatacage.sh @ 4253:a1bc5b8cff0f

Refactor GaugePanel to create it's own SectionStackSection The GaugePanel constructor now creates a SectionStackSection instead of using a provided one. Improve the rendering of the GaugePanel by having access to the SmartGWT wrapper (WidgetCanvas) object for the GWT Tree (GaugeTree) directly. Add methods to close and open the section. Also add a getter for the section.
author Björn Ricks <bjoern.ricks@intevation.de>
date Thu, 25 Oct 2012 13:52:58 +0200
parents 9d404069f361
children 3ba2917e49d3
line wrap: on
line source
#!/bin/bash

mkdir datacagedb

DIR=`dirname $0`
DIR=`readlink -f "$DIR"`

CLASSPATH=
for l in `find "$DIR" -name \*.jar -print`; do
   CLASSPATH=$CLASSPATH:$l
done

export CLASSPATH

java org.h2.tools.RunScript \
    -url jdbc:h2:`readlink -f datacagedb`/datacage \
    -script $DIR/datacage.sql

http://dive4elements.wald.intevation.org