From 002bd10689b3541ffa7e099d87c0de1daeda73d4 Mon Sep 17 00:00:00 2001 From: Nikolay Stanchev <ns17@it-innovation.soton.ac.uk> Date: Tue, 15 May 2018 11:24:52 +0100 Subject: [PATCH] Added license headers --- src/clmcservice/clmcservice/__init__.py | 23 +++++++++++++++++++++++ src/clmcservice/clmcservice/tests.py | 23 +++++++++++++++++++++++ src/clmcservice/clmcservice/utilities.py | 23 +++++++++++++++++++++++ src/clmcservice/clmcservice/views.py | 23 +++++++++++++++++++++++ src/clmcservice/setup.py | 4 ++-- 5 files changed, 94 insertions(+), 2 deletions(-) diff --git a/src/clmcservice/clmcservice/__init__.py b/src/clmcservice/clmcservice/__init__.py index 9c6d4e7..c933337 100644 --- a/src/clmcservice/clmcservice/__init__.py +++ b/src/clmcservice/clmcservice/__init__.py @@ -1,3 +1,26 @@ +""" +// © University of Southampton IT Innovation Centre, 2018 +// +// Copyright in this software belongs to University of Southampton +// IT Innovation Centre of Gamma House, Enterprise Road, +// Chilworth Science Park, Southampton, SO16 7NS, UK. +// +// This software may not be used, sold, licensed, transferred, copied +// or reproduced in whole or in part in any manner or form or in or +// on any media by any person other than in accordance with the terms +// of the Licence Agreement supplied with the software, or otherwise +// without the prior written consent of the copyright owners. +// +// This software is distributed WITHOUT ANY WARRANTY, without even the +// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE, except where stated in the Licence Agreement supplied with +// the software. +// +// Created By : Nikolay Stanchev +// Created Date : 15-05-2018 +// Created for Project : FLAME +""" + from pyramid.config import Configurator from pyramid.settings import asbool from clmcservice.views import AggregatorConfig diff --git a/src/clmcservice/clmcservice/tests.py b/src/clmcservice/clmcservice/tests.py index e3cc202..cd52c64 100644 --- a/src/clmcservice/clmcservice/tests.py +++ b/src/clmcservice/clmcservice/tests.py @@ -1,3 +1,26 @@ +""" +// © University of Southampton IT Innovation Centre, 2018 +// +// Copyright in this software belongs to University of Southampton +// IT Innovation Centre of Gamma House, Enterprise Road, +// Chilworth Science Park, Southampton, SO16 7NS, UK. +// +// This software may not be used, sold, licensed, transferred, copied +// or reproduced in whole or in part in any manner or form or in or +// on any media by any person other than in accordance with the terms +// of the Licence Agreement supplied with the software, or otherwise +// without the prior written consent of the copyright owners. +// +// This software is distributed WITHOUT ANY WARRANTY, without even the +// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE, except where stated in the Licence Agreement supplied with +// the software. +// +// Created By : Nikolay Stanchev +// Created Date : 15-05-2018 +// Created for Project : FLAME +""" + import pytest from pyramid import testing from pyramid.httpexceptions import HTTPBadRequest diff --git a/src/clmcservice/clmcservice/utilities.py b/src/clmcservice/clmcservice/utilities.py index e17818a..e3d3273 100644 --- a/src/clmcservice/clmcservice/utilities.py +++ b/src/clmcservice/clmcservice/utilities.py @@ -1,3 +1,26 @@ +""" +// © University of Southampton IT Innovation Centre, 2018 +// +// Copyright in this software belongs to University of Southampton +// IT Innovation Centre of Gamma House, Enterprise Road, +// Chilworth Science Park, Southampton, SO16 7NS, UK. +// +// This software may not be used, sold, licensed, transferred, copied +// or reproduced in whole or in part in any manner or form or in or +// on any media by any person other than in accordance with the terms +// of the Licence Agreement supplied with the software, or otherwise +// without the prior written consent of the copyright owners. +// +// This software is distributed WITHOUT ANY WARRANTY, without even the +// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE, except where stated in the Licence Agreement supplied with +// the software. +// +// Created By : Nikolay Stanchev +// Created Date : 15-05-2018 +// Created for Project : FLAME +""" + def str_to_bool(value): """ A utility function to convert a string to boolean based on simple rules. diff --git a/src/clmcservice/clmcservice/views.py b/src/clmcservice/clmcservice/views.py index d7c76d6..b079f5e 100644 --- a/src/clmcservice/clmcservice/views.py +++ b/src/clmcservice/clmcservice/views.py @@ -1,3 +1,26 @@ +""" +// © University of Southampton IT Innovation Centre, 2018 +// +// Copyright in this software belongs to University of Southampton +// IT Innovation Centre of Gamma House, Enterprise Road, +// Chilworth Science Park, Southampton, SO16 7NS, UK. +// +// This software may not be used, sold, licensed, transferred, copied +// or reproduced in whole or in part in any manner or form or in or +// on any media by any person other than in accordance with the terms +// of the Licence Agreement supplied with the software, or otherwise +// without the prior written consent of the copyright owners. +// +// This software is distributed WITHOUT ANY WARRANTY, without even the +// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE, except where stated in the Licence Agreement supplied with +// the software. +// +// Created By : Nikolay Stanchev +// Created Date : 15-05-2018 +// Created for Project : FLAME +""" + from pyramid.view import view_defaults from pyramid.httpexceptions import HTTPBadRequest diff --git a/src/clmcservice/setup.py b/src/clmcservice/setup.py index f0b52b7..817d1bd 100644 --- a/src/clmcservice/setup.py +++ b/src/clmcservice/setup.py @@ -16,8 +16,8 @@ // PURPOSE, except where stated in the Licence Agreement supplied with // the software. // -// Created By : Michael Boniface -// Created Date : 25-03-2018 +// Created By : Nikolay Stanchev +// Created Date : 15-05-2018 // Created for Project : FLAME """ -- GitLab