Re: GWT Plugin Problem

2015-08-31 Thread Jonathan Franchesco Torres Baca
use Mozilla current 24 portable * * Jonathan Franchesco Tor

Re: Recommended GWT Map Library?

2015-08-31 Thread Kevin Workman
Thanks for the reply Greg. I was seriously considering OpenLayers as well. I think I've decided to just stick with standard Google Maps (the 3.8 api I linked above). The reason I went with this is the JavaScript documentation for the Google Maps API is very good, and I can just use native JavaSc

Re: heap memory consumption by CrossSiteIframeLinker

2015-08-31 Thread Jens
I think GWT could make a conservative guess on the StringBuilder initial size so there is no need for a compile parameter. As you see from the message the compiler already knows the total size of the script. Alternatively just give the compiler a bit more heap space. 100 MB might already be eno

heap memory consumption by CrossSiteIframeLinker

2015-08-31 Thread Dominique Jean-Prost
Hello, I'm meeting a problem during gwt compilation. My application is quite big. [INFO] Permutation 8 (strong name BA14D66EEC73FB44262423A88ADFC40E) has an initial download size of 19984060 and total script size of 37457074 [INFO] Invoking Linker RPC policy file manifest [INFO]Invoki

Re: (Gwt Bootstrap) Split Layout Panel has an issue when I use that in a BootStrap container

2015-08-31 Thread Ümit Seren
AFAIK Container does not implement ProvidesResize which will cause an issue when you embed a LayoutPanel in it. I would also recommend against combining responsive Bootstrap Panels with LayoutPanels. But if you really want to do it, then you can try to put your SplitLayoutPanel inside a Resi

Re: Why code ends up in Left over Soyc report? How to analyze?

2015-08-31 Thread Jens
> Yes, I understand what you mean, but I though that in GWT 2.7.0, GWT will > create smaller code fragments that are shared between split points, and > don't necessary be in the left over fragment (= initial download > eventually). > So why does GWT not create a small left over for Total and t

Re: (Gwt Bootstrap) Split Layout Panel has an issue when I use that in a BootStrap container

2015-08-31 Thread Dhinakar
This is my code .blueColor { background-color: #87CEEB; } .greenColor { background-color: #9ACD32; } .redColor { background-color: red; } .yellowColor { background-color: yellow; } .tanColor { background-color: tan; }

Re: Why code ends up in Left over Soyc report? How to analyze?

2015-08-31 Thread Ed Bras
Thanks @Jens for your quick response. Complicated.. ;) > Its not really possible to keep Total really small because you compile everything into a single app. Yes, I understand that, but it would be nice to configure what is shared/downloaded and when. > probably keep small in your Total app i

Re: Why code ends up in Left over Soyc report? How to analyze?

2015-08-31 Thread Jens
> But let's start with the original problem: I want the Total app to be > small, and merely/not contain/share any code of the other apps. How to > accomplish this? > Its not really possible to keep Total really small because you compile everything into a single app. The only thing that you ca

Re: Why code ends up in Left over Soyc report? How to analyze?

2015-08-31 Thread Ed Bras
@Jens: thanks for the reponse. > You have used "fragmentCount" during compilation. When using this setting you are > allowing the compiler to merge split points if the compiler thinks that merging will decrease the > size of your left over fragment. Indeed, I just removed it, and it's larger (about