logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 6ff57dfbe1b9c011b7bb3f0fce967fad70e5ca72
parent: 71c2e8222bc5d7115e8e2ed415057f66da3a2f09
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Tue,  4 Mar 2014 18:53:56 +0100

[enh] linkable search url display

Diffstat:

Msearx/static/css/style.css2++
Msearx/templates/results.html4++++
Msearx/webapp.py1+
3 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/searx/static/css/style.css b/searx/static/css/style.css @@ -165,6 +165,8 @@ tr:hover { background: #DDDDDD; } #suggestions span { display: block; margin: 0 2px 2px 2px; padding: 0; } #suggestions form { display: block; } #suggestions input { padding: 2px 6px; margin: 2px 4px; font-size: 0.8em; display: inline-block; background: #3498DB; color: #FFFFFF; border-radius: 4px; border: 0; cursor: pointer; } +#search_url { margin-top: 8px; } +#search_url input { border: 1px solid #888888; padding: 4px; color: #444444; width: 20em; display: block; margin: 4px; } #preferences { top: 10px; diff --git a/searx/templates/results.html b/searx/templates/results.html @@ -18,6 +18,10 @@ </div> {% endif %} + <div id="search_url"> + {{ _('Search URL') }}: + <input type="text" value="{{ base_url }}?q={{ q|urlencode }}&pageno={{ pageno }}" readonly="" /> + </div> <div id="apis"> {{ _('Download results') }} {% for output_type in ('csv', 'json', 'rss') %} diff --git a/searx/webapp.py b/searx/webapp.py @@ -182,6 +182,7 @@ def index(): selected_categories=search.categories, paging=search.paging, pageno=search.pageno, + base_url=get_base_url(), suggestions=search.suggestions )