engines.rst 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .. _engines generic:
  2. =======
  3. engines
  4. =======
  5. .. sidebar:: Further reading ..
  6. - :ref:`engines generic`
  7. - :ref:`configured engines`
  8. - :ref:`engine settings`
  9. - :ref:`engine file`
  10. ============= =========== ==================== ============
  11. :ref:`engine settings` :ref:`engine file`
  12. ------------------------- ---------------------------------
  13. Name (cfg) Categories
  14. ------------------------- ---------------------------------
  15. Engine .. Paging support **P**
  16. ------------------------- -------------------- ------------
  17. Shortcut **S** Language support **L**
  18. Timeout **TO** Time range support **TR**
  19. Disabled **D** Offline **O**
  20. ------------- ----------- -------------------- ------------
  21. Suspend end **SE**
  22. ------------- ----------- ---------------------------------
  23. Safe search **SS**
  24. ============= =========== =================================
  25. Configuration defaults (at built time):
  26. .. _configured engines:
  27. .. jinja:: webapp
  28. .. flat-table:: Engines configured at built time (defaults)
  29. :header-rows: 1
  30. :stub-columns: 2
  31. * - Name (cfg)
  32. - S
  33. - Engine
  34. - TO
  35. - Categories
  36. - P
  37. - L
  38. - SS
  39. - D
  40. - TR
  41. - O
  42. - SE
  43. {% for name, mod in engines.items() %}
  44. * - {{name}}
  45. - !{{mod.shortcut}}
  46. - {{mod.__name__}}
  47. - {{mod.timeout}}
  48. - {{", ".join(mod.categories)}}
  49. - {{(mod.paging and "y") or ""}}
  50. - {{(mod.language_support and "y") or ""}}
  51. - {{(mod.safesearch and "y") or ""}}
  52. - {{(mod.disabled and "y") or ""}}
  53. - {{(mod.time_range_support and "y") or ""}}
  54. - {{(mod.offline and "y") or ""}}
  55. - {{mod.suspend_end_time}}
  56. {% endfor %}