mirror of https://github.com/apache/lucene.git
SOLR-3821 and SOLR-3822: trivial improvements to the Query form that steffkes hadn't commited yet
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1388292 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3de7515e85
commit
c17b6776b5
|
@ -144,6 +144,11 @@ New Features
|
|||
* SOLR-3825: Added optional capability to log what ids are in a response
|
||||
(Scott Stults via gsingers)
|
||||
|
||||
* SOLR-3821: Added 'df' to the UI Query form (steffkes)
|
||||
|
||||
* SOLR-3822: Added hover titles to the edismax params on the UI Query form
|
||||
(steffkes)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -56,6 +56,11 @@ limitations under the License.
|
|||
</label>
|
||||
<input type="text" name="fl" id="fl" value="" title="Field list, comma separated.">
|
||||
|
||||
<label for="df">
|
||||
<a rel="help">df</a>
|
||||
</label>
|
||||
<input type="text" name="df" id="df" value="" title="Default search field">
|
||||
|
||||
<label for="wt">
|
||||
<a rel="help">wt</a>
|
||||
</label>
|
||||
|
@ -130,31 +135,31 @@ limitations under the License.
|
|||
<div class="fieldset">
|
||||
|
||||
<label for="edismax_q_alt">q.alt</label>
|
||||
<input type="text" name="q.alt" id="edismax_q_alt">
|
||||
<input type="text" name="q.alt" id="edismax_q_alt" title="Alternate query when 'q' is absent.">
|
||||
|
||||
<label for="edismax_qf">qf</label>
|
||||
<input type="text" name="qf" id="edismax_qf">
|
||||
<input type="text" name="qf" id="edismax_qf" title="Query fields with optional boosts.">
|
||||
|
||||
<label for="edismax_mm">mm</label>
|
||||
<input type="text" name="mm" id="edismax_mm">
|
||||
<input type="text" name="mm" id="edismax_mm" title="Min-should-match expression.">
|
||||
|
||||
<label for="edismax_pf">pf</label>
|
||||
<input type="text" name="pf" id="edismax_pf">
|
||||
<input type="text" name="pf" id="edismax_pf" title="Phrase boosted fields.">
|
||||
|
||||
<label for="edismax_ps">ps</label>
|
||||
<input type="text" name="ps" id="edismax_ps">
|
||||
<input type="text" name="ps" id="edismax_ps" title="Phrase boost slop.">
|
||||
|
||||
<label for="edismax_qs">qs</label>
|
||||
<input type="text" name="qs" id="edismax_qs">
|
||||
<input type="text" name="qs" id="edismax_qs" title="Query string phrase slop.">
|
||||
|
||||
<label for="edismax_tie">tie</label>
|
||||
<input type="text" name="tie" id="edismax_tie">
|
||||
<input type="text" name="tie" id="edismax_tie" title="Score tie-breaker. Try 0.1.">
|
||||
|
||||
<label for="edismax_bq">bq</label>
|
||||
<input type="text" name="bq" id="edismax_bq">
|
||||
<input type="text" name="bq" id="edismax_bq" title="Boost query.">
|
||||
|
||||
<label for="edismax_bf">bf</label>
|
||||
<input type="text" name="bf" id="edismax_bf">
|
||||
<input type="text" name="bf" id="edismax_bf" title="Boost function (added).">
|
||||
|
||||
</div>
|
||||
</fieldset>
|
||||
|
|
Loading…
Reference in New Issue