[Zope3-checkins] CVS: Zope3/src/zope/app/browser/security/grants/tests - permissionservice.py:1.1.2.2 roleservice.py:1.1.2.2
Jim Fulton
jim@zope.com
Tue, 24 Dec 2002 07:51:52 -0500
Update of /cvs-repository/Zope3/src/zope/app/browser/security/grants/tests
In directory cvs.zope.org:/tmp/cvs-serv1158/src/zope/app/browser/security/grants/tests
Modified Files:
Tag: NameGeddon-branch
permissionservice.py roleservice.py
Log Message:
Searched for and changed over 1200 references to Zope.something.
Most of these were either comments, doc strings, or permission ids.
Many were imports or ids in zcml. (much zcml fixup is still needed.
=== Zope3/src/zope/app/browser/security/grants/tests/permissionservice.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/browser/security/grants/tests/permissionservice.py:1.1.2.1 Mon Dec 23 14:31:11 2002
+++ Zope3/src/zope/app/browser/security/grants/tests/permissionservice.py Tue Dec 24 07:50:52 2002
@@ -36,9 +36,6 @@
self._permissions = r = {}
for id, title in kw.items(): r[id]=Permission(id, title)
- # Implementation methods for interface
- # Zope.App.Security.IPermissionService.
-
def getPermission(self, rid):
'''See interface IPermissionService'''
return self._permissions.get(rid)
=== Zope3/src/zope/app/browser/security/grants/tests/roleservice.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/browser/security/grants/tests/roleservice.py:1.1.2.1 Mon Dec 23 14:31:11 2002
+++ Zope3/src/zope/app/browser/security/grants/tests/roleservice.py Tue Dec 24 07:50:52 2002
@@ -36,13 +36,8 @@
self._roles = r = {}
for id, title in kw.items(): r[id]=Role(id, title)
- # Implementation methods for interface
- # Zope.App.Security.IRoleService.
-
def getRole(self, rid):
- '''See interface IRoleService'''
return self._roles.get(rid)
def getRoles(self):
- '''See interface IRoleService'''
return self._roles.values()