Re: Fast implementation of Design displays with GWT?

2013-06-12 Thread Ed
Wild idea: make some open source converter that is able to fill this developer/design cap: It will parse the received html/css design, and convert it to useful GWT code. Through annotations/config you can fine tune the conversion html/css. Bu...come to think of it: this sounds like the

Re: Best practices for inlining build (revision) number into GWT App?

2013-06-12 Thread Honza Rames
I have a XML file that stores various information about my build and is updated by a Linker which increments build number each build I make. And I have a generator that returns an interface that I can use in GWT app which includes the build number, revision, build date etc. Regards Honza On

Re: Code splittingmysteries

2013-06-12 Thread James Horsley
Ed, did you ever get this sorted? As I commented on the linked issue I'm running into what seems to be a similar problem. On Wednesday, April 10, 2013 8:13:07 AM UTC+1, Ed wrote: I just downgraded to GWT 2.4 and my left over fragment disappeared :(... (initial load was almost the same)

Re: GWT Toolkits

2013-06-12 Thread Philippe Lhoste
On 10/06/2013 17:40, Donald Hook wrote: I am looking at developing an application that will have some objects on a canvas or page. These objects (almost like placecards, square with information displayed within it) will display project information and users will have the ability to connect

Re: GWT Toolkits

2013-06-12 Thread Philippe Lhoste
On 12/06/2013 12:32, Philippe Lhoste wrote: Maybe the jsPlumb http://jsplumbtoolkit.com/jquery/demo.html plugin for jQuery is close of your need. Would need a GWT wrapper, though... http://code.google.com/p/gwt-jsplumb/ -- Philippe Lhoste -- (near) Paris -- France -- http://Phi.Lho.free.fr

Re: Code splittingmysteries

2013-06-12 Thread Ed
Ed, did you ever get this sorted? As I commented on the linked issue I'm running into what seems to be a similar problem. Not. It's hard to track the exact cause. It tired, but had to give up (a lot of time, and not knowing exactly what happens. But it's good to see that more people are

Re: Code splittingmysteries

2013-06-12 Thread Ed
Ed, did you ever get this sorted? As I commented on the linked issue I'm running into what seems to be a similar problem. No. It's hard to track the exact cause. It tried, but had to give up (a lot of time, and not knowing exactly what happens. But it's good to see that more people are

About the EditTextCell widget

2013-06-12 Thread Danilo Reinert
Right now I'm using this widget aiming to fire an update request to the back-end whenever the user updates its value. It happens that this widget fires an update event even if the value was not modified. I had to implement a simple logic to ensure the update event firing only when the value

Re: Code splittingmysteries

2013-06-12 Thread James Horsley
Yeah. I've tried reproducing the issue with a sample app but thus far haven't been able to; not sure that the sample webapp captures enough of the complexity of the actual webapp we're having the problem with. As I mentioned before can confirm that changing none of the webapp code but switching

Re: Code splittingmysteries

2013-06-12 Thread James Horsley
Quite frustrating as I don't feel like I'm making much progress and am just going to have to go back to 2.5.0 but don't really want to lose out on the bugfixes from 2.5.1 :( On 12 June 2013 15:45, James Horsley james.hors...@gmail.com wrote: Yeah. I've tried reproducing the issue with a sample

Re: Code splittingmysteries

2013-06-12 Thread Ed Bras
Yes, I understand what you mean, I experienced the same... It's hard to hand over a test case that fails, to the dev team, such that they can use that to work on :( Yes it would be nice to have better facilities such that we can try to track done the cause our self. Currently the SOYC report

Re: Code splittingmysteries

2013-06-12 Thread Ed Bras
Yep, tried to go back to 2.5, but then I see some other bugs that are solved in 2.5.1 ;)... So for me this was no option... On Wed, Jun 12, 2013 at 5:17 PM, Ed Bras post2edb...@gmail.com wrote: Yes, I understand what you mean, I experienced the same... It's hard to hand over a test case that

Re: Out of Memory during GWT compile

2013-06-12 Thread Ranjith Chungath
Thanks for the reply.. Is there any other option other than increasing -XX:MaxPermSize.? Is there a compiler option that can do the memory optimization? ~Ranjith On Tuesday, June 11, 2013 11:05:44 PM UTC+5:30, Ranjith Chungath wrote: While analyzing with Eclipse Memory Analyzer(MAT), it

Re: Code splittingmysteries

2013-06-12 Thread James Horsley
Yeah. the SOYC report in this case hasn't helped me much either because I'm not reading it right or it's just not surfacing the right info. The only 404 I get is regarding the compiler metrics link. On 12 June 2013 16:18, Ed Bras post2edb...@gmail.com wrote: Yep, tried to go back to 2.5, but

Re: Code splittingmysteries

2013-06-12 Thread James Horsley
Ed, out of interest, are you using Gin? On 12 June 2013 16:29, James Horsley james.hors...@gmail.com wrote: Yeah. the SOYC report in this case hasn't helped me much either because I'm not reading it right or it's just not surfacing the right info. The only 404 I get is regarding the compiler

Re: Out of Memory during GWT compile

2013-06-12 Thread Lexis Nexis
Can a distributed compilation get rid of this issue? Does somebody use a distributed compilation for development? http://code.google.com/p/google-web-toolkit/wiki/DistributedBuilds http://code.google.com/p/gwt-distcc/ https://github.com/markovuksanovic/gwt-distributed-compiler David On

Re: Out of Memory during GWT compile

2013-06-12 Thread Joseph Lust
Note that distribution of the compilation is likely not going to cut down in memory much. The parallelization occurs at the permutation code generation phase, however the construction of the AST must take place first at the precompile phase. That phase is not distributed. I've not tested this,

Re: Code splittingmysteries

2013-06-12 Thread Ed Bras
No, it's not you, understanding the details of the SOYC report is hard. I thought it was easy from seeing the Google IO session some years ago, butt... ... It's definitely a step in the right direction but the soyc report still need some optimization steps to be well usable for bigger projects

Re: Code splittingmysteries

2013-06-12 Thread Ed
Ed, out of interest, are you using Gin? No, but probably would use it if I would start blank. When I started with GWT (about 7 years ago), there was no GIN, so I had to make my own thinks like factories, which I use nowadays . This all resulted in having build my own rich gwt

Re: drag and drop group

2013-06-12 Thread bhomass
based on html5 spec, the way to disallow a drop is to return true inside dragover function dragOver(ev) { return true; } but in GWT, the dragover hander has a void return type. there is no way to return anything. panel1.addBitlessDomHandler(new DragOverHandler() { @Override public void

[gwt-contrib] Change in gwt[master]: Fix for 8188 (http://code.google.com/p/google-web-toolkit/is...

2013-06-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Fix for 8188 (http://code.google.com/p/google-web-toolkit/issues/detail?id=8188) .. Patch Set 1: Code-Review+1 (3 comments)

[gwt-contrib] Change in gwt[master]: Fix for 8188 (http://code.google.com/p/google-web-toolkit/is...

2013-06-12 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Fix for 8188 (http://code.google.com/p/google-web-toolkit/issues/detail?id=8188) .. Patch Set 1: Code-Review+1 LGTM to me, but please address Thomas

[gwt-contrib] Change in gwt[master]: Use correct return types for createFooInputBuilder() methods...

2013-06-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Use correct return types for createFooInputBuilder() methods in HtmlBuilderFactory. Also adjust the return types of affected methods in HtmlBuilderImpl. ..

[gwt-contrib] Change in gwt[master]: Fixes a NPE in RF when returning a null entity while the cli...

2013-06-12 Thread Thomas Broyer
Thomas Broyer has submitted this change and it was merged. Change subject: Fixes a NPE in RF when returning a null entity while the client used .with(). .. Fixes a NPE in RF when returning a null entity while the client

[gwt-contrib] Change in gwt[master]: Add interfaces for widgets.

2013-06-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Add interfaces for widgets. .. Patch Set 6: (4 comments) I've only looked at a few files. File

[gwt-contrib] Change in gwt[master]: Removes api-checker reference JARs from the source tree.

2013-06-12 Thread Thomas Broyer
Thomas Broyer has submitted this change and it was merged. Change subject: Removes api-checker reference JARs from the source tree. .. Removes api-checker reference JARs from the source tree. Now expects them in GWT_TOOLS.

[gwt-contrib] Change in gwt[master]: Make sure JUnit's host page run in UTF-8.

2013-06-12 Thread Thomas Broyer
Thomas Broyer has submitted this change and it was merged. Change subject: Make sure JUnit's host page run in UTF-8. .. Make sure JUnit's host page run in UTF-8. Bug: issue 8171 Change-Id:

[gwt-contrib] Change in gwt[master]: Cut circular dependency between c.g.g.core.linker and c.g.g....

2013-06-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Cut circular dependency between c.g.g.core.linker and c.g.g.dev.js .. Patch Set 1: (1 comment) File

[gwt-contrib] Change in gwt[master]: Use correct return types for createFooInputBuilder() methods...

2013-06-12 Thread Thomas Broyer
Thomas Broyer has submitted this change and it was merged. Change subject: Use correct return types for createFooInputBuilder() methods in HtmlBuilderFactory. Also adjust the return types of affected methods in HtmlBuilderImpl.

[gwt-contrib] Change in gwt[master]: Cut circular dependency between c.g.g.core.linker and c.g.g....

2013-06-12 Thread Thomas Broyer
Hello Manuel Carrasco MoƱino, Matthew Dempsky, Roberto Lublinerman, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/1031 to look at the new patch set (#2). Change subject: Cut circular dependency between c.g.g.core.linker and c.g.g.dev.js

[gwt-contrib] Change in gwt[master]: Cut circular dependency between c.g.g.core.linker and c.g.g....

2013-06-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Cut circular dependency between c.g.g.core.linker and c.g.g.dev.js .. Patch Set 2: Code-Review+2 Roberto gave a +2 on patchset 1, and patchset 2 is a simple

[gwt-contrib] Change in gwt[master]: Cut circular dependency between c.g.g.core.linker and c.g.g....

2013-06-12 Thread Thomas Broyer
Thomas Broyer has submitted this change and it was merged. Change subject: Cut circular dependency between c.g.g.core.linker and c.g.g.dev.js .. Cut circular dependency between c.g.g.core.linker and c.g.g.dev.js Change-Id:

[gwt-contrib] Change in gwt[master]: Bug: issue 8188 Log excluded resources in DirectoryClassPath...

2013-06-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Bug: issue 8188 Log excluded resources in DirectoryClassPathEntry the same way as ZipFileClassPathEntry .. Patch Set 2: (2 comments) Sorry for being

[gwt-contrib] Change in gwt[master]: Add show relative to Element in PopupPanel

2013-06-12 Thread Daniel Kurka
Hello Leeroy Jenkins, Thomas Broyer, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3340 to look at the new patch set (#2). Change subject: Add show relative to Element in PopupPanel

[gwt-contrib] Change in gwt[master]: Log excluded resources in DirectoryClassPathEntry the same w...

2013-06-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Log excluded resources in DirectoryClassPathEntry the same way as ZipFileClassPathEntry .. Patch Set 3: Code-Review+2 -- To view, visit

[gwt-contrib] Change in gwt[master]: Log excluded resources in DirectoryClassPathEntry the same w...

2013-06-12 Thread Thomas Broyer
Thomas Broyer has submitted this change and it was merged. Change subject: Log excluded resources in DirectoryClassPathEntry the same way as ZipFileClassPathEntry .. Log excluded resources in DirectoryClassPathEntry the

[gwt-contrib] Change in gwt[master]: Log excluded resources in DirectoryClassPathEntry the same w...

2013-06-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Log excluded resources in DirectoryClassPathEntry the same way as ZipFileClassPathEntry .. Patch Set 4: Thanks! -- To view, visit

[gwt-contrib] Change in gwt[master]: Real branched logger is passed to the ResourceOracleImpl.ref...

2013-06-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Real branched logger is passed to the ResourceOracleImpl.refresh() method instead of TreeLogger.NULL .. Patch Set 2: (4 comments) An alternative would be

[gwt-contrib] Change in gwt[master]: Adds Timer#isRunning().

2013-06-12 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Adds Timer#isRunning(). .. Patch Set 2: (3 comments) File user/src/com/google/gwt/user/client/Timer.java

[gwt-contrib] Change in gwt[master]: Emulate java.util.Objects

2013-06-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Emulate java.util.Objects .. Patch Set 9: Tests are failing: http://build.gwtproject.org/job/gwt/261/testReport/ @Andrey: can you provide a patch quickly, or

[gwt-contrib] Change in gwt[master]: Emulate java.util.Objects

2013-06-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Emulate java.util.Objects .. Patch Set 9: Filed issue 8191. I think we need someone with a deep understanding of the compiler internals; Ray maybe? -- To

[gwt-contrib] Change in gwt[master]: adding compare for several number types -Byte.compare -...

2013-06-12 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: adding compare for several number types -Byte.compare -Short.compare -Integer.compare -Long.compare -Float.compare (Double already exists) fixes issue 7998

[gwt-contrib] Change in gwt[master]: Change DOM access in HTMLTable for IE

2013-06-12 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Change DOM access in HTMLTable for IE .. Patch Set 2: Going forward this would be the right approach. Not sure though how we make those permutation dependent.

[gwt-contrib] Change in gwt[master]: Change DOM access in HTMLTable for IE

2013-06-12 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Change DOM access in HTMLTable for IE .. Patch Set 2: We do have com.google.gwt.dom.client.DOMImpl already for permutation-dependent implementations. -- To

[gwt-contrib] Change in gwt[master]: Add methods to HasTreeItems

2013-06-12 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Add methods to HasTreeItems .. Patch Set 2: I am very much in favor of deprecation, but I think we need some time to get there. We can include these changes

[gwt-contrib] Change in gwt[master]: adding compare for several number types -Byte.compare -...

2013-06-12 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: adding compare for several number types -Byte.compare -Short.compare -Integer.compare -Long.compare -Float.compare (Double already exists) fixes issue 7998

[gwt-contrib] Change in gwt[master]: Fix module unloading with multiple modules on a page

2013-06-12 Thread Matthew Dempsky
Matthew Dempsky has submitted this change and it was merged. Change subject: Fix module unloading with multiple modules on a page .. Fix module unloading with multiple modules on a page Currently, the GWT compiler in

[gwt-contrib] Change in gwt[master]: Add show relative to Element in PopupPanel

2013-06-12 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Add show relative to Element in PopupPanel .. Patch Set 2: (2 comments) File

[gwt-contrib] Change in gwt[master]: Add interfaces for widgets.

2013-06-12 Thread Colin Alworth
Colin Alworth has posted comments on this change. Change subject: Add interfaces for widgets. .. Patch Set 6: (4 comments) File

[gwt-contrib] Change in gwt[master]: Ensure clinits get called for JSO instance methods.

2013-06-12 Thread Colin Alworth
Colin Alworth has uploaded a new change for review. https://gwt-review.googlesource.com/3361 Change subject: Ensure clinits get called for JSO instance methods. .. Ensure clinits get called for JSO instance methods. In

[gwt-contrib] Change in gwt[master]: Ensure clinits get called for JSO instance methods.

2013-06-12 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Ensure clinits get called for JSO instance methods. .. Patch Set 1: This seems a lot less than what you showed me at the Meet-up -- what did you change?

[gwt-contrib] Change in gwt[master]: Ensure clinits get called for JSO instance methods.

2013-06-12 Thread Colin Alworth
Colin Alworth has posted comments on this change. Change subject: Ensure clinits get called for JSO instance methods. .. Patch Set 1: Afraid not, this is the exact same patch we looked at - only difference was that I pulled

[gwt-contrib] Change in gwt[master]: Adds Timer#isRunning().

2013-06-12 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Adds Timer#isRunning(). .. Patch Set 2: (3 comments) File

[gwt-contrib] Change in gwt[master]: Add support for 'ImageResource' to @url substitution in css....

2013-06-12 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Add support for 'ImageResource' to @url substitution in css. Only 'DataResource' used to be supported. .. Patch Set 1: (1 comment)

[gwt-contrib] Change in gwt[master]: Add methods to HasTreeItems

2013-06-12 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Add methods to HasTreeItems .. Patch Set 2: Sorry, I didn't understand why we need some time to deprecate the older methods in favor of new ones? (About

[gwt-contrib] Change in gwt[master]: Emulate java.util.Objects

2013-06-12 Thread Andrey Korzhevskiy
Andrey Korzhevskiy has posted comments on this change. Change subject: Emulate java.util.Objects .. Patch Set 9: @Thomas: I'll submit fixes for failing tests asap -- To view, visit https://gwt-review.googlesource.com/3184 To

[gwt-contrib] Change in gwt[master]: adding compare for several number types -Byte.compare -...

2013-06-12 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: adding compare for several number types -Byte.compare -Short.compare -Integer.compare -Long.compare -Float.compare (Double already exists) fixes issue 7998

[gwt-contrib] Change in gwt[master]: Ensure clinits get called for JSO instance methods.

2013-06-12 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Ensure clinits get called for JSO instance methods. .. Patch Set 1: I think simply having a JSO with static initializers that don't work without this patch

[gwt-contrib] Change in gwt[master]: Add interfaces for widgets.

2013-06-12 Thread Stephen Haberman
Stephen Haberman has posted comments on this change. Change subject: Add interfaces for widgets. .. Patch Set 6: (1 comment) Hey guys, thanks for the comments. I'm out of town for a few days, but so far they all make

[gwt-contrib] Change in gwt[master]: Failing tests for java.util.Objects

2013-06-12 Thread Andrey Korzhevskiy
Andrey Korzhevskiy has uploaded a new change for review. https://gwt-review.googlesource.com/3400 Change subject: Failing tests for java.util.Objects .. Failing tests for java.util.Objects Fixes issue 8193 Change-Id:

[gwt-contrib] Change in gwt[master]: Emulate java.util.Objects

2013-06-12 Thread Andrey Korzhevskiy
Andrey Korzhevskiy has posted comments on this change. Change subject: Emulate java.util.Objects .. Patch Set 9: Filed

[gwt-contrib] Change in gwt[master]: Set display to none for table columns that should not be vis...

2013-06-12 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Set display to none for table columns that should not be visible. .. Patch Set 1: (3 comments) File

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-12 Thread Brian Slesinsky
Lazy parsing can be a performance win, but it also complicates the API in the case of a parse error. Have you thought about how to report errors when they happen later? It might less confusing to solve this using a separate LazyBigDecimal class. People can declare fields of this type in their

Re: [gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-12 Thread John A. Tamplin
Have we evaluated why it is so slow on ie8? It might be easier to fix that. The one thing it does is heavy use of StringBuffers so that could be where the issue is. On Jun 12, 2013 8:09 PM, Brian Slesinsky skybr...@google.com wrote: Lazy parsing can be a performance win, but it also

[gwt-contrib] Change in gwt[master]: Failing tests for java.util.Objects

2013-06-12 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Failing tests for java.util.Objects .. Patch Set 1: (1 comment) File

[gwt-contrib] Change in gwt[master]: Add interfaces for widgets.

2013-06-12 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Add interfaces for widgets. .. Patch Set 6: (1 comment) 1. It is very important to use consistent naming convention throughout the SDKs. IsXXX previously

[gwt-contrib] Change in gwt[master]: Emulate java.util.Objects

2013-06-12 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Emulate java.util.Objects .. Patch Set 9: @Thomas: I think it depends on how quickly we can resolve the issue and how confident we are there won't still be

[gwt-contrib] Change in gwt[master]: Emulate java.util.Objects

2013-06-12 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Emulate java.util.Objects .. Patch Set 9: A good rule of thumb is; if you can't fix it in 5 min, you should revert. More time the trunk is left broken,