[Checkins] SVN: grok/trunk/src/grok/__init__.py imported common events into the grok namespace

Wolfgang Schnerring wosc at wosc.de
Tue Oct 17 09:30:04 EDT 2006


Log message for revision 70744:
  imported common events into the grok namespace

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

-=-
Modified: grok/trunk/src/grok/__init__.py
===================================================================
--- grok/trunk/src/grok/__init__.py	2006-10-17 13:25:47 UTC (rev 70743)
+++ grok/trunk/src/grok/__init__.py	2006-10-17 13:30:03 UTC (rev 70744)
@@ -16,7 +16,16 @@
 
 from zope.interface import implements
 from zope.component import adapts
-from zope.lifecycleevent import IObjectCreatedEvent, ObjectCreatedEvent
+from zope.lifecycleevent import (
+    IObjectCreatedEvent, ObjectCreatedEvent,
+    IObjectModifiedEvent, ObjectModifiedEvent,
+    IObjectCopiedEvent, ObjectCopiedEvent)
+from zope.app.container.contained import (
+    IObjectAddedEvent, ObjectAddedEvent,
+    IObjectMovedEvent, ObjectMovedEvent, 
+    IObjectRemovedEvent, ObjectRemovedEvent,
+    IContainerModifiedEvent, ContainerModifiedEvent)
+
 from zope.event import notify
 
 from grok._grok import (Model, Adapter, MultiAdapter, View, PageTemplate,



More information about the Checkins mailing list