From 9485179064b4eb28f2813eba3c295edca3b0db7f Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Mon, 21 Dec 2020 00:37:45 +0100 Subject: [mod] move brand options from Makefile to settings.yml Signed-off-by: Markus Heiser --- searx/brand.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'searx/brand.py') diff --git a/searx/brand.py b/searx/brand.py index 7fcab6fad..cede5a270 100644 --- a/searx/brand.py +++ b/searx/brand.py @@ -1,7 +1,9 @@ +SEARX_URL = '' GIT_URL = 'https://github.com/searx/searx' GIT_BRANCH = 'master' ISSUE_URL = 'https://github.com/searx/searx/issues' -SEARX_URL = 'https://searx.me' DOCS_URL = 'https://searx.github.io/searx' PUBLIC_INSTANCES = 'https://searx.space' CONTACT_URL = '' +WIKI_URL = 'https://github.com/searx/searx/wiki' +TWITTER_URL = 'https://twitter.com/Searx_engine' -- cgit v1.2.3 From 9e53470b4cf533b890a2f57debd2f2b4198b4dd1 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Sun, 27 Dec 2020 14:39:48 +0100 Subject: [mod] get rid of searx/brand.py Removes module searx/brand.py and creates a namespace at searx.brand. This patch is a first 'proof of concept'. Later we can decide to remove the brand namespace entirely or not. Signed-off-by: Markus Heiser --- searx/brand.py | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 searx/brand.py (limited to 'searx/brand.py') diff --git a/searx/brand.py b/searx/brand.py deleted file mode 100644 index cede5a270..000000000 --- a/searx/brand.py +++ /dev/null @@ -1,9 +0,0 @@ -SEARX_URL = '' -GIT_URL = 'https://github.com/searx/searx' -GIT_BRANCH = 'master' -ISSUE_URL = 'https://github.com/searx/searx/issues' -DOCS_URL = 'https://searx.github.io/searx' -PUBLIC_INSTANCES = 'https://searx.space' -CONTACT_URL = '' -WIKI_URL = 'https://github.com/searx/searx/wiki' -TWITTER_URL = 'https://twitter.com/Searx_engine' -- cgit v1.2.3