engines.rst 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. =======
  2. Engines
  3. =======
  4. Special Engine Settings
  5. =======================
  6. .. sidebar:: Further reading ..
  7. - :ref:`settings engine`
  8. - :ref:`engine settings` & :ref:`engine file`
  9. .. toctree::
  10. :maxdepth: 1
  11. engines/recoll.rst
  12. .. _engines generic:
  13. General Engine Settings
  14. =======================
  15. Explanation of the :ref:`general engine configuration` shown in the table
  16. :ref:`configured engines`.
  17. ============= =========== ==================== ============
  18. :ref:`engine settings` :ref:`engine file`
  19. ------------------------- ---------------------------------
  20. Name (cfg) Categories
  21. ------------------------- ---------------------------------
  22. Engine .. Paging support **P**
  23. ------------------------- -------------------- ------------
  24. Shortcut **S** Language support **L**
  25. Timeout **TO** Time range support **TR**
  26. Disabled **D** Engine type **ET**
  27. ------------- ----------- -------------------- ------------
  28. Safe search **SS**
  29. ------------- ----------- ---------------------------------
  30. Weigth **W**
  31. ------------- ----------- ---------------------------------
  32. Disabled **D**
  33. ------------- ----------- ---------------------------------
  34. Show errors **DE**
  35. ============= =========== =================================
  36. .. _configured engines:
  37. .. jinja:: searx
  38. .. flat-table:: Engines configured at built time (defaults)
  39. :header-rows: 1
  40. :stub-columns: 2
  41. * - Name (cfg)
  42. - S
  43. - Engine
  44. - TO
  45. - Categories
  46. - P
  47. - L
  48. - SS
  49. - D
  50. - TR
  51. - ET
  52. - W
  53. - D
  54. - DE
  55. {% for name, mod in engines.items() %}
  56. * - {{name}}
  57. - !{{mod.shortcut}}
  58. - {{mod.__name__}}
  59. - {{mod.timeout}}
  60. - {{", ".join(mod.categories)}}
  61. - {{(mod.paging and "y") or ""}}
  62. - {{(mod.language_support and "y") or ""}}
  63. - {{(mod.safesearch and "y") or ""}}
  64. - {{(mod.disabled and "y") or ""}}
  65. - {{(mod.time_range_support and "y") or ""}}
  66. - {{mod.engine_type or ""}}
  67. - {{mod.weight or 1 }}
  68. - {{(mod.disabled and "y") or ""}}
  69. - {{(mod.display_error_messages and "y") or ""}}
  70. {% endfor %}