@Laurence I'm not enthusiastic about the names for a slightly different reason after looking at the source of routes.py -- the names don't suggest the actual functionality
1) 'NewRequest' indicates the creation of a new request object. pyramid/router.py line 78 shows that it does function more like a "BeforeDispatch" 2) 'NewResponse' indicates the creation of a new response object. It was recently switched to act more like an "AfterResponseCallbacks" handler. I wonder if it makes sense to have both a "NewResponse" and "AfterResponseCallbacks" style events. Would someone ever want to use the NewResponse event to examine the response and conditionally insert response_callbacks ? I don't think so, but just want to bring this up. -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pylons-discuss. For more options, visit https://groups.google.com/d/optout.
