diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2014-04-08 17:51:30 +0200 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2014-04-08 17:51:30 +0200 |
| commit | 44d3af9fb2482cd0df1a8ababbe2fdf27ab33172 (patch) | |
| tree | 72c4a2e7e18ab9db63e5ab221b2377f90ff56389 /searx | |
| parent | d2f89f044624d21027741ada796580bbcea70922 (diff) | |
| parent | 4519de9a3a3e9421d8c6b40804c49017de1bc341 (diff) | |
Merge pull request #61 from matejc/optional_search_get
Optional search get
Diffstat (limited to 'searx')
| -rw-r--r-- | searx/templates/preferences.html | 9 | ||||
| -rw-r--r-- | searx/templates/results.html | 8 | ||||
| -rw-r--r-- | searx/templates/search.html | 2 | ||||
| -rw-r--r-- | searx/webapp.py | 7 |
4 files changed, 21 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" /> diff --git a/searx/webapp.py b/searx/webapp.py index 156ef4745..57734e2cf 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -123,6 +123,8 @@ def render(template_name, **kwargs): if not 'autocomplete' in kwargs: kwargs['autocomplete'] = autocomplete + kwargs['method'] = request.cookies.get('method', 'POST') + return render_template(template_name, **kwargs) @@ -291,6 +293,7 @@ def preferences(): selected_categories = [] locale = None autocomplete = '' + method = 'POST' for pd_name, pd in request.form.items(): if pd_name.startswith('category_'): category = pd_name[9:] @@ -305,6 +308,8 @@ def preferences(): pd in (x[0] for x in language_codes)): lang = pd + elif pd_name == 'method': + method = pd elif pd_name.startswith('engine_'): engine_name = pd_name.replace('engine_', '', 1) if engine_name in engines: @@ -344,6 +349,8 @@ def preferences(): max_age=cookie_max_age ) + resp.set_cookie('method', method, max_age=cookie_max_age) + return resp return render('preferences.html', locales=settings['locales'], |