[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/security - __init__.py:1.8
Chris McDonough
chrism@zope.com
Mon, 23 Jun 2003 18:46:46 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces/security
In directory cvs.zope.org:/tmp/cvs-serv30079/src/zope/app/interfaces/security
Modified Files:
__init__.py
Log Message:
Merge pluggable_authentication_service-branch to HEAD.
You can now use a pluggable authentication service in place of a simple authentication service.
=== Zope3/src/zope/app/interfaces/security/__init__.py 1.7 => 1.8 ===
--- Zope3/src/zope/app/interfaces/security/__init__.py:1.7 Mon Jun 2 12:55:47 2003
+++ Zope3/src/zope/app/interfaces/security/__init__.py Mon Jun 23 18:46:15 2003
@@ -105,7 +105,7 @@
Note that the authentication service nearest to the
requested resource is called. It is up to
authentication service implementations to
- colaborate with services higher in the object
+ collaborate with services higher in the object
hierarchy.
If no principal has been identified, id will be
@@ -121,18 +121,16 @@
Note that the authentication service nearest to the requested
resource is called. It is up to authentication service
- implementations to colaborate with services higher in the
+ implementations to collaborate with services higher in the
object hierarchy.
"""
def getPrincipals(name):
"""Get principals with matching names.
- Get a iterable object with the principals with names that are
+ Get an iterable object with the principals with names that are
similar to (e.g. contain) the given name.
"""
-
-
class ILoginPassword(Interface):
"""A password based login.