From 8a0ecd547b6e4843e446a624ba94e7ba3f26e97e Mon Sep 17 00:00:00 2001 From: Dave Lasley Date: Wed, 17 Feb 2016 14:21:34 -0800 Subject: [PATCH] Update headers for OCA compat --- res_users_case_insensitive/__init__.py | 3 +++ res_users_case_insensitive/__openerp__.py | 21 ++----------------- res_users_case_insensitive/models/__init__.py | 3 +++ .../models/res_users.py | 21 ++----------------- res_users_case_insensitive/tests/__init__.py | 3 +++ .../tests/test_res_users.py | 21 ++----------------- 6 files changed, 15 insertions(+), 57 deletions(-) diff --git a/res_users_case_insensitive/__init__.py b/res_users_case_insensitive/__init__.py index c98792e95..be108a157 100755 --- a/res_users_case_insensitive/__init__.py +++ b/res_users_case_insensitive/__init__.py @@ -1,3 +1,6 @@ # -*- coding: utf-8 -*- +# © 2015-TODAY LasLabs Inc. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from . import models from . import tests diff --git a/res_users_case_insensitive/__openerp__.py b/res_users_case_insensitive/__openerp__.py index 9d0e4e44a..a50287d08 100755 --- a/res_users_case_insensitive/__openerp__.py +++ b/res_users_case_insensitive/__openerp__.py @@ -1,23 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Dave Lasley -# Copyright: 2016-TODAY LasLabs, Inc. [https://laslabs.com] -# -# 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 . -# -############################################################################## +# © 2015-TODAY LasLabs Inc. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Case Insensitive Logins", diff --git a/res_users_case_insensitive/models/__init__.py b/res_users_case_insensitive/models/__init__.py index 741ed460c..e3ed67ab3 100755 --- a/res_users_case_insensitive/models/__init__.py +++ b/res_users_case_insensitive/models/__init__.py @@ -1,2 +1,5 @@ # -*- coding: utf-8 -*- +# © 2015-TODAY LasLabs Inc. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from . import res_users diff --git a/res_users_case_insensitive/models/res_users.py b/res_users_case_insensitive/models/res_users.py index 28432319a..60ad6d06f 100755 --- a/res_users_case_insensitive/models/res_users.py +++ b/res_users_case_insensitive/models/res_users.py @@ -1,23 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Dave Lasley -# Copyright: 2016-TODAY LasLabs, Inc. [https://laslabs.com] -# -# 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 . -# -############################################################################## +# © 2015-TODAY LasLabs Inc. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import models, api, fields diff --git a/res_users_case_insensitive/tests/__init__.py b/res_users_case_insensitive/tests/__init__.py index b986f69a4..bf4480a40 100755 --- a/res_users_case_insensitive/tests/__init__.py +++ b/res_users_case_insensitive/tests/__init__.py @@ -1,2 +1,5 @@ # -*- coding: utf-8 -*- +# © 2015-TODAY LasLabs Inc. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from . import test_res_users diff --git a/res_users_case_insensitive/tests/test_res_users.py b/res_users_case_insensitive/tests/test_res_users.py index a3d680658..cf850f701 100755 --- a/res_users_case_insensitive/tests/test_res_users.py +++ b/res_users_case_insensitive/tests/test_res_users.py @@ -1,23 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Author: Dave Lasley -# Copyright: 2016-TODAY LasLabs, Inc. [https://laslabs.com] -# -# 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 . -# -############################################################################## +# © 2015-TODAY LasLabs Inc. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp.tests.common import TransactionCase