Browse Source

[CHG] base_custom_info: Relicense to LGPL with all authors' consent

# Conflicts:
#	base_custom_info/__manifest__.py
12.0-mig-module_prototyper_last
Jairo Llopis 8 years ago
committed by Alexandre Díaz
parent
commit
498f2f4f8c
  1. 6
      base_custom_info/README.rst
  2. 2
      base_custom_info/__init__.py
  3. 2
      base_custom_info/__manifest__.py
  4. 2
      base_custom_info/models/__init__.py
  5. 2
      base_custom_info/models/custom_info.py

6
base_custom_info/README.rst

@ -1,6 +1,6 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
================
Base Custom Info

2
base_custom_info/__init__.py

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# © 2015 Antiun Ingeniería S.L. - Sergio Teruel
# © 2015 Antiun Ingeniería S.L. - Carlos Dauden
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html
from . import models

2
base_custom_info/__manifest__.py

@ -31,5 +31,5 @@
'Odoo Community Association (OCA)',
'website': 'http://www.antiun.com',
'license': 'AGPL-3',
'installable': False,
'installable': True,
}

2
base_custom_info/models/__init__.py

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# © 2015 Antiun Ingeniería S.L. - Sergio Teruel
# © 2015 Antiun Ingeniería S.L. - Carlos Dauden
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html
from . import custom_info

2
base_custom_info/models/custom_info.py

@ -2,7 +2,7 @@
# © 2015 Antiun Ingeniería S.L. - Sergio Teruel
# © 2015 Antiun Ingeniería S.L. - Carlos Dauden
# © 2015 Antiun Ingeniería S.L. - Jairo Llopis
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
# License LGPL-3 - See http://www.gnu.org/licenses/lgpl-3.0.html
from openerp import api, fields, models

Loading…
Cancel
Save