[Checkins] SVN: five.localsitemanager/trunk/ Updated to use IObjectMovedEvent from zope.lifecycleevent instead of zope.container. We require zope.lifecycleevent >= 3.5.2 now.

Hanno Schlichting hannosch at hannosch.eu
Wed May 27 08:20:03 EDT 2009


Log message for revision 100453:
  Updated to use IObjectMovedEvent from zope.lifecycleevent instead of zope.container. We require zope.lifecycleevent >= 3.5.2 now.
  

Changed:
  U   five.localsitemanager/trunk/CHANGES.txt
  U   five.localsitemanager/trunk/setup.py
  U   five.localsitemanager/trunk/src/five/localsitemanager/configure.zcml

-=-
Modified: five.localsitemanager/trunk/CHANGES.txt
===================================================================
--- five.localsitemanager/trunk/CHANGES.txt	2009-05-27 11:12:29 UTC (rev 100452)
+++ five.localsitemanager/trunk/CHANGES.txt	2009-05-27 12:20:03 UTC (rev 100453)
@@ -1,9 +1,13 @@
 Changelog
 =========
 
-2.0 - Unreleased
+2.0 - unreleased
 ----------------
 
+* Updated to use IObjectMovedEvent from zope.lifecycleevent instead of
+  zope.container. We require zope.lifecycleevent >= 3.5.2 now.
+  [hannosch]
+
 * Removed package dependencies that did collide with the KGS of Zope 2.12.
   [yuppie]
 

Modified: five.localsitemanager/trunk/setup.py
===================================================================
--- five.localsitemanager/trunk/setup.py	2009-05-27 11:12:29 UTC (rev 100452)
+++ five.localsitemanager/trunk/setup.py	2009-05-27 12:20:03 UTC (rev 100453)
@@ -8,7 +8,7 @@
 
 setup(name='five.localsitemanager',
       version=version,
-      url='http://svn.zope.org/five.localsitemanager',
+      url='http://pypi.python.org/pypi/five.localsitemanager',
       license='ZPL 2.1',
       description='Local site manager implementation for Zope 2',
       author='Rocky Burt and Contributors',
@@ -33,8 +33,17 @@
           test=['zope.testing']
           ),
       install_requires=[
+        'Acquisition',
+        'Zope2 >= 2.12.dev',
+        'ZODB3',
         'setuptools',
-        'Zope2 >= 2.12.dev',
+        'zope.component',
+        'zope.event',
+        'zope.interface',
+        'zope.location',
+        'zope.lifecycleevent >= 3.5.2',
+        'zope.site',
+        'zope.traversing',
       ],
       zip_safe = False,
       )

Modified: five.localsitemanager/trunk/src/five/localsitemanager/configure.zcml
===================================================================
--- five.localsitemanager/trunk/src/five/localsitemanager/configure.zcml	2009-05-27 11:12:29 UTC (rev 100452)
+++ five.localsitemanager/trunk/src/five/localsitemanager/configure.zcml	2009-05-27 12:20:03 UTC (rev 100453)
@@ -4,7 +4,7 @@
 
   <subscriber
       for="Products.Five.component.interfaces.IObjectManagerSite
-           zope.container.interfaces.IObjectMovedEvent"
+           zope.lifecycleevent.interfaces.IObjectMovedEvent"
       handler=".update_sitemanager_bases_handler"
       />
 



More information about the Checkins mailing list