mirror of
https://github.com/searxng/searxng.git
synced 2025-07-23 13:19:17 +02:00
[feat] tracker url plugin: use ClearURL tracking param list
This commit is contained in:
parent
58df3e8e97
commit
8f7eee2473
4 changed files with 94 additions and 24 deletions
|
@ -23,6 +23,7 @@ OSM_KEYS_TAGS: dict[str, typing.Any]
|
|||
ENGINE_DESCRIPTIONS: dict[str, typing.Any]
|
||||
ENGINE_TRAITS: dict[str, typing.Any]
|
||||
LOCALES: dict[str, typing.Any]
|
||||
TRACKER_PATTERNS: list[dict[str, typing.Any]]
|
||||
|
||||
lazy_globals = {
|
||||
"CURRENCIES": CurrenciesDB(),
|
||||
|
@ -34,6 +35,7 @@ lazy_globals = {
|
|||
"ENGINE_DESCRIPTIONS": None,
|
||||
"ENGINE_TRAITS": None,
|
||||
"LOCALES": None,
|
||||
"TRACKER_PATTERNS": None,
|
||||
}
|
||||
|
||||
data_json_files = {
|
||||
|
@ -45,6 +47,7 @@ data_json_files = {
|
|||
"ENGINE_DESCRIPTIONS": "engine_descriptions.json",
|
||||
"ENGINE_TRAITS": "engine_traits.json",
|
||||
"LOCALES": "locales.json",
|
||||
"TRACKER_PATTERNS": "tracker_patterns.json",
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue