[Zope-Checkins] CVS: Zope2 - Catalog.py:1.70.4.2

Andreas Jung andreas@dhcp165.digicool.com
Mon, 7 May 2001 11:30:30 -0400


Update of /cvs-repository/Zope2/lib/python/Products/ZCatalog
In directory yetix:/work/sandboxes/ajung-pathindex/lib/python/Products/ZCatalog

Modified Files:
      Tag: ajung-pathindex
	Catalog.py 
Log Message:
added support for path indexes



--- Updated File Catalog.py in package Zope2 --
--- Catalog.py	2001/05/04 19:13:13	1.70.4.1
+++ Catalog.py	2001/05/07 15:28:44	1.70.4.2
@@ -596,6 +596,8 @@
         return used
 
     def searchResults(self, REQUEST=None, used=None, **kw):
+
+        print REQUEST,used,kw
         # Get search arguments:
         if REQUEST is None and not kw:
             try: REQUEST=self.REQUEST
@@ -608,6 +610,7 @@
                 kw=m
         elif REQUEST: kw=REQUEST
 
+        print kw
         # Make sure batch size is set
         if REQUEST and not REQUEST.has_key('batch_size'):
             try: batch_size=self.default_batch_size