Subversion Repositories eFlore/Applications.coel

Rev

Rev 410 | Rev 506 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 410 Rev 487
Line 1... Line 1...
1
#!/bin/sh
1
#!/bin/sh
2
APPDIR=`dirname $0`;
2
APPDIR=`dirname $0`;
3
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;
-
 
4
3
# Création d'un lien symbolique si nécessaire.
-
 
4
if [ ! -h $APPDIR/../org.tela_botanica.Coel ]; then
-
 
5
	cd $APPDIR/..;
-
 
6
	ln -s coel/war org.tela_botanica.Coel;
-
 
7
fi;
-
 
8
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;
-
 
9
5
10