Re: Javascript appears as one long line in client; it's hard to debug.

2014-06-27 Thread Thiago H de Paula Figueiredo
On Fri, 27 Jun 2014 02:01:29 -0300, Claude Andrew wrote: d'oh. I fixed it myself. It turns out that setting the app.properties setting tapestry.production-mode = false did not work but the following did: That's the expected behavior. Symbol values aren't looked up from app.properti

Re: Javascript appears as one long line in client; it's hard to debug.

2014-06-26 Thread Geoff Callender
It's usually better to supply this as a system property (eg. -Dtapestry.production-mode = false) at runtime. For Jetty in Eclipse, put it in VM Arguments, for Tomcat put it in CATALINA_OPTS, for JBOSS put it in JAVA_OPTS, etc. Geoff On 27 Jun 2014, at 3:01 pm, Claude Andrew wrote: > d'oh. I

Re: Javascript appears as one long line in client; it's hard to debug.

2014-06-26 Thread Claude Andrew
d'oh. I fixed it myself. It turns out that setting the app.properties setting tapestry.production-mode = false > did not work but the following did: AppModule.contributeApplicationDefaults(...){ > configuration.add(SymbolConstants.PRODUCTION_MODE, false); > ... > } I don't know what made me