diff options
author | Matej Cotman <cotman.matej@gmail.com> | 2014-03-29 16:45:22 +0100 |
---|---|---|
committer | Matej Cotman <cotman.matej@gmail.com> | 2014-03-29 16:50:48 +0100 |
commit | 32e98967b76df8088a5759c90650ae65808932bc (patch) | |
tree | 112714c00ef4b4dcc21080ede436cb74ec273c5f /searx/templates | |
parent | 879bac8adb181593989a132fabd607f50096473a (diff) | |
download | searxng-32e98967b76df8088a5759c90650ae65808932bc.tar.gz searxng-32e98967b76df8088a5759c90650ae65808932bc.zip |
add optional request with GET method for search and results pages
Diffstat (limited to 'searx/templates')
-rw-r--r-- | searx/templates/preferences.html | 9 | ||||
-rw-r--r-- | searx/templates/results.html | 8 | ||||
-rw-r--r-- | searx/templates/search.html | 2 |
3 files changed, 14 insertions, 5 deletions
diff --git a/searx/templates/preferences.html b/searx/templates/preferences.html index 582305a1b..eeb86577f 100644 --- a/searx/templates/preferences.html +++ b/searx/templates/preferences.html @@ -44,6 +44,15 @@ </p> </fieldset> <fieldset> + <legend>{{ _('Method') }}</legend> + <p> + <select name='method'> + <option value="POST" {% if method == 'POST' %}selected="selected"{% endif %}>POST</option> + <option value="GET" {% if method == 'GET' %}selected="selected"{% endif %}>GET</option> + </select> + </p> + </fieldset> + <fieldset> <legend>{{ _('Currently used search engines') }}</legend> <table> diff --git a/searx/templates/results.html b/searx/templates/results.html index 8094e96b6..97c2696c8 100644 --- a/searx/templates/results.html +++ b/searx/templates/results.html @@ -10,7 +10,7 @@ {% if suggestions %} <div id="suggestions"><span>{{ _('Suggestions') }}</span> {% for suggestion in suggestions %} - <form method="post" action="{{ url_for('index') }}"> + <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}"> <input type="hidden" name="q" value="{{ suggestion }}"> <input type="submit" value="{{ suggestion }}" /> </form> @@ -25,7 +25,7 @@ <div id="apis"> {{ _('Download results') }} {% for output_type in ('csv', 'json', 'rss') %} - <form method="post" action="{{ url_for('index') }}"> + <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}"> <div class="left"> <input type="hidden" name="q" value="{{ q }}" /> <input type="hidden" name="format" value="{{ output_type }}" /> @@ -52,7 +52,7 @@ {% if paging %} <div id="pagination"> {% if pageno > 1 %} - <form method="post" action="{{ url_for('index') }}"> + <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}"> <div class="left"> <input type="hidden" name="q" value="{{ q }}" /> {% for category in selected_categories %} @@ -63,7 +63,7 @@ </div> </form> {% endif %} - <form method="post" action="{{ url_for('index') }}"> + <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}"> <div class="left"> {% for category in selected_categories %} <input type="hidden" name="category_{{ category }}" value="1"/> diff --git a/searx/templates/search.html b/searx/templates/search.html index 95e312e5a..30d1568cf 100644 --- a/searx/templates/search.html +++ b/searx/templates/search.html @@ -1,4 +1,4 @@ -<form method="post" action="{{ url_for('index') }}" id="search_form"> +<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form"> <div id="search_wrapper"> <input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/> <input type="submit" value="search" id="search_submit" /> |