Re: [Lucene.Net] [jira] [Created] (LUCENENET-469) Convert Java Iterator classes to implement IEnumerable

2012-06-14 Thread Christopher Currens
wrote: >> >> Hi Andy, >>> >>> I have used similar extension methods for a long time. What I like >>> especially in extension methods is that they don't require changes in >>> Lucene.Net kernel and make further ports of Lucene.java independent from

Re: [Lucene.Net] [jira] [Created] (LUCENENET-469) Convert Java Iterator classes to implement IEnumerable

2012-06-13 Thread Simon Svensson
-Original Message- From: Andy Pook [mailto:andy.p...@gmail.com] Sent: Friday, June 08, 2012 10:26 PM To: lucene-net-dev@lucene.apache.org Subject: Re: [Lucene.Net] [jira] [Created] (LUCENENET-469) Convert Java Iterator classes to implement IEnumerable If we don't want to add IEnumerable (

Re: [Lucene.Net] [jira] [Created] (LUCENENET-469) Convert Java Iterator classes to implement IEnumerable

2012-06-08 Thread Christopher Currens
t extensions in contrib. Even a +1 for a > "Lucene.Net.Extensions" for the core. > > DIGY > > -Original Message- > From: Andy Pook [mailto:andy.p...@gmail.com] > Sent: Friday, June 08, 2012 10:26 PM > To: lucene-net-dev@lucene.apache.org > Subject: Re: [Lucene

RE: [Lucene.Net] [jira] [Created] (LUCENENET-469) Convert Java Iterator classes to implement IEnumerable

2012-06-08 Thread Digy
for a "Lucene.Net.Extensions" for the core. DIGY -Original Message- From: Andy Pook [mailto:andy.p...@gmail.com] Sent: Friday, June 08, 2012 10:26 PM To: lucene-net-dev@lucene.apache.org Subject: Re: [Lucene.Net] [jira] [Created] (LUCENENET-469) Convert Java Iterator class

Re: [Lucene.Net] [jira] [Created] (LUCENENET-469) Convert Java Iterator classes to implement IEnumerable

2012-06-08 Thread Simon Svensson
Hi, We could add IEnumerable to TermEnum without affecting the current api. It would allow things like foreach(var t in reader.Terms()). Dispose _will_ be called by a foreach statement if the IEnumerator implements IDisposable (not the IEnumerable). However, the linq extension methods are at

Re: [Lucene.Net] [jira] [Created] (LUCENENET-469) Convert Java Iterator classes to implement IEnumerable

2012-06-08 Thread Andy Pook
If we don't want to add IEnumerable (though it seems that IEnumerable could be added in parallel with the existing pattern) could we add a bunch of extension methods? Something like the following... {noformat} public static class LuceneExtensions { public static IEnumerable GetEnumerable(this Term

[Lucene.Net] [jira] [Created] (LUCENENET-474) Missing License Headers in trunk after 3.0.3 merge

2012-03-02 Thread Stefan Bodewig (Created) (JIRA)
Missing License Headers in trunk after 3.0.3 merge -- Key: LUCENENET-474 URL: https://issues.apache.org/jira/browse/LUCENENET-474 Project: Lucene.Net Issue Type: Bug Reporter: Stefa

[Lucene.Net] [jira] [Updated] (LUCENENET-474) Missing License Headers in trunk after 3.0.3 merge

2012-03-02 Thread Stefan Bodewig (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Bodewig updated LUCENENET-474: - Attachment: LUCENENET-474.patch Patch that adds the missing license headers

[Lucene.Net] [jira] [Resolved] (LUCENENET-473) Fix linefeeds in more than 600 files

2012-03-01 Thread Stefan Bodewig (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-473?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Bodewig resolved LUCENENET-473. -- Resolution: Fixed fixed with svn revision 1296052 > Fix linefeeds i

[Lucene.Net] [jira] [Created] (LUCENENET-473) Fix linefeeds in more than 600 files

2012-03-01 Thread Stefan Bodewig (Created) (JIRA)
Fix linefeeds in more than 600 files Key: LUCENENET-473 URL: https://issues.apache.org/jira/browse/LUCENENET-473 Project: Lucene.Net Issue Type: Bug Affects Versions: Lucene.Net 3.0.3 Repo

[Lucene.Net] [jira] [Commented] (LUCENENET-468) Implement the Dispose pattern properly in classes with Close

2012-02-19 Thread Christopher Currens (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13211301#comment-13211301 ] Christopher Currens commented on LUCENENET-468: --- Pretty much all classes

[Lucene.Net] [jira] [Commented] (LUCENENET-465) Error indexing a document end Filed.Store.COMPRESS

2012-01-28 Thread Simon Svensson (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-465?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13195597#comment-13195597 ] Simon Svensson commented on LUCENENET-465: -- Can you reproduce this with the la

[Lucene.Net] [jira] [Created] (LUCENENET-472) Operator == on Parameter does not check for null arguments

2012-01-27 Thread Pieter van Ginkel (Created) (JIRA)
Operator == on Parameter does not check for null arguments -- Key: LUCENENET-472 URL: https://issues.apache.org/jira/browse/LUCENENET-472 Project: Lucene.Net Issue Type: Bug C

[Lucene.Net] [jira] [Commented] (LUCENENET-465) Error indexing a document end Filed.Store.COMPRESS

2012-01-26 Thread Commented
[ https://issues.apache.org/jira/browse/LUCENENET-465?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13194172#comment-13194172 ] João Rosa commented on LUCENENET-465: - Yes, I've this configuration, and the dll sh

[Lucene.Net] [jira] [Commented] (LUCENENET-466) optimisation for the GermanStemmer.vb‏

2012-01-25 Thread Commented
[ https://issues.apache.org/jira/browse/LUCENENET-466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13193641#comment-13193641 ] Björn commented on LUCENENET-466: - Please take a look at the whole conversation: http:

[Lucene.Net] [jira] [Commented] (LUCENENET-465) Error indexing a document end Filed.Store.COMPRESS

2012-01-25 Thread Simon Svensson (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-465?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13193375#comment-13193375 ] Simon Svensson commented on LUCENENET-465: -- I'm unable to reproduce this. João

[Lucene.Net] [jira] [Commented] (LUCENENET-465) Error indexing a document end Filed.Store.COMPRESS

2012-01-24 Thread Commented
[ https://issues.apache.org/jira/browse/LUCENENET-465?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13192037#comment-13192037 ] João Rosa commented on LUCENENET-465: - Yes I have. The dll's are in folder packages

[Lucene.Net] [jira] [Resolved] (LUCENENET-471) Remove Package.html and Overview.html artifacts

2012-01-23 Thread Prescott Nasser (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-471?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser resolved LUCENENET-471. --- Resolution: Fixed > Remove Package.html and Overview.html artifacts >

[Lucene.Net] [jira] [Closed] (LUCENENET-471) Remove Package.html and Overview.html artifacts

2012-01-23 Thread Prescott Nasser (Closed) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-471?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser closed LUCENENET-471. - Removed from core > Remove Package.html and Overview.html artifacts > ---

[Lucene.Net] [jira] [Commented] (LUCENENET-465) Error indexing a document end Filed.Store.COMPRESS

2012-01-23 Thread Christopher Currens (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-465?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13191975#comment-13191975 ] Christopher Currens commented on LUCENENET-465: --- It looks by the issue de

[Lucene.Net] [jira] [Created] (LUCENENET-471) Remove Package.html and Overview.html artifacts

2012-01-23 Thread Prescott Nasser (Created) (JIRA)
Remove Package.html and Overview.html artifacts --- Key: LUCENENET-471 URL: https://issues.apache.org/jira/browse/LUCENENET-471 Project: Lucene.Net Issue Type: Task Affects Versions: Lucene.Net

[Lucene.Net] [jira] [Created] (LUCENENET-470) Change Getxxx() and Setxxx() methods to .NET Properties

2012-01-23 Thread Christopher Currens (Created) (JIRA)
Change Getxxx() and Setxxx() methods to .NET Properties --- Key: LUCENENET-470 URL: https://issues.apache.org/jira/browse/LUCENENET-470 Project: Lucene.Net Issue Type: Sub-task Co

[Lucene.Net] [jira] [Updated] (LUCENENET-468) Implement the Dispose pattern properly in classes with Close

2012-01-23 Thread Christopher Currens (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-468?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher Currens updated LUCENENET-468: -- Description: Implement the dispose pattern as [suggested here|http://msdn.m

[Lucene.Net] [jira] [Created] (LUCENENET-469) Convert Java Iterator classes to implement IEnumerable

2012-01-23 Thread Christopher Currens (Created) (JIRA)
Convert Java Iterator classes to implement IEnumerable - Key: LUCENENET-469 URL: https://issues.apache.org/jira/browse/LUCENENET-469 Project: Lucene.Net Issue Type: Sub-task C

[Lucene.Net] [jira] [Created] (LUCENENET-468) Implement the Dispose pattern properly in classes with Close

2012-01-23 Thread Christopher Currens (Created) (JIRA)
Implement the Dispose pattern properly in classes with Close Key: LUCENENET-468 URL: https://issues.apache.org/jira/browse/LUCENENET-468 Project: Lucene.Net Issue Type: Sub-task

[Lucene.Net] [jira] [Created] (LUCENENET-467) .NETify the public API where appropriate

2012-01-23 Thread Christopher Currens (Created) (JIRA)
.NETify the public API where appropriate Key: LUCENENET-467 URL: https://issues.apache.org/jira/browse/LUCENENET-467 Project: Lucene.Net Issue Type: Improvement Components: Lucene.Net Contri

[Lucene.Net] [jira] [Updated] (LUCENENET-445) Lucene.Net.Index.TestIndexWriter.TestFutureCommit() Fails

2012-01-23 Thread Christopher Currens (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher Currens updated LUCENENET-445: -- This doesn't fail in Debug or Release in the 3.0.3 branch. I'm not even sure i

[Lucene.Net] [jira] [Updated] (LUCENENET-179) SnowballFilter speed improvment

2012-01-23 Thread Christopher Currens (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-179?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher Currens updated LUCENENET-179: -- Fix Version/s: Lucene.Net 3.0.3 I haven't looked at the code, but I'm adding

[Lucene.Net] [jira] [Updated] (LUCENENET-423) QueryParser differences between Java and .NET when parsing range queries involving dates

2012-01-23 Thread Christopher Currens (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-423?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher Currens updated LUCENENET-423: -- Fix Version/s: Lucene.Net 3.0.3 Summary: QueryParser differences be

[Lucene.Net] [jira] [Updated] (LUCENENET-435) Fix the test suite for Lucene.Net Core

2012-01-23 Thread Christopher Currens (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-435?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher Currens updated LUCENENET-435: -- Description: If wish to work on one of these, create a new sub-task from t

[Lucene.Net] [jira] [Updated] (LUCENENET-436) Refactor Deprecated Code inside of tests

2012-01-23 Thread Christopher Currens (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-436?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher Currens updated LUCENENET-436: -- Fix Version/s: Lucene.Net 3.0.3 This is a nice to have for the 3.x release.

[Lucene.Net] [jira] [Updated] (LUCENENET-456) Create a Build Target that outputs compiled artifacts in apache release format

2012-01-23 Thread Christopher Currens (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-456?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher Currens updated LUCENENET-456: -- Component/s: Lucene.Net Core Fix Version/s: Lucene.Net 3.0.3 I would l

[Lucene.Net] [jira] [Updated] (LUCENENET-463) Would like to be able to use a SimpleSpanFragmenter for extrcting whole sentances

2012-01-23 Thread Christopher Currens (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-463?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher Currens updated LUCENENET-463: -- Fix Version/s: Lucene.Net 3.0.3 > Would like to be able to use a SimpleS

[Lucene.Net] [jira] [Commented] (LUCENENET-463) Would like to be able to use a SimpleSpanFragmenter for extrcting whole sentances

2012-01-23 Thread Christopher Currens (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-463?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13191897#comment-13191897 ] Christopher Currens commented on LUCENENET-463: --- This is, at least, on my

[Lucene.Net] [jira] [Commented] (LUCENENET-372) NLS pack for Lucene.NET: BR, CJK, CN, CZ, DE, FR, NL, RU analyzers

2012-01-23 Thread Christopher Currens (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-372?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13191896#comment-13191896 ] Christopher Currens commented on LUCENENET-372: --- All of this code has bee

[Lucene.Net] [jira] [Issue Comment Edited] (LUCENENET-464) The Lucene.Net.FastVectorHighligher.dll of the latest release 2.9.4 breaks any ASP.NET application

2012-01-23 Thread Christopher Currens (Issue Comment Edited) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13191891#comment-13191891 ] Christopher Currens edited comment on LUCENENET-464 at 1/24/12 5:22 AM: -

[Lucene.Net] [jira] [Commented] (LUCENENET-464) The Lucene.Net.FastVectorHighligher.dll of the latest release 2.9.4 breaks any ASP.NET application

2012-01-23 Thread Christopher Currens (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13191891#comment-13191891 ] Christopher Currens commented on LUCENENET-464: --- I'd like to get a releas

[Lucene.Net] [jira] [Updated] (LUCENENET-439) Correctly Rethrow exceptions in C#

2012-01-23 Thread Christopher Currens (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-439?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher Currens updated LUCENENET-439: -- Fix Version/s: Lucene.Net 3.0.3 > Correctly Rethrow exceptions in C# > -

[Lucene.Net] [jira] [Updated] (LUCENENET-446) Make Lucene.Net CLS Compliant

2012-01-23 Thread Christopher Currens (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-446?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher Currens updated LUCENENET-446: -- Fix Version/s: Lucene.Net 3.0.3 > Make Lucene.Net CLS Compliant > --

Re: [Lucene.Net] [jira] [Commented] (LUCENENET-446) Make Lucene.Net CLS Compliant

2012-01-21 Thread Christopher Currens
_ > From: Christopher Currens (Commented) (JIRA) > Sent: 1/21/2012 12:33 AM > To: lucene-net-dev@lucene.apache.org > Subject: [Lucene.Net] [jira] [Commented] (LUCENENET-446) Make Lucene.Net > CLS Compliant > > >[ > https://issues.apache.org/jira/b

RE: [Lucene.Net] [jira] [Commented] (LUCENENET-446) Make Lucene.Net CLS Compliant

2012-01-21 Thread Prescott Nasser
t: 1/21/2012 12:33 AM To: lucene-net-dev@lucene.apache.org Subject: [Lucene.Net] [jira] [Commented] (LUCENENET-446) Make Lucene.Net CLS Compliant [ https://issues.apache.org/jira/browse/LUCENENET-446?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedComment

[Lucene.Net] [jira] [Commented] (LUCENENET-446) Make Lucene.Net CLS Compliant

2012-01-21 Thread Christopher Currens (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-446?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13190349#comment-13190349 ] Christopher Currens commented on LUCENENET-446: --- I've decided to start wo

[Lucene.Net] [jira] [Commented] (LUCENENET-54) ArgumentOurOfRangeException caused by SF.Snowball.Ext.DanishStemmer

2012-01-21 Thread Christopher Currens (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-54?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13190345#comment-13190345 ] Christopher Currens commented on LUCENENET-54: -- This affected DanishStemmer

[Lucene.Net] [jira] [Created] (LUCENENET-465) Error indexing a document end Filed.Store.COMPRESS

2012-01-13 Thread Created
Error indexing a document end Filed.Store.COMPRESS -- Key: LUCENENET-465 URL: https://issues.apache.org/jira/browse/LUCENENET-465 Project: Lucene.Net Issue Type: Bug Components: .NET

[Lucene.Net] [jira] [Resolved] (LUCENENET-460) Missing License Headers in 2.9.4g branch

2012-01-13 Thread Prescott Nasser (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-460?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser resolved LUCENENET-460. --- Resolution: Fixed Assignee: Prescott Nasser Applied Patch >

[Lucene.Net] [jira] [Closed] (LUCENENET-460) Missing License Headers in 2.9.4g branch

2012-01-13 Thread Prescott Nasser (Closed) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-460?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser closed LUCENENET-460. - Applied patch > Missing License Headers in 2.9.4g branch > --

[Lucene.Net] [jira] [Commented] (LUCENENET-460) Missing License Headers in 2.9.4g branch

2012-01-13 Thread Prescott Nasser (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-460?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13185490#comment-13185490 ] Prescott Nasser commented on LUCENENET-460: --- Stefan before I cut another rele

[Lucene.Net] [jira] [Commented] (LUCENENET-464) The Lucene.Net.FastVectorHighligher.dll of the latest release 2.9.4 breaks any ASP.NET application

2012-01-13 Thread Prescott Nasser (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13185489#comment-13185489 ] Prescott Nasser commented on LUCENENET-464: --- How does issuing a point release

RE: [Lucene.Net] [jira] [Commented] (LUCENENET-464) The Lucene.Net.FastVectorHighligher.dll of the latest release 2.9.4 breaks any ASP.NET application

2012-01-12 Thread Prescott Nasser
You're right - I vote remove it Sent from my Windows Phone From: Christopher Currens (Commented) (JIRA) Sent: 1/12/2012 9:56 AM To: lucene-net-dev@lucene.apache.org Subject: [Lucene.Net] [jira] [Commented] (LUCENENET-464) The Lucene.Net.FastVectorHighlighe

[Lucene.Net] [jira] [Commented] (LUCENENET-464) The Lucene.Net.FastVectorHighligher.dll of the latest release 2.9.4 breaks any ASP.NET application

2012-01-12 Thread Christopher Currens (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13185109#comment-13185109 ] Christopher Currens commented on LUCENENET-464: --- It looks like this is an

[Lucene.Net] [jira] [Created] (LUCENENET-464) The Lucene.Net.FastVectorHighligher.dll of the latest release 2.9.4 breaks any ASP.NET application

2012-01-12 Thread Created
The Lucene.Net.FastVectorHighligher.dll of the latest release 2.9.4 breaks any ASP.NET application -- Key: LUCENENET-464 URL: https://issues.apache.org/jira/browse/LUC

RE: [Lucene.Net] [jira] [Updated] (LUCENENET-460) Missing License Headers in 2.9.4g branch

2012-01-08 Thread Prescott Nasser
Sent: 1/2/2012 10:45 PM To: lucene-net-dev@lucene.apache.org Subject: [Lucene.Net] [jira] [Updated] (LUCENENET-460) Missing License Headers in 2.9.4g branch [ https://issues.apache.org/jira/browse/LUCENENET-460?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Bo

RE: [Lucene.Net] [jira] [Updated] (LUCENENET-460) Missing License Headers in 2.9.4g branch

2012-01-08 Thread Prescott Nasser
This seems to have broken the project files. I think we need to be selective as to which files get the header Sent from my Windows Phone From: Stefan Bodewig (Updated) (JIRA) Sent: 1/2/2012 10:45 PM To: lucene-net-dev@lucene.apache.org Subject: [Lucene.Net] [jira

[Lucene.Net] [jira] [Commented] (LUCENENET-463) Would like to be able to use a SimpleSpanFragmenter for extrcting whole sentances

2012-01-05 Thread Digy (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-463?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13180965#comment-13180965 ] Digy commented on LUCENENET-463: My guess: Either it is not widely used as you think, o

[Lucene.Net] [jira] [Created] (LUCENENET-463) Would like to be able to use a SimpleSpanFragmenter for extrcting whole sentances

2012-01-04 Thread Steven (Created) (JIRA)
Would like to be able to use a SimpleSpanFragmenter for extrcting whole sentances -- Key: LUCENENET-463 URL: https://issues.apache.org/jira/browse/LUCENENET-463 Project:

[Lucene.Net] [jira] [Created] (LUCENENET-462) Spatial Search skipping records with small radius e.g. 1 mile

2012-01-04 Thread Mark Rodseth (Created) (JIRA)
Spatial Search skipping records with small radius e.g. 1 mile - Key: LUCENENET-462 URL: https://issues.apache.org/jira/browse/LUCENENET-462 Project: Lucene.Net Issue Type: Bug

[Lucene.Net] [jira] [Updated] (LUCENENET-460) Missing License Headers in 2.9.4g branch

2012-01-02 Thread Stefan Bodewig (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-460?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stefan Bodewig updated LUCENENET-460: - Attachment: 2.9.4g.headers.patch > Missing License Headers in 2.9.4g branch >

[Lucene.Net] [jira] [Created] (LUCENENET-460) Missing License Headers in 2.9.4g branch

2012-01-02 Thread Stefan Bodewig (Created) (JIRA)
Missing License Headers in 2.9.4g branch Key: LUCENENET-460 URL: https://issues.apache.org/jira/browse/LUCENENET-460 Project: Lucene.Net Issue Type: Bug Components: ASF Process R

[Lucene.Net] [jira] [Resolved] (LUCENENET-458) NOTICE file contains too much

2011-12-30 Thread Prescott Nasser (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-458?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser resolved LUCENENET-458. --- Resolution: Fixed Fix Version/s: (was: Lucene.Net 3.0.3) Assign

[Lucene.Net] [jira] [Closed] (LUCENENET-458) NOTICE file contains too much

2011-12-30 Thread Prescott Nasser (Closed) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-458?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser closed LUCENENET-458. - > NOTICE file contains too much > - > > Ke

[Lucene.Net] [jira] [Updated] (LUCENENET-434) Remove AnonymousXXXX classes to increase readablity

2011-12-23 Thread Scott Lombard (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-434?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Scott Lombard updated LUCENENET-434: Priority: Minor (was: Major) Affects Version/s: Lucene.Net 3.x Fix

Re: [Lucene.Net] [jira] [Resolved] (LUCENENET-412) Replacing ArrayLists, Hashtables etc. with appropriate Generics.

2011-12-22 Thread Rory Plaire
What about https://issues.apache.org/jira/browse/LUCENENET-434? -r On Thu, Dec 22, 2011 at 2:47 PM, Digy (Resolved) (JIRA) wrote: > > 2.9.4g is ready to go > DIGY >

[Lucene.Net] [jira] [Resolved] (LUCENENET-412) Replacing ArrayLists, Hashtables etc. with appropriate Generics.

2011-12-22 Thread Digy (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Digy resolved LUCENENET-412. Resolution: Fixed 2.9.4g is ready to go DIGY > Replacing ArrayLists, Hashtables etc. wi

[Lucene.Net] [jira] [Commented] (LUCENENET-459) Italian stemmer (from SnowballAnalyzer) does not work

2011-12-22 Thread Digy (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-459?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13175117#comment-13175117 ] Digy commented on LUCENENET-459: Fixed in 2.9.4g branch. DIGY > Italia

[Lucene.Net] [jira] [Updated] (LUCENENET-459) Italian stemmer (from SnowballAnalyzer) does not work

2011-12-22 Thread Digy (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-459?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Digy updated LUCENENET-459: --- Affects Version/s: Lucene.Net 2.9.4g Fix Version/s: Lucene.Net 2.9.4g > Italian stemmer (from

[Lucene.Net] [jira] [Resolved] (LUCENENET-453) Many files need proper svn properties to set the linefeeds

2011-12-01 Thread Prescott Nasser (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser resolved LUCENENET-453. --- Resolution: Fixed Fix Version/s: Lucene.Net 2.9.4 Assignee: Prescot

[Lucene.Net] [jira] [Closed] (LUCENENET-453) Many files need proper svn properties to set the linefeeds

2011-12-01 Thread Prescott Nasser (Closed) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser closed LUCENENET-453. - > Many files need proper svn properties to set the linefeeds > ---

[Lucene.Net] [jira] [Created] (LUCENENET-458) NOTICE file contains too much

2011-11-25 Thread Stefan Bodewig (Created) (JIRA)
NOTICE file contains too much - Key: LUCENENET-458 URL: https://issues.apache.org/jira/browse/LUCENENET-458 Project: Lucene.Net Issue Type: Task Affects Versions: Lucene.Net 2.9.2, Lucene.Net 2.9.4

[Lucene.Net] [jira] [Resolved] (LUCENENET-424) IsolatedStorage Support for Windows Phone 7

2011-11-23 Thread Prescott Nasser (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-424?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser resolved LUCENENET-424. --- Resolution: Later Fix Version/s: (was: Lucene.Net 2.9.4g)

[Lucene.Net] [jira] [Created] (LUCENENET-457) Lucene locks directory with index after network related problems

2011-11-21 Thread Pavel Belousov (Created) (JIRA)
Lucene locks directory with index after network related problems Key: LUCENENET-457 URL: https://issues.apache.org/jira/browse/LUCENENET-457 Project: Lucene.Net Issue Type: Bug

[Lucene.Net] [jira] [Resolved] (LUCENENET-455) Build Targets

2011-11-19 Thread Prescott Nasser (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-455?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser resolved LUCENENET-455. --- Resolution: Fixed Fix Version/s: Lucene.Net 2.9.4 Assignee: Prescot

[Lucene.Net] [jira] [Commented] (LUCENENET-455) Build Targets

2011-11-19 Thread Prescott Nasser (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-455?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13153627#comment-13153627 ] Prescott Nasser commented on LUCENENET-455: --- Oh, I see, I have to run the bui

[Lucene.Net] [jira] [Created] (LUCENENET-456) Create a Build Target that outputs compiled artifacts in apache release format

2011-11-18 Thread Prescott Nasser (Created) (JIRA)
Create a Build Target that outputs compiled artifacts in apache release format -- Key: LUCENENET-456 URL: https://issues.apache.org/jira/browse/LUCENENET-456 Project: Lucene.N

[Lucene.Net] [jira] [Created] (LUCENENET-455) Build Targets

2011-11-18 Thread Prescott Nasser (Created) (JIRA)
Build Targets - Key: LUCENENET-455 URL: https://issues.apache.org/jira/browse/LUCENENET-455 Project: Lucene.Net Issue Type: Improvement Reporter: Prescott Nasser Priority: Trivial -Modify build directori

Re: [Lucene.Net] [jira] [Commented] (LUCENENET-453) Many files need proper svn properties to set the linefeeds

2011-11-13 Thread Michael Herndon
Just in case anyone else following this that are still fuzzy on the details due to the acronyms. CRLF is the windows version of a new line. "\r\n" carriage return,line feed. or in c# Environment.NewLine; eol = end of line. eof = end of file. FOSS projects that will possibly run on multiple pla

[Lucene.Net] [jira] [Commented] (LUCENENET-453) Many files need proper svn properties to set the linefeeds

2011-11-12 Thread Stefan Bodewig (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-453?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13149241#comment-13149241 ] Stefan Bodewig commented on LUCENENET-453: -- Basically I did something like f

[Lucene.Net] [jira] [Commented] (LUCENENET-453) Many files need proper svn properties to set the linefeeds

2011-11-12 Thread Prescott Nasser (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-453?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13149204#comment-13149204 ] Prescott Nasser commented on LUCENENET-453: --- Hey Stefan is test/contrib/Core/

[Lucene.Net] [jira] [Closed] (LUCENENET-433) AttributeSource can have an invalid computed state (LUCENE-3042)

2011-11-12 Thread Prescott Nasser (Closed) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-433?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser closed LUCENENET-433. - > AttributeSource can have an invalid computed state (LUCENE-3042) > -

[Lucene.Net] [jira] [Resolved] (LUCENENET-433) AttributeSource can have an invalid computed state (LUCENE-3042)

2011-11-12 Thread Prescott Nasser (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-433?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser resolved LUCENENET-433. --- Resolution: Fixed Fixed in trunk > AttributeSource can have an in

[Lucene.Net] [jira] [Commented] (LUCENENET-423) QueryParser differences between Java and .NET

2011-11-11 Thread Troy Howard (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-423?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13148661#comment-13148661 ] Troy Howard commented on LUCENENET-423: --- I don't think this is the same debate of

[Lucene.Net] [jira] [Commented] (LUCENENET-423) QueryParser differences between Java and .NET

2011-11-11 Thread Christopher Currens (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-423?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13148616#comment-13148616 ] Christopher Currens commented on LUCENENET-423: --- I still don't know 100%

[Lucene.Net] [jira] [Commented] (LUCENENET-423) QueryParser differences between Java and .NET

2011-11-11 Thread Prescott Nasser (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-423?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13148537#comment-13148537 ] Prescott Nasser commented on LUCENENET-423: --- Seems like we want to keep this

[Lucene.Net] [jira] [Commented] (LUCENENET-443) SpellChecker finaliser calls close regardless of if closed already

2011-11-11 Thread Stuart Robinson (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-443?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13148371#comment-13148371 ] Stuart Robinson commented on LUCENENET-443: --- Thanks Michael, perfect. Stu

[Lucene.Net] [jira] [Resolved] (LUCENENET-443) SpellChecker finaliser calls close regardless of if closed already

2011-11-11 Thread Digy (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-443?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Digy resolved LUCENENET-443. Resolution: Fixed > SpellChecker finaliser calls close regardless of if closed already > ---

[Lucene.Net] [jira] [Resolved] (LUCENENET-431) Spatial.Net Cartesian won't find docs in radius in certain cases

2011-11-10 Thread Prescott Nasser (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-431?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser resolved LUCENENET-431. --- Resolution: Fixed Commited to trunk > Spatial.Net Cartesian won't

[Lucene.Net] [jira] [Closed] (LUCENENET-431) Spatial.Net Cartesian won't find docs in radius in certain cases

2011-11-10 Thread Prescott Nasser (Closed) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-431?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser closed LUCENENET-431. - > Spatial.Net Cartesian won't find docs in radius in certain cases > -

[Lucene.Net] [jira] [Closed] (LUCENENET-431) Spatial.Net Cartesian won't find docs in radius in certain cases

2011-11-10 Thread Prescott Nasser (Closed) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-431?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser closed LUCENENET-431. - > Spatial.Net Cartesian won't find docs in radius in certain cases > -

[Lucene.Net] [jira] [Updated] (LUCENENET-431) Spatial.Net Cartesian won't find docs in radius in certain cases

2011-11-10 Thread Prescott Nasser (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-431?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser updated LUCENENET-431: -- Affects Version/s: Lucene.Net 2.9.4g Fix Version/s: Lucene.Net 2.9.4 Updatin

[Lucene.Net] [jira] [Reopened] (LUCENENET-431) Spatial.Net Cartesian won't find docs in radius in certain cases

2011-11-10 Thread Prescott Nasser (Reopened) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-431?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser reopened LUCENENET-431: --- > Spatial.Net Cartesian won't find docs in radius in certain cases > -

[Lucene.Net] [jira] [Updated] (LUCENENET-431) Spatial.Net Cartesian won't find docs in radius in certain cases

2011-11-10 Thread Prescott Nasser (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-431?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser updated LUCENENET-431: -- Attachment: Lucenenet-431-Spatial.Net Patch for the trunk > Spatial

[Lucene.Net] [jira] [Assigned] (LUCENENET-431) Spatial.Net Cartesian won't find docs in radius in certain cases

2011-11-10 Thread Prescott Nasser (Assigned) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-431?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser reassigned LUCENENET-431: - Assignee: Prescott Nasser (was: Digy) > Spatial.Net Cartesian won't find

[Lucene.Net] [jira] [Closed] (LUCENENET-427) Provide limit on phrase analysis in FastVectorHighlighter (LUCENE-3234)

2011-11-10 Thread Prescott Nasser (Closed) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser closed LUCENENET-427. - Assignee: Digy Committed to trunk and 2.9.4g by Digy back in June > P

[Lucene.Net] [jira] [Commented] (LUCENENET-448) GeoHashFilteredDocIdSet does not work at all

2011-11-07 Thread Jeff Johnson (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-448?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13145968#comment-13145968 ] Jeff Johnson commented on LUCENENET-448: Sorry it looks like my code got a litt

[Lucene.Net] [jira] [Commented] (LUCENENET-438) replace java doc notation with ms style xml comments notation.

2011-11-05 Thread Christopher Currens (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-438?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13144920#comment-13144920 ] Christopher Currens commented on LUCENENET-438: --- This is mostly done. Th

[Lucene.Net] [jira] [Assigned] (LUCENENET-438) replace java doc notation with ms style xml comments notation.

2011-11-05 Thread Christopher Currens (Assigned) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-438?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher Currens reassigned LUCENENET-438: - Assignee: (was: Christopher Currens) > replace java doc notati

[Lucene.Net] [jira] [Resolved] (LUCENENET-454) MSBuild may wipe entire root drive if bad parameters are passed to build.targets

2011-11-05 Thread Christopher Currens (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-454?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Christopher Currens resolved LUCENENET-454. --- Resolution: Fixed I added checks in the build.targets to make sure the Art

[Lucene.Net] [jira] [Commented] (LUCENENET-454) MSBuild may wipe entire root drive if bad parameters are passed to build.targets

2011-11-05 Thread Michael Herndon (Commented) (JIRA)
h mono as well. Sent from my Windows Phone From: Christopher Currens (Created) (JIRA) Sent: Saturday, November 05, 2011 10:01 PM To: lucene-net-dev@lucene.apache.org Subject: [Lucene.Net] [jira] [Created] (LUCENENET-454) MSBuild may wipe entire root drive if bad parameters are passed to build.targe

RE: [Lucene.Net] [jira] [Created] (LUCENENET-454) MSBuild may wipe entire root drive if bad parameters are passed to build.targets

2011-11-05 Thread Michael Herndon
he scripts need to work with mono as well. Sent from my Windows Phone From: Christopher Currens (Created) (JIRA) Sent: Saturday, November 05, 2011 10:01 PM To: lucene-net-dev@lucene.apache.org Subject: [Lucene.Net] [jira] [Created] (LUCENENET-454) MSBuild may wipe entire root drive if bad parameters

[Lucene.Net] [jira] [Commented] (LUCENENET-454) MSBuild may wipe entire root drive if bad parameters are passed to build.targets

2011-11-05 Thread Christopher Currens (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-454?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13144887#comment-13144887 ] Christopher Currens commented on LUCENENET-454: --- I should add that this b

[Lucene.Net] [jira] [Created] (LUCENENET-454) MSBuild may wipe entire root drive if bad parameters are passed to build.targets

2011-11-05 Thread Christopher Currens (Created) (JIRA)
MSBuild may wipe entire root drive if bad parameters are passed to build.targets Key: LUCENENET-454 URL: https://issues.apache.org/jira/browse/LUCENENET-454 Project: Luce

  1   2   3   4   5   >