You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of #inNewRenderLoopCall: does not work with
partial continuations. It worked with the full continuations because of a
fluke when the wrong context chain was unwound.
The method should restore the root component when the continuation is
evaluated. The problem is that there is currently no way to get at the
current root component (nor at the current continuation, which holds it).
This also affects #inNewRenderLoopShow: - #answer does not work for
components displayed this way. I think it might be possible to fix that
once the other issue is fixable.
The most "correct" fix for this, in my opinion, is to store the root
component in the session and backtrack it. The problem is, this really
wants a WARenderLoopSession subclass because the base Session know nothing
about Components. This is only a problem because people are used to
subclassing WASession...
Other possible solutions...
* SessionContinuations could be made into RequestHandlers (we'd have to
split it into WARequestHandler and WAFilteredRequestHandler) and added to
the context
* The SessionContinuation could store the root component in the property
dictionary on RequestContext
* Dunno, other thoughts?
Original issue reported on code.google.com by jfitz...@gmail.com on 27 Jan 2009 at 11:57
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
jfitz...@gmail.com
on 27 Jan 2009 at 11:57The text was updated successfully, but these errors were encountered: