resolevd conflicts
[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
11 pads (by default, http://ietherpad.com/).
12     """,
13     'author': 'OpenERP SA',
14     'website': 'http://openerp.com',
15     'depends': ['base'],
16     'data': ['res_company.xml'],
17     'demo': ['pad_demo.xml'],
18     'installable': True,
19     'auto_install': False,
20     'web': True,
21     'js': ['static/src/js/pad.js'],
22     'qweb' : ['static/src/xml/*.xml'],
23     'images': ['static/src/img/pad_link_companies.jpeg'],
24     'css': ['static/src/css/etherpad.css',],
25 }
26
27 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: