2021-06-04 11:29:58 +02:00
|
|
|
.. _configured engines:
|
2019-12-21 17:13:38 +01:00
|
|
|
|
2021-06-04 11:29:58 +02:00
|
|
|
==================
|
|
|
|
Configured Engines
|
|
|
|
==================
|
2020-11-30 08:35:15 +01:00
|
|
|
|
2019-12-21 17:13:38 +01:00
|
|
|
.. sidebar:: Further reading ..
|
|
|
|
|
2021-06-03 14:54:20 +02:00
|
|
|
- :ref:`engines-dev`
|
2019-12-30 21:56:09 +01:00
|
|
|
- :ref:`settings engine`
|
2020-11-30 08:35:15 +01:00
|
|
|
|
|
|
|
Explanation of the :ref:`general engine configuration` shown in the table
|
|
|
|
:ref:`configured engines`.
|
2019-12-21 17:13:38 +01:00
|
|
|
|
2021-06-04 11:29:58 +02:00
|
|
|
.. table:: The legend for the following table
|
|
|
|
:width: 100%
|
2019-12-21 17:13:38 +01:00
|
|
|
|
2021-12-20 10:07:22 +01:00
|
|
|
========================= =================================
|
2021-06-04 11:29:58 +02:00
|
|
|
:ref:`engine settings` :ref:`engine file`
|
|
|
|
------------------------- ---------------------------------
|
2021-12-20 10:07:22 +01:00
|
|
|
Name Categories
|
|
|
|
------------------------- ---------------------------------
|
|
|
|
Engine Paging support
|
|
|
|
------------------------- ---------------------------------
|
|
|
|
Shortcut Language support
|
|
|
|
Timeout Time range support
|
|
|
|
Disabled Engine type
|
|
|
|
------------------------- ---------------------------------
|
|
|
|
Safe search
|
|
|
|
------------------------- ---------------------------------
|
|
|
|
Weigth
|
|
|
|
------------------------- ---------------------------------
|
|
|
|
Show errors
|
|
|
|
========================= =================================
|
2019-12-21 17:13:38 +01:00
|
|
|
|
2020-12-21 09:53:41 +01:00
|
|
|
.. jinja:: searx
|
2019-12-21 17:13:38 +01:00
|
|
|
|
|
|
|
.. flat-table:: Engines configured at built time (defaults)
|
|
|
|
:header-rows: 1
|
|
|
|
:stub-columns: 2
|
|
|
|
|
2021-12-20 10:07:22 +01:00
|
|
|
* - Name
|
|
|
|
- Shortcut
|
2019-12-21 17:13:38 +01:00
|
|
|
- Engine
|
2021-12-20 10:07:22 +01:00
|
|
|
- Timeout
|
2019-12-21 17:13:38 +01:00
|
|
|
- Categories
|
2021-12-20 10:07:22 +01:00
|
|
|
- Paging
|
|
|
|
- Language
|
|
|
|
- Safe search
|
|
|
|
- Disabled
|
|
|
|
- Time range
|
|
|
|
- Engine type
|
|
|
|
- Weight
|
|
|
|
- Display errors
|
2019-12-21 17:13:38 +01:00
|
|
|
|
|
|
|
{% for name, mod in engines.items() %}
|
|
|
|
|
2021-12-20 08:02:58 +01:00
|
|
|
* - `{{name}} <{{mod.about and mod.about.website}}>`_
|
2019-12-21 17:13:38 +01:00
|
|
|
- !{{mod.shortcut}}
|
|
|
|
- {{mod.__name__}}
|
|
|
|
- {{mod.timeout}}
|
|
|
|
- {{", ".join(mod.categories)}}
|
|
|
|
- {{(mod.paging and "y") or ""}}
|
|
|
|
- {{(mod.language_support and "y") or ""}}
|
|
|
|
- {{(mod.safesearch and "y") or ""}}
|
|
|
|
- {{(mod.disabled and "y") or ""}}
|
|
|
|
- {{(mod.time_range_support and "y") or ""}}
|
2020-12-16 13:41:32 +01:00
|
|
|
- {{mod.engine_type or ""}}
|
2019-12-30 20:29:37 +01:00
|
|
|
- {{mod.weight or 1 }}
|
2020-03-29 13:14:06 +02:00
|
|
|
- {{(mod.display_error_messages and "y") or ""}}
|
2019-12-21 17:13:38 +01:00
|
|
|
|
|
|
|
{% endfor %}
|
2020-11-30 08:35:15 +01:00
|
|
|
|