Re: Generate link to Tapestry page from another program

2015-05-12 Thread Thiago H de Paula Figueiredo
On Tue, 12 May 2015 06:11:28 -0300, Poder, Jacob wrote: It would because my own URLEncoder service would be based on the current Tapestry one, and in case the Tapestry one changes (bug, performance, whatever...) I would want to incorporate those changes also. You can check its history an

RE: Generate link to Tapestry page from another program

2015-05-12 Thread Poder, Jacob
te link to Tapestry page from another program On Wed, 06 May 2015 12:00:07 -0300, Poder, Jacob wrote: > I'll consider overriding the URLEncoder service, but I'm not too keen > on that as it will require me to check for changes in the std > implementation on each Tapestry upgrade

Re: Generate link to Tapestry page from another program

2015-05-11 Thread Thiago H de Paula Figueiredo
On Wed, 06 May 2015 12:00:07 -0300, Poder, Jacob wrote: I'll consider overriding the URLEncoder service, but I'm not too keen on that as it will require me to check for changes in the std implementation on each Tapestry upgrade. No, it won't. Why would it? Maybe the most reliable solut

Re: Generate link to Tapestry page from another program

2015-05-09 Thread Chris Poulsen
ourse and that was > definitely the point of my question, but what delimiter is allowed by > Tapestry? > > > > Fra: Chris Poulsen [mailingl...@nesluop.dk] > Sendt: 9. maj 2015 19:30 > Til: Tapestry users > Emne: Re: Generate link t

Re: Generate link to Tapestry page from another program

2015-05-09 Thread Chris Poulsen
; Fra: Chris Poulsen [mailingl...@nesluop.dk] > Sendt: 9. maj 2015 16:52 > Til: Tapestry users > Emne: Re: Generate link to Tapestry page from another program > > I was thinking that you could pass the list of ids as a single multivalue > parameter and then use request.getParameterValues to

Re: Generate link to Tapestry page from another program

2015-05-09 Thread Chris Poulsen
-Original Message- > From: Thiago H de Paula Figueiredo [mailto:thiag...@gmail.com] > Sent: 6. maj 2015 16:39 > To: Tapestry users > Subject: Re: Generate link to Tapestry page from another program > > On Wed, 06 May 2015 10:24:01 -0300, Poder, Jacob < > jacob.po..

RE: Generate link to Tapestry page from another program

2015-05-06 Thread Poder, Jacob
al Message- From: Thiago H de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: 6. maj 2015 16:39 To: Tapestry users Subject: Re: Generate link to Tapestry page from another program On Wed, 06 May 2015 10:24:01 -0300, Poder, Jacob wrote: > Tapestry will throw an exception in URLEncod

Re: Generate link to Tapestry page from another program

2015-05-06 Thread Thiago H de Paula Figueiredo
On Wed, 06 May 2015 10:24:01 -0300, Poder, Jacob wrote: Tapestry will throw an exception in URLEncoderImpl.decode before even getting to onActivate in my page, so I can't do that. You can override the URLEncoder service with your own implementation if you really want to use commas. Or yo

Re: Generate link to Tapestry page from another program

2015-05-06 Thread Thiago H de Paula Figueiredo
On Wed, 06 May 2015 09:58:41 -0300, Chris Poulsen wrote: you can also work with the request parameters in the "old fashioned" way by injecting the request You could combine the suggestion above with a page which will redirect to the correct page and Tapestry-generated URL according to t

RE: Generate link to Tapestry page from another program

2015-05-06 Thread Poder, Jacob
Tapestry will throw an exception in URLEncoderImpl.decode before even getting to onActivate in my page, so I can't do that. -Original Message- From: Chris Poulsen [mailto:mailingl...@nesluop.dk] Sent: 6. maj 2015 14:59 To: Tapestry users Subject: Re: Generate link to Tapestry page

Re: Generate link to Tapestry page from another program

2015-05-06 Thread Chris Poulsen
you can also work with the request parameters in the "old fashioned" way by injecting the request On Wed, May 6, 2015 at 2:45 PM, Poder, Jacob wrote: > Hi all, > > I want to generate links to a Tapestry page from another (non Tapestry) > Java program and would like to know if there is any prefer