configured_engines.rst 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. SearXNG supports {{engines | length}} search engines (of which {{enabled_engine_count}} are enabled by default).
  12. {% for category, engines in engines.items() | groupby('1.categories.0') %}
  13. {{category}} search engines
  14. ---------------------------------------
  15. .. flat-table::
  16. :header-rows: 2
  17. :stub-columns: 1
  18. * - :cspan:`5` Engines configured by default (in :ref:`settings.yml <engine settings>`)
  19. - :cspan:`3` :ref:`Supported features <engine file>`
  20. * - Name
  21. - Shortcut
  22. - Engine
  23. - Disabled
  24. - Timeout
  25. - Weight
  26. - Paging
  27. - Language
  28. - Safe search
  29. - Time range
  30. {% for name, mod in engines | sort_engines %}
  31. * - `{{name}} <{{mod.about and mod.about.website}}>`_
  32. - ``!{{mod.shortcut}}``
  33. - {{mod.__name__}}
  34. - {{(mod.disabled and "y") or ""}}
  35. {%- if mod.about and mod.about.language %}
  36. ({{mod.about.language | upper}})
  37. {%- endif %}
  38. - {{mod.timeout}}
  39. - {{mod.weight or 1 }}
  40. {% if mod.engine_type == 'online' %}
  41. - {{(mod.paging and "y") or ""}}
  42. - {{(mod.language_support and "y") or ""}}
  43. - {{(mod.safesearch and "y") or ""}}
  44. - {{(mod.time_range_support and "y") or ""}}
  45. {% else %}
  46. - :cspan:`3` not applicable ({{mod.engine_type}})
  47. {% endif %}
  48. {% endfor %}
  49. {% endfor %}