summaryrefslogtreecommitdiffstats
path: root/pharos-dashboard/pharos_dashboard
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
commit4ef75ec4b7012de37598ae4a99b0f5580b579bea (patch)
treeb85a4657b6421259ddcb1cd61ec39aba8fac0976 /pharos-dashboard/pharos_dashboard
parent100d67d065866c74954cb4b2135027a48e13d969 (diff)
Add license headers
JIRA: RELENG-12 Change-Id: I6aeb82b2f72d086b70737f86282f8ed0c48f83cf Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'pharos-dashboard/pharos_dashboard')
-rw-r--r--pharos-dashboard/pharos_dashboard/__init__.py10
-rw-r--r--pharos-dashboard/pharos_dashboard/celery.py10
-rw-r--r--pharos-dashboard/pharos_dashboard/urls.py10
-rw-r--r--pharos-dashboard/pharos_dashboard/wsgi.py10
4 files changed, 40 insertions, 0 deletions
diff --git a/pharos-dashboard/pharos_dashboard/__init__.py b/pharos-dashboard/pharos_dashboard/__init__.py
index b6fc817..f104c4d 100644
--- a/pharos-dashboard/pharos_dashboard/__init__.py
+++ b/pharos-dashboard/pharos_dashboard/__init__.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
+##############################################################################
+
+
# This will make sure the app is always imported when
# Django starts so that shared_task will use this app.
from .celery import app as celery_app # noqa
diff --git a/pharos-dashboard/pharos_dashboard/celery.py b/pharos-dashboard/pharos_dashboard/celery.py
index 4cf6a7a..f60f243 100644
--- a/pharos-dashboard/pharos_dashboard/celery.py
+++ b/pharos-dashboard/pharos_dashboard/celery.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 os
from celery import Celery
diff --git a/pharos-dashboard/pharos_dashboard/urls.py b/pharos-dashboard/pharos_dashboard/urls.py
index 4a9d914..adcb5b8 100644
--- a/pharos-dashboard/pharos_dashboard/urls.py
+++ b/pharos-dashboard/pharos_dashboard/urls.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
+##############################################################################
+
+
"""pharos_dashboard URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
diff --git a/pharos-dashboard/pharos_dashboard/wsgi.py b/pharos-dashboard/pharos_dashboard/wsgi.py
index b127751..3d43361 100644
--- a/pharos-dashboard/pharos_dashboard/wsgi.py
+++ b/pharos-dashboard/pharos_dashboard/wsgi.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
+##############################################################################
+
+
"""
WSGI config for pharos_dashboard project.