[Zope-Checkins] CVS: Zope/lib/python/Products/Sessions/help - SessionInterfaces.py:1.5
Chris McDonough
chrism@zope.com
Tue, 20 Nov 2001 11:08:11 -0500
Update of /cvs-repository/Zope/lib/python/Products/Sessions/help
In directory cvs.zope.org:/tmp/cvs-serv11439/help
Modified Files:
SessionInterfaces.py
Log Message:
Added 'setBrowserIdCookieByForce' method (thanks to Richard Jones).
=== Zope/lib/python/Products/Sessions/help/SessionInterfaces.py 1.4 => 1.5 ===
"""
+ def setBrowserIdCookieByForce(self, bid):
+ """
+ Sets the browser id cookie to browser id 'bid' by force.
+ Useful when you need to 'chain' browser id cookies across domains
+ for the same user (perhaps temporarily using query strings).
+
+ Permission required: Access contents information
+
+ Raises: BrowserIdManagerErr. If the 'cookies' namespace isn't
+ a browser id namespace at the time of the call.
+ """
+
class SessionDataManagerInterface(
Interface.Base
):