summaryrefslogtreecommitdiff
path: root/searx
AgeCommit message (Collapse)Author
2021-10-08Bump grunt-contrib-jshint in /searx/static/themes/oscardependabot[bot]
Bumps [grunt-contrib-jshint](https://github.com/gruntjs/grunt-contrib-jshint) from 3.0.0 to 3.1.1. - [Release notes](https://github.com/gruntjs/grunt-contrib-jshint/releases) - [Changelog](https://github.com/gruntjs/grunt-contrib-jshint/blob/main/CHANGELOG) - [Commits](https://github.com/gruntjs/grunt-contrib-jshint/commits/v3.1.1) --- updated-dependencies: - dependency-name: grunt-contrib-jshint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2021-10-08Merge pull request #397 from ↵Alexandre Flament
searxng/dependabot/npm_and_yarn/searx/static/themes/simple/master/grunt-contrib-jshint-3.1.1 Bump grunt-contrib-jshint from 3.0.0 to 3.1.1 in /searx/static/themes/simple
2021-10-08[translations] updatesearxng-bot
b2709671 - 2021-10-04 - Markus Heiser <markus.heiser@darmarit.de>
2021-10-08Bump grunt-contrib-jshint in /searx/static/themes/simpledependabot[bot]
Bumps [grunt-contrib-jshint](https://github.com/gruntjs/grunt-contrib-jshint) from 3.0.0 to 3.1.1. - [Release notes](https://github.com/gruntjs/grunt-contrib-jshint/releases) - [Changelog](https://github.com/gruntjs/grunt-contrib-jshint/blob/main/CHANGELOG) - [Commits](https://github.com/gruntjs/grunt-contrib-jshint/commits/v3.1.1) --- updated-dependencies: - dependency-name: grunt-contrib-jshint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2021-10-07[fix] engine torznab - categories, before join convert int to strMarkus Heiser
BTW add init() function and replace SearxEngineAPIException by ValueError. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-10-07[fix] engine torznab - marginal issues reported from lintersMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-10-07[mod] engines - add torznab WebAPIPaolo Basso
2021-10-07Merge pull request #386 from return42/fix-384Alexandre Flament
[mod] set 'engine.supported_languages' from the origin python module
2021-10-07[mod] set 'engine.supported_languages' from the origin python moduleMarkus Heiser
The key of the dictionary 'searx.data.ENGINES_LANGUAGES' is the *engine name* configured in settings.xml. When multiple engines are configured to use the same origin engine (e.g. `engine: google`):: - name: google engine: google use_mobile_ui: false ... - name: google italian engine: google use_mobile_ui: false language: it ... - name: google mobile ui engine: google shortcut: gomui use_mobile_ui: true There exists no entry for ENGINES_LANGUAGES[engine.name] (e.g. `name: google mobile ui` or `name: google italian`). This issue can be solved by recreate the ENGINES_LANGUAGES:: make data.languages But this is nothing an SearXNG admin would like to do when just configuring additional engines, since this just doubles entries in ENGINES_LANGUAGES and BTW: `make data.languages` has various external requirements which might be not installed or not available, on a production host. With this patch, if engine.name fails, ENGINES_LANGUAGES[engine.engine] is used to get the engine.supported_languages (e.g. `google` for the engine named `google mobile`). For an engine, when there is `language: ...` in the YAML settings, the engine supports only one language, in this case engine.supported_languages should contains this value defined in settings.yml (e.g. `it` for the engine named `google italian`). Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> Closes: https://github.com/searxng/searxng/issues/384
2021-10-06[fix] don't mix loaded modules with imported modules (sys.modules)Markus Heiser
The utils.load_module() function is used to load a python file (aka module) and return the module's namespace. SearXNG uses this function to load *engines and answerers* from arbitrary locations with arbitrary modifications. These are not real python modules and it is not intended to mix this *engines and answerers* with the python modules registered in sys.modules. Closes: https://github.com/searxng/searxng/issues/312 Suggested-by: @dalf in https://github.com/searxng/searxng/issues/312 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-10-05Merge pull request #377 from return42/engine-imdbMarkus Heiser
[mod] engines - add IMDB / Internet Movie Database
2021-10-05[mod] engines - IMDB: add thumbnailsAlexandre Flament
2021-10-03Merge pull request #375 from dalf/searxng_extraAlexandre Flament
SearXNG: searx_extra
2021-10-03[build] /staticAlexandre Flament
2021-10-03[mod] engines - add IMDB / Internet Movie DatabasePaul Alcock
Merged from @Guilvareux's commit [1] and slightly modfied / see [2]. [1] https://github.com/searx/searx/pull/2980/commits/f2f90071 [2] https://github.com/searx/searx/pull/2980
2021-10-02SearXNG: searxng_extraAlexandre Flament
2021-10-02SearXNG: environment variablesAlexandre Flament
2021-10-02Merge pull request #367 from dalf/searxng-githubAlexandre Flament
SearXNG: .github, searxng-docker
2021-10-02Merge pull request #360 from return42/ddg-liteMarkus Heiser
Implement a DuckDuckGo Lite engine
2021-10-01[upd] make data.languagesMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-10-01[mod] engine duckduckgo - update supported_languages_urlMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-10-01[mod] engine duckduckgo - use DuckDuckGo-LiteMarkus Heiser
Implement a scrapper for DuckDuckGo-Lite [1]. The existing DuckDuckGo [2] engine does not support paging. DuckDuckgo-Lite is much faster, less verbose and does have a paging option (reversed engineered from the input form of [1]). [1] https://lite.duckduckgo.com/lite [2] https://duckduckgo.com/ Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-10-01[build] /staticAlexandre Flament
2021-10-01SearXNG: simple themeAlexandre Flament
2021-10-01SearXNG: .github, searxng-dockerAlexandre Flament
2021-10-01Merge pull request #361 from dalf/searxng-theme-oscarAlexandre Flament
SearXNG theme oscar
2021-10-01Merge pull request #365 from searxng/update_data_update_wikidata_units.pyMarkus Heiser
Update searx.data - update_wikidata_units.py
2021-10-01Merge pull request #366 from searxng/update_data_update_languages.pyMarkus Heiser
Update searx.data - update_languages.py
2021-10-01Merge pull request #364 from searxng/update_data_update_firefox_version.pyMarkus Heiser
Update searx.data - update_firefox_version.py
2021-10-01Merge pull request #363 from searxng/update_data_update_ahmia_blacklist.pyMarkus Heiser
Update searx.data - update_ahmia_blacklist.py
2021-10-01Update searx.data - update_languages.pydalf
2021-10-01Update searx.data - update_wikidata_units.pydalf
2021-10-01Update searx.data - update_firefox_version.pydalf
2021-10-01Update searx.data - update_ahmia_blacklist.pydalf
2021-10-01Update searx.data - update_currencies.pydalf
2021-09-30[build] /staticAlexandre Flament
2021-09-30SearXNG: oscar themeAlexandre Flament
2021-09-29Merge pull request #353 from return42/stackexchangeAlexandre Flament
[mod] engines - add Stack Exchange API v2.3
2021-09-29[fix] engine stackexchange - decode HTML entities in title & contentMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-09-28[mod] searx.network.stream returns a tuple (response, stream)Alexandre Flament
2021-09-28[fix] searx.network.stream: fix memory leakAlexandre Flament
2021-09-28[mod] engines - add superuser.com (Stack Exchange API)Markus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-09-28[mod] engines - add askubuntu.com (Stack Exchange API)Markus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-09-28[mod] replace old stackoverflow engine by Stack Exchange API v2.3Markus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-09-28[mod] engines - add Stack Exchange API v2.3Markus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-09-28[fix] checker: fix memory usageAlexandre Flament
* download images using the "image_proxy" network (HTTP/1 instead of HTTP/2) * don't cache data: URL (reduce memory usage) * after each test: purge image URL cache then call garbage collector * download only the first 64kb of images
2021-09-28[build] /staticMrPaulBlack
2021-09-28[fix] position of engine description tooltipMrPaulBlack
2021-09-27[build] /staticMarkus Heiser
2021-09-27[theme] simple: do not prefer arial over user's sans-serif fontMarkus Heiser
The default *sans-serif* font from the browsers most often renders much better compared to Arial font. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>