[MERGE] lp881356
[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     'complexity': "easy",
7     'description': """
8 Adds enhanced support for (Ether)Pad attachments in the web client.
9 ===================================================================
10
11 Lets the company customize which Pad installation should be used to link to new pads
12 (by default, http://ietherpad.com/).
13     """,
14     'author': 'OpenERP SA',
15     'website': 'http://openerp.com',
16     'depends': ['base'],
17     'data': [
18         'res_company.xml'
19     ],
20     'installable': True,
21     'auto_install': False,
22     'web': True,
23     'certificate' : '001183545978470526509',
24     'js': ['static/src/js/pad.js'],
25     'qweb' : [
26         "static/src/xml/*.xml",
27     ],
28     'images': ['static/src/img/pad_link_companies.jpeg'],
29 }
30
31 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: