Re: [gwt-contrib] Re: DevMode with -superDevMode hardcoded -noprecompile

2014-09-30 Thread Manuel Carrasco Moñino
On Mon, Sep 29, 2014 at 6:32 PM, Brandon Donnelson branflake2...@gmail.com wrote: We had a reset.css included in the public app folder which was used by adding it to the static html header. In this case I just moved it to the gwt xml module so it was available on gwt app initialization. yep,

Re: [gwt-contrib] Re: DevMode with -superDevMode hardcoded -noprecompile

2014-09-29 Thread Manuel Carrasco Moñino
Brandon, out of curiosity, how do you use those static files in your .html? do you use absolute urls like http://codeserver:port/ModuleName/my_asset.css? Because if you use relative paths they dont work in SDM since you have to prepend the getModuleBaseForStaticFiles() path. IMO, we should use

Re: [gwt-contrib] Re: DevMode with -superDevMode hardcoded -noprecompile

2014-09-29 Thread Thomas Broyer
On Sunday, September 28, 2014 10:06:12 PM UTC+2, Ray Cromwell wrote: This was fixed recently I think, where all public resources are copied even if no precompile happens. That's the change I linked to, but it's copying the resources to the CodeServer's own temporary folder IIUC. What

Re: [gwt-contrib] Re: DevMode with -superDevMode hardcoded -noprecompile

2014-09-29 Thread Brandon Donnelson
We had a reset.css included in the public app folder which was used by adding it to the static html header. In this case I just moved it to the gwt xml module so it was available on gwt app initialization. Copying the web resources on SDM init would be nifty. I'm not sure what the commit is

Re: [gwt-contrib] Re: DevMode with -superDevMode hardcoded -noprecompile

2014-09-28 Thread 'Ray Cromwell' via GWT Contributors
This was fixed recently I think, where all public resources are copied even if no precompile happens. On Sun, Sep 28, 2014 at 3:02 AM, Thomas Broyer t.bro...@gmail.com wrote: I'd rather say DevMode's -superDevMode should share the same behavior as

Re: [gwt-contrib] Re: DevMode with -superDevMode hardcoded -noprecompile

2014-09-28 Thread Brandon Donnelson
Cool that would be nifty. I've been testing with GWT 2.7.0-SNAPSHOT and GWT 2.6.1, although I haven't noticed those resources getting copied, although maybe its so new the snapshot doesn't have it yet. On Sunday, September 28, 2014 1:06:12 PM UTC-7, Ray Cromwell wrote: This was fixed