Here's how I did it. I don't set the path in this, but I'm sure once
you're able to have the cookies sent, you can just use the reference
to see how to properly have a path included.
# Set cookies for auto-fill
cookie = Cookie.SimpleCookie(self.request.headers.get('Cookie'))
cookie['pyib_name'] = self.request.get('name')
if post.email.lower() != 'sage' and post.email.lower() != 'age':
cookie['pyib_email'] = post.email
cookie['pyib_password'] = post.password
self.response.headers['Set-cookie'] = str(cookie)
On May 9, 12:12 am, Kevin Damm <
kbd...@gmail.com> wrote:
> The WebOb referencehttp://
pythonpaste.org/webob/reference.html