[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/security - __init__.py:1.1.2.4
Jim Fulton
jim@zope.com
Wed, 25 Dec 2002 08:28:04 -0500
Update of /cvs-repository/Zope3/src/zope/app/interfaces/security
In directory cvs.zope.org:/tmp/cvs-serv9989/src/zope/app/interfaces/security
Modified Files:
Tag: NameGeddon-branch
__init__.py
Log Message:
Gor zope running again!
I haven't tested everything.
(Yes, we need functional tests. Maybe this week).
Good enough to merge into trunk.
=== Zope3/src/zope/app/interfaces/security/__init__.py 1.1.2.3 => 1.1.2.4 ===
--- Zope3/src/zope/app/interfaces/security/__init__.py:1.1.2.3 Tue Dec 24 21:20:36 2002
+++ Zope3/src/zope/app/interfaces/security/__init__.py Wed Dec 25 08:27:33 2002
@@ -2,6 +2,7 @@
# This file is necessary to make this directory a package.
from zope.interface import Interface
+from zope.schema.interfaces import IValueSet
class IPrincipal(Interface):
"""Provide information about principals.
@@ -236,6 +237,9 @@
service.
"""
+class IPermissionField(IValueSet):
+ u"""Fields with Permissions as values
+ """
class IPrincipalRoleMap(Interface):
"""Mappings between principals and roles."""