If you&#39;re streaming the response, definitely not. If you&#39;re not, well maybe technically, though I think even in that case the data has probably been written to the response&#39;s data stream. You could certainly reset the response but then you&#39;d lose everything...<br>

<br>You could subclass the render loop code and... the render context class maybe? Then you could hold onto the root in the context and not write it out until you were done rendering content. Or something... you&#39;re getting in deep at that point. :)<br>

<br>Julian<br><br><div class="gmail_quote">On Fri, Apr 16, 2010 at 10:28 PM, Sean Allen <span dir="ltr">&lt;<a href="mailto:sean@monkeysnatchbanana.com">sean@monkeysnatchbanana.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

is it possible for code that is executed during renderContentOn: to<br>
add additional header info like updateRoot: does.<br>
so basically, delay til renderContentOn decisions about what to add to<br>
root and what not.<br>
<br>
in psuedo something like:<br>
<br>
renderContentOn: aCanvas<br>
<br>
    aCanvas html: &#39;some html&#39;.<br>
    self renderMySpecialMethod.<br>
    aCanvas html: &#39;some html&#39;.<br>
<br>
renderMySpecialMethod: aCanvas<br>
<br>
   *magic to get html root*<br>
   *do something with html root*<br>
   aCanvas html: &#39;special html that needs something in the root to operate&#39;.<br>
_______________________________________________<br>
seaside mailing list<br>
<a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
</blockquote></div><br>