[Checkins] SVN: zope.app.pythonpage/trunk/ Replace zope.app.container with zope.container.

Sylvain Viollon sylvain at infrae.com
Thu Jan 29 13:39:37 EST 2009


Log message for revision 95491:
  Replace zope.app.container with zope.container.
  
  

Changed:
  U   zope.app.pythonpage/trunk/CHANGES.txt
  U   zope.app.pythonpage/trunk/buildout.cfg
  U   zope.app.pythonpage/trunk/setup.py
  U   zope.app.pythonpage/trunk/src/zope/app/pythonpage/__init__.py
  U   zope.app.pythonpage/trunk/src/zope/app/pythonpage/tests.py

-=-
Modified: zope.app.pythonpage/trunk/CHANGES.txt
===================================================================
--- zope.app.pythonpage/trunk/CHANGES.txt	2009-01-29 18:39:16 UTC (rev 95490)
+++ zope.app.pythonpage/trunk/CHANGES.txt	2009-01-29 18:39:37 UTC (rev 95491)
@@ -5,6 +5,8 @@
 3.5.0 (unreleased)
 ------------------
 
+- Replace ``zope.app.container`` with ``zope.container``.
+
 3.4.1 (2007-07-30)
 ------------------
 

Modified: zope.app.pythonpage/trunk/buildout.cfg
===================================================================
--- zope.app.pythonpage/trunk/buildout.cfg	2009-01-29 18:39:16 UTC (rev 95490)
+++ zope.app.pythonpage/trunk/buildout.cfg	2009-01-29 18:39:37 UTC (rev 95491)
@@ -1,5 +1,7 @@
 [buildout]
 develop = .
+  ../zope.container
+  ../zope.app.container
 parts = test
 
 [test]

Modified: zope.app.pythonpage/trunk/setup.py
===================================================================
--- zope.app.pythonpage/trunk/setup.py	2009-01-29 18:39:16 UTC (rev 95490)
+++ zope.app.pythonpage/trunk/setup.py	2009-01-29 18:39:37 UTC (rev 95491)
@@ -55,7 +55,7 @@
       extras_require=dict(test=['zope.app.testing']),
       install_requires = ['setuptools',
                           'ZODB3',
-                          'zope.app.container',
+                          'zope.container',
                           'zope.app.interpreter',
                           'zope.interface',
                           'zope.schema',

Modified: zope.app.pythonpage/trunk/src/zope/app/pythonpage/__init__.py
===================================================================
--- zope.app.pythonpage/trunk/src/zope/app/pythonpage/__init__.py	2009-01-29 18:39:16 UTC (rev 95490)
+++ zope.app.pythonpage/trunk/src/zope/app/pythonpage/__init__.py	2009-01-29 18:39:37 UTC (rev 95491)
@@ -20,7 +20,7 @@
 import re
 from persistent import Persistent
 import zope.component
-from zope.app.container.contained import Contained
+from zope.container.contained import Contained
 from zope.app.interpreter.interfaces import IInterpreter
 from zope.interface import Interface, implements
 from zope.schema import SourceText, TextLine

Modified: zope.app.pythonpage/trunk/src/zope/app/pythonpage/tests.py
===================================================================
--- zope.app.pythonpage/trunk/src/zope/app/pythonpage/tests.py	2009-01-29 18:39:16 UTC (rev 95490)
+++ zope.app.pythonpage/trunk/src/zope/app/pythonpage/tests.py	2009-01-29 18:39:37 UTC (rev 95491)
@@ -25,7 +25,7 @@
 from zope.traversing.adapters import RootPhysicallyLocatable
 from zope.location.traversing import LocationPhysicallyLocatable
 
-from zope.app.container.contained import Contained
+from zope.container.contained import Contained
 from zope.app.interpreter.interfaces import IInterpreter
 from zope.app.interpreter.python import PythonInterpreter
 from zope.app.testing import placelesssetup, ztapi



More information about the Checkins mailing list