Re: t5: url rewriting and query parameter part

2011-09-21 Thread EStreur
null) { result.addAll(Arrays.asList(values)); } // the delegated parameters values = super.getParameters(name); if (values != null) { result.addAll(Arrays.asList(values)); } return result.isEmpty()?null:result.toArray(new String[0]); } } -- View this

Re: T5: url rewriting

2011-01-18 Thread Alejandro Scandroli
is LinkTransformer ready to > use? any tutorial on this? Thanks, > > Angelo > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/T5-url-rewriting-tp3342575p3342575.html > Sent from the Tapestry -

T5: url rewriting

2011-01-15 Thread Angelo C.
context: http://tapestry.1045711.n5.nabble.com/T5-url-rewriting-tp3342575p3342575.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional

Re: t5: url rewriting and query parameter part

2009-10-08 Thread Thiago H. de Paula Figueiredo
Em Thu, 08 Oct 2009 18:48:40 -0300, Angelo Chen escreveu: Hi Thiago, Hi! Another question is, how do you rewrite a outgoing link without rewriting the query parameters? The URL rewriting itself is nothing more than receiving a Request instance and returning another. You don't need to

Re: t5: url rewriting and query parameter part

2009-10-08 Thread Angelo Chen
Hi Thiago, Another question is, how do you rewrite a outgoing link without rewriting the query parameters? Thanks, Thiago H. de Paula Figueiredo wrote: > > On Thu, Oct 8, 2009 at 11:11 AM, Angelo Chen > wrote: > >> Hi, > > Hi! > > >> I'm rewriting a incoming url into: >> mypage/look.gri

Re: t5: url rewriting and query parameter part

2009-10-08 Thread Angelo Chen
Hi Thiago, I do rewrite them in the outgoing : mypage/look.grid.pager/3?t:ac=0001/ABCD becoming: mypage/0001/ABCD/3 so in the incoming, I need to rewrie it back to: mypage/look.grid.pager/3?t:ac=0001/ABCD Thiago H. de Paula Figueiredo wrote: > > On Thu, Oct 8, 2009 at 11:11 AM, Angelo Che

Re: t5: url rewriting and query parameter part

2009-10-08 Thread Thiago H. de Paula Figueiredo
On Thu, Oct 8, 2009 at 11:11 AM, Angelo Chen wrote: > Hi, Hi! > I'm rewriting a incoming url into: > mypage/look.grid.pager/3?t:ac=0001/ABCD Unless you're rewriting the query parameters, you don't need to worry about them. -- Thiago -

t5: url rewriting and query parameter part

2009-10-08 Thread Angelo Chen
Hi, I'm rewriting a incoming url into: mypage/look.grid.pager/3?t:ac=0001/ABCD SimpleRequestWrapper works with path, that means it is only up to "mypage/look.grid.pager/3", how about the query string part(?t:ac=0001/ABCD), how to make it path of rewritten url? Thanks, -- View this message i