[Checkins] SVN: zc.sourcefactory/trunk/ Use zope.intid instead of zope.app.intid.

Michael Howitz mh at gocept.com
Tue Feb 3 12:12:12 EST 2009


Log message for revision 96041:
  Use zope.intid instead of zope.app.intid.
  
  

Changed:
  U   zc.sourcefactory/trunk/CHANGES.txt
  U   zc.sourcefactory/trunk/setup.py
  U   zc.sourcefactory/trunk/src/zc/sourcefactory/policies.py

-=-
Modified: zc.sourcefactory/trunk/CHANGES.txt
===================================================================
--- zc.sourcefactory/trunk/CHANGES.txt	2009-02-03 16:55:18 UTC (rev 96040)
+++ zc.sourcefactory/trunk/CHANGES.txt	2009-02-03 17:12:12 UTC (rev 96041)
@@ -2,14 +2,16 @@
 Changes
 =======
 
-0.4.1 (unreleased)
+0.5.0 (unreleased)
 ==================
 
     - FactoredContextualSourceBinder.__call__ now accepts arguments giving the
       args to pass to source class.  ContextualSourceFactory now uses a class
       variable to tell what kind of Source to make.
 
+    - Use zope.intid instead of zope.app.intid.
 
+
 0.4.0 (2008-12-11)
 ==================
 

Modified: zc.sourcefactory/trunk/setup.py
===================================================================
--- zc.sourcefactory/trunk/setup.py	2009-02-03 16:55:18 UTC (rev 96040)
+++ zc.sourcefactory/trunk/setup.py	2009-02-03 17:12:12 UTC (rev 96041)
@@ -8,7 +8,7 @@
 
 setup(
     name="zc.sourcefactory",
-    version="0.4.1dev",
+    version="0.5.0dev",
     author="Zope Corporation and Contributors",
     author_email="zope3-dev at zope.org",
     url="http://svn.zope.org/zc.sourcefactory",
@@ -43,7 +43,7 @@
     install_requires=[
         "setuptools",
         "ZODB3",
-        "zope.app.intid",
+        "zope.intid",
         "zope.browser",
         "zope.component",
         "zope.dublincore",

Modified: zc.sourcefactory/trunk/src/zc/sourcefactory/policies.py
===================================================================
--- zc.sourcefactory/trunk/src/zc/sourcefactory/policies.py	2009-02-03 16:55:18 UTC (rev 96040)
+++ zc.sourcefactory/trunk/src/zc/sourcefactory/policies.py	2009-02-03 17:12:12 UTC (rev 96041)
@@ -17,7 +17,7 @@
 __docformat__ = "reStructuredText"
 
 
-import zope.app.intid.interfaces
+import zope.intid.interfaces
 import zope.component
 try:
     from zope.dublincore import interfaces as dublincoreinterfaces
@@ -144,7 +144,7 @@
     @property
     def intids(self):
         return zope.component.getUtility(
-            zope.app.intid.interfaces.IIntIds)
+            zope.intid.interfaces.IIntIds)
 
 
 # Value policies



More information about the Checkins mailing list