diff --git a/base_field_validator/__init__.py b/base_field_validator/__init__.py index 142483d70..8b5329374 100644 --- a/base_field_validator/__init__.py +++ b/base_field_validator/__init__.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# See __openerp__.py about license -# -############################################################################## +# Copyright © 2014-2016 Lorenzo Battistini - Agile Business Group +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from . import models diff --git a/base_field_validator/__openerp__.py b/base_field_validator/__openerp__.py index 87d178c0c..35470a1b9 100644 --- a/base_field_validator/__openerp__.py +++ b/base_field_validator/__openerp__.py @@ -1,22 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (C) 2014-2015 Lorenzo Battistini - Agile Business Group -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published -# by the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# Copyright © 2014-2016 Lorenzo Battistini - Agile Business Group +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': "Fields Validator", diff --git a/base_field_validator/models/__init__.py b/base_field_validator/models/__init__.py index 9cf6a39b9..f568acef4 100644 --- a/base_field_validator/models/__init__.py +++ b/base_field_validator/models/__init__.py @@ -1,8 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# See __openerp__.py about license -# -############################################################################## +# Copyright © 2014-2016 Lorenzo Battistini - Agile Business Group +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from . import ir_model from . import ir_model_field_regex diff --git a/base_field_validator/models/ir_model.py b/base_field_validator/models/ir_model.py index e6b5ada25..eb8a1f48f 100644 --- a/base_field_validator/models/ir_model.py +++ b/base_field_validator/models/ir_model.py @@ -1,9 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# See __openerp__.py about license -# -############################################################################## +# Copyright © 2014-2016 Lorenzo Battistini - Agile Business Group +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). import re from openerp.tools.translate import _ diff --git a/base_field_validator/models/ir_model_field_regex.py b/base_field_validator/models/ir_model_field_regex.py index 8e0a534a1..bcee995ee 100644 --- a/base_field_validator/models/ir_model_field_regex.py +++ b/base_field_validator/models/ir_model_field_regex.py @@ -1,9 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# See __openerp__.py about license -# -############################################################################## +# Copyright © 2014-2016 Lorenzo Battistini - Agile Business Group +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import models, fields