[IMP] Clean Modules name: there are 3 modules named Contracts Management.
[odoo/odoo.git] / addons / pad / __openerp__.py
1 # -*- coding: utf-8 -*-
2 {
3     'name': 'Collaborative Pads',
4     'version': '2.0',
5     "category": "Project Management",
6     'description': """
7 Adds enhanced support for (Ether)Pad attachments in the web client.
8 ===================================================================
9
10 Lets the company customize which Pad installation should be used to link to new pads
11 (by default, http://ietherpad.com/).
12     """,
13     'author': 'OpenERP SA',
14     'website': 'http://openerp.com',
15     'depends': ['base'],
16     'data': [
17         'res_company.xml'
18     ],
19     'installable': True,
20     'auto_install': False,
21     'web': True,
22     'certificate' : '001183545978470526509',
23     'js': ['static/src/js/pad.js'],
24     'qweb' : [
25         "static/src/xml/*.xml",
26     ],
27     'images': ['static/src/img/pad_link_companies.jpeg'],
28 }
29
30 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: