You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by Paul Elschot <pa...@xs4all.nl> on 2005/05/28 16:04:52 UTC

contrib/queryParsers/surround

Dear readers,

I've started moving the surround query language
http://issues.apache.org/bugzilla/show_bug.cgi?id=34331
into the directory named by the title in my working copy of the lucene
trunk. When the tests pass I'll repost it there.
In case someone  needs this earlier, please holler.

Regards,
Paul Elschot


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


Re: contrib/surround

Posted by Paul Elschot <pa...@xs4all.nl>.
On Saturday 28 May 2005 21:26, Erik Hatcher wrote:
> 
> On May 28, 2005, at 1:07 PM, Paul Elschot wrote:
...
> > I'll leave the build.xml stand alone with constants for the  
> > environment.
> > It was derived from a lucene build.xml of a few eons ago, so
> > I hope someone can still integrate it...
> 
> I will be happy to integrate it.  Let me know when it's ready for  
> contrib committing and consider it done.

There are still some intended warning messages on stdout
during the tests. This might be improved by extending the
tests to expect the messages on another invisible stream,
but I have not intention to make that change that myself:

http://issues.apache.org/bugzilla/show_bug.cgi?id=34331

> Sure you can't become a committer, even just on a contrib/surround  
> tree?  :)

I thought this list was for technical subjects?

Regards,
Paul Elschot


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


Re: contrib/queryParsers/surround

Posted by Paul Elschot <pa...@xs4all.nl>.
On Saturday 28 May 2005 21:26, Erik Hatcher wrote:
> 
> On May 28, 2005, at 1:07 PM, Paul Elschot wrote:
> > A little bit of deprecation is left in the CharStream (getLine and
> > getColumn) in the parser. Would you have any idea how to deal with  
> > that?
> 
> This is due to Java 1.5, right?  I'm seeing the same thing in my  
> project but haven't looked into it yet.

I used source="1.4" and target="1.4" for javac in build.xml,
so I don't think so.

Regards,
Paul Elschot


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


Re: contrib/queryParsers/surround

Posted by Erik Hatcher <er...@ehatchersolutions.com>.
On May 28, 2005, at 1:07 PM, Paul Elschot wrote:
> A little bit of deprecation is left in the CharStream (getLine and
> getColumn) in the parser. Would you have any idea how to deal with  
> that?

This is due to Java 1.5, right?  I'm seeing the same thing in my  
project but haven't looked into it yet.

> I'll leave the build.xml stand alone with constants for the  
> environment.
> It was derived from a lucene build.xml of a few eons ago, so
> I hope someone can still integrate it...

I will be happy to integrate it.  Let me know when it's ready for  
contrib committing and consider it done.

Sure you can't become a committer, even just on a contrib/surround  
tree?  :)

     Erik


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


Re: contrib/queryParsers/surround

Posted by Wolfgang Hoschek <wh...@lbl.gov>.
Cool stuff. Once this has stabilized and settled down I might start  
exposing the surround language from XQuery/XPath as an experimental  
match facility.

Wolfgang.

On May 28, 2005, at 10:07 AM, Paul Elschot wrote:




> On Saturday 28 May 2005 17:06, Erik Hatcher wrote:
>
>
>
>
>>
>> On May 28, 2005, at 10:04 AM, Paul Elschot wrote:
>>
>>
>>
>>
>>> Dear readers,
>>>
>>> I've started moving the surround query language
>>> http://issues.apache.org/bugzilla/show_bug.cgi?id=34331
>>> into the directory named by the title in my working copy of the  
>>> lucene
>>> trunk. When the tests pass I'll repost it there.
>>> In case someone  needs this earlier, please holler.
>>>
>>>
>>>
>>>
>>
>> As for naming conventions and where this should live in contrib,
>> consider that a user will only want a single query parser and more
>> than that would be unneeded bloat in her application.  The contrib
>> pieces are all packaged as a separate JAR per directory under  
>> contrib.
>>
>> My recommendation would be to put your wonderful surround parser and
>> supporting infrastructure under contrib/surround.
>>
>> I'm very much looking forward to having this available!
>>
>>
>>
>>
>
> Meanwhile the tests pass again with some expected standard ouput.
>
> A little bit of deprecation is left in the CharStream (getLine and
> getColumn) in the parser. Would you have any idea how to deal with  
> that?
>
> I'll leave the build.xml stand alone with constants for the  
> environment.
> It was derived from a lucene build.xml of a few eons ago, so
> I hope someone can still integrate it...
>
> Regards,
> Paul Elschot
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
> For additional commands, e-mail: java-dev-help@lucene.apache.org
>
>
>
>





---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


Re: contrib/queryParsers/surround

Posted by Paul Elschot <pa...@xs4all.nl>.
On Saturday 28 May 2005 17:06, Erik Hatcher wrote:
> 
> On May 28, 2005, at 10:04 AM, Paul Elschot wrote:
> > Dear readers,
> >
> > I've started moving the surround query language
> > http://issues.apache.org/bugzilla/show_bug.cgi?id=34331
> > into the directory named by the title in my working copy of the lucene
> > trunk. When the tests pass I'll repost it there.
> > In case someone  needs this earlier, please holler.
> 
> As for naming conventions and where this should live in contrib,  
> consider that a user will only want a single query parser and more  
> than that would be unneeded bloat in her application.  The contrib  
> pieces are all packaged as a separate JAR per directory under contrib.
> 
> My recommendation would be to put your wonderful surround parser and  
> supporting infrastructure under contrib/surround.
> 
> I'm very much looking forward to having this available!

Meanwhile the tests pass again with some expected standard ouput.

A little bit of deprecation is left in the CharStream (getLine and
getColumn) in the parser. Would you have any idea how to deal with that?

I'll leave the build.xml stand alone with constants for the environment.
It was derived from a lucene build.xml of a few eons ago, so
I hope someone can still integrate it...

Regards,
Paul Elschot


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org


Re: contrib/queryParsers/surround

Posted by Erik Hatcher <er...@ehatchersolutions.com>.
On May 28, 2005, at 10:04 AM, Paul Elschot wrote:
> Dear readers,
>
> I've started moving the surround query language
> http://issues.apache.org/bugzilla/show_bug.cgi?id=34331
> into the directory named by the title in my working copy of the lucene
> trunk. When the tests pass I'll repost it there.
> In case someone  needs this earlier, please holler.

As for naming conventions and where this should live in contrib,  
consider that a user will only want a single query parser and more  
than that would be unneeded bloat in her application.  The contrib  
pieces are all packaged as a separate JAR per directory under contrib.

My recommendation would be to put your wonderful surround parser and  
supporting infrastructure under contrib/surround.

I'm very much looking forward to having this available!

     Erik



---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org