Browse Source

FIX copyright header

pull/246/head
eLBati 8 years ago
parent
commit
dfd43307ca
  1. 8
      base_field_validator/__init__.py
  2. 20
      base_field_validator/__openerp__.py
  3. 8
      base_field_validator/models/__init__.py
  4. 7
      base_field_validator/models/ir_model.py
  5. 7
      base_field_validator/models/ir_model_field_regex.py

8
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

20
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 <http://www.gnu.org/licenses/>.
#
##############################################################################
# Copyright © 2014-2016 Lorenzo Battistini - Agile Business Group
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': "Fields Validator",

8
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

7
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 _

7
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

Loading…
Cancel
Save