Re: T5: Redirecting to out-of-tapestry page

2007-07-25 Thread Bill Holloway
'cause Howard told me not to use internal classes :) I simply extended the Link interface myself. Pretty much like the ACEGI trick. Bill On 7/25/07, Daniel Jue <[EMAIL PROTECTED]> wrote: Can you share your implementation? Is there a reason you couldn't return a link as used on the wiki's Ac

Re: T5: Redirecting to out-of-tapestry page

2007-07-25 Thread Nick Westgate
This is exactly why the framework should provide something, so I guess I'll add the JIRA issue. https://issues.apache.org/jira/browse/TAPESTRY-1671 Any code additions would be helpful. If you use anything with "internal" in the package name, expect it to break one day. It's not part of Tapestry'

Re: T5: Redirecting to out-of-tapestry page

2007-07-25 Thread Daniel Jue
Can you share your implementation? Is there a reason you couldn't return a link as used on the wiki's Acegi tutorial? http://wiki.apache.org/tapestry/Tapestry5LinkingToNonTapestryURIs On 7/24/07, Bill Holloway <[EMAIL PROTECTED]> wrote: Got it going with my own implementation of Link. bill

Re: T5: Redirecting to out-of-tapestry page

2007-07-25 Thread Bill Holloway
Well, I'm not sure that's warranted. bill On 7/24/07, Nick Westgate <[EMAIL PROTECTED]> wrote: Don't forget to log a JIRA issue. ;-) Cheers, Nick. Bill Holloway wrote: > Got it going with my own implementation of Link. > > bill > > On 7/23/07, Nick Westgate <[EMAIL PROTECTED]> wrote: >> >>

Re: T5: Redirecting to out-of-tapestry page

2007-07-24 Thread Nick Westgate
Don't forget to log a JIRA issue. ;-) Cheers, Nick. Bill Holloway wrote: Got it going with my own implementation of Link. bill On 7/23/07, Nick Westgate <[EMAIL PROTECTED]> wrote: Probably the best way would be a new method on ComponentResourcesCommon to get an external link, or an Externa

Re: T5: Redirecting to out-of-tapestry page

2007-07-24 Thread Bill Holloway
Got it going with my own implementation of Link. bill On 7/23/07, Nick Westgate <[EMAIL PROTECTED]> wrote: Probably the best way would be a new method on ComponentResourcesCommon to get an external link, or an ExternalLink class or something. In the meantime see if you can return a new LinkIm

Re: T5: Redirecting to out-of-tapestry page

2007-07-23 Thread Nick Westgate
Probably the best way would be a new method on ComponentResourcesCommon to get an external link, or an ExternalLink class or something. In the meantime see if you can return a new LinkImpl() with what you need. Cheers, Nick. Bill Holloway wrote: Apologies if this has already been asked, but I

T5: Redirecting to out-of-tapestry page

2007-07-23 Thread Bill Holloway
Apologies if this has already been asked, but I need to redirect from a page's onActivate() to a page on another site altogether. What's the best technique? bill