Re: [Repoze-dev] how to get the response

2010-04-28 Thread Davide Moro
Il giorno mar, 27/04/2010 alle 12.31 -0400, Chris Rossi ha scritto: Ciao Davide, There is not a response already attached to the request, but your instance of HTTPFound *is* a response, so you would just set your cookie there: ppp = HTTPFound(location=request.application_url)

Re: [Repoze-dev] how to get the response

2010-04-27 Thread Chris Rossi
Ciao Davide, There is not a response already attached to the request, but your instance of HTTPFound *is* a response, so you would just set your cookie there: ppp = HTTPFound(location=request.application_url) ppp.set_cookie('fb_user', value=value, ...) return ppp Chris On Tue, Apr 27,