1
0
forked from GitHub/gf-core

Added IE6-only testing module for FridgeApp.

This commit is contained in:
bjorn
2008-11-07 08:56:19 +00:00
parent 076a5167d0
commit ea0af09cbb
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/sh
APPDIR=`dirname $0`;
if [ -z "$GWT_CLASSPATH" ]; then
echo 'ERROR: $GWT_CLASSPATH is not set'
echo 'Set $GWT_CLASSPATH to point to the GWT JAR files. For example:'
echo 'export GWT_DIR="/Users/bringert/src/gwt-mac-1.5.2"'
echo 'export GWT_CLASSPATH="$GWT_DIR/gwt-user.jar:$GWT_DIR/gwt-dev-mac.jar"'
exit 1
fi
if [ `uname` = "Darwin" ]; then
GWT_JAVA_OPTS=-XstartOnFirstThread
fi
LIBS=$APPDIR/lib/gwt-dnd-2.5.6.jar
java $GWT_JAVA_OPTS -Xmx256M -cp "$APPDIR/src:$APPDIR/bin:$LIBS:$GWT_CLASSPATH" com.google.gwt.dev.GWTCompiler -out "$APPDIR/www" -style DETAILED "$@" se.chalmers.cs.gf.gwt.FridgeApp_IE6;

View File

@@ -0,0 +1,5 @@
<module rename-to="se.chalmers.cs.gf.gwt.FridgeApp">
<inherits name="se.chalmers.cs.gf.gwt.FridgeApp" />
<set-property name="user.agent" value="ie6" />
<set-property name="locale" value="default" />
</module>