Re: How do you share css resources across multiple modules?

2010-06-02 Thread Tobias Herrmann
Hi Chris, that option will only generate very short obfuscated style names, but they will still be different across different modules. I have looked into the css resource generator source, but there seems to be no way to force identical style names for separate compilation runs. I may need

Re: How do you share css resources across multiple modules?

2010-06-01 Thread BimboJones
Hi, You can add stylesheet src='your.css'/ to the *.gwt.xml. On 28 Maio, 15:37, Tobias Herrmann t.herrm...@alkacon.com wrote: No, that is not what I was looking for. I know how to use the same CssResource across several widgets. In my case, I need to share the same resource across several

Re: How do you share css resources across multiple modules?

2010-06-01 Thread Tobias Herrmann
Hi, I am quite happy using client bundles and css resources as described in the GWT documentation. They provide many advantages over the 'regular' static css style-sheet. Also looking at the amount of code already written for my project, I will not switch that lightly. It is working well if

Re: How do you share css resources across multiple modules?

2010-06-01 Thread Chris Lercher
Hi Tobias, have you tried to use set-configuration-property name=CssResource.obfuscationPrefix value=empty/ in your gwt.xml files? I haven't tried this with multiple modules yet, but I think it should work, according to this description:

How do you share css resources across multiple modules?

2010-05-28 Thread tobirius
Hi all, In my application I need to include several gwt modules into a page. They all inherit from the same base module which provides some CssResources. Is it possible to inject the css of these resources only once using it across all included modules? Currently I need to inject the same styles

Re: How do you share css resources across multiple modules?

2010-05-28 Thread Mark
I am not sure if this is exactly what you want to do - but have a look at this page: http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideUiBinder.html#Share_resource_instances On 28 Mai, 16:25, tobirius t.herrm...@alkacon.com wrote: Hi all, In my application I need to include

Re: How do you share css resources across multiple modules?

2010-05-28 Thread Tobias Herrmann
No, that is not what I was looking for. I know how to use the same CssResource across several widgets. In my case, I need to share the same resource across several modules, not compiled together but one after the other. Mark schrieb: I am not sure if this is exactly what you want to do - but