You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/01/14 19:19:40 UTC

svn commit: r1231544 - /lucene/dev/branches/branch_3x/lucene/contrib/CHANGES.txt

Author: rmuir
Date: Sat Jan 14 18:19:40 2012
New Revision: 1231544

URL: http://svn.apache.org/viewvc?rev=1231544&view=rev
Log:
fix spacing

Modified:
    lucene/dev/branches/branch_3x/lucene/contrib/CHANGES.txt

Modified: lucene/dev/branches/branch_3x/lucene/contrib/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/lucene/contrib/CHANGES.txt?rev=1231544&r1=1231543&r2=1231544&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/lucene/contrib/CHANGES.txt (original)
+++ lucene/dev/branches/branch_3x/lucene/contrib/CHANGES.txt Sat Jan 14 18:19:40 2012
@@ -13,46 +13,46 @@ Changes in backwards compatibility polic
 
 New Features
 
-* LUCENE-3596: DirectoryTaxonomyWriter extensions can override createIndexWriterConfig() 
-  and modify how its internal index writer is opened. (Doron Cohen)
+ * LUCENE-3596: DirectoryTaxonomyWriter extensions can override createIndexWriterConfig() 
+   and modify how its internal index writer is opened. (Doron Cohen)
 
-* SOLR-2982: Added phonetic encoders to contrib/analyzers/phonetic:
-  Metaphone, Soundex, Caverphone, Beider-Morse, etc.  (Robert Muir)
+ * SOLR-2982: Added phonetic encoders to contrib/analyzers/phonetic:
+   Metaphone, Soundex, Caverphone, Beider-Morse, etc.  (Robert Muir)
 
-* LUCENE-2906: Added CJKBigramFilter that forms bigrams from StandardTokenizer or
-  ICUTokenizer CJK tokens, and CJKWidthFilter that normalizes halfwidth/fullwidth. 
-  This filter supports unicode supplementary characters and you can toggle whether 
-  bigrams are formed for each of Han/Hiragana/Katakana/Hangul independently. Deprecates
-  CJKTokenizer.  (Tom Burton-West, Robert Muir)
-
-* LUCENE-3634: IndexReader's static main method was moved to a new
-  tool, CompoundFileExtractor, in contrib/misc.  (Mike McCandless)
-
-* 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
-  joins in both parent to child and child to parent directions.
-  (Mike McCandless)
+ * LUCENE-2906: Added CJKBigramFilter that forms bigrams from StandardTokenizer or
+   ICUTokenizer CJK tokens, and CJKWidthFilter that normalizes halfwidth/fullwidth. 
+   This filter supports unicode supplementary characters and you can toggle whether 
+   bigrams are formed for each of Han/Hiragana/Katakana/Hangul independently. Deprecates
+   CJKTokenizer.  (Tom Burton-West, Robert Muir)
+
+ * LUCENE-3634: IndexReader's static main method was moved to a new
+   tool, CompoundFileExtractor, in contrib/misc.  (Mike McCandless)
+
+ * 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
+   joins in both parent to child and child to parent directions.
+   (Mike McCandless)
   
 API Changes
 
-* LUCENE-3596: DirectoryTaxonomyWriter.openIndexWriter() now takes an 
-  openIndexWriter parameter rather than just an open-mode. (Doron Cohen) 
+ * LUCENE-3596: DirectoryTaxonomyWriter.openIndexWriter() now takes an 
+   openIndexWriter parameter rather than just an open-mode. (Doron Cohen) 
   
-* LUCENE-3606: FieldNormModifier was deprecated, because IndexReader's
-  setNorm() was deprecated. Furthermore, this class is broken, as it does
-  not take position overlaps into account while recalculating norms.
-  (Uwe Schindler, Robert Muir)
-
-* 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)
+ * LUCENE-3606: FieldNormModifier was deprecated, because IndexReader's
+   setNorm() was deprecated. Furthermore, this class is broken, as it does
+   not take position overlaps into account while recalculating norms.
+   (Uwe Schindler, Robert Muir)
+
+ * 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