Re: How to store the rendering of a page in a String

2007-05-09 Thread Jesse Kuhnert
You have to contribute a new ResponseContributor to the service point here: http://tapestry.apache.org/tapestry4.1/tapestry-framework/hivedoc/config/tapestry.services.ResponseContributors.html It works the same way as the tacos version. Different response types sniff the incoming http request an

Re: How to store the rendering of a page in a String

2007-05-09 Thread Stephane Decleire
Thanks Jesse, I think i can manage the alterations in the ResponseBuilder but i would welcome some advice on the way to inject the custom ResponseBuilder in the rendering cycle. -- Stéphane Decleire www.bebe-nounou.com Jesse Kuhnert a écrit : It's a little more complicated looking than say

Re: How to store the rendering of a page in a String

2007-05-08 Thread Martino Piccinato
can't one just pass it's own IMarkupWriter that would just write to a different OutputStream?

Re: How to store the rendering of a page in a String

2007-05-07 Thread Jesse Kuhnert
It's a little more complicated looking than saying it just "stores a string" but you could easily cut && paste (or extend - but carefully as this impl is a moving target) http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/services/impl/DojoAj

How to store the rendering of a page in a String

2007-05-07 Thread Stephane Decleire
Hi, I'd like to store the rendering of a page in a String instead of sending it back to the client. Has anybody already implemented such a task ? Any idea is welcome :-) Thanks -- Stéphane Decleire www.bebe-nounou.com