Re: How to register custom function with GSS

2015-12-24 Thread Ed
> That's a shame. Though > H, me too :( -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group

Re: Getting rid of Dev mode for future GWT releases

2015-12-24 Thread Thomas Broyer
See https://github.com/tbroyer/gwt-maven-archetypes for a simple setup using the tomcat-maven-plugin. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-to

Re: GSS eval not evaluating

2015-12-24 Thread N Troncoso
While I'd still like to know why this isn't working, I worked around the issue by creating constants: public interface ColorResources extends CssResource { public static String shadowZ0 = Util.getShadow(0); public static String shadowZ1 = Util.getShadow(1); public static String sha

Re: Getting rid of Dev mode for future GWT releases

2015-12-24 Thread N Troncoso
Can you like explain a little more about your setup? In our production environment, our app is hosted by Tomcat, but by default GWT uses Jetty. There are some discrepancies there, and any Tomcat specific issues are super hard to debug. We've been trying to move to SDM with Tomcat, but we ha

GSS eval not evaluating

2015-12-24 Thread N Troncoso
I have a method that calculates a box shadow. To use it, I call getShadow(int depth). If I call this, I get the expected result. Now, I'd like to create a few predefined constants in GSS. So, I do this: public interface ColorResources extends CssResource { String shadowZ0(); String shado