Attached is a patch for the sandbox index.html, which adds descriptions for High Frequency Terms, Fulcrum Service, XML Indexing demo, and WordNet.

Jeff
cvs diff index.xml (in directory C:\java\lucene\jakarta-lucene\xdocs\lucene-sandbox\)
Index: index.xml
===================================================================
RCS file: /home/cvspublic/jakarta-lucene/xdocs/lucene-sandbox/index.xml,v
retrieving revision 1.5
diff -r1.5 index.xml
87c87
< <subsection name="Ant">
---
> <subsection name="Lucene Service for Fulcrum">
89,90c89,112
< The Ant project is a useful Ant task that creates a Lucene index out of an Ant 
fileset.  It also
< contains an example HTML parser that uses JTidy.
---
> Lucene can be run as a service inside <a 
>href="http://jakarta.apache.org/turbine/fulcrum/index.html";>Fulcrum</a>,
> which is the services framework from the 
> <a href="http://jakarta.apache.org/turbine/";>Turbine</a> project.</p>
> <p>
> The implementation consists of a SearchService interface, a 
>LuceneSearchSearchService implementation, and a
> SearchResults object that gets an array of Document objects from a Hits object. 
>Calls to the search methods on 
> the service return the SearchResults object.
> </p>
> <p>
> The service supports querying, but does not support indexing.  
> </p>
> <p>
> <a 
>href="http://cvs.apache.org/viewcvs/jakarta-lucene-sandbox/contributions/fulcrum/";> 
> CVS repository for the Fulcrum Service.</a>
> </p>
> </subsection>
> 
> <subsection name="WordNet/Synonyms">
> <p>
> The Lucene WordNet code consists of a single class which parses a prolog file 
> from the WordNet site that contains a list of English words and synonyms. 
> The class builds a Lucene index from the synonyms file.  Your querying code could
> hit this index to build up a set of synonyms for the terms in the
> search query.  
93,94c115,121
< <a 
href="http://cvs.apache.org/viewcvs/jakarta-lucene-sandbox/contributions/ant/";>The 
< CVS repository for the Ant contribution.</a>
---
> More information on the <a 
>href="http://www.tropo.com/techno/java/lucene/wordnet.html";>Lucene WordNet 
>package</a>.  
> <a href="http://www.cogsci.princeton.edu/~wn/";>WordNet</a> is an online database of 
>English language words that contains
> synonyms, definitions, and various relationships between synonym sets.
> </p>
> <p>
> <a 
>href="http://cvs.apache.org/viewcvs.cgi/jakarta-lucene-sandbox/contributions/WordNet/";>
> 
> CVS for the WordNet module.</a>
98c125,130
< <subsection name="SearchBean">
---
> <subsection name="SAX/DOM XML Indexing demo">
> <p>
> This contribution is some sample code that demonstrates adding simple XML documents 
>into the index.  It creates
> a new Document object for each file, and then populates the Document with a Field 
>for each XML element, recursively.
> There are examples included for both SAX and DOM.
> </p>
100,102d131
< SearchBean is a UI component that can be used to browse through the results of a 
Lucene search.
< The SearchBean searches the index for a given query string, retrieves the hits, and 
then brings
< them into the HitsIterator class, which can be used for paging and sorting through 
search results.
103a133,142
> <a 
>href="http://cvs.apache.org/viewcvs.cgi/jakarta-lucene-sandbox/contributions/XML-Indexing-Demo/";>
> 
> CVS for the XML Indexing Demo.</a>
> </p>
> </subsection>
> 
> <subsection name="High Frequency Terms">
> <p>
> The miscellaneous package is for classes that don't fit anywhere else. The only 
>class in it right now determines
> what terms occur the most inside a Lucene index.  This could be useful for analyzing 
>which terms may need to go
> into a custom stop word list for better search results.
106,107c145,147
< <a 
href="http://cvs.apache.org/viewcvs/jakarta-lucene-sandbox/contributions/searchBean/";>The
 
< CVS repository for the SearchBean contribution.</a>
---
> 
> <a 
>href="http://cvs.apache.org/viewcvs.cgi/jakarta-lucene-sandbox/contributions/miscellaneous/src/java/org/apache/lucene/misc/";>
> 
> CVS for miscellaneous classes.</a>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to