engines.rst 2.0 KB

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