In FC18, the AfeClient-shell fails to launch for a couple of different
reasons.  First, the dev jar is gwt-dev.jar not gwt-dev-linux.jar.
Second, the HostedMode instance is actually running on port 8888 by
default, not 8000.
    
Signed-off-by: Nishanth Aravamudan <[email protected]>

---
Note that even with this, I still am unable to get DevMode (as it's now
called) to work -- it says that the AfeClient may need to be re-compiled
and shows the page without any JavaScript.

diff --git a/frontend/client/AfeClient-shell b/frontend/client/AfeClient-shell
index 04293e8..25ddd22 100755
--- a/frontend/client/AfeClient-shell
+++ b/frontend/client/AfeClient-shell
@@ -1,4 +1,4 @@
 #!/bin/sh
 APPDIR=`dirname $0`;
 GWTDIR=`$APPDIR/gwt_dir`;
-java  -cp 
"$APPDIR/src:$APPDIR/bin:$GWTDIR/gwt-user.jar:$GWTDIR/gwt-dev-linux.jar:$GWTDIR/gwt-incubator.jar"
 com.google.gwt.dev.HostedMode -ea -startupUrl 
http://localhost:8000/afe/server/autotest.AfeClient/AfeClient.html "$@" 
autotest.
+java  -cp 
"$APPDIR/src:$APPDIR/bin:$GWTDIR/gwt-user.jar:$GWTDIR/gwt-dev-linux.jar:$GWTDIR/gwt-dev.jar:$GWTDIR/gwt-incubator.jar"
 com.google.gwt.dev.HostedMode -startupUrl 
http://localhost:8888/afe/server/autotest.AfeClient/AfeClient.htm

_______________________________________________
Autotest-kernel mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/autotest-kernel

Reply via email to