Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-13 | [Fix] Startpage | joshu9h | |
2020-12-11 | Merge pull request #2358 from dalf/fix-command | Alexandre Flament | |
[fix] command engine: SearchQuery.query is str not bytes | |||
2020-12-11 | Merge pull request #2375 from dalf/raise_for_errors | Alexandre Flament | |
[enh] add raise_for_httperror | |||
2020-12-11 | [enh] add raise_for_httperror | Alexandre Flament | |
check HTTP response: * detect some comme CAPTCHA challenge (no solving). In this case the engine is suspended for long a time. * otherwise raise HTTPError as before the check is done in poolrequests.py (was before in search.py). update qwant, wikipedia, wikidata to use raise_for_httperror instead of raise_for_status | |||
2020-12-11 | Merge pull request #2376 from dalf/fix-mojeek | Alexandre Flament | |
Fix mojeek | |||
2020-12-11 | Merge pull request #2371 from dalf/mod-genius | Alexandre Flament | |
[mod) genious: return valid results even if contents are empty | |||
2020-12-10 | [mod] results: don't crash when an engine don't have a category | Alexandre Flament | |
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. | |||
2020-12-10 | [fix] xpath, mojeek: fix commit 58d72f26925d56e22330c54be03c3dcbee0c4135 | Alexandre Flament | |
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 | |||
2020-12-09 | Merge pull request #2373 from kvch/display-https-engines | Noémi Ványi | |
Display if an engine does not support HTTPS requests | |||
2020-12-09 | display if an engine does not support https | Noémi Ványi | |
Closes #302 | |||
2020-12-09 | [mod) genious: return valid results even if contents are empty | Alexandre Flament | |
2020-12-08 | Merge pull request #2360 from dalf/update-libgen | Alexandre Flament | |
[mod] libgen: update the URL to http://libgen.rs/ | |||
2020-12-08 | Merge pull request #2359 from dalf/update-duden | Alexandre Flament | |
[mod] duden engine | |||
2020-12-08 | Merge pull request #2366 from dalf/remove-seedpeer | Alexandre Flament | |
[remove] seedpeer engine | |||
2020-12-08 | Merge pull request #2362 from return42/use_default_settings | Alexandre Flament | |
[doc] recommend to use 'use_default_settings=True' | |||
2020-12-08 | [doc] recommend to use 'use_default_settings=True' | Markus Heiser | |
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> | |||
2020-12-07 | [remove] seedpeer engine | Alexandre Flament | |
the website is offline. | |||
2020-12-07 | Merge pull request #2364 from dalf/fix-youtube-noapi | Alexandre Flament | |
[fix] youtube_noapi engine | |||
2020-12-07 | Merge pull request #2365 from dalf/fix-soundcloud | Alexandre Flament | |
[fix] soundclound: accept result without content | |||
2020-12-07 | Merge pull request #2361 from dalf/fix-1x | Alexandre Flament | |
[fix] 1x engine | |||
2020-12-07 | Merge pull request #2363 from dalf/fix-wikipedia-minor | Alexandre Flament | |
[fix] wikipedia: minor fix: return no result instead of crash in some very few cases. | |||
2020-12-07 | [fix] soundclound: accept result without content | Alexandre Flament | |
2020-12-07 | [fix] youtube_noapi engine | Alexandre Flament | |
2020-12-07 | [fix] wikipedia: minor fix: return no result instead of crash in some very ↵ | Alexandre Flament | |
few cases. In few cases, the JSON results doesn't contains the key 'type'. | |||
2020-12-07 | [fix] 1x engine | Alexandre Flament | |
2020-12-07 | [fix] command engine: SearchQuery.query is str not bytes | Alexandre Flament | |
see c225db45c8a4ab466bff049216f7e0189dc1b067 | |||
2020-12-07 | [mod] duden engine | Alexandre Flament | |
* add params['soft_max_redirects'] = 1 (when there is spelling suggestion) * avoid try..except * use eval_xpath_* functions | |||
2020-12-07 | [mod] libgen: update the URL to http://libgen.rs/ | Alexandre Flament | |
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/ | |||
2020-12-07 | Merge pull request #2356 from dalf/fix-ddd | Alexandre Flament | |
[fix] duckduckgo_definitions: fix relative image URL | |||
2020-12-06 | Merge pull request #2352 from dalf/no_http | Alexandre Flament | |
Remove HTTP connections as much as possible | |||
2020-12-06 | [fix] duckduckgo_definitions: fix relative image URL | Alexandre Flament | |
ddg returns relative URL to https://duckduckgo.com/ | |||
2020-12-04 | Merge pull request #2354 from dalf/fix-wikipedia | Alexandre Flament | |
[fix] wikipedia engine: don't raise an error when the query is not found | |||
2020-12-04 | [fix] wikipedia engine: don't raise an error when the query is not found | Alexandre Flament | |
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. | |||
2020-12-04 | Merge pull request #2353 from dalf/fix-wikidata | Alexandre Flament | |
[fix] wikidata: fix crash when the item has no description at all and… | |||
2020-12-04 | [fix] wikidata: fix crash when the item has no description at all and at ↵ | Alexandre Flament | |
least one URL. | |||
2020-12-04 | [mod] documentations & comments: update http://* URL to https://*. | Alexandre Flament | |
About http://lesscss.org see https://github.com/less/less-docs/issues/520 | |||
2020-12-04 | [fix] remove searx/engines/filecrop.py (dead code) | Alexandre Flament | |
2020-12-04 | [fix] dbpedia autocomplete (and use HTTPS) | Alexandre Flament | |
2020-12-03 | Merge pull request #2338 from unixfox/issue-template | Alexandre Flament | |
add new issue template | |||
2020-12-03 | add new issue template | Emilien Devos | |
2020-12-03 | Merge pull request #2350 from dalf/mod-engines-report-captcha | Alexandre Flament | |
[mod] stackoverflow & yandex: detect CAPTCHA response | |||
2020-12-03 | [mod] stackoverflow & yandex: detect CAPTCHA response | Alexandre Flament | |
2020-12-03 | Merge pull request #2349 from dalf/fix-settings-loader | Alexandre Flament | |
[fix] settings_loader: don't crash when a key exists only in the user settings | |||
2020-12-03 | [fix] settings_loader: don't crash when a key exists only in the user settings | Alexandre Flament | |
typical use case: result_proxy can be defined in the user settings, but are not defined the default settings.yml | |||
2020-12-03 | Merge pull request #2332 from dalf/metrology-errors | Alexandre Flament | |
[enh] record exception details per engine | |||
2020-12-03 | [mod] various engines: use eval_xpath* functions and searx.exceptions.* | Alexandre Flament | |
Engine list: ahmia, duckduckgo_images, elasticsearch, google, google_images, google_videos, youtube_api | |||
2020-12-03 | [mod] xpath, 1337x, acgsou, apkmirror, archlinux, arxiv: use eval_xpath_* ↵ | Alexandre Flament | |
functions | |||
2020-12-03 | [mod] bing_news: use eval_xpath_getindex | Alexandre Flament | |
remove unused function searx.utils.list_get | |||
2020-12-03 | [enh] record details exception per engine | Alexandre Flament | |
add an new API /stats/errors | |||
2020-12-03 | Merge pull request #2285 from return42/fix-digg | Alexandre Flament | |
bugfix & refactor digg engine |