RE: T5.1 Property Expressions

2009-04-27 Thread Blower, Andy
...@gmail.com] > Sent: 27 April 2009 17:29 > To: Tapestry users > Subject: Re: T5.1 Property Expressions > > Congratulations, you have The JIRA Issue Of The Beast: > > https://issues.apache.org/jira/browse/TAP5-666 > > > On Thu, Apr 23, 2009 at 10:37 AM, Andy Blo

Re: T5.1 Property Expressions

2009-04-27 Thread Michael Prescott
Reminds me of some washroom graffiti I saw, reading: 668 - the neighbour of the beast On Mon, Apr 27, 2009 at 12:28 PM, Howard Lewis Ship wrote: > Congratulations, you have The JIRA Issue Of The Beast: > > https://issues.apache.org/jira/browse/TAP5-666 > > > On Thu, Apr 23, 2009 at 10:37 AM, And

Re: T5.1 Property Expressions

2009-04-27 Thread Howard Lewis Ship
Congratulations, you have The JIRA Issue Of The Beast: https://issues.apache.org/jira/browse/TAP5-666 On Thu, Apr 23, 2009 at 10:37 AM, Andy Blower wrote: > > I just tried out the new T5.1 property expressions for the first time and got > an error. I’m trying to replace this: > > ${linkTitle} >

Re: T5.1 Property Expressions

2009-04-23 Thread Howard Lewis Ship
Looks like a bug to me. On Thu, Apr 23, 2009 at 10:37 AM, Andy Blower wrote: > > I just tried out the new T5.1 property expressions for the first time and got > an error. I’m trying to replace this: > > ${linkTitle} > > public String getLinkTitle() { >        return getTitle(false); > } > > With

Re: T5.1 Property Expressions

2009-04-23 Thread Ulrich Stärk
Have you tried ${getTitle('false')}? Uli Andy Blower schrieb: I just tried out the new T5.1 property expressions for the first time and got an error. I’m trying to replace this: ${linkTitle} public String getLinkTitle() { return getTitle(false); } With this: ${getTitle(false)