Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 486 → Rev 487

/trunk/Coel-shell
1,3 → 1,8
#!/bin/sh
APPDIR=`dirname $0`;
java -Xmx1024M -cp "$APPDIR/src:$APPDIR/bin:/opt/gwt-1.5.3/gwt-user.jar:/opt/gwt-1.5.3/gwt-dev-linux.jar:/opt/gxt-1.2.4/gxt.jar" com.google.gwt.dev.GWTShell -noserver -port 80 -out "$APPDIR/www" "$@" http://localhost/org.tela_botanica.Coel/Coel.php;
# Création d'un lien symbolique si nécessaire.
if [ ! -h $APPDIR/../org.tela_botanica.Coel ]; then
cd $APPDIR/..;
ln -s coel/war org.tela_botanica.Coel;
fi;
java -Xmx1024M -cp "$APPDIR/src:$APPDIR/bin:/opt/gwt-1.7.0/gwt-user.jar:/opt/gwt-1.7.0/gwt-dev-linux.jar:/opt/gxt-1.2.4/gxt.jar" com.google.gwt.dev.HostedMode -noserver -port 80 -startupUrl org.tela_botanica.Coel/Coel.html org.tela_botanica.Coel;