diff options
Diffstat (limited to 'tools/pharos-dashboard/account')
-rw-r--r-- | tools/pharos-dashboard/account/__init__.py | 10 | ||||
-rw-r--r-- | tools/pharos-dashboard/account/admin.py | 10 | ||||
-rw-r--r-- | tools/pharos-dashboard/account/apps.py | 10 | ||||
-rw-r--r-- | tools/pharos-dashboard/account/forms.py | 10 | ||||
-rw-r--r-- | tools/pharos-dashboard/account/jira_util.py | 10 | ||||
-rw-r--r-- | tools/pharos-dashboard/account/middleware.py | 10 | ||||
-rw-r--r-- | tools/pharos-dashboard/account/migrations/__init__.py | 10 | ||||
-rw-r--r-- | tools/pharos-dashboard/account/models.py | 10 | ||||
-rw-r--r-- | tools/pharos-dashboard/account/tests/__init__.py | 10 | ||||
-rw-r--r-- | tools/pharos-dashboard/account/tests/test_general.py | 10 | ||||
-rw-r--r-- | tools/pharos-dashboard/account/urls.py | 10 | ||||
-rw-r--r-- | tools/pharos-dashboard/account/views.py | 10 |
12 files changed, 120 insertions, 0 deletions
diff --git a/tools/pharos-dashboard/account/__init__.py b/tools/pharos-dashboard/account/__init__.py index e69de29b..b5914ce7 100644 --- a/tools/pharos-dashboard/account/__init__.py +++ b/tools/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/tools/pharos-dashboard/account/admin.py b/tools/pharos-dashboard/account/admin.py index 7fab1238..18b2e1a8 100644 --- a/tools/pharos-dashboard/account/admin.py +++ b/tools/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/tools/pharos-dashboard/account/apps.py b/tools/pharos-dashboard/account/apps.py index 999566ca..9814648f 100644 --- a/tools/pharos-dashboard/account/apps.py +++ b/tools/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/tools/pharos-dashboard/account/forms.py b/tools/pharos-dashboard/account/forms.py index 92c55d85..7653e2b1 100644 --- a/tools/pharos-dashboard/account/forms.py +++ b/tools/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/tools/pharos-dashboard/account/jira_util.py b/tools/pharos-dashboard/account/jira_util.py index c066a686..c333f8c4 100644 --- a/tools/pharos-dashboard/account/jira_util.py +++ b/tools/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/tools/pharos-dashboard/account/middleware.py b/tools/pharos-dashboard/account/middleware.py index 6f7cac7a..0f1dbd86 100644 --- a/tools/pharos-dashboard/account/middleware.py +++ b/tools/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/tools/pharos-dashboard/account/migrations/__init__.py b/tools/pharos-dashboard/account/migrations/__init__.py index e69de29b..b5914ce7 100644 --- a/tools/pharos-dashboard/account/migrations/__init__.py +++ b/tools/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/tools/pharos-dashboard/account/models.py b/tools/pharos-dashboard/account/models.py index fb2c8ddd..621f6697 100644 --- a/tools/pharos-dashboard/account/models.py +++ b/tools/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/tools/pharos-dashboard/account/tests/__init__.py b/tools/pharos-dashboard/account/tests/__init__.py index e69de29b..b5914ce7 100644 --- a/tools/pharos-dashboard/account/tests/__init__.py +++ b/tools/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/tools/pharos-dashboard/account/tests/test_general.py b/tools/pharos-dashboard/account/tests/test_general.py index ba80b62c..72e7ea11 100644 --- a/tools/pharos-dashboard/account/tests/test_general.py +++ b/tools/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/tools/pharos-dashboard/account/urls.py b/tools/pharos-dashboard/account/urls.py index 7289da69..3962a0c6 100644 --- a/tools/pharos-dashboard/account/urls.py +++ b/tools/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/tools/pharos-dashboard/account/views.py b/tools/pharos-dashboard/account/views.py index fd1762e5..3b4269de 100644 --- a/tools/pharos-dashboard/account/views.py +++ b/tools/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 |