From ee320d4e5b3ae4298334801b1d002b4f59d741e5 Mon Sep 17 00:00:00 2001 From: David A Roberts Date: Sun, 14 Aug 2016 19:25:29 +1000 Subject: Online Etymology Dictionary --- searx/settings.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index f0d33e50e..b875c5b12 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -145,6 +145,17 @@ engines: shortcut : ddg disabled : True + - name : etymonline + engine : xpath + paging : True + search_url : http://etymonline.com/?search={query}&p={pageno} + url_xpath : //dt/a[1]/@href + title_xpath : //dt + content_xpath : //dd + suggestion_xpath : //a[@class="crossreference"] + first_page_num : 0 + shortcut : et + # api-key required: http://www.faroo.com/hp/api/api.html#key # - name : faroo # engine : faroo -- cgit v1.2.3 From 96c8d36e7b3c7c27b368aa3bd43e0d6fed79fc6d Mon Sep 17 00:00:00 2001 From: Stefan Antoni Date: Sat, 24 Dec 2016 16:44:12 +0100 Subject: Add ccctv engine to settings.yml --- searx/settings.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 527c80829..3baf85ec2 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -91,6 +91,16 @@ engines: disabled : True shortcut : bb + - name : ccc-tv + engine : xpath + paging : False + search_url : https://media.ccc.de/search/?q={query} + url_xpath : //div[@class="caption"]/h3/a/@href + title_xpath : //div[@class="caption"]/h3/a/text() + content_xpath : //div[@class="caption"]/h4/@title + categories : videos + shortcut : c3tv + - name : crossref engine : json_engine paging : True -- cgit v1.2.3 From b6fc1546160285a2e0049d20cbd7e64269db1875 Mon Sep 17 00:00:00 2001 From: Adam Tauber Date: Sat, 24 Dec 2016 22:23:36 +0100 Subject: [enh] add searx engine --- searx/settings.yml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 527c80829..62c6b953e 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -441,6 +441,14 @@ engines: shortcut : scc disabled : True +# - name : searx +# engine : searx_engine +# shortcut : se +# instance_urls : +# - http://127.0.0.1:8888/ +# - ... +# disabled : True + - name : spotify engine : spotify shortcut : stf -- cgit v1.2.3 From 07448e15e439dfee1d531ab9d1fd3aab15af5253 Mon Sep 17 00:00:00 2001 From: Adam Tauber Date: Sun, 25 Dec 2016 09:34:17 +0100 Subject: [fix] disable etymonline by default - closes #789 --- 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 62c6b953e..01ac69de4 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -164,6 +164,7 @@ engines: suggestion_xpath : //a[@class="crossreference"] first_page_num : 0 shortcut : et + disabled : True # api-key required: http://www.faroo.com/hp/api/api.html#key # - name : faroo -- cgit v1.2.3 From 89914e52e36a5048ec95dd075708f9d2bedf9ac1 Mon Sep 17 00:00:00 2001 From: Stefan Antoni Date: Sun, 25 Dec 2016 22:04:45 +0100 Subject: Update settings.yml --- 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 539406d61..69699605d 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -99,6 +99,7 @@ engines: title_xpath : //div[@class="caption"]/h3/a/text() content_xpath : //div[@class="caption"]/h4/@title categories : videos + disabled : True shortcut : c3tv - name : crossref -- cgit v1.2.3 From a98bbefbcf89ad8d5959c0ddd1c02ab65b92913d Mon Sep 17 00:00:00 2001 From: Adam Tauber Date: Sun, 25 Dec 2016 23:02:57 +0100 Subject: [enh] configurable listening http protocol version --- 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 69699605d..a475433a9 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -13,6 +13,7 @@ server: secret_key : "ultrasecretkey" # change this! base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/" image_proxy : False # Proxying image results through searx + http_protocol_version : "1.0" # 1.0 and 1.1 are supported ui: themes_path : "" # Custom ui themes path - leave it blank if you didn't change -- cgit v1.2.3