Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
searx-engine
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
searx-engine
Commits
4e029b02
Unverified
Commit
4e029b02
authored
Oct 24, 2019
by
Noémi Ványi
Committed by
GitHub
Oct 24, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1728 from MarcAbonce/corrections_fix
[fix] Preserve bangs in corrections
parents
147ad504
bf24b39f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
5 deletions
+11
-5
results.html
searx/templates/oscar/results.html
+2
-2
results.html
searx/templates/simple/results.html
+2
-2
webapp.py
searx/webapp.py
+7
-1
No files found.
searx/templates/oscar/results.html
View file @
4e029b02
...
...
@@ -22,8 +22,8 @@
<span
class=
"result_header text-muted form-inline pull-left suggestion_item"
>
{{ _('Try searching for:') }}
</span>
{% for correction in corrections %}
<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
}}"
>
<button
type=
"submit"
class=
"btn btn-default btn-xs"
>
{{ correction }}
</button>
<input
type=
"hidden"
name=
"q"
value=
"{{
correction.url
}}"
>
<button
type=
"submit"
class=
"btn btn-default btn-xs"
>
{{ correction
.title
}}
</button>
</form>
{% endfor %}
</div>
...
...
searx/templates/simple/results.html
View file @
4e029b02
...
...
@@ -95,13 +95,13 @@
{% for correction in corrections %}
<div
class=
"left"
>
<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=
"language"
value=
"{{ current_language }}"
>
<input
type=
"hidden"
name=
"safesearch"
value=
"{{ safesearch }}"
>
<input
type=
"hidden"
name=
"theme"
value=
"{{ theme }}"
>
{% 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>
</div>
{% endfor %}
...
...
searx/webapp.py
View file @
4e029b02
...
...
@@ -610,6 +610,12 @@ def index():
'title'
:
suggestion
},
result_container
.
suggestions
)
correction_urls
=
list
(
map
(
lambda
correction
:
{
'url'
:
raw_text_query
.
changeSearchQuery
(
correction
)
.
getFullQuery
(),
'title'
:
correction
},
result_container
.
corrections
))
#
return
render
(
'results.html'
,
...
...
@@ -622,7 +628,7 @@ def index():
advanced_search
=
advanced_search
,
suggestions
=
suggestion_urls
,
answers
=
result_container
.
answers
,
corrections
=
result_container
.
correction
s
,
corrections
=
correction_url
s
,
infoboxes
=
result_container
.
infoboxes
,
paging
=
result_container
.
paging
,
unresponsive_engines
=
result_container
.
unresponsive_engines
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment