From 850548d68df6e93ea1aab75bc9c527af4f720816 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Sun, 24 Feb 2019 20:56:34 +0100 Subject: [PATCH] humanis: change license to LGPL --- modules/humanis/__init__.py | 14 +++++++------- modules/humanis/browser.py | 14 +++++++------- modules/humanis/module.py | 18 +++++++++--------- modules/humanis/pages.py | 14 +++++++------- modules/humanis/test.py | 14 +++++++------- 5 files changed, 37 insertions(+), 37 deletions(-) diff --git a/modules/humanis/__init__.py b/modules/humanis/__init__.py index 512654dab1..daddbd449f 100644 --- a/modules/humanis/__init__.py +++ b/modules/humanis/__init__.py @@ -2,20 +2,20 @@ # Copyright(C) 2017 Jean Walrave # -# This file is part of weboob. +# This file is part of a weboob module. # -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by +# This weboob module is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# weboob is distributed in the hope that it will be useful, +# This weboob module 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. +# GNU Lesser General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with weboob. If not, see . +# You should have received a copy of the GNU Lesser General Public License +# along with this weboob module. If not, see . from __future__ import unicode_literals diff --git a/modules/humanis/browser.py b/modules/humanis/browser.py index 6d08eba988..4f52f0f475 100644 --- a/modules/humanis/browser.py +++ b/modules/humanis/browser.py @@ -2,20 +2,20 @@ # Copyright(C) 2016 Jean Walrave # -# This file is part of weboob. +# This file is part of a weboob module. # -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by +# This weboob module is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# weboob is distributed in the hope that it will be useful, +# This weboob module 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. +# GNU Lesser General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with weboob. If not, see . +# You should have received a copy of the GNU Lesser General Public License +# along with this weboob module. If not, see . from weboob.browser import AbstractBrowser, URL diff --git a/modules/humanis/module.py b/modules/humanis/module.py index da53ce42c9..85e1e69472 100644 --- a/modules/humanis/module.py +++ b/modules/humanis/module.py @@ -2,20 +2,20 @@ # Copyright(C) 2016 Jean Walrave # -# This file is part of weboob. +# This file is part of a weboob module. # -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by +# This weboob module is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# weboob is distributed in the hope that it will be useful, +# This weboob module 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. +# GNU Lesser General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with weboob. If not, see . +# You should have received a copy of the GNU Lesser General Public License +# along with this weboob module. If not, see . from weboob.tools.backend import Module, BackendConfig @@ -34,8 +34,8 @@ class HumanisModule(Module, CapBankPockets): DESCRIPTION = u'Humanis Épargne Salariale' MAINTAINER = u'Jean Walrave' EMAIL = 'jwalrave@budget-insight.com' - LICENSE = 'AGPLv3+' - VERSION = '1.3' + LICENSE = 'LGPLv3+' + VERSION = '1.5' CONFIG = BackendConfig(ValueBackendPassword('login', label=u'Code d\'accès', masked=False), ValueBackendPassword('password', label='Mot de passe')) diff --git a/modules/humanis/pages.py b/modules/humanis/pages.py index 2b1a956ef5..a7d153e27c 100644 --- a/modules/humanis/pages.py +++ b/modules/humanis/pages.py @@ -2,20 +2,20 @@ # Copyright(C) 2016 Jean Walrave # -# This file is part of weboob. +# This file is part of a weboob module. # -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by +# This weboob module is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# weboob is distributed in the hope that it will be useful, +# This weboob module 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. +# GNU Lesser General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with weboob. If not, see . +# You should have received a copy of the GNU Lesser General Public License +# along with this weboob module. If not, see . from weboob.browser.pages import AbstractPage diff --git a/modules/humanis/test.py b/modules/humanis/test.py index 7506e97751..67094555bd 100644 --- a/modules/humanis/test.py +++ b/modules/humanis/test.py @@ -2,20 +2,20 @@ # Copyright(C) 2017 Jean Walrave # -# This file is part of weboob. +# This file is part of a weboob module. # -# weboob is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by +# This weboob module is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# weboob is distributed in the hope that it will be useful, +# This weboob module 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. +# GNU Lesser General Public License for more details. # -# You should have received a copy of the GNU Affero General Public License -# along with weboob. If not, see . +# You should have received a copy of the GNU Lesser General Public License +# along with this weboob module. If not, see . from __future__ import unicode_literals -- GitLab