summaryrefslogtreecommitdiff
path: root/troveclient
diff options
context:
space:
mode:
authorMichael Basnight <mbasnight@gmail.com>2013-10-22 17:46:41 +0000
committerVipul Sabhaya <vipuls@gmail.com>2013-10-22 11:21:33 -0700
commitaf4d4ed4f75ac26339399c2c226cec69eb20caa8 (patch)
tree39d621dffede92189954f19bd545765f03d3a3c9 /troveclient
parentb46248c98fd3dcafb6dba24cf17103d4e644e2e4 (diff)
downloadpython-troveclient-af4d4ed4f75ac26339399c2c226cec69eb20caa8.tar.gz
Fixing copyright and license headers
* Added HP copyrights as appropriate Change-Id: If4f30b0caf03b16f5fb4f54185ba80d9fa41d0b0
Diffstat (limited to 'troveclient')
-rw-r--r--troveclient/__init__.py4
-rw-r--r--troveclient/base.py4
-rw-r--r--troveclient/client.py6
-rw-r--r--troveclient/common.py6
-rw-r--r--troveclient/exceptions.py7
-rw-r--r--troveclient/service_catalog.py4
-rw-r--r--troveclient/shell.py5
-rw-r--r--troveclient/tests/__init__.py17
-rw-r--r--troveclient/tests/test_accounts.py19
-rw-r--r--troveclient/tests/test_auth.py18
-rw-r--r--troveclient/tests/test_base.py19
-rw-r--r--troveclient/tests/test_client.py26
-rw-r--r--troveclient/tests/test_common.py19
-rw-r--r--troveclient/tests/test_instances.py19
-rw-r--r--troveclient/tests/test_limits.py19
-rw-r--r--troveclient/tests/test_management.py19
-rw-r--r--troveclient/tests/test_secgroups.py19
-rw-r--r--troveclient/tests/test_users.py19
-rw-r--r--troveclient/tests/test_utils.py19
-rw-r--r--troveclient/utils.py6
-rw-r--r--troveclient/v1/__init__.py17
-rw-r--r--troveclient/v1/accounts.py5
-rw-r--r--troveclient/v1/backups.py6
-rw-r--r--troveclient/v1/client.py18
-rw-r--r--troveclient/v1/databases.py18
-rw-r--r--troveclient/v1/diagnostics.py5
-rw-r--r--troveclient/v1/flavors.py6
-rw-r--r--troveclient/v1/hosts.py5
-rw-r--r--troveclient/v1/instances.py6
-rw-r--r--troveclient/v1/limits.py6
-rw-r--r--troveclient/v1/management.py5
-rw-r--r--troveclient/v1/quota.py6
-rw-r--r--troveclient/v1/root.py5
-rw-r--r--troveclient/v1/security_groups.py5
-rw-r--r--troveclient/v1/shell.py18
-rw-r--r--troveclient/v1/storage.py5
-rw-r--r--troveclient/v1/users.py5
37 files changed, 383 insertions, 32 deletions
diff --git a/troveclient/__init__.py b/troveclient/__init__.py
index 8efe847..4ed8791 100644
--- a/troveclient/__init__.py
+++ b/troveclient/__init__.py
@@ -1,6 +1,8 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4
-# Copyright 2012 OpenStack LLC
+# Copyright 2012 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
diff --git a/troveclient/base.py b/troveclient/base.py
index 44ac425..7f4adef 100644
--- a/troveclient/base.py
+++ b/troveclient/base.py
@@ -1,6 +1,8 @@
-# Copyright 2010 Jacob Kaplan-Moss
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+# Copyright 2010 Jacob Kaplan-Moss
# Copyright 2012 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/client.py b/troveclient/client.py
index 14ec959..af9362e 100644
--- a/troveclient/client.py
+++ b/troveclient/client.py
@@ -1,4 +1,8 @@
-# Copyright (c) 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/common.py b/troveclient/common.py
index 4cba289..b2befd3 100644
--- a/troveclient/common.py
+++ b/troveclient/common.py
@@ -1,4 +1,8 @@
-# Copyright 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
diff --git a/troveclient/exceptions.py b/troveclient/exceptions.py
index 7808a32..23db77e 100644
--- a/troveclient/exceptions.py
+++ b/troveclient/exceptions.py
@@ -1,4 +1,9 @@
-# Copyright 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
diff --git a/troveclient/service_catalog.py b/troveclient/service_catalog.py
index a543142..9cde7ff 100644
--- a/troveclient/service_catalog.py
+++ b/troveclient/service_catalog.py
@@ -1,6 +1,8 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
# Copyright 2011 OpenStack LLC.
# Copyright 2011, Piston Cloud Computing, Inc.
-#
+# Copyright 2013 Rackspace Hosting
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/troveclient/shell.py b/troveclient/shell.py
index 27fe0c8..adca730 100644
--- a/troveclient/shell.py
+++ b/troveclient/shell.py
@@ -1,4 +1,7 @@
-# Copyright 2011 OpenStack LLC.
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/tests/__init__.py b/troveclient/tests/__init__.py
index e69de29..adfbb69 100644
--- a/troveclient/tests/__init__.py
+++ b/troveclient/tests/__init__.py
@@ -0,0 +1,17 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
diff --git a/troveclient/tests/test_accounts.py b/troveclient/tests/test_accounts.py
index 1b5a1f4..d541e98 100644
--- a/troveclient/tests/test_accounts.py
+++ b/troveclient/tests/test_accounts.py
@@ -1,3 +1,22 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
from testtools import TestCase
from mock import Mock
diff --git a/troveclient/tests/test_auth.py b/troveclient/tests/test_auth.py
index 4c1023d..f57f8ea 100644
--- a/troveclient/tests/test_auth.py
+++ b/troveclient/tests/test_auth.py
@@ -1,3 +1,21 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
from testtools import TestCase
from troveclient import auth
diff --git a/troveclient/tests/test_base.py b/troveclient/tests/test_base.py
index 6d4e9eb..6414753 100644
--- a/troveclient/tests/test_base.py
+++ b/troveclient/tests/test_base.py
@@ -1,3 +1,22 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
import contextlib
import os
diff --git a/troveclient/tests/test_client.py b/troveclient/tests/test_client.py
index 84c332a..5ae6537 100644
--- a/troveclient/tests/test_client.py
+++ b/troveclient/tests/test_client.py
@@ -1,15 +1,21 @@
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
#
-# http://www.apache.org/licenses/LICENSE-2.0
+# http://www.apache.org/licenses/LICENSE-2.0
#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-# implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
from testtools import TestCase
diff --git a/troveclient/tests/test_common.py b/troveclient/tests/test_common.py
index c0d8090..320e4ce 100644
--- a/troveclient/tests/test_common.py
+++ b/troveclient/tests/test_common.py
@@ -1,3 +1,22 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
from testtools import TestCase
from mock import Mock
diff --git a/troveclient/tests/test_instances.py b/troveclient/tests/test_instances.py
index b3a2a00..2b74052 100644
--- a/troveclient/tests/test_instances.py
+++ b/troveclient/tests/test_instances.py
@@ -1,3 +1,22 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
from testtools import TestCase
from mock import Mock
diff --git a/troveclient/tests/test_limits.py b/troveclient/tests/test_limits.py
index 8b9087d..2a7230a 100644
--- a/troveclient/tests/test_limits.py
+++ b/troveclient/tests/test_limits.py
@@ -1,3 +1,22 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
from testtools import TestCase
from mock import Mock
from troveclient.v1 import limits
diff --git a/troveclient/tests/test_management.py b/troveclient/tests/test_management.py
index 0b37749..60c7825 100644
--- a/troveclient/tests/test_management.py
+++ b/troveclient/tests/test_management.py
@@ -1,3 +1,22 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
from testtools import TestCase
from mock import Mock
diff --git a/troveclient/tests/test_secgroups.py b/troveclient/tests/test_secgroups.py
index 1d4d355..20ab13b 100644
--- a/troveclient/tests/test_secgroups.py
+++ b/troveclient/tests/test_secgroups.py
@@ -1,3 +1,22 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
from testtools import TestCase
from mock import Mock
diff --git a/troveclient/tests/test_users.py b/troveclient/tests/test_users.py
index 5f04d38..01290e2 100644
--- a/troveclient/tests/test_users.py
+++ b/troveclient/tests/test_users.py
@@ -1,3 +1,22 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
from testtools import TestCase
from mock import Mock
diff --git a/troveclient/tests/test_utils.py b/troveclient/tests/test_utils.py
index 217b596..22dc670 100644
--- a/troveclient/tests/test_utils.py
+++ b/troveclient/tests/test_utils.py
@@ -1,3 +1,22 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
import os
from testtools import TestCase
from troveclient import utils
diff --git a/troveclient/utils.py b/troveclient/utils.py
index 0cb9d49..d3423c2 100644
--- a/troveclient/utils.py
+++ b/troveclient/utils.py
@@ -1,4 +1,8 @@
-# Copyright 2012 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
diff --git a/troveclient/v1/__init__.py b/troveclient/v1/__init__.py
index e69de29..0685d8a 100644
--- a/troveclient/v1/__init__.py
+++ b/troveclient/v1/__init__.py
@@ -0,0 +1,17 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
diff --git a/troveclient/v1/accounts.py b/troveclient/v1/accounts.py
index 7e5a48e..7d9bf07 100644
--- a/troveclient/v1/accounts.py
+++ b/troveclient/v1/accounts.py
@@ -1,4 +1,7 @@
-# Copyright (c) 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/v1/backups.py b/troveclient/v1/backups.py
index 85b79f7..0c72a87 100644
--- a/troveclient/v1/backups.py
+++ b/troveclient/v1/backups.py
@@ -1,4 +1,8 @@
-# Copyright (c) 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/v1/client.py b/troveclient/v1/client.py
index 0b80e21..d48f714 100644
--- a/troveclient/v1/client.py
+++ b/troveclient/v1/client.py
@@ -1,3 +1,21 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
from troveclient import client
from troveclient.v1.databases import Databases
from troveclient.v1.flavors import Flavors
diff --git a/troveclient/v1/databases.py b/troveclient/v1/databases.py
index 20f3cd5..9172083 100644
--- a/troveclient/v1/databases.py
+++ b/troveclient/v1/databases.py
@@ -1,3 +1,21 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
from troveclient import base
from troveclient.common import check_for_exceptions
from troveclient.common import limit_url
diff --git a/troveclient/v1/diagnostics.py b/troveclient/v1/diagnostics.py
index 6429580..bf067db 100644
--- a/troveclient/v1/diagnostics.py
+++ b/troveclient/v1/diagnostics.py
@@ -1,4 +1,7 @@
-# Copyright (c) 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/v1/flavors.py b/troveclient/v1/flavors.py
index 1bb49d9..cd70ec8 100644
--- a/troveclient/v1/flavors.py
+++ b/troveclient/v1/flavors.py
@@ -1,4 +1,7 @@
-# Copyright (c) 2012 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -13,7 +16,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-
from troveclient import base
diff --git a/troveclient/v1/hosts.py b/troveclient/v1/hosts.py
index d42f688..8a3e583 100644
--- a/troveclient/v1/hosts.py
+++ b/troveclient/v1/hosts.py
@@ -1,4 +1,7 @@
-# Copyright (c) 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/v1/instances.py b/troveclient/v1/instances.py
index 3b12f02..7dee8c0 100644
--- a/troveclient/v1/instances.py
+++ b/troveclient/v1/instances.py
@@ -1,4 +1,8 @@
-# Copyright (c) 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/v1/limits.py b/troveclient/v1/limits.py
index 88de1a0..35733e9 100644
--- a/troveclient/v1/limits.py
+++ b/troveclient/v1/limits.py
@@ -1,4 +1,8 @@
-# Copyright (c) 2013 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/v1/management.py b/troveclient/v1/management.py
index 0aabe21..a3d1158 100644
--- a/troveclient/v1/management.py
+++ b/troveclient/v1/management.py
@@ -1,4 +1,7 @@
-# Copyright (c) 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/v1/quota.py b/troveclient/v1/quota.py
index fdf27d3..b076e64 100644
--- a/troveclient/v1/quota.py
+++ b/troveclient/v1/quota.py
@@ -1,4 +1,8 @@
-# Copyright (c) 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/v1/root.py b/troveclient/v1/root.py
index 247332b..8e66bed 100644
--- a/troveclient/v1/root.py
+++ b/troveclient/v1/root.py
@@ -1,4 +1,7 @@
-# Copyright (c) 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/v1/security_groups.py b/troveclient/v1/security_groups.py
index 5edda16..ee62b0f 100644
--- a/troveclient/v1/security_groups.py
+++ b/troveclient/v1/security_groups.py
@@ -1,4 +1,8 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
# Copyright 2013 Hewlett-Packard Development Company, L.P.
+# Copyright 2013 Rackspace Hosting
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -12,7 +16,6 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
-#
from troveclient import base
diff --git a/troveclient/v1/shell.py b/troveclient/v1/shell.py
index 835dd45..299431c 100644
--- a/troveclient/v1/shell.py
+++ b/troveclient/v1/shell.py
@@ -1,3 +1,21 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
from __future__ import print_function
import sys
diff --git a/troveclient/v1/storage.py b/troveclient/v1/storage.py
index 72424c5..95cd480 100644
--- a/troveclient/v1/storage.py
+++ b/troveclient/v1/storage.py
@@ -1,4 +1,7 @@
-# Copyright (c) 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/troveclient/v1/users.py b/troveclient/v1/users.py
index f04ca34..3e8586d 100644
--- a/troveclient/v1/users.py
+++ b/troveclient/v1/users.py
@@ -1,4 +1,7 @@
-# Copyright (c) 2011 OpenStack Foundation
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack Foundation
+# Copyright 2013 Rackspace Hosting
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may