瀏覽代碼

Merge pull request #61 from matejc/optional_search_get

Optional search get
Adam Tauber 11 年之前
父節點
當前提交
44d3af9fb2
共有 5 個文件被更改,包括 30 次插入6 次删除
  1. 9
    0
      searx/templates/preferences.html
  2. 4
    4
      searx/templates/results.html
  3. 1
    1
      searx/templates/search.html
  4. 7
    0
      searx/webapp.py
  5. 9
    1
      versions.cfg

+ 9
- 0
searx/templates/preferences.html 查看文件

@@ -44,6 +44,15 @@
44 44
         </p>
45 45
     </fieldset>
46 46
     <fieldset>
47
+        <legend>{{ _('Method') }}</legend>
48
+        <p>
49
+        <select name='method'>
50
+            <option value="POST" {% if method == 'POST' %}selected="selected"{% endif %}>POST</option>
51
+            <option value="GET" {% if method == 'GET' %}selected="selected"{% endif %}>GET</option>
52
+        </select>
53
+        </p>
54
+    </fieldset>
55
+    <fieldset>
47 56
     <legend>{{ _('Currently used search engines') }}</legend>
48 57
 
49 58
     <table>

+ 4
- 4
searx/templates/results.html 查看文件

@@ -10,7 +10,7 @@
10 10
         {% if suggestions %}
11 11
         <div id="suggestions"><span>{{ _('Suggestions') }}</span>
12 12
             {% for suggestion in suggestions %}
13
-            <form method="post" action="{{ url_for('index') }}">
13
+            <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
14 14
                 <input type="hidden" name="q" value="{{ suggestion }}">
15 15
                 <input type="submit" value="{{ suggestion }}" />
16 16
             </form>
@@ -25,7 +25,7 @@
25 25
         <div id="apis">
26 26
         {{ _('Download results') }}
27 27
         {% for output_type in ('csv', 'json', 'rss') %}
28
-        <form method="post" action="{{ url_for('index') }}">
28
+        <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
29 29
             <div class="left">
30 30
             <input type="hidden" name="q" value="{{ q }}" />
31 31
             <input type="hidden" name="format" value="{{ output_type }}" />
@@ -52,7 +52,7 @@
52 52
     {% if paging %}
53 53
     <div id="pagination">
54 54
         {% if pageno > 1 %}
55
-            <form method="post" action="{{ url_for('index') }}">
55
+            <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
56 56
                 <div class="left">
57 57
                 <input type="hidden" name="q" value="{{ q }}" />
58 58
                 {% for category in selected_categories %}
@@ -63,7 +63,7 @@
63 63
                 </div>
64 64
             </form>
65 65
         {% endif %}
66
-        <form method="post" action="{{ url_for('index') }}">
66
+        <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
67 67
             <div class="left">
68 68
             {% for category in selected_categories %}
69 69
             <input type="hidden" name="category_{{ category }}" value="1"/>

+ 1
- 1
searx/templates/search.html 查看文件

@@ -1,4 +1,4 @@
1
-<form method="post" action="{{ url_for('index') }}" id="search_form">
1
+<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form">
2 2
   <div id="search_wrapper">
3 3
     <input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
4 4
     <input type="submit" value="search" id="search_submit" />

+ 7
- 0
searx/webapp.py 查看文件

@@ -123,6 +123,8 @@ def render(template_name, **kwargs):
123 123
     if not 'autocomplete' in kwargs:
124 124
         kwargs['autocomplete'] = autocomplete
125 125
 
126
+    kwargs['method'] = request.cookies.get('method', 'POST')
127
+
126 128
     return render_template(template_name, **kwargs)
127 129
 
128 130
 
@@ -291,6 +293,7 @@ def preferences():
291 293
         selected_categories = []
292 294
         locale = None
293 295
         autocomplete = ''
296
+        method = 'POST'
294 297
         for pd_name, pd in request.form.items():
295 298
             if pd_name.startswith('category_'):
296 299
                 category = pd_name[9:]
@@ -305,6 +308,8 @@ def preferences():
305 308
                                             pd in (x[0] for
306 309
                                                    x in language_codes)):
307 310
                 lang = pd
311
+            elif pd_name == 'method':
312
+                method = pd
308 313
             elif pd_name.startswith('engine_'):
309 314
                 engine_name = pd_name.replace('engine_', '', 1)
310 315
                 if engine_name in engines:
@@ -344,6 +349,8 @@ def preferences():
344 349
                 max_age=cookie_max_age
345 350
             )
346 351
 
352
+        resp.set_cookie('method', method, max_age=cookie_max_age)
353
+
347 354
         return resp
348 355
     return render('preferences.html',
349 356
                   locales=settings['locales'],

+ 9
- 1
versions.cfg 查看文件

@@ -1,4 +1,5 @@
1 1
 [versions]
2
+Babel = 1.3
2 3
 Flask = 0.10.1
3 4
 Flask-Babel = 0.9
4 5
 Jinja2 = 2.7.2
@@ -14,9 +15,11 @@ docutils = 0.11
14 15
 flake8 = 2.1.0
15 16
 itsdangerous = 0.23
16 17
 mccabe = 0.2.1
18
+mock = 1.0.1
17 19
 pep8 = 1.4.6
18 20
 plone.testing = 4.0.8
19 21
 pyflakes = 0.7.3
22
+pytz = 2013b
20 23
 pyyaml = 3.10
21 24
 requests = 2.2.0
22 25
 robotframework-debuglibrary = 0.3
@@ -24,6 +27,7 @@ robotframework-httplibrary = 0.4.2
24 27
 robotframework-selenium2library = 1.5.0
25 28
 robotsuite = 1.4.2
26 29
 selenium = 2.39.0
30
+speaklater = 1.3
27 31
 unittest2 = 0.5.1
28 32
 waitress = 0.8.8
29 33
 zc.recipe.testrunner = 2.0.0
@@ -72,7 +76,7 @@ setuptools = 2.1
72 76
 
73 77
 # Required by:
74 78
 # zope.testrunner==4.4.1
75
-six = 1.5.2
79
+six = 1.6.1
76 80
 
77 81
 # Required by:
78 82
 # collective.recipe.omelette==0.16
@@ -93,3 +97,7 @@ zope.testing = 4.1.2
93 97
 # Required by:
94 98
 # zc.recipe.testrunner==2.0.0
95 99
 zope.testrunner = 4.4.1
100
+
101
+# Required by:
102
+# searx==0.3.0
103
+python-dateutil = 2.2