From 81193cc055197a49780ce8eb305f79226aa1e420 Mon Sep 17 00:00:00 2001 From: aviau Date: Fri, 15 Aug 2014 10:26:23 -0400 Subject: [PATCH] Added license headers Change-Id: Ia56693f32ad5f5c1e2de9367f581ba0e4df787cf --- setup.py | 14 ++++++++++++++ surveil/api/app.py | 14 ++++++++++++++ surveil/api/config.py | 14 ++++++++++++++ surveil/api/controllers/root.py | 14 ++++++++++++++ surveil/api/controllers/v1/hello.py | 14 ++++++++++++++ surveil/api/controllers/v1/v1.py | 14 ++++++++++++++ surveil/tests/api/functionalTest.py | 14 ++++++++++++++ 7 files changed, 98 insertions(+) diff --git a/setup.py b/setup.py index 8110093..8fde46b 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,17 @@ +# Copyright 2014 - Savoir-Faire Linux inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + import setuptools setuptools.setup( diff --git a/surveil/api/app.py b/surveil/api/app.py index 79fa0ae..8d86f75 100644 --- a/surveil/api/app.py +++ b/surveil/api/app.py @@ -1,3 +1,17 @@ +# Copyright 2014 - Savoir-Faire Linux inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + from pecan import make_app # from pecanrest import model diff --git a/surveil/api/config.py b/surveil/api/config.py index 85e0b85..2ae7c4f 100644 --- a/surveil/api/config.py +++ b/surveil/api/config.py @@ -1,3 +1,17 @@ +# Copyright 2014 - Savoir-Faire Linux inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + # Server Specific Configurations server = { 'port': '8080', diff --git a/surveil/api/controllers/root.py b/surveil/api/controllers/root.py index 2f1b917..e6c20f1 100644 --- a/surveil/api/controllers/root.py +++ b/surveil/api/controllers/root.py @@ -1,3 +1,17 @@ +# Copyright 2014 - Savoir-Faire Linux inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + from surveil.api.controllers.v1 import v1 diff --git a/surveil/api/controllers/v1/hello.py b/surveil/api/controllers/v1/hello.py index 16841d4..a9a144d 100644 --- a/surveil/api/controllers/v1/hello.py +++ b/surveil/api/controllers/v1/hello.py @@ -1,3 +1,17 @@ +# Copyright 2014 - Savoir-Faire Linux inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + import pecan from pecan import rest diff --git a/surveil/api/controllers/v1/v1.py b/surveil/api/controllers/v1/v1.py index bb9f6a5..07912d9 100644 --- a/surveil/api/controllers/v1/v1.py +++ b/surveil/api/controllers/v1/v1.py @@ -1,3 +1,17 @@ +# Copyright 2014 - Savoir-Faire Linux inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + from surveil.api.controllers.v1 import hello diff --git a/surveil/tests/api/functionalTest.py b/surveil/tests/api/functionalTest.py index 0fcecd1..497d35b 100644 --- a/surveil/tests/api/functionalTest.py +++ b/surveil/tests/api/functionalTest.py @@ -1,3 +1,17 @@ +# Copyright 2014 - Savoir-Faire Linux inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + from unittest import TestCase from pecan import set_config from pecan.testing import load_test_app