Re: url-encoded strings from Admin Query String search

2012-03-22 Thread Aaron Couch
hi Chris and Hoss: Thanks for the feedback. This is useful to hear. This seems like a bug to me but not a very important one. I'm new to Solr and seems like you have a great community here. -Aaron On Thu, Mar 22, 2012 at 1:34 PM, Chris Hostetter wrote: > > : The admin screen is made for doing

Re: url-encoded strings from Admin Query String search

2012-03-22 Thread Chris Hostetter
: The admin screen is made for doing a quick query against the default field : with the settings defined in the default search handler. To that end, it : assumes that all entered characters should be part of the search string, so it : encodes them accordingly. correct ... that text box in questi

Re: url-encoded strings from Admin Query String search

2012-03-22 Thread fbrisbart
2 at 11:26 AM, fbrisbart > >wrote: > > > > > > > Hi, > > > > > > > > for your example query 'TEST&qf=t_FIELD_NAME ', > > > > you can simply query : > > > > t_FIELD_NAME:TEST > > > > > > > > If you really want to use the 'qf' parameter, it is only available for > > > > dismax queries ( http://wiki.apache.org/solr/DisMaxQParserPlugin ). > > Your > > > > query becomes: > > > > {!dismax qf=t_FIELD_NAME}TEST > > > > > > > > Have a look at the wiki ( > > > > http://wiki.apache.org/solr/CommonQueryParameters > > > > ) for the syntax of your queries. > > > > > > > > Franck > > > > > > > > > > > > -- > > > > View this message in context: > > > > > > http://lucene.472066.n3.nabble.com/url-encoded-strings-from-Admin-Query-String-search-tp3840910p3846003.html > > > > Sent from the Solr - User mailing list archive at Nabble.com. > > > > > > > > > >

Re: url-encoded strings from Admin Query String search

2012-03-21 Thread Shawn Heisey
On 3/21/2012 9:04 PM, Shawn Heisey wrote: The admin screen is made for doing a quick query against the default field with the settings defined in the default search handler. To that end, it assumes that all entered characters should be part of the search string, so it encodes them accordingly.

Re: url-encoded strings from Admin Query String search

2012-03-21 Thread Shawn Heisey
On 3/21/2012 5:41 PM, Aaron Couch wrote: select/?q=t_title%3Aweb%26defType%3Dlucene The '&' and '%26' are not equivalent as well as the '=' and '%3D'. I know I could easily just type the queries correctly in the URL, but I'm giving a training where I'd like to show how the queries generated in

Re: url-encoded strings from Admin Query String search

2012-03-21 Thread Aaron Couch
t; > you can simply query : > > > t_FIELD_NAME:TEST > > > > > > If you really want to use the 'qf' parameter, it is only available for > > > dismax queries ( http://wiki.apache.org/solr/DisMaxQParserPlugin ). > Your > > > query becomes: > > > {!dismax qf=t_FIELD_NAME}TEST > > > > > > Have a look at the wiki ( > > > http://wiki.apache.org/solr/CommonQueryParameters > > > ) for the syntax of your queries. > > > > > > Franck > > > > > > > > > -- > > > View this message in context: > > > > http://lucene.472066.n3.nabble.com/url-encoded-strings-from-Admin-Query-String-search-tp3840910p3846003.html > > > Sent from the Solr - User mailing list archive at Nabble.com. > > > > > >

Re: url-encoded strings from Admin Query String search

2012-03-21 Thread fbrisbart
> > dismax queries ( http://wiki.apache.org/solr/DisMaxQParserPlugin ). Your > > query becomes: > > {!dismax qf=t_FIELD_NAME}TEST > > > > Have a look at the wiki ( > > http://wiki.apache.org/solr/CommonQueryParameters > > ) for the syntax of your queries. > > > > Franck > > > > > > -- > > View this message in context: > > http://lucene.472066.n3.nabble.com/url-encoded-strings-from-Admin-Query-String-search-tp3840910p3846003.html > > Sent from the Solr - User mailing list archive at Nabble.com. > >

Re: url-encoded strings from Admin Query String search

2012-03-21 Thread Aaron Couch
arameters > ) for the syntax of your queries. > > Franck > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/url-encoded-strings-from-Admin-Query-String-search-tp3840910p3846003.html > Sent from the Solr - User mailing list archive at Nabble.com. >

Re: url-encoded strings from Admin Query String search

2012-03-21 Thread fbrisbart
D_NAME}TEST Have a look at the wiki ( http://wiki.apache.org/solr/CommonQueryParameters ) for the syntax of your queries. Franck -- View this message in context: http://lucene.472066.n3.nabble.com/url-encoded-strings-from-Admin-Query-String-search-tp3840910p3846003.html Sent from the Solr - User

url-encoded strings from Admin Query String search

2012-03-19 Thread Aaron Couch
Sorry if this is documented somewhere but I did searched a lot and couldn't find the answer to this. I'd like to be able to type in test queries and the /admin page but when I do the url string created is url-encoded so that the resulting string doesn't work. If I type: TEST&qf=t_FIELD_NAME in