engines.rst 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. Configuration defaults (at built time):
  27. .. _configured engines:
  28. .. jinja:: webapp
  29. .. flat-table:: Engines configured at built time (defaults)
  30. :header-rows: 1
  31. :stub-columns: 2
  32. * - Name (cfg)
  33. - S
  34. - Engine
  35. - TO
  36. - Categories
  37. - P
  38. - L
  39. - SS
  40. - D
  41. - TR
  42. - O
  43. - W
  44. - D
  45. {% for name, mod in engines.items() %}
  46. * - {{name}}
  47. - !{{mod.shortcut}}
  48. - {{mod.__name__}}
  49. - {{mod.timeout}}
  50. - {{", ".join(mod.categories)}}
  51. - {{(mod.paging and "y") or ""}}
  52. - {{(mod.language_support and "y") or ""}}
  53. - {{(mod.safesearch and "y") or ""}}
  54. - {{(mod.disabled and "y") or ""}}
  55. - {{(mod.time_range_support and "y") or ""}}
  56. - {{(mod.offline and "y") or ""}}
  57. - {{mod.weight or 1 }}
  58. - {{(mod.disabled and "y") or ""}}
  59. {% endfor %}