[gwt-contrib] SelectionEvent protected constructor

2010-02-19 Thread Nathan Wells
Is there a reason SelectionEvent has only a protected constructor? Usually, when GWT APIs seem unnecessarily restrictive, it's because you want us to think before doing something that might be stupid. If that's the case here, can anyone explain why? It's not like it actually prevents me from insta

[gwt-contrib] Re: when-linker-added

2010-02-19 Thread Lex Spoon
Hey, Bob, This patch is ready for review. It's to support cross-site runAsync: LoadingStrategy is a deferred binding that will end up depending on which linker is active. -Lex -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] when-linker-added

2010-02-19 Thread spoon
Reviewers: robertvawter, Description: Supports a new tag in GWT module files. Please review this at http://gwt-code-reviews.appspot.com/150801 Affected files: dev/core/src/com/google/gwt/dev/CompilePerms.java dev/core/src/com/google/gwt/dev/Link.java dev/core/src/com/google/gwt/dev/Preco

[gwt-contrib] Re: Comment on ValueStoreAndRequestFactory in google-web-toolkit

2010-02-19 Thread codesite-noreply
Comment by andrew.pietsch: I've posted this to both the wave and wiki. In looking at using !ValueStore with pectin I think it looks pretty promising (which is nice for me since I have no desire to write my own backend binding/CRUD layer). From what I can see it should be relatively easy t

Re: [gwt-contrib] Re: First shot at server-side i18n compatibility layer

2010-02-19 Thread John Tamplin
On Fri, Feb 19, 2010 at 3:32 PM, Todd Vierling wrote: > Hm. I think that one thing that would be nice here is a way for > server-side code to plug in a replacement for GWT.create(), allowing > the server side to give it a valid function. At that point, any > implementation(s) like these could u

[gwt-contrib] Re: Comment on DataBackedWidgetsDesign in google-web-toolkit

2010-02-19 Thread codesite-noreply
Comment by pstockley1: The latest committed version of Bike Shed doesn't seem to work. I get the following error when trying to run the stock sample: com.google.appengine.tools.development.LocalResourceFileServlet doGet WARNING: No file found for: /stocks/stock It worked OK before I got the

[gwt-contrib] Re: First shot at server-side i18n compatibility layer

2010-02-19 Thread Todd Vierling
On Feb 19, 2:45 pm, John Tamplin wrote: > I am also using a reflective proxy implementation like this (with plurals > support), and I mentioned it here about a year ago.  However, a reflective > proxy implementation is slow for heavily loaded servers, so I have rewritten > it to use bytecode gener

Re: [gwt-contrib] First shot at server-side i18n compatibility layer

2010-02-19 Thread John Tamplin
On Wed, Feb 17, 2010 at 6:19 PM, Todd Vierling wrote: > I've uploaded an implementation to this group's file area: > > > http://groups.google.com/group/google-web-toolkit-contributors/web/server-side-i18n-rev1.zip > > Basically this is a server-side layer that can produce > java.lang.reflect.Prox

[gwt-contrib] [google-web-toolkit] r7603 committed - Patch refactors SessionHandler and BrowserChannelClient to enable OOPH...

2010-02-19 Thread codesite-noreply
Revision: 7603 Author: amitman...@google.com Date: Fri Feb 19 06:35:15 2010 Log: Patch refactors SessionHandler and BrowserChannelClient to enable OOPHM clients other than HtmlUnit. Removes need for UnsupportedOperationException and adds generics to SessionHandler. Patch by: t.bro...@gmail.com

[gwt-contrib] [google-web-toolkit] r7602 committed - Fix for AsyncProxy of top-level types, for which isStatic()...

2010-02-19 Thread codesite-noreply
Revision: 7602 Author: fabb...@google.com Date: Fri Feb 19 06:22:45 2010 Log: Fix for AsyncProxy of top-level types, for which isStatic() returns false. Only non-static *member* types should error. See http://gwt-code-reviews.appspot.com/149801 Review by: b...@google.com http://code.google.com

[gwt-contrib] Announcing GWT 2.0.3 Release Candidate

2010-02-19 Thread John LaBanca
Google Web Toolkit 2.0.3 RC is ready for you to download and try out: http://google-web-toolkit.googlecode.com/files/gwt-2.0.3.zip GWT 2.0.3 fixes two important bugs: - Auto-hide code in PopupPanel throws NullPointException if no history iframe is present http://code.google.com/p/google-web-tool

[gwt-contrib] First shot at server-side i18n compatibility layer

2010-02-19 Thread Todd Vierling
I've uploaded an implementation to this group's file area: http://groups.google.com/group/google-web-toolkit-contributors/web/server-side-i18n-rev1.zip Basically this is a server-side layer that can produce java.lang.reflect.Proxy instances of LocalizableResource (Constants and Messages) interfac

[gwt-contrib] Y-Axis scale chopped off in the chart.

2010-02-19 Thread Mak
Hi All I am using the visualization API within GWT to generate line charts. For some reason, the left side of the Y-AXIS gets chopped off. The values in the scales are not readable. Please refer to the screen shot below. https://docs.google.com/leaf?id=0B0npd6X58gt1Y2Q1MDFhYzUtZGRkNS00ZThhLThmZjE

[gwt-contrib] JSON.parse vs. eval

2010-02-19 Thread mozSte
Hi all, I'm a newbie, so excuse me if this was posted/solved already. I have a quick suggestion on the implementation of a safeEval (or safer, anyway) parsing to the JSONUtils class. public static native T safeEval(String json) /*-{ if(JSON) { return JSON.parse(json)