Re: GWT 3.0 Roadmap?

2014-09-22 Thread Martin Kersten
No comment noone knows? Any idea how I can optain this information?

Am Mittwoch, 17. September 2014 16:07:14 UTC+2 schrieb Martin Kersten:

 Hi There,

I am wondering what the current status of GWT 3.0 is. Is it already in 
 the making? Are there any release dates for GWT 3.0 - Beta, Mx or RC1?


 Cheers,

 Martin (Kersten)


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT 3.0 Roadmap?

2014-09-22 Thread Jens
GWT 3.0 will be early next year with Java8 language support. Before that 
GWT 2.7 RC1 is planed to be release at the end of this month...but could 
also be next month.

GWT 2.7 will have CSS3 support, an experimental version of JsInterop and a 
faster, easier to set up SuperDevMode (and bug fixes or course). You can 
try the latest version of GWT by using the Maven artifacts for GWT 
2.7-SNAPSHOT found in Google's Sonatype OSS repository.

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


good gwt mysql hosting

2014-09-22 Thread anna amat
Can anyone suggest me a good hosting that supports gwt and mysql?
I'm with mochahost now but it's not acceptable how incredibly slow it is.
also their support group is not of much help.

Thanks,
Anna.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT with Maven and Spring

2014-09-22 Thread Dilan A


On Monday, 22 September 2014 01:07:47 UTC+10, Thomas Broyer wrote:

 The default scope in Maven is compile, there's no scope named default.


Thanks for  pointing that out but I'm still getting the same error message.
Some how maven libs are not available under WEB-INF/lib 

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: GWT with Maven and Spring

2014-09-22 Thread Thomas Broyer

On Monday, September 22, 2014 12:32:50 PM UTC+2, Dilan A wrote:



 On Monday, 22 September 2014 01:07:47 UTC+10, Thomas Broyer wrote:

 The default scope in Maven is compile, there's no scope named default.


 Thanks for  pointing that out but I'm still getting the same error message.
 Some how maven libs are not available under WEB-INF/lib 


Are you launching a mvn package or mvn war:exploded at some point 
before trying the Run As… → Web Application?
AFAICT, this is (still) a required step.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Can we build GWT app that does not have Captcha function but is still able to prevent spam?

2014-09-22 Thread Tom
 

I am building Gwt site for mobile devices. The screen size of the mobile 
devices is very small, so I think if i require users to enter Captcha when 
they register then it could be quite cumbersome.

I heard that we can use some Javascript technique to prevent the Spam 
without needing to use captcha.

GWT is all about Javascript, so I am not sure if GWT has any technology to 
prevent spam without using Captcha?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Can we build GWT app that does not have Captcha function but is still able to prevent spam?

2014-09-22 Thread Jens
GWT does not have any pre-made spam protection code.

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Is there a tutorial that explains Places and Hyperlinks?

2014-09-22 Thread ehodges
Is there a good document that explain all of this?  How do new GWT 
developers learn these things?

On Friday, September 19, 2014 5:49:19 PM UTC-5, Jens wrote:

 In general the hash fragment the GWT places framework generates consists 
 of two parts: a unique prefix that represents the place type and a token 
 that contains the serialized state of a place instance. Both are separated 
 by a colon.

 You can use @Prefix to change the default unique prefix of a Place which 
 is the concrete Place class simple name, e.g. CustomerPlace.

 To fill a Hyperlink target history token you would use the 
 PlaceHistoryMapper.getToken(new CustomerPlace(optional state)) method 
 which basically returns Prefix + : + tokenizer.getToken(place) .

 If you don't like the colon you can also use your own logic by either 
 implementing the PlaceHistoryMapper interface yourself or by creating just 
 a single PlaceTokenizerPlace with a prefix @Prefix(). This tokenizer 
 will act as a catch-all tokenizer and you can then freely implement your 
 getToken() / getPlace() logic for all places inside that tokenizer. The 
 catch-all tokenizer is kind of a cheat, so I would prefer implementing 
 PlaceHistoryMapper directly. 
 For example my apps usually use history tokens that look like 
 /#!/archive/2014/august/

 -- J.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Is there a tutorial that explains Places and Hyperlinks?

2014-09-22 Thread Juan Pablo Gardella
See http://blog.ltgt.net/gwt-21-places/

On 22 September 2014 10:28, ehod...@usdataworks.com wrote:

 Is there a good document that explain all of this?  How do new GWT
 developers learn these things?

 On Friday, September 19, 2014 5:49:19 PM UTC-5, Jens wrote:

 In general the hash fragment the GWT places framework generates consists
 of two parts: a unique prefix that represents the place type and a token
 that contains the serialized state of a place instance. Both are separated
 by a colon.

 You can use @Prefix to change the default unique prefix of a Place which
 is the concrete Place class simple name, e.g. CustomerPlace.

 To fill a Hyperlink target history token you would use the
 PlaceHistoryMapper.getToken(new CustomerPlace(optional state)) method
 which basically returns Prefix + : + tokenizer.getToken(place) .

 If you don't like the colon you can also use your own logic by either
 implementing the PlaceHistoryMapper interface yourself or by creating just
 a single PlaceTokenizerPlace with a prefix @Prefix(). This tokenizer
 will act as a catch-all tokenizer and you can then freely implement your
 getToken() / getPlace() logic for all places inside that tokenizer. The
 catch-all tokenizer is kind of a cheat, so I would prefer implementing
 PlaceHistoryMapper directly.
 For example my apps usually use history tokens that look like
 /#!/archive/2014/august/

 -- J.

  --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Is there a tutorial that explains Places and Hyperlinks?

2014-09-22 Thread Jens


 Is there a good document that explain all of this?  How do new GWT 
 developers learn these things?


Actually everything you have asked is covered 
in http://www.gwtproject.org/doc/latest/DevGuideMvpActivitiesAndPlaces.html

- The URL representation of a Place is described in Places section 
(Prefix + : + token)
- The @Prefix is mentioned in PlaceHistoryMapper section and obviously 
you want to use it if you don't like the default prefix chosen by GWT (the 
Place class name)
- How to get a token for a Hyperlink is covered in section How to 
navigate (using the PlaceHistoryMapper.getToken() method)

So maybe you just need to read documentation a bit more carefully ;-)

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: good gwt mysql hosting

2014-09-22 Thread Joseph Lust
Just about any host. Nothing special needed for GWT. If you're using a Java 
backend, then you'll need a host that can support a war/ear deployment or 
get your own VPS. I usually use AWS, but you could do Digital Ocean or 
DreamHost too. Just Google for hosting.

Joe

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Can we build GWT app that does not have Captcha function but is still able to prevent spam?

2014-09-22 Thread Joseph Lust
Anything client side can be compromised by spammers, so implement some 
server side CAPTCHA or equivalent.

Joe

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit 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 http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.