Re: Basic question about URL rewriting and Tapestry 5

2013-03-12 Thread George Christman
Excellent, thanks Thiago. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Basic-question-about-URL-rewriting-and-Tapestry-5-tp5691410p5720444.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: Basic question about URL rewriting and Tapestry 5

2013-03-12 Thread Thiago H de Paula Figueiredo
On Tue, 12 Mar 2013 11:21:14 -0300, George Christman wrote: Hi Thiago, has there been any progress with implementing the old API? The source is at https://github.com/thiagohp/tapestry-url-rewriter, but I didn't manage to get it in the Maven central repository yet. I haven't done much te

Re: Basic question about URL rewriting and Tapestry 5

2013-03-12 Thread George Christman
Hi Thiago, has there been any progress with implementing the old API? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Basic-question-about-URL-rewriting-and-Tapestry-5-tp5691410p5720436.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: Basic question about URL rewriting and Tapestry 5

2012-05-10 Thread Steve Eynon
Yeah, I was quite dismayed when the old URL Rewriter API disappeared to make way for the LinkTransformer - it'd be great if something similar was resurrected! In the mean time, I'm checking out Lance's suggestion. Steve. On 10 May 2012 20:40, Thiago H. de Paula Figueiredo wrote: > On Thu, 10

Re: Basic question about URL rewriting and Tapestry 5

2012-05-10 Thread Thiago H. de Paula Figueiredo
On Thu, 10 May 2012 08:58:50 -0300, Steve Eynon wrote: It's just that implementing a LinkTransformer is lot of work and constructing / deconstructing PageRenderRequestParameters from a raw Request is not a simple task. Whereas the external solutions offer a simple search / replace functionali

Re: Basic question about URL rewriting and Tapestry 5

2012-05-10 Thread Lance Java
.1045711.n5.nabble.com/Basic-question-about-URL-rewriting-and-Tapestry-5-tp5691410p5700037.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For

Re: Basic question about URL rewriting and Tapestry 5

2012-05-10 Thread Steve Eynon
It's just that implementing a LinkTransformer is lot of work and constructing / deconstructing PageRenderRequestParameters from a raw Request is not a simple task. Whereas the external solutions offer a simple search / replace functionality on the url. Steve. On 8 May 2012 19:53, Thiago H. de

Re: Basic question about URL rewriting and Tapestry 5

2012-05-08 Thread Julien Martin
Thanks Steve. I was also considering: http://ocpsoft.org/rewrite/ Julien. 2012/5/8 Steve Eynon > I find Tuckey's Url Rewrite Filter a good option for simple rewrites: > > http://www.tuckey.org/urlrewrite/ > > Steve. > -- > Steve Eynon > --- > "If at first you don't su

Re: Basic question about URL rewriting and Tapestry 5

2012-05-08 Thread Steve Eynon
I find Tuckey's Url Rewrite Filter a good option for simple rewrites: http://www.tuckey.org/urlrewrite/ Steve. -- Steve Eynon --- "If at first you don't succeed,    so much for skydiving!" On 8 May 2012 04:23, Julien Martin wrote: > Thanks Thiago! > > > 2012/5/7 Ju

Re: Basic question about URL rewriting and Tapestry 5

2012-05-07 Thread Julien Martin
Thanks Thiago! 2012/5/7 Julien Martin > Thanks Thiago! > I was not aware of that. > J. > > 2012/5/7 Thiago H. de Paula Figueiredo > > On Mon, 07 May 2012 14:19:24 -0300, Julien Martin >> wrote: >> >> Hi all! >>> >> >> Hi! >> >> >> @Thiago: My only concern is about SEO optimization. Can you

Re: Basic question about URL rewriting and Tapestry 5

2012-05-07 Thread Julien Martin
Hi all! @Cezary: I can just use a page link as an action is called on the server side as follows: @OnEvent(EventConstants.ACTION) void changeLocale(String language) { persistentLocale.set(new Locale(language)); } @Thiago: My only concern is about SEO optimization. Can you provide any guideline a

Re: Basic question about URL rewriting and Tapestry 5

2012-05-07 Thread Thiago H. de Paula Figueiredo
On Mon, 07 May 2012 12:50:16 -0300, Julien Martin wrote: Hello, Hi! 1. I have the following T5 action link: *en* 2. Which translate into the following link: *http://localhost:8080/ume-web/fr/contactus.actionlink_1/en* 3. Which in turn, when clicked, displays the following URL: *http://lo

Re: Basic question about URL rewriting and Tapestry 5

2012-05-07 Thread Cezary Biernacki
In this case you should use PageLink, instead of ActionLink. Cezary

Basic question about URL rewriting and Tapestry 5

2012-05-07 Thread Julien Martin
Hello, 1. I have the following T5 action link: *en* 2. Which translate into the following link: *http://localhost:8080/ume-web/fr/contactus.actionlink_1/en* 3. Which in turn, when clicked, displays the following URL: *http://localhost:8080/ume-web/en/contactus* I am just wondering whether my ac