[Zope-Checkins] CVS: Zope/lib/python/Products/ZCatalog - IZCatalog.py:1.3.4.1

Chris McDonough chrism@zope.com
Tue, 10 Sep 2002 23:37:08 -0400


Update of /cvs-repository/Zope/lib/python/Products/ZCatalog
In directory cvs.zope.org:/tmp/cvs-serv22446/lib/python/Products/ZCatalog

Modified Files:
      Tag: chrism-install-branch
	IZCatalog.py 
Log Message:
Merging chrism-install-branch with HEAD changes.


=== Zope/lib/python/Products/ZCatalog/IZCatalog.py 1.3 => 1.3.4.1 ===
--- Zope/lib/python/Products/ZCatalog/IZCatalog.py:1.3	Wed Aug 14 18:25:15 2002
+++ Zope/lib/python/Products/ZCatalog/IZCatalog.py	Tue Sep 10 23:36:37 2002
@@ -66,16 +66,20 @@
 
     """
 
-    def catalog_object(obj, uid):
+    def catalog_object(obj, uid, idxs=[]):
         """Catalogs the object 'obj' with the unique identifier 'uid'.
 
-        The uid must be a physical path!
+        The uid must be a physical path, either absolute or relative to
+        the catalog.
+
+        If provided, idxs specifies the names of indexes to update.
         """
 
     def uncatalog_object(uid):
         """Uncatalogs the object with the unique identifier 'uid'.
 
-        The uid must be a physical path!
+        The uid must be a physical path, either absolute or relative to
+        the catalog.
         """
 
     def uniqueValuesFor(name):