diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2019-12-30 20:29:37 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2019-12-30 20:29:37 +0100 |
commit | 10997a01e012502fedb691deb6ad220a09b4f9ed (patch) | |
tree | 5d855faa2eb6ee1cf35da6d3d806bfa1ae316768 /docs | |
parent | 754a10c1c1b66195f3ae7542806593d87158a61b (diff) | |
download | searxng-10997a01e012502fedb691deb6ad220a09b4f9ed.tar.gz searxng-10997a01e012502fedb691deb6ad220a09b4f9ed.zip |
docs(admin): add weight & disabled cols to engine table
BTW: remove internal suspend_end_time
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/admin/engines.rst | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/docs/admin/engines.rst b/docs/admin/engines.rst index 40c3b9e4f..c1c69bb0b 100644 --- a/docs/admin/engines.rst +++ b/docs/admin/engines.rst @@ -1,7 +1,7 @@ .. _engines generic: ======= -engines +Engines ======= .. sidebar:: Further reading .. @@ -22,9 +22,11 @@ Shortcut **S** Language support **L** Timeout **TO** Time range support **TR** Disabled **D** Offline **O** ------------- ----------- -------------------- ------------ -Suspend end **SE** -------------- ----------- --------------------------------- Safe search **SS** +------------- ----------- --------------------------------- +Weigth **W** +------------- ----------- --------------------------------- +Disabled **D** ============= =========== ================================= Configuration defaults (at built time): @@ -48,7 +50,8 @@ Configuration defaults (at built time): - D - TR - O - - SE + - W + - D {% for name, mod in engines.items() %} @@ -63,6 +66,7 @@ Configuration defaults (at built time): - {{(mod.disabled and "y") or ""}} - {{(mod.time_range_support and "y") or ""}} - {{(mod.offline and "y") or ""}} - - {{mod.suspend_end_time}} + - {{mod.weight or 1 }} + - {{(mod.disabled and "y") or ""}} {% endfor %} |