You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pylucene-commits@lucene.apache.org by va...@apache.org on 2013/08/17 16:26:55 UTC

svn commit: r1514997 - in /lucene/pylucene/branches/pylucene_4_4: CHANGES Makefile test/MultiSpansWrapper.py

Author: vajda
Date: Sat Aug 17 14:26:54 2013
New Revision: 1514997

URL: http://svn.apache.org/r1514997
Log:
preparing 4.4.0 release

Modified:
    lucene/pylucene/branches/pylucene_4_4/CHANGES
    lucene/pylucene/branches/pylucene_4_4/Makefile
    lucene/pylucene/branches/pylucene_4_4/test/MultiSpansWrapper.py

Modified: lucene/pylucene/branches/pylucene_4_4/CHANGES
URL: http://svn.apache.org/viewvc/lucene/pylucene/branches/pylucene_4_4/CHANGES?rev=1514997&r1=1514996&r2=1514997&view=diff
==============================================================================
--- lucene/pylucene/branches/pylucene_4_4/CHANGES (original)
+++ lucene/pylucene/branches/pylucene_4_4/CHANGES Sat Aug 17 14:26:54 2013
@@ -5,7 +5,6 @@ Version 4.3.0 -> 4.4.0
  - added of polish analyzer and stemmer
  - added inclusion of misc.jar because of cross-dependencies
  - PyLucene built with JCC 2.17
- - 
 
 Version 3.6.2 -> 4.3.0
 ----------------------

Modified: lucene/pylucene/branches/pylucene_4_4/Makefile
URL: http://svn.apache.org/viewvc/lucene/pylucene/branches/pylucene_4_4/Makefile?rev=1514997&r1=1514996&r2=1514997&view=diff
==============================================================================
--- lucene/pylucene/branches/pylucene_4_4/Makefile (original)
+++ lucene/pylucene/branches/pylucene_4_4/Makefile Sat Aug 17 14:26:54 2013
@@ -15,10 +15,10 @@
 # site-packages directory.
 #
 
-VERSION=4.x
+VERSION=4.4.0-1
 LUCENE_SVN_VER=HEAD
-LUCENE_VER=4.x
-LUCENE_SVN=http://svn.apache.org/repos/asf/lucene/dev/branches/branch_4x
+LUCENE_VER=4.4.0
+LUCENE_SVN=http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_4_4_0
 PYLUCENE:=$(shell pwd)
 LUCENE_SRC=lucene-java-$(LUCENE_VER)
 LUCENE=$(LUCENE_SRC)/lucene

Modified: lucene/pylucene/branches/pylucene_4_4/test/MultiSpansWrapper.py
URL: http://svn.apache.org/viewvc/lucene/pylucene/branches/pylucene_4_4/test/MultiSpansWrapper.py?rev=1514997&r1=1514996&r2=1514997&view=diff
==============================================================================
--- lucene/pylucene/branches/pylucene_4_4/test/MultiSpansWrapper.py (original)
+++ lucene/pylucene/branches/pylucene_4_4/test/MultiSpansWrapper.py Sat Aug 17 14:26:54 2013
@@ -40,7 +40,8 @@ class MultiSpansWrapper(PythonSpans):
       terms = TreeSet()
       query.extractTerms(terms)
       for term in terms:
-          termContexts.put(term, TermContext.build(topLevelReaderContext, term))
+          termContexts.put(term, TermContext.build(topLevelReaderContext, term,
+                                                   True))
 
       leaves = topLevelReaderContext.leaves()
       if leaves.size() == 1: