[Checkins] SVN: zope.app.onlinehelp/trunk/ Use zope.container instead of zope.app.container.

Sylvain Viollon sylvain at infrae.com
Thu Jan 29 13:53:32 EST 2009


Log message for revision 95498:
  Use zope.container instead of zope.app.container.
  
  

Changed:
  U   zope.app.onlinehelp/trunk/CHANGES.txt
  U   zope.app.onlinehelp/trunk/setup.py
  U   zope.app.onlinehelp/trunk/src/zope/app/onlinehelp/interfaces.py
  U   zope.app.onlinehelp/trunk/src/zope/app/onlinehelp/onlinehelptopic.py

-=-
Modified: zope.app.onlinehelp/trunk/CHANGES.txt
===================================================================
--- zope.app.onlinehelp/trunk/CHANGES.txt	2009-01-29 18:50:17 UTC (rev 95497)
+++ zope.app.onlinehelp/trunk/CHANGES.txt	2009-01-29 18:53:32 UTC (rev 95498)
@@ -5,10 +5,11 @@
 3.5.0dev (unreleased)
 ---------------------
 
-- removed OnlineHelpTopicFactory, simple and SimpleViewClass. All of them where
-  using old deprecated and removed Zope3 imports. None of them where used and
-  tested.
+- removed `OnlineHelpTopicFactory`, `simple` and
+  `SimpleViewClass`. All of them where using old deprecated and
+  removed Zope3 imports. None of them where used and tested.
 
+- Use `zope.container` instead of `zope.app.container`.
 
 3.4.1 (2007-10-25)
 ------------------

Modified: zope.app.onlinehelp/trunk/setup.py
===================================================================
--- zope.app.onlinehelp/trunk/setup.py	2009-01-29 18:50:17 UTC (rev 95497)
+++ zope.app.onlinehelp/trunk/setup.py	2009-01-29 18:53:32 UTC (rev 95498)
@@ -50,7 +50,6 @@
       install_requires = ['setuptools',
                           'ZODB3',
                           'zope.app.component',
-                          'zope.app.container',
                           'zope.app.file',
                           'zope.app.folder',
                           'zope.app.pagetemplate',
@@ -59,6 +58,7 @@
                           'zope.app.testing',
                           'zope.component',
                           'zope.configuration',
+                          'zope.container',
                           'zope.contenttype',
                           'zope.i18n',
                           'zope.interface',

Modified: zope.app.onlinehelp/trunk/src/zope/app/onlinehelp/interfaces.py
===================================================================
--- zope.app.onlinehelp/trunk/src/zope/app/onlinehelp/interfaces.py	2009-01-29 18:50:17 UTC (rev 95497)
+++ zope.app.onlinehelp/trunk/src/zope/app/onlinehelp/interfaces.py	2009-01-29 18:53:32 UTC (rev 95498)
@@ -21,7 +21,7 @@
 
 from zope.schema import TextLine, SourceText, Choice
 from zope.configuration.fields import GlobalInterface
-from zope.app.container.interfaces import IContainer
+from zope.container.interfaces import IContainer
 from zope.app.publication.interfaces import IFileContent
 from zope.app.file.interfaces import IFile
 

Modified: zope.app.onlinehelp/trunk/src/zope/app/onlinehelp/onlinehelptopic.py
===================================================================
--- zope.app.onlinehelp/trunk/src/zope/app/onlinehelp/onlinehelptopic.py	2009-01-29 18:50:17 UTC (rev 95497)
+++ zope.app.onlinehelp/trunk/src/zope/app/onlinehelp/onlinehelptopic.py	2009-01-29 18:53:32 UTC (rev 95498)
@@ -25,7 +25,7 @@
 from zope.configuration.exceptions import ConfigurationError
 from zope.contenttype import guess_content_type
 
-from zope.app.container.sample import SampleContainer
+from zope.container.sample import SampleContainer
 from zope.app.file.image import getImageInfo
 
 from zope.app.onlinehelp.interfaces import IOnlineHelpTopic



More information about the Checkins mailing list