[Zope-CVS] CVS: Products/PluggableAuthService -
	PluggableAuthService.py:1.9
    Lennart Regebro 
    regebro at nuxeo.com
       
    Tue Aug 31 07:28:45 EDT 2004
    
    
  
Update of /cvs-repository/Products/PluggableAuthService
In directory cvs.zope.org:/tmp/cvs-serv18927
Modified Files:
	PluggableAuthService.py 
Log Message:
The user id in extract user now calls _verifyUser to get the ID mangled by the enumeration plugin, instead of mangling it with the authentication ID, thereby allowing the authentication and enumeration plugins to be different plugins.
=== Products/PluggableAuthService/PluggableAuthService.py 1.8 => 1.9 ===
--- Products/PluggableAuthService/PluggableAuthService.py:1.8	Tue Aug 31 05:27:44 2004
+++ Products/PluggableAuthService/PluggableAuthService.py	Tue Aug 31 07:28:15 2004
@@ -735,8 +735,7 @@
                             continue
 
                         if user_id is not None:
-                            mangled_id = self._mangleId( authenticator_id
-                                                       , user_id )
+                            mangled_id = self._verifyUser(plugins, user_id)
                             user_ids.append( (mangled_id, name) )
 
 
    
    
More information about the Zope-CVS
mailing list