configured_engines.rst 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .. _configured engines:
  2. ==================
  3. Configured Engines
  4. ==================
  5. .. sidebar:: Further reading ..
  6. - :ref:`engines-dev`
  7. - :ref:`settings engine`
  8. Explanation of the :ref:`general engine configuration` shown in the table
  9. :ref:`configured engines`.
  10. .. jinja:: searx
  11. .. flat-table::
  12. :header-rows: 2
  13. :stub-columns: 1
  14. * - :cspan:`5` Engines configured by default (in :ref:`settings.yml <engine settings>`)
  15. -
  16. - :cspan:`3` :ref:`Supported features <engine file>`
  17. * - Name
  18. - Shortcut
  19. - Engine
  20. - Disabled
  21. - Timeout
  22. - Weight
  23. - Categories
  24. - Paging
  25. - Language
  26. - Safe search
  27. - Time range
  28. {% for name, mod in engines.items() %}
  29. * - `{{name}} <{{mod.about and mod.about.website}}>`_
  30. - ``!{{mod.shortcut}}``
  31. - {{mod.__name__}}
  32. - {{(mod.disabled and "y") or ""}}
  33. - {{mod.timeout}}
  34. - {{mod.weight or 1 }}
  35. - {{", ".join(mod.categories)}}
  36. {% if mod.engine_type == 'online' %}
  37. - {{(mod.paging and "y") or ""}}
  38. - {{(mod.language_support and "y") or ""}}
  39. - {{(mod.safesearch and "y") or ""}}
  40. - {{(mod.time_range_support and "y") or ""}}
  41. {% else %}
  42. - :cspan:`3` not applicable ({{mod.engine_type}})
  43. {% endif %}
  44. {% endfor %}