And... below is the logout function that I'm using that works:
def logout_user_cookie(self, environ):
domain = self.cookie_params.get('domain')
path = '/'
if not domain:
path = '/'
cookies = [
('Set-Cookie', '%s=""; Path=%s' % \
(self.cookie_name, path)
),
]
else:
cookies = [
('Set-Cookie', '%s=""; Path=%s; Domain=%s' % \
(self.cookie_name, path, domain)
),
]
return cookies
On Jan 8, 2:18 pm, "ben adam" <[EMAIL PROTECTED]> wrote:
> meant "could NOT create..."
>
> On Jan 8, 2:17 pm, "ben adam" <[EMAIL PROTECTED]> wrote:
>
> > While logged in as guest/guest I could create ticket on pylons trac. I
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---