What happens if compiled script (iframe content) is loaded after outer page is parsed

2014-12-28 Thread Jose MarĂ­a Zaragoza
Hello: Reading the GWT Bootstrap on Googles page http://www.gwtproject.org/doc/latest/DevGuideOrganizingProjects.html#DevGuideBootstrap I wonder what happens if host page is parsed before iframe's contents are loaded. Does it wait for it ? Does it do anything ? I know onInjectionDone()

Finding out what Primary Linker is Active, inside a Post Linker

2014-12-28 Thread bobbitdiddle
I'm trying to solve a problem. I've written a custom post (non-primary) linker extending AbstractLinker, but I want it to have different behavior depending on what the primary linker is. For example, the primary linker could be the standard linker or the xsiframe linker. I could attempt to

Re: Finding out what Primary Linker is Active, inside a Post Linker

2014-12-28 Thread Jens
What if someone has written a custom primary linker that is unknown to you? Would your linker still work? Basically you might not be able assume that one of the linkers that are shipped with GWT are actually used by an app. Maybe it is a better approach to create a sane abstract class of your

Can not deploy GWT application into a standalone Jetty server

2014-12-28 Thread David
I used GWT 2.7 and Java 7. After I compiled a big project and deployed it into standalone Jetty 8.0.4 in Window 7, If I used a IP address as an url, I got the following message - Couldn't load gwt from Super Dev Mode server at http://192.168.8.27:. Please make sure this server is ready. Do

Re: Can not deploy GWT application into a standalone Jetty server

2014-12-28 Thread Ed
Is jetty set up to server on that port? On Sun, Dec 28, 2014 at 7:43 PM, David leeon2...@gmail.com wrote: I used GWT 2.7 and Java 7. After I compiled a big project and deployed it into standalone Jetty 8.0.4 in Window 7, If I used a IP address as an url, I got the following message - Couldn't

Re: Can not deploy GWT application into a standalone Jetty server

2014-12-28 Thread David
Jetty is running on port 8868. GWT compiler appears not removing code related to code server, which causes problem. On Monday, December 29, 2014 8:59:43 AM UTC+8, Ed wrote: Is jetty set up to server on that port? On Sun, Dec 28, 2014 at 7:43 PM, David leeo...@gmail.com javascript: wrote:

Display Chinese

2014-12-28 Thread David
How do I display Chinese in a menu if I don't use I18N constants? I like to display Chinese dynamically instead of from property file. Thanks! David -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and

Re: Finding out what Primary Linker is Active, inside a Post Linker

2014-12-28 Thread bobbitdiddle
Maybe I'm missing something, but looking at the code briefly, I see that StandardLinkerContext()'s constructor takes the ModuleDef, and the ModuleDef is passed around throughout the linking process, so I'm guessing a strong reference to the ModuleDef would persist throughout the linking

Re: Display Chinese

2014-12-28 Thread Mohammed Sameen
if you don't want to use I18N constants then load from Database On Monday, December 29, 2014 7:41:55 AM UTC+5:30, David wrote: How do I display Chinese in a menu if I don't use I18N constants? I like to display Chinese dynamically instead of from property file. Thanks! David --

Re: Display Chinese

2014-12-28 Thread David
The contents are not decoded right if I use utf-8 for some reason. On Monday, December 29, 2014 1:33:02 PM UTC+8, Mohammed Sameen wrote: if you don't want to use I18N constants then load from Database On Monday, December 29, 2014 7:41:55 AM UTC+5:30, David wrote: How do I display Chinese