Re: GWT 2.8.0 RC2 is here!

2017-07-21 Thread Thomas Broyer
Have a look at https://github.com/gwtproject/gwt/tree/master/samples/mobilewebapp, we haven't had issues with AppEngine and GWT in the same Maven module (even though I discourage such usage). On Friday, July 21, 2017 at 10:47:41 AM UTC+2, Patrick Tessier wrote: > > I'm upgrading from 2.7 to

Re: GWT 2.8.0 RC2 is here!

2017-07-21 Thread Patrick Tessier
I'm upgrading from 2.7 to 2.8.1 now, but it seems I'm running into the same issue as Tony. I'm using AppEngine on the server side, which is in the same IntelliJ/Maven module as the GWT code. When launching devmode from IntelliJ, I get "Couldn't load project from Super Dev Mode server at...",

Re: [gwt-contrib] Re: GWT 2.8.0 RC2 is here!

2016-09-28 Thread 'Goktug Gokdogan' via GWT Contributors
We are doing a last minute fix. Next RC should be ready very soon and if no major issues it will be called final release around 2-3 weeks. On Wed, Sep 28, 2016 at 3:16 AM, Hitesh Kumar wrote: > Is there an ETA on GWT 2.8.0 release? > > On Friday, 12 August 2016 06:49:03

Re: GWT 2.8.0 RC2 is here!

2016-09-09 Thread Василий Старцев
Hmm. This is help. Thank you. -- 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

Re: GWT 2.8.0 RC2 is here!

2016-09-09 Thread Thomas Broyer
The arrays are normalized to start on Sundays (you'd find the same oddity with the French locale, as weeks start on Monday too in France), you need to use firstDayOfTheWeek and adjust your indexes accordingly: for (int i = 0; i < 7; i++) { ….weekdaysFull()[(i + ….firstDayOfTheWeek()) % 7)];

Re: GWT 2.8.0 RC2 is here!

2016-09-09 Thread Василий Старцев
sorry for my english) In russia week starts with Monday (Понедельник) Such a difference leads me to use workarround instead of *LocaleInfo.getCurrentLocale().getDateTimeFormatInfo()* This case makes me in big disapointment: I run this code on JDK8 DateFormatSymbols symbols = new

Re: GWT 2.8.0 RC2 is here!

2016-09-09 Thread Thomas Broyer
On Friday, September 9, 2016 at 4:34:02 PM UTC+2, Василий Старцев wrote: > > Great! But there is a bug: > *com.google.gwt.i18n.client.impl.cldr.DateTimeFormatInfoImpl_ru* still > have wrong weekdays order. > > @Override > public String[] weekdaysFull() { > return new String[] { >

Re: GWT 2.8.0 RC2 is here!

2016-09-09 Thread Василий Старцев
Great! But there is a bug: *com.google.gwt.i18n.client.impl.cldr.DateTimeFormatInfoImpl_ru* still have wrong weekdays order. @Override public String[] weekdaysFull() { return new String[] { "воскресенье", "понедельник", "вторник", "среда", "четверг",

Re: GWT 2.8.0 RC2 is here!

2016-09-09 Thread Thomas Broyer
First, you don't *have* to split your project, you have to *run* them separately (but then you'll probably have to tweak the classpath of each a bit). Then, GWT RPC isn't a blocker for splitting your project (see my modular-webapp archetype at https://github.com/tbroyer/gwt-maven-archetypes)

Re: GWT 2.8.0 RC2 is here!

2016-09-08 Thread Tony
Thank you J! I didn't know jetty was upgraded and yes I did mess up the order & export. once I moved the GWT SDK above the App Engine SDK... all worked well. Yes, I'm aware we need to decouple the client/server but we're a few releases away from that. We're still using GWT RPC and a few other

Re: GWT 2.8.0 RC2 is here!

2016-09-08 Thread Jens
> What I don't understand is *why is this setup working fine with > gwt-2.8.0-beta1 but it is not working with gwt-2.8.0-rc1 or gwt-2.8.0-rc2. * > Jetty has been upgraded from 8.x to 9.2.x between beta1 and rc1. Maybe your class path order is now different for some reasons and you need to

Re: GWT 2.8.0 RC2 is here!

2016-09-08 Thread Tony
Hey First off -* thank you very much for all the work you are doing on GWT*. It's great to see all the amazing things coming in 2.8.0. Thank you! Now to the issue that I'm reporting: I'm using the Google Plugin For Eclipse and my project is using GWT (gwt-2.8.0-beta1) and AppEngine (1.9.42).

Re: GWT 2.8.0 RC2 is here!

2016-09-08 Thread Kirill Prazdnikov
All that sounds very good. Is there any place where I can read about j2cl ? It source is closed, right ? -- 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

Re: GWT 2.8.0 RC2 is here!

2016-08-24 Thread Thomas Broyer
On Wednesday, August 24, 2016 at 4:38:51 PM UTC+2, Philippe Gonze wrote: > > Hearing that 3.0 will be a "bundle", our key concern is "How many > technologies should we (learn?) mix and organize to work together?". > Currently, GWT gives you a compiler with various linkers, emulation library,

Re: GWT 2.8.0 RC2 is here!

2016-08-24 Thread pg
Tnx Thomas for this detailed and valuable answer. For software creators of my generation (born 1956), the immensely attractive argument of GWT was : "you can create WEB apps (complex and powerfull web apps) by just using the best langage you ever

Re: GWT 2.8.0 RC2 is here!

2016-08-23 Thread Thomas Broyer
On Tuesday, August 23, 2016 at 3:39:26 PM UTC+2, Philippe Gonze wrote: > > "*the fact that 2.8 will be maintained in parallel. *(Jens) " !?! > > We would certainly appreciate to know more about this fact (announced? > published? where?). > One year ago:

Re: GWT 2.8.0 RC2 is here!

2016-08-23 Thread Jens
> "*the fact that 2.8 will be maintained in parallel. *(Jens) " !?! > > We would certainly appreciate to know more about this fact (announced? > published? where?). > Its just a logical consequence of GWT being open source and lots of large apps/companies depend on it. As long as people use

Re: GWT 2.8.0 RC2 is here!

2016-08-23 Thread Philippe Gonze
"*the fact that 2.8 will be maintained in parallel. *(Jens) " !?! We would certainly appreciate to know more about this fact (announced? published? where?). As a matter of fact, if version 3.0 is in line with various statements read here and there on the web (disparition of widget library,

Re: GWT 2.8.0 RC2 is here!

2016-08-22 Thread Jens
> I saw there were some commits to master after RC2 was cut. Are there plans > to cut an RC3 or just roll those commits into the GA? > GA will likely be done from master branch. Maybe it becomes a branch then, because of upcoming GWT 3.0 changes and the fact that 2.8 will be maintained in

Re: GWT 2.8.0 RC2 is here!

2016-08-22 Thread James Horsley
I saw there were some commits to master after RC2 was cut. Are there plans to cut an RC3 or just roll those commits into the GA? On Fri, Aug 19, 2016 at 5:31 PM Alexander Polunochev wrote: > Hi Daniel, > > Link to download SDK on the official page still points to RC1. >

Re: GWT 2.8.0 RC2 is here!

2016-08-19 Thread Alexander Polunochev
Hi Daniel, Link to download SDK on the official page still points to RC1. http://www.gwtproject.org/download.html On Thursday, August 11, 2016 at 6:25:18 PM UTC-7, Daniel Kurka wrote: > > Hi all, > > I just build the GWT 2.8.0 RC2 and pushed it to maven central. The > complete SDK is also

Re: GWT 2.8.0 RC2 is here!

2016-08-17 Thread 'steve Zara' via GWT Users
This is great news. Thanks for all the hard work. On Friday, 12 August 2016 02:25:18 UTC+1, Daniel Kurka wrote: > > Hi all, > > I just build the GWT 2.8.0 RC2 and pushed it to maven central. The > complete SDK is also available from here . > > Please start testing and let

[gwt-contrib] Re: GWT 2.8.0 RC2 is here!

2016-08-14 Thread 99Sono
Those are great news! Finally the chapter of always consuming snapshots can come to an end! More stable release candidates are a preferable way going forward, than cyclones of years without any sort of release. Many thanks with a big smile. On Friday, August 12, 2016 at 3:19:03 AM UTC+2,

Re: GWT 2.8.0 RC2 is here!

2016-08-14 Thread Philippe Gonze
Okay and Tnx for the DOCTYPE answers. Now something else... *ECLIPSE RELOAD GWT WEB SERVER - MEMORY NOT CLEARED.* With RC1, it was impossible to reload the web server using the eclipse plugin. With RC2, it is possible again. However, there is a major problem encountered during the reload: the

[gwt-contrib] Re: GWT 2.8.0 RC2 is here!

2016-08-13 Thread István Horváth
/OFFTOPIC: s/here/hear/g ;) 2016. augusztus 12., péntek 3:19:03 UTC+2 időpontban Daniel Kurka a következőt írta: > > Hi all, > > I just build the GWT 2.8.0 RC2 and pushed it to maven central. The > complete SDK is also available from here . > > Please start testing and let

Re: GWT 2.8.0 RC2 is here!

2016-08-12 Thread Thomas Broyer
DOCTYPE is part of XML so it shouldn't need much documentation, and is generally useless and harmful (that's a debate for other forums though). But some IDEs (Eclipse at least) use it for autocompletion, so feel free to use it (GWT won't care). -- You received this message because you are

Re: GWT 2.8.0 RC2 is here!

2016-08-12 Thread Jens
> However I have a general question about the DOCTYPE header directive in > the various *.gwt.xml files. > > What is the good option among: > a) these lines are useless because quirk/standard discussion is obsolete. > Ok to remove? > b) these lines have few effects, they are necessary, but the

Re: GWT 2.8.0 RC2 is here!

2016-08-12 Thread Philippe Gonze
Hi, RC2 seems OK for our kind of developments... Great! However I have a general question about the DOCTYPE header directive in the various *.gwt.xml files. What is the good option among: a) these lines are useless because quirk/standard discussion is obsolete. Ok to remove? b) these lines

[gwt-contrib] Re: GWT 2.8.0 RC2 is here!

2016-08-12 Thread Andrei Preda
Thank you for the RC2. Everything compiled perfectly with it, after some minor maven changes. On Friday, August 12, 2016 at 3:19:03 AM UTC+2, Daniel Kurka wrote: > > Hi all, > > I just build the GWT 2.8.0 RC2 and pushed it to maven central. The > complete SDK is also available from here

GWT 2.8.0 RC2 is here!

2016-08-11 Thread 'Daniel Kurka' via GWT Users
Hi all, I just build the GWT 2.8.0 RC2 and pushed it to maven central. The complete SDK is also available from here . Please start testing and let us know if you run into any trouble and file bugs . We are planing to release

[gwt-contrib] GWT 2.8.0 RC2 is here!

2016-08-11 Thread 'Daniel Kurka' via GWT Contributors
Hi all, I just build the GWT 2.8.0 RC2 and pushed it to maven central. The complete SDK is also available from here . Please start testing and let us know if you run into any trouble and file bugs . We are planing to release