[Checkins] SVN: zope.filerepresentation/trunk/ Change zope.app.container reference to zope.container.

Martijn Faassen faassen at infrae.com
Thu Jan 29 13:20:00 EST 2009


Log message for revision 95474:
  Change zope.app.container reference to zope.container.
  

Changed:
  U   zope.filerepresentation/trunk/CHANGES.txt
  U   zope.filerepresentation/trunk/setup.py
  U   zope.filerepresentation/trunk/src/zope/filerepresentation/interfaces.py

-=-
Modified: zope.filerepresentation/trunk/CHANGES.txt
===================================================================
--- zope.filerepresentation/trunk/CHANGES.txt	2009-01-29 18:19:48 UTC (rev 95473)
+++ zope.filerepresentation/trunk/CHANGES.txt	2009-01-29 18:19:59 UTC (rev 95474)
@@ -2,6 +2,11 @@
 CHANGES
 =======
 
+3.4.1 (unreleased)
+------------------
+
+- Changed use of zope.app.container to zope.container.
+
 3.4.0 (2007-10-02)
 ------------------
 

Modified: zope.filerepresentation/trunk/setup.py
===================================================================
--- zope.filerepresentation/trunk/setup.py	2009-01-29 18:19:48 UTC (rev 95473)
+++ zope.filerepresentation/trunk/setup.py	2009-01-29 18:19:59 UTC (rev 95474)
@@ -52,7 +52,7 @@
                 ]),
       install_requires=['setuptools',
                         'zope.interface',
-                        'zope.app.container'
+                        'zope.container'
                         ],
       include_package_data = True,
       zip_safe = True,

Modified: zope.filerepresentation/trunk/src/zope/filerepresentation/interfaces.py
===================================================================
--- zope.filerepresentation/trunk/src/zope/filerepresentation/interfaces.py	2009-01-29 18:19:48 UTC (rev 95473)
+++ zope.filerepresentation/trunk/src/zope/filerepresentation/interfaces.py	2009-01-29 18:19:59 UTC (rev 95474)
@@ -87,7 +87,7 @@
 __docformat__ = 'restructuredtext'
 
 from zope.interface import Interface
-from zope.app.container.interfaces import IReadContainer, IWriteContainer
+from zope.container.interfaces import IReadContainer, IWriteContainer
 
 class IReadFile(Interface):
     """Provide read access to file data



More information about the Checkins mailing list