From lucene-net-commits-return-2069-apmail-lucene-lucene-net-commits-archive=lucene.apache.org@lucene.apache.org Mon Aug 20 21:39:52 2012 Return-Path: X-Original-To: apmail-lucene-lucene-net-commits-archive@www.apache.org Delivered-To: apmail-lucene-lucene-net-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 27197643 for ; Mon, 20 Aug 2012 21:39:52 +0000 (UTC) Received: (qmail 91342 invoked by uid 500); 20 Aug 2012 21:39:52 -0000 Delivered-To: apmail-lucene-lucene-net-commits-archive@lucene.apache.org Received: (qmail 91312 invoked by uid 500); 20 Aug 2012 21:39:52 -0000 Mailing-List: contact lucene-net-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: lucene-net-dev@lucene.apache.org Delivered-To: mailing list lucene-net-commits@lucene.apache.org Received: (qmail 91305 invoked by uid 99); 20 Aug 2012 21:39:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2012 21:39:52 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2012 21:39:50 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B468F23888FE; Mon, 20 Aug 2012 21:39:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1375235 - in /incubator/lucene.net/trunk: src/contrib/Spatial/Prefix/ test/contrib/Spatial/ test/contrib/Spatial/Prefix/ test/contrib/Spatial/Vector/ Date: Mon, 20 Aug 2012 21:39:07 -0000 To: lucene-net-commits@lucene.apache.org From: synhershko@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120820213907.B468F23888FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: synhershko Date: Mon Aug 20 21:39:07 2012 New Revision: 1375235 URL: http://svn.apache.org/viewvc?rev=1375235&view=rev Log: Catching up on Spatial contrib (minor) Added: incubator/lucene.net/trunk/test/contrib/Spatial/Vector/TestTwoDoublesStrategy.cs - copied, changed from r1375234, incubator/lucene.net/trunk/test/contrib/Spatial/Vector/TwoDoublesStrategyTestCase.cs Removed: incubator/lucene.net/trunk/test/contrib/Spatial/Vector/TwoDoublesStrategyTestCase.cs Modified: incubator/lucene.net/trunk/src/contrib/Spatial/Prefix/PrefixTreeStrategy.cs incubator/lucene.net/trunk/test/contrib/Spatial/Contrib.Spatial.Test.csproj incubator/lucene.net/trunk/test/contrib/Spatial/Prefix/BaseRecursivePrefixTreeStrategyTestCase.cs Modified: incubator/lucene.net/trunk/src/contrib/Spatial/Prefix/PrefixTreeStrategy.cs URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/src/contrib/Spatial/Prefix/PrefixTreeStrategy.cs?rev=1375235&r1=1375234&r2=1375235&view=diff ============================================================================== --- incubator/lucene.net/trunk/src/contrib/Spatial/Prefix/PrefixTreeStrategy.cs (original) +++ incubator/lucene.net/trunk/src/contrib/Spatial/Prefix/PrefixTreeStrategy.cs Mon Aug 20 21:39:07 2012 @@ -90,7 +90,7 @@ namespace Lucene.Net.Spatial.Prefix if (index) { - // TYPE_UNSTORED is indexed and tokenized but not stored, and this is what this ctor returns + // TYPE_NOT_STORED is indexed and tokenized but not stored, and this is what this ctor returns var f = new Field(fname, new CellTokenStream(cells.GetEnumerator()), Field.TermVector.NO); f.OmitNorms = true; return f; @@ -100,7 +100,7 @@ namespace Lucene.Net.Spatial.Prefix } ///* Indexed, tokenized, not stored. */ - //public static final FieldType TYPE_UNSTORED = new FieldType(); + //public static final FieldType TYPE_NOT_STORED = new FieldType(); ///* Indexed, tokenized, stored. */ //public static final FieldType TYPE_STORED = new FieldType(); Modified: incubator/lucene.net/trunk/test/contrib/Spatial/Contrib.Spatial.Test.csproj URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/test/contrib/Spatial/Contrib.Spatial.Test.csproj?rev=1375235&r1=1375234&r2=1375235&view=diff ============================================================================== --- incubator/lucene.net/trunk/test/contrib/Spatial/Contrib.Spatial.Test.csproj (original) +++ incubator/lucene.net/trunk/test/contrib/Spatial/Contrib.Spatial.Test.csproj Mon Aug 20 21:39:07 2012 @@ -30,7 +30,8 @@ Lucene.Net.Contrib.Spatial.Test Lucene.Net.Contrib.Spatial.Test 512 - + + 3.5 publish\ @@ -130,7 +131,7 @@ - + Modified: incubator/lucene.net/trunk/test/contrib/Spatial/Prefix/BaseRecursivePrefixTreeStrategyTestCase.cs URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/test/contrib/Spatial/Prefix/BaseRecursivePrefixTreeStrategyTestCase.cs?rev=1375235&r1=1375234&r2=1375235&view=diff ============================================================================== --- incubator/lucene.net/trunk/test/contrib/Spatial/Prefix/BaseRecursivePrefixTreeStrategyTestCase.cs (original) +++ incubator/lucene.net/trunk/test/contrib/Spatial/Prefix/BaseRecursivePrefixTreeStrategyTestCase.cs Mon Aug 20 21:39:07 2012 @@ -25,7 +25,6 @@ using NUnit.Framework; using Spatial4n.Core.Io.Samples; using Spatial4n.Core.Query; using Spatial4n.Core.Shapes; -using Spatial4n.Core.Shapes.Impl; namespace Lucene.Net.Contrib.Spatial.Test.Prefix { Copied: incubator/lucene.net/trunk/test/contrib/Spatial/Vector/TestTwoDoublesStrategy.cs (from r1375234, incubator/lucene.net/trunk/test/contrib/Spatial/Vector/TwoDoublesStrategyTestCase.cs) URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/test/contrib/Spatial/Vector/TestTwoDoublesStrategy.cs?p2=incubator/lucene.net/trunk/test/contrib/Spatial/Vector/TestTwoDoublesStrategy.cs&p1=incubator/lucene.net/trunk/test/contrib/Spatial/Vector/TwoDoublesStrategyTestCase.cs&r1=1375234&r2=1375235&rev=1375235&view=diff ============================================================================== --- incubator/lucene.net/trunk/test/contrib/Spatial/Vector/TwoDoublesStrategyTestCase.cs (original) +++ incubator/lucene.net/trunk/test/contrib/Spatial/Vector/TestTwoDoublesStrategy.cs Mon Aug 20 21:39:07 2012 @@ -19,7 +19,7 @@ using Spatial4n.Core.Context; namespace Lucene.Net.Contrib.Spatial.Test.Vector { - public class TwoDoublesStrategyTestCase : BaseTwoDoublesStrategyTestCase + public class TestTwoDoublesStrategy : BaseTwoDoublesStrategyTestCase { protected override SpatialContext getSpatialContext() {