From f4525880ed5f965ac4c241638933842a27a2acf7 Mon Sep 17 00:00:00 2001 From: potato Date: Tue, 6 Sep 2016 11:47:27 +0200 Subject: [enh] dictionary engine added --- searx/settings.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 2c034a863..b998e0c0d 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -495,6 +495,10 @@ engines: timeout: 6.0 categories : science + - name : dictionary + engine : dictionary + shortcut : dc + #The blekko technology and team have joined IBM Watson! -> https://blekko.com/ # - name : blekko images # engine : blekko_images -- cgit v1.2.3 From 5416f0f248e1c8072c69b4a272af07bd4c0d8e5e Mon Sep 17 00:00:00 2001 From: potato Date: Tue, 6 Sep 2016 12:50:56 +0200 Subject: [enh] dictionary engine renamed to dictzone --- searx/settings.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 8c552eb02..ce768ce81 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -495,8 +495,8 @@ engines: timeout: 6.0 categories : science - - name : dictionary - engine : dictionary + - name : dictzone + engine : dictzone shortcut : dc #The blekko technology and team have joined IBM Watson! -> https://blekko.com/ -- cgit v1.2.3 From ab471fd13b3891a5a924e8c2cd18a1079e7ac8e0 Mon Sep 17 00:00:00 2001 From: potato Date: Tue, 6 Sep 2016 15:40:07 +0200 Subject: [enh] mymemory translated engine added for multi-word translations --- 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 ce768ce81..ba5824bb1 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -499,6 +499,14 @@ engines: engine : dictzone shortcut : dc + - name : mymemory translated + engine : translated + shortcut : tl + timeout : 5.0 + # You can use without an API key, but you are limited to 1000 words/day + # See : http://mymemory.translated.net/doc/usagelimits.php + # api_key : '' + #The blekko technology and team have joined IBM Watson! -> https://blekko.com/ # - name : blekko images # engine : blekko_images -- cgit v1.2.3 From 8c72a22757290754fc15fecb82dd157f6ea56a7f Mon Sep 17 00:00:00 2001 From: potato Date: Tue, 6 Sep 2016 16:12:34 +0200 Subject: [enh] api_key usage, disable the engine by default --- searx/settings.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index ba5824bb1..63a4b0acf 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -7,7 +7,7 @@ search: autocomplete : "" # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "startpage", "wikipedia" - leave blank to turn it off by default server: - port : 8888 + port : 8889 bind_address : "127.0.0.1" # address to listen on secret_key : "ultrasecretkey" # change this! base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/" @@ -503,6 +503,7 @@ engines: engine : translated shortcut : tl timeout : 5.0 + disabled : True # You can use without an API key, but you are limited to 1000 words/day # See : http://mymemory.translated.net/doc/usagelimits.php # api_key : '' -- cgit v1.2.3 From 5ed9846bbf9ac990b35b4860d5e63bd689f41de1 Mon Sep 17 00:00:00 2001 From: potato Date: Tue, 6 Sep 2016 16:35:12 +0200 Subject: [fix] revert the port change --- searx/settings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 63a4b0acf..4969c4ac6 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -7,7 +7,7 @@ search: autocomplete : "" # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "startpage", "wikipedia" - leave blank to turn it off by default server: - port : 8889 + port : 8888 bind_address : "127.0.0.1" # address to listen on secret_key : "ultrasecretkey" # change this! base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/" -- cgit v1.2.3