Browse Source

Merge pull request #663 from davidar/hoogle

Add Hoogle search engine
Adam Tauber 8 years ago
parent
commit
acfe843ecd
4 changed files with 15 additions and 3 deletions
  1. 1 1
      searx/engines/json_engine.py
  2. 1 1
      searx/engines/xpath.py
  3. 1 1
      searx/results.py
  4. 12 0
      searx/settings.yml

+ 1 - 1
searx/engines/json_engine.py

@@ -81,7 +81,7 @@ def request(query, params):
 
     fp = {'query': query}
     if paging and search_url.find('{pageno}') >= 0:
-        fp['pageno'] = (params['pageno'] + first_page_num - 1) * page_size
+        fp['pageno'] = (params['pageno'] - 1) * page_size + first_page_num
 
     params['url'] = search_url.format(**fp)
     params['query'] = query

+ 1 - 1
searx/engines/xpath.py

@@ -87,7 +87,7 @@ def request(query, params):
 
     fp = {'query': query}
     if paging and search_url.find('{pageno}') >= 0:
-        fp['pageno'] = (params['pageno'] + first_page_num - 1) * page_size
+        fp['pageno'] = (params['pageno'] - 1) * page_size + first_page_num
 
     params['url'] = search_url.format(**fp)
     params['query'] = query

+ 1 - 1
searx/results.py

@@ -28,7 +28,7 @@ def compare_urls(url_a, url_b):
     else:
         host_b = url_b.netloc
 
-    if host_a != host_b or url_a.query != url_b.query:
+    if host_a != host_b or url_a.query != url_b.query or url_a.fragment != url_b.fragment:
         return False
 
     # remove / from the end of the url if required

+ 12 - 0
searx/settings.yml

@@ -281,6 +281,18 @@ engines:
     disabled : True
     shortcut : habr
 
+  - name : hoogle
+    engine : json_engine
+    paging : True
+    search_url : https://www.haskell.org/hoogle/?mode=json&hoogle={query}&start={pageno}
+    results_query : results
+    url_query : location
+    title_query : self
+    content_query : docs
+    page_size : 20
+    categories : it
+    shortcut : ho
+
   - name : ina
     engine : ina
     shortcut : in