logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 3373b2c2987302087777c89c4419fd7b67ca579e
parent: 9f3dcc8d26c06cb2af17e69658147b0f1466dceb
Author: asciimoo <asciimoo@gmail.com>
Date:   Thu, 17 Oct 2013 01:44:50 +0200

[enh] browser autocompletition turned off

Diffstat:

Msearx/templates/index.html2+-
Msearx/templates/results.html2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/searx/templates/index.html b/searx/templates/index.html @@ -6,7 +6,7 @@ <div class="center"> <h1>searx</h1> <form method="post" action=""> - <input type="text" name="q" tabindex="1" /> + <input type="text" name="q" tabindex="1" autocomplete="off" /> <input type="submit" value="search" /> <p> {% for engine in engines %} diff --git a/searx/templates/results.html b/searx/templates/results.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block content %} <form method="post" action=""> - <input type="text" name="q" value="{{ q }}"/> + <input type="text" name="q" value="{{ q }}" autocomplete="off" /> <input type="submit" value="search" /> </form> {% for result in results %}