[Zope3-checkins] CVS: Zope3/src/zope/app/services - auth.py:1.9.2.1

Sidnei da Silva sidnei@x3ng.com.br
Wed, 5 Feb 2003 06:00:38 -0500


Update of /cvs-repository/Zope3/src/zope/app/services
In directory cvs.zope.org:/tmp/cvs-serv10819/src/zope/app/services

Modified Files:
      Tag: paris-copypasterename-branch
	auth.py 
Log Message:
Hooking AnnotatableUserClipboard via zcml

=== Zope3/src/zope/app/services/auth.py 1.9 => 1.9.2.1 ===
--- Zope3/src/zope/app/services/auth.py:1.9	Mon Feb  3 10:08:48 2003
+++ Zope3/src/zope/app/services/auth.py	Wed Feb  5 06:00:35 2003
@@ -29,10 +29,9 @@
 from zope.app.interfaces.security import ILoginPassword
 from zope.app.interfaces.security import IAuthenticationService
 
-from zope.app.interfaces.services.auth import IUser
+from zope.app.interfaces.services.auth import IAnnotatableUser
 
 from zope.proxy.introspection import removeAllProxies
-from zope.app.interfaces.annotation import IAttributeAnnotatable
 from zope.app.attributeannotations import AttributeAnnotations
 from zope.app.security.grants.principalrole import principalRoleManager
 from zope.app.component.nextservice import getNextService
@@ -165,7 +164,7 @@
 class User(Persistent):
     """A persistent implementation of the IUser interface """
 
-    __implements__ =  IUser, IAttributeAnnotatable
+    __implements__ =  IAnnotatableUser
 
     def __init__(self, id, title, description, login, pw):
         self.__id = id