summaryrefslogtreecommitdiffstats
path: root/pharos-dashboard/account
diff options
context:
space:
mode:
Diffstat (limited to 'pharos-dashboard/account')
-rw-r--r--pharos-dashboard/account/__init__.py10
-rw-r--r--pharos-dashboard/account/admin.py10
-rw-r--r--pharos-dashboard/account/apps.py10
-rw-r--r--pharos-dashboard/account/forms.py10
-rw-r--r--pharos-dashboard/account/jira_util.py10
-rw-r--r--pharos-dashboard/account/middleware.py10
-rw-r--r--pharos-dashboard/account/migrations/__init__.py10
-rw-r--r--pharos-dashboard/account/models.py10
-rw-r--r--pharos-dashboard/account/tests/__init__.py10
-rw-r--r--pharos-dashboard/account/tests/test_general.py10
-rw-r--r--pharos-dashboard/account/urls.py10
-rw-r--r--pharos-dashboard/account/views.py10
12 files changed, 120 insertions, 0 deletions
diff --git a/pharos-dashboard/account/__init__.py b/pharos-dashboard/account/__init__.py
index e69de29..b5914ce 100644
--- a/pharos-dashboard/account/__init__.py
+++ b/pharos-dashboard/account/__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/account/admin.py b/pharos-dashboard/account/admin.py
index 7fab123..18b2e1a 100644
--- a/pharos-dashboard/account/admin.py
+++ b/pharos-dashboard/account/admin.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.contrib import admin
from account.models import UserProfile
diff --git a/pharos-dashboard/account/apps.py b/pharos-dashboard/account/apps.py
index 999566c..9814648 100644
--- a/pharos-dashboard/account/apps.py
+++ b/pharos-dashboard/account/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/account/forms.py b/pharos-dashboard/account/forms.py
index 92c55d8..7653e2b 100644
--- a/pharos-dashboard/account/forms.py
+++ b/pharos-dashboard/account/forms.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 django.forms as forms
import pytz as pytz
diff --git a/pharos-dashboard/account/jira_util.py b/pharos-dashboard/account/jira_util.py
index c066a68..c333f8c 100644
--- a/pharos-dashboard/account/jira_util.py
+++ b/pharos-dashboard/account/jira_util.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 base64
import os
diff --git a/pharos-dashboard/account/middleware.py b/pharos-dashboard/account/middleware.py
index 6f7cac7..0f1dbd8 100644
--- a/pharos-dashboard/account/middleware.py
+++ b/pharos-dashboard/account/middleware.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.utils import timezone
from django.utils.deprecation import MiddlewareMixin
diff --git a/pharos-dashboard/account/migrations/__init__.py b/pharos-dashboard/account/migrations/__init__.py
index e69de29..b5914ce 100644
--- a/pharos-dashboard/account/migrations/__init__.py
+++ b/pharos-dashboard/account/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/account/models.py b/pharos-dashboard/account/models.py
index fb2c8dd..621f669 100644
--- a/pharos-dashboard/account/models.py
+++ b/pharos-dashboard/account/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.contrib.auth.models import User
diff --git a/pharos-dashboard/account/tests/__init__.py b/pharos-dashboard/account/tests/__init__.py
index e69de29..b5914ce 100644
--- a/pharos-dashboard/account/tests/__init__.py
+++ b/pharos-dashboard/account/tests/__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/account/tests/test_general.py b/pharos-dashboard/account/tests/test_general.py
index ba80b62..72e7ea1 100644
--- a/pharos-dashboard/account/tests/test_general.py
+++ b/pharos-dashboard/account/tests/test_general.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.contrib.auth.models import User
from django.test import Client
from django.test import TestCase
diff --git a/pharos-dashboard/account/urls.py b/pharos-dashboard/account/urls.py
index 7289da6..3962a0c 100644
--- a/pharos-dashboard/account/urls.py
+++ b/pharos-dashboard/account/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/account/views.py b/pharos-dashboard/account/views.py
index fd1762e..3b4269d 100644
--- a/pharos-dashboard/account/views.py
+++ b/pharos-dashboard/account/views.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
import urllib