Re: GWT 2.7.0 is here

2014-12-04 Thread James Wendel
I wanted to say thank you to the entire GWT team for this release. 
 Incremental compiling for SDM has made it where we can use it at my 
company and it's seems great in my initial testing on it.  Being able to 
reload a page instantly when there are no changes (or only a few seconds to 
reload when there are changes) is awesome.  I really appreciate the work 
the GWT team has done.

Thanks,
-James

On Thursday, November 20, 2014 4:59:06 AM UTC-6, Daniel Kurka wrote:

 Today we are excited to announce the GWT 2.7.0 release.  Thanks to 
 everyone who contributed to this release, especially our non-Google open 
 source contributors.

 One major feature of this release is a new super fast compilation path in 
 Super Dev mode that replaces the old dev mode.
 For a run-down of all changes since GWT 2.6.1, read the release notes 
 http://www.gwtproject.org/release-notes.html#Release_Notes_2_7_0.

 The release is available for download here 
 http://www.gwtproject.org/download.html or on maven central.

 If you find any issues with this release, please file a bug in our issue 
 tracker.

 Daniel,
 on behalf of the GWT team at Google



-- 
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: Development Mode will not be supported in Firefox 27+

2014-03-27 Thread James Wendel
My company got screwed by using GXT2 with gxt-uibinder library that broke with 
GWT 2.5 due to compiler changes. We've been stuck on GWT 2.4 for that reason as 
we had 100+ .ui.xml files to convert to pure java. We finally did the work, but 
it was definitely a painful lesson. 

-- 
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.


Compile time with a large project

2014-02-05 Thread James Wendel
We have a fairly large single GWT project that we feel has out-grown itself 
at this point.  It's setup in a way where we could split it out into a 
collection of smaller projects (though this is not a simple task).  What 
I'm looking to find out: does compile time of large GWT projects scale 
linearly with the size of the project?  Meaning, if we do split the project 
up into a bunch of smaller chunks, would we really save much during the 
compile process?

We're running GWT 2.4.0 with a collection of various libraries (GXT2.2.5, 
GXT3.0.6, GWTP, and other goodies).

-- 
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/groups/opt_out.


Re: Compile time with a large project

2014-02-05 Thread James Wendel
On our build machine (which isn't the fastest thing in the world), it takes 
40 minutes to run javac + build 18 permutations.  Running the compileReport 
on it, tie Full code size is just under 5MB.

And yes, multiple apps, each having their own html host pages.  I was 
thinking that splitting them out would reduce the global optimization work 
done by the GWT compiler.


On Wednesday, February 5, 2014 12:37:09 PM UTC-6, Jens wrote:

 I assume with multiple projects you mean multiple apps each having its own 
 html host page? I don't think you will gain a lot because at the end you 
 have to compile the same amount of source files regardless if its one big 
 project or 10 smaller projects.

 If your app takes really that long to compile, I would first go for 
 distributed compilation so you can compile your permutations in parallel on 
 multiple hosts.

 https://code.google.com/p/google-web-toolkit/wiki/DistributedBuilds

 -- 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/groups/opt_out.


Re: Compile time with a large project

2014-02-05 Thread James Wendel
To add.  the permutation-0.js generated by the compileReport is 640MB. 
 And using cloc http://cloc.sourceforge.net/, we are at 200k lines of 
code for java+xml (for uiBinder).

-- 
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/groups/opt_out.


Re: Compile time with a large project

2014-02-05 Thread James Wendel
It's a VM with 4 CPU cores (X5690 CPU, Xeon's are from Q1 2011), and 10GB 
of ram.  It looks like the 40 minute quote was doing with localWorkers=1. 
 On another build with localWorkers=3, the build time was 12 minutes 30 
seconds.

It looks like on the GWT compile we set:
-XX:MaxPermSize=128M
-Xmx1536M
-XX:+UseGCOverheadLimit


-- 
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/groups/opt_out.


Re: Developer plugin for Firefox 23 doesn't work

2013-08-20 Thread James Wendel
I just upgraded to FF 23.0.1 and devmode seems to be loading just fine for 
me.  No issues that I've seen yet.

OSX 10.8.4
FF 23.0.1
GWT plugin 1.23
Eclipse Kepler
GWT 2.4.0

-- 
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/groups/opt_out.


Re: GWT plugin support for Eclipse Kepler (4.3)

2013-06-28 Thread James Wendel
Thanks.  I have gone and created a bug on the GPE issue tracker. 
 https://code.google.com/p/google-plugin-for-eclipse/issues/detail?id=221

-- 
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/groups/opt_out.




GWT plugin support for Eclipse Kepler (4.3)

2013-06-26 Thread James Wendel
I checked the issue tracker for GWT and the google-plugin-for-eclipse and I 
didn't see any open issues for Kepler (4.3) support.  Is this something 
Google is already working on or should I open an issue on this?  (and if 
so, would that issue be against GWT or the plugin project)?

Thanks,
-James

-- 
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/groups/opt_out.




Firefox 18 GWT plugin

2013-01-08 Thread James Wendel
It looks like the Google dev team has already started working on the GWT 
plugin for Firefox 18 (which was released today).

GWT Bug: https://code.google.com/p/google-web-toolkit/issues/detail?id=7877
Firefox release 
notes: http://www.mozilla.org/en-US/firefox/18.0/releasenotes/

-- 
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/-/5-Gn9zCSi80J.
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.



Firefox 16 GWT Plugin

2012-10-09 Thread James Wendel
With Firefox 16 now out, the GWT plugin is incompatible again.  But it 
looks like Google is already working on it:
http://gwt-code-reviews.appspot.com/1851804/

-- 
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/-/2scJFLQkDEUJ.
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: any chance to get FF15 dev plugin

2012-08-30 Thread James Wendel
Tested on OSX 10.6 with FF15 and the GWT plugin seems to be working just 
fine.

On Thursday, August 30, 2012 3:05:33 AM UTC-5, Dimitrijević Ivan wrote:

 FF15 compatible GWT addon is in trunk 
 http://code.google.com/p/google-web-toolkit/source/browse/trunk/plugins/xpcom/prebuilt/gwt-dev-plugin.xpi?spec=svn11253r=11253

 Works fine on Mac OS X 10.8. 

 On Wednesday, August 29, 2012 10:36:22 AM UTC+2, Thomas Broyer wrote:

 Brian is working hard on it: 
 http://code.google.com/p/google-web-toolkit/source/list (all recent 
 commits are about the plugin)



-- 
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/-/ZmyR_iNvVc8J.
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: Firefox 13 DevMode Plugin

2012-06-05 Thread James Wendel
As always, thanks for the heads up Alan.

On Jun 5, 1:05 pm, Alan Leung acle...@google.com wrote:
 If anyone is wondering, I am aware and working on it.

 -Alan

-- 
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.



Firefox 12 release

2012-04-24 Thread James Wendel
Looks like Firefox 12 was released: 
http://www.mozilla.org/en-US/firefox/all.html

Any word on getting a GWT plugin that is compatible with it?

Thanks,
-James

-- 
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.



Re: Firefox 12 release

2012-04-24 Thread James Wendel
I'm well aware of the other threads that exist.  But these thread
tends to act as a central place for people to go to see if a build of
the GWT plugin is available.  Alan has been very helpful in previous
few FF releases on getting us new plugin builds within a day or 2.

I'm just sitting and waiting for Alan or another Googler to say they
have a build or are working on it.  I'm not in any real rush, just
wanted to get the ball rolling.

On Apr 24, 2:40 pm, Qian Qiao qian.q...@gmail.com wrote:
 On Apr 25, 2012 3:00 AM, James Wendel jmwen...@gmail.com wrote:

  Looks like Firefox 12 was released:

 http://www.mozilla.org/en-US/firefox/all.html



  Any word on getting a GWT plugin that is compatible with it?

  Thanks,
  -James

 This question gets asked every time when there's a new Firefox release.

 Please search the list for similar topics on Firefox 5/6/7/8/9/10/11 and
 swap 12 for the version number.

 -- Joe

-- 
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.



Re: Smart GWT use for commercial software development.

2012-04-04 Thread James Wendel
We've been using EXT GWT (GXT) 2.2.x at my company for a little over a
year now and it's a decent framework.  I sort of wish we could move to
the 3.0 release, but that's not possible at this time.  GXT seems to
stay up to date with the latest GWT versions, so we haven't had any
problems there.  GXT provides some great widgets, but they all have
their quirks that you have to work around.

-James

On Apr 3, 6:09 pm, sanika joshi jos.san...@gmail.com wrote:
 Hi All,
   Wanted to know if smart GWT can be used for commercial application
 development.Do I have to purchase a  license for the same or can it be
 installed and used without any purchase of a license.
 Talking of more detail if Smart GWT is free to use then can all the
 widgets which are included in the smart GWT page be implemented as
 they can be in simple GWT?
 Thanks alot!

-- 
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.



Re: GWT Developer Plugin for Firefox 8

2011-11-12 Thread James Wendel
Agreed.  It would be nice to see this uploaded to SVN.

On Nov 10, 4:44 pm, bryn ryans snayr...@gmail.com wrote:
 Any particular reason why the FF8 plugin has been uploadedwww.fileswap.com

 rather than google-web-toolkit SVN (http://google-web-
 toolkit.googlecode.com/svn/trunk/plugins/xpcom/prebuilt/)?

 Thanks.

 On Nov 10, 2:27 pm, Alan Leung acle...@google.com wrote:







  Right. I keep a very close watch on the FF release schedule. The latest and
  greatest is usually in SVN quickly if you are feeling adventurous.

  I am slightly hesitant to push it out to the official page because I don't
  want to break EVERY GWT user with a bad build. If you are downloading from
  the SVN, I assume you have no problem uninstalling a bad version if it
  didn't work for you.

  -Alan

  On Thu, Nov 10, 2011 at 11:52 AM, Thomas Broyer t.bro...@gmail.com wrote:
   It's been officially updated to FF7 yesterday (the XPI was downlodable for
   a long time already on the SVN):
  http://code.google.com/p/google-web-toolkit/source/detail?r=10735

   --
   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/-/9C6PB5Pk_eIJ.

   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.

-- 
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.



Re: GWT/GPE 2.4.0 RC1 is available

2011-07-30 Thread James Wendel
To ask, does the DataGrid differ from CellTable only in the content
area being scrollable?  Are there are differences I'm not seeing?

Thanks,
-James

On Jul 27, 12:55 pm, David Chandler drfibona...@google.com wrote:
 GWT 2.4.0 adds a new DataGrid widget with scrollable data area and
 many enhancements to RequestFactory 
 (seehttp://code.google.com/p/google-web-toolkit/wiki/RequestFactory_2_4).

 Google Plugin for Eclipse 2.4.0 introduces a wizard to publish your
 application to Google Apps Marketplace.

 SDK:http://code.google.com/p/google-web-toolkit/downloads/list
 Eclipse update sites:http://code.google.com/eclipse/beta/docs/download.html

 gwt-2.4.0-rc1 will appear in Maven Central shortly. Docs, Javadocs,
 and release notes will be published with the final release.

 --
 David Chandler
 Developer Programs Engineer, GWT+GAE
 w:http://code.google.com/
 b:http://turbomanage.wordpress.com/
 b:http://googlewebtoolkit.blogspot.com/
 t: @googledevtools

-- 
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.