浏览代码

[enh] show spelling corrections

David A Roberts 8 年前
父节点
当前提交
1d30141c20
共有 5 个文件被更改,包括 23 次插入0 次删除
  1. 4
    0
      searx/engines/google.py
  2. 4
    0
      searx/results.py
  3. 12
    0
      searx/templates/oscar/results.html
  4. 2
    0
      searx/webapp.py
  5. 1
    0
      tests/unit/test_webapp.py

+ 4
- 0
searx/engines/google.py 查看文件

@@ -112,6 +112,7 @@ title_xpath = './/h3'
112 112
 content_xpath = './/span[@class="st"]'
113 113
 content_misc_xpath = './/div[@class="f slp"]'
114 114
 suggestion_xpath = '//p[@class="_Bmc"]'
115
+spelling_suggestion_xpath = '//a[@class="spell"]'
115 116
 
116 117
 # map : detail location
117 118
 map_address_xpath = './/div[@class="s"]//table//td[2]/span/text()'
@@ -275,6 +276,9 @@ def response(resp):
275 276
         # append suggestion
276 277
         results.append({'suggestion': extract_text(suggestion)})
277 278
 
279
+    for correction in dom.xpath(spelling_suggestion_xpath):
280
+        results.append({'correction': extract_text(correction)})
281
+
278 282
     # return results
279 283
     return results
280 284
 

+ 4
- 0
searx/results.py 查看文件

@@ -127,6 +127,7 @@ class ResultContainer(object):
127 127
         self.infoboxes = []
128 128
         self.suggestions = set()
129 129
         self.answers = set()
130
+        self.corrections = set()
130 131
         self._number_of_results = []
131 132
         self._ordered = False
132 133
         self.paging = False
@@ -140,6 +141,9 @@ class ResultContainer(object):
140 141
             elif 'answer' in result:
141 142
                 self.answers.add(result['answer'])
142 143
                 results.remove(result)
144
+            elif 'correction' in result:
145
+                self.corrections.add(result['correction'])
146
+                results.remove(result)
143 147
             elif 'infobox' in result:
144 148
                 self._merge_infobox(result)
145 149
                 results.remove(result)

+ 12
- 0
searx/templates/oscar/results.html 查看文件

@@ -16,6 +16,18 @@
16 16
             <h1 class="sr-only">{{ _('Search results') }}</h1>
17 17
             {% include 'oscar/search.html' %}
18 18
 
19
+            {% if corrections %}
20
+            <div class="result">
21
+                <span class="result_header text-muted form-inline pull-left suggestion_item">{{ _('Try searching for:') }}</span>
22
+                {% for correction in corrections %}
23
+                    <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" role="navigation" class="form-inline pull-left suggestion_item">
24
+                        <input type="hidden" name="q" value="{{ correction }}">
25
+                        <button type="submit" class="btn btn-default btn-xs">{{ correction }}</button>
26
+                    </form>
27
+                {% endfor %}
28
+            </div>
29
+            {% endif %}
30
+
19 31
             {% if answers %}
20 32
             {% for answer in answers %}
21 33
             <div class="result well">

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

@@ -479,6 +479,7 @@ def index():
479 479
                                     'number_of_results': number_of_results,
480 480
                                     'results': results,
481 481
                                     'answers': list(result_container.answers),
482
+                                    'corrections': list(result_container.corrections),
482 483
                                     'infoboxes': result_container.infoboxes,
483 484
                                     'suggestions': list(result_container.suggestions)}),
484 485
                         mimetype='application/json')
@@ -515,6 +516,7 @@ def index():
515 516
         advanced_search=advanced_search,
516 517
         suggestions=result_container.suggestions,
517 518
         answers=result_container.answers,
519
+        corrections=result_container.corrections,
518 520
         infoboxes=result_container.infoboxes,
519 521
         paging=result_container.paging,
520 522
         current_language=search_query.lang,

+ 1
- 0
tests/unit/test_webapp.py 查看文件

@@ -36,6 +36,7 @@ class ViewsTestCase(SearxTestCase):
36 36
         def search_mock(search_self, *args):
37 37
             search_self.result_container = Mock(get_ordered_results=lambda: self.test_results,
38 38
                                                 answers=set(),
39
+                                                corrections=set(),
39 40
                                                 suggestions=set(),
40 41
                                                 infoboxes=[],
41 42
                                                 results=self.test_results,