[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - event.py:1.9.4.1

Fred L. Drake, Jr. fred@zope.com
Mon, 23 Jun 2003 18:08:29 -0400


Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv24536/src/zope/app/interfaces

Modified Files:
      Tag: fdrake-zconfig-in-zope-3-branch
	event.py 
Log Message:
Support ZConfig in Zope 3.

=== Zope3/src/zope/app/interfaces/event.py 1.9 => 1.9.4.1 ===
--- Zope3/src/zope/app/interfaces/event.py:1.9	Sat Jun  7 03:23:51 2003
+++ Zope3/src/zope/app/interfaces/event.py	Mon Jun 23 18:07:58 2003
@@ -306,3 +306,11 @@
     """An object has been copied"""
 
     fromLocation = Attribute("The old location for the object.")
+
+class IDatabaseOpenedEvent(IEvent):
+    """The main database has been opened."""
+
+    database = Attribute("The main database.")
+
+class IProcessStartingEvent(IEvent):
+    """The application server process is starting."""