From 686cc88fd2e011a66712bae07a2b993ca754a630 Mon Sep 17 00:00:00 2001 From: ZhiQiang Fan Date: Fri, 20 Sep 2013 02:49:55 +0800 Subject: [PATCH] Replace OpenStack LLC with OpenStack Foundation Change-Id: I6c638f04fb7c97ac986ef31c1190011ed90a43d2 Fixes-Bug: #1214176 --- doc/source/conf.py | 4 ++-- doc/source/index.rst | 2 +- horizon/test/tests/base.py | 2 +- horizon/test/tests/middleware.py | 2 +- horizon/version.py | 2 +- openstack_dashboard/api/cinder.py | 2 +- openstack_dashboard/api/keystone.py | 2 +- openstack_dashboard/api/nova.py | 2 +- openstack_dashboard/dashboards/admin/instances/tables.py | 2 +- openstack_dashboard/dashboards/admin/instances/views.py | 2 +- .../project/access_and_security/api_access/views.py | 2 +- .../dashboards/project/access_and_security/panel.py | 2 +- .../dashboards/project/access_and_security/tabs.py | 2 +- .../dashboards/project/access_and_security/views.py | 2 +- .../dashboards/project/images_and_snapshots/panel.py | 2 +- .../dashboards/project/images_and_snapshots/tests.py | 2 +- .../dashboards/project/images_and_snapshots/views.py | 2 +- openstack_dashboard/dashboards/settings/dashboard.py | 2 +- openstack_dashboard/test/tests/error_pages.py | 2 +- openstack_dashboard/test/tests/templates.py | 2 +- 20 files changed, 21 insertions(+), 21 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index b70897200b..2c84fb3c4e 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -163,7 +163,7 @@ master_doc = 'index' # General information about the project. project = u'Horizon' -copyright = u'2012, OpenStack, LLC' +copyright = u'2012, OpenStack Foundation' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -316,7 +316,7 @@ latex_elements = { # [howto/manual]). latex_documents = [ ('index', 'Horizon.tex', u'Horizon Documentation', - u'OpenStack, LLC', 'manual'), + u'OpenStack Foundation', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of diff --git a/doc/source/index.rst b/doc/source/index.rst index 8dd40ec5e8..0c5c852eba 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -1,5 +1,5 @@ .. - Copyright 2012 OpenStack, LLC + Copyright 2012 OpenStack Foundation All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/horizon/test/tests/base.py b/horizon/test/tests/base.py index b2c8ea53a1..3feb459aba 100644 --- a/horizon/test/tests/base.py +++ b/horizon/test/tests/base.py @@ -4,7 +4,7 @@ # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # -# Copyright 2012 Openstack, LLC +# Copyright 2012 OpenStack Foundation # Copyright 2012 Nebula, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/horizon/test/tests/middleware.py b/horizon/test/tests/middleware.py index 4c45b5f38b..d480fa10dd 100644 --- a/horizon/test/tests/middleware.py +++ b/horizon/test/tests/middleware.py @@ -1,6 +1,6 @@ # vim: tabstop=4 shiftwidth=4 softtabstop=4 -# Copyright 2012 OpenStack LLC. +# Copyright 2012 OpenStack Foundation # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/horizon/version.py b/horizon/version.py index 6280a758e6..972f6ce221 100644 --- a/horizon/version.py +++ b/horizon/version.py @@ -1,6 +1,6 @@ # vim: tabstop=4 shiftwidth=4 softtabstop=4 -# Copyright 2012 OpenStack LLC +# Copyright 2012 OpenStack Foundation # # 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/openstack_dashboard/api/cinder.py b/openstack_dashboard/api/cinder.py index 22ce7d2430..5c0d377b6a 100644 --- a/openstack_dashboard/api/cinder.py +++ b/openstack_dashboard/api/cinder.py @@ -4,7 +4,7 @@ # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # -# Copyright 2012 Openstack, LLC +# Copyright 2012 OpenStack Foundation # Copyright 2012 Nebula, Inc. # Copyright (c) 2012 X.commerce, a business unit of eBay Inc. # diff --git a/openstack_dashboard/api/keystone.py b/openstack_dashboard/api/keystone.py index e0b9f048d2..461ab42639 100644 --- a/openstack_dashboard/api/keystone.py +++ b/openstack_dashboard/api/keystone.py @@ -4,7 +4,7 @@ # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # -# Copyright 2012 Openstack, LLC +# Copyright 2012 OpenStack Foundation # Copyright 2012 Nebula, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/openstack_dashboard/api/nova.py b/openstack_dashboard/api/nova.py index 22272cb95a..d48232205b 100644 --- a/openstack_dashboard/api/nova.py +++ b/openstack_dashboard/api/nova.py @@ -4,7 +4,7 @@ # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # -# Copyright 2012 Openstack, LLC +# Copyright 2012 OpenStack Foundation # Copyright 2012 Nebula, Inc. # Copyright (c) 2012 X.commerce, a business unit of eBay Inc. # diff --git a/openstack_dashboard/dashboards/admin/instances/tables.py b/openstack_dashboard/dashboards/admin/instances/tables.py index 9738a6e39c..1b9676ff8d 100644 --- a/openstack_dashboard/dashboards/admin/instances/tables.py +++ b/openstack_dashboard/dashboards/admin/instances/tables.py @@ -1,6 +1,6 @@ # vim: tabstop=4 shiftwidth=4 softtabstop=4 -# Copyright 2012 Openstack, LLC +# Copyright 2012 OpenStack Foundation # Copyright 2012 Nebula, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/openstack_dashboard/dashboards/admin/instances/views.py b/openstack_dashboard/dashboards/admin/instances/views.py index 85a9e559db..441a5d2349 100644 --- a/openstack_dashboard/dashboards/admin/instances/views.py +++ b/openstack_dashboard/dashboards/admin/instances/views.py @@ -4,7 +4,7 @@ # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # -# Copyright 2012 Openstack, LLC +# Copyright 2012 OpenStack Foundation # Copyright 2012 Nebula, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/openstack_dashboard/dashboards/project/access_and_security/api_access/views.py b/openstack_dashboard/dashboards/project/access_and_security/api_access/views.py index 1e8dfca9fc..3641a72f29 100644 --- a/openstack_dashboard/dashboards/project/access_and_security/api_access/views.py +++ b/openstack_dashboard/dashboards/project/access_and_security/api_access/views.py @@ -1,6 +1,6 @@ # vim: tabstop=4 shiftwidth=4 softtabstop=4 -# Copyright 2012 Openstack, LLC +# Copyright 2012 OpenStack Foundation # # 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/openstack_dashboard/dashboards/project/access_and_security/panel.py b/openstack_dashboard/dashboards/project/access_and_security/panel.py index 499837c17c..da05b502f3 100644 --- a/openstack_dashboard/dashboards/project/access_and_security/panel.py +++ b/openstack_dashboard/dashboards/project/access_and_security/panel.py @@ -1,7 +1,7 @@ # vim: tabstop=4 shiftwidth=4 softtabstop=4 # Copyright 2012 Nebula, Inc. -# Copyright 2012 OpenStack LLC +# Copyright 2012 OpenStack Foundation # # 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/openstack_dashboard/dashboards/project/access_and_security/tabs.py b/openstack_dashboard/dashboards/project/access_and_security/tabs.py index cb87b38cd5..4cf52cff15 100644 --- a/openstack_dashboard/dashboards/project/access_and_security/tabs.py +++ b/openstack_dashboard/dashboards/project/access_and_security/tabs.py @@ -5,7 +5,7 @@ # All Rights Reserved. # # Copyright 2012 Nebula, Inc. -# Copyright 2012 OpenStack LLC +# Copyright 2012 OpenStack Foundation # # 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/openstack_dashboard/dashboards/project/access_and_security/views.py b/openstack_dashboard/dashboards/project/access_and_security/views.py index 7dd2e720a3..5c6fee5733 100644 --- a/openstack_dashboard/dashboards/project/access_and_security/views.py +++ b/openstack_dashboard/dashboards/project/access_and_security/views.py @@ -5,7 +5,7 @@ # All Rights Reserved. # # Copyright 2012 Nebula, Inc. -# Copyright 2012 OpenStack LLC +# Copyright 2012 OpenStack Foundation # # 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/openstack_dashboard/dashboards/project/images_and_snapshots/panel.py b/openstack_dashboard/dashboards/project/images_and_snapshots/panel.py index 95cd195092..68888a99e0 100644 --- a/openstack_dashboard/dashboards/project/images_and_snapshots/panel.py +++ b/openstack_dashboard/dashboards/project/images_and_snapshots/panel.py @@ -1,7 +1,7 @@ # vim: tabstop=4 shiftwidth=4 softtabstop=4 # Copyright 2012 Nebula, Inc. -# Copyright 2012 OpenStack LLC +# Copyright 2012 OpenStack Foundation # # 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/openstack_dashboard/dashboards/project/images_and_snapshots/tests.py b/openstack_dashboard/dashboards/project/images_and_snapshots/tests.py index ef51360433..84598d99d4 100644 --- a/openstack_dashboard/dashboards/project/images_and_snapshots/tests.py +++ b/openstack_dashboard/dashboards/project/images_and_snapshots/tests.py @@ -5,7 +5,7 @@ # All Rights Reserved. # # Copyright 2012 Nebula, Inc. -# Copyright 2012 OpenStack LLC +# Copyright 2012 OpenStack Foundation # # 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/openstack_dashboard/dashboards/project/images_and_snapshots/views.py b/openstack_dashboard/dashboards/project/images_and_snapshots/views.py index da1fea9f43..c65ee9e2fa 100644 --- a/openstack_dashboard/dashboards/project/images_and_snapshots/views.py +++ b/openstack_dashboard/dashboards/project/images_and_snapshots/views.py @@ -5,7 +5,7 @@ # All Rights Reserved. # # Copyright 2012 Nebula, Inc. -# Copyright 2012 OpenStack LLC +# Copyright 2012 OpenStack Foundation # # 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/openstack_dashboard/dashboards/settings/dashboard.py b/openstack_dashboard/dashboards/settings/dashboard.py index 6763c5923f..0f23c19748 100644 --- a/openstack_dashboard/dashboards/settings/dashboard.py +++ b/openstack_dashboard/dashboards/settings/dashboard.py @@ -1,6 +1,6 @@ # vim: tabstop=4 shiftwidth=4 softtabstop=4 -# Copyright 2012 Openstack, LLC +# Copyright 2012 OpenStack Foundation # Copyright 2012 Nebula, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/openstack_dashboard/test/tests/error_pages.py b/openstack_dashboard/test/tests/error_pages.py index a8d25df1a4..8d910ef731 100644 --- a/openstack_dashboard/test/tests/error_pages.py +++ b/openstack_dashboard/test/tests/error_pages.py @@ -1,6 +1,6 @@ # vim: tabstop=4 shiftwidth=4 softtabstop=4 -# Copyright (c) 2012 OpenStack, LLC. +# Copyright (c) 2012 OpenStack Foundation # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/openstack_dashboard/test/tests/templates.py b/openstack_dashboard/test/tests/templates.py index c664619dec..91331e1252 100644 --- a/openstack_dashboard/test/tests/templates.py +++ b/openstack_dashboard/test/tests/templates.py @@ -1,6 +1,6 @@ # vim: tabstop=4 shiftwidth=4 softtabstop=4 -# Copyright (c) 2012 OpenStack, LLC. +# Copyright (c) 2012 OpenStack Foundation # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may