[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/pas/httpplugins.py Changed the default realm to Zope.

Jim Fulton jim at zope.com
Sat Oct 30 18:51:24 EDT 2004


Log message for revision 28302:
  Changed the default realm to Zope.
  

Changed:
  U   Zope3/trunk/src/zope/app/pas/httpplugins.py

-=-
Modified: Zope3/trunk/src/zope/app/pas/httpplugins.py
===================================================================
--- Zope3/trunk/src/zope/app/pas/httpplugins.py	2004-10-30 22:51:22 UTC (rev 28301)
+++ Zope3/trunk/src/zope/app/pas/httpplugins.py	2004-10-30 22:51:24 UTC (rev 28302)
@@ -74,7 +74,7 @@
     realm = TextLine(title=u'Realm',
                      description=u'HTTP Basic Authentication Realm',
                      required=True,
-                     default=u'Zope3')
+                     default=u'Zope')
     
 
 class HTTPBasicAuthChallenger(Persistent, Contained):
@@ -92,7 +92,7 @@
     >>> response._status
     401
     >>> response.getHeader('WWW-Authenticate', literal=True)
-    'basic realm=Zope3'
+    'basic realm=Zope'
 
     The challenger only works with HTTP requests.
 
@@ -104,7 +104,7 @@
     """
     implements(IChallengePlugin, IHTTPBasicAuthRealm)
 
-    realm = 'Zope3'
+    realm = 'Zope'
     protocol = 'http auth'
 
     def challenge(self, request, response):



More information about the Zope3-Checkins mailing list