[gwt-contrib] Re: Documentation of compiler optimisations?

2020-10-02 Thread George Georgovassilis
ppen in the main optimization > loop, with a small handful of notes on the order that these must take place. > > After this we're back to the compilerPermutation method, which finishes > normalizing the code to JS and continuing to optimize this lightly, though > not in a loo

[gwt-contrib] Documentation of compiler optimisations?

2020-10-01 Thread George Georgovassilis
Is there an up-to-date documentation of optimisations the compiler applies? An older page [1] discusses some topics but it isn't clear what of that has been implemented. (apologies for posting here, I asked this question on the user forum [2] but didn't get any replies) [1]

[gwt-contrib] Undefined property in super dev mode / 2.6.1

2014-09-26 Thread George Georgovassilis
When using super dev mode with chromium on a rather simple project I stumbled over an exception about an undefined property - the only catch: the property isn't undefined. It happens somewhere down the road of a click handler, interestingly enough Window.alert(+this) says 'undefined'.

[gwt-contrib] deRpc: RpcServlet.onBeforeRequestDeserialized ?

2010-01-24 Thread George Georgovassilis
Hello All, I've a case where I need to fiddle with the classloader before RPC deserializes the request payload. With the RemoteServiceServlet there was an onBeforeRequestDeserialized method which could be used to substitute the classloader used by RPC, but I couldn't find an equivalent for

Re: [gwt-contrib] Inlining nocache.js

2009-12-18 Thread George Georgovassilis
-'+'-/scr'+'ipt'); We've had inlining working on dotspots.com in GWT trunk for a while now, but I'm considering going back to an external nocache.js so we can more easily decouple our static content from the GWT code. Matt. On 2009-12-17, at 12:40 PM, George Georgovassilis wrote: Some time

[gwt-contrib] Inlining nocache.js

2009-12-17 Thread George Georgovassilis
Some time ago we discussed [1] inlining nocache.js into the host page to speed up initial page load, which I find quite worthwhile a read. While back in the 1.7 days I managed to inline nochache.js with a modest effort of post processing (escaping some javascript), 2.0 defeats me. I can't find a

[gwt-contrib] Issue 3849: RPC Serialization policy

2009-09-11 Thread George Georgovassilis
I've been recently struggling with getting Gilead to work properly with dynamic proxy mode. When DTOs implement Serializable instead of IsSerializable, RPC forces the use of a serialization policy. Apparently not all domain classes end up in the serialization policy (as a matter of fact, manually

[gwt-contrib] Inlining nocache.js

2009-08-07 Thread George Georgovassilis
I'd like to save first time visitors that roundtrip to fetch nocache.js. Instead I've declared the module HTML page as non- cacheable (works nice thanks to E-Tag) and moved images and GWT- compiler output to a fully cacheable directory. After inlining nocache.js into the module HTML I had to

[gwt-contrib] Re: Inlining nocache.js

2009-08-07 Thread George Georgovassilis
This occurred to me also when I started cutting down the requests: you cannot do the initial selection on the server as HTTP proxies will then see only one permutation: the first one that is ever retrieved by them. I've reduced the total number of HTTP requests required to load to just 2 (1 for

[gwt-contrib] Re: Inlining nocache.js

2009-08-07 Thread George Georgovassilis
Nevermind, solved my RPC-woes by copying the policy file to the web- app root. Ugly, but down to 2 requests. On Aug 7, 8:50 pm, George Georgovassilis g.georgovassi...@gmail.com wrote: This occurred to me also when I started cutting down the requests: you cannot do the initial selection