Skip to content

Commit 32d1c0e

Browse files
author
John Mitchell
committed
fixed copyright date
1 parent d011a87 commit 32d1c0e

File tree

162 files changed

+178
-176
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+178
-176
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Tags
2+
.tags
3+
.tags1
4+
15
# Tower
26
awx/settings/local_settings.py*
37
awx/*.sqlite3

awx/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
import os

awx/api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.

awx/api/authentication.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Django REST Framework

awx/api/filters.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Python

awx/api/generics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Python

awx/api/license.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
from rest_framework.exceptions import APIException

awx/api/management/commands/uses_mongo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
import sys

awx/api/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Empty models file.

awx/api/pagination.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Django REST Framework

awx/api/permissions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Python

awx/api/renderers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Django REST Framework

awx/api/serializers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Python

awx/api/tests/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
from __future__ import absolute_import

awx/api/tests/decorator_paginated.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
import json

awx/api/tests/job_tasks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
from django.conf import settings

awx/api/urls.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# noqa

awx/api/utils/decorators.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
from ordereddict import OrderedDict

awx/api/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
2+
# Copyright (c) 2015 Ansible, Inc.
33
# All Rights Reserved.
44

55
# Python

awx/devonly.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# This file should only be present in a source checkout, and never in a release

awx/fact/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
from __future__ import absolute_import

awx/fact/management/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved

awx/fact/management/commands/workload_generator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
# Python

awx/fact/models/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
from __future__ import absolute_import

awx/fact/models/fact.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
from mongoengine.base import BaseField

awx/fact/tests/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
from __future__ import absolute_import

awx/fact/tests/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
# Python

awx/fact/tests/models/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
from __future__ import absolute_import

awx/fact/tests/models/fact/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
from __future__ import absolute_import

awx/fact/tests/models/fact/fact_get_single_facts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
# Python

awx/fact/tests/models/fact/fact_simple.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
# Python

awx/fact/tests/models/fact/fact_transform.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
# Python

awx/fact/tests/models/fact/fact_transform_pymongo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
# Python

awx/fact/tests/utils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
from __future__ import absolute_import

awx/fact/tests/utils/dbtransform.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
# AWX

awx/fact/utils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved

awx/fact/utils/connection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
from django.conf import settings

awx/fact/utils/dbtransform.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Pymongo

awx/lib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.

awx/lib/compat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
'''

awx/main/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.

awx/main/access.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Python

awx/main/backend.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Django

awx/main/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
CLOUD_PROVIDERS = ('azure', 'ec2', 'gce', 'rax', 'vmware', 'openstack')

awx/main/fields.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Django

awx/main/ha.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
from django.conf import settings

awx/main/management/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.

awx/main/management/commands/_base_instance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
from optparse import make_option

awx/main/management/commands/cleanup_activitystream.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Python

awx/main/management/commands/cleanup_deleted.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Python

awx/main/management/commands/cleanup_facts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
# Python

awx/main/management/commands/cleanup_jobs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Python

awx/main/management/commands/create_default_org.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
from django.core.management.base import BaseCommand

awx/main/management/commands/inventory_import.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Python

awx/main/management/commands/list_instances.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
from awx.main.management.commands._base_instance import BaseCommandInstance

awx/main/management/commands/register_instance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
from django.core.management.base import CommandError

awx/main/management/commands/remove_instance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
from django.core.management.base import CommandError

awx/main/management/commands/run_callback_receiver.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Python

awx/main/management/commands/run_fact_cache_receiver.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
import logging

awx/main/management/commands/run_socketio_service.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
# Python

awx/main/management/commands/run_task_system.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
#Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
# Python

awx/main/management/commands/stats.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
from optparse import make_option

awx/main/management/commands/update_instance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44
from django.core.management.base import CommandError

awx/main/management/commands/user_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved
33

44

awx/main/managers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
import sys

awx/main/middleware.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, Inc.)
1+
# Copyright (c) 2015 Ansible, Inc.
22
# All Rights Reserved.
33

44
import logging

0 commit comments

Comments
 (0)