diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2022-07-25 16:59:55 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2022-07-25 17:22:31 +0200 |
commit | 5795c1971f5931cd7ff0361b7c47f9425a76a112 (patch) | |
tree | cc3cd86856d82325d35115473ef3947b471d3742 /docs/dev | |
parent | b14ec7286d3d6517d5266870d546aaa1c7e41656 (diff) | |
download | searxng-5795c1971f5931cd7ff0361b7c47f9425a76a112.tar.gz searxng-5795c1971f5931cd7ff0361b7c47f9425a76a112.zip |
[fix] update documentation of Search-API (/dev)
This patch fixes a leftover from [#1548], the list of the plugins was not
up-to-date:
- HTTPS_rewrite has been removed (247c46c6b)
- DOAI_rewrite is named 'Open_Access_DOI_rewrite' (575159b)
[#1548] https://github.com/searxng/searxng/pull/1548
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'docs/dev')
-rw-r--r-- | docs/dev/search_api.rst | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/docs/dev/search_api.rst b/docs/dev/search_api.rst index 527259269..3a56b9991 100644 --- a/docs/dev/search_api.rst +++ b/docs/dev/search_api.rst @@ -91,22 +91,32 @@ Parameters ``enabled_plugins`` : optional List of enabled plugins. - :default: ``HTTPS_rewrite``, ``Self_Informations``, - ``Search_on_category_select``, ``Tracker_URL_remover`` + :default: + ``Hash_plugin``, ``Search_on_category_select``, + ``Self_Informations``, ``Tracker_URL_remover``, + ``Ahmia_blacklist`` - :values: ``DOAI_rewrite``, ``HTTPS_rewrite``, ``Infinite_scroll``, - ``Vim-like_hotkeys``, ``Self_Informations``, ``Tracker_URL_remover``, - ``Search_on_category_select``, ``Hostname_replace``, ``Tor_check_plugin`` + :values: + .. enabled by default + + ``Hash_plugin``, ``Search_on_category_select``, + ``Self_Informations``, ``Tracker_URL_remover``, + ``Ahmia_blacklist``, + + .. disabled by default + + ``Hostname_replace``, ``Open_Access_DOI_rewrite``, + ``Vim-like_hotkeys``, ``Tor_check_plugin`` ``disabled_plugins``: optional List of disabled plugins. - :default: ``DOAI_rewrite``, ``Infinite_scroll``, ``Vim-like_hotkeys``, - ``Hostname_replace``, ``Tor_check_plugin`` + :default: + ``Hostname_replace``, ``Open_Access_DOI_rewrite``, + ``Vim-like_hotkeys``, ``Tor_check_plugin`` - :values: ``DOAI_rewrite``, ``HTTPS_rewrite``, ``Infinite_scroll``, - ``Vim-like_hotkeys``, ``Self_Informations``, ``Tracker_URL_remover``, - ``Search_on_category_select``, ``Hostname_replace``, ``Tor_check_plugin`` + :values: + see values from ``enabled_plugins`` ``enabled_engines`` : optional : *all* :origin:`engines <searx/engines>` List of enabled engines. |