[Checkins] SVN: Products.CMFCore/trunk/Products/CMFCore/interfaces/_ - moving ICookieCrumbler to a separate file was no good idea (the old location might be referenced by persistent objects)

Yvo Schubbe y.2011 at wcm-solutions.de
Tue Sep 13 09:39:01 EST 2011


Log message for revision 122790:
  - moving ICookieCrumbler to a separate file was no good idea (the old location might be referenced by persistent objects)

Changed:
  UU  Products.CMFCore/trunk/Products/CMFCore/interfaces/__init__.py
  U   Products.CMFCore/trunk/Products/CMFCore/interfaces/_tools.py

-=-
Modified: Products.CMFCore/trunk/Products/CMFCore/interfaces/__init__.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/interfaces/__init__.py	2011-09-13 13:52:47 UTC (rev 122789)
+++ Products.CMFCore/trunk/Products/CMFCore/interfaces/__init__.py	2011-09-13 14:39:00 UTC (rev 122790)
@@ -11,11 +11,8 @@
 #
 ##############################################################################
 """ CMFCore.interfaces package.
-
-$Id$
 """
 
 from _content import *
 from _tools import *
 from _events import *
-from _cookieCrumbler import ICookieCrumbler


Property changes on: Products.CMFCore/trunk/Products/CMFCore/interfaces/__init__.py
___________________________________________________________________
Deleted: svn:keywords
   - Author Date Id Revision

Modified: Products.CMFCore/trunk/Products/CMFCore/interfaces/_tools.py
===================================================================
--- Products.CMFCore/trunk/Products/CMFCore/interfaces/_tools.py	2011-09-13 13:52:47 UTC (rev 122789)
+++ Products.CMFCore/trunk/Products/CMFCore/interfaces/_tools.py	2011-09-13 14:39:00 UTC (rev 122790)
@@ -17,6 +17,9 @@
 from zope.interface import Attribute
 from zope.interface import Interface
 
+# BBB: _tools is the old location of this interface
+from ._cookieCrumbler import ICookieCrumbler
+
 _marker = object()
 
 



More information about the checkins mailing list