diff --git a/modules/sogecartenet/__init__.py b/modules/sogecartenet/__init__.py index 3b5541de487746ae0c76b82ed8fa8e026948aaa5..3560aad60381bfbc2e7451d0d0a397a1d8e7fc69 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 c4c158b3a28bea991bd9fff54429286a1a91331c..064058090f97d48ed84aba1c999d7f7dd1b55a4d 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 d8ec36df95e04893145eea57241f0e794122cca3..bb9d9f7a30da3a3ccd0cfb7026b6b0689c3f8422 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 78781534a77a8a865608e5cba8b617f08ae02aba..04f1bcd6dbb6ce47bf5e00d7839b3e4a70cfe61a 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