mirror of https://github.com/searxng/searxng.git
[fix] preserve bangs in corrections
This commit is contained in:
parent
12f42d1572
commit
b0f89ed477
|
@ -22,8 +22,8 @@
|
||||||
<span class="result_header text-muted form-inline pull-left suggestion_item">{{ _('Try searching for:') }}</span>
|
<span class="result_header text-muted form-inline pull-left suggestion_item">{{ _('Try searching for:') }}</span>
|
||||||
{% for correction in corrections %}
|
{% for correction in corrections %}
|
||||||
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" role="navigation" class="form-inline pull-left suggestion_item">
|
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" role="navigation" class="form-inline pull-left suggestion_item">
|
||||||
<input type="hidden" name="q" value="{{ query_prefix + correction }}">
|
<input type="hidden" name="q" value="{{ correction.url }}">
|
||||||
<button type="submit" class="btn btn-default btn-xs">{{ correction }}</button>
|
<button type="submit" class="btn btn-default btn-xs">{{ correction.title }}</button>
|
||||||
</form>
|
</form>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -95,13 +95,13 @@
|
||||||
{% for correction in corrections %}
|
{% for correction in corrections %}
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" role="navigation">
|
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" role="navigation">
|
||||||
<input type="hidden" name="q" value="{{ correction }}">
|
<input type="hidden" name="q" value="{{ correction.url }}">
|
||||||
<input type="hidden" name="time_range" value="{{ time_range }}">
|
<input type="hidden" name="time_range" value="{{ time_range }}">
|
||||||
<input type="hidden" name="language" value="{{ current_language }}">
|
<input type="hidden" name="language" value="{{ current_language }}">
|
||||||
<input type="hidden" name="safesearch" value="{{ safesearch }}">
|
<input type="hidden" name="safesearch" value="{{ safesearch }}">
|
||||||
<input type="hidden" name="theme" value="{{ theme }}">
|
<input type="hidden" name="theme" value="{{ theme }}">
|
||||||
{% if timeout_limit %}<input type="hidden" name="timeout_limit" value="{{ timeout_limit }}" >{% endif %}
|
{% if timeout_limit %}<input type="hidden" name="timeout_limit" value="{{ timeout_limit }}" >{% endif %}
|
||||||
<input type="submit" value="{{ correction }}">
|
<input type="submit" value="{{ correction.title }}">
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -610,6 +610,12 @@ def index():
|
||||||
'title': suggestion
|
'title': suggestion
|
||||||
},
|
},
|
||||||
result_container.suggestions)
|
result_container.suggestions)
|
||||||
|
|
||||||
|
correction_urls = list(map(lambda correction: {
|
||||||
|
'url': raw_text_query.changeSearchQuery(correction).getFullQuery(),
|
||||||
|
'title': correction
|
||||||
|
},
|
||||||
|
result_container.corrections))
|
||||||
#
|
#
|
||||||
return render(
|
return render(
|
||||||
'results.html',
|
'results.html',
|
||||||
|
@ -622,7 +628,7 @@ def index():
|
||||||
advanced_search=advanced_search,
|
advanced_search=advanced_search,
|
||||||
suggestions=suggestion_urls,
|
suggestions=suggestion_urls,
|
||||||
answers=result_container.answers,
|
answers=result_container.answers,
|
||||||
corrections=result_container.corrections,
|
corrections=correction_urls,
|
||||||
infoboxes=result_container.infoboxes,
|
infoboxes=result_container.infoboxes,
|
||||||
paging=result_container.paging,
|
paging=result_container.paging,
|
||||||
unresponsive_engines=result_container.unresponsive_engines,
|
unresponsive_engines=result_container.unresponsive_engines,
|
||||||
|
|
Loading…
Reference in New Issue