mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-17 20:46:35 -06:00

[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'
27 lines
742 B
Python
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,
|
|
}
|