My favorites | Sign in
Google
                
Details: Show all Hide all

Today

  • 32 min ago
    issue 4271 (GWTTransient annotation failing on client during deserializa...) reported by sachindatta   -   Found in GWT Release 2.0 (gwt-2.0.0-ms1): Encountered on OS / Browser (e.g. WinXP, IE6-7, FF3): Windows Vista/Firefox & IE Detailed description (please be as specific as possible): When @GWTTransient annotation is used deserialization fails with following exception 00:03:04.890 [WARN] greetServlet: An IncompatibleRemoteServiceException was thrown while processing this call. com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: Invalid type signature for rpc.client.client.TestTransient at com.google.gwt.user.server.rpc.RPC.decodeRequest(RPC.java:307) at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall (RemoteServiceServlet.java:186) at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost (RemoteServiceServlet.java:224) at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost (AbstractRemoteServiceServlet.java:62) at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487) at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362) at org.mortbay.jetty.security.SecurityHandler.handle (SecurityHandler.java:216) at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181) at org.mortbay.jetty.handler.ContextHandler.handle (ContextHandler.java:729) at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) at org.mortbay.jetty.handler.RequestLogHandler.handle (RequestLogHandler.java:49) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) at org.mortbay.jetty.Server.handle(Server.java:324) at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505) at org.mortbay.jetty.HttpConnection$RequestHandler.content (HttpConnection.java:843) at org.mortbay.jetty.HttpParser.parseNext (HttpParser.java:647) at org.mortbay.jetty.HttpParser.parseAvailable (HttpParser.java:211) at org.mortbay.jetty.HttpConnection.handle (HttpConnection.java:380) at org.mortbay.io.nio.SelectChannelEndPoint.run (SelectChannelEndPoint.java:395) at org.mortbay.thread.QueuedThreadPool$PoolThread.run (QueuedThreadPool.java:488) Caused by: com.google.gwt.user.client.rpc.SerializationException: Invalid type signature for rpc.client.client.TestTransient at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader.validat eTypeVersions(ServerSerializationStreamReader.java:861) at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader.deseria lize(ServerSerializationStreamReader.java:515) at com.google.gwt.user.client.rpc.impl.AbstractSerializationStreamReader.readO bject(AbstractSerializationStreamReader.java:61) at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader$ValueRe ader$8.readValue(ServerSerializationStreamReader.java:137) at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader.deseria lizeValue(ServerSerializationStreamReader.java:384) at com.google.gwt.user.server.rpc.RPC.decodeRequest(RPC.java:295) at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall (RemoteServiceServlet.java:186) at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost (RemoteServiceServlet.java:224) at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost (AbstractRemoteServiceServlet.java:62) at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487) at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362) at org.mortbay.jetty.security.SecurityHandler.handle (SecurityHandler.java:216) at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181) at org.mortbay.jetty.handler.ContextHandler.handle (ContextHandler.java:729) at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) at org.mortbay.jetty.handler.RequestLogHandler.handle (RequestLogHandler.java:49) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) at org.mortbay.jetty.Server.handle(Server.java:324) at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505) at org.mortbay.jetty.HttpConnection$RequestHandler.content (HttpConnection.java:843) at org.mortbay.jetty.HttpParser.parseNext (HttpParser.java:647) at org.mortbay.jetty.HttpParser.parseAvailable (HttpParser.java:211) at org.mortbay.jetty.HttpConnection.handle (HttpConnection.java:380) at org.mortbay.io.nio.SelectChannelEndPoint.run (SelectChannelEndPoint.java:395) at org.mortbay.thread.QueuedThreadPool$PoolThread.run (QueuedThreadPool.java:488) Shortest code snippet which demonstrates issue (please indicate where actual result differs from expected result): Replace the String input & return parameter by following in the starter application created by webCreator. public class TestTransient implements IsSerializable, Serializable { /** * */ private static final long serialVersionUID = -1716518572755253985L; @GwtTransient private String y; TestTransient() { } public void setY(String y) { this.y = y; } public String getY() { return y; } public String toString() { return "Y=" + y; } } Workaround if you have one: None
    Found in GWT Release 2.0 (gwt-2.0.0-ms1): Encountered on OS / Browser (e.g. WinXP, IE6-7, FF3): Windows Vista/Firefox & IE Detailed description (please be as specific as possible): When @GWTTransient annotation is used deserialization fails with following exception 00:03:04.890 [WARN] greetServlet: An IncompatibleRemoteServiceException was thrown while processing this call. com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: Invalid type signature for rpc.client.client.TestTransient at com.google.gwt.user.server.rpc.RPC.decodeRequest(RPC.java:307) at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall (RemoteServiceServlet.java:186) at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost (RemoteServiceServlet.java:224) at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost (AbstractRemoteServiceServlet.java:62) at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487) at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362) at org.mortbay.jetty.security.SecurityHandler.handle (SecurityHandler.java:216) at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181) at org.mortbay.jetty.handler.ContextHandler.handle (ContextHandler.java:729) at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) at org.mortbay.jetty.handler.RequestLogHandler.handle (RequestLogHandler.java:49) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) at org.mortbay.jetty.Server.handle(Server.java:324) at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505) at org.mortbay.jetty.HttpConnection$RequestHandler.content (HttpConnection.java:843) at org.mortbay.jetty.HttpParser.parseNext (HttpParser.java:647) at org.mortbay.jetty.HttpParser.parseAvailable (HttpParser.java:211) at org.mortbay.jetty.HttpConnection.handle (HttpConnection.java:380) at org.mortbay.io.nio.SelectChannelEndPoint.run (SelectChannelEndPoint.java:395) at org.mortbay.thread.QueuedThreadPool$PoolThread.run (QueuedThreadPool.java:488) Caused by: com.google.gwt.user.client.rpc.SerializationException: Invalid type signature for rpc.client.client.TestTransient at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader.validat eTypeVersions(ServerSerializationStreamReader.java:861) at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader.deseria lize(ServerSerializationStreamReader.java:515) at com.google.gwt.user.client.rpc.impl.AbstractSerializationStreamReader.readO bject(AbstractSerializationStreamReader.java:61) at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader$ValueRe ader$8.readValue(ServerSerializationStreamReader.java:137) at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader.deseria lizeValue(ServerSerializationStreamReader.java:384) at com.google.gwt.user.server.rpc.RPC.decodeRequest(RPC.java:295) at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall (RemoteServiceServlet.java:186) at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost (RemoteServiceServlet.java:224) at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost (AbstractRemoteServiceServlet.java:62) at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487) at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362) at org.mortbay.jetty.security.SecurityHandler.handle (SecurityHandler.java:216) at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181) at org.mortbay.jetty.handler.ContextHandler.handle (ContextHandler.java:729) at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) at org.mortbay.jetty.handler.RequestLogHandler.handle (RequestLogHandler.java:49) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) at org.mortbay.jetty.Server.handle(Server.java:324) at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505) at org.mortbay.jetty.HttpConnection$RequestHandler.content (HttpConnection.java:843) at org.mortbay.jetty.HttpParser.parseNext (HttpParser.java:647) at org.mortbay.jetty.HttpParser.parseAvailable (HttpParser.java:211) at org.mortbay.jetty.HttpConnection.handle (HttpConnection.java:380) at org.mortbay.io.nio.SelectChannelEndPoint.run (SelectChannelEndPoint.java:395) at org.mortbay.thread.QueuedThreadPool$PoolThread.run (QueuedThreadPool.java:488) Shortest code snippet which demonstrates issue (please indicate where actual result differs from expected result): Replace the String input & return parameter by following in the starter application created by webCreator. public class TestTransient implements IsSerializable, Serializable { /** * */ private static final long serialVersionUID = -1716518572755253985L; @GwtTransient private String y; TestTransient() { } public void setY(String y) { this.y = y; } public String getY() { return y; } public String toString() { return "Y=" + y; } } Workaround if you have one: None
  • 65 min ago
    r7169 (Merge trunk r7168 into this branch Fix Arrays.equals(Object...) committed by tamplinjohn   -   Merge trunk r7168 into this branch Fix Arrays.equals(Object[], Object[]) to handle nulls. svn merge --ignore-ancestry -c7168 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .
    Merge trunk r7168 into this branch Fix Arrays.equals(Object[], Object[]) to handle nulls. svn merge --ignore-ancestry -c7168 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .
  • 68 min ago
    r7168 (Fix Arrays.equals(Object[], Object[]) to handle nulls, this ...) committed by tamplinjohn   -   Fix Arrays.equals(Object[], Object[]) to handle nulls, this time correctly. Patch by: hhchan@google.com Review by: jat
    Fix Arrays.equals(Object[], Object[]) to handle nulls, this time correctly. Patch by: hhchan@google.com Review by: jat
  • 74 min ago
    r7167 (Tagging 2.0.0-rc1. ) committed by scottb@google.com   -   Tagging 2.0.0-rc1.
    Tagging 2.0.0-rc1.
  • 74 min ago
    r7166 (Tagging 2.0.0-ms2. ) committed by scottb@google.com   -   Tagging 2.0.0-ms2.
    Tagging 2.0.0-ms2.
  • 79 min ago
    r7165 (Merge trunk r7164 into this branch Disable flaky HtmlUnit t...) committed by tamplinjohn   -   Merge trunk r7164 into this branch Disable flaky HtmlUnit test. svn merge --ignore-ancestry -c7164 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .
    Merge trunk r7164 into this branch Disable flaky HtmlUnit test. svn merge --ignore-ancestry -c7164 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .
  • 84 min ago
    r7164 (Don't run DOMTest.testGetAbsolutePosition on HtmlUnit. Patc...) committed by tamplinjohn   -   Don't run DOMTest.testGetAbsolutePosition on HtmlUnit. Patch by: jat Review by: amitmanjhi (verbal)
    Don't run DOMTest.testGetAbsolutePosition on HtmlUnit. Patch by: jat Review by: amitmanjhi (verbal)
  • 87 min ago
    r7163 (Merge trunk r7162 into this branch UI cleanups. svn me...) committed by tamplinjohn   -   Merge trunk r7162 into this branch UI cleanups. svn merge --ignore-ancestry -c7162 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .
    Merge trunk r7162 into this branch UI cleanups. svn merge --ignore-ancestry -c7162 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .
  • 93 min ago
    r7162 (UI cleanups -- move all Swing interaction to the UI thread, ...) committed by tamplinjohn   -   UI cleanups -- move all Swing interaction to the UI thread, add a notification of failure to load modules, and fix log level for favicon.ico 404's. Patch by: jat Review by: rdayal
    UI cleanups -- move all Swing interaction to the UI thread, add a notification of failure to load modules, and fix log level for favicon.ico 404's. Patch by: jat Review by: rdayal
  • 113 min ago
    r7161 (Merging trunk r7160 into this branch. ) committed by j...@google.com   -   Merging trunk r7160 into this branch.
    Merging trunk r7160 into this branch.
  • 117 min ago
    r7160 (Cleans up javadoc in layout panels (TODOs will be captured a...) committed by j...@google.com   -   Cleans up javadoc in layout panels (TODOs will be captured as issues). Fix for non-standard gwt-Tab style name. Review by: bruce (TBR)
    Cleans up javadoc in layout panels (TODOs will be captured as issues). Fix for non-standard gwt-Tab style name. Review by: bruce (TBR)
  • 2 hours ago
    r7159 (Merging trunk r7158 into this branch. ) committed by j...@google.com   -   Merging trunk r7158 into this branch.
    Merging trunk r7158 into this branch.
  • 2 hours ago
    r7158 (A number of tweaks to the mail sample. Fix for the non-stand...) committed by j...@google.com   -   A number of tweaks to the mail sample. Fix for the non-standard style names in SplitLayoutPanel. Review: bruce (desk check)
    A number of tweaks to the mail sample. Fix for the non-standard style names in SplitLayoutPanel. Review: bruce (desk check)
  • 3 hours ago
    issue 4270 (JavaScript undefined members are written as [undefined,undef...) reported by mmastrac   -   Found in GWT Release (e.g. 1.5.3, 1.6 RC): 2.0-RC1 Encountered on OS / Browser (e.g. WinXP, IE6-7, FF3): All Detailed description (please be as specific as possible): JS array literals with undefined members are being written out using the full "undefined" keyword, rather than omitting the member. This happens even if the original value was written omitting the member. Shortest code snippet which demonstrates issue (please indicate where actual result differs from expected result): var a = [,,,] Is compiled as: var a = [undefined,undefined,undefined,undefined] Workaround if you have one: Use null as a workaround. Links to relevant GWT Developer Forum posts: n/a
    Found in GWT Release (e.g. 1.5.3, 1.6 RC): 2.0-RC1 Encountered on OS / Browser (e.g. WinXP, IE6-7, FF3): All Detailed description (please be as specific as possible): JS array literals with undefined members are being written out using the full "undefined" keyword, rather than omitting the member. This happens even if the original value was written omitting the member. Shortest code snippet which demonstrates issue (please indicate where actual result differs from expected result): var a = [,,,] Is compiled as: var a = [undefined,undefined,undefined,undefined] Workaround if you have one: Use null as a workaround. Links to relevant GWT Developer Forum posts: n/a
  • 3 hours ago
    r7157 (trunk@7155 was merged into this branch Fixes JUnit session...) committed by scottb@google.com   -   trunk@7155 was merged into this branch Fixes JUnit sessions to not use Cookies, which can be problematic. svn merge --ignore-ancestry -c7155 https://google-web-toolkit.googlecode.com/svn/trunk/ .
    trunk@7155 was merged into this branch Fixes JUnit sessions to not use Cookies, which can be problematic. svn merge --ignore-ancestry -c7155 https://google-web-toolkit.googlecode.com/svn/trunk/ .
  • 4 hours ago
    UsingOOPHM (How to use OOPHM in current trunk.) Wiki page edited by tamplinjohn   -   Revision r7156 Edited wiki page through web user interface.
    Revision r7156 Edited wiki page through web user interface.
  • 4 hours ago
    r7155 (Fixes JUnit sessions to not use Cookies, which can be proble...) committed by scottb@google.com   -   Fixes JUnit sessions to not use Cookies, which can be problematic. - The session id is passed through RPC - Session ids are now ints. Suggested by: jlabanca Review by: jlabanca
    Fixes JUnit sessions to not use Cookies, which can be problematic. - The session id is passed through RPC - Session ids are now ints. Suggested by: jlabanca Review by: jlabanca
  • 6 hours ago
    issue 3765 (Running unit tests in eclipse fails with trunk and oophm) commented on by Iker.Jimenez   -   If the gwt-dev-${os}.jar is in the classpath before the gwt-dev-oophm.jar file you will get this error, at least with the trunk build I am using from a few months ago. Cannot test it with a newer one now. If you use ANT and something like <fileset dir="${gwt.sdk}" includes="gwt-dev*.jar" /> it will work fine on Linux and probably Mac but will fail on Windows as letter 'o' is before letter 'w'
    If the gwt-dev-${os}.jar is in the classpath before the gwt-dev-oophm.jar file you will get this error, at least with the trunk build I am using from a few months ago. Cannot test it with a newer one now. If you use ANT and something like <fileset dir="${gwt.sdk}" includes="gwt-dev*.jar" /> it will work fine on Linux and probably Mac but will fail on Windows as letter 'o' is before letter 'w'
  • 14 hours ago
    r7154 (Merge trunk r7153 into this branch Don't rely on user agent...) committed by tamplinjohn   -   Merge trunk r7153 into this branch Don't rely on user agent strings to identify JUnitShell clients svn merge --ignore-ancestry -c7153 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .
    Merge trunk r7153 into this branch Don't rely on user agent strings to identify JUnitShell clients svn merge --ignore-ancestry -c7153 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .
  • 15 hours ago
    r7153 (Fix JUnitShell/etc so it doesn't rely on the user agent to i...) committed by tamplinjohn   -   Fix JUnitShell/etc so it doesn't rely on the user agent to identify different sessions, but instead sets a session cookie. This fixes two instances/tabs of the same browser as well as connections via proxies. Patch by: scottb Review by: jat
    Fix JUnitShell/etc so it doesn't rely on the user agent to identify different sessions, but instead sets a session cookie. This fixes two instances/tabs of the same browser as well as connections via proxies. Patch by: scottb Review by: jat
  • 16 hours ago
    issue 4269 (2.0 RC1+Google plugin for Eclipse.2rc1 can not detect and re...) reported by Alexander.Luya   -   (If this is your first time submitting an issue report to the GWT Issue Tracker, please see the sample issue report linked below for an example of a well reported issue) Sample issue report: http://code.google.com/p/google-web-toolkit/wiki/IssueReportSample Found in GWT Release: GWT 2.0 RC1 Encountered on OS : ubunut 9.10 desktop+Sun JDK 1.6.0_17 Browser: firefox 3.5.5 Detailed description (please be as specific as possible): (step 1)I used plugin(Google plugin for Eclipse.2rc1) to create a project,run and browse it and everything just works fine.But after deleting src and war ,and replace them with new src and war(comes from a worked project with 1.6 stuff),clean project,and run it,copy url to firefox to open it,and strange thing comes up,nothing showed and no error reported in console and Web Application Debug View. (step 2)but when I used webAppCreator(still in 2.0RC 1) to create a new project and replace files as step 1,then run and broswe,I found some I18N errors(some keys have not corresponding resourses),so I fixed these issues,and repeat step 1,everything just works fine. So,I think,maybe,that RC1+GP plugin can not detect and report I18N errors correctlly.
    (If this is your first time submitting an issue report to the GWT Issue Tracker, please see the sample issue report linked below for an example of a well reported issue) Sample issue report: http://code.google.com/p/google-web-toolkit/wiki/IssueReportSample Found in GWT Release: GWT 2.0 RC1 Encountered on OS : ubunut 9.10 desktop+Sun JDK 1.6.0_17 Browser: firefox 3.5.5 Detailed description (please be as specific as possible): (step 1)I used plugin(Google plugin for Eclipse.2rc1) to create a project,run and browse it and everything just works fine.But after deleting src and war ,and replace them with new src and war(comes from a worked project with 1.6 stuff),clean project,and run it,copy url to firefox to open it,and strange thing comes up,nothing showed and no error reported in console and Web Application Debug View. (step 2)but when I used webAppCreator(still in 2.0RC 1) to create a new project and replace files as step 1,then run and broswe,I found some I18N errors(some keys have not corresponding resourses),so I fixed these issues,and repeat step 1,everything just works fine. So,I think,maybe,that RC1+GP plugin can not detect and report I18N errors correctlly.
  • 17 hours ago
    GWT_2_0_RC (Getting Started with the GWT 2.0 Release Candidate) Wiki page commented on by neo.huma...@gmail.com   -   Oh ya, I also have a 1.2 release candidate of the google plugin installed. It's mentioned somewhere above, and I deinstalled the old one before dropping the new one in... But it didn't fully uninstall so I'm not really sure. If you still have issues after switching runner types, check this wiki for the rc plugin link.
    Oh ya, I also have a 1.2 release candidate of the google plugin installed. It's mentioned somewhere above, and I deinstalled the old one before dropping the new one in... But it didn't fully uninstall so I'm not really sure. If you still have issues after switching runner types, check this wiki for the rc plugin link.
  • 17 hours ago
    GWT_2_0_RC (Getting Started with the GWT 2.0 Release Candidate) Wiki page commented on by a.revolution.ultra.blue   -   YES! You CANNOT use the google g-icon "web app run menu", you need a plain jane java application runner, with main class com.google.gwt.dev.DevMode? Make sure you have the usual program arguments for a gwt project; mine are: -port 7777 -startupUrl / ai.yx.xSeed I have / set to a welcome servlet in web.xml, and my gwt project is ai.yx.xSeed If you want to use appengine, you will also need to add the program arguments and vm arguments I mentioned in the post above. ALSO, if you do NOT use appengine, leave the working directory at default. If you DO use appengine, add /war to whatever your default directory is... My project xBook uses ${workspace_loc:xBook}/war If you absolutely can't get it to go, just download ms2 from the deprecated dl page, and you can go ahead and use the old google-plugin launch configuration.
    YES! You CANNOT use the google g-icon "web app run menu", you need a plain jane java application runner, with main class com.google.gwt.dev.DevMode? Make sure you have the usual program arguments for a gwt project; mine are: -port 7777 -startupUrl / ai.yx.xSeed I have / set to a welcome servlet in web.xml, and my gwt project is ai.yx.xSeed If you want to use appengine, you will also need to add the program arguments and vm arguments I mentioned in the post above. ALSO, if you do NOT use appengine, leave the working directory at default. If you DO use appengine, add /war to whatever your default directory is... My project xBook uses ${workspace_loc:xBook}/war If you absolutely can't get it to go, just download ms2 from the deprecated dl page, and you can go ahead and use the old google-plugin launch configuration.
  • 17 hours ago
    GWT_2_0_RC (Getting Started with the GWT 2.0 Release Candidate) Wiki page commented on by neo.huma...@gmail.com   -   YES! You CANNOT use the google g-icon "web app run menu", you need a plain jane java application runner, with main class com.google.gwt.dev.DevMode Make sure you have the usual program arguments for a gwt project; mine are: -port 7777 -startupUrl / ai.yx.xSeed I have / set to a welcome servlet in web.xml, and my gwt project is ai.yx.xSeed If you want to use appengine, you will also need to add the program arguments and vm arguments I mentioned in the post above. ALSO, if you do NOT use appengine, leave the working directory at default. If you DO use appengine, add /war to whatever your default directory is... My project xBook uses ${workspace_loc:xBook}/war If you absolutely can't get it to go, just download ms2 from the deprecated dl page, and you can go ahead and use the old google-plugin launch configuration.
    YES! You CANNOT use the google g-icon "web app run menu", you need a plain jane java application runner, with main class com.google.gwt.dev.DevMode Make sure you have the usual program arguments for a gwt project; mine are: -port 7777 -startupUrl / ai.yx.xSeed I have / set to a welcome servlet in web.xml, and my gwt project is ai.yx.xSeed If you want to use appengine, you will also need to add the program arguments and vm arguments I mentioned in the post above. ALSO, if you do NOT use appengine, leave the working directory at default. If you DO use appengine, add /war to whatever your default directory is... My project xBook uses ${workspace_loc:xBook}/war If you absolutely can't get it to go, just download ms2 from the deprecated dl page, and you can go ahead and use the old google-plugin launch configuration.
  • 19 hours ago
    r7152 (Updated branch-info.txt to reflect merge of trunk@r7150 into...) committed by rdayal@google.com   -   Updated branch-info.txt to reflect merge of trunk@r7150 into releases/2.0 at r7151.
    Updated branch-info.txt to reflect merge of trunk@r7150 into releases/2.0 at r7151.
  • 19 hours ago
    r7151 (Merging trunk@r7150 into releases/2.0. ) committed by rdayal@google.com   -   Merging trunk@r7150 into releases/2.0.
    Merging trunk@r7150 into releases/2.0.
  • 19 hours ago
    r7150 (Got rid of port-guessing logic. We now use setStartupURLs as...) committed by rdayal@google.com   -   Got rid of port-guessing logic. We now use setStartupURLs as our init hook. We no longer send over the dev mode query params. We send over the startup URLs. Review by: mmendez
    Got rid of port-guessing logic. We now use setStartupURLs as our init hook. We no longer send over the dev mode query params. We send over the startup URLs. Review by: mmendez
  • 20 hours ago
    r7149 (Merge trunk r7148 into this branch DevMode UI improvements ...) committed by tamplinjohn   -   Merge trunk r7148 into this branch DevMode UI improvements svn merge --ignore-ancestry -c7148 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .
    Merge trunk r7148 into this branch DevMode UI improvements svn merge --ignore-ancestry -c7148 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .
  • 22 hours ago
    r7148 (Improve the DevMode UI, both for GPE and Swing: - startup U...) committed by tamplinjohn   -   Improve the DevMode UI, both for GPE and Swing: - startup URLs are specified separately from launching them, allowing them to be displayed earlier - if no startup URLs are supplied, they are inferred from the contents of the war directory - the Swing UI is change to better allow launching of the URLs and to give feedback while processing modules - Ctrl-Key mappings are now Command-Key on the Mac Patch by: jat Review by: rdayal
    Improve the DevMode UI, both for GPE and Swing: - startup URLs are specified separately from launching them, allowing them to be displayed earlier - if no startup URLs are supplied, they are inferred from the contents of the war directory - the Swing UI is change to better allow launching of the URLs and to give feedback while processing modules - Ctrl-Key mappings are now Command-Key on the Mac Patch by: jat Review by: rdayal
  • 23 hours ago
    r7147 (Updating Chrome, IE, and Firefox plugin installers with glas...) committed by scottb@google.com   -   Updating Chrome, IE, and Firefox plugin installers with glasspanel-on-disconnect feature. - gwtdmp.crx is updated also, but we should delete it later - Also deleted old files. Review by: jat
    Updating Chrome, IE, and Firefox plugin installers with glasspanel-on-disconnect feature. - gwtdmp.crx is updated also, but we should delete it later - Also deleted old files. Review by: jat

Yesterday

  • 24 hours ago
    r7146 (Nukes svn:merginfo over all of trunk. Review by: jat ) committed by scottb@google.com   -   Nukes svn:merginfo over all of trunk. Review by: jat
    Nukes svn:merginfo over all of trunk. Review by: jat
  • 24 hours ago
    r7145 (Update Mac FF shared libraries. Patch by: jat Unreviewed ) committed by tamplinjohn   -   Update Mac FF shared libraries. Patch by: jat Unreviewed
    Update Mac FF shared libraries. Patch by: jat Unreviewed
  • 24 hours ago
    r7144 (Update Fedora/etc shared libraries. Patch by: jat Unreviewe...) committed by tamplinjohn   -   Update Fedora/etc shared libraries. Patch by: jat Unreviewed
    Update Fedora/etc shared libraries. Patch by: jat Unreviewed
  • 24 hours ago
    r7143 (Improve debug logging to help track down crash. Patch by: j...) committed by tamplinjohn   -   Improve debug logging to help track down crash. Patch by: jat Review by: scottb (TBR)
    Improve debug logging to help track down crash. Patch by: jat Review by: scottb (TBR)
  • 25 hours ago
    r7142 (Merge trunk r7141 into this branch Remove TODOs from hosted...) committed by tamplinjohn   -   Merge trunk r7141 into this branch Remove TODOs from hosted.html svn merge --ignore-ancestry -c7141 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .
    Merge trunk r7141 into this branch Remove TODOs from hosted.html svn merge --ignore-ancestry -c7141 \ https://google-web-toolkit.googlecode.com/svn/trunk/ .
  • 25 hours ago
    r7141 (Remove TODOs from hosted.html, captured in issues instead. ...) committed by tamplinjohn   -   Remove TODOs from hosted.html, captured in issues instead. Patch by: jat Review by: bruce
    Remove TODOs from hosted.html, captured in issues instead. Patch by: jat Review by: bruce
  • 25 hours ago
    r7140 (trunk@7139 was merged into this branch Disconnected plugin...) committed by scottb@google.com   -   trunk@7139 was merged into this branch Disconnected plugin glasspanel lightened to 75% opacity. svn merge --ignore-ancestry -c7139 https://google-web-toolkit.googlecode.com/svn/trunk .
    trunk@7139 was merged into this branch Disconnected plugin glasspanel lightened to 75% opacity. svn merge --ignore-ancestry -c7139 https://google-web-toolkit.googlecode.com/svn/trunk .
  • 25 hours ago
    r7139 (Disconnected plugin glasspanel lightened to 75% opacity. Re...) committed by scottb@google.com   -   Disconnected plugin glasspanel lightened to 75% opacity. Review by: bruce, abowers
    Disconnected plugin glasspanel lightened to 75% opacity. Review by: bruce, abowers
  • 26 hours ago
    r7138 (trunk@7137 was merged into this branch Use a css expressio...) committed by scottb@google.com   -   trunk@7137 was merged into this branch Use a css expression for hosted.html's disconnect screen in IE6 standards mode. svn merge --ignore-ancestry -c7137 http://google-web-toolkit.googlecode.com/svn/trunk .
    trunk@7137 was merged into this branch Use a css expression for hosted.html's disconnect screen in IE6 standards mode. svn merge --ignore-ancestry -c7137 http://google-web-toolkit.googlecode.com/svn/trunk .
  • 26 hours ago
    r7137 (Use a css expression for hosted.html's disconnect screen in ...) committed by scottb@google.com   -   Use a css expression for hosted.html's disconnect screen in IE6 standards mode. We can't set a resize handler from the inner frame, and it's a minute enough case that it's not worth adding in extra plumbing just to wedge the resize handler in there. Review by: jat
    Use a css expression for hosted.html's disconnect screen in IE6 standards mode. We can't set a resize handler from the inner frame, and it's a minute enough case that it's not worth adding in extra plumbing just to wedge the resize handler in there. Review by: jat
  • 26 hours ago
    r7136 (Plugins: update prebuilt binaries to r7135 (graceful disconn...) committed by scottb@google.com   -   Plugins: update prebuilt binaries to r7135 (graceful disconnect). Patch by: me, bobv
    Plugins: update prebuilt binaries to r7135 (graceful disconnect). Patch by: me, bobv
  • 26 hours ago
    r7135 (Add support for disconnection glass panel in Safari plugin. ...) committed by bobv@google.com   -   Add support for disconnection glass panel in Safari plugin. Patch by: bobv Review by: scottb
    Add support for disconnection glass panel in Safari plugin. Patch by: bobv Review by: scottb
  • 26 hours ago
    r7134 (A variety of build and cosmetic updates to the Safari plugin...) committed by bobv@google.com   -   A variety of build and cosmetic updates to the Safari plugin. Patch by: bobv Review by: scottb
    A variety of build and cosmetic updates to the Safari plugin. Patch by: bobv Review by: scottb
  • 26 hours ago
    r7133 (Merge trunk@7132 into this branch Fix PrefixTree implementat...) committed by r...@google.com   -   Merge trunk@7132 into this branch Fix PrefixTree implementation on Chrome svn merge --ignore-ancestry -c 7132 http://google-web-toolkit.googlecode.com/svn/trunk .
    Merge trunk@7132 into this branch Fix PrefixTree implementation on Chrome svn merge --ignore-ancestry -c 7132 http://google-web-toolkit.googlecode.com/svn/trunk .
  • 27 hours ago
    r7132 (Fix PrefixTree implementation on Chrome Review by: jat ) committed by r...@google.com   -   Fix PrefixTree implementation on Chrome Review by: jat
    Fix PrefixTree implementation on Chrome Review by: jat
  • 27 hours ago
    issue 4268 (Deprecate automatic addition of <source path='client'> in Mo...) changed by scottb@google.com   -   To bruce for prioritization.
    Owner: br...@google.com
    Labels: Category-Compiler Type-Enhancement
    To bruce for prioritization.
    Owner: br...@google.com
    Labels: Category-Compiler Type-Enhancement
  • 27 hours ago
    r7131 (Merged trunk@7121 into this branch Remove obsolete documenta...) committed by r...@google.com   -   Merged trunk@7121 into this branch Remove obsolete documentation. svn merge --ignore-ancestry -c 7121 http://google-web-toolkit.googlecode.com/svn/trunk .
    Merged trunk@7121 into this branch Remove obsolete documentation. svn merge --ignore-ancestry -c 7121 http://google-web-toolkit.googlecode.com/svn/trunk .
  • 27 hours ago
    r7130 (Merged trunk@7122 into this branch Replace JUnit's -web comm...) committed by r...@google.com   -   Merged trunk@7122 into this branch Replace JUnit's -web command-line flag with -prod (keeping -web as a deprecated synonym) svn merge --ignore-ancestry -c 7122 http://google-web-toolkit.googlecode.com/svn/trunk .
    Merged trunk@7122 into this branch Replace JUnit's -web command-line flag with -prod (keeping -web as a deprecated synonym) svn merge --ignore-ancestry -c 7122 http://google-web-toolkit.googlecode.com/svn/trunk .
  • 27 hours ago
    r7129 (IE, Chrome, Firefox plugins: gracefully disconnect when serv...) committed by scottb@google.com   -   IE, Chrome, Firefox plugins: gracefully disconnect when server connection drops. 1) Plugins fails gracefully in the face of a disconnect, returning undefined instead of making lots of noise. 2) Plugins invokes hosted.html's __gwt_disconnected() method the first time the session is detected as dropped. This glasspanels the app. Review by: jat
    IE, Chrome, Firefox plugins: gracefully disconnect when server connection drops. 1) Plugins fails gracefully in the face of a disconnect, returning undefined instead of making lots of noise. 2) Plugins invokes hosted.html's __gwt_disconnected() method the first time the session is detected as dropped. This glasspanels the app. Review by: jat
  • 27 hours ago
    r7128 (Restructures Chrome and Firefox plugin VS projects to group ...) committed by scottb@google.com   -   Restructures Chrome and Firefox plugin VS projects to group source files. Review by: jat
    Restructures Chrome and Firefox plugin VS projects to group source files. Review by: jat