| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-12-18 | [mod] searx.search.SearchQuery: remove categories parameter | Alexandre Flament | |
| The categories parameter is useless in the constructor: it is always the categories from the EngineRef. The categories becomes a property. | |||
| 2020-12-18 | [mod] Makefile: make CONTACT_URL optional | Alexandre Flament | |
| 2020-12-18 | Add link to contact instance maintainer to footer of each page (#2391) | BBaoVanC | |
| 2020-12-17 | [fix] fix of PR #2225 | Alexandre Flament | |
| 2020-12-17 | Merge pull request #2225 from dalf/processors | Alexandre Flament | |
| Processors | |||
| 2020-12-17 | [mod] dictzone, translated, currency_convert: use engine_type online_curency ↵ | Alexandre Flament | |
| and online_dictionnary | |||
| 2020-12-17 | [mod] split searx.search into different processors | Alexandre Flament | |
| see searx.search.processors.abstract.EngineProcessor First the method searx call the get_params method. If the return value is not None, then the searx call the method search. | |||
| 2020-12-17 | [mod] searx.search: search_multiple_requests is a method of Search class | Alexandre Flament | |
| 2020-12-17 | [mod] move seax/search.py to searx/search/__init__.py | Alexandre Flament | |
| 2020-12-17 | Merge pull request #2344 from dalf/mod-themes | Alexandre Flament | |
| [mod] themes: remove legacy, courgette and pix-art themes | |||
| 2020-12-17 | [mod] themes: remove legacy, courgette and pix-art themes | Alexandre Flament | |
| 2020-12-17 | Merge pull request #2396 from lucky13820/patch-1 | Alexandre Flament | |
| Fix the StartPage result title is showing the url | |||
| 2020-12-17 | Merge pull request #2387 from return42/issue-2383 | Alexandre Flament | |
| [themes] add hyperlink to searx instances list in error message | |||
| 2020-12-16 | Fix the StartPage result title is showing the url | lucky13820 | |
| Fix the issue 2395 where StartPage result title is showing the url. https://github.com/searx/searx/issues/2395 | |||
| 2020-12-16 | [themes] add hyperlink to searx instances list in error message | Markus Heiser | |
| closes: #2383 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-12-14 | Merge pull request #2389 from searx/update-changelog | Alexandre Flament | |
| prepare release 0.18.0: update CHANGELOG.rst | |||
| 2020-12-14 | prepare release 0.18.0 | Alexandre Flament | |
| 2020-12-14 | Merge pull request #2384 from return42/improve-doc | Alexandre Flament | |
| Improve doc of the installation skripts | |||
| 2020-12-14 | Merge pull request #2388 from searx/update-authors | Alexandre Flament | |
| update AUTHORS.rst with new contributors | |||
| 2020-12-14 | Merge pull request #2380 from return42/dev-quickstart | Alexandre Flament | |
| [doc] update developer quickstart guide | |||
| 2020-12-14 | update AUTHORS.rst with new contributors | Alexandre Flament | |
| 2020-12-14 | Merge pull request #2385 from joshu9h/patch-1 | Alexandre Flament | |
| [Fix] Startpage | |||
| 2020-12-13 | Merge pull request #2372 from dalf/remove-broken-engines | Alexandre Flament | |
| [remove] remove searchcode_doc and twitter | |||
| 2020-12-13 | [Fix] Startpage | joshu9h | |
| 2020-12-13 | [doc] add a tip about how to brand and stash a searx instance setup | Markus Heiser | |
| BTW: drop a trailing whitespace Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-12-13 | [doc] document why to use sudoer to run intsallation scripts | Markus Heiser | |
| related to: - https://gist.github.com/dalf/60450e19b042bd39b9ce470c095d89b3#gistcomment-3263827 - https://github.com/searx/searx/issues/2013#issuecomment-647132313 - https://github.com/searx/searx/issues/2017#issuecomment-647700327 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 2020-12-12 | [doc] update developer quickstart guide | Markus Heiser | |
| See https://github.com/searx/searx/issues/2369#issuecomment-740652878 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> | |||
| 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 | [remove] remove searchcode_doc and twitter | Alexandre Flament | |
| * twitter: the API has changed. the engine needs to rewritten. * searchcode_doc: the API about documentation doesn't exist anymore. | |||
| 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 | |