__openerp__.py 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2013-Today OpenERP SA (<http://www.openerp.com>).
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. ##############################################################################
  21. {
  22. 'name': 'Blogs',
  23. 'category': 'Website',
  24. 'website': 'https://www.odoo.com/page/blog-engine',
  25. 'summary': 'News, Blogs, Announces, Discussions',
  26. 'version': '1.0',
  27. 'description': """
  28. OpenERP Blog
  29. ============
  30. """,
  31. 'author': 'OpenERP SA',
  32. 'depends': ['knowledge', 'website_mail', 'website_partner'],
  33. 'data': [
  34. 'data/website_blog_data.xml',
  35. 'views/website_blog_views.xml',
  36. 'views/website_blog_templates.xml',
  37. 'wizard/document_page_show_diff_view.xml',
  38. 'security/ir.model.access.csv',
  39. 'security/website_blog.xml',
  40. ],
  41. 'demo': [
  42. 'data/website_blog_demo.xml'
  43. ],
  44. 'test': [
  45. 'tests/test_website_blog.yml'
  46. ],
  47. 'qweb': [
  48. 'static/src/xml/*.xml'
  49. ],
  50. 'installable': True,
  51. 'application': True,
  52. }