engines.rst 1.9 KB

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