Re: Greenfield development: Tapestry or Grails for Groovy dev?

2012-10-09 Thread Kalle Korhonen
Very clear and level-headed reasoning Alex. Would you like to, or would you mind if I put it up as a blog post on tynamo.org? Kalle On Tue, Oct 9, 2012 at 8:30 PM, Alex Kotchnev wrote: > In the past five years, I worked on a number of greenfield projects. In > three out of four, we ended up cho

Re: Greenfield development: Tapestry or Grails for Groovy dev?

2012-10-09 Thread Chris Mylonas
thank you for sharing your experience alex On 10/10/2012, at 2:30 PM, Alex Kotchnev wrote: > In the past five years, I worked on a number of greenfield projects. In > three out of four, we ended up choosing Grails - it is very hard to deny > the market & mindshare , the expansive documentation,

Re: Greenfield development: Tapestry or Grails for Groovy dev?

2012-10-09 Thread Alex Kotchnev
In the past five years, I worked on a number of greenfield projects. In three out of four, we ended up choosing Grails - it is very hard to deny the market & mindshare , the expansive documentation, the big name company behind the project, the large community, a massive number of plugins (for prett

Re: Change default Log4J logger tapestry

2012-10-09 Thread Josh Canfield
I believe this is your problem. http://veerasundar.com/blog/2009/08/log4j-tutorial-additivity-what-and-why/ Josh On Tue, Oct 9, 2012 at 4:21 AM, djst wrote: > Hi there. > > Do any of you know how I can specify which Log4J logger tapestry should > use? > > You see, I'm trying to set Log4J up so

Suggestion regarding service ID

2012-10-09 Thread Muhammad Gelbana
One can use a service id to identify a specific implementation for an interface. But sometimes one may have multiple interfaces for the same purpose. Wouldn't it be easier to have specify the same service ID among different interfaces ? For exmaple: InterfaceA (Implemented by ImplA, Id: "Users",

RE: tapestry not loading when JNDI enabled in Jetty

2012-10-09 Thread Marcus Furlong
No errors. I just enabled Jetty debug to see what's not happening. If all else fails then I'll try another container. > CC: users@tapestry.apache.org > From: lpri...@hope.nyc.ny.us > Subject: Re: tapestry not loading when JNDI enabled in Jetty > Date: Tue, 9 Oct 2012 16:48:15 -0400 > To: users

Re: tapestry not loading when JNDI enabled in Jetty

2012-10-09 Thread Lenny Primak
What's the error you are getting? If you are using JNDI I suggest you use glassfish server instead of jetty. On Oct 9, 2012, at 4:43 PM, Marcus Furlong wrote: > > Hello Tapestry Users, > I've been following the Tapestry and have everything working. After enabling > JNDI through the Eclipse

Re: Greenfield development: Tapestry or Grails for Groovy dev?

2012-10-09 Thread Lenny Primak
I am using groovy and tapestry with great success in our projects. We rejected Grails in our web framework bake off couple of years ago mostly due to Inability of web designers to work with it. On Oct 9, 2012, at 3:39 PM, scrotty wrote: > I am about to create a brand new website. I plan on usi

Greenfield development: Tapestry or Grails for Groovy dev?

2012-10-09 Thread scrotty
I am about to create a brand new website. I plan on using Groovy for my JVM language (just an arbitrary constraint I imposed on myself as part of the polyglot experience) and would like to give my users the niceties of AJAX on the front end. Everything else: DB, ORM, Web framework, etc. are wide op

Re: tapestry.js formatLocalizedNumber

2012-10-09 Thread zkn
Thanks! That worked. On 09.10.2012, at 10:58, Lance Java wrote: > I've had troubles with this sort of thing before with other web frameworks > before where this was very difficult to do. These locale specific > date/number formats are stored in prop files that are part of the jre > installation a

Change default Log4J logger tapestry

2012-10-09 Thread djst
Hi there. Do any of you know how I can specify which Log4J logger tapestry should use? You see, I'm trying to set Log4J up so I have two separate log files. One containing the internal tapestry log entries and one containing my own specified log entries. Here is my properties file: og4j.rootLogg

Is it possible to squeeze in resolving this issue within v5.4 ?

2012-10-09 Thread Muhammad Gelbana
I hope it's possible to squeeze in resolving this issue within the new release (5.4) ? https://issues.apache.org/jira/browse/TAP5-1948 Thank you all for your efforts.

Re: [ANN] Spock 0.7 Released

2012-10-09 Thread Massimo Lusetti
On Tue, Oct 9, 2012 at 6:36 AM, Peter Niederwieser wrote: > Dear Tapestry Community, > > I'm pleased to announce that Spock 0.7 has been released. As usual, it is > available from Maven Central > (http://repo1.maven.org/maven2/org/spockframework). Great news! Thanks! -- Massimo http://meridio.

Re: tapestry.js formatLocalizedNumber

2012-10-09 Thread Lance Java
I've created a jira here https://issues.apache.org/jira/browse/TAP5-2011 -- View this message in context: http://tapestry.1045711.n5.nabble.com/tapestry-js-formatLocalizedNumber-tp5716714p5716722.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: Change textfield focus on zone update

2012-10-09 Thread nquirynen
Well I'm afraid you just can't set focus on a hidden element. So you have to try to set the focus after it is visible. Maybe use of Tapestry.ZONE_UPDATED_EVENT as lance firstly suggested might work. $('formZone').observe(Tapestry.ZONE_UPDATED_EVENT, function(event) { // set the focus });

Re: tapestry.js formatLocalizedNumber

2012-10-09 Thread Lance Java
I've had troubles with this sort of thing before with other web frameworks before where this was very difficult to do. These locale specific date/number formats are stored in prop files that are part of the jre installation and with other web frameworks I was forced to use hacky workarounds. Lucki