[Checkins] SVN: grokcore.site/trunk/ fix missing imports that were exposed as the api

Jan Wijbrand Kolman cvs-admin at zope.org
Wed May 2 07:35:21 UTC 2012


Log message for revision 125542:
  fix missing imports that were exposed as the api

Changed:
  U   grokcore.site/trunk/CHANGES.txt
  U   grokcore.site/trunk/src/grokcore/site/__init__.py
  U   grokcore.site/trunk/src/grokcore/site/interfaces.py

-=-
Modified: grokcore.site/trunk/CHANGES.txt
===================================================================
--- grokcore.site/trunk/CHANGES.txt	2012-05-01 18:41:14 UTC (rev 125541)
+++ grokcore.site/trunk/CHANGES.txt	2012-05-02 07:35:15 UTC (rev 125542)
@@ -4,8 +4,9 @@
 1.7 (unreleased)
 ----------------
 
-- Nothing changed yet.
+- Exposed ApplicationInitializedEvent and IApplicationInitializedEvent.
 
+- Added the missing import for the exposed IApplication interface.
 
 1.6 (2012-05-01)
 ----------------
@@ -15,14 +16,12 @@
 - Moved the component `Application` and all the related utilities from Grok
   to this package.
 
-
 1.5 (2011-01-03)
 ----------------
 
 - Moved IApplication and getApplication from the Grok package into
   this one.
 
-
 1.4 (2010-11-01)
 ----------------
 

Modified: grokcore.site/trunk/src/grokcore/site/__init__.py
===================================================================
--- grokcore.site/trunk/src/grokcore/site/__init__.py	2012-05-01 18:41:14 UTC (rev 125541)
+++ grokcore.site/trunk/src/grokcore/site/__init__.py	2012-05-02 07:35:15 UTC (rev 125542)
@@ -20,5 +20,9 @@
 
 import grokcore.site.testing
 
+from grokcore.site.interfaces import IApplication
+from grokcore.site.interfaces import IApplicationInitializedEvent
+from grokcore.site.interfaces import ApplicationInitializedEvent
+
 from grokcore.site.interfaces import IGrokcoreSiteAPI
 __all__ = list(IGrokcoreSiteAPI)

Modified: grokcore.site/trunk/src/grokcore/site/interfaces.py
===================================================================
--- grokcore.site/trunk/src/grokcore/site/interfaces.py	2012-05-01 18:41:14 UTC (rev 125541)
+++ grokcore.site/trunk/src/grokcore/site/interfaces.py	2012-05-02 07:35:15 UTC (rev 125542)
@@ -86,6 +86,12 @@
 
     IApplication = Attribute('The application model interface')
 
+    IApplicationInitializedEvent = Attribute(
+        'The application initialized event interface')
+
+    ApplicationInitializedEvent = Attribute(
+        'The application initialized event factory')
+
     def getSite():
         """Get the current site."""
 



More information about the checkins mailing list