[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/authentication/interfaces.py Added "prefix" to IPluggableAuthentication to support finding a principal ID

Benji York benji at zope.com
Fri May 27 14:15:43 EDT 2005


Log message for revision 30537:
  Added "prefix" to IPluggableAuthentication to support finding a principal ID
  when the PAU's prefix is non-blank.
  

Changed:
  U   Zope3/trunk/src/zope/app/authentication/interfaces.py

-=-
Modified: Zope3/trunk/src/zope/app/authentication/interfaces.py
===================================================================
--- Zope3/trunk/src/zope/app/authentication/interfaces.py	2005-05-27 18:13:34 UTC (rev 30536)
+++ Zope3/trunk/src/zope/app/authentication/interfaces.py	2005-05-27 18:15:13 UTC (rev 30537)
@@ -45,6 +45,13 @@
         default=[],
         )
 
+    prefix = zope.schema.TextLine(
+        title=u'Prefix',
+        default=u'',
+        required=True,
+        readonly=True,
+        )
+
     def logout(request):
         """Performs a logout by delegating to its authentictor plugins."""
 



More information about the Zope3-Checkins mailing list