Pārlūkot izejas kodu

[enh] show spelling corrections

David A Roberts 8 gadus atpakaļ
vecāks
revīzija
1d30141c20

+ 4
- 0
searx/engines/google.py Parādīt failu

112
 content_xpath = './/span[@class="st"]'
112
 content_xpath = './/span[@class="st"]'
113
 content_misc_xpath = './/div[@class="f slp"]'
113
 content_misc_xpath = './/div[@class="f slp"]'
114
 suggestion_xpath = '//p[@class="_Bmc"]'
114
 suggestion_xpath = '//p[@class="_Bmc"]'
115
+spelling_suggestion_xpath = '//a[@class="spell"]'
115
 
116
 
116
 # map : detail location
117
 # map : detail location
117
 map_address_xpath = './/div[@class="s"]//table//td[2]/span/text()'
118
 map_address_xpath = './/div[@class="s"]//table//td[2]/span/text()'
275
         # append suggestion
276
         # append suggestion
276
         results.append({'suggestion': extract_text(suggestion)})
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
     # return results
282
     # return results
279
     return results
283
     return results
280
 
284
 

+ 4
- 0
searx/results.py Parādīt failu

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

+ 12
- 0
searx/templates/oscar/results.html Parādīt failu

16
             <h1 class="sr-only">{{ _('Search results') }}</h1>
16
             <h1 class="sr-only">{{ _('Search results') }}</h1>
17
             {% include 'oscar/search.html' %}
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
             {% if answers %}
31
             {% if answers %}
20
             {% for answer in answers %}
32
             {% for answer in answers %}
21
             <div class="result well">
33
             <div class="result well">

+ 2
- 0
searx/webapp.py Parādīt failu

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

+ 1
- 0
tests/unit/test_webapp.py Parādīt failu

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