[Zope3-checkins] CVS: zopeproducts/lucenetextindex/browser - __init__.py:1.1 configure.zcml:1.1

Stephan Richter srichter@cosmos.phy.tufts.edu
Tue, 29 Jul 2003 09:04:05 -0400


Update of /cvs-repository/zopeproducts/lucenetextindex/browser
In directory cvs.zope.org:/tmp/cvs-serv15566/browser

Added Files:
	__init__.py configure.zcml 
Log Message:
I am proud to announce the first check-in of the Lucene Text Index for 
Zope 3. The code was fully sponsored by struktur AG (www.struktur.de).

In the next week I expect to get some changes from struktur, since they
have done some stress testing and I will maintain the code. This is a good
example on how to use the Index (especially the TextIndex) API and make 
your own implementations.


=== Added File zopeproducts/lucenetextindex/browser/__init__.py ===


=== Added File zopeproducts/lucenetextindex/browser/configure.zcml ===
<zopeConfigure
   xmlns="http://namespaces.zope.org/zope"
   xmlns:browser="http://namespaces.zope.org/browser">

  <browser:addform
      label="Add Lucene Text Index"
      name="AddLuceneTextIndex"
      schema="zopeproducts.lucenetextindex.interfaces.IRemoteIndex"
      content_factory="zopeproducts.lucenetextindex.index.LuceneTextIndex"
      permission="zope.ManageServices"
      menu="add_component" title="Lucene Text Index"/>

  <browser:editform
      schema="zopeproducts.lucenetextindex.interfaces.IRemoteIndex"
      for="zopeproducts.lucenetextindex.interfaces.IRemoteIndex"
      label="Edit URL"
      name="editURL.html"
      permission="zope.ManageServices"
      menu="zmi_views" title="Edit URL" />


</zopeConfigure>