configured_engines.rst 1.3 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: 2
  14. * - :cspan:`6` 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. - Display errors
  24. - Categories
  25. - Paging
  26. - Language
  27. - Safe search
  28. - Time range
  29. - Engine type
  30. {% for name, mod in engines.items() %}
  31. * - `{{name}} <{{mod.about and mod.about.website}}>`_
  32. - !{{mod.shortcut}}
  33. - {{mod.__name__}}
  34. - {{(mod.disabled and "y") or ""}}
  35. - {{mod.timeout}}
  36. - {{mod.weight or 1 }}
  37. - {{(mod.display_error_messages and "y") or ""}}
  38. - {{", ".join(mod.categories)}}
  39. - {{(mod.paging and "y") or ""}}
  40. - {{(mod.language_support and "y") or ""}}
  41. - {{(mod.safesearch and "y") or ""}}
  42. - {{(mod.time_range_support and "y") or ""}}
  43. - {{mod.engine_type or ""}}
  44. {% endfor %}