Search
j0ke.net Open Build Service
>
Projects
>
devel
:
python
>
trac100
> trac-auth.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File trac-auth.patch of Package trac100
--- trac/web/auth.py.orig 2011-01-31 23:05:49.000000000 +0100 +++ trac/web/auth.py 2011-02-25 21:16:26.146033535 +0100 @@ -199,6 +199,9 @@ "expires" property to a date in the past. """ req.outcookie['trac_auth'] = '' + auth_domain = self.env.config.get('trac_auth', 'domain') + if len(auth_domain) > 0: + req.outcookie['trac_auth']['domain'] = auth_domain req.outcookie['trac_auth']['path'] = self.auth_cookie_path \ or req.base_path or '/' req.outcookie['trac_auth']['expires'] = -10000