summaryrefslogtreecommitdiff
path: root/searx
AgeCommit message (Collapse)Author
2019-12-29Merge branch 'master' into fix-engine-spotifyMarkus Heiser
2019-12-24Merge branch 'master' into ne/fix-infinite_scroll-with-vim_bindingsMarkus Heiser
2019-12-24Merge branch 'master' into libgenMarkus Heiser
2019-12-24[Fix] oscar: no HTML escaping prior to outputVipul
When results are fetched from any programming related documentation site (like git-scm.com, docs.python.org etc), content in Info box is shown as raw HTML code. This change addresses the issue by using "safe" filter feature provided by Django. See, - https://docs.djangoproject.com/en/3.0/ref/templates/builtins/#safe - Searx issue tracker (issue #1649), for more information. Resolves: #1649
2019-12-22Switch to https for some domainsVipul
2019-12-22[Fix] Libgen engineVipul
Libgen has switched to new domain (i.e https://libgen.is) with TLS support and older domain (i.e. http://libgen.io) is no longer accessible. See, https://en.wikipedia.org/wiki/Library_Genesis, for more information. Resolves: #1693
2019-12-21hide suggestions box if emptyMarc Abonce Seguin
This bug happens only in python3 because map returns an iterator.
2019-12-21remove empty parenthesis in wikipedia's summaryMarc Abonce Seguin
They're usually IPA pronunciations which are removed by the API.
2019-12-21exclude disambiguation pages from wikipedia infoboxMarc Abonce Seguin
2019-12-21[enh] display error message if gigablast extra param expiredAdam Tauber
2019-12-21[fix] pep8Adam Tauber
2019-12-21[fix] handle empty response from wikipedia engine - closes #1114Adam Tauber
2019-12-21[fix] convert byte query to string in osm engine - fixes #1220Adam Tauber
2019-12-21[fix] fetch extra search param of gigablast - fixes #1293Adam Tauber
2019-12-21[fix] add explicit useragent header to requests - closes #1459Adam Tauber
2019-12-16Fix not jumping to results loaded by infinite scrollNick Espig
Infinite scroll adds a `hr` tag to split up the sections loaded by it. The vim bindings `j` and `k`, which jump to the next and previous result respectively, search for a **direct** sibling with the class `result`. With the `hr` between results a direct sibling cannot be found. To fix this we remove the restriction of it having to be a direct sibling.
2019-12-11Merge pull request #1752 from MarcAbonce/user-agents-updateAdam Tauber
User agents update
2019-12-10theme: oscar - remove dust (comes from PR #1671 implementation)Markus Heiser
was inadvertently included in the commit [1] [1] https://github.com/asciimoo/searx/commit/f34ac58752b3857468d01c79d7bc3409e8b03fe3#diff-0243d1c24e9981002156cc87cc10bd53R103 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-12-10theme: oscar - add accesskey to input tagsMarkus Heiser
l - language field s - search field t - time range field The way to activate the accesskey depends on the browser and its platform [1] [1] https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/accesskey Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-12-10theme: oscar - fix auto-submit on language seletionMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-12-10theme: oscar - tidy up trailing whitespaces and tab usageMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-12-10Merge branch 'master' of https://github.com/asciimoo/searx into dos2unixMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-12-10[mod] tidy oscar HTML outputDalf
2019-12-08themes: remove CR from newlinesMarkus Heiser
Adding a CR in some files and in others not, is a good starting point for a DOS+Unix mess we all have already seen in many projects. Patch fixes all files matching (even those comming from grunt's build):: find ./searx -exec file {} \; | grep CR BTW: Same with mixing TAB and SPACE indent styles in one and the same file. So if sources are tuched here in this patch, its also fixed. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-12-07[fix] update xpaths for new google results pageMarc Abonce Seguin
2019-12-02Merge pull request #1744 from dalf/optimizationsAdam Tauber
[mod] speed optimization
2019-12-02Merge pull request #1758 from return42/ddd-fixAdam Tauber
[fix] duckduckgo_definitions
2019-12-02duckduckgo_definitions: remove the debug messageMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-12-02Merge pull request #1754 from MarcAbonce/seedpeerAdam Tauber
Add Seedpeer again
2019-11-29[fix] duckduckgo_definition issues reported by 'manage.sh test'Markus Heiser
Fix this error while travis build:: /home/travis/build/asciimoo/searx/searx/engines/duckduckgo_definitions.py:21:44: E225 missing whitespace around operator Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-11-29[fix] duckduckgo_definitions - where 'AnswerType' is 'calc'Markus Heiser
Do not try to get text when 'AnswerType' is 'calc'. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-11-29[fix] soundcloud: URLs of JS sources has been movedMarkus Heiser
The client_id is found under (new) URL: https://a-v2.sndcdn.com/assets/49-a0c01933-3.js Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-11-28Merge pull request #1682 from Venca24/devel_mojeekAdam Tauber
[fix] mojeek engine
2019-11-28Merge pull request #1745 from lorddavidiii/python3.8-fixAdam Tauber
Fix python 3.8 compatibility
2019-11-26Merge pull request #1689 from MarcAbonce/images_fixesAdam Tauber
[fix] Google Images
2019-11-24add seedpeer againMarc Abonce Seguin
2019-11-23update user agentsMarc Abonce Seguin
2019-11-23add a shortcut for utils/fetch_firefox_version.py in manage.shMarc Abonce Seguin
2019-11-22[fix] Force Google old UI with a new user agentEmilien Devos
2019-11-16webapp.py: use html.escape if cgi.escape is not availablelorddavidiii
- cgi.escape was removed in python 3.8 - also use html.escape in framalibre.py
2019-11-15[mod] speed optimizationDalf
compile XPath only once avoid redundant call to urlparse get_locale(webapp.py): avoid useless call to request.accept_languages.best_match
2019-10-29Merge branch 'master' into feature/accessibilityMathieu Brunot
2019-10-24Merge branch 'master' into corrections_fixNoémi Ványi
2019-10-22fix out of range error in tracker remover pluginMarc Abonce Seguin
2019-10-22[fix] preserve bangs in correctionsMarc Abonce Seguin
2019-10-16Merge branch 'master' into feature/accessibilityMathieu Brunot
2019-10-16fix pep 8 checkNoémi Ványi
2019-10-16add initial support for offline engines && command engineNoémi Ványi
2019-10-16[mod] remove cloudflare protected digbt from engines listAdam Tauber
2019-10-16[fix] pep8Adam Tauber