diff options
author | maxbr <maxbr@mi.fu-berlin.de> | 2016-09-21 17:51:57 +0200 |
---|---|---|
committer | maxbr <maxbr@mi.fu-berlin.de> | 2016-09-21 17:56:05 +0200 |
commit | 4ef75ec4b7012de37598ae4a99b0f5580b579bea (patch) | |
tree | b85a4657b6421259ddcb1cd61ec39aba8fac0976 /pharos-dashboard/jenkins | |
parent | 100d67d065866c74954cb4b2135027a48e13d969 (diff) |
Add license headers
JIRA: RELENG-12
Change-Id: I6aeb82b2f72d086b70737f86282f8ed0c48f83cf
Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'pharos-dashboard/jenkins')
-rw-r--r-- | pharos-dashboard/jenkins/__init__.py | 10 | ||||
-rw-r--r-- | pharos-dashboard/jenkins/adapter.py | 10 | ||||
-rw-r--r-- | pharos-dashboard/jenkins/apps.py | 10 | ||||
-rw-r--r-- | pharos-dashboard/jenkins/migrations/__init__.py | 10 | ||||
-rw-r--r-- | pharos-dashboard/jenkins/models.py | 10 | ||||
-rw-r--r-- | pharos-dashboard/jenkins/tasks.py | 10 | ||||
-rw-r--r-- | pharos-dashboard/jenkins/tests.py | 10 |
7 files changed, 70 insertions, 0 deletions
diff --git a/pharos-dashboard/jenkins/__init__.py b/pharos-dashboard/jenkins/__init__.py index e69de29..b5914ce 100644 --- a/pharos-dashboard/jenkins/__init__.py +++ b/pharos-dashboard/jenkins/__init__.py @@ -0,0 +1,10 @@ +############################################################################## +# Copyright (c) 2016 Max Breitenfeldt and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + diff --git a/pharos-dashboard/jenkins/adapter.py b/pharos-dashboard/jenkins/adapter.py index f9e352a..ff0508d 100644 --- a/pharos-dashboard/jenkins/adapter.py +++ b/pharos-dashboard/jenkins/adapter.py @@ -1,3 +1,13 @@ +############################################################################## +# Copyright (c) 2016 Max Breitenfeldt and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + import logging import re diff --git a/pharos-dashboard/jenkins/apps.py b/pharos-dashboard/jenkins/apps.py index 5abd215..41faf60 100644 --- a/pharos-dashboard/jenkins/apps.py +++ b/pharos-dashboard/jenkins/apps.py @@ -1,3 +1,13 @@ +############################################################################## +# Copyright (c) 2016 Max Breitenfeldt and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + from django.apps import AppConfig diff --git a/pharos-dashboard/jenkins/migrations/__init__.py b/pharos-dashboard/jenkins/migrations/__init__.py index e69de29..b5914ce 100644 --- a/pharos-dashboard/jenkins/migrations/__init__.py +++ b/pharos-dashboard/jenkins/migrations/__init__.py @@ -0,0 +1,10 @@ +############################################################################## +# Copyright (c) 2016 Max Breitenfeldt and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + diff --git a/pharos-dashboard/jenkins/models.py b/pharos-dashboard/jenkins/models.py index 354887a..0875bba 100644 --- a/pharos-dashboard/jenkins/models.py +++ b/pharos-dashboard/jenkins/models.py @@ -1,3 +1,13 @@ +############################################################################## +# Copyright (c) 2016 Max Breitenfeldt and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + from django.db import models from django.utils import timezone diff --git a/pharos-dashboard/jenkins/tasks.py b/pharos-dashboard/jenkins/tasks.py index 6998cf3..7c03782 100644 --- a/pharos-dashboard/jenkins/tasks.py +++ b/pharos-dashboard/jenkins/tasks.py @@ -1,3 +1,13 @@ +############################################################################## +# Copyright (c) 2016 Max Breitenfeldt and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + from celery import shared_task from jenkins.models import JenkinsSlave, JenkinsStatistic diff --git a/pharos-dashboard/jenkins/tests.py b/pharos-dashboard/jenkins/tests.py index b141451..4f350d2 100644 --- a/pharos-dashboard/jenkins/tests.py +++ b/pharos-dashboard/jenkins/tests.py @@ -1,3 +1,13 @@ +############################################################################## +# Copyright (c) 2016 Max Breitenfeldt and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + from unittest import TestCase import jenkins.adapter as jenkins |