Re: chrome - prompting me to install gwt plugin but already installed

2012-04-08 Thread Jeff Schnitzer
On Sat, Apr 7, 2012 at 8:39 PM, Jens jens.nehlme...@gmail.com wrote: You can still use Safari 5.0.5 and possibly 5.0.6 (see: https://groups.google.com/d/msg/google-web-toolkit/uIJ5VqmxO_s/WwHQK0YtaFMJ and http://support.apple.com/kb/DL1422). I have both Safari versions installed side by side

Re: DatePicker next/prev month events

2012-04-08 Thread Nikola Markovic
It actually worked! Thanks alot guys. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/9kP4JreoE64J. To post to this group, send email to

Re: Client/Server communication. GWT-RPC ? GIlead ? Dozer ? RequestFactory ?

2012-04-08 Thread fabio
Thank you Joseph, I agree with you concerning the long term benefits of the DTO approach. But there are some concerns too: - how do you make the transtyping ? Dedidcated framework like Doze ? Hand coded approach ? Direct building using HQL ? - In my experience (accounting apps) the

Re: Client/Server communication. GWT-RPC ? GIlead ? Dozer ? RequestFactory ?

2012-04-08 Thread fabio
Thanks Sanjiv, After reading your post that seems to recommend SmartGWT EE is the solution to this problem, I must say that this solution seems very close to what RequestFactory implements. Truely yours, Le samedi 7 avril 2012 20:00:46 UTC+2, Sanjiv Jivan a écrit : Hi fabio, I've shared

Re: Client/Server communication. GWT-RPC ? GIlead ? Dozer ? RequestFactory ?

2012-04-08 Thread fabio
Hello Daniel Let me be explain (maybe some of my assumptions are wrong, so don't hesitate to correct me :-) ): - The extra plumbing is pretty heavy, one extra interface for each entity you want to pass - No compile-time checking between properties in the enity and in the client

Re: chrome - prompting me to install gwt plugin but already installed

2012-04-08 Thread sanika joshi
Uninstall the current version of chrome you have and reinstall a recent version.Hope that will help. On Sun, Apr 8, 2012 at 1:52 AM, Jeff Schnitzer j...@infohazard.org wrote: On Sat, Apr 7, 2012 at 8:39 PM, Jens jens.nehlme...@gmail.com wrote: You can still use Safari 5.0.5 and possibly

GWT data grid isn't presented

2012-04-08 Thread benb
Hello, I'm trying to switch from CellTable to DataGrid. The actual change was very easy (APIs are the quite the same) - but I cannot get the grid to be visible without setting explicitly its width and height. In the CellTable it was enough to set width and height to 100% - and that is the

Re: issues in running gwt app on ie 8

2012-04-08 Thread Jens
Your IE8 has Chrome Frame installed. Make sure its enabled. If its disabled you better uninstall Chrome Frame because GWT seems to give you the Webkit permutation for IE (GWT sees chromeframe in the user agent and assumes its active). -- J. Am Sonntag, 8. April 2012 06:42:55 UTC+2 schrieb

Re: chrome - prompting me to install gwt plugin but already installed

2012-04-08 Thread Jens
How can I get Chrome working? Good question. I have the same setup as you and Chrome works well for me on all Macs I am working with. Have you tried to delete Chrome and all its com.google.chrome.*.plist files in ~/Library/Preferences and then reinstall it along with the GWT plugin? Do

Client/Server communication. GWT-RPC ? GIlead ? Dozer ? RequestFactory ?

2012-04-08 Thread Thomas Broyer
I'd recommend request factory. The issues with rpc are: * rpc strongly couples your client and server, so you face invocation exceptions every time you deploy a server side change. RF on the other hand is a protocol, not an RPC API. * generator bakes every subclass of your objects on the

Re: HTML5 Offline Web-Application

2012-04-08 Thread Joshua Kappon
Followed this thread, and also stumbled the same problem. anyone solved this? On Saturday, September 3, 2011 11:37:57 AM UTC+3, -sowdri- wrote: Hi, The above solution was working fine, i even deployed a version and tested it live! But suddenly i've started getting this error: DevMode

Re: Client/Server communication. GWT-RPC ? GIlead ? Dozer ? RequestFactory ?

2012-04-08 Thread Jesse Hutton
Hi fabio, RequestFactory is great if you have complex data structures (and lots of them) to pass back and forth between the client and the server. It does take more boilerplate to get simple things done, but once you pass a certain threshold of complexity it pays off big, because it will

Re: Client/Server communication. GWT-RPC ? GIlead ? Dozer ? RequestFactory ?

2012-04-08 Thread Thomas Broyer
The extra interface is a false problem: how's it different from dtos? You can also have several interfaces for a single domain object, each one exposing different fields. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: chrome - prompting me to install gwt plugin but already installed

2012-04-08 Thread Jeff Schnitzer
On Sun, Apr 8, 2012 at 9:46 AM, Jens jens.nehlme...@gmail.com wrote:  How can I get Chrome working? Good question. I have the same setup as you and Chrome works well for me on all Macs I am working with. Ok, that's the first piece of information I needed - it *should* work. I eventually

Re: Client/Server communication. GWT-RPC ? GIlead ? Dozer ? RequestFactory ?

2012-04-08 Thread fabio
OK I'm pretty convinced now, I will give RF a try ! Le dimanche 8 avril 2012 16:16:14 UTC+2, Thomas Broyer a écrit : I'd recommend request factory. The issues with rpc are: * rpc strongly couples your client and server, so you face invocation exceptions every time you deploy a server side

A problem with richtextareas in Firefox 11.0

2012-04-08 Thread Niki
Hi, I am developing a web-application with GWT 2.4.It was working pretty well in all major browsers.Until I upgraded my Firefox 8 with Firefox 11.0. Then only in FF 11 I noticed this problem. The app has one TabPanel at the top.In every tab there are different number of Richtextarea-s. After

Migrating scheme...

2012-04-08 Thread Lie Algebra
Hi fellows, I am thinking about migrating a gwt project on which I am working for 3 years now, it is written in gwt 1.5 and relies on a external library of customed widgets. I am also planning to upgrade my eclipse version, from ganymede to indigo, and indeed, the jdk. I am using ant for

GWT Cross Browser Support

2012-04-08 Thread rkb
I have a webe page developped using GWT. Used Horizontal, Vertical, Absolute Panels with borders. The Paanels has backgrond images. The size, font etc are given using Style sheet, and measurmen given is in Pixes. The page rendersing is different in IE than in Google Chrome. The Google Chrome

Re: Client/Server communication. GWT-RPC ? GIlead ? Dozer ? RequestFactory ?

2012-04-08 Thread Roy Yeung
I prefer gwt-rpc. Baiscally, the main issue you finally meet is how to reproduce the same object/domain model across gwt and server side. Using gwt-rpc, you can shared the code. Sent from my iPhone On 7 Apr, 2012, at 7:44 PM, fabio njo...@gmail.com wrote: I'm just about to start a major web

Re: how can i add a double click event to Tree component

2012-04-08 Thread Dayananda B V
can anybody help me on this regard -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/MIt3B5aDw1wJ. To post to this group, send email to

Editor onPropertyChange

2012-04-08 Thread Andrey Minogin
How can I handle property change event on an editor? Is this feature implemented? It seems that com.google.gwt.editor.client.ValueAwareEditor.onPropertyChange(String... paths) is not being called from anywhere. -- You received this message because you are subscribed to the Google Groups

Using System.getProperty(User.Name) in GWT

2012-04-08 Thread Saty
I would like to use System.getProperty(User.Name) in GWT. The server will be running on iSeries platform. I am looking for ways to do this without introducing new framework . -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Is there any possibility to create ImageResource instance by resource file name (or other string identifier)?

2012-04-08 Thread eugene.bochkov
Hello guys, Is there any possibility to create ImageResource instance by resource file name (or other string identifier)? As far as I undestand the common way to retrieve an instance of ImageResource for some image is an appropriate method call like: public interface MyResources extends

Re: Drag and Drop API in GWT 2.4

2012-04-08 Thread Haja RAVELOMANANA
Hello Ludovit, As you said, gwtquery supports dnd cell to cell. Is there any plan in GWT to manage it in native ? if so, on which version ? Thanks, Haja On 25 fév, 12:55, Martones ludovit.marton...@gmail.com wrote: Hi Stagirus, if you dont need to drag Widgets you shall be theoretically able

Re: Can't open my code with the GWT Designer

2012-04-08 Thread Adam Trojnar
On ubuntu 12.04 with OpenJDK and Java version 1.7.1 I can't open GWT DESIGNER to :( but on ubuntu 11.10 with Java 1.7.3 GWT Designer working good. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

problem with CSS

2012-04-08 Thread Assiya EL
Hello Everyone, first of all I'm developing on Windows with Eclipse 3.7, GWT 2.4.0. i developes a menu with gwt and i want to add a CSS style , but i'm beginner in CSS and i don(t know how to add it to my menubar and menuitem , thanks else how do i look for a menu with the solution uibinder

Re: App Engine Connected

2012-04-08 Thread hai bison
Hi Shaka, For example you have 2 projects: c2dm-Android, c2dm-AppEngine. About first error: - Right click on c2dm-Android, select Properties - Java Build Path - Source. - Select c2dm-Android/shared - Edit. Then browse to c2dm-AppEngine/shared. About second error: Currently I

Editor onPropertyChange

2012-04-08 Thread Andrey Minogin
How can I handle property change in an Editor? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/5Csx6ivfQ24J. To post to this group, send email to

Re: App Engine Connected

2012-04-08 Thread hai bison
About first error: - Right click on your Android sample project - Properties - Java Build Path - tab Source. - Select dir named shared - Edit. Then browse to your sample App Engine shared dir. About the second error: Currently I don't know how to fix it with default builder of

Re: how can i add a double click event to Tree component

2012-04-08 Thread Dayananda B V
can anybody help me on this. On Tuesday, April 3, 2012 11:34:01 AM UTC+5:30, dayanandabv wrote: Hi All, Very good morning, how can I add a double click event to Tree component. please help on this regard. appreciate your help. Thanks Daya -- You received this message because

GWT with a non-java server

2012-04-08 Thread Traktor Toni
Hi guys, I'm new to GWT and pretty confused on how to include it into my workflow. I just ran the first sample tutorial. So I understand how the whole deal works with the embedded jetty server. So far so good. But naturally I have my own non-java server, and I want to use that one to respond

@me called by anonymous error when using google plus api inside a gwt project

2012-04-08 Thread Nahuel Soldevilla
I'm using the [google api javascript client](http://code.google.com/p/ google-api-javascript-client/wiki/GettingStarted) to get information about the user profile inside a gwt project hosted in google app engine. In localhost, the data is being retrieved correctly. I get a json with the google

File uploader and processing

2012-04-08 Thread Jelle Vreeker
Hello, I'm uploading files using gwt and a servlet to write the files to disk. But I need to process the files this can take some while. What can I use for this quartz or maybe spring taskexcutor. Is there a sample for this ? Thanks Jelle vreeker -- You received this message because you

Re: GWT Performance : Good or Bad ?

2012-04-08 Thread Fabrice
I do this quickly : http://gxt3vsgwt.appspot.com/ thanks to code source of previous demo, by replacing GXT 2.2.5 with Ext GWT 3.0 Release Candidate (http://dev.sencha.com/deploy/gxt-3.0.0- rc.zip). Performance are better ! On 27 mar, 16:12, dhoffer dhoff...@gmail.com wrote: Regarding GXT I

Re: GWT with a non-java server

2012-04-08 Thread Andy Stevko
That is a pretty broad question. What is your non-java server? What protocols does it support? Ajax etc is not a communications protocol. On Fri, Apr 6, 2012 at 4:58 AM, Traktor Toni trustthe...@googlemail.comwrote: Hi guys, I'm new to GWT and pretty confused on how to include it into my

Re: HTML5 Offline Web-Application

2012-04-08 Thread Shawn Brown
Hi, Followed this thread, and also stumbled the same problem. anyone solved this? DevMode warning: Clobbering appcache.nocache.manifest to allow debugging. Recompile before deploying your app! And the appcache.nocache.manifest_user-agent doesn't contain the js file name! Any idea what

LoadTimeWeaver using embedded jetty

2012-04-08 Thread Kulnor
Trying to run a GWT application that uses Spring Data JPA server side and therefore needs a loadTimeWeaver. I'm adding the following to my Eclipse Run Configuration for the Web Application

Online GWT Designer (GWT Designer Project)

2012-04-08 Thread sachin sreenivasan
Hello people, I just remembered that about 2 - 3 years ago, someone had done a GWT application which worked like a designer. Once could go open that link in a browser and start designing the page and look back at the source code. They had implemented a drag-n-drop using the dnd jar and had

[gwt-contrib] Re: Add support for soft permutations to SingleScriptLinker. (issue1678803)

2012-04-08 Thread jat
LGTM It seems like there should be some test for this to make sure it keeps working. Could you extend SingleScriptLinkerTest to make sure that it handles collapsing soft permutations? http://gwt-code-reviews.appspot.com/1678803/ --

[gwt-contrib] Fix PopupPanel.center when content has changed (issue1573803)

2012-04-08 Thread rdayal
Looks good to me, but I'd like John to take a look. http://gwt-code-reviews.appspot.com/1573803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Fix dtd for collapse-property (issue1580804)

2012-04-08 Thread rdayal
LGTM. http://gwt-code-reviews.appspot.com/1580804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add font-face support to CssResource. (issue1502806)

2012-04-08 Thread acleung
On 2012/04/05 21:33:43, acleung wrote: On 2011/11/14 08:51:56, tbroyer wrote: On 2011/07/28 21:11:18, unnurg wrote: LGTM It's been more than 3 months and still not committed :-( bobv has left Google for other quests and adventures. I'll pick up this change and submit it.

[gwt-contrib] Re: Use one common implementation of UserAgentProperty when runtime (issue1680803)

2012-04-08 Thread jat
LGTM http://gwt-code-reviews.appspot.com/1680803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix dtd for collapse-property (issue1580804)

2012-04-08 Thread rdayal
On 2012/04/05 21:55:42, rdayal wrote: LGTM. Submitted. http://gwt-code-reviews.appspot.com/1580804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Make form event getTypes public. (issue1582803)

2012-04-08 Thread rdayal
Submitted. http://gwt-code-reviews.appspot.com/1582803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixup class literals across fragments (issue1513803)

2012-04-08 Thread zundel
http://gwt-code-reviews.appspot.com/1513803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Avoid Java bottleneck by using explicit Charset for byte[] - String conversions. (issue1632803)

2012-04-08 Thread rdayal
On 2012/04/05 18:59:13, rdayal wrote: Jason, can you look at this one more time? Sorry about the delay. Had to make a couple of changes: 1) You can't map null values in a ConcurrentHashMap. Bad suggestion on my part. 2) It's a change in behavior to pass null into readContent. Changed this to

[gwt-contrib] Add missing DOMImplIE8.cssClearOpacity (issue1615805)

2012-04-08 Thread rdayal
LGTM. http://gwt-code-reviews.appspot.com/1615805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add support for soft permutations to SingleScriptLinker. (issue1678803)

2012-04-08 Thread jat
LGTM http://gwt-code-reviews.appspot.com/1678803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix PopupPanel.center when content has changed (issue1573803)

2012-04-08 Thread rdayal
On 2012/04/06 15:00:31, rdayal wrote: Thanks! On Fri Apr 06 10:52:30 GMT-400 2012, mailto:jlaba...@google.com wrote: LGTM http://gwt-code-reviews.appspot.com/1573803/%3Chttps://www.google.com/url?sa=Dq=http://gwt-code-reviews.appspot.com/1573803/ Submitted.

[gwt-contrib] Re: scheglov pointed out a leak in compilation units in dev mode after a refresh (issue1490801)

2012-04-08 Thread scheglov
On 2012/04/05 19:39:54, rdayal wrote: Ping. Is this patch dead, or do we still want to get this in? I remember that we were not able to push it into release (2.4 ?). But this problem is still causing problems in GWT Designer. http://gwt-code-reviews.appspot.com/1490801/ --

Re: [gwt-contrib] Bean Validation status / future plans?

2012-04-08 Thread Gilberto Pacheco Gallegos
There is another project that seems to be more advanced than current status: http://code.google.com/p/gwt-validation/ ¿Is there a chance to include it's work? -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Issue 6331: Let AutoBean accept numbers for dates and longs (issue1601805)

2012-04-08 Thread rdayal
Ping. Brian, can you take a final look at this? http://gwt-code-reviews.appspot.com/1601805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add font-face support to CssResource. (issue1502806)

2012-04-08 Thread acleung
On 2011/11/14 08:51:56, tbroyer wrote: On 2011/07/28 21:11:18, unnurg wrote: LGTM It's been more than 3 months and still not committed :-( bobv has left Google for other quests and adventures. I'll pick up this change and submit it. http://gwt-code-reviews.appspot.com/1502806/ --

[gwt-contrib] Re: Add support for @font-face CSS declarations. (issue1679803)

2012-04-08 Thread acleung
http://gwt-code-reviews.appspot.com/1679803/diff/1/user/src/com/google/gwt/resources/css/ast/CssFontFace.java File user/src/com/google/gwt/resources/css/ast/CssFontFace.java (right):

[gwt-contrib] Re: Add missing DOMImplIE8.cssClearOpacity (issue1615805)

2012-04-08 Thread rdayal
On 2012/04/06 18:44:50, rdayal wrote: LGTM. Submitted. http://gwt-code-reviews.appspot.com/1615805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding a spot for database column name in Column. Allows us to create an updated SQL statement w... (issue1503806)

2012-04-08 Thread rdayal
Looks like this one is not going to be accepted. @portersi: If you could close this issue, that would be great. http://gwt-code-reviews.appspot.com/1503806/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add StyleInjector.flush (issue1614806)

2012-04-08 Thread rdayal
LGTM http://gwt-code-reviews.appspot.com/1614806/diff/1/user/src/com/google/gwt/dom/client/StyleInjector.java File user/src/com/google/gwt/dom/client/StyleInjector.java (right): http://gwt-code-reviews.appspot.com/1614806/diff/1/user/src/com/google/gwt/dom/client/StyleInjector.java#newcode219

[gwt-contrib] Re: Fix initialization of non-final fields (issue1618807)

2012-04-08 Thread rdayal
@cromwellian: Can you take another look so we can get this in? http://gwt-code-reviews.appspot.com/1618807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Issue 6331: Let AutoBean accept numbers for dates and longs (issue1601805)

2012-04-08 Thread skybrian
http://gwt-code-reviews.appspot.com/1601805/diff/2004/user/src/com/google/web/bindery/autobean/shared/ValueCodex.java File user/src/com/google/web/bindery/autobean/shared/ValueCodex.java (right):

[gwt-contrib] Re: Add support for @font-face CSS declarations. (issue1679803)

2012-04-08 Thread acleung
On 2012/04/05 21:42:05, acleung wrote: Copied from: http://gwt-code-reviews.appspot.com/1502806/ http://gwt-code-reviews.appspot.com/1679803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: scheglov pointed out a leak in compilation units in dev mode after a refresh (issue1490801)

2012-04-08 Thread zundel
On 2012/04/05 19:44:18, rdayal wrote: We're gearing up for a GWT 2.5, so I'd either like to get this in, or close the issue if it will never make it into a GWT release. On Thu Apr 05 15:42:05 GMT-400 2012, mailto:scheg...@google.com wrote: On 2012/04/05 19:39:54, rdayal wrote: Ping.

[gwt-contrib] Re: Fix SC_GATEWAY_TIMEOUT typo (issue1618805)

2012-04-08 Thread rdayal
On 2012/04/06 18:30:56, rdayal wrote: On 2011/12/17 07:00:31, stephenh wrote: LGTM. Submitted. http://gwt-code-reviews.appspot.com/1618805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Make GWT.create/etc usable on server. (issue1677803)

2012-04-08 Thread jat
http://gwt-code-reviews.appspot.com/1677803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Avoid Java bottleneck by using explicit Charset for byte[] - String conversions. (issue1632803)

2012-04-08 Thread rdayal
http://gwt-code-reviews.appspot.com/1632803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add assert for null provided fields, fixes #7024 (issue1602805)

2012-04-08 Thread rdayal
Great, thanks! http://gwt-code-reviews.appspot.com/1602805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Add support for @font-face CSS declarations. (issue1679803)

2012-04-08 Thread acleung
Reviewers: rdayal, Description: Add support for @font-face CSS declarations. Please review this at http://gwt-code-reviews.appspot.com/1679803/ Affected files: M user/src/com/google/gwt/resources/css/CssGenerationVisitor.java M user/src/com/google/gwt/resources/css/GenerateCssAst.java A

[gwt-contrib] Re: Add support for @font-face CSS declarations. (issue1679803)

2012-04-08 Thread rdayal
LGTM. http://gwt-code-reviews.appspot.com/1679803/diff/1/user/src/com/google/gwt/resources/css/ast/CssFontFace.java File user/src/com/google/gwt/resources/css/ast/CssFontFace.java (right):

[gwt-contrib] Re: Issue 6331: Let AutoBean accept numbers for dates and longs (issue1601805)

2012-04-08 Thread skybrian
Hi, I think it's sufficient to test the happy path for the range that currently works and defer testing error conditions for some other time. The point is to make sure we don't accidentally regress to a smaller range and break an app that starts relying on the fix that you've added.

[gwt-contrib] Re: Add assert for null provided fields, fixes #7024 (issue1602805)

2012-04-08 Thread rchandia
On 2012/04/05 19:55:44, rdayal wrote: Rodrigo, has this been submitted? Yes. Submitted as of r10783 http://gwt-code-reviews.appspot.com/1602805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixup class literals across fragments (issue1513803)

2012-04-08 Thread rdayal
Ping. Can we get this review wrapped up? I'd like to push this into GWT 2.5 (or close the issue completely, if not). http://gwt-code-reviews.appspot.com/1513803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add assert for null provided fields, fixes #7024 (issue1602805)

2012-04-08 Thread rdayal
Rodrigo, has this been submitted? http://gwt-code-reviews.appspot.com/1602805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors