[z3-checkins] r5679 - z3/Five/branch/dc-experiments

dreamcatcher at codespeak.net dreamcatcher at codespeak.net
Mon Jul 26 13:08:50 MEST 2004


Author: dreamcatcher
Date: Mon Jul 26 13:08:49 2004
New Revision: 5679

Modified:
   z3/Five/branch/dc-experiments/fivedirectives.py
Log:

- ITraversableDirective
- Mark IViewableDirective as deprecated



Modified: z3/Five/branch/dc-experiments/fivedirectives.py
==============================================================================
--- z3/Five/branch/dc-experiments/fivedirectives.py	(original)
+++ z3/Five/branch/dc-experiments/fivedirectives.py	Mon Jul 26 13:08:49 2004
@@ -27,11 +27,18 @@
         value_type=GlobalObject()
         )
 
-class IViewableDirective(Interface):
-    """State that a class can be viewed.
+class ITraversableDirective(Interface):
+    """State that a class traversal can be controlled by the use of
+    an ITraverser adapter.
     """
     class_ = GlobalObject(
         title=u"Class",
         required=True
         )
 
+class IViewableDirective(ITraversableDirective):
+    """State that a class can be viewed.
+
+    Deprecated.
+    """
+


More information about the z3-checkins mailing list