Re: Return permutation directly from the server without selection script.

2010-12-21 Thread Matthew Hill
Okay, but now what? How do I get the GWT compiler to produce a single JS file per permutation which can be embedded without a selection script? e.g. script type=text/javascript language=javascript src=

Re: Return permutation directly from the server without selection script.

2010-11-18 Thread Helder Suzuki
Etienne, awesome! Thanks a lot for sharing! It just works. Slava, you just need to add the linker to your gwt.xml (see http://code.google.com/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html) On Fri, Sep 17, 2010 at 11:46 AM, Etienne Lacazedieu etienne.lacazed...@gmail.com wrote: I wrote

Re: Return permutation directly from the server without selection script.

2010-09-19 Thread Slava Lovkiy
Can you please demonstrate how this technique should be used to save that extra request from host page? (i.e. what other components needs to be added to implement solution from google wave guys) On Sep 18, 12:46 am, Etienne Lacazedieu etienne.lacazed...@gmail.com wrote: I wrote such a Linker :

Re: Return permutation directly from the server without selection script.

2010-09-17 Thread Helder Suzuki
+1 On Aug 4, 9:17 am, André Moraes andr...@gmail.com wrote: Hi, I saw the presentation of the GWT team and they talked about sending the permutation without sending first the selection script. I can read the HTTP headers and find-out what is the browser which is making the request, this is

Re: Return permutation directly from the server without selection script.

2010-09-17 Thread Etienne Lacazedieu
I wrote such a Linker : /** * This GWT linker creates a properties file which can be used to resolve Permutation Strong name given UserAgent and locale. * * @author Etienne Lacazedieu * */ @LinkerOrder(Order.PRE) public class StrongNameOracleLinker extends AbstractLinker { public static

Return permutation directly from the server without selection script.

2010-08-04 Thread André Moraes
Hi, I saw the presentation of the GWT team and they talked about sending the permutation without sending first the selection script. I can read the HTTP headers and find-out what is the browser which is making the request, this is the easy part. But how can I find-out which file was generated

Re: Return permutation directly from the server without selection script.

2010-08-04 Thread Gal Dolber
I look for that a time ago... the Wave team did it.. but it seems they didn't release it. But it shouldn't be hard to do... you need to create a linker that generates a file with the information you need. Then from your server read that file a do the easy part. 2010/8/4 André Moraes

Re: Return permutation directly from the server without selection script.

2010-08-04 Thread André Moraes
How in the linker i get the permutation that is been generated? I saw the google i/o presentation where the creation off an Html5OfflineLinker but i don't found were i get the permutation, the list of files I already know were to look. The GWT team don't have too much docs for Linkers. --

Re: Return permutation directly from the server without selection script.

2010-08-04 Thread Gal Dolber
To be honest.. I don't know :)... I never did it. I good start point is com.google.gwt.core.linker.IFrameLinker 2010/8/4 André Moraes andr...@gmail.com How in the linker i get the permutation that is been generated? I saw the google i/o presentation where the creation off an