diff --git a/src/clmcservice/clmcservice/__init__.py b/src/clmcservice/clmcservice/__init__.py index 9c6d4e7b7de62fc9476de5dc4f69daebceede078..c933337669b0f6f747cfacad9a3afc2c22dc652d 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 e3cc20214753cc365e2b43170600bc89a47a57fd..cd52c6456c51f330d212916d571ade8ff9381abc 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 e17818ae15f7be180d85aebc79ec1574761a1840..e3d3273874b598a8878277ae13b7b451d9a4eefb 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 d7c76d6ff120c7cdd1a6d5aaa688b81e9fb9f951..b079f5ec50d50880e4a51439a3be95d7785c5f45 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 f0b52b78685faa99f8987ecb5d5b83192466c599..817d1bdbebd1b4d58b61144a3edf692832d2ea60 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 """