summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/jenkins
diff options
context:
space:
mode:
authormaxbr <maxbr@mi.fu-berlin.de>2016-09-21 17:51:57 +0200
committermaxbr <maxbr@mi.fu-berlin.de>2016-09-21 17:56:05 +0200
commit8437441564f8b1673c07497011779b1e35d55c80 (patch)
tree5ab04e3fe5c7520c1a5a990fc30da5ca147415f2 /tools/pharos-dashboard/jenkins
parentdcc6fa43043c685b7443cbc27da12ad9bf2225c4 (diff)
Add license headers
JIRA: RELENG-12 Change-Id: I6aeb82b2f72d086b70737f86282f8ed0c48f83cf Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'tools/pharos-dashboard/jenkins')
-rw-r--r--tools/pharos-dashboard/jenkins/__init__.py10
-rw-r--r--tools/pharos-dashboard/jenkins/adapter.py10
-rw-r--r--tools/pharos-dashboard/jenkins/apps.py10
-rw-r--r--tools/pharos-dashboard/jenkins/migrations/__init__.py10
-rw-r--r--tools/pharos-dashboard/jenkins/models.py10
-rw-r--r--tools/pharos-dashboard/jenkins/tasks.py10
-rw-r--r--tools/pharos-dashboard/jenkins/tests.py10
7 files changed, 70 insertions, 0 deletions
diff --git a/tools/pharos-dashboard/jenkins/__init__.py b/tools/pharos-dashboard/jenkins/__init__.py
index e69de29b..b5914ce7 100644
--- a/tools/pharos-dashboard/jenkins/__init__.py
+++ b/tools/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/tools/pharos-dashboard/jenkins/adapter.py b/tools/pharos-dashboard/jenkins/adapter.py
index f9e352a1..ff0508d9 100644
--- a/tools/pharos-dashboard/jenkins/adapter.py
+++ b/tools/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/tools/pharos-dashboard/jenkins/apps.py b/tools/pharos-dashboard/jenkins/apps.py
index 5abd2155..41faf600 100644
--- a/tools/pharos-dashboard/jenkins/apps.py
+++ b/tools/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/tools/pharos-dashboard/jenkins/migrations/__init__.py b/tools/pharos-dashboard/jenkins/migrations/__init__.py
index e69de29b..b5914ce7 100644
--- a/tools/pharos-dashboard/jenkins/migrations/__init__.py
+++ b/tools/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/tools/pharos-dashboard/jenkins/models.py b/tools/pharos-dashboard/jenkins/models.py
index 354887ab..0875bba5 100644
--- a/tools/pharos-dashboard/jenkins/models.py
+++ b/tools/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/tools/pharos-dashboard/jenkins/tasks.py b/tools/pharos-dashboard/jenkins/tasks.py
index 6998cf3b..7c037827 100644
--- a/tools/pharos-dashboard/jenkins/tasks.py
+++ b/tools/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/tools/pharos-dashboard/jenkins/tests.py b/tools/pharos-dashboard/jenkins/tests.py
index b1414515..4f350d20 100644
--- a/tools/pharos-dashboard/jenkins/tests.py
+++ b/tools/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