Re: elemental2 indexeddb example?

2019-01-27 Thread rhodebump
Thanks, I did make some progress.   I dug around a little in the javadoc 
and found the IndexedDbGlobal, which I was able to use to create a new 
database.


elemental2.indexeddb.IDBFactory indexedDB = 
elemental2.indexeddb.IndexedDbGlobal.indexedDB;

elemental2.indexeddb.IDBOpenDBRequest openDBRequest = indexedDB.open(
"mydbtest", 1.0);


So far so good.


With a open database call, I get a returned object of 
elemental2.indexeddb.IDBOpenDBRequest 
(https://static.javadoc.io/com.google.elemental2/elemental2-indexeddb/1.0.0-RC1/elemental2/indexeddb/IDBOpenDBRequest.html)



In the google documentation that I have found that describes the indexedDB 
open 
operation, 
https://developers.google.com/web/ilt/pwa/working-with-indexeddb#opening_a_database


They provide the following code:

  var dbPromise = idb.open('test-db2', 1, function(upgradeDb) {
console.log('making a new object store');
if (!upgradeDb.objectStoreNames.contains('firstOS')) {
  upgradeDb.createObjectStore('firstOS');
}
  });


I want to register a function to execute when the database is upgraded.  I 
see there is a openDBRequest.onupgradeneeded(), but I just can't the syntax 
right.


elemental2.indexeddb.IDBFactory indexedDB = 
elemental2.indexeddb.IndexedDbGlobal.indexedDB;

elemental2.indexeddb.IDBOpenDBRequest openDBRequest = indexedDB.open(
"mydbtest", 1.0);


//how to i call a function for upgrade?  I want to create some object 
stores.
openDBRequest. onupgradeneeded = doUpgrade();

Thanks for your help.



On Sunday, January 27, 2019 at 5:48:37 AM UTC-5, Thomas Broyer wrote:
>
> Elemental2 API map directly to the native browser APIs, so you'll start 
> with IndexedDBGlobal.indexedDB and walk your way almost exactly like you'd 
> do in JS.
> Javadoc can be found here fwiw: 
> https://javadoc.io/doc/com.google.elemental2/elemental2-indexeddb/1.0.0-RC1
>
> On Sunday, January 27, 2019 at 5:57:44 AM UTC+1, rhodebump wrote:
>>
>>
>> I am interested in using indexeddb from within GWT.  I found the 
>> following library that indicates that it provides indexeddb support 
>> https://github.com/google/elemental2
>>
>>
>> Does anyone have an example of opening a database? 
>>
>>
>> *Thanks,*
>>
>> *Phillip*
>>
>>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


elemental2 indexeddb example?

2019-01-26 Thread rhodebump

I am interested in using indexeddb from within GWT.  I found the following 
library that indicates that it provides indexeddb support 
https://github.com/google/elemental2


Does anyone have an example of opening a database? 


*Thanks,*

*Phillip*



-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


GWT application implemented as Wordpress plugin

2018-04-02 Thread rhodebump


All,

Just wanted to announce that after learning some other web technologies, 
it's nice to come back to GWT.  I feel so much more productive.

That said, I have released a Word Press plugin that uses a GWT application 
for the user interface.  It's open source, and uses the Wordpress REST Api 
and security.  It may be a good starting point for someone if they wanted 
to implement a wordpress plugin with GWT.

https://github.com/rhodebump/forgebiz-closings

https://wordpress.org/plugins/forgebiz-closings/

Sincerely,
Phillip

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: @sprite for background-image only?

2012-10-15 Thread rhodebump
Awesome, i will give it a shot!  Thanks

On Monday, October 8, 2012 8:06:38 PM UTC-4, Thomas Broyer wrote:
>
>
>
> On Monday, October 8, 2012 11:58:05 PM UTC+2, rhodebump wrote:
>>
>> Hello,
>>
>> I am trying to use the @sprite annotation to help reduce my image 
>> downloads.  I have the following css, which uses a "border-image" 
>> property.  I would love to be able to use the sprite annotation, but this 
>> is only for background images.  Is there a way to use 
>> imageresources/cssresources together for the "border-image" property?
>>
>
> Use a DataResource and @url rule:
>
> @url whiteButtonUrl whiteButton;
> .whiteButton {
>   border-image: whiteButtonUrl 0 12 0 12;
> }
>

-- 
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/-/Z_lBGWAJtL4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Googlebot dissing my GWT app

2012-10-15 Thread rhodebump
That meta tag did the trick.  Thanks very much

On Friday, October 12, 2012 8:52:32 AM UTC-4, rhodebump wrote:
>
> I will give that a shot (adding the meta tag).  I did not think that was 
> nessary since all my links on that page did use the hash bang syntax.  
> Thanks very much.  If this works, I literally owe you a case of beer.
>
>
>
> On Friday, October 12, 2012 6:18:23 AM UTC-4, Chris Lercher wrote:
>>
>> A Google search for "site:www.spot...com" [replace the ellipsis] just 
>> returns "www.spot...com".
>>
>> But you don't have that page in your sitemap, and you're not using step 3 
>> "Handle pages without hash fragments" of the Step-by-step guide:
>>
>> In order to make pages without hash fragments crawlable, you include a 
>>> special meta tag in the head of the HTML of your page. The meta tag takes 
>>> the following form:
>>> 
>>
>>
>> Your main page is a dynamic JS-page. Googlebot can't see your links (like 
>> #driver_reports), as they don't appear in the static content of your main 
>> page (it doesn't know about "www.spot...com/#!home" yet, only about 
>> "www.spot...com".
>>
>> Sitemaps just complement a discovery crawl (so that's probably not 
>> enough). Only with the meta tag, googlebot will go to 
>> "www.spot...com?_escaped_fragment_="
>>
>>
>>
>> On Wednesday, October 10, 2012 8:02:05 PM UTC+2, rhodebump wrote:
>>>
>>> Hi,
>>> I have been trying for weeks, but can't get google to update it's index 
>>> for my GWT application. 
>>>
>>

-- 
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/-/l96NR0xMwEwJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Googlebot dissing my GWT app

2012-10-12 Thread rhodebump
I will give that a shot (adding the meta tag).  I did not think that was 
nessary since all my links on that page did use the hash bang syntax.  
Thanks very much.  If this works, I literally owe you a case of beer.



On Friday, October 12, 2012 6:18:23 AM UTC-4, Chris Lercher wrote:
>
> A Google search for "site:www.spot...com" [replace the ellipsis] just 
> returns "www.spot...com".
>
> But you don't have that page in your sitemap, and you're not using step 3 
> "Handle pages without hash fragments" of the Step-by-step guide:
>
> In order to make pages without hash fragments crawlable, you include a 
>> special meta tag in the head of the HTML of your page. The meta tag takes 
>> the following form:
>> 
>
>
> Your main page is a dynamic JS-page. Googlebot can't see your links (like 
> #driver_reports), as they don't appear in the static content of your main 
> page (it doesn't know about "www.spot...com/#!home" yet, only about 
> "www.spot...com".
>
> Sitemaps just complement a discovery crawl (so that's probably not 
> enough). Only with the meta tag, googlebot will go to 
> "www.spot...com?_escaped_fragment_="
>
>
>
> On Wednesday, October 10, 2012 8:02:05 PM UTC+2, rhodebump wrote:
>>
>> Hi,
>> I have been trying for weeks, but can't get google to update it's index 
>> for my GWT application. 
>>
>

-- 
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/-/pBMhxeJJa7wJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Googlebot dissing my GWT app

2012-10-10 Thread rhodebump
Hi,
I have been trying for weeks, but can't get google to update it's index for 
my GWT application.   If i do a google search of my site 
(site:www.spotmouth.com), only my first page comes up.   I have read (many 
many times) the docs for 
https://developers.google.com/webmasters/ajax-crawling/

To summarize, I followed the steps:
1) Updated my site to use the ajax crawlable link format (i.e. 
http://www.spotmouth.com/#menu  ->  http://www.spotmouth.com/#!menu)
2) Implemented htmunit on serverside so that server responds with static 
copy:  http://www.spotmouth.com/?_escaped_fragment_=menu   
3) updated http://www.spotmouth.com/sitemap.xml to use ajax crawable links. 
(ie http://www.spotmouth.com/#!menu)

But if i do a google search of my site (site:www.spotmouth.com), only my 
first page comes up.  Nothing else.
I will literally ship a case of beer to whoever helps me fix this (if your 
state allows it, and I can get it delivered).

If I use the "Fetch as googlebot" tool in webmaster tools for " 
http://www.spotmouth.com/#!menu";, it looks good, that is, a static copy of 
the content is returned. 


Thanks,
Phillip

-- 
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/-/T8ackBrgd5YJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



@sprite for background-image only?

2012-10-08 Thread rhodebump
Hello,

I am trying to use the @sprite annotation to help reduce my image 
downloads.  I have the following css, which uses a "border-image" 
property.  I would love to be able to use the sprite annotation, but this 
is only for background images.  Is there a way to use 
imageresources/cssresources together for the "border-image" property?


Thanks,
Phillip

.whiteButton {
border-image:url(images/whiteButton.png)  0 12 0 12;
-webkit-border-image: url(images/whiteButton.png) 0 12 0 12;
-moz-border-image: url(images/whiteButton.png) 0 12 0 12;
text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0;
}

-- 
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/-/EXoDELm-eFYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Best serverside architecture(framework/stack) to use with GWT for large application...please show me the light

2012-08-29 Thread rhodebump
I love GRAILS and GWT development.  Grails make hibernate development very 
easy for java guys, and grails has hardly any xml "stuff" to deal with.
www.spotmouth.com is an GWT/Grails combo

On Saturday, August 25, 2012 7:48:12 PM UTC-4, GWTter wrote:
>
> Hi all,
>
> I've been doing research on this for the past 2, almost 3 days now. I feel 
> like I've googled everything under the sun on the matter (including these 
> forums) and am almost all tutorialed-out. Before I go into any more details 
> on the question I just want to give a quick overview of the scope and plan 
> for the project to see what will suit it best:
>
> -Large application, non-trivial
> -50+ DB tables
> -Large user base
> -User management/authentication/sessions
> -transactions
> -security
> -MVP (as per GWT recommendation)
> -focus on performance and scalability (naturally :), am using GWT after 
> all)
>
> I've also read and watched all of the best practices on architecture for 
> large applications (Google/GWT).
>
> Now in the last talk I could find on best architecture practices involving 
> GWT was back in 2010 by Ray Ryan in which he states that they don't think 
> JavaBeans and property change events work terribly well so it's better to 
> use DTOs for the Model.
>
> My big questions are if this is still the belief and the recommended 
> route, and if so, what should I be looking at in order to achieve this? a 
> Framework?
>
> My preference would be to keep coding in Java on the serverside since I'm 
> already doing so with GWT on the client. I've been investigating serverside 
> frameworks and seem to have arrive at 2: Seam or Spring? However I can 
> figure out which of these are best suited for the task. All of the doc I've 
> found out there discussing the issue is at the most recent about a year old 
> but most of it is from <=2010 so it makes it even harder to tell 
> considering that both of these frameworks have evolved considerably since 
> then. There's also been the coming of JEE 6.
>
> Can anyone give any insight on who's best suited for the task, or what I 
> should do to fulfill my requirements but stay inline with what is 
> recommended by GWT? I know I only mentioned Seam and Spring since that's 
> what I've been led to mostly, but I'm open to any suggestions that fit what 
> I'm looking for. I've already ruled a couple of solutions such as Spring 
> Roo for this kind of task.
>
> This is my first project of this scale and the last thing I want to do is 
> head down a path and figure out that I've wasted a lot of my and my team's 
> time and energy because of some wrong decisions I made at the get-go.
>
> Thanks a lot in advance for your help, I really just want to figure this 
> out so I can get back to coding instead of googling the ends of the earth 
> ;).
>
> -Seth
>

-- 
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/-/HEM5c0qzo1oJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



writing gwt application to be able to use wordpress/drupal themes?

2012-08-29 Thread rhodebump
Hi,
I have a GWT application that many consider to be ugly (which is my fault 
since I am not a designer).  

One idea that under consideration is the writing of some GWT components, 
such as "Page", "Article", "Footer", etc... that use UIBinder and emit html 
that would match what a product like wordpress or drupal emits.   If I do 
this, any wordpress/drupal theme would be usable for my application.  By 
putting my widgets inside these different types of objects, I could have my 
GWT application look pretty;)

Any thoughts?
Phillip
http://www.spotmouth.com (that's the app)



-- 
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/-/WTwPlIkZifcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Long Polling (aka server push) with JsonpRequestBuilder?

2011-12-13 Thread rhodebump
Hi,
I am trying to implement server push using the idea described here,
http://code.google.com/p/google-web-toolkit-incubator/wiki/ServerPushFAQ

While I have read that one must keep the outbound connection down to
two, I cannot seem to be able to have two simultaneous requests from
JsonpRequestBuilder succeed.

I use httpfox, and both requests return successfully with their json
data, but GWT will throw a SocketTImeoutException for the 2nd
request.  The same request is successful if there I am not doing my
"polling" in another request.

Here's the step process:
1) Make a request #1 using JsonpRequestBuilder.  The server "waits".
2) Make a request #2  JsonpRequestBuilder.  The server responds
(according to httpfox) successfully.
3) GWT reports a com.google.gwt.jsonp.client.TimeoutException for the
request #2
4) Request #1 completes successfully (both httpfox and GWT)

Any thoughts?
Thanks for reading,
Phillip

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Form vs. chunk data to send via JsonpRequestBuilder

2010-06-20 Thread rhodebump
hi,
I need to transfer a image file (which is a url encoded string) to a
third party server.  GWT has a reference to this string (wrote a
library that integrates GWT with Phonegap).

As I see it, I have 2 options:

1) Use the GWT form and put my image string as a hidden form field and
post it to the server.  I would use a second JsonpRequestBuilder to
get the results using some common key in the requests.

or

2) Split the string up into chunks of 2000 characters, send each chunk
using it's own  JsonpRequestBuilder and reassemble the complete file
on the server.

Or is there a third option?

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



java.util.Map with Javascript Overlay example?

2010-06-18 Thread rhodebump
Can anyone point me to an example in which someone uses Javascript
Overlays to create a java.util.Map.  I've tried, but keep getting a

 java.lang.ClassCastException:
com.google.gwt.core.client.JavaScriptObject$ cannot be cast to
java.util.Map


Is it even possible?  Or am I limited to using a JsArray?

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT/iphone/phonegap server communication

2010-06-12 Thread rhodebump
All,
I am building an iphone app using GWT/phonegap, so my GWT application
will be running from the filesystem in Safari.
Given this, would it make sense for me to use RPC to communicate with
remote server?  My assumption here is that running from the filesystem
will allow me to do this.

I have been going down the road with JsonpRequestBuilder, but as I
think about it, am I making things harder for myself using
JsonpRequestBuilder when I could be using RPC?

Any thoughts?
Phillip

This is for my personal project http://www.spotmouth.com a grails/
drupal based backend.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Using Javascript Overlays vs. Manually setting up POJO instances?

2010-06-09 Thread rhodebump
I did some reading up on RPC.  Sounds like it would be perfect except
for the face that it is limited by the Same Origin Policy, so I can't
use it.

I wish we could do an RPC with JsonpRequestBuilder

Thanks for your insight, you have convinced me to do the Javascript
Overlays.  I do like type safety and it sounds like it would be more
efficient.


Phillip



On Jun 9, 5:52 pm, Sripathi Krishnan 
wrote:
> I am assuming you have a strong reason not to use standard RPC - because if
> you really have POJO's on the server side, reusing the same objects on the
> client side should be a breeze.
>
> It always makes sense to Javascript Overlays, otherwise you loose type
> safety and all the other advantages java has over javascript. It is a pain
> to maintain two versions for the same entity, but the advantages far
> outweigh the inconvenience. You can perhaps even build a small utility that
> generates the overlays -- shouldn't be too difficult.
>
> And finally, if it eases your pain, most people end up having DTOs and Model
> objects *even if* they use regular RPC. That's because the POJO's you have
> on the server may be a complex hierarchy of objects; what you want on the
> client side is usually pretty simple and doesn't have deep hierarchies.
>
> --Sri
>
> On 10 June 2010 02:56, rhodebump  wrote:
>
>
>
> > I have several Java classes that I am using on the serverside, and I
> > am using these same classes to serialize the JSON stream back to my
> > GWT application.  I am using the JsonpRequestBuilder to call my
> > service and it is successfully returning a JavascriptObject.
>
> > What is the recommended approach to getting my objects from the json
> > response?, should it be a) coerce my JavaScriptObject into a string
> > and use the JsonParser, or b) write a 2nd implementation of my classes
> > using Javascript overlays?
>
> > I don't really like either approach, one option means having 2 types
> > of objects that I would need to keep in sync (the pojo and the
> > Javascript overlay) and the other way means I have to traverse the
> > Json myself, populating my object glyph manually.
> > Either way, ouch.
>
> > Thanks for listening,
> > Phillip
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google Web Toolkit" group.
> > To post to this group, send email to google-web-tool...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-web-toolkit+unsubscr...@googlegroups.com
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Using Javascript Overlays vs. Manually setting up POJO instances?

2010-06-09 Thread rhodebump

I have several Java classes that I am using on the serverside, and I
am using these same classes to serialize the JSON stream back to my
GWT application.  I am using the JsonpRequestBuilder to call my
service and it is successfully returning a JavascriptObject.

What is the recommended approach to getting my objects from the json
response?, should it be a) coerce my JavaScriptObject into a string
and use the JsonParser, or b) write a 2nd implementation of my classes
using Javascript overlays?

I don't really like either approach, one option means having 2 types
of objects that I would need to keep in sync (the pojo and the
Javascript overlay) and the other way means I have to traverse the
Json myself, populating my object glyph manually.
Either way, ouch.

Thanks for listening,
Phillip

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



integration with iui css?

2010-06-07 Thread rhodebump
I am working on getting my GWT application to use the iui.css and
things are not going as expected.  While I have been able to output
the html dom structure that iui needs (ul/li/ etc), not quite working.

Before I keep digging, I was wondering if anyone else on this list has
tried to get the leverage the iui css from their GWT application?

Thanks!
Phillip

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.