You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Andrea Chiumenti <ki...@gmail.com> on 2007/04/23 17:42:26 UTC

SOLUTION to BLOCKING: Tapestry-4.1.2-SNAPSHOT and ognl exp. parser

org/apache/tapestry/html/Relation.java

line 113:
public abstract boolean getUseBody();
must be
public abstract boolean isUseBody();

line 51:
if (getUseBody() && getHref() == null)
must be
if (isUseBody() && getHref() == null)

do you want a jira with diff attached, or you can directly do the change ?

Re: SOLUTION to BLOCKING: Tapestry-4.1.2-SNAPSHOT and ognl exp. parser

Posted by Andrea Chiumenti <ki...@gmail.com>.
done

On 4/23/07, Andreas Andreou <an...@di.uoa.gr> wrote:
>
> jira ... a later ognl version may render this unneeded
>
> On 4/23/07, Andrea Chiumenti <ki...@gmail.com> wrote:
> >
> > org/apache/tapestry/html/Relation.java
> >
> > line 113:
> > public abstract boolean getUseBody();
> > must be
> > public abstract boolean isUseBody();
> >
> > line 51:
> > if (getUseBody() && getHref() == null)
> > must be
> > if (isUseBody() && getHref() == null)
> >
> > do you want a jira with diff attached, or you can directly do the change
> ?
> >
>
>
>
> --
> Andreas Andreou - andyhot@apache.org - http://andyhot.di.uoa.gr
> Tapestry / Tacos developer
> Open Source / JEE Consulting
>

Re: SOLUTION to BLOCKING: Tapestry-4.1.2-SNAPSHOT and ognl exp. parser

Posted by Andreas Andreou <an...@di.uoa.gr>.
jira ... a later ognl version may render this unneeded

On 4/23/07, Andrea Chiumenti <ki...@gmail.com> wrote:
>
> org/apache/tapestry/html/Relation.java
>
> line 113:
> public abstract boolean getUseBody();
> must be
> public abstract boolean isUseBody();
>
> line 51:
> if (getUseBody() && getHref() == null)
> must be
> if (isUseBody() && getHref() == null)
>
> do you want a jira with diff attached, or you can directly do the change ?
>



-- 
Andreas Andreou - andyhot@apache.org - http://andyhot.di.uoa.gr
Tapestry / Tacos developer
Open Source / JEE Consulting