Mailing List Archive

cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java
otis 02/05/07 14:26:34

Modified: src/java/org/apache/lucene/search DateFilter.java
Log:
- Applied a patch supplied by David Smiley that ensures that searches that
use DateFilter don't throw an exception when no matches are found.

Revision Changes Path
1.4 +3 -0 jakarta-lucene/src/java/org/apache/lucene/search/DateFilter.java

Index: DateFilter.java
===================================================================
RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/search/DateFilter.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DateFilter.java 10 Apr 2002 02:57:08 -0000 1.3
+++ DateFilter.java 7 May 2002 21:26:34 -0000 1.4
@@ -130,6 +130,9 @@
BitSet bits = new BitSet(reader.maxDoc());
TermEnum enum = reader.terms(new Term(field, start));
TermDocs termDocs = reader.termDocs();
+ if (enum.term() == null)
+ return bits;
+
try {
Term stop = new Term(field, end);
while (enum.term().compareTo(stop) <= 0) {




--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
on 5/7/02 2:26 PM, "otis@apache.org" <otis@apache.org> wrote:

> + if (enum.term() == null)
> + return bits;

Can you please at least follow the Java coding conventions?

-jon


--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
Sure. Which one? Curlies or indentation or?
You can make the changes yourself, too, as you have commit priviledges.

Thanks,
Otis

--- Jon Scott Stevens <jon@latchkey.com> wrote:
> on 5/7/02 2:26 PM, "otis@apache.org" <otis@apache.org> wrote:
>
> > + if (enum.term() == null)
> > + return bits;
>
> Can you please at least follow the Java coding conventions?
>
> -jon
>
>
> --
> To unsubscribe, e-mail:
> <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
> For additional commands, e-mail:
> <mailto:lucene-dev-help@jakarta.apache.org>
>


__________________________________________________
Do You Yahoo!?
Yahoo! Health - your guide to health and wellness
http://health.yahoo.com

--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
on 5/7/02 3:56 PM, "Otis Gospodnetic" <otis_gospodnetic@yahoo.com> wrote:

> Sure. Which one? Curlies or indentation or?

http://java.sun.com/docs/codeconv/html/CodeConventions.doc6.html#449

> You can make the changes yourself, too, as you have commit priviledges.

I shouldn't have to clean up your mess. :-)

-jon


--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
If this is a big enough issue then I say we should install some manner
of automatic code formatter to be run on checkin. It can format the
code to whatever the community has agreed the convention is, then Jon
won't have to serve in this role manually. I'll be happy with whichever
one jon installs since I can always run my own locally.

-Andy

On Tue, 2002-05-07 at 19:14, Jon Scott Stevens wrote:
> on 5/7/02 3:56 PM, "Otis Gospodnetic" <otis_gospodnetic@yahoo.com> wrote:
>
> > Sure. Which one? Curlies or indentation or?
>
> http://java.sun.com/docs/codeconv/html/CodeConventions.doc6.html#449
>
> > You can make the changes yourself, too, as you have commit priviledges.
>
> I shouldn't have to clean up your mess. :-)
>
> -jon
>
>
> --
> To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
> For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
>
--
http://www.superlinksoftware.com - software solutions for business
http://jakarta.apache.org/poi - Excel/Word/OLE 2 Compound Document in
Java
http://krysalis.sourceforge.net/centipede - the best build/project
structure
a guy/gal could have! - Make Ant simple on complex Projects!
The avalanche has already started. It is too late for the pebbles to
vote.
-Ambassador Kosh


--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
I do think that the code should be cleaned up a bit as it is currently
pretty non-standard and not consistent. But it's not a big deal,
doesn't bother me all that much, so I'd say it's a low priority issue.

Not another long thread :)

Otis

--- "Andrew C. Oliver" <acoliver@apache.org> wrote:
> If this is a big enough issue then I say we should install some
> manner
> of automatic code formatter to be run on checkin. It can format the
> code to whatever the community has agreed the convention is, then
> Jon
> won't have to serve in this role manually. I'll be happy with
> whichever
> one jon installs since I can always run my own locally.
>
> -Andy
>
> On Tue, 2002-05-07 at 19:14, Jon Scott Stevens wrote:
> > on 5/7/02 3:56 PM, "Otis Gospodnetic" <otis_gospodnetic@yahoo.com>
> wrote:
> >
> > > Sure. Which one? Curlies or indentation or?
> >
> >
> http://java.sun.com/docs/codeconv/html/CodeConventions.doc6.html#449
> >
> > > You can make the changes yourself, too, as you have commit
> priviledges.
> >
> > I shouldn't have to clean up your mess. :-)
> >
> > -jon
> >
> >
> > --
> > To unsubscribe, e-mail:
> <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
> > For additional commands, e-mail:
> <mailto:lucene-dev-help@jakarta.apache.org>
> >
> --
> http://www.superlinksoftware.com - software solutions for business
> http://jakarta.apache.org/poi - Excel/Word/OLE 2 Compound Document in
> Java
> http://krysalis.sourceforge.net/centipede - the best build/project
> structure
> a guy/gal could have! - Make Ant simple on complex Projects!
> The avalanche has already started. It is too late for the pebbles to
> vote.
> -Ambassador Kosh
>
>
> --
> To unsubscribe, e-mail:
> <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
> For additional commands, e-mail:
> <mailto:lucene-dev-help@jakarta.apache.org>
>


__________________________________________________
Do You Yahoo!?
Yahoo! Health - your guide to health and wellness
http://health.yahoo.com

--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
Agreed. ;-)

On Tue, 2002-05-07 at 19:55, Otis Gospodnetic wrote:
> I do think that the code should be cleaned up a bit as it is currently
> pretty non-standard and not consistent. But it's not a big deal,
> doesn't bother me all that much, so I'd say it's a low priority issue.
>
> Not another long thread :)
>
> Otis
>
> --- "Andrew C. Oliver" <acoliver@apache.org> wrote:
> > If this is a big enough issue then I say we should install some
> > manner
> > of automatic code formatter to be run on checkin. It can format the
> > code to whatever the community has agreed the convention is, then
> > Jon
> > won't have to serve in this role manually. I'll be happy with
> > whichever
> > one jon installs since I can always run my own locally.
> >
> > -Andy
> >
> > On Tue, 2002-05-07 at 19:14, Jon Scott Stevens wrote:
> > > on 5/7/02 3:56 PM, "Otis Gospodnetic" <otis_gospodnetic@yahoo.com>
> > wrote:
> > >
> > > > Sure. Which one? Curlies or indentation or?
> > >
> > >
> > http://java.sun.com/docs/codeconv/html/CodeConventions.doc6.html#449
> > >
> > > > You can make the changes yourself, too, as you have commit
> > priviledges.
> > >
> > > I shouldn't have to clean up your mess. :-)
> > >
> > > -jon
> > >
> > >
> > > --
> > > To unsubscribe, e-mail:
> > <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
> > > For additional commands, e-mail:
> > <mailto:lucene-dev-help@jakarta.apache.org>
> > >
> > --
> > http://www.superlinksoftware.com - software solutions for business
> > http://jakarta.apache.org/poi - Excel/Word/OLE 2 Compound Document in
> > Java
> > http://krysalis.sourceforge.net/centipede - the best build/project
> > structure
> > a guy/gal could have! - Make Ant simple on complex Projects!
> > The avalanche has already started. It is too late for the pebbles to
> > vote.
> > -Ambassador Kosh
> >
> >
> > --
> > To unsubscribe, e-mail:
> > <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
> > For additional commands, e-mail:
> > <mailto:lucene-dev-help@jakarta.apache.org>
> >
>
>
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Health - your guide to health and wellness
> http://health.yahoo.com
>
> --
> To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
> For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
>
--
http://www.superlinksoftware.com - software solutions for business
http://jakarta.apache.org/poi - Excel/Word/OLE 2 Compound Document in
Java
http://krysalis.sourceforge.net/centipede - the best build/project
structure
a guy/gal could have! - Make Ant simple on complex Projects!
The avalanche has already started. It is too late for the pebbles to
vote.
-Ambassador Kosh


--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
on 5/7/02 4:44 PM, "Andrew C. Oliver" <acoliver@apache.org> wrote:

> If this is a big enough issue then I say we should install some manner
> of automatic code formatter to be run on checkin. It can format the
> code to whatever the community has agreed the convention is, then Jon
> won't have to serve in this role manually. I'll be happy with whichever
> one jon installs since I can always run my own locally.
>
> -Andy

Newbie statements like this comes up so many times over the years...think
for about 30 seconds about how CVS works and then you will realize that that
idea isn't possible.

Needless to say (and I run and duck for cover), if someone used Maven [1] to
build their project, then they could run checkstyle against it very easily
before doing a checkin.

As far as manually goes, I look for more than code formatting mistakes. The
whole point of sending cvs commit messages to the mailing list is for peer
review.

[1] http://jakarta.apache.org/turbine/maven/

-jon


--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
on 5/7/02 4:55 PM, "Otis Gospodnetic" <otis_gospodnetic@yahoo.com> wrote:

> I do think that the code should be cleaned up a bit as it is currently
> pretty non-standard and not consistent. But it's not a big deal,
> doesn't bother me all that much, so I'd say it's a low priority issue.

The idea behind having nicely formatted code is that if someone wants to
contribute to the project, having something that is easy to read and nice on
the eyes makes their cost of participation lower. It has nothing to do with
bothering you.

-jon


--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
I know what nicely formatted code is for. I happen to be quite
pedantic when it comes to coding style. This was a contributed patch
for code that is not mine. I am that person you mentioned.

Anyhow....Maven...I understand now :)

Otis


--- Jon Scott Stevens <jon@latchkey.com> wrote:
> on 5/7/02 4:55 PM, "Otis Gospodnetic" <otis_gospodnetic@yahoo.com>
> wrote:
>
> > I do think that the code should be cleaned up a bit as it is
> currently
> > pretty non-standard and not consistent. But it's not a big deal,
> > doesn't bother me all that much, so I'd say it's a low priority
> issue.
>
> The idea behind having nicely formatted code is that if someone wants
> to
> contribute to the project, having something that is easy to read and
> nice on
> the eyes makes their cost of participation lower. It has nothing to
> do with
> bothering you.
>
> -jon
>
>
> --
> To unsubscribe, e-mail:
> <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
> For additional commands, e-mail:
> <mailto:lucene-dev-help@jakarta.apache.org>
>


__________________________________________________
Do You Yahoo!?
Yahoo! Health - your guide to health and wellness
http://health.yahoo.com

--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
>
> Newbie statements like this comes up so many times over the years...think
> for about 30 seconds about how CVS works and then you will realize that that
> idea isn't possible.
>

here are more of my other newbie statements. You can install a script
in loginfo which will process those checkins and send emails. The same
script could check the file out, reformat it and check it in. But you
say "What of the continuous loop" well the second time it reformatted
it, it would find no additional changes so it would obviously not cause
a commit. Granted this isn't a very nice way to do it.

A second newbie statement or easier and quite possibly safer alternative
would be to have a script run nightly that checked the sources out and
formatted and checked them back in. The disadvantage would be the first
time it ran it would be a massive commit, but in your view this would
probably be a "needed to be done" anyhow. I may implement this for
POI. I currently have the docbuild running every 2 hours on one of my
servers as a background process in cron. Adding a code formatter to it
would be trivial.

Of course I'd never actually do this for Lucene because I don't care
enough to have the irrelevant philosophical and pedantic discussion with
you about what format is the CORRECT one and which settings MUST be
set.

> Needless to say (and I run and duck for cover), if someone used Maven [1] to
> build their project, then they could run checkstyle against it very easily
> before doing a checkin.
>

Why Centipede has this as well.


> As far as manually goes, I look for more than code formatting mistakes. The
> whole point of sending cvs commit messages to the mailing list is for peer
> review.
>
> [1] http://jakarta.apache.org/turbine/maven/
>

http://krysalis.sourceforge.net/centipede

Lets not spill this over into this list shall we not?

-Andy

> -jon
>
>
> --
> To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
> For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
>
--
http://www.superlinksoftware.com - software solutions for business
http://jakarta.apache.org/poi - Excel/Word/OLE 2 Compound Document in
Java
http://krysalis.sourceforge.net/centipede - the best build/project
structure
a guy/gal could have! - Make Ant simple on complex Projects!
The avalanche has already started. It is too late for the pebbles to
vote.
-Ambassador Kosh


--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
on 5/7/02 6:27 PM, "Andrew C. Oliver" <acoliver@apache.org> wrote:

> The same
> script could check the file out, reformat it and check it in.

But then the version of the file on the server would be different than the
version of the file on your local disk. How do you solve that problem?

-jon

--
You kids are flame-war amateurs :) -Pier


--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
On Tue, 2002-05-07 at 21:50, Jon Scott Stevens wrote:
> on 5/7/02 6:27 PM, "Andrew C. Oliver" <acoliver@apache.org> wrote:
>
> > The same
> > script could check the file out, reformat it and check it in.
>
> But then the version of the file on the server would be different than the
> version of the file on your local disk. How do you solve that problem?
>

I believe the mail log happens after the commit if I'm not mistaken. I
very well could be. I could reason my way all the way through this and
figure it out if it interested me enough. Unfortunately, it does not.
Anyhow I favor the cron solution anyhow. Thanks for making me think of
this, I'll implement it for POI shortly.

I won't volunteer to do it here because I'm a flame-war amateur and
don't care to argue how the code formatter must be configured.

-Andy

> -jon
>
> --
> You kids are flame-war amateurs :) -Pier
>
>
> --
> To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
> For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
>
--
http://www.superlinksoftware.com - software solutions for business
http://jakarta.apache.org/poi - Excel/Word/OLE 2 Compound Document in
Java
http://krysalis.sourceforge.net/centipede - the best build/project
structure
a guy/gal could have! - Make Ant simple on complex Projects!
The avalanche has already started. It is too late for the pebbles to
vote.
-Ambassador Kosh


--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
on 5/7/02 7:09 PM, "Andrew C. Oliver" <acoliver@apache.org> wrote:

> I believe the mail log happens after the commit if I'm not mistaken. I
> very well could be. I could reason my way all the way through this and
> figure it out if it interested me enough. Unfortunately, it does not.
> Anyhow I favor the cron solution anyhow. Thanks for making me think of
> this, I'll implement it for POI shortly.
>
> -Andy

Eh? Auto code formatting has nothing to do with the mail log.

Don't you think that if setting up auto code formatting was technically
possible that we would have thought of it already (after all these years of
working with CVS)?

-jon


--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
Jon Scott Stevens wrote:

>on 5/7/02 7:09 PM, "Andrew C. Oliver" <acoliver@apache.org> wrote:
>
>>I believe the mail log happens after the commit if I'm not mistaken. I
>>very well could be. I could reason my way all the way through this and
>>figure it out if it interested me enough. Unfortunately, it does not.
>>Anyhow I favor the cron solution anyhow. Thanks for making me think of
>>this, I'll implement it for POI shortly.
>>
>>-Andy
>>
>
>Eh? Auto code formatting has nothing to do with the mail log.
>
You could use the script kicked off to do it with.

>
>Don't you think that if setting up auto code formatting was technically
>possible that we would have thought of it already (after all these years of
>working with CVS)?
>
I'm going to do it in the crontab. Yes it is technically possible
otherwise, no I don't care to have a lengthy discussion about it, as I
think doing it in the crontab is better. *everything* is technically
possible, its all a matter of costs and risks.

-Andy

>
>-jon
>
>
>--
>To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
>For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
>
>




--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
on 5/8/02 5:13 AM, "Andrew C. Oliver" <acoliver@apache.org> wrote:

> I'm going to do it in the crontab. Yes it is technically possible
> otherwise, no I don't care to have a lengthy discussion about it, as I
> think doing it in the crontab is better. *everything* is technically
> possible, its all a matter of costs and risks.
>
> -Andy

Andy, now you are just being silly.

Think about it:

#1. You change a file.
#2. You cvs commit it.
#3. Diff gets sent to the server.
#4. Server then checks out a copy of the file and changes it and checks it
in again.
#5. File on local disk is different than file on server.
#6. User who did the commit does a cvs update.

At #4, you will get two commit messages for every commmit.

At #6, when the user does a cvs update, they are going to get a bunch of
conflicts because the lines changed from the version on the server to the
version on the client.

-jon


--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
Thats fine Jon. I'm not really up to explaining it to you. I'm going
to do it via crontab. Once I'm done with it I'll send you the script if
you're interested in implementing it for Lucene or Maven to free you up
from your task as code formatting security:
http://jakarta.apache.org/site/jon.html -- Give you more time to
argue. ;-)

-Andy

Jon Scott Stevens wrote:

>on 5/8/02 5:13 AM, "Andrew C. Oliver" <acoliver@apache.org> wrote:
>
>
>
>>I'm going to do it in the crontab. Yes it is technically possible
>>otherwise, no I don't care to have a lengthy discussion about it, as I
>>think doing it in the crontab is better. *everything* is technically
>>possible, its all a matter of costs and risks.
>>
>>-Andy
>>
>>
>
>Andy, now you are just being silly.
>
>Think about it:
>
>#1. You change a file.
>#2. You cvs commit it.
>#3. Diff gets sent to the server.
>#4. Server then checks out a copy of the file and changes it and checks it
>in again.
>#5. File on local disk is different than file on server.
>#6. User who did the commit does a cvs update.
>
>At #4, you will get two commit messages for every commmit.
>
>At #6, when the user does a cvs update, they are going to get a bunch of
>conflicts because the lines changed from the version on the server to the
>version on the client.
>
>-jon
>
>
>--
>To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
>For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
>
>
>
>




--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
Re: cvs commit: jakarta-lucene/src/java/org/apache/lucene/search DateFilter.java [ In reply to ]
on 5/8/02 11:07 AM, "Andrew C. Oliver" <acoliver@apache.org> wrote:

> Thats fine Jon. I'm not really up to explaining it to you. I'm going
> to do it via crontab. Once I'm done with it I'll send you the script if
> you're interested in implementing it.

I'm waiting...but then again, I have been waiting for someone as smart as
you to come along for about 5 years now...

-jon


--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>