Not sure about this specific case, but if you upgrade your Tapestry version
then even this might break. You are generally better off coding as (YMMV):

t:ac="prop:specificContext()"

Object[] specificContext() {
    Object[] context = Object[2];
    context[0] = "catalog";
    context[1] = "somefile";

    return context;
}

Szemere

On Mon, Apr 28, 2008 at 4:56 PM, Foror <[EMAIL PROTECTED]> wrote:

> F> t:ac=catalog%2Fsomefile
>
> Fix it :)  t:ac=catalog%252Fsomefile - worked
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to