otis 2003/01/31 11:42:30 Modified: docs/lucene-sandbox index.html xdocs/lucene-sandbox index.xml Log: - Added information about other Lucene Sandbox contributions. Submitted by: Jell Linwood Revision Changes Path 1.13 +69 -11 jakarta-lucene/docs/lucene-sandbox/index.html Index: index.html =================================================================== RCS file: /home/cvs/jakarta-lucene/docs/lucene-sandbox/index.html,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- index.html 28 Jan 2003 22:54:23 -0000 1.12 +++ index.html 31 Jan 2003 19:42:30 -0000 1.13 @@ -236,18 +236,54 @@ <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#828DA6"> <font color="#ffffff" face="arial,helvetica,sanserif"> - <a name="Ant"><strong>Ant</strong></a> + <a name="Lucene Service for Fulcrum"><strong>Lucene Service for Fulcrum</strong></a> </font> </td></tr> <tr><td> <blockquote> <p> -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> + </blockquote> + </td></tr> + <tr><td><br/></td></tr> + </table> + <table border="0" cellspacing="0" cellpadding="2" width="100%"> + <tr><td bgcolor="#828DA6"> + <font color="#ffffff" face="arial,helvetica,sanserif"> + <a name="WordNet/Synonyms"><strong>WordNet/Synonyms</strong></a> + </font> + </td></tr> + <tr><td> + <blockquote> + <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. </p> <p> -<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> </p> </blockquote> </td></tr> @@ -256,20 +292,42 @@ <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#828DA6"> <font color="#ffffff" face="arial,helvetica,sanserif"> - <a name="SearchBean"><strong>SearchBean</strong></a> + <a name="SAX/DOM XML Indexing demo"><strong>SAX/DOM XML Indexing demo</strong></a> </font> </td></tr> <tr><td> <blockquote> <p> -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. +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> + <p> +<a href="http://cvs.apache.org/viewcvs.cgi/jakarta-lucene-sandbox/contributions/XML-Indexing-Demo/"> +CVS for the XML Indexing Demo.</a> +</p> + </blockquote> + </td></tr> + <tr><td><br/></td></tr> + </table> + <table border="0" cellspacing="0" cellpadding="2" width="100%"> + <tr><td bgcolor="#828DA6"> + <font color="#ffffff" face="arial,helvetica,sanserif"> + <a name="High Frequency Terms"><strong>High Frequency Terms</strong></a> + </font> + </td></tr> + <tr><td> + <blockquote> + <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. </p> <p> -<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> </p> </blockquote> </td></tr> 1.6 +51 -11 jakarta-lucene/xdocs/lucene-sandbox/index.xml Index: index.xml =================================================================== RCS file: /home/cvs/jakarta-lucene/xdocs/lucene-sandbox/index.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- index.xml 28 Jan 2003 22:54:23 -0000 1.5 +++ index.xml 31 Jan 2003 19:42:30 -0000 1.6 @@ -84,27 +84,67 @@ </subsection> -<subsection name="Ant"> +<subsection name="Lucene Service for Fulcrum"> <p> -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. </p> <p> -<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> </p> </subsection> -<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> <p> -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. +<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. </p> <p> -<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> </p> </subsection>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]