From d14e2781b28e77207ab841dd52db0835ee55fcf2 Mon Sep 17 00:00:00 2001 From: misnyo Date: Fri, 25 Aug 2017 00:52:35 +0200 Subject: [fix]torrentz search engine fixed for new version --- searx/settings.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 4da96b5bf..bb06c4a0c 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -552,6 +552,12 @@ engines: timeout : 6.0 disabled : True + - name : torrentz + engine : torrentz + shortcut : tor + url: https://torrentz2.eu/ + timeout : 3.0 + - name : twitter engine : twitter shortcut : tw -- cgit v1.2.3 From f139f9cfdbc8d77eb61724eca253dc1e6ad72ce7 Mon Sep 17 00:00:00 2001 From: misnyo Date: Wed, 30 Aug 2017 16:47:56 +0200 Subject: [mod]blekko images removed --- searx/settings.yml | 6 ------ 1 file changed, 6 deletions(-) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 4da96b5bf..7822c6483 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -647,12 +647,6 @@ engines: shortcut : 1337x disabled : True -#The blekko technology and team have joined IBM Watson! -> https://blekko.com/ -# - name : blekko images -# engine : blekko_images -# locale : en-US -# shortcut : bli - # - name : yacy # engine : yacy # shortcut : ya -- cgit v1.2.3 From 0607b167f85acc6c0ab4c641f14b53cb4190e445 Mon Sep 17 00:00:00 2001 From: misnyo Date: Wed, 30 Aug 2017 18:53:00 +0200 Subject: [fix] faroo json api and image layout fixed --- searx/settings.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index bb06c4a0c..a98fb2663 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -189,11 +189,10 @@ engines: shortcut : et disabled : True -# api-key required: http://www.faroo.com/hp/api/api.html#key -# - name : faroo -# engine : faroo -# shortcut : fa -# api_key : 'apikey' # required! + - name : faroo + engine : faroo + shortcut : fa + disabled : True - name : 500px engine : www500px -- cgit v1.2.3 From 971179587675e1b47301019130a7874196e3f65f Mon Sep 17 00:00:00 2001 From: misnyo Date: Thu, 31 Aug 2017 15:36:49 +0200 Subject: [fix] geektimes.ru xpath fix --- searx/settings.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 8f57e2e84..26d4f8bee 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -321,9 +321,9 @@ engines: engine : xpath paging : True search_url : https://geektimes.ru/search/page{pageno}/?q={query} - url_xpath : //div[@class="search_results"]//a[@class="post__title_link"]/@href - title_xpath : //div[@class="search_results"]//a[@class="post__title_link"] - content_xpath : //div[@class="search_results"]//div[contains(@class, "content")] + url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href + title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"] + content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")] categories : it timeout : 4.0 disabled : True -- cgit v1.2.3 From bf1ca2ccd37dab4d43386e1c9863043c9dd817f5 Mon Sep 17 00:00:00 2001 From: misnyo Date: Thu, 31 Aug 2017 18:26:46 +0200 Subject: [fix] habrahabr.ru xpath fix --- searx/settings.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 26d4f8bee..77d1301b7 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -333,9 +333,9 @@ engines: engine : xpath paging : True search_url : https://habrahabr.ru/search/page{pageno}/?q={query} - url_xpath : //div[@class="search_results"]//a[contains(@class, "post__title_link")]/@href - title_xpath : //div[@class="search_results"]//a[contains(@class, "post__title_link")] - content_xpath : //div[@class="search_results"]//div[contains(@class, "content")] + url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href + title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"] + content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")] categories : it timeout : 4.0 disabled : True -- cgit v1.2.3 From 9b6307a36518179e7b89d6b1966a1384c52bab5f Mon Sep 17 00:00:00 2001 From: misnyo Date: Thu, 31 Aug 2017 17:18:04 +0200 Subject: [fix] gitlab search fixed for proper api usage --- searx/settings.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 8f57e2e84..3d94ac8fa 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -242,15 +242,16 @@ engines: disabled: True - name : gitlab - engine : xpath + engine : json_engine paging : True - search_url : https://gitlab.com/search?page={pageno}&search={query} - url_xpath : //li[@class="project-row"]//a[@class="project"]/@href - title_xpath : //li[@class="project-row"]//span[contains(@class, "project-full-name")] - content_xpath : //li[@class="project-row"]//div[@class="description"]/p + search_url : https://gitlab.com/api/v4/projects?search={query}&page={pageno} + url_query : web_url + title_query : name_with_namespace + content_query : description + page_size : 20 categories : it shortcut : gl - timeout : 5.0 + timeout : 10.0 disabled : True - name : github -- cgit v1.2.3 From 043143c89892c7d4fd4f35766a7d7e4190774d51 Mon Sep 17 00:00:00 2001 From: misnyo Date: Mon, 4 Sep 2017 20:36:27 +0200 Subject: [fix] voat.co search xpath and url fixed --- searx/settings.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index f262f4973..07b7d09cc 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -641,10 +641,10 @@ engines: engine: xpath shortcut: vo categories: social media - search_url : https://voat.co/search?q={query} - url_xpath : //p[contains(@class, "title")]/a/@href - title_xpath : //p[contains(@class, "title")]/a - content_xpath : //span[@class="domain"] + search_url : https://searchvoat.co/?t={query} + url_xpath : //div[@class="entry"]/p/a[@class="title"]/@href + title_xpath : //div[@class="entry"]/p/a[@class="title"] + content_xpath : //div[@class="entry"]/p/span[@class="domain"] timeout : 10.0 disabled : True -- cgit v1.2.3 From eddc162f2c926d3741d3b2b122d0ccbf777c75ef Mon Sep 17 00:00:00 2001 From: Adam Tauber Date: Wed, 27 Sep 2017 00:20:16 +0200 Subject: [fix] remove duplicated german translation - closes #937 --- searx/settings.yml | 1 - 1 file changed, 1 deletion(-) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 07b7d09cc..818a32c1f 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -672,7 +672,6 @@ locales: bg : Български (Bulgarian) cs : Čeština (Czech) de : Deutsch (German) - de_DE : Deutsch (German_Germany) el_GR : Ελληνικά (Greek_Greece) eo : Esperanto (Esperanto) es : Español (Spanish) -- cgit v1.2.3 From e2afc1cdba43cf35327b3b8dfb6d54115035df43 Mon Sep 17 00:00:00 2001 From: Adam Tauber Date: Fri, 6 Oct 2017 20:16:03 +0200 Subject: [mod] disable yahoo by default closes #869 closes #1055 --- searx/settings.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 818a32c1f..185efc30d 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -581,6 +581,7 @@ engines: - name : yahoo engine : yahoo shortcut : yh + disabled : True - name : yandex engine : yandex -- cgit v1.2.3