fix spacing and merge missing entries

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1231545 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-01-14 18:19:58 +00:00
parent b2a0040e98
commit fc57aa6a04
1 changed files with 40 additions and 26 deletions

View File

@ -96,37 +96,48 @@ Changes in backwards compatibility policy
New Features New Features
* LUCENE-3596: DirectoryTaxonomyWriter extensions can override createIndexWriterConfig() * LUCENE-3596: DirectoryTaxonomyWriter extensions can override createIndexWriterConfig()
and modify how its internal index writer is opened. (Doron Cohen) and modify how its internal index writer is opened. (Doron Cohen)
* SOLR-2982: Added phonetic encoders to contrib/analyzers/phonetic: * SOLR-2982: Added phonetic encoders to contrib/analyzers/phonetic:
Metaphone, Soundex, Caverphone, Beider-Morse, etc. (Robert Muir) Metaphone, Soundex, Caverphone, Beider-Morse, etc. (Robert Muir)
* LUCENE-2906: Added CJKBigramFilter that forms bigrams from StandardTokenizer or * LUCENE-2906: Added CJKBigramFilter that forms bigrams from StandardTokenizer or
ICUTokenizer CJK tokens, and CJKWidthFilter that normalizes halfwidth/fullwidth. ICUTokenizer CJK tokens, and CJKWidthFilter that normalizes halfwidth/fullwidth.
This filter supports unicode supplementary characters and you can toggle whether This filter supports unicode supplementary characters and you can toggle whether
bigrams are formed for each of Han/Hiragana/Katakana/Hangul independently. Deprecates bigrams are formed for each of Han/Hiragana/Katakana/Hangul independently. Deprecates
CJKTokenizer. (Tom Burton-West, Robert Muir) CJKTokenizer. (Tom Burton-West, Robert Muir)
* LUCENE-3634: IndexReader's static main method was moved to a new * LUCENE-3634: IndexReader's static main method was moved to a new
tool, CompoundFileExtractor, in contrib/misc. (Mike McCandless) tool, CompoundFileExtractor, in contrib/misc. (Mike McCandless)
* LUCENE-3685: Add ToChildBlockJoinQuery and renamed previous * SOLR-3020: Add KeywordAttribute support to HunspellStemFilter. Terms marked as
keywords are not modified by the stemmer. (Simon Willnauer, Helge Jenssen)
* LUCENE-3305: Added Kuromoji morphological analyzer for Japanese.
(Christian Moen, Masaru Hasegawa, Simon Willnauer, Uwe Schindler, Mike McCandless, Robert Muir)
* LUCENE-3685: Add ToChildBlockJoinQuery and renamed previous
BlockJoinQuery to ToParentBlockJoinQuery, so that you can now do BlockJoinQuery to ToParentBlockJoinQuery, so that you can now do
joins in both parent to child and child to parent directions. joins in both parent to child and child to parent directions.
(Mike McCandless) (Mike McCandless)
API Changes API Changes
* LUCENE-3596: DirectoryTaxonomyWriter.openIndexWriter() now takes an * LUCENE-3596: DirectoryTaxonomyWriter.openIndexWriter() now takes an
openIndexWriter parameter rather than just an open-mode. (Doron Cohen) openIndexWriter parameter rather than just an open-mode. (Doron Cohen)
* LUCENE-3606: FieldNormModifier was deprecated, because IndexReader's * LUCENE-3606: FieldNormModifier was deprecated, because IndexReader's
setNorm() was deprecated. Furthermore, this class is broken, as it does setNorm() was deprecated. Furthermore, this class is broken, as it does
not take position overlaps into account while recalculating norms. not take position overlaps into account while recalculating norms.
(Uwe Schindler, Robert Muir) (Uwe Schindler, Robert Muir)
Changes in runtime behavior: * LUCENE-3305: Added SegmentingTokenizerBase, which breaks text into sentences
with BreakIterator and allows subclasses to decompose sentences into words, or
use the sentence boundary information for other reasons (e.g. attribute/position increment)
(Robert Muir)
Changes in runtime behavior
* LUCENE-3626: PKIndexSplitter and MultiPassIndexSplitter now work * LUCENE-3626: PKIndexSplitter and MultiPassIndexSplitter now work
per segment. (Uwe Schindler) per segment. (Uwe Schindler)
@ -150,6 +161,9 @@ Bug Fixes
cover all tokens it had matched. (Koji Sekiguchi, Robert Muir, cover all tokens it had matched. (Koji Sekiguchi, Robert Muir,
Mike McCandless) Mike McCandless)
* LUCENE-3686: CategoryEnhancement must override Object.equals(Object).
(Sivan Yogev via Shai Erera)
Documentation Documentation
* LUCENE-3599: Javadocs for DistanceUtils.haversine() were incorrectly * LUCENE-3599: Javadocs for DistanceUtils.haversine() were incorrectly