| Age | Commit message (Collapse) | Author |
|
Update translations
|
|
7781625e - 2022-01-06 - Linerly <linerly@protonmail.com>
dcab2ef1 - 2022-01-06 - Markus Heiser <markus.heiser@darmarit.de>
|
|
Drop microsoft academic engine
|
|
Microsoft academic was discontinued on 2021-12-31.
Source: https://www.microsoft.com/en-us/research/project/academic/articles/microsoft-academic-to-expand-horizons-with-community-driven-approach/
|
|
[mod] GitHub workflow: use cache
|
|
[fix] remove broken ? search operator
|
|
[fix] prevent leaflet.{css,js} from polluting git grep results
|
|
Fixes #704.
|
|
The ? search operator has been broken for some time and
currently only raises the question why it's still there.
## Context ##
The query "Paris !images" searches for "Paris" in the "images" category.
Once upon a time Searx supported "Paris ?images" to search for "Paris"
in the currently enabled categories and the "images" category.
The feature makes sense ... the ? syntax does not.
We will hopefully introduce a +!images syntax in the future.
Fixes #702.
|
|
[mod] adjust dockerfiles/uwsgi.ini
|
|
Delete searx/translations/nl_BE
|
|
Introduce `categories_as_tabs` & group engines in tabs
|
|
|
|
|
|
See https://github.com/searxng/searxng/issues/540
|
|
[enh] settings.yml: implement general.enable_metrics
|
|
Document & Pylint scripts in searxng_extra/update
|
|
Upgrade httpx
|
|
searxng.org: update setup.py & settings.yml
|
|
* allow not to record metrics (response time, etc...)
* this commit doesn't change the UI. If the metrics are disabled
/stats and /stats/errors will return empty response.
in /preferences, the columns response time and reliability will be empty.
|
|
httpx 0.21.2 and httpcore 0.14.4 fix multiple issues:
* https://github.com/encode/httpx/releases/tag/0.21.2
* https://github.com/encode/httpcore/releases/tag/0.14.4
so most of the workarounds in searx.network have been removed.
|
|
[fix] debug console (pdb) in a session started by `make run`
|
|
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
|
|
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
|
|
The tab icon names are currently hard coded in the templates.
This commit lets us introduce an icon property in the future, e.g:
categories_as_tabs:
general:
icon: search-outline
|
|
|
|
|
|
|
|
These dictionaries are no longer part of the general category,
so they're no longer queried by default -> we can enable them
by default without degrading general query performance.
|
|
|
|
|
|
|
|
The general category is the category that is searched by default.
From a privacy standpoint it doesn't make sense to send all general
queries to specialized search engines that cannot deal with those
queries anyway.
|
|
Previously we didn't have a good place to put search engines that don't
fit into any of the tab categories. This commit automatically puts
search engines that don't belong to any tab category in an "other"
category, that is only displayed in the user preferences (and not above
search results).
|
|
|
|
|
|
|
|
|
|
|
|
Commit c7f27404 moves the `python -m searx.webapp` process to the background. A
background job can't open a simple python-debugger (pdb) console.
This patch moves all processes to the background except the searx.webapp.
Insert a break point somewhere in the webapp application::
import pdb
pdb.set_trace()
And start a debug session by::
make run
and test you break point.
To test that the entire 'make run' stops in the case of an error in the
themes.live [1] background process try:
make LIVE_THEME=typo-theme-name run
[1] https://github.com/searxng/searxng/pull/664#discussion_r776419585
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
|
|
[mod] manage: add themes.live command (rebuild on modification)
|
|
fixed links from https://searxng.github.io/searxng/ to https://docs.searxng.org/
|
|
[fix] disabling all engines in a category makes the bang search in general
|
|
with this commit, there is no result
|
|
fix minor typo
|
|
[fix] Makefile: mixed tab & space indentation
|
|
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
|
|
[docs] move searxng_extra/ stuff to the developer section.
|
|
Stuff in folder searxng_extra/ is not suitable for normal users and should only
be used by developers.
The script searxng_extra/standalone_searx.py must not give the impression that
it improves privacy. [1]
[1] https://github.com/searxng/searxng/pull/651#issuecomment-1001389726
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
|
|
Previously all categories were displayed as search engine tabs.
This commit changes that so that only the categories listed under
categories_as_tabs in settings.yml are displayed.
This lets us introduce more categories without cluttering up the UI.
Categories not displayed as tabs can still be searched with !bangs.
|