summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-08-10Merge pull request #2131 from MarcAbonce/infobox_styleAdam Tauber
Make infobox shorter by default and add an expand toggle
2020-08-10add toggle to resize infoboxMarc Abonce Seguin
2020-08-09add visually-hidden css class to pointhi styleMarc Abonce Seguin
2020-08-09add class for infobox's official urlMarc Abonce Seguin
2020-08-09set max-height on infobox's imagesMarc Abonce Seguin
2020-08-09add engine's name in infobox's headerMarc Abonce Seguin
2020-08-09reduce space between title and url in infobox headerMarc Abonce Seguin
2020-08-09Merge pull request #2127 from msafadieh/masterAlexandre Flament
[fix] fix the browser autocomplete feature.
2020-08-09Use query params for browser autocompleteMohamad Safadieh
Sending query params over GET seems to be the only way to be able to enable autocomplete in the browser. This commit adds the necessary URL formatting to opensearch.xml. In order to identify queries coming from the URL bar (rather than an AJAX request), which requires a different JSON format and MIME type, the request headers are checked for "X-Requested-With: XMLHttpRequest" which is added by jQuery request.
2020-08-08[fix] set encoding of README.rst explicit in setup.py (utf-8) (#2117)Markus Heiser
## What does this PR do? When installing searx on a centos-7 image [1] an encoding exception is raised from setup.py:: command: /usr/local/searx/searx-pyenv/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/usr/local/searx/searx-src/setup.py'"'"'; __file__='"'"'/usr/local/searx/searx-src/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'rn'"'"', '"'"'n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-pip-egg-info-pidntzkq cwd: /usr/local/searx/searx-src/ Complete output (7 lines): Traceback (most recent call last): File "<string>", line 1, in <module> File "/usr/local/searx/searx-src/setup.py", line 16, in <module> long_description = f.read() File "/usr/lib64/python3.6/encodings/ascii.py", line 26, in decode return codecs.ascii_decode(input, self.errors)[0] UnicodeDecodeError: 'ascii' codec can't decode byte 0xc9 in position 482: ordinal not in range(128) [1] https://uk.images.linuxcontainers.org/ ## Why is this change important? README.rst uses non ASCII characters _(pronunciation səːks.)_ ## How to test this PR locally? install searx on a centos-7 image from https://uk.images.linuxcontainers.org/
2020-08-08[enh] add centos-7 to LXC images (#2118)Markus Heiser
## What does this PR do? To test centos-7 on non centos systems add centos-7 image to the LXC suite. ## Why is this change important? PR #2112 adds centos-7 support to the install scripts ## How to test this PR locally? `sudo ./utils/lxc.sh build searx-centos7`
2020-08-08Fix google images 'get image' button bug from issue #2103 (#2115)Vlad
Closes #2103
2020-08-08add peertube engine (#2109)Michael Ilsaas
2020-08-08Merge pull request #2121 from gangural/random-sha256-fixAlexandre Flament
Fix search error with query 'random sha256'
2020-08-04Fix search error with query 'random sha256'Vlad
2020-08-01Utility scripts adapted to run on CentOS 7 (#2112)Eliesemoule
2020-08-01Merge pull request #2108 from ashtasht/patch-1Noémi Ványi
Change isAlive() to is_alive() as isAlive() is unsupported in newer Python versions
2020-08-01Merge branch 'master' into patch-1Noémi Ványi
2020-08-01Merge pull request #2111 from gangural/issue-2110-fixNoémi Ványi
Fix UI bug when search contain typo Closes #2110
2020-07-31Add clearfix to fix issue 2110Vlad
2020-07-31Change isAlive() to is_alive() as isAlive() is unsupported in newer Python ↵asht
versions
2020-07-30Merge pull request #2106 from kvch/revert-open-result-on-new-tab-pluginAdam Tauber
Revert "[enh] new plugin to open results on new browser tabs"
2020-07-29DOI improvements: enable HTTPS, update URL of doai.io (#1718)Lynda Lopez
- enabling HTTPS for sci-hub.tw by default - making sci-hub the default DOI resolver as it has the largest collection of scientific articles. - replaced doai.io with dissem.in, as it redirects to this new domain. Co-authored-by: Aurora of Earth <auroraofearth@ya.ru>
2020-07-29Revert "[enh] new plugin to open results on new browser tabs"Noémi Ványi
This reverts commit ab6a7601cbdbdd93fa07ec6405bc3167f392b792. Closes #2037
2020-07-28Merge pull request #2104 from kvch/add-gitea-codebergAdam Tauber
Add Gitea engine with Codeberg backend
2020-07-28add Gitea engineNoémi Ványi
Closes #1448 Closes #1447
2020-07-28Replaced dash with em in searx description (#1973)TheEvilSkeleton
Very small change, but it looks better
2020-07-28[add] naver engineVenca24
It adds new search engine for users from the South Korea (and therefore it is disabled by default). Closes #1553
2020-07-28Merge pull request #2074 from asciimoo/external-pluginsNoémi Ványi
This is a second proposal to accomplish plugin decoupling. I think #1938 is highly complicated and does much more than this feature requires, so here is an alternative implementation for the same feature. Please review it and let me know your opinion. This solution supports the use of any kind of standard python modules which implements the required attributes of a plugin, so new plugins can be installed by standard python tools (pip/setup.py). Downsides: - Localization of plugins name/description isn't possible - Plugins have to be updated manually ## What does this PR do? Implements external plugin extensibility. ## Why is this change important? Makes us able to decouple plugins from searx. ## Related issues #1938 #1716 #1878
2020-07-28[enh] copy atime_ns and mtime_ns of external plugin resourcesAdam Tauber
2020-07-28[mod] add dedicated directory to external plugins with gitignore fileAdam Tauber
2020-07-28[fix] correct imported modulesAdam Tauber
2020-07-28[fix] resolve minor review issuesAdam Tauber
2020-07-28[mod] create static directory for each external pluginAdam Tauber
2020-07-28[fix] pep8Adam Tauber
2020-07-28[fix] add plugin sha sum check to be able to copy updated resourcesAdam Tauber
2020-07-28[enh] add external plugin supportAdam Tauber
2020-07-27Merge pull request #2102 from MarcAbonce/wikipedia-api-cleanupAdam Tauber
Fix Wikipedia's paragraph extraction
2020-07-26fix Wikipedia's paragraph extractionMarc Abonce Seguin
2020-07-26Merge pull request #2101 from mikeri/masterAlexandre Flament
Update torrentz2 URL from .eu to .is
2020-07-26Update torrentz2 URL from .eu to .isMichael Ilsaas
2020-07-25Merge pull request #2097 from gardouille/fix-filtron-docMarkus Heiser
Filtron sample: Add missing comma
2020-07-25Filtron sample: Add missing commaGardouille
2020-07-25Merge pull request #2094 from xywei/xpath-handle-relative-urlAdam Tauber
Extract relative urls that do not start with / using xpath engine
2020-07-23Fix relative urls that do not start with '/'xywei
2020-07-22Merge pull request #2091 from dalf/documentaiton-dockerAdam Tauber
[enh] update documentation about docker
2020-07-22[enh] update documentation about dockerDalf
2020-07-16Merge pull request #2079 from KucharczykL/masterAdam Tauber
Allow localization of "Self Informations"
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