From fc7621de12700bbbac66134da0acc19e3493cbf7 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Sun, 24 Feb 2019 21:31:06 +0100 Subject: [PATCH] sogecartenet: change license to LGPL --- modules/sogecartenet/__init__.py | 16 ++++++++-------- modules/sogecartenet/browser.py | 16 ++++++++-------- modules/sogecartenet/module.py | 20 ++++++++++---------- modules/sogecartenet/pages.py | 16 ++++++++-------- 4 files changed, 34 insertions(+), 34 deletions(-) diff --git a/modules/sogecartenet/__init__.py b/modules/sogecartenet/__init__.py index 3b5541de48..3560aad603 100644 --- a/modules/sogecartenet/__init__.py +++ b/modules/sogecartenet/__init__.py @@ -1,21 +1,21 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2015 Vincent Paredes +# Copyright(C) 2015 Budget Insight # -# 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 .module import SogecartenetModule diff --git a/modules/sogecartenet/browser.py b/modules/sogecartenet/browser.py index c4c158b3a2..064058090f 100644 --- a/modules/sogecartenet/browser.py +++ b/modules/sogecartenet/browser.py @@ -1,21 +1,21 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2015 Vincent Paredes +# Copyright(C) 2015 Budget Insight # -# 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 LoginBrowser, URL, need_login diff --git a/modules/sogecartenet/module.py b/modules/sogecartenet/module.py index d8ec36df95..bb9d9f7a30 100644 --- a/modules/sogecartenet/module.py +++ b/modules/sogecartenet/module.py @@ -1,21 +1,21 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2015 Vincent Paredes +# Copyright(C) 2015 Budget Insight # -# 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 SogecartenetModule(Module, CapBank): DESCRIPTION = u'Sogecarte Net' MAINTAINER = u'Vincent Paredes' EMAIL = 'vparedes@budget-insight.fr' - LICENSE = 'AGPLv3+' - VERSION = '1.1' + LICENSE = 'LGPLv3+' + VERSION = '1.5' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), ValueBackendPassword('password', label='Mot de passe')) diff --git a/modules/sogecartenet/pages.py b/modules/sogecartenet/pages.py index 78781534a7..04f1bcd6db 100644 --- a/modules/sogecartenet/pages.py +++ b/modules/sogecartenet/pages.py @@ -1,21 +1,21 @@ # -*- coding: utf-8 -*- -# Copyright(C) 2015 Vincent Paredes +# Copyright(C) 2015 Budget Insight # -# 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 . import requests -- GitLab