__manifest__.py 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Tours',
  5. 'category': 'Hidden',
  6. 'description': """
  7. Odoo Web tours.
  8. ========================
  9. """,
  10. 'version': '0.1',
  11. 'depends': ['web'],
  12. 'data': [
  13. 'security/ir.model.access.csv',
  14. 'security/ir.rule.csv',
  15. 'views/tour_views.xml'
  16. ],
  17. 'assets': {
  18. 'web.assets_common': [
  19. 'web_tour/static/src/scss/**/*',
  20. 'web_tour/static/src/js/running_tour_action_helper.js',
  21. 'web_tour/static/src/js/tip.js',
  22. 'web_tour/static/src/js/tour_manager.js',
  23. 'web_tour/static/src/js/tour_service.js',
  24. 'web_tour/static/src/js/tour_step_utils.js',
  25. 'web_tour/static/src/js/tour_utils.js',
  26. '/web_tour/static/src/xml/tip.xml',
  27. ],
  28. 'web.assets_backend': [
  29. 'web_tour/static/src/debug/debug_manager.js',
  30. 'web_tour/static/src/debug/tour_dialog_component.js',
  31. 'web_tour/static/src/services/*.js',
  32. 'web_tour/static/src/debug/tour_dialog_component.xml',
  33. ],
  34. 'web.assets_frontend': [
  35. 'web_tour/static/src/scss/**/*',
  36. 'web_tour/static/src/js/running_tour_action_helper.js',
  37. 'web_tour/static/src/js/tip.js',
  38. 'web_tour/static/src/js/tour_manager.js',
  39. 'web_tour/static/src/js/tour_service.js',
  40. 'web_tour/static/src/js/tour_step_utils.js',
  41. 'web_tour/static/src/js/tour_utils.js',
  42. '/web_tour/static/src/xml/tip.xml',
  43. 'web_tour/static/src/js/public/**/*',
  44. ],
  45. 'web.qunit_suite_tests': [
  46. 'web_tour/static/tests/**/*',
  47. ],
  48. },
  49. 'auto_install': True,
  50. 'license': 'LGPL-3',
  51. }