[Checkins] SVN: grok/trunk/ migrate from zope.app.intid to zope.intid

Kevin Teague kevin at bud.ca
Fri Nov 27 20:45:58 EST 2009


Log message for revision 106071:
  migrate from zope.app.intid to zope.intid

Changed:
  U   grok/trunk/setup.py
  U   grok/trunk/src/grok/configure.zcml
  U   grok/trunk/src/grok/ftests/catalog/catalog.py
  U   grok/trunk/src/grok/ftests/catalog/indexes.py
  U   grok/trunk/src/grok/ftests/catalog/indexes_app_interface.py
  U   grok/trunk/src/grok/ftests/catalog/indexes_attribute.py
  U   grok/trunk/src/grok/ftests/catalog/indexes_class.py
  U   grok/trunk/src/grok/ftests/catalog/indexes_multiple.py
  U   grok/trunk/src/grok/ftests/catalog/indexes_multiple_conflict.py
  U   grok/trunk/src/grok/ftests/catalog/indexes_name.py
  U   grok/trunk/src/grok/ftests/catalog/indexes_nonexistent.py
  U   grok/trunk/src/grok/ftests/catalog/indexes_set.py
  U   grok/trunk/src/grok/ftests/catalog/indexes_site.py
  U   grok/trunk/src/grok/ftests/catalog/setuporder.py
  U   grok/trunk/src/grok/meta.py
  U   grok/trunk/versions.cfg

-=-
Modified: grok/trunk/setup.py
===================================================================
--- grok/trunk/setup.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/setup.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -52,7 +52,6 @@
                       'zope.app.catalog',
                       'zope.app.container',
                       'zope.app.folder',
-                      'zope.app.intid',
                       'zope.app.pagetemplate',
                       'zope.app.publication',
                       'zope.app.publisher',
@@ -70,6 +69,7 @@
                       'zope.hookable',
                       'zope.i18nmessageid',
                       'zope.interface',
+                      'zope.intid',
                       'zope.keyreference',
                       'zope.lifecycleevent',
                       'zope.location',

Modified: grok/trunk/src/grok/configure.zcml
===================================================================
--- grok/trunk/src/grok/configure.zcml	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/configure.zcml	2009-11-28 01:45:58 UTC (rev 106071)
@@ -20,7 +20,7 @@
   <include package="zope.traversing.browser" />
   <include package="zope.app.zcmlfiles" />
   <include package="zope.app.authentication" />
-  <include package="zope.app.intid" />
+  <include package="zope.intid" />
   <include package="zope.keyreference" />
   <include package="zope.app.catalog" />
   <include package="zope.app.renderer" />

Modified: grok/trunk/src/grok/ftests/catalog/catalog.py
===================================================================
--- grok/trunk/src/grok/ftests/catalog/catalog.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/ftests/catalog/catalog.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -24,8 +24,8 @@
 
 import grok
 from zope import schema, interface
-from zope.app.intid import IntIds
-from zope.app.intid.interfaces import IIntIds
+from zope.intid import IntIds
+from zope.intid.interfaces import IIntIds
 from zope.app.catalog.catalog import Catalog
 from zope.app.catalog.interfaces import ICatalog
 from zope.app.catalog.field import FieldIndex

Modified: grok/trunk/src/grok/ftests/catalog/indexes.py
===================================================================
--- grok/trunk/src/grok/ftests/catalog/indexes.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/ftests/catalog/indexes.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -53,7 +53,7 @@
   >>> from zope.app.catalog.interfaces import ICatalog
   >>> sm.unregisterUtility(catalog, provided=ICatalog)
   True
-  >>> from zope.app.intid.interfaces import IIntIds
+  >>> from zope.intid.interfaces import IIntIds
   >>> from zope import component
   >>> intids = component.getUtility(IIntIds)
   >>> sm.unregisterUtility(intids, provided=IIntIds)

Modified: grok/trunk/src/grok/ftests/catalog/indexes_app_interface.py
===================================================================
--- grok/trunk/src/grok/ftests/catalog/indexes_app_interface.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/ftests/catalog/indexes_app_interface.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -27,7 +27,7 @@
   >>> from zope.app.catalog.interfaces import ICatalog
   >>> sm.unregisterUtility(catalog, provided=ICatalog)
   True
-  >>> from zope.app.intid.interfaces import IIntIds
+  >>> from zope.intid.interfaces import IIntIds
   >>> from zope import component
   >>> intids = component.getUtility(IIntIds)
   >>> sm.unregisterUtility(intids, provided=IIntIds)

Modified: grok/trunk/src/grok/ftests/catalog/indexes_attribute.py
===================================================================
--- grok/trunk/src/grok/ftests/catalog/indexes_attribute.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/ftests/catalog/indexes_attribute.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -32,7 +32,7 @@
   >>> from zope.app.catalog.interfaces import ICatalog
   >>> sm.unregisterUtility(catalog, provided=ICatalog)
   True
-  >>> from zope.app.intid.interfaces import IIntIds
+  >>> from zope.intid.interfaces import IIntIds
   >>> from zope import component
   >>> intids = component.getUtility(IIntIds)
   >>> sm.unregisterUtility(intids, provided=IIntIds)

Modified: grok/trunk/src/grok/ftests/catalog/indexes_class.py
===================================================================
--- grok/trunk/src/grok/ftests/catalog/indexes_class.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/ftests/catalog/indexes_class.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -44,7 +44,7 @@
   >>> from zope.app.catalog.interfaces import ICatalog
   >>> sm.unregisterUtility(catalog, provided=ICatalog)
   True
-  >>> from zope.app.intid.interfaces import IIntIds
+  >>> from zope.intid.interfaces import IIntIds
   >>> from zope import component
   >>> intids = component.getUtility(IIntIds)
   >>> sm.unregisterUtility(intids, provided=IIntIds)

Modified: grok/trunk/src/grok/ftests/catalog/indexes_multiple.py
===================================================================
--- grok/trunk/src/grok/ftests/catalog/indexes_multiple.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/ftests/catalog/indexes_multiple.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -25,7 +25,7 @@
   >>> from zope.app.catalog.interfaces import ICatalog
   >>> sm.unregisterUtility(catalog, provided=ICatalog)
   True
-  >>> from zope.app.intid.interfaces import IIntIds
+  >>> from zope.intid.interfaces import IIntIds
   >>> from zope import component
   >>> intids = component.getUtility(IIntIds)
   >>> sm.unregisterUtility(intids, provided=IIntIds)

Modified: grok/trunk/src/grok/ftests/catalog/indexes_multiple_conflict.py
===================================================================
--- grok/trunk/src/grok/ftests/catalog/indexes_multiple_conflict.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/ftests/catalog/indexes_multiple_conflict.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -25,7 +25,7 @@
   >>> from zope.app.catalog.interfaces import ICatalog
   >>> sm.unregisterUtility(catalog, provided=ICatalog)
   True
-  >>> from zope.app.intid.interfaces import IIntIds
+  >>> from zope.intid.interfaces import IIntIds
   >>> from zope import component
   >>> intids = component.getUtility(IIntIds)
   >>> sm.unregisterUtility(intids, provided=IIntIds)

Modified: grok/trunk/src/grok/ftests/catalog/indexes_name.py
===================================================================
--- grok/trunk/src/grok/ftests/catalog/indexes_name.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/ftests/catalog/indexes_name.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -26,7 +26,7 @@
   >>> from zope.app.catalog.interfaces import ICatalog
   >>> sm.unregisterUtility(catalog, provided=ICatalog, name='foo_catalog')
   True
-  >>> from zope.app.intid.interfaces import IIntIds
+  >>> from zope.intid.interfaces import IIntIds
   >>> from zope import component
   >>> intids = component.getUtility(IIntIds)
   >>> sm.unregisterUtility(intids, provided=IIntIds)

Modified: grok/trunk/src/grok/ftests/catalog/indexes_nonexistent.py
===================================================================
--- grok/trunk/src/grok/ftests/catalog/indexes_nonexistent.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/ftests/catalog/indexes_nonexistent.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -29,7 +29,7 @@
   >>> from zope.app.catalog.interfaces import ICatalog
   >>> sm.unregisterUtility(catalog, provided=ICatalog)
   True
-  >>> from zope.app.intid.interfaces import IIntIds
+  >>> from zope.intid.interfaces import IIntIds
   >>> from zope import component
   >>> intids = component.getUtility(IIntIds)
   >>> sm.unregisterUtility(intids, provided=IIntIds)

Modified: grok/trunk/src/grok/ftests/catalog/indexes_set.py
===================================================================
--- grok/trunk/src/grok/ftests/catalog/indexes_set.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/ftests/catalog/indexes_set.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -37,7 +37,7 @@
   >>> from zope.app.catalog.interfaces import ICatalog
   >>> sm.unregisterUtility(catalog, provided=ICatalog)
   True
-  >>> from zope.app.intid.interfaces import IIntIds
+  >>> from zope.intid.interfaces import IIntIds
   >>> from zope import component
   >>> intids = component.getUtility(IIntIds)
   >>> sm.unregisterUtility(intids, provided=IIntIds)

Modified: grok/trunk/src/grok/ftests/catalog/indexes_site.py
===================================================================
--- grok/trunk/src/grok/ftests/catalog/indexes_site.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/ftests/catalog/indexes_site.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -25,7 +25,7 @@
   >>> from zope.app.catalog.interfaces import ICatalog
   >>> sm.unregisterUtility(catalog, provided=ICatalog)
   True
-  >>> from zope.app.intid.interfaces import IIntIds
+  >>> from zope.intid.interfaces import IIntIds
   >>> from zope import component
   >>> intids = component.getUtility(IIntIds)
   >>> sm.unregisterUtility(intids, provided=IIntIds)

Modified: grok/trunk/src/grok/ftests/catalog/setuporder.py
===================================================================
--- grok/trunk/src/grok/ftests/catalog/setuporder.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/ftests/catalog/setuporder.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -27,8 +27,8 @@
 
 import grok
 from zope import schema, interface
-from zope.app.intid import IntIds
-from zope.app.intid.interfaces import IIntIds
+from zope.intid import IntIds
+from zope.intid.interfaces import IIntIds
 from zope.app.catalog.catalog import Catalog
 from zope.app.catalog.interfaces import ICatalog
 from zope.app.catalog.field import FieldIndex

Modified: grok/trunk/src/grok/meta.py
===================================================================
--- grok/trunk/src/grok/meta.py	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/src/grok/meta.py	2009-11-28 01:45:58 UTC (rev 106071)
@@ -34,8 +34,8 @@
 
 from zope.app.publisher.xmlrpc import MethodPublisher
 
-from zope.app.intid import IntIds
-from zope.app.intid.interfaces import IIntIds
+from zope.intid import IntIds
+from zope.intid.interfaces import IIntIds
 from zope.app.catalog.catalog import Catalog
 from zope.app.catalog.interfaces import ICatalog
 

Modified: grok/trunk/versions.cfg
===================================================================
--- grok/trunk/versions.cfg	2009-11-28 01:41:27 UTC (rev 106070)
+++ grok/trunk/versions.cfg	2009-11-28 01:45:58 UTC (rev 106071)
@@ -177,7 +177,6 @@
 zope.app.container = 3.8.0
 zope.app.folder = 3.5.1
 zope.app.interface = 3.5.0
-zope.app.intid = 3.7.0
 zope.app.localpermission = 3.7.0
 zope.app.skins = 3.4.0
 zope.authentication = 3.7.0



More information about the checkins mailing list