knowledge/document_url/__openerp__.py
Jonathan Nemry (ACSONE) 18f5694b94 [MIG] from 8.0 to 9.0 document_url (#89)
[MIG] document_url

* bump version to 9.0.1.0.0 and make it installable
* Update JS structure
* Add css in order to be compliant with odoo style
* Add a README.rst and OCA conventions
* Improve selector
* add fr.po for fr translation
* open link with target='_blank'
2022-03-30 14:59:49 -03:00

27 lines
742 B
Python

# -*- coding: utf-8 -*-
# © 2014 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com)
# Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
# © 2016 ACSONE SA/NV (<http://acsone.eu>)
{
'name': 'URL attachment',
'version': '9.0.1.0.0',
'category': 'Tools',
'description': """
Module that allows to attach an URL as a document.
""",
'author': "Serv. Tecnolog. Avanzados - Pedro M. Baeza,"
"Odoo Community Association (OCA)",
'website': 'http://www.serviciosbaeza.com',
'license': 'AGPL-3',
'depends': [
'document',
],
'data': [
'view/document_url_view.xml',
],
'qweb': [
'static/src/xml/url.xml',
],
'installable': True,
}