Revision: 6893 Author: [email protected] Date: Fri Nov 13 10:26:21 2009 Log: Updates the query param to the canonical "gwt.codesvr" instead of the legacy "gwt.hosted".
Change by: bruce Review by: jat (desk) http://code.google.com/p/google-web-toolkit/source/detail?r=6893 Modified: /trunk/dev/core/src/com/google/gwt/dev/DevModeBase.java /trunk/dev/core/src/com/google/gwt/dev/shell/BrowserListener.java ======================================= --- /trunk/dev/core/src/com/google/gwt/dev/DevModeBase.java Wed Nov 11 12:47:24 2009 +++ /trunk/dev/core/src/com/google/gwt/dev/DevModeBase.java Fri Nov 13 10:26:21 2009 @@ -873,7 +873,7 @@ getTopLogger().log(TreeLogger.ERROR, "Invalid URL " + url, e); throw new UnableToCompleteException(); } - System.err.println("Using a browser with the GWT Development Plugin, please browse to"); + System.err.println("Using a browser with the GWT Developer Plugin, please browse to"); System.err.println("the following URL:"); System.err.println(" " + url); final URL helpInfoUrl = parsedUrl; ======================================= --- /trunk/dev/core/src/com/google/gwt/dev/shell/BrowserListener.java Tue Nov 10 11:05:06 2009 +++ /trunk/dev/core/src/com/google/gwt/dev/shell/BrowserListener.java Fri Nov 13 10:26:21 2009 @@ -43,7 +43,7 @@ } public static String getDevModeURLParams(String endpointIdentifier) { - return "gwt.hosted=" + endpointIdentifier; + return "gwt.codesvr=" + endpointIdentifier; } private ServerSocket listenSocket; -- http://groups.google.com/group/Google-Web-Toolkit-Contributors
