[gwt-contrib] Re: Guidance needed: unit tests and TypeOracle, ModuleDefLoader vs. CompilerStateBuilder

2010-09-15 Thread Thomas Broyer
On Sep 15, 2:38 am, Scott Blum sco...@google.com wrote: What Bob said.  You can write much, much faster unit tests using just CompStateBuilder, since it's easy to build a very small world that only contains just what you need.  If you don't care about speed, it's probably less work to go

[gwt-contrib] Re: Simplifies the RequestObject api: (issue880801)

2010-09-15 Thread amitmanjhi
The patch is missing a test that we discussed -- the test posts a sequence of edits and verifies that sane results are returned. http://gwt-code-reviews.appspot.com/880801/diff/3001/4001 File user/src/com/google/gwt/app/place/AbstractProxyEditActivity.java (left):

[gwt-contrib] Inheritance problem with property-provider

2010-09-15 Thread dflorey
Hi, on my way to implement my html5 widgets I started to implement a new propery-provider. Strange: When defining it in my module.xml and inherit this module from another module, I get some strange error like JavaScript method not found When copying the property-provider dev to the module.xml it

[gwt-contrib] Re: Inheritance problem with property-provider

2010-09-15 Thread dflorey
Strange stuff, now it is working - without changing anything. No idea who's the culprit. Sorry for the noise. On Sep 15, 2:37 pm, dflorey daniel.flo...@gmail.com wrote: Hi, on my way to implement my html5 widgets I started to implement a new propery-provider. Strange: When defining it in my

[gwt-contrib] [google-web-toolkit] r8782 committed - Workaround for a generics bug in javac 1.6.0_20 on the mac....

2010-09-15 Thread codesite-noreply
Revision: 8782 Author: b...@google.com Date: Wed Sep 15 02:57:26 2010 Log: Workaround for a generics bug in javac 1.6.0_20 on the mac. Patch by: bobv Review by: rjrjr (TBR) http://code.google.com/p/google-web-toolkit/source/detail?r=8782 Modified:

Re: [gwt-contrib] Re: Guidance needed: unit tests and TypeOracle, ModuleDefLoader vs. CompilerStateBuilder

2010-09-15 Thread BobV
MockJavaResource so tests can be self-contained (I'm mainly thinking about error-checking scenarios here). CompilationStateBuilder is exactly the thing to use in these cases. -- Bob Vawter Google Web Toolkit Team -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Moved Property and EnumProperty from the (issue881801)

2010-09-15 Thread mmendez
Reviewers: rjrjr, Description: Moved Property and EnumProperty from the com.google.gwt.requestfactory.client.impl package to com.google.gwt.requestfactory.shared.impl package. Please review this at http://gwt-code-reviews.appspot.com/881801/show Affected files: M

[gwt-contrib] Fixes speedTracerLogger.markTimline call, updates statistics to (issue882801)

2010-09-15 Thread zundel
Reviewers: conroy, fabbott, Description: Fixes speedTracerLogger.markTimline call, updates statistics to capture the time used by JavaScript optimizers. Please review this at http://gwt-code-reviews.appspot.com/882801/show Affected files: M

[gwt-contrib] [google-web-toolkit] r8783 committed - Submitting on behalf of Amit after finding a fix for a generics bug in...

2010-09-15 Thread codesite-noreply
Revision: 8783 Author: robertvaw...@google.com Date: Wed Sep 15 03:48:29 2010 Log: Submitting on behalf of Amit after finding a fix for a generics bug in jdk6-google-v3. Patch (by amitman...@google.com): Initial implementation of a general purpose Find service based on an EntityProxyId.

Re: [gwt-contrib] Re: Guidance needed: unit tests and TypeOracle, ModuleDefLoader vs. CompilerStateBuilder

2010-09-15 Thread Ray Ryan
Yes, all UiBinder error checking uses it. On Sep 15, 2010 6:53 AM, BobV b...@google.com wrote: MockJavaResource so tests can be self-contained (I'm mainly thinking about error-checking scenarios here). CompilationStateBuilder is exactly the thing to use in these cases. -- Bob Vawter

[gwt-contrib] Comment on ARIAImplementationDetails in google-web-toolkit

2010-09-15 Thread codesite-noreply
Comment by dean.hiller: what about tabbing through fields in a popup panel?(it seems to tab all the way to fields on the page behind even though my popup is modal :( Is that being addressed as well for accessibility? For more information:

[gwt-contrib] Re: Fixes speedTracerLogger.markTimline call, updates statistics to (issue882801)

2010-09-15 Thread conroy
LGTM + a couple of simple questions http://gwt-code-reviews.appspot.com/882801/diff/1/4 File dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java (right): http://gwt-code-reviews.appspot.com/882801/diff/1/4#newcode733

Re: [gwt-contrib] Re: How to detect HTML5 support?

2010-09-15 Thread Joel Webber
Daniel, Which HTML5 features are you thinking of emulating on older browsers? It seems to me that the only ones realistically emulatable are a few of the input types -- most of the stuff like canvas, audio/video, et al would be impossible without direct browser support. It might be kind of

[gwt-contrib] Re: Fixes speedTracerLogger.markTimline call, updates statistics to (issue882801)

2010-09-15 Thread zundel
http://gwt-code-reviews.appspot.com/882801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8784 committed - Adds a -strict option to the GWT compiler. If this option is specified...

2010-09-15 Thread codesite-noreply
Revision: 8784 Author: sp...@google.com Date: Wed Sep 15 05:54:44 2010 Log: Adds a -strict option to the GWT compiler. If this option is specified, then the compile will fail if any of the input files are bad. Review at http://gwt-code-reviews.appspot.com/853801 Review by: sco...@google.com

[gwt-contrib] Re: Fixes speedTracerLogger.markTimline call, updates statistics to (issue882801)

2010-09-15 Thread zundel
Mind taking another peek? http://gwt-code-reviews.appspot.com/882801/diff/1/4 File dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java (right): http://gwt-code-reviews.appspot.com/882801/diff/1/4#newcode733 dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java:733:

[gwt-contrib] Re: Moved Property and EnumProperty from the (issue881801)

2010-09-15 Thread rjrjr
LGTM Thanks. http://gwt-code-reviews.appspot.com/881801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: JUnit ought to just serialize exceptions (issue870802)

2010-09-15 Thread kjin
IIUC, ExceptionWrapper can be removed now after removing the last references in JUnitResult. http://gwt-code-reviews.appspot.com/870802/diff/1/3 File user/src/com/google/gwt/junit/client/impl/ExceptionWrapper.java (right): http://gwt-code-reviews.appspot.com/870802/diff/1/3#newcode26

[gwt-contrib] Re: JUnit ought to just serialize exceptions (issue870802)

2010-09-15 Thread Amit Manjhi
[+unnurg] who has graciously offered to review this change. On Wed, Sep 15, 2010 at 10:15 AM, k...@google.com wrote: IIUC, ExceptionWrapper can be removed now after removing the last references in JUnitResult. http://gwt-code-reviews.appspot.com/870802/diff/1/3 File

[gwt-contrib] Re: JUnit ought to just serialize exceptions (issue870802)

2010-09-15 Thread scottb
ExceptionWrapper still needs to exist to force 'cause' and 'stackTrace' to be transmitted. By default, those fields are transient in our JRE. http://gwt-code-reviews.appspot.com/870802/diff/1/3 File user/src/com/google/gwt/junit/client/impl/ExceptionWrapper.java (right):

[gwt-contrib] Re: JUnit ought to just serialize exceptions (issue870802)

2010-09-15 Thread kjin
LGTM http://gwt-code-reviews.appspot.com/870802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Simplifies the RequestObject api: (issue880801)

2010-09-15 Thread rjrjr
Fair enough re: the test. http://gwt-code-reviews.appspot.com/880801/diff/3001/4001 File user/src/com/google/gwt/app/place/AbstractProxyEditActivity.java (left): http://gwt-code-reviews.appspot.com/880801/diff/3001/4001#oldcode149

[gwt-contrib] Removes @Override annotations on methods implementing interfaces. (issue884801)

2010-09-15 Thread spoon
Reviewers: rjrjr, Description: Removes @Override annotations on methods implementing interfaces. They don't compile with a Java 1.5 compiler. Review by: rj...@google.com Please review this at http://gwt-code-reviews.appspot.com/884801/show Affected files: M

[gwt-contrib] Re: Removes @Override annotations on methods implementing interfaces. (issue884801)

2010-09-15 Thread spoon
Thanks for flagging this problem, Ray. Can you review this tiny patch to fix it? http://gwt-code-reviews.appspot.com/884801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Removes @Override annotations on methods implementing interfaces. (issue884801)

2010-09-15 Thread Ray Ryan
LGTM On Wed, Sep 15, 2010 at 10:45 AM, sp...@google.com wrote: Thanks for flagging this problem, Ray. Can you review this tiny patch to fix it? http://gwt-code-reviews.appspot.com/884801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8786 committed - The cross-site iframe linker now loads deferred JS code via script tag...

2010-09-15 Thread codesite-noreply
Revision: 8786 Author: sp...@google.com Date: Wed Sep 15 07:44:00 2010 Log: The cross-site iframe linker now loads deferred JS code via script tags holding the code directly. It no longer has the code in a string literal that gets passed around through several layers of code before being

[gwt-contrib] Fix warnings and checkstyle errors (issue882802)

2010-09-15 Thread rice
Reviewers: amitmanjhi, Description: Fix warnings and checkstyle errors Please review this at http://gwt-code-reviews.appspot.com/882802/show Affected files: M samples/expenses/src/main/java/com/google/gwt/sample/expenses/client/Expenses.java M

[gwt-contrib] Make key provider a constructor argument to Cell widgets and selection models (issue885801)

2010-09-15 Thread rice
Reviewers: rjrjr, Description: Make key provider a constructor argument to Cell widgets and selection models Attempt to fix an IndexOutOfBounds and ClassCast exception in ExpenseDetails.java Please review this at http://gwt-code-reviews.appspot.com/885801/show Affected files: M

[gwt-contrib] Re: Fix warnings and checkstyle errors (issue882802)

2010-09-15 Thread Amit Manjhi
LGTM On Wed, Sep 15, 2010 at 11:17 AM, r...@google.com wrote: Reviewers: amitmanjhi, Description: Fix warnings and checkstyle errors Please review this at http://gwt-code-reviews.appspot.com/882802/show Affected files: M

[gwt-contrib] Re: Add error message when non-static inner class throws NoSuchMethodException (issue876801)

2010-09-15 Thread zhuyi
On 2010/09/15 18:44:44, zhuyi wrote: I have tried to separated these two cases and give different error messages http://gwt-code-reviews.appspot.com/876801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add error message when non-static inner class throws NoSuchMethodException (issue876801)

2010-09-15 Thread zhuyi
http://gwt-code-reviews.appspot.com/876801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add error message when non-static inner class throws NoSuchMethodException (issue876801)

2010-09-15 Thread scottb
Be sure your eclipse format settings are corrent as per trunk/eclipse/README.txt. http://gwt-code-reviews.appspot.com/876801/diff/4001/5001 File dev/core/src/com/google/gwt/dev/shell/ModuleSpace.java (right): http://gwt-code-reviews.appspot.com/876801/diff/4001/5001#newcode478

[gwt-contrib] Re: GWT Development shell no longer cuts off the Launch Default Browser and Copy to Clipboard (issue758801)

2010-09-15 Thread knorton
Possible to throw a screenshot comparison up on http://imgur.com/? On 2010/09/15 19:16:00, jat wrote: On Wed, Sep 15, 2010 at 3:10 PM, mailto:con...@google.com wrote: fred, i'd love to see this go in. LGTM. My objection to it as written revolves around wasting vertical space when the URL

[gwt-contrib] Re: Reduce DevMode memory footprint by using a WeakInterner for potentially duplicated strings (issue870801)

2010-09-15 Thread scottb
High level, this seems like a good direction. My only concern is that this feels a little... haphazard. I think as a future direction, we need to figure out some kind of overall strategy for what gets interned, and where. Kind of like deciding on callee-save vs. caller-save registers, or the

[gwt-contrib] Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-15 Thread rchandia
Reviewers: amitmanjhi, Description: Issue ROO-954: Support for transmitting stack traces for sever exceptions. Please review this at http://gwt-code-reviews.appspot.com/886801/show Affected files: M user/src/com/google/gwt/requestfactory/client/impl/AbstractRequest.java M

[gwt-contrib] Re: Reduce DevMode memory footprint by using a WeakInterner for potentially duplicated strings (issue870801)

2010-09-15 Thread conroy
http://gwt-code-reviews.appspot.com/870801/diff/1/3 File dev/core/src/com/google/gwt/core/ext/typeinfo/JAbstractMethod.java (right): http://gwt-code-reviews.appspot.com/870801/diff/1/3#newcode245 dev/core/src/com/google/gwt/core/ext/typeinfo/JAbstractMethod.java:245: return

[gwt-contrib] Re: Add error message when non-static inner class throws NoSuchMethodException (issue876801)

2010-09-15 Thread zhuyi
http://gwt-code-reviews.appspot.com/876801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add error message when non-static inner class throws NoSuchMethodException (issue876801)

2010-09-15 Thread zhuyi
Changed the code according to Scott's comments http://gwt-code-reviews.appspot.com/876801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Optimize ResourceOracle refresh by doing multiple oracles at the same time (issue887801)

2010-09-15 Thread conroy
Reviewers: scottb, Keith, Description: Optimize ResourceOracle refresh by doing multiple oracles at the same time Please review this at http://gwt-code-reviews.appspot.com/887801/show Affected files: M dev/core/src/com/google/gwt/dev/cfg/ModuleDef.java M

[gwt-contrib] Add server side deobfuscation of stack traces to RF Remote log handler (issue867802)

2010-09-15 Thread unnurg
Reviewers: fredsa, Description: Add server side deobfuscation of stack traces to RF Remote log handler Please review this at http://gwt-code-reviews.appspot.com/867802/show Affected files: M samples/dynatablerf/src/com/google/gwt/sample/dynatablerf/DynaTableRf.gwt.xml M

[gwt-contrib] Re: Reduce DevMode memory footprint by using a WeakInterner for potentially duplicated strings (issue870801)

2010-09-15 Thread conroy
http://gwt-code-reviews.appspot.com/870801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add error message when non-static inner class throws NoSuchMethodException (issue876801)

2010-09-15 Thread scottb
LG with nit. http://gwt-code-reviews.appspot.com/876801/diff/11001/12001 File dev/core/src/com/google/gwt/dev/shell/ModuleSpace.java (right): http://gwt-code-reviews.appspot.com/876801/diff/11001/12001#newcode481 dev/core/src/com/google/gwt/dev/shell/ModuleSpace.java:481: if (resolvedClass !=

Re: [gwt-contrib] [google-web-toolkit] r8780 committed - Fixes https://jira.springsource.org/browse/ROO-1213 - Hide Property fr...

2010-09-15 Thread Patrick Julien
On Wed, Sep 15, 2010 at 4:45 PM, Patrick Julien pjul...@gmail.com wrote: Oh, and forgot to mention, that the root problem is of course this: public String getValue(R object) {    ProxyImpl proxyImpl = (ProxyImpl) object;    return renderer.render(proxyImpl.Tget(property, String.class));  }

[gwt-contrib] [google-web-toolkit] r8787 committed - Fixes speedTracerLogger.markTimline call, updates statistics to...

2010-09-15 Thread codesite-noreply
Revision: 8787 Author: zun...@google.com Date: Wed Sep 15 10:32:35 2010 Log: Fixes speedTracerLogger.markTimline call, updates statistics to capture the time used by JavaScript optimizers. Review at http://gwt-code-reviews.appspot.com/882801

[gwt-contrib] [google-web-toolkit] r8788 committed - Add Guava and streamhtmlparser, as needed by SafeHtmlTemplate....

2010-09-15 Thread codesite-noreply
Revision: 8788 Author: j...@google.com Date: Wed Sep 15 13:49:47 2010 Log: Add Guava and streamhtmlparser, as needed by SafeHtmlTemplate. Patch by: xtof Review by: jat http://code.google.com/p/google-web-toolkit/source/detail?r=8788 Added: /tools/lib/guava /tools/lib/guava/guava-r06

[gwt-contrib] Re: Add error message when non-static inner class throws NoSuchMethodException (issue876801)

2010-09-15 Thread zhuyi
http://gwt-code-reviews.appspot.com/876801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Reduce DevMode memory footprint by using a WeakInterner for potentially duplicated strings (issue870801)

2010-09-15 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/870801/diff/1/3 File dev/core/src/com/google/gwt/core/ext/typeinfo/JAbstractMethod.java (right): http://gwt-code-reviews.appspot.com/870801/diff/1/3#newcode245 dev/core/src/com/google/gwt/core/ext/typeinfo/JAbstractMethod.java:245: return

Re: [gwt-contrib] [google-web-toolkit] r8780 committed - Fixes https://jira.springsource.org/browse/ROO-1213 - Hide Property fr...

2010-09-15 Thread Pascal Patry
On Wednesday, September 15, 2010 16:16:06 Patrick Julien wrote: public String getValue(R object) { -return renderer.render(object.get(property)); +ProxyImpl proxyImpl = (ProxyImpl) object; +return renderer.render(proxyImpl.Tget(property, String.class)); } This blows up on

[gwt-contrib] Re: Add error message when non-static inner class throws NoSuchMethodException (issue876801)

2010-09-15 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/876801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Make DynaTableRf use a ListEditor for the favorites. (issue888801)

2010-09-15 Thread bobv
Reviewers: rjrjr, Message: Review requested. Description: Make DynaTableRf use a ListEditor for the favorites. Fix potential NPE's in AED.Chain. Widen RequestFactoryEditorDriver's type bound to allow it to drive more than just EntityProxy types. Missed Label when adding IsEditor to existing

[gwt-contrib] Re: Add server side deobfuscation of stack traces to RF Remote log handler (issue867802)

2010-09-15 Thread fredsa
http://gwt-code-reviews.appspot.com/867802/diff/1/5 File user/src/com/google/gwt/logging/client/SimpleRemoteLogHandler.java (right): http://gwt-code-reviews.appspot.com/867802/diff/1/5#newcode78 user/src/com/google/gwt/logging/client/SimpleRemoteLogHandler.java:78: record,

[gwt-contrib] Re: Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-15 Thread rchandia
http://gwt-code-reviews.appspot.com/886801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8789 committed - Optimize ResourceOracle refresh by doing multiple oracles at the same ...

2010-09-15 Thread codesite-noreply
Revision: 8789 Author: con...@google.com Date: Wed Sep 15 11:45:41 2010 Log: Optimize ResourceOracle refresh by doing multiple oracles at the same time Review at http://gwt-code-reviews.appspot.com/887801 http://code.google.com/p/google-web-toolkit/source/detail?r=8789 Modified:

Re: [gwt-contrib] [google-web-toolkit] r8780 committed - Fixes https://jira.springsource.org/browse/ROO-1213 - Hide Property fr...

2010-09-15 Thread Patrick Julien
using this as tmp work around for now: package com...workarounds; import com.google.gwt.app.place.PropertyColumn; import com.google.gwt.requestfactory.client.impl.ProxyImpl; import com.google.gwt.requestfactory.shared.EntityProxy; import com.google.gwt.text.shared.Renderer; public final class

[gwt-contrib] Remove SyncResults. Use EntityProxyId and RequestFactory.find(EntityProxyId) (issue887802)

2010-09-15 Thread amitmanjhi
Reviewers: rjrjr, Description: Remove SyncResults. Use EntityProxyId and RequestFactory.find(EntityProxyId) instead of the id field in EntityProxy. Please review this at http://gwt-code-reviews.appspot.com/887802/show Affected files: M

[gwt-contrib] Re: r8790 committed - Update javadoc for 2.1M3...

2010-09-15 Thread Thomas Broyer
On 16 sep, 00:28, codesite-nore...@google.com wrote: Revision: 8790 Author: j...@google.com Date: Wed Sep 15 15:19:48 2010 Log: Update javadoc for 2.1M3 Thanks! ;-) /me time to add links to the new classes in my blog posts ;-) --

[gwt-contrib] [google-web-toolkit] r8791 committed - Moved Property and EnumProperty from the...

2010-09-15 Thread codesite-noreply
Revision: 8791 Author: mmen...@google.com Date: Wed Sep 15 12:32:43 2010 Log: Moved Property and EnumProperty from the com.google.gwt.requestfactory.client.impl package to com.google.gwt.requestfactory.shared.impl package. Review at http://gwt-code-reviews.appspot.com/881801 Review by:

[gwt-contrib] Re: r8790 committed - Update javadoc for 2.1M3...

2010-09-15 Thread Thomas Broyer
On 16 sep, 00:34, Thomas Broyer t.bro...@gmail.com wrote: On 16 sep, 00:28, codesite-nore...@google.com wrote: Revision: 8790 Author: j...@google.com Date: Wed Sep 15 15:19:48 2010 Log: Update javadoc for 2.1M3 Thanks! ;-) /me time to add links to the new classes in my blog posts

[gwt-contrib] [google-web-toolkit] r8792 committed - Removes @Override annotations on methods implementing interfaces....

2010-09-15 Thread codesite-noreply
Revision: 8792 Author: sp...@google.com Date: Wed Sep 15 13:17:02 2010 Log: Removes @Override annotations on methods implementing interfaces. They don't compile with a Java 1.5 compiler. Review at http://gwt-code-reviews.appspot.com/884801 Review by: rj...@google.com

Re: [gwt-contrib] [google-web-toolkit] r8780 committed - Fixes https://jira.springsource.org/browse/ROO-1213 - Hide Property fr...

2010-09-15 Thread Miguel Méndez
Thanks for spotting that Patrick. I'll get the code updated. On Wed, Sep 15, 2010 at 5:54 PM, Patrick Julien pjul...@gmail.com wrote: using this as tmp work around for now: package com...workarounds; import com.google.gwt.app.place.PropertyColumn; import

[gwt-contrib] [google-web-toolkit] r8793 committed - Ugly hack to address the RequestFactory tests being constructed around...

2010-09-15 Thread codesite-noreply
Revision: 8793 Author: b...@google.com Date: Wed Sep 15 15:23:04 2010 Log: Ugly hack to address the RequestFactory tests being constructed around a static singleton instance not playing nicely when testing with multiple browsers. Patch by: bobv Review by: rjrjr

[gwt-contrib] Re: Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-15 Thread bobv
http://gwt-code-reviews.appspot.com/886801/diff/3001/4005 File user/src/com/google/gwt/requestfactory/shared/Receiver.java (right): http://gwt-code-reviews.appspot.com/886801/diff/3001/4005#newcode57 user/src/com/google/gwt/requestfactory/shared/Receiver.java:57: } The formatting in this class

[gwt-contrib] Re: Make DynaTableRf use a ListEditor for the favorites. (issue888801)

2010-09-15 Thread bobv
http://gwt-code-reviews.appspot.com/01/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Make DynaTableRf use a ListEditor for the favorites. (issue888801)

2010-09-15 Thread bobv
It's a shame that we can't use cells here instead of generating a widget per editor. Given our paucity of cells and abundance of widgets, I don't that relying only on a cell based approach would fly this week. But do you think we will be able to retrofit a CellEditorSource, something that

Re: [gwt-contrib] Re: Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-15 Thread Ray Ryan
Whoa, what's going on here? We don't want stack traces going from the server to the client, just the other direction. Amit's design explicitly does not call for sending stack traces back. Did he show you the design wave? On Wed, Sep 15, 2010 at 6:42 PM, b...@google.com wrote:

[gwt-contrib] Fixed a bug in PropertyColumn introduced by r8780. PropertyColumn needs access to the underlyin... (issue889801)

2010-09-15 Thread mmendez
Reviewers: rjrjr, Description: Fixed a bug in PropertyColumn introduced by r8780. PropertyColumn needs access to the underlying class literals in order to get the value to render. Please review this at http://gwt-code-reviews.appspot.com/889801/show Affected files: M

Re: [gwt-contrib] Re: Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-15 Thread Ray Ryan
Here's the spec: https://wave.google.com/wave/waveref/googlewave.com/w+UnRfCRd2C On Wed, Sep 15, 2010 at 7:27 PM, Ray Ryan rj...@google.com wrote: Whoa, what's going on here? We don't want stack traces going from the server to the client, just the other direction. Amit's design explicitly

[gwt-contrib] Re: Fixed a bug in PropertyColumn introduced by r8780. PropertyColumn needs access to the underlyin... (issue889801)

2010-09-15 Thread rjrjr
LGTM Not least because soon enough we'll code gen that kind of thing. http://gwt-code-reviews.appspot.com/889801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Remove SyncResults. Use EntityProxyId and RequestFactory.find(EntityProxyId) (issue887802)

2010-09-15 Thread rjrjr
Amit, https://jira.springsource.org/browse/ROO-1238 includes and fix under-reporting in its title, and my understanding is that this is addressed by your design at https://wave.google.com/wave/waveref/googlewave.com/w+ywx8dL_XC , in particular the portion where you talk about using version

[gwt-contrib] [google-web-toolkit] r8794 committed - Fixed a bug in PropertyColumn introduced by r8780. PropertyColumn nee...

2010-09-15 Thread codesite-noreply
Revision: 8794 Author: mmen...@google.com Date: Wed Sep 15 17:06:43 2010 Log: Fixed a bug in PropertyColumn introduced by r8780. PropertyColumn needs access to the underlying class literals in order to get the value to render. Review at http://gwt-code-reviews.appspot.com/889801 Review

[gwt-contrib] Re: Remove SyncResults. Use EntityProxyId and RequestFactory.find(EntityProxyId) (issue887802)

2010-09-15 Thread Amit Manjhi
That portion has not been fixed. I was planning to get to it after this patch. I prioritized this patch because this patch makes an api change, where as the under-reporting is an implementation bug. Since it is unlikely that I will get to the under-reporting bug today, I will create another bug

[gwt-contrib] [google-web-toolkit] r8795 committed - Add server side deobfuscation of stack traces to RF Remote log handler...

2010-09-15 Thread codesite-noreply
Revision: 8795 Author: unn...@google.com Date: Wed Sep 15 17:53:58 2010 Log: Add server side deobfuscation of stack traces to RF Remote log handler Review at http://gwt-code-reviews.appspot.com/867802 Review by: j...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8795

[gwt-contrib] Re: Remove SyncResults. Use EntityProxyId and RequestFactory.find(EntityProxyId) (issue887802)

2010-09-15 Thread amitmanjhi
http://gwt-code-reviews.appspot.com/887802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add streaming HTML parser library to tools/lib, as well as the guava library it depends on. (issue850801)

2010-09-15 Thread xtof
http://gwt-code-reviews.appspot.com/850801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Make key provider a constructor argument to Cell widgets and selection models (issue885801)

2010-09-15 Thread Ray Ryan
LGTM On Wed, Sep 15, 2010 at 11:23 AM, r...@google.com wrote: Reviewers: rjrjr, Description: Make key provider a constructor argument to Cell widgets and selection models Attempt to fix an IndexOutOfBounds and ClassCast exception in ExpenseDetails.java Please review this at