Bnyro
224f2250ae
[feat] engine: support for lemmy communities, posts, comments and users
2023-08-10 12:58:40 +02:00
Bnyro
9f82c39610
[mod] engine google_play: raise error on unsupported category
2023-08-10 12:35:24 +02:00
Bnyro
0a99dc85b9
[mod] engine brave: raise error on unsupported category
2023-08-10 12:35:24 +02:00
Bnyro
4731290317
[mod] settings: show weight of each instance
2023-08-10 10:50:14 +02:00
Markus Heiser
733b795d53
[fix] make flask_babel.gettext() work in engine modules (L10n & threads)
...
incident:
flask_babel.gettext() does not work in the engine modules.
cause:
the request() and response() functions of the engine modules run in the
processor, whose search() method runs in a thread and in the threads the
context of the Flask app does not exist. The context of the Flask app is
needed by the gettext() function for the L10n.
Solution:
copy context of the Flask app into the threads. [1]
special case:
We cannot equip the search() method of the processors with the decorator [1],
because the decorator requires a context (Flask app) that does not yet exist
at the time of the initialization of the processors (the initialization of the
processors is part of the initialization of the Flask app).
[1] https://flask.palletsprojects.com/en/2.3.x/api/#flask.copy_current_request_context
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-09 13:27:43 +02:00
allendema_searxng_pi
c00c0c5434
[mod] remove discontinued petalsearch engines
2023-08-09 07:17:40 +02:00
Markus Heiser
b8352eca0c
[mod] brave engines: add fetch_traits() / improve language support
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-08 16:21:45 +02:00
Markus Heiser
460bbe5b81
[mod] implement brave (WEB) engine to replace XPath configuration
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-08 16:21:45 +02:00
Bnyro
d151497db3
[feat] engine: brave - support for news
2023-08-08 16:21:45 +02:00
Bnyro
cae06f2781
[feat] engine: brave - support for videos
2023-08-08 16:21:45 +02:00
Bnyro
73364e158e
[feat] engine: brave - support for images
2023-08-08 16:21:45 +02:00
Markus Heiser
bcaaae699f
[doc] fix some minor typos in the doc-strings of class EngineTraits
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-08 08:15:53 +02:00
Markus Heiser
a2108432f7
[fix] settings.yml: typo in engine name wikipecies -> wikispecies
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-07 10:35:44 +02:00
Markus Heiser
1d0abb7157
[doc] engine bt4g: add documentation to docs/dev/engines/online/
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-06 09:30:48 +02:00
Emilien Devos
0fc8f99ecc
[feat] new engine: bt4g added & enabled and disable by default btdigg
...
Disable btdigg because on most SearXNG instances, SearXNG is blocked by btdigg
due to cloudflare too many requests.
This impementation did not parse the HTML page because there is an API in
XML (RSS). The RSS feed provides fewer data like amount of seeders/leechers and
the files in the torrent file. It's a tradeoff for a "stable" engine as the XML
from RSS content will change way less than the HTML page.
Closes: https://github.com/searxng/searxng/issues/2553
2023-08-06 09:30:48 +02:00
Markus Heiser
dad16c0949
[mod] settings.yml: enable engines from Wikimedia Foundation
...
The Wikimedia wikis [1] engines provide good answers and have short response
times --> no reason to disable these enhgines by default. BTW: this patch adds
a (sub-) category ``wikimedia`` for the engines [1].
[1] https://meta.wikimedia.org/wiki/Wikimedia_wikis
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-04 19:06:50 +02:00
Markus Heiser
db522cf76d
[mod] engine: wikimedia - improve results, add addition settings & doc
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-04 19:06:50 +02:00
Bnyro
7d8c20c80d
[feat] new engine: wikispecies
2023-08-04 19:06:50 +02:00
searxng-bot
9a5e91ce84
[translations] update from Weblate
...
310daeb72
- 2023-08-03 - return42 <markus.heiser@darmarit.de>
01be8a264
- 2023-08-01 - return42 <markus.heiser@darmarit.de>
2023-08-04 09:30:11 +02:00
Markus Heiser
1b030d4b41
[doc] engine: Yacy
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-03 19:58:51 +02:00
zutto
ca518c6803
add option to change yacy search mode
2023-08-03 19:58:51 +02:00
Markus Heiser
203f1f0928
[fix] engine piped: 'invalid content'
...
SearXNG does not allow a None value in the content field of a result item.
If the key (shortDescription, uploaderName) in the JSON response from piped
exists but is set to None, SearXNG ignores this result item::
DEBUG searx : result: invalid content: { .., 'content': None, ..}
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-03 16:23:36 +02:00
Markus Heiser
207fcc0c8c
[mod] engine piped: add paging support
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-03 16:23:36 +02:00
Markus Heiser
ef5831cd84
[mod] engine piped: split into two dedicated engiens for video & music
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-03 16:23:36 +02:00
Markus Heiser
7aa95d2d52
[doc] engine piped: add documentation to docs/dev/engines/online/
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-08-03 16:23:36 +02:00
Bnyro
636bfdac68
[feat] engine: implementation of Piped
2023-08-03 16:23:36 +02:00
dalf
8b4ba204b7
Update searx.data - update_engine_descriptions.py
2023-07-29 11:02:54 +02:00
dalf
d421385dc6
Update searx.data - update_wikidata_units.py
2023-07-29 11:02:23 +02:00
dalf
290f16207b
Update searx.data - update_currencies.py
2023-07-29 11:02:14 +02:00
dalf
fcd2013511
Update searx.data - update_firefox_version.py
2023-07-29 11:01:28 +02:00
dalf
cfa8169509
Update searx.data - update_ahmia_blacklist.py
2023-07-29 09:25:24 +02:00
searxng-bot
f45d1920d9
[translations] update from Weblate
...
ba4888c96
- 2023-07-26 - return42 <markus.heiser@darmarit.de>
6ec8a8a28
- 2023-07-22 - return42 <markus.heiser@darmarit.de>
0a7b701b3
- 2023-07-24 - artnay <jiri.gronroos@iki.fi>
c0b34cbdb
- 2023-07-23 - MonsoonFire <re1qnb5mq@mozmail.com>
37cbd41c2
- 2023-07-22 - return42 <markus.heiser@darmarit.de>
2023-07-29 08:15:21 +02:00
mrpaulblack
65d8b1a310
[fix] remove disabled: false from engine definitions in settings.yml
...
* setting disabled: false is not needed, since it is by default enabled
2023-07-22 18:19:01 +02:00
searxng-bot
51c531d450
[translations] update from Weblate
...
b7f1e9ae
- 2023-07-17 - Hudobni Volk <hudobni.volk@tuta.io>
3c7c821e
- 2023-07-16 - alextecplayz <alextec70@outlook.com>
0e305f84
- 2023-07-17 - return42 <markus.heiser@darmarit.de>
80745a22
- 2023-07-15 - tentsbet <remendne@pentrens.jp>
afef0e2e
- 2023-07-16 - Salif Mehmed <mail@salif.eu>
4a7687ac
- 2023-07-14 - Ivan Gabaldon <admin@inetol.net>
2023-07-22 17:47:05 +02:00
mrpaulblack
b477349824
[build] /static
2023-07-19 15:07:45 +02:00
Kiru
de5c1cedca
fix "#backToTop" button always being clickable
...
`pointer-events` never gets set to "none" when the button is hidden,
allowing you to click the button. And your mouse further changes it's
cursor to the pointer style.
2023-07-19 15:06:09 +02:00
searxng-bot
b7b184244d
[translations] update from Weblate
...
01350cf1
- 2023-07-13 - return42 <markus.heiser@darmarit.de>
5f037a4d
- 2023-07-12 - return42 <markus.heiser@darmarit.de>
820a78ad
- 2023-07-12 - return42 <markus.heiser@darmarit.de>
73037743
- 2023-07-12 - return42 <markus.heiser@darmarit.de>
e656795c
- 2023-07-09 - Linerly <linerly@protonmail.com>
0ee18285
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
c087c7fb
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
6eb318c5
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
3b4a3d1f
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
b3187499
- 2023-07-09 - return42 <markus.heiser@darmarit.de>
c1226646
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
2356a402
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
c9a74b52
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
3d9f2938
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
68af8585
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
261a2a72
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
fcea15cf
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
7685385e
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
ec0a3727
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
0130ddf7
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
b93f9609
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
4a5cdcb3
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
9cba3939
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
d973d937
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
ce076245
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
5c36ccab
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
226ff7d4
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
8148a9ed
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
840bc189
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
51ffc22e
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
394ec63e
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
428c16a8
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
218cf51e
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
70260934
- 2023-07-09 - ghose <correo@xmgz.eu>
c6244c2b
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
b92dc5c1
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
43917957
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
df1bf630
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
d1c00dff
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
0a6da54f
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
12377e28
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
b5b8ea78
- 2023-07-07 - gallegonovato <fran-carro@hotmail.es>
ec31e65f
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
6c33b1fe
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
393d390c
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
a4f6b353
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
0f8d6b6b
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
67f2fc96
- 2023-07-08 - Fjuro <ifjuro@proton.me>
5f2d3f02
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
5ae2b8dc
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
0bd4fb1e
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
ce768726
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
a22ae2f2
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
b5b8774f
- 2023-07-08 - return42 <markus.heiser@darmarit.de>
2023-07-14 10:21:27 +02:00
Paolo Basso
cada89ee36
[feat] engine: re-enables z-library (zlibrary-global.se)
...
- re-enables z-library as the new domain zlibrary-global.se is now available
from the open web. The announcement of the domain:
https://www.reddit.com/r/zlibrary/comments/13whe08/mod_note_zlibraryglobalse_domain_is_officially/
It is an official domain, it requires to log in to the "personal" subdomain
only to download files, but the search works.
- changes the result template of zlibrary to paper.html, filling the appropriate fields
- implements language filtering for zlibrary
- implement zlibrary custom filters (engine traits)
- refactor and document the zlibrary engine
2023-07-07 21:36:51 +02:00
Hackurei
cb92767f19
[feat] enigine: add CrowdView forum search engine
2023-07-07 21:36:11 +02:00
searxng-bot
4a2f310da3
[translations] update from Weblate
...
152f2008
- 2023-07-05 - return42 <markus.heiser@darmarit.de>
9dbf6b22
- 2023-07-01 - return42 <markus.heiser@darmarit.de>
4ad4c00f
- 2023-07-01 - Bananhylsa <thayer@hjemmeserver.net>
2023-07-07 21:13:47 +02:00
Markus Heiser
5720844fcd
[doc] rearranges Settings & Engines docs for better readability
...
We have built up detailed documentation of the *settings* and the *engines* over
the past few years. However, this documentation was still spread over various
chapters and was difficult to navigate in its entirety.
This patch rearranges the Settings & Engines documentation for better
readability.
To review new ordered docs::
make docs.clean docs.live
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-07-01 22:45:19 +02:00
searxng-bot
81c9a18456
[translations] update from Weblate
...
2238e87b
- 2023-06-28 - jenishngl <jenishngl+codeberg@gmail.com>
c70d228a
- 2023-06-24 - nogb <u8cn71wq@yogibo.anonaddy.me>
389c0c62
- 2023-06-24 - return42 <markus.heiser@darmarit.de>
656d9fcb
- 2023-06-23 - return42 <markus.heiser@darmarit.de>
a9c9b116
- 2023-06-25 - alma <alma@users.noreply.translate.codeberg.org>
528b845f
- 2023-06-24 - nogb <u8cn71wq@yogibo.anonaddy.me>
b8c50f23
- 2023-06-23 - return42 <markus.heiser@darmarit.de>
39f47c0f
- 2023-06-23 - return42 <markus.heiser@darmarit.de>
ae0aa811
- 2023-06-24 - Fjuro <ifjuro@proton.me>
c8216259
- 2023-06-26 - lemonadeforlife <nahianlabiblimon44@gmail.com>
2023-06-30 11:49:07 +02:00
dalf
fbb72fc1f4
Update searx.data - update_engine_descriptions.py
2023-06-29 13:59:25 +02:00
Markus Heiser
87e7926ae9
[fix] engine: Anna's Archive - grep results from '.js-scroll-hidden' elements
...
The renderuing of the WEB page is very strange; except the firts position all
other positions of Anna's result page are enclosed in SGML comments. These
cooments are *uncommented* by some JS code, see query of the class
'.js-scroll-hidden' in Anna's HTML template [1].
[1] https://annas-software.org/AnnaArchivist/annas-archive/-/blob/main/allthethings/templates/macros/md5_list.html
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-06-29 09:32:57 +02:00
Markus Heiser
e2df6b77a3
[mod] engine: Anna's Archive - additionl settings (content, sort, ext)
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-06-29 09:32:57 +02:00
Markus Heiser
eafc2906f1
[mod] engine: Anna's Archive - fetch search arguments from search form
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-06-29 09:32:57 +02:00
Paolo Basso
7adb9090e5
[mod] engine: Anna's Archive - add language support
2023-06-29 09:32:57 +02:00
Paolo Basso
e5637fe7b9
[feat] engine: implementation of Anna's Archive
...
Anna's Archive [1] is a free non-profit online shadow library metasearch engine
providing access to a variety of book resources (also via IPFS), created by a
team of anonymous archivists [2].
[1] https://annas-archive.org/
[2] https://annas-software.org/AnnaArchivist/annas-archive
2023-06-29 09:32:57 +02:00
Markus Heiser
fd26f37073
[upd] make data.all
...
- ahmia_blacklist.txt
- currencies.json
- engine_descriptions.json
- engine_traits.json
- osm_keys_tags.json
- useragents.json
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-06-28 21:21:53 +02:00
Markus Heiser
efea962504
[fix] simple template: preferences - add missing icon_smal import
...
Related: https://github.com/searxng/searxng/commit/2149e88bdd64#r119535272
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2023-06-28 18:36:52 +02:00