From 38f5f6b6573a173762839c39b535c75030029536 Mon Sep 17 00:00:00 2001 From: "Tobias Dussa (TGD)" <dussa@dfn-cert.de> Date: Fri, 2 Aug 2024 16:30:00 +0200 Subject: [PATCH] Cleanup. --- README.md | 7 +++---- reaction-server/reaction.py | 18 +++++++++--------- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index bd2cf7e..1c34237 100644 --- a/README.md +++ b/README.md @@ -6,15 +6,14 @@ https://wiki.geant.org/display/eduGAIN/Communication+Challenges ## Components -`reaction-master/reaction.py` provides the web services to measure the reaction time. +`reaction-server/reaction.py` provides the web services to measure the reaction time. -`reaction-mailcreate-master/createMails.py` creates the emails with the links to check +`reaction-mailcreate/createMails.py` creates the emails with the links to check the reaction time. ## Licenses -`reaction-master/reaction.py` is licensed with GNU GPL version 3 or later. -`reaction-mailcreate-master/createMails.py` is licensed under the GNU Affero GPL. +This software is licensed under the GNU Affero GPL. ## Authors and acknowledgment diff --git a/reaction-server/reaction.py b/reaction-server/reaction.py index 666de57..2ba3a82 100755 --- a/reaction-server/reaction.py +++ b/reaction-server/reaction.py @@ -2,20 +2,20 @@ # -*- coding: utf-8 -*- # reaction -# Copyright (C) 2021 EGI-IRTF -# +# Copyright (C) 2021 EGI-IRTF + # This program 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 Foundation, either version 3 of the License, or +# 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 General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <https://www.gnu.org/licenses/>. +# 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 <http://www.gnu.org/licenses/>. from datetime import datetime, timedelta -- GitLab