improve overview.htmls

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1328715 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-04-21 17:34:46 +00:00
parent 7af629f193
commit 77f13708eb
10 changed files with 54 additions and 10 deletions

View File

@ -19,5 +19,15 @@
<title>Apache Lucene Analyzers</title> <title>Apache Lucene Analyzers</title>
</head> </head>
<body> <body>
Analyzers for indexing content in different languages and domains.
<p>
For an introduction to Lucene's analysis API, see the {@link org.apache.lucene.analysis} package documentation.
</p>
<p>
This module contains concrete components ({@link org.apache.lucene.analysis.charfilter.CharFilter}s,
{@link org.apache.lucene.analysis.Tokenizer}s, and ({@link org.apache.lucene.analysis.TokenFilter}s) for
analyzing different types of content. It also provides a number of {@link org.apache.lucene.analysis.Analyzer}s
for different languages that you can use to get started quickly.
</p>
</body> </body>
</html> </html>

View File

@ -27,7 +27,11 @@ This module exposes functionality from
<a href="http://site.icu-project.org/">ICU</a> to Apache Lucene. ICU4J is a Java <a href="http://site.icu-project.org/">ICU</a> to Apache Lucene. ICU4J is a Java
library that enhances Java's internationalization support by improving library that enhances Java's internationalization support by improving
performance, keeping current with the Unicode Standard, and providing richer performance, keeping current with the Unicode Standard, and providing richer
APIs. This module exposes the following functionality: APIs.
<p>
For an introduction to Lucene's analysis API, see the {@link org.apache.lucene.analysis} package documentation.
<p>
This module exposes the following functionality:
</p> </p>
<ul> <ul>
<li><a href="#segmentation">Text Segmentation</a>: Tokenizes text based on <li><a href="#segmentation">Text Segmentation</a>: Tokenizes text based on

View File

@ -17,10 +17,21 @@
<html> <html>
<head> <head>
<title> <title>
analyzers-kuromoji Apache Lucene Kuromoji Analyzer
</title> </title>
</head> </head>
<body> <body>
analyzers-kuromoji Kuromoji is a morphological analyzer for Japanese text.
<p>
This module provides support for Japanese text analysis, including features
such as part-of-speech tagging, lemmatization, and compound word analysis.
</p>
<p>
For an introduction to Lucene's analysis API, see the {@link org.apache.lucene.analysis} package documentation.
</p>
<!-- TODO: give a high level overview of the features, how they are supported
by the attributes api, which components do what, etc. Also would be nice
to show some examples for some Japanese strings, we could show the various
attributes resulting from analysis in a table -->
</body> </body>
</html> </html>

View File

@ -27,6 +27,9 @@
by Dawid Weiss and Marcin Miłkowski. by Dawid Weiss and Marcin Miłkowski.
</p> </p>
<p> <p>
For an introduction to Lucene's analysis API, see the {@link org.apache.lucene.analysis} package documentation.
</p>
<p>
The MorfologikFilter yields one or more terms for each token. Each The MorfologikFilter yields one or more terms for each token. Each
of those terms is given the same position in the index. of those terms is given the same position in the index.
</p> </p>

View File

@ -21,6 +21,13 @@
</title> </title>
</head> </head>
<body> <body>
analyzers-phonetic Analysis for indexing phonetic signatures (for sounds-alike search)
<p>
For an introduction to Lucene's analysis API, see the {@link org.apache.lucene.analysis} package documentation.
</p>
<p>
This module provides analysis components (using encoders from <a href="http://commons.apache.org/codec/">Apache Commons Codec</a>)
that index and search phonetic signatures.
</p>
</body> </body>
</html> </html>

View File

@ -21,6 +21,9 @@
</title> </title>
</head> </head>
<body> <body>
smartcn Analyzer for Simplified Chinese, which indexes words.
<p>
For an introduction to Lucene's analysis API, see the {@link org.apache.lucene.analysis} package documentation.
</p>
</body> </body>
</html> </html>

View File

@ -21,6 +21,9 @@
</title> </title>
</head> </head>
<body> <body>
analyzers-uima Analysis integration with <a href="http://uima.apache.org/">Apache UIMA</a>.
<p>
For an introduction to Lucene's analysis API, see the {@link org.apache.lucene.analysis} package documentation.
</p>
</body> </body>
</html> </html>

View File

@ -28,7 +28,7 @@ Sorry.
<p>Note that because JavaCC defines a class named <tt>Token</tt>, <tt>org.apache.lucene.analysis.Token</tt> <p>Note that because JavaCC defines a class named <tt>Token</tt>, <tt>org.apache.lucene.analysis.Token</tt>
must always be fully qualified in source code in this package. must always be fully qualified in source code in this package.
<p><b>NOTE</b>: contrib/queryparser has an alternative queryparser that matches the syntax of this one, but is more modular, <p><b>NOTE</b>: {@link org.apache.lucene.queryparser.flexible.standard} has an alternative queryparser that matches the syntax of this one, but is more modular,
enabling substantial customization to how a query is created. enabling substantial customization to how a query is created.
</body> </body>

View File

@ -15,6 +15,9 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<!--
TODO: this documentation is NOT VISIBLE because there are no classes in this package.
merge into overview.html with descriptions of the other QPs -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
@ -25,7 +28,7 @@
<h2>Apache Lucene Flexible Query Parser</h2> <h2>Apache Lucene Flexible Query Parser</h2>
<p> <p>
This contrib project contains the new Lucene query parser implementation, which matches the syntax of the core QueryParser but offers a more modular architecture to enable customization. This project contains the new Lucene query parser implementation, which matches the syntax of the core QueryParser but offers a more modular architecture to enable customization.
</p> </p>
<p> <p>

View File

@ -17,10 +17,10 @@
<html> <html>
<head> <head>
<title> <title>
spellchecker suggest
</title> </title>
</head> </head>
<body> <body>
spellchecker Auto-suggest and spellchecking support.
</body> </body>
</html> </html>