Hi,

I'm also seeing this bug. The function 'quote_cookie_value' is not defined in the trac/util.py package, and indeed nowhere else in the trac distribution. It can be found in older versions of trac:

--- trac/util.py --- http://trac.edgewall.org/browser/branches/0.8- stable/trac/util.py

def quote_cookie_value(path):
    """
    Cookie values can not contain " ,;" characters.
    """
return path.replace(' ', '%20').replace(';', '%3B').replace(',', '%3C')

---

Hacking this back into /usr/lib/python2.3/site-packages/trac/util.py provides a workaround, but this is presumable 'dangerous'. There seems to be a major reshuffling of code between v0.8 and 0.9 of Trac, and the Debian version appears to be a mix of the two.

Hope that helps.

Cheers,
Andy J.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to