diff --git a/currency_rate_update/README.rst b/currency_rate_update/README.rst index a37770889..011328481 100644 --- a/currency_rate_update/README.rst +++ b/currency_rate_update/README.rst @@ -83,15 +83,26 @@ Credits Contributors ------------ +* Nicolas Bessi +* Jean-Baptiste Aubort * Joël Grand-Guillaume -* JB Aubort * Grzegorz Grzelak (ECB, NBP) -* Alexis de Lattre +* Vincent Renaville +* Yannick Vaucher +* Guewen Baconnier * Lorenzo Battistini (Port to V7) * Agustin Cruz (BdM) -* Dorin Hongu (BNR) +* Jacque-Etienne Baudoux +* Juan Jose Scarafia +* Mathieu Benoi * Fekete Mihai (Port to V8) -* Vincent Renaville (Port to V9) +* Dorin Hongu (BNR) +* Paul McDermott +* Alexis de Lattre +* Miku Laitinen +* Assem Bayahi +* Daniel Dico (BOC) + Maintainer ---------- diff --git a/currency_rate_update/__init__.py b/currency_rate_update/__init__.py index 75d7d0aa3..9186ee3ad 100644 --- a/currency_rate_update/__init__.py +++ b/currency_rate_update/__init__.py @@ -1,22 +1 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# 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 . -# -############################################################################## - from . import model diff --git a/currency_rate_update/__openerp__.py b/currency_rate_update/__openerp__.py index 5fe2bf232..c90da1c72 100644 --- a/currency_rate_update/__openerp__.py +++ b/currency_rate_update/__openerp__.py @@ -1,23 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# 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 . -# -############################################################################## +# © 2008-2016 Camptocamp +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Currency Rate Update", "version": "9.0.1.0.0", diff --git a/currency_rate_update/model/__init__.py b/currency_rate_update/model/__init__.py index e8bdb9041..f67366f87 100644 --- a/currency_rate_update/model/__init__.py +++ b/currency_rate_update/model/__init__.py @@ -1,23 +1,2 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# 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 . -# -############################################################################## - from . import currency_rate_update from . import company diff --git a/currency_rate_update/model/company.py b/currency_rate_update/model/company.py index d7e5708a1..f88ce6514 100644 --- a/currency_rate_update/model/company.py +++ b/currency_rate_update/model/company.py @@ -1,23 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# 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 . -# -############################################################################## +# © 2009-2016 Camptocamp +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from openerp import models, fields, api diff --git a/currency_rate_update/model/currency_rate_update.py b/currency_rate_update/model/currency_rate_update.py index dc50f478f..d90e881ba 100644 --- a/currency_rate_update/model/currency_rate_update.py +++ b/currency_rate_update/model/currency_rate_update.py @@ -1,23 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# 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 . -# -############################################################################## +# © 2009-2016 Camptocamp +# © 2010 Akretion +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). import logging diff --git a/currency_rate_update/services/__init__.py b/currency_rate_update/services/__init__.py index 5c70dd472..e69de29bb 100644 --- a/currency_rate_update/services/__init__.py +++ b/currency_rate_update/services/__init__.py @@ -1,20 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# 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 . -# -############################################################################## diff --git a/currency_rate_update/services/currency_getter.py b/currency_rate_update/services/currency_getter.py index 833d89d60..074c06a18 100644 --- a/currency_rate_update/services/currency_getter.py +++ b/currency_rate_update/services/currency_getter.py @@ -1,24 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# 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 . -# -############################################################################## - +# © 2008-2016 Camptocamp +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). class AbstractClassError(Exception): def __str__(self): diff --git a/currency_rate_update/services/currency_getter_interface.py b/currency_rate_update/services/currency_getter_interface.py index fc2b045bb..b6f4125d0 100644 --- a/currency_rate_update/services/currency_getter_interface.py +++ b/currency_rate_update/services/currency_getter_interface.py @@ -1,23 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# 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 . -# -############################################################################## +# © 2008-2016 Camptocamp +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). import logging diff --git a/currency_rate_update/services/update_service_CA_BOC.py b/currency_rate_update/services/update_service_CA_BOC.py index 5cd0e3e49..b17ea3144 100644 --- a/currency_rate_update/services/update_service_CA_BOC.py +++ b/currency_rate_update/services/update_service_CA_BOC.py @@ -1,25 +1,8 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# Abstract class to fetch rates from Bank of Canada -# -# 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 . -# -############################################################################## +# © 2009 Camptocamp +# © 2014 Daniel Dico +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + from .currency_getter_interface import Currency_getter_interface from openerp import _ diff --git a/currency_rate_update/services/update_service_CH_ADMIN.py b/currency_rate_update/services/update_service_CH_ADMIN.py index 6c4d48e64..a7b26d44f 100644 --- a/currency_rate_update/services/update_service_CH_ADMIN.py +++ b/currency_rate_update/services/update_service_CH_ADMIN.py @@ -1,25 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# Abstract class to fetch rates from Swiss Federal Authorities -# -# 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 . -# -############################################################################## +# © 2008 Camptocamp +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + from .currency_getter_interface import Currency_getter_interface import logging from datetime import datetime diff --git a/currency_rate_update/services/update_service_ECB.py b/currency_rate_update/services/update_service_ECB.py index d5e815030..fc47ca7c9 100644 --- a/currency_rate_update/services/update_service_ECB.py +++ b/currency_rate_update/services/update_service_ECB.py @@ -1,25 +1,8 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# Abstract class to fetch rates from European Central Bank -# -# 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 . -# -############################################################################## +# © 2009 Camptocamp +# © 2009 Grzegorz Grzelak +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + from .currency_getter_interface import Currency_getter_interface from datetime import datetime diff --git a/currency_rate_update/services/update_service_MX_BdM.py b/currency_rate_update/services/update_service_MX_BdM.py index 8b3b336f9..5290f4193 100644 --- a/currency_rate_update/services/update_service_MX_BdM.py +++ b/currency_rate_update/services/update_service_MX_BdM.py @@ -1,25 +1,7 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# Abstract class to fetch rates from Banco de México -# -# 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 . -# -############################################################################## +# © 2009 Camptocamp +# © 2013-2014 Agustin Cruz openpyme.mx +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from .currency_getter_interface import Currency_getter_interface diff --git a/currency_rate_update/services/update_service_PL_NBP.py b/currency_rate_update/services/update_service_PL_NBP.py index e354540b4..c334aaa81 100644 --- a/currency_rate_update/services/update_service_PL_NBP.py +++ b/currency_rate_update/services/update_service_PL_NBP.py @@ -1,25 +1,8 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# Abstract class to fetch rates from National Bank of Poland -# -# 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 . -# -############################################################################## +# © 2009 Camptocamp +# © 2009 Grzegorz Grzelak +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + from .currency_getter_interface import Currency_getter_interface from datetime import datetime diff --git a/currency_rate_update/services/update_service_RO_BNR.py b/currency_rate_update/services/update_service_RO_BNR.py index c27d2b971..ecb9b740c 100644 --- a/currency_rate_update/services/update_service_RO_BNR.py +++ b/currency_rate_update/services/update_service_RO_BNR.py @@ -1,25 +1,8 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# Abstract class to fetch rates from National Bank of Romania -# -# 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 . -# -############################################################################## +# © 2009 Camptocamp +# © 2014 Dorin Hongu +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + from .currency_getter_interface import Currency_getter_interface from datetime import datetime, timedelta diff --git a/currency_rate_update/services/update_service_YAHOO.py b/currency_rate_update/services/update_service_YAHOO.py index 56017126f..1b330d57d 100644 --- a/currency_rate_update/services/update_service_YAHOO.py +++ b/currency_rate_update/services/update_service_YAHOO.py @@ -1,25 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# Copyright (c) 2009 CamptoCamp. All rights reserved. -# @author Nicolas Bessi -# -# Abstract class to fetch rates from Yahoo Financial -# -# 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 . -# -############################################################################## +# © 2009 Camptocamp +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from .currency_getter_interface import Currency_getter_interface