summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-07-16Allow localization of "Self Informations"Lukáš Kucharczyk
Allows the string "Self Informations" in the plugin of the same name to be localized by wrapping it with gettext().
2020-07-15Merge pull request #2077 from dalf/bangs-no-faviconAlexandre Flament
[mod] bangs.json: remove the favicons
2020-07-15[mod] bangs.json: remove the faviconsDalf
fix #2076
2020-07-13[fix] minor typos in docs/admin/settings.rstMarkus Heiser
This comit is a replacement for https://github.com/asciimoo/searx/pull/2005 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2020-07-13[fix docs] typo in the template to create a new userMarkus Heiser
closes: https://github.com/asciimoo/searx/issues/2062 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2020-07-13Merge pull request #2066 from HamiltonFintech/masterAdam Tauber
mymemory_translated: fix python 3 support
2020-07-12fix python 3 supportGaspard d'Hautefeuille
2020-07-12Merge pull request #2059 from dalf/bang-encodingMarkus Heiser
[mod] external_bang.py: always read bangs.json with a UTF-8 file.
2020-07-11[mod] external_bang.py: always read bangs.json with a UTF-8 file.Dalf
2020-07-11[fix] external_bang - UnicodeDecodeError: 'ascii' codec can't decode (#2043)Markus Heiser
Python's default encoding depends on the platform, set (python) default encoding UTF-8 in uwsgi ini files: LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8 Error pattern: Traceback (most recent call last): File "/usr/local/searx/searx-src/searx/webapp.py", line 74, in <module> from searx.search import SearchWithPlugins, get_search_query_from_webapp File "/usr/local/searx/searx-src/searx/search.py", line 32, in <module> from searx.external_bang import get_bang_url File "/usr/local/searx/searx-src/searx/external_bang.py", line 13, in <module> for bang in json.load(json_file)['bang']: File "/usr/lib/python3.8/json/__init__.py", line 293, in load return loads(fp.read(), File "/usr/lib/python3.8/encodings/ascii.py", line 26, in decode return codecs.ascii_decode(input, self.errors)[0] UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 31341: ordinal not in range(128) close: https://github.com/asciimoo/searx/issues/2041 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2020-07-11Dockerfile: upgrade base to alpine 3.12 (#1983)Wonderfall
Author: Wonderfall <wonderfall@targaryen.house>
2020-07-10Merge pull request #2038 from kvch/contributing-to-searxAdam Tauber
Add PR template and contribution guidelines
2020-07-10Add PR template and contribution guidelinesNoémi Ványi
2020-07-09[fix] typoAdam Tauber
2020-07-09[mod] remove py2 from travis testsAdam Tauber
2020-07-09[enh] release v0.17.0Adam Tauber
2020-07-09[enh] add @piplongrun @jjasonkal @KazamaSion @resynth1943 @ahangarha ↵Adam Tauber
@gordon-quad @999eagle to authors
2020-07-09[enh] update translationsAdam Tauber
2020-07-09[mod] drop py2 supportAdam Tauber
2020-07-08[fix] pep8Adam Tauber
2020-07-07Merge branch 'google-images-fix'Adam Tauber
2020-07-07[fix] revise google images engineMarkus Heiser
this commit is picked from #1985
2020-07-07[fix] revise google engineMarkus Heiser
this commit is picked from #1985
2020-07-06[fix] indicate visually active tab programmatically on the page Preferences ↵Adam Tauber
- #350
2020-07-03Created new plugin type custom_results. Added new plugin bang_redirect (#2027)Lukas van den Berk
* Made first attempt at the bangs redirects plugin. * It redirects. But in a messy way via javascript. * First version with custom plugin * Added a help page and a operator to see all the bangs available. * Changed to .format because of support * Changed to .format because of support * Removed : in params * Fixed path to json file and changed bang operator * Changed bang operator back to & * Made first attempt at the bangs redirects plugin. * It redirects. But in a messy way via javascript. * First version with custom plugin * Added a help page and a operator to see all the bangs available. * Changed to .format because of support * Changed to .format because of support * Removed : in params * Fixed path to json file and changed bang operator * Changed bang operator back to & * Refactored getting search query. Also changed bang operator to ! and is now working. * Removed prints * Removed temporary bangs_redirect.js file. Updated plugin documentation * Added unit test for the bangs plugin * Fixed a unit test and added 2 more for bangs plugin * Changed back to default settings.yml * Added myself to AUTHORS.rst * Refacored working of custom plugin. * Refactored _get_bangs_data from list to dict to improve search speed. * Decoupled bangs plugin from webserver with redirect_url * Refactored bangs unit tests * Fixed unit test bangs. Removed dubbel parsing in bangs.py * Removed a dumb print statement * Refactored bangs plugin to core engine. * Removed bangs plugin. * Refactored external bangs unit tests from plugin to core. * Removed custom_results/bangs documentation from plugins.rst * Added newline in settings.yml so the PR stays clean. * Changed searx/plugins/__init__.py back to the old file * Removed newline search.py * Refactored get_external_bang_operator from utils to external_bang.py * Removed unnecessary import form test_plugins.py * Removed _parseExternalBang and _isExternalBang from query.py * Removed get_external_bang_operator since it was not necessary * Simplified external_bang.py * Simplified external_bang.py * Moved external_bangs unit tests to test_webapp.py. Fixed return in search with external_bang * Refactored query parsing to unicode to support python2 * Refactored query parsing to unicode to support python2 * Refactored bangs plugin to core engine. * Refactored search parameter to search_query in external_bang.py
2020-07-02Merge branch 'colour-contrast'Adam Tauber
2020-07-02[fix] refine contrast ratios of texts and borders - #350Noémi Ványi
2020-06-30Merge pull request #1954 from return42/csp-oscar-themeAdam Tauber
[fix] oscar theme, remove inline style attributes (CSP compliants)
2020-06-30Merge branch 'master' of https://github.com/asciimoo/searx into csp-oscar-themeMarkus Heiser
2020-06-29Merge pull request #1974 from return42/gigablastMarkus Heiser
Revise of the gigablast engine
2020-06-29Merge branch 'master' into gigablastMarkus Heiser
2020-06-29Merge pull request #2036 from 999eagle/patch-yacyAdam Tauber
Fix YaCy text results returned as images
2020-06-29Fix YaCy text results returned as imagesSophie Tauchert
2020-06-29Merge pull request #2000 from gordon-quad/duckduckgo_correctionMarkus Heiser
add correction support for duckduckgo
2020-06-29Merge branch 'master' into duckduckgo_correctionMarkus Heiser
2020-06-29Merge pull request #2024 from return42/blog-dev-in-lxcMarkus Heiser
[blog post] Developing in Linux containers
2020-06-29Merge branch 'master' into blog-dev-in-lxcMarkus Heiser
2020-06-29Merge pull request #1951 from return42/new-readmeAdam Tauber
update und polish README
2020-06-28[fix] rewrite overflow:none as none is an invalid property - $350Adam Tauber
2020-06-28[fix] add aria labels to result links - #350Adam Tauber
2020-06-28Merge branch 'master' into duckduckgo_correctionNoémi Ványi
2020-06-28Merge pull request #2030 from kvch/make-oscar-scalableAdam Tauber
Make Oscar theme scalable
2020-06-28Merge pull request #2032 from kvch/docs-pronounsMarkus Heiser
Use gender neutral pronouns in docs and blog
2020-06-28Use gender neutral pronounsNoémi Ványi
Closes #2031
2020-06-27Make Oscar theme scalableNoémi Ványi
2020-06-26Merge pull request #1950 from return42/about-opensearchMarkus Heiser
[fix] about page- 'How to set as the default search engine?'
2020-06-26Merge branch 'master' into about-opensearchMarkus Heiser
2020-06-26Merge branch 'master' into gigablastMarkus Heiser
2020-06-25Merge pull request #2026 from return42/fix-yhAlexandre Flament
[fix] yahoo engine - changed content_xpath
2020-06-25[fix] yahoo engine - changed content_xpathMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>