[Checkins] SVN: grok/trunk/src/grok/interfaces.py the permissions directive now is in grokcore.security

Jan Wijbrand Kolman cvs-admin at zope.org
Mon Apr 30 13:17:06 UTC 2012


Log message for revision 125440:
  the permissions directive now is in grokcore.security

Changed:
  U   grok/trunk/src/grok/interfaces.py

-=-
Modified: grok/trunk/src/grok/interfaces.py
===================================================================
--- grok/trunk/src/grok/interfaces.py	2012-04-30 13:07:48 UTC (rev 125439)
+++ grok/trunk/src/grok/interfaces.py	2012-04-30 13:17:03 UTC (rev 125440)
@@ -61,16 +61,14 @@
     Role = interface.Attribute("Base class for roles.")
 
 
-class IGrokDirectives(grokcore.component.interfaces.IDirectives,
-                      grokcore.security.interfaces.IDirectives,
-                      grokcore.site.interfaces.IDirectives,
-                      grokcore.view.interfaces.IDirectives):
+class IGrokDirectives(
+    grokcore.component.interfaces.IDirectives,
+    grokcore.security.interfaces.IDirectives,
+    grokcore.site.interfaces.IDirectives,
+    grokcore.view.interfaces.IDirectives):
+    pass
 
-    def permissions(permissions):
-        """Specify the permissions that comprise a role.
-        """
 
-
 class IGrokEvents(interface.Interface):
 
     IObjectCreatedEvent = interface.Attribute("")



More information about the checkins mailing list