[Zope-Checkins] CVS: Zope/lib/python/Products/Sessions - BrowserIdManager.py:1.17
Chris McDonough
chrism@zope.com
Wed, 21 Aug 2002 13:13:10 -0400
Update of /cvs-repository/Zope/lib/python/Products/Sessions
In directory cvs.zope.org:/tmp/cvs-serv15082
Modified Files:
BrowserIdManager.py
Log Message:
Turn URL-munging off by default.
=== Zope/lib/python/Products/Sessions/BrowserIdManager.py 1.16 => 1.17 ===
--- Zope/lib/python/Products/Sessions/BrowserIdManager.py:1.16 Tue Aug 20 11:08:48 2002
+++ Zope/lib/python/Products/Sessions/BrowserIdManager.py Wed Aug 21 13:13:10 2002
@@ -51,7 +51,7 @@
def constructBrowserIdManager(
self, id=BROWSERID_MANAGER_NAME, title='', idname='_ZopeId',
- location=('cookies', 'url', 'form'), cookiepath='/', cookiedomain='',
+ location=('cookies', 'form'), cookiepath='/', cookiedomain='',
cookielifedays=0, cookiesecure=0, auto_url_encoding=0, REQUEST=None
):
""" """
@@ -94,7 +94,7 @@
auto_url_encoding = 0
def __init__(self, id, title='', idname='_ZopeId',
- location=('cookies', 'url', 'form'), cookiepath=('/'),
+ location=('cookies', 'form'), cookiepath=('/'),
cookiedomain='', cookielifedays=0, cookiesecure=0,
auto_url_encoding=0):
self.id = str(id)
@@ -257,7 +257,7 @@
security.declareProtected(CHANGE_IDMGR_PERM,
'manage_changeBrowserIdManager')
def manage_changeBrowserIdManager(
- self, title='', idname='_ZopeId', location=('cookies', 'form', 'url'),
+ self, title='', idname='_ZopeId', location=('cookies', 'form'),
cookiepath='/', cookiedomain='', cookielifedays=0, cookiesecure=0,
auto_url_encoding=0, REQUEST=None
):
@@ -288,7 +288,7 @@
return self.browserid_name
security.declareProtected(CHANGE_IDMGR_PERM, 'setBrowserIdNamespaces')
- def setBrowserIdNamespaces(self, ns=('cookies', 'form', 'url')):
+ def setBrowserIdNamespaces(self, ns):
"""
accepts list of allowable browser id namespaces
"""