odoo/addons/pad/__openerp__.py

32 lines
924 B
Python

# -*- coding: utf-8 -*-
{
'name': 'Collaborative Pads',
'version': '2.0',
"category": "Project Management",
'description': """
Adds enhanced support for (Ether)Pad attachments in the web client.
===================================================================
Lets the company customize which Pad installation should be used to link to new
pads (by default, http://ietherpad.com/).
""",
'author': 'OpenERP SA',
'website': 'http://openerp.com',
'depends': ['base'],
'data': [
'res_company.xml'
],
'installable': True,
'auto_install': False,
'web': True,
'certificate' : '001183545978470526509',
'js': ['static/src/js/pad.js'],
'qweb' : [
"static/src/xml/*.xml",
],
'images': ['static/src/img/pad_link_companies.jpeg'],
"css": ['static/src/css/etherpad.css',],
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: