[Zope-Checkins] CVS: Zope2 - __init__.py:1.3

andreas@serenade.digicool.com andreas@serenade.digicool.com
Fri, 1 Jun 2001 14:54:10 -0400


Update of /cvs-repository/Zope2/lib/python/Products/PluginIndexes/TextIndex/Splitter/ZopeSplitter
In directory serenade:/tmp/cvs-serv28934/TextIndex/Splitter/ZopeSplitter

Modified Files:
	__init__.py 
Log Message:
- added "query_options" parameter to all index types
- made parseIndexRequest much more smarter in parsing the request parameter



--- Updated File __init__.py in package Zope2 --
--- __init__.py	2001/05/30 15:57:34	1.2
+++ __init__.py	2001/06/01 18:53:39	1.3
@@ -1 +1,23 @@
 from Splitter import Splitter
+
+class ZopeSplitter:
+
+    meta_type="Splitter"
+    description="Zope Default Splitter"
+
+    Splitter = Splitter
+
+    def __init__(self):
+        print "__init__"
+
+    def a(self):
+        """a"""
+        print "initialize",self.meta_type
+        pass
+
+    def b(self):
+        """b"""
+
+        print "binitialize",self.meta_type
+        pass
+