merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit c9545b0619a514998ba56f5b2cd73a82d86102af
parent 3bbc4329e909c82fe838820c74044d8ecc0c81ee
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Tue,  8 Mar 2016 10:45:31 +0100

updating licensing information

Diffstat:
Mcopylib/config.php | 15+++++++++++++++
Mcopylib/merchants.php | 15+++++++++++++++
Mcopylib/util.php | 15+++++++++++++++
Mexamples/blog/blog_lib.php | 2+-
Mexamples/blog/essay_cc-form.html | 6+++++-
Mexamples/blog/essay_cc-fulfillment.php | 4+++-
Mexamples/blog/essay_contract.php | 2+-
Mexamples/blog/essay_fulfillment.php | 2+-
Mexamples/blog/essay_pay.php | 2+-
Mexamples/blog/index.html | 2+-
Dexamples/blog/style.css | 159-------------------------------------------------------------------------------
Mexamples/shop/checkout.php | 2+-
Mexamples/shop/fulfillment.php | 2+-
Mexamples/shop/index.php | 3+--
Mexamples/shop/pay.php | 2+-
Mlicensing.rst | 96+++++++++++++++++++++++++++++++------------------------------------------------
Msrc/backend/myconf.sh | 2+-
Msrc/backend/taler-merchant-httpd.c | 2+-
Msrc/backend/taler-merchant-httpd.h | 2+-
Msrc/backend/taler-merchant-httpd_auditors.c | 2+-
Msrc/backend/taler-merchant-httpd_contract.c | 2+-
Msrc/backend/taler-merchant-httpd_contract.h | 2+-
Msrc/backend/taler-merchant-httpd_exchanges.c | 2+-
Msrc/backend/taler-merchant-httpd_exchanges.h | 2+-
Msrc/backend/taler-merchant-httpd_mhd.c | 2+-
Msrc/backend/taler-merchant-httpd_parsing.c | 2+-
Msrc/backend/taler-merchant-httpd_responses.c | 2+-
Msrc/backend/taler-merchant-httpd_util.c | 2+-
Msrc/backenddb/merchantdb_plugin.c | 2+-
Msrc/backenddb/plugin_merchantdb_postgres.c | 2+-
Msrc/include/platform.h | 2+-
Msrc/include/taler_merchant_service.h | 2+-
Msrc/include/taler_merchantdb_lib.h | 2+-
Msrc/include/taler_merchantdb_plugin.h | 2+-
Msrc/lib/merchant_api_context.c | 2+-
Msrc/lib/merchant_api_context.h | 2+-
Msrc/lib/merchant_api_json.c | 2+-
Msrc/lib/merchant_api_json.h | 2+-
Msrc/lib/merchant_api_pay.c | 2+-
Msrc/lib/test_merchant_api.c | 2+-
Msrc/tests/test_contract.c | 2+-
41 files changed, 124 insertions(+), 255 deletions(-)

diff --git a/copylib/config.php b/copylib/config.php @@ -1,4 +1,19 @@ <?php +/* + This file is part of GNU TALER. + Copyright (C) 2014, 2015 INRIA + + TALER 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 2.1, or (at your option) any later version. + + TALER 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> +*/ $REFUND_DELTA = 'P3M'; // set to false when done with local tests diff --git a/copylib/merchants.php b/copylib/merchants.php @@ -1,4 +1,19 @@ <?php +/* + This file is part of GNU TALER. + Copyright (C) 2014, 2015 INRIA + + TALER 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 2.1, or (at your option) any later version. + + TALER 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> +*/ /** * Return a contract proposition to forward to the backend diff --git a/copylib/util.php b/copylib/util.php @@ -1,4 +1,19 @@ <?php +/* + This file is part of GNU TALER. + Copyright (C) 2014, 2015 INRIA + + TALER 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 2.1, or (at your option) any later version. + + TALER 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> +*/ function get(&$var, $default=null) { return isset($var) ? $var : $default; diff --git a/examples/blog/blog_lib.php b/examples/blog/blog_lib.php @@ -1,7 +1,7 @@ <?php /* This file is part of GNU TALER. - Copyright (C) 2014, 2015 INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER 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 diff --git a/examples/blog/essay_cc-form.html b/examples/blog/essay_cc-form.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- This file is part of GNU TALER. - Copyright (C) 2014, 2015 INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER 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 @@ -13,6 +13,10 @@ You should have received a copy of the GNU Lesser General Public License along with TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> + + @author Marcello Stanisci + @author Florian Dold + @author Gabor Toth --> <html> <head> diff --git a/examples/blog/essay_cc-fulfillment.php b/examples/blog/essay_cc-fulfillment.php @@ -1,7 +1,7 @@ <?php /* This file is part of GNU TALER. - Copyright (C) 2014, 2015 INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER 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 @@ -13,6 +13,8 @@ You should have received a copy of the GNU Lesser General Public License along with TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> + + @author Marcello Stanisci */ include '../../copylib/util.php'; diff --git a/examples/blog/essay_contract.php b/examples/blog/essay_contract.php @@ -1,7 +1,7 @@ <?php /* This file is part of GNU TALER. - Copyright (C) 2014, 2015 INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER 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 diff --git a/examples/blog/essay_fulfillment.php b/examples/blog/essay_fulfillment.php @@ -1,7 +1,7 @@ <?php /* This file is part of GNU TALER. - Copyright (C) 2014, 2015 INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER 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 diff --git a/examples/blog/essay_pay.php b/examples/blog/essay_pay.php @@ -1,7 +1,7 @@ <?php /* This file is part of GNU TALER. - Copyright (C) 2014, 2015 INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER 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 diff --git a/examples/blog/index.html b/examples/blog/index.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- This file is part of GNU TALER. - Copyright (C) 2014, 2015 INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER 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 diff --git a/examples/blog/style.css b/examples/blog/style.css @@ -1,159 +0,0 @@ -/* - This file is part of TALER - Copyright (C) 2014,2015 INRIA - - TALER is free software: you can - redistribute it and/or modify it under the terms of the GNU - Lesser General Public License (GNU LGPL) as published by the - Free Software - Foundation, either version 3 of the License, or (at your option) - any later version. The code is distributed WITHOUT ANY WARRANTY; - without even the implied warranty of MERCHANTABILITY or FITNESS - FOR A PARTICULAR PURPOSE. See the GNU LGPL for more details. - - As additional permission under GNU LGPL version 3 section 7, you - may distribute non-source (e.g., minimized or compacted) forms of - that code without the copy of the GNU LGPL normally required by - section 4, provided you include this license notice and a URL - through which recipients can access the Corresponding Source. - - @licend The above is the entire license notice - for the JavaScript code in this page. - */ - -body { - background-color: white; - margin: 0; - padding: 0; - font-family: Verdana, sans; -} - -header { - width: 100%; - height: 100px; - padding: 0; - border-bottom: 1px solid black; -} - -header h1 { - font-size: 200%; - margin: 0 0 0 120px; - position: relative; - top: 50%; - transform: translateY(-50%); -} - -header #logo { - float: left; - width: 100px; - padding: 0; - margin: 0; - text-align: center; - border-right: 1px solid black; -} - -aside { - width: 100px; - float: left; -} - -section#main { - margin: 0 0 0 100px; - padding: 20px; - border-left: 1px solid black; - height: 100%; - max-width: 40em; -} - -section#main h1:first-child { - margin-top: 0; -} - -h1 { - font-size: 160%; -} - -h2 { - font-size: 140%; -} - -h3 { - font-size: 120%; -} - -h4, h5, h6 { - font-size: 100%; -} - -.loader { - font-size: 10px; - margin: 50px auto; - text-indent: -9999em; - width: 11em; - height: 11em; - border-radius: 50%; - background: #ffffff; - background: -moz-linear-gradient(left, #000 10%, rgba(255, 255, 255, 0) 42%); - background: -webkit-linear-gradient(left, #000 10%, rgba(255, 255, 255, 0) 42%); - background: -o-linear-gradient(left, #000 10%, rgba(255, 255, 255, 0) 42%); - background: -ms-linear-gradient(left, #000 10%, rgba(255, 255, 255, 0) 42%); - position: relative; - -webkit-animation: load3 1.4s infinite linear; - animation: load3 1.4s infinite linear; - -webkit-transform: translateZ(0); - -ms-transform: translateZ(0); - transform: translateZ(0); -} - -.loader:after { - background: #fff; - width: 75%; - height: 75%; - border-radius: 50%; - content: ''; - margin: auto; - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; -} - -@-webkit-keyframes load3 { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes load3 { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - - -.fade { - -webkit-animation: fade 0.7s; - animation: fade 0.7s; - opacity: 1; -} - -@-webkit-keyframes fade { - from {opacity: 0} - to {opacity: 1} -} -@keyframes fade { - from {opacity: 0} - to {opacity: 1} - } - diff --git a/examples/shop/checkout.php b/examples/shop/checkout.php @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- This file is aprt of GNU TALER - Copyright (C) 2014,2015 INRIA + Copyright (C) 2014,2015, 2016 INRIA TALER is free software: you can redistribute it and/or modify it under the terms of the GNU diff --git a/examples/shop/fulfillment.php b/examples/shop/fulfillment.php @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- This file is part of GNU TALER. - Copyright (C) 2014, 2015 INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER 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 diff --git a/examples/shop/index.php b/examples/shop/index.php @@ -1,8 +1,7 @@ <!DOCTYPE html> -<!DOCTYPE html> <!-- This file is part of GNU TALER. - Copyright (C) 2014, 2015 INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER 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 diff --git a/examples/shop/pay.php b/examples/shop/pay.php @@ -1,7 +1,7 @@ <?php /* This file is part of GNU TALER. - Copyright (C) 2014, 2015 INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER 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 diff --git a/licensing.rst b/licensing.rst @@ -1,63 +1,41 @@ ------- -Owners ------- - -The following list mentions the owner for each source file in this -project - -* src/lib/merchant_api_context.c: GNUnet e.V. and INRIA -* src/lib/merchant_api_context.h: GNUnet e.V. and INRIA -* src/lib/merchant_api_pay.c: GNUnet e.V. and INRIA -* src/lib/merchant_api_json.h: GNUnet e.V. and INRIA -* src/lib/test_merchant_api.c: GNUnet e.V. and INRIA -* src/lib/merchant_api_json.c: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_parsing.c: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_responses.h: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_parsing.h: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_responses.c: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_util.c: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_util.h: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_mhd.h: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd.h: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd.c: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_contract.h: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_exchanges.h: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_contract.c: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_auditors.h: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_mhd.c: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_exchanges.c: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_pay.c: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_auditors.c: GNUnet e.V. and INRIA -* src/backend/taler-merchant-httpd_pay.h: GNUnet e.V. and INRIA -* src/include/platform.h: GNUnet e.V. and INRIA -* src/include/taler_merchantdb_lib.h: GNUnet e.V. and INRIA -* src/include/taler_merchant_service.h: GNUnet e.V. and INRIA -* src/include/taler_merchantdb_plugin.h: GNUnet e.V. and INRIA -* src/tests/test_contract.c: GNUnet e.V. and INRIA -* src/backenddb/merchantdb_plugin.c: GNUnet e.V. and INRIA -* src/backenddb/plugin_merchantdb_postgres.c: GNUnet e.V. and INRIA -* copylib/config.php: INRIA -* copylib/merchants.php: INRIA -* copylib/util.php: INRIA -* examples/shop/config.php: INRIA -* examples/shop/fulfillment.php: INRIA -* examples/shop/pay.php: INRIA -* examples/shop/index.php: INRIA -* examples/shop/generate_taler_contract.php: INRIA -* examples/shop/checkout.php: INRIA -* examples/blog/essay_fulfillment.php: INRIA -* examples/blog/essay_pay.php: INRIA -* examples/blog/blog_lib.php: INRIA -* examples/blog/essay_cc-fulfillment.php: INRIA -* examples/blog/essay_contract.php: INRIA -* examples/blog/taler-presence.js: INRIA -* examples/blog/index.html: INRIA -* examples/blog/essay_cc-form.html: INRIA -* examples/shop/style.css: INRIA -* examples/blog/style.css: INRIA -* NOTE: the copyright for content in examples/blog/articles is owned by the Free Software Foundation +--------- +Licensing +--------- + +This project has been jointly developed by INRIA and by individuals +being under the juridical subject called 'GNUnet e.V.'. For each source +file, the header indicated whose is holding the copyright, since some +parts have been taken "verbatim" from the GNUnet e.V. licensed code, and +some other have been developed at INRIA "ex novo". + +Source files are located in the following directories: + +* src/lib/ +* src/backend/ +* src/backenddb/ +* src/include/ +* src/tests/ +* examples/blog/ +* examples/shop/ +* copylib/ + +Note that the copyright for content in examples/blog/articles is entirely +owned by the Free Software Foundation -------------------- Runtime dependencies -------------------- -TDB +We list as 'runtime dependencies' + +* shared libraries (namely \*.so files) +* running services (like databases) +* languages interpreters (like PHP) + +The following list encompasses all the runtime dependencies for this project, +and gives the copyright holder for each of them + +* libjansson : Petri Lehtinen and other individuals +* libgcrypt : Free Software Foundation +* postgresql : The PostgreSQL Global Development Group +* libgnunet (in all of its variants) : GNUnet e.V. +* PHP : The PHP Group diff --git a/src/backend/myconf.sh b/src/backend/myconf.sh @@ -1,3 +1,3 @@ #!/bin/sh - +# this file is in the public domain ./configure CFLAGS='-I/usr/include/postgresql' diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c @@ -1,6 +1,6 @@ /* This file is part of TALER - (C) 2014, 2015 INRIA + (C) 2014, 2015, 2016 INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/backend/taler-merchant-httpd.h b/src/backend/taler-merchant-httpd.h @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. and INRIA + Copyright (C) 2014, 2015 INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/backend/taler-merchant-httpd_auditors.c b/src/backend/taler-merchant-httpd_auditors.c @@ -1,6 +1,6 @@ /* This file is part of TALER - (C) 2014, 2015 GNUnet e.V. and INRIA + (C) 2014, 2015, 2016 GNUnet e.V. and INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/backend/taler-merchant-httpd_contract.c b/src/backend/taler-merchant-httpd_contract.c @@ -1,6 +1,6 @@ /* This file is part of TALER - (C) 2014, 2015 GNUnet e.V. and INRIA + (C) 2014, 2015, 2016 INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/backend/taler-merchant-httpd_contract.h b/src/backend/taler-merchant-httpd_contract.h @@ -1,6 +1,6 @@ /* This file is part of TALER - (C) 2014, 2015 GNUnet e.V. and INRIA + (C) 2014, 2015 INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/backend/taler-merchant-httpd_exchanges.c b/src/backend/taler-merchant-httpd_exchanges.c @@ -1,6 +1,6 @@ /* This file is part of TALER - (C) 2014, 2015 GNUnet e.V. and INRIA + (C) 2014, 2015, 2016 INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/backend/taler-merchant-httpd_exchanges.h b/src/backend/taler-merchant-httpd_exchanges.h @@ -1,6 +1,6 @@ /* This file is part of TALER - (C) 2014, 2015 GNUnet e.V. and INRIA + (C) 2014, 2015 INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/backend/taler-merchant-httpd_mhd.c b/src/backend/taler-merchant-httpd_mhd.c @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. and INRIA + Copyright (C) 2014, 2015, 2016 GNUnet e.V. and INRIA TALER 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 diff --git a/src/backend/taler-merchant-httpd_parsing.c b/src/backend/taler-merchant-httpd_parsing.c @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. + Copyright (C) 2014, 2015, 2016 GNUnet e.V. TALER 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 diff --git a/src/backend/taler-merchant-httpd_responses.c b/src/backend/taler-merchant-httpd_responses.c @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. + Copyright (C) 2014, 2015, 2016 GNUnet e.V. TALER 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 diff --git a/src/backend/taler-merchant-httpd_util.c b/src/backend/taler-merchant-httpd_util.c @@ -1,6 +1,6 @@ /* This file is part of TALER - (C) 2014, 2015 GNUnet e.V. and INRIA + (C) 2014, 2015, 2016 GNUnet e.V. and INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/backenddb/merchantdb_plugin.c b/src/backenddb/merchantdb_plugin.c @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2015 GNUnet e.V. and INRIA + Copyright (C) 2015, 2016 INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c @@ -1,6 +1,6 @@ /* This file is part of TALER - (C) 2014, 2015 GNUnet e.V. and INRIA + (C) 2014, 2015, 2016 INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/include/platform.h b/src/include/platform.h @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. and INRIA + Copyright (C) 2014, 2015, 2016 GNUnet e.V. and INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/include/taler_merchant_service.h b/src/include/taler_merchant_service.h @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. and INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER 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 diff --git a/src/include/taler_merchantdb_lib.h b/src/include/taler_merchantdb_lib.h @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. and INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/include/taler_merchantdb_plugin.h b/src/include/taler_merchantdb_plugin.h @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. and INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/lib/merchant_api_context.c b/src/lib/merchant_api_context.c @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. + Copyright (C) 2014, 2015, 2016 GNUnet e.V. TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/lib/merchant_api_context.h b/src/lib/merchant_api_context.h @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. + Copyright (C) 2014, 2015, 2016 GNUnet e.V. TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/lib/merchant_api_json.c b/src/lib/merchant_api_json.c @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. + Copyright (C) 2014, 2015, 2016 GNUnet e.V. TALER 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 diff --git a/src/lib/merchant_api_json.h b/src/lib/merchant_api_json.h @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. + Copyright (C) 2014, 2015, 2016 GNUnet e.V. TALER 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 diff --git a/src/lib/merchant_api_pay.c b/src/lib/merchant_api_pay.c @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. + Copyright (C) 2014, 2015, 2016 GNUnet e.V. and INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/lib/test_merchant_api.c b/src/lib/test_merchant_api.c @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. + Copyright (C) 2014, 2015, 2016 GNUnet e.V. and INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software diff --git a/src/tests/test_contract.c b/src/tests/test_contract.c @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2014, 2015 GNUnet e.V. and INRIA + Copyright (C) 2014, 2015, 2016 INRIA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software