| Age | Commit message (Collapse) | Author |
|
According to
https://github.com/searx/searx/blob/820b468bfe96f693d60ce06f1e78af51f00deefc/searx/engines/__init__.py#L87-L88
an engine can have no category at all.
Without this commit, searx raise an exception in searx/results.py
Note: in this case, the engine is not shown in the preferences.
|
|
before commit 58d72f2, category was not set in xpath.py,
so searx/engines/__init__py was setting the category to ['general']
the commit 58d72f2 set the category to [] which is not replaced by searx/engines/__init__.py
consequence: the mojeek engine is hidden in the preferences.
this commit revert the xpath.py change.
close #2368
|
|
Display if an engine does not support HTTPS requests
|
|
Closes #302
|
|
[mod] libgen: update the URL to http://libgen.rs/
|
|
[mod] duden engine
|
|
[remove] seedpeer engine
|
|
[doc] recommend to use 'use_default_settings=True'
|
|
Since #2291 is merged, it is recommend to use::
use_default_settings=True
1. Add a template file use_default_settings.yml::
SEARX_SETTINGS_TEMPLATE="${REPO_ROOT}/utils/templates/etc/searx/use_default_settings.yml"
2. In Chapter "Configuration" recommend to make use of
'use_default_settings=True' and describe it
3. Rewrite of docs/admin/settings.rst
- move chapter 'settings.yml location' to the top
- update and split chapter 'Global Settings'
4. Add environment SEARX_SETTINGS_TEMPLATE to .config.sh
5. Use environment $SEARX_SETTINGS_TEMPLATE in the utils/searx.sh script
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
|
|
the website is offline.
|
|
[fix] youtube_noapi engine
|
|
[fix] soundclound: accept result without content
|
|
[fix] 1x engine
|
|
[fix] wikipedia: minor fix: return no result instead of crash in some very few cases.
|
|
|
|
|
|
few cases.
In few cases, the JSON results doesn't contains the key 'type'.
|
|
|
|
* add params['soft_max_redirects'] = 1 (when there is spelling suggestion)
* avoid try..except
* use eval_xpath_* functions
|
|
https://libgen.is actually redirect to http://libgen.rs/
It seems there is no HTTPS version:
* https://www.wikidata.org/wiki/Q22017206
* https://librarygenesis.net/
|
|
[fix] duckduckgo_definitions: fix relative image URL
|
|
Remove HTTP connections as much as possible
|
|
ddg returns relative URL to https://duckduckgo.com/
|
|
[fix] wikipedia engine: don't raise an error when the query is not found
|
|
Add a new parameter "raise_for_status", set by default to True.
When True, any HTTP status code >= 300 raise an exception ( #2332 )
When False, the engine can manage the HTTP status code by itself.
|
|
[fix] wikidata: fix crash when the item has no description at all and…
|
|
least one URL.
|
|
About http://lesscss.org see https://github.com/less/less-docs/issues/520
|
|
|
|
|
|
add new issue template
|
|
|
|
[mod] stackoverflow & yandex: detect CAPTCHA response
|
|
|
|
[fix] settings_loader: don't crash when a key exists only in the user settings
|
|
typical use case: result_proxy can be defined in the user settings,
but are not defined the default settings.yml
|
|
[enh] record exception details per engine
|
|
Engine list: ahmia, duckduckgo_images, elasticsearch, google, google_images, google_videos, youtube_api
|
|
functions
|
|
remove unused function searx.utils.list_get
|
|
add an new API /stats/errors
|
|
bugfix & refactor digg engine
|
|
Disable Invidious engine by default
|
|
|
|
- strip html tags and superfluous quotation marks from content
- remove not needed cookie from request
- remove superfluous imports
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
|
|
Eliminate redundant file names which are tested by test.pylint and ignored by
test.pep8
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
|
|
Error pattern::
Engines cannot retrieve results:
digg (unexpected crash time data '2020-10-16T14:09:55Z' does not match format '%Y-%m-%d %H:%M:%S')
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
|
|
Add pylint
|
|
There are 3 invocations:
* one with the default .pylintrc file
* one for searx/engines with some disabled checks and some additional-builtins
* one for the all the code except the engines with some disabled checks
|
|
|