Author: yonik
Date: Wed Jan 23 20:14:33 2008
New Revision: 614789
URL: http://svn.apache.org/viewvc?rev=614789&view=rev
Log:
lucene 2.3 update
Added:
lucene/solr/trunk/lib/lucene-analyzers-2.3.0.jar (with props)
lucene/solr/trunk/lib/lucene-core-2.3.0.jar (with props)
lucene/solr/trunk/lib/lucene-highlighter-2.3.0.jar (with props)
lucene/solr/trunk/lib/lucene-queries-2.3.0.jar (with props)
lucene/solr/trunk/lib/lucene-snowball-2.3.0.jar (with props)
lucene/solr/trunk/lib/lucene-spellchecker-2.3.0.jar (with props)
Removed:
lucene/solr/trunk/lib/lucene-analyzers-2.2.0.jar
lucene/solr/trunk/lib/lucene-core-2.2.0.jar
lucene/solr/trunk/lib/lucene-highlighter-2.2.0.jar
lucene/solr/trunk/lib/lucene-queries-2.2.0.jar
lucene/solr/trunk/lib/lucene-snowball-2.2.0.jar
lucene/solr/trunk/lib/lucene-spellchecker-2.2.0.jar
Modified:
lucene/solr/trunk/CHANGES.txt
lucene/solr/trunk/src/java/org/apache/solr/analysis/StopFilterFactory.java
Modified: lucene/solr/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/CHANGES.txt?rev=614789&r1=614788&r2=614789&view=diff
==============================================================================
--- lucene/solr/trunk/CHANGES.txt (original)
+++ lucene/solr/trunk/CHANGES.txt Wed Jan 23 20:14:33 2008
@@ -286,6 +286,8 @@
introduces new escaping and whitespace handling options to
increase compatibility with different formats. (yonik)
+ 8. Upgraded to Lucene 2.3.0; Jan 23, 2008.
+
Build
1. SOLR-411. Changed the names of the Solr JARs to use the defacto standard
JAR names based on
project-name-version.jar. This yields, for example:
Added: lucene/solr/trunk/lib/lucene-analyzers-2.3.0.jar
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/lib/lucene-analyzers-2.3.0.jar?rev=614789&view=auto
==============================================================================
Binary file - no diff available.
Propchange: lucene/solr/trunk/lib/lucene-analyzers-2.3.0.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: lucene/solr/trunk/lib/lucene-core-2.3.0.jar
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/lib/lucene-core-2.3.0.jar?rev=614789&view=auto
==============================================================================
Binary file - no diff available.
Propchange: lucene/solr/trunk/lib/lucene-core-2.3.0.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: lucene/solr/trunk/lib/lucene-highlighter-2.3.0.jar
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/lib/lucene-highlighter-2.3.0.jar?rev=614789&view=auto
==============================================================================
Binary file - no diff available.
Propchange: lucene/solr/trunk/lib/lucene-highlighter-2.3.0.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: lucene/solr/trunk/lib/lucene-queries-2.3.0.jar
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/lib/lucene-queries-2.3.0.jar?rev=614789&view=auto
==============================================================================
Binary file - no diff available.
Propchange: lucene/solr/trunk/lib/lucene-queries-2.3.0.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: lucene/solr/trunk/lib/lucene-snowball-2.3.0.jar
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/lib/lucene-snowball-2.3.0.jar?rev=614789&view=auto
==============================================================================
Binary file - no diff available.
Propchange: lucene/solr/trunk/lib/lucene-snowball-2.3.0.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: lucene/solr/trunk/lib/lucene-spellchecker-2.3.0.jar
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/lib/lucene-spellchecker-2.3.0.jar?rev=614789&view=auto
==============================================================================
Binary file - no diff available.
Propchange: lucene/solr/trunk/lib/lucene-spellchecker-2.3.0.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Modified:
lucene/solr/trunk/src/java/org/apache/solr/analysis/StopFilterFactory.java
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/analysis/StopFilterFactory.java?rev=614789&r1=614788&r2=614789&view=diff
==============================================================================
--- lucene/solr/trunk/src/java/org/apache/solr/analysis/StopFilterFactory.java
(original)
+++ lucene/solr/trunk/src/java/org/apache/solr/analysis/StopFilterFactory.java
Wed Jan 23 20:14:33 2008
@@ -43,10 +43,12 @@
} catch (IOException e) {
throw new RuntimeException(e);
}
+ } else {
+ stopWords = StopFilter.makeStopSet(StopAnalyzer.ENGLISH_STOP_WORDS,
ignoreCase);
}
}
- private Set stopWords =
StopFilter.makeStopSet(StopAnalyzer.ENGLISH_STOP_WORDS);
+ private Set stopWords;
private boolean ignoreCase;
public StopFilter create(TokenStream input) {