Re: [Lucene.Net] [VOTE] Release Apache Lucene.Net 2.9.2-incubating-RC1

2011-02-23 Thread Stefan Bodewig
On 2011-02-23, Troy Howard wrote: > Whenever we get our CI server setup, we should probably have a build > task which checks for licensing in code files and inserts it if it's > not there. Buildbot can be set up to create RAT reports, even for projects that us

Re: [Lucene.Net] [VOTE] Release Apache Lucene.Net 2.9.2-incubating-RC1

2011-02-23 Thread Stefan Bodewig
On 2011-02-23, Michael Herndon wrote: > I'm curious about the practice of putting license information into all > files. The reasoning and etc. > Is due to legal reasons or is it due to good practices? would providing > short copyright info and relative path to the license suffice or is the full >

[Lucene.Net] [jira] Assigned: (LUCENENET-399) Port changes from Java Lucene 2.9.3 and 2.9.4 releases

2011-02-23 Thread Scott Lombard (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-399?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Scott Lombard reassigned LUCENENET-399: --- Assignee: Scott Lombard > Port changes from Java Lucene 2.9.3 and 2.9.4 releases >

[Lucene.Net] [jira] Commented: (LUCENENET-380) Evaluate Sharpen as a port tool

2011-02-23 Thread Alex Thompson (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-380?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12998626#comment-12998626 ] Alex Thompson commented on LUCENENET-380: - That's worth a shot I guess. Forum t

RE: [Lucene.Net] JIRA issues for Java Lucene changes

2011-02-23 Thread Digy
Instead of looking at issues, use TortoiseSVN's compare revision utility. Some issues seem to be complex but patches are really simple. See the fix for 2 of 103 files below DIGY Index: Constants.cs === --- Constants.cs (

RE: [Lucene.Net] JIRA issues for Java Lucene changes

2011-02-23 Thread Digy
We can take,for ex, a namespace like Lucene.Net.Util(+test cases) and create a single patch for all of the related issues. (This approach needs to work on svn history, not on issues) DIGY -Original Message- From: Lombard, Scott [mailto:slomb...@kingindustries.com] Sent: Thursday, Februa

RE: [Lucene.Net] JIRA issues for Java Lucene changes

2011-02-23 Thread Lombard, Scott
You're probably right DIGY. I will take a look at issues and create JIRA issues where the complexity deems it appropriate. I will comment or patch otherwise. Scott > -Original Message- > From: Digy [mailto:digyd...@gmail.com] > Sent: Wednesday, February 23, 2011 5:02 PM > To: lucene-n

RE: [Lucene.Net] JIRA issues for Java Lucene changes

2011-02-23 Thread Digy
In the time needed to create 10s of issues, half of the fixes could be done :) DIGY -Original Message- From: Lombard, Scott [mailto:slomb...@kingindustries.com] Sent: Wednesday, February 23, 2011 11:36 PM To: lucene-net-dev@lucene.apache.org Subject: [Lucene.Net] JIRA issues for Java Luce

RE: [Lucene.Net] JIRA issues for Java Lucene changes

2011-02-23 Thread Digy
2.3.1->2.3.2 or 2.9.1 -> 2.9.2 transitions were done with just a single patch, for ex. DIGY -Original Message- From: Lombard, Scott [mailto:slomb...@kingindustries.com] Sent: Wednesday, February 23, 2011 11:36 PM To: lucene-net-dev@lucene.apache.org Subject: [Lucene.Net] JIRA issues for J

[Lucene.Net] [jira] Commented: (LUCENENET-403) Improve site layout and design

2011-02-23 Thread Prescott Nasser (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-403?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12998563#comment-12998563 ] Prescott Nasser commented on LUCENENET-403: --- I'm going to try to get one more

[Lucene.Net] [jira] Updated: (LUCENENET-403) Improve site layout and design

2011-02-23 Thread Prescott Nasser (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-403?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Prescott Nasser updated LUCENENET-403: -- Attachment: layout1.zip Based mostly on bitbucket.org. Takes some elements from othe

[Lucene.Net] [jira] Commented: (LUCENENET-399) Port changes from Java Lucene 2.9.3 and 2.9.4 releases

2011-02-23 Thread Digy (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12998559#comment-12998559 ] Digy commented on LUCENENET-399: {quote} Scott, I would say the first task would be to

[Lucene.Net] JIRA issues for Java Lucene changes

2011-02-23 Thread Lombard, Scott
Troy, I will start adding separate JIRA issues tonight. In the past do all the Java Lucene issues translate into .Net issues? Scott On Wed, Feb 23, 2011at 2:20 PM ,Troy Howard [mailto:thowar...@gmail.com] wrote: > > Scott, > > I would say the first task would be to collect all the Java chang

Re: [Lucene.Net] Lucene.Net Tasks due by 2/28

2011-02-23 Thread Troy Howard
Scott, I would say the first task would be to collect all the Java changes up and create separate JIRA issues for each one. Thanks, Troy On Wed, Feb 23, 2011 at 9:16 AM, Lombard, Scott wrote: > I am on vacation next week.  So I won't be very helpful the next couple of > days.  I will be able

Re: [Lucene.Net] Lucene.Net Tasks due by 2/28

2011-02-23 Thread Troy Howard
Michael, Sounds good. Perhaps Prescott can get a few design ideas put together before the weekend, one can be selected, and over the weekend you can refine it to a more finished state? Regarding real-time chat, I've been using IRC via http://webchat.freenode.net/ in #lucene.net. Thanks, Troy O

Re: [Lucene.Net] Phrase search with Wildcard query

2011-02-23 Thread Christopher Currens
Check that you're using the same analyzer that you indexed with to search against that particular field. Also, wildcard queries don't really handle spaces. I suggest using the query parser if you want to have multiple terms to search the same field by. Considering your previous query, you'll need

RE: [Lucene.Net] Lucene.Net Tasks due by 2/28

2011-02-23 Thread Lombard, Scott
I am on vacation next week. So I won't be very helpful the next couple of days. I will be able take on some things for the 2.9.4 release. Are we going to break down the Java Lucene changes to individual items that need to be ported or is it going to be handled as one big task? Scott -O

Re: [Lucene.Net] how to make the search not case sensitive

2011-02-23 Thread Wen Gao
Thanks, I solved this problem. I found that if what i typed is lowercase, the result is not case senstive, e.g. if search for "database" it would return "DATABASE", "database". However, if what i typed is uppercase, the result is case sensitive, e.g. if search for "DATABASE", no results would retu

[Lucene.Net] Phrase search with Wildcard query

2011-02-23 Thread Wen Gao
Hi, I'm using Wildcard query to search phrases, but failed to get results. E.g. I search for "*data man*",however, no result returned although there is a record of "*data manage*" in my index. I change the "data man" as "*data*man*" using following code: " String s = "*" + s.Replace(" ", "*") + "*

Re: [Lucene.Net] how to make the search not case sensitive

2011-02-23 Thread Ayende Rahien
https://github.com/ravendb/ravendb/blob/master/Raven.Database/Indexing/LowerCaseAnalyzer.cs On Tue, Feb 22, 2011 at 11:13 PM, Wen Gao wrote: > Hi, > > I am using lucene's standard analyser to search, however, the search result > is case sensitive. e.g, when i search for "database", "DATABASE" co

Re: [Lucene.Net] Re: Signing Binary Releases

2011-02-23 Thread Stefan Bodewig
On 2011-02-23, Troy Howard wrote: > That makes sense. We've been serving up the distributions from > ~/lucene.net/site/download in our svn repo through the website. Ah, understood. This is not the way you should do it - in fact you should never have done. Releases are supposed to take advantage

[Lucene.Net] [jira] Commented: (LUCENENET-403) Improve site layout and design

2011-02-23 Thread Prescott Nasser (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-403?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12998248#comment-12998248 ] Prescott Nasser commented on LUCENENET-403: --- Some sites that we are consideri

RE: [Lucene.Net] Lucene.Net Tasks due by 2/28

2011-02-23 Thread Prescott Nasser
I'm out of town this weekend, but I'm hoping to get one or two designs (likely just screenshots) attached to the JIRA so people can give me some feedback. I'll make it quick turn around and won't leave it open for feedback long though. If anyone has ideas / thoughts, samples they like, comment

[Lucene.Net] Lucene.Net Tasks due by 2/28

2011-02-23 Thread Troy Howard
All, I've recently been updating JIRA a lot and that's causing a lot of noise on the dev list. Also, because of that noise, I fear that some of the more important details of those changes might be passing by unnoticed. Mostly, I'm trying to get the project cleaned up by the end of the month. The

Re: [Lucene.Net] Re: Signing Binary Releases

2011-02-23 Thread Troy Howard
That makes sense. We've been serving up the distributions from ~/lucene.net/site/download in our svn repo through the website. I guess with this release, once it passes the IPMC vote, we can create a lucene.net under http://www.apache.org/dist/incubator/ and serve from there? Should we also move ou

[Lucene.Net] [jira] Commented: (LUCENENET-380) Evaluate Sharpen as a port tool

2011-02-23 Thread Troy Howard (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-380?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12998220#comment-12998220 ] Troy Howard commented on LUCENENET-380: --- Regarding forking Sharpen, on second tho