You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-dev@lucene.apache.org by "Bertrand Delacretaz (JIRA)" <ji...@apache.org> on 2006/12/14 14:06:22 UTC

[jira] Commented: (SOLR-59) Copy request parameters to Solr's response

    [ http://issues.apache.org/jira/browse/SOLR-59?page=comments#action_12458466 ] 
            
Bertrand Delacretaz commented on SOLR-59:
-----------------------------------------

Thanks Yonik, I have commited your patch.

I have renamed the OutputWriterTest.testOriginalSolrWriter test to testSOLR59responseHeaderVersions, and added a test where the "version"parameter is not used.

I think you can close this issue (apparently I don't have sufficient permissions to do that).

> Copy request parameters to Solr's response
> ------------------------------------------
>
>                 Key: SOLR-59
>                 URL: http://issues.apache.org/jira/browse/SOLR-59
>             Project: Solr
>          Issue Type: Improvement
>            Reporter: Bertrand Delacretaz
>         Attachments: SOLR-59-20061024.patch, SOLR-59-20061102.patch, SOLR-59-20061103.patch, SOLR-59-20061106-newfiles.tar.gz, SOLR-59-20061106.patch, SOLR-59-20061213.patch, SOLR-59-new-files-20061102.tar.gz
>
>
> This patch copies the request parameters (explicit ones only, not the defaults) to Solr's XML output.
> It is not configurable yet, it is enabled by default and adds a "queryParameters" list to the responseHeader:
> <responseHeader>
>         <status>0</status>
>         <QTime>1</QTime>
>         <lst name="queryParameters">
>                 <arr name="multi">
>                         <str>red</str>
>                         <str>blue</str>
>                 </arr>
>                 <str name="rows">10</str>
>                 <str name="start">0</str>
>                 <str name="indent">on</str>
>                 <str name="q">solr</str>
>                 <str name="stylesheet"/>
>                 <str name="version">2.1</str>
>         </lst>
> </responseHeader>
> The above example includes a multi-valued parameter, "multi".
> This might still change a bit, but if someone wants to play with it or improve it, here you go.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Re: Bertrand's Jira perms

Posted by Bertrand Delacretaz <bd...@apache.org>.
On 12/18/06, Erik Hatcher <er...@ehatchersolutions.com> wrote:
> I've added "bdelacretaz" to the solr-developers group in JIRA...

Thanks, Ithe additional Jira functions work for me now.
-Bertrand

Re: Bertrand's Jira perms

Posted by Erik Hatcher <er...@ehatchersolutions.com>.
I've added "bdelacretaz" to the solr-developers group in JIRA.   
(sorry for the delay)

	Erik


On Dec 16, 2006, at 2:57 AM, Chris Hostetter wrote:

>
> Hmmm... acctually, i just found the mail from when Bertrand became a
> committer: Yonik sid he didn't have the Jira permissions.  It looks  
> like
> Doug did it for Mike.
>
> Doug: can you add Bertrand to solr-developers in Jira and/or give  
> one of
> the rest of use the neccessary permissions to modify the group  
> membership?
>
>
> : Date: Thu, 14 Dec 2006 19:41:43 -0800 (PST)
> : From: Chris Hostetter <ho...@fucit.org>
> : Reply-To: solr-dev@lucene.apache.org
> : To: solr-dev@lucene.apache.org
> : Subject: Bertrand's Jira perms
> :
> :
> : Yonik:
> :
> :   It looks like Bertrand never got added to the solr-developers  
> list.
> :
> : (that's what controls the list of asignee's as well right?)
> :
> :
> :
> :
> : : Date: Thu, 14 Dec 2006 05:06:22 -0800 (PST)
> : : From: "Bertrand Delacretaz (JIRA)" <ji...@apache.org>
> : : Reply-To: solr-dev@lucene.apache.org
> : : To: solr-dev@lucene.apache.org
> : : Subject: [jira] Commented: (SOLR-59) Copy request parameters to  
> Solr's
> : :     response
> : :
> : :     [ http://issues.apache.org/jira/browse/SOLR-59? 
> page=comments#action_12458466 ]
> : :
> : : Bertrand Delacretaz commented on SOLR-59:
> : : -----------------------------------------
> : :
> : : Thanks Yonik, I have commited your patch.
> : :
> : : I have renamed the OutputWriterTest.testOriginalSolrWriter test  
> to testSOLR59responseHeaderVersions, and added a test where the  
> "version"parameter is not used.
> : :
> : : I think you can close this issue (apparently I don't have  
> sufficient permissions to do that).
> : :
> : : > Copy request parameters to Solr's response
> : : > ------------------------------------------
> : : >
> : : >                 Key: SOLR-59
> : : >                 URL: http://issues.apache.org/jira/browse/ 
> SOLR-59
> : : >             Project: Solr
> : : >          Issue Type: Improvement
> : : >            Reporter: Bertrand Delacretaz
> : : >         Attachments: SOLR-59-20061024.patch,  
> SOLR-59-20061102.patch, SOLR-59-20061103.patch, SOLR-59-20061106- 
> newfiles.tar.gz, SOLR-59-20061106.patch, SOLR-59-20061213.patch,  
> SOLR-59-new-files-20061102.tar.gz
> : : >
> : : >
> : : > This patch copies the request parameters (explicit ones only,  
> not the defaults) to Solr's XML output.
> : : > It is not configurable yet, it is enabled by default and adds  
> a "queryParameters" list to the responseHeader:
> : : > <responseHeader>
> : : >         <status>0</status>
> : : >         <QTime>1</QTime>
> : : >         <lst name="queryParameters">
> : : >                 <arr name="multi">
> : : >                         <str>red</str>
> : : >                         <str>blue</str>
> : : >                 </arr>
> : : >                 <str name="rows">10</str>
> : : >                 <str name="start">0</str>
> : : >                 <str name="indent">on</str>
> : : >                 <str name="q">solr</str>
> : : >                 <str name="stylesheet"/>
> : : >                 <str name="version">2.1</str>
> : : >         </lst>
> : : > </responseHeader>
> : : > The above example includes a multi-valued parameter, "multi".
> : : > This might still change a bit, but if someone wants to play  
> with it or improve it, here you go.
> : :
> : : --
> : : This message is automatically generated by JIRA.
> : : -
> : : If you think it was sent incorrectly contact one of the  
> administrators: http://issues.apache.org/jira/secure/ 
> Administrators.jspa
> : : -
> : : For more information on JIRA, see: http://www.atlassian.com/ 
> software/jira
> : :
> : :
> : :
> :
> :
> :
> : -Hoss
> :
>
>
>
> -Hoss


Re: Bertrand's Jira perms

Posted by Chris Hostetter <ho...@fucit.org>.
Hmmm... acctually, i just found the mail from when Bertrand became a
committer: Yonik sid he didn't have the Jira permissions.  It looks like
Doug did it for Mike.

Doug: can you add Bertrand to solr-developers in Jira and/or give one of
the rest of use the neccessary permissions to modify the group membership?


: Date: Thu, 14 Dec 2006 19:41:43 -0800 (PST)
: From: Chris Hostetter <ho...@fucit.org>
: Reply-To: solr-dev@lucene.apache.org
: To: solr-dev@lucene.apache.org
: Subject: Bertrand's Jira perms
:
:
: Yonik:
:
:   It looks like Bertrand never got added to the solr-developers list.
:
: (that's what controls the list of asignee's as well right?)
:
:
:
:
: : Date: Thu, 14 Dec 2006 05:06:22 -0800 (PST)
: : From: "Bertrand Delacretaz (JIRA)" <ji...@apache.org>
: : Reply-To: solr-dev@lucene.apache.org
: : To: solr-dev@lucene.apache.org
: : Subject: [jira] Commented: (SOLR-59) Copy request parameters to Solr's
: :     response
: :
: :     [ http://issues.apache.org/jira/browse/SOLR-59?page=comments#action_12458466 ]
: :
: : Bertrand Delacretaz commented on SOLR-59:
: : -----------------------------------------
: :
: : Thanks Yonik, I have commited your patch.
: :
: : I have renamed the OutputWriterTest.testOriginalSolrWriter test to testSOLR59responseHeaderVersions, and added a test where the "version"parameter is not used.
: :
: : I think you can close this issue (apparently I don't have sufficient permissions to do that).
: :
: : > Copy request parameters to Solr's response
: : > ------------------------------------------
: : >
: : >                 Key: SOLR-59
: : >                 URL: http://issues.apache.org/jira/browse/SOLR-59
: : >             Project: Solr
: : >          Issue Type: Improvement
: : >            Reporter: Bertrand Delacretaz
: : >         Attachments: SOLR-59-20061024.patch, SOLR-59-20061102.patch, SOLR-59-20061103.patch, SOLR-59-20061106-newfiles.tar.gz, SOLR-59-20061106.patch, SOLR-59-20061213.patch, SOLR-59-new-files-20061102.tar.gz
: : >
: : >
: : > This patch copies the request parameters (explicit ones only, not the defaults) to Solr's XML output.
: : > It is not configurable yet, it is enabled by default and adds a "queryParameters" list to the responseHeader:
: : > <responseHeader>
: : >         <status>0</status>
: : >         <QTime>1</QTime>
: : >         <lst name="queryParameters">
: : >                 <arr name="multi">
: : >                         <str>red</str>
: : >                         <str>blue</str>
: : >                 </arr>
: : >                 <str name="rows">10</str>
: : >                 <str name="start">0</str>
: : >                 <str name="indent">on</str>
: : >                 <str name="q">solr</str>
: : >                 <str name="stylesheet"/>
: : >                 <str name="version">2.1</str>
: : >         </lst>
: : > </responseHeader>
: : > The above example includes a multi-valued parameter, "multi".
: : > This might still change a bit, but if someone wants to play with it or improve it, here you go.
: :
: : --
: : This message is automatically generated by JIRA.
: : -
: : If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
: : -
: : For more information on JIRA, see: http://www.atlassian.com/software/jira
: :
: :
: :
:
:
:
: -Hoss
:



-Hoss


Bertrand's Jira perms

Posted by Chris Hostetter <ho...@fucit.org>.
Yonik:

  It looks like Bertrand never got added to the solr-developers list.

(that's what controls the list of asignee's as well right?)




: Date: Thu, 14 Dec 2006 05:06:22 -0800 (PST)
: From: "Bertrand Delacretaz (JIRA)" <ji...@apache.org>
: Reply-To: solr-dev@lucene.apache.org
: To: solr-dev@lucene.apache.org
: Subject: [jira] Commented: (SOLR-59) Copy request parameters to Solr's
:     response
:
:     [ http://issues.apache.org/jira/browse/SOLR-59?page=comments#action_12458466 ]
:
: Bertrand Delacretaz commented on SOLR-59:
: -----------------------------------------
:
: Thanks Yonik, I have commited your patch.
:
: I have renamed the OutputWriterTest.testOriginalSolrWriter test to testSOLR59responseHeaderVersions, and added a test where the "version"parameter is not used.
:
: I think you can close this issue (apparently I don't have sufficient permissions to do that).
:
: > Copy request parameters to Solr's response
: > ------------------------------------------
: >
: >                 Key: SOLR-59
: >                 URL: http://issues.apache.org/jira/browse/SOLR-59
: >             Project: Solr
: >          Issue Type: Improvement
: >            Reporter: Bertrand Delacretaz
: >         Attachments: SOLR-59-20061024.patch, SOLR-59-20061102.patch, SOLR-59-20061103.patch, SOLR-59-20061106-newfiles.tar.gz, SOLR-59-20061106.patch, SOLR-59-20061213.patch, SOLR-59-new-files-20061102.tar.gz
: >
: >
: > This patch copies the request parameters (explicit ones only, not the defaults) to Solr's XML output.
: > It is not configurable yet, it is enabled by default and adds a "queryParameters" list to the responseHeader:
: > <responseHeader>
: >         <status>0</status>
: >         <QTime>1</QTime>
: >         <lst name="queryParameters">
: >                 <arr name="multi">
: >                         <str>red</str>
: >                         <str>blue</str>
: >                 </arr>
: >                 <str name="rows">10</str>
: >                 <str name="start">0</str>
: >                 <str name="indent">on</str>
: >                 <str name="q">solr</str>
: >                 <str name="stylesheet"/>
: >                 <str name="version">2.1</str>
: >         </lst>
: > </responseHeader>
: > The above example includes a multi-valued parameter, "multi".
: > This might still change a bit, but if someone wants to play with it or improve it, here you go.
:
: --
: This message is automatically generated by JIRA.
: -
: If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
: -
: For more information on JIRA, see: http://www.atlassian.com/software/jira
:
:
:



-Hoss