On Monday, August 27, 2012 9:40:25 AM UTC+2, tanteanni wrote: > > i know how to switch css obuscation off: > > <set-configuration-property name="CssResource.style" value="pretty"/> > > this is don in my default gwt.xml. But how to turn it on again - in my > ci.gwt.xml/ release.gwt.xml? i asked this already at > stackoverflow<http://stackoverflow.com/questions/11772627/gwt-cssresource-style-possible-values-how-to-turn-obfuscation-on>but > it seems to be a very hard question?! > > So what values could be asigned to "CssResource.style" and what value is > the default value - the value that activates the obfuscation? >
Answered on SO: That configuration property is defined in com/google/gwt/ressources/Ressources.gwt.xml<http://code.google.com/p/google-web-toolkit/source/browse/releases/2.4/user/src/com/google/gwt/resources/Resources.gwt.xml> that way: <define-configuration-property name="CssResource.style" is-multi-valued="false" /> <set-configuration-property name="CssResource.style" value="obf" /> I.e. the default value is obf. I believe obfuscate or obfuscated would work too (if you find them more readable). -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/kMS-qgHVrVMJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
