Use https for *.openstack.org references

The openstack.org pages now support https and our references to
the site should by default be one signed by the organization.

Change-Id: Ia6cdaf7fabd1c355df002aa07b0695610dde9cd1
This commit is contained in:
Eric Brown 2017-02-05 20:45:52 -08:00
parent 6f35d94a1f
commit 689729fa35
13 changed files with 30 additions and 29 deletions

View File

@ -1,7 +1,7 @@
If you would like to contribute to the development of OpenStack,
you must follow the steps documented at:
http://docs.openstack.org/infra/manual/developers.html
https://docs.openstack.org/infra/manual/developers.html
If you already have a good understanding of how the system works
and your OpenStack accounts are set up, you can skip to the
@ -9,7 +9,7 @@ development workflow section of this documentation to learn how
changes to OpenStack should be submitted for review via the
Gerrit tool:
http://docs.openstack.org/infra/manual/developers.html#development-workflow
https://docs.openstack.org/infra/manual/developers.html#development-workflow
Pull requests submitted through GitHub will be ignored.

View File

@ -2,7 +2,7 @@ Keystone Style Commandments
===========================
- Step 1: Read the OpenStack Style Commandments
http://docs.openstack.org/developer/hacking/
https://docs.openstack.org/developer/hacking/
- Step 2: Read on
Exceptions
@ -17,7 +17,7 @@ Testing
python-keystoneclient uses testtools and testr for its unittest suite
and its test runner. Basic workflow around our use of tox and testr can
be found at http://wiki.openstack.org/testr. If you'd like to learn more
be found at https://wiki.openstack.org/testr. If you'd like to learn more
in depth:
https://testtools.readthedocs.org/

View File

@ -2,8 +2,8 @@
Team and repository tags
========================
.. image:: http://governance.openstack.org/badges/python-keystoneclient.svg
:target: http://governance.openstack.org/reference/tags/index.html
.. image:: https://governance.openstack.org/badges/python-keystoneclient.svg
:target: https://governance.openstack.org/reference/tags/index.html
.. Change things from this point on
@ -33,14 +33,14 @@ OpenStack's Identity Service. For command line interface support, use
* `How to Contribute`_
.. _PyPi: https://pypi.python.org/pypi/python-keystoneclient
.. _Online Documentation: http://docs.openstack.org/developer/python-keystoneclient
.. _Online Documentation: https://docs.openstack.org/developer/python-keystoneclient
.. _Launchpad project: https://launchpad.net/python-keystoneclient
.. _Blueprints: https://blueprints.launchpad.net/python-keystoneclient
.. _Bugs: https://bugs.launchpad.net/python-keystoneclient
.. _Source: https://git.openstack.org/cgit/openstack/python-keystoneclient
.. _OpenStackClient: https://pypi.python.org/pypi/python-openstackclient
.. _How to Contribute: http://docs.openstack.org/infra/manual/developers.html
.. _Specs: http://specs.openstack.org/openstack/keystone-specs/
.. _How to Contribute: https://docs.openstack.org/infra/manual/developers.html
.. _Specs: https://specs.openstack.org/openstack/keystone-specs/
.. contents:: Contents:
:local:

View File

@ -1,5 +1,5 @@
# This is a cross-platform list tracking distribution packages needed by tests;
# see http://docs.openstack.org/infra/bindep/ for additional information.
# see https://docs.openstack.org/infra/bindep/ for additional information.
gettext
libssl-dev

View File

@ -227,9 +227,9 @@ latex_documents = [
# If false, no module index is generated.
#latex_use_modindex = True
keystoneauth_url = 'http://docs.openstack.org/developer/keystoneauth/'
keystoneauth_url = 'https://docs.openstack.org/developer/keystoneauth/'
intersphinx_mapping = {
'python': ('http://docs.python.org/', None),
'osloconfig': ('http://docs.openstack.org/developer/oslo.config/', None),
'python': ('https://docs.python.org/', None),
'osloconfig': ('https://docs.openstack.org/developer/oslo.config/', None),
'keystoneauth1': (keystoneauth_url, None),
}

View File

@ -21,8 +21,8 @@ Related Identity Projects
In addition to creating the Python client library, the Keystone team also
provides `Identity Service`_, as well as `WSGI Middleware`_.
.. _`Identity Service`: http://docs.openstack.org/developer/keystone/
.. _`WSGI Middleware`: http://docs.openstack.org/developer/keystonemiddleware/
.. _`Identity Service`: https://docs.openstack.org/developer/keystone/
.. _`WSGI Middleware`: https://docs.openstack.org/developer/keystonemiddleware/
Release Notes
=============
@ -41,7 +41,7 @@ using `Gerrit`_.
.. _on GitHub: https://github.com/openstack/python-keystoneclient
.. _Launchpad: https://launchpad.net/python-keystoneclient
.. _Gerrit: http://docs.openstack.org/infra/manual/developers.html#development-workflow
.. _Gerrit: https://docs.openstack.org/infra/manual/developers.html#development-workflow
Run tests with ``tox``.

View File

@ -14,7 +14,7 @@
"""oslo.i18n integration module.
See http://docs.openstack.org/developer/oslo.i18n/usage.html .
See https://docs.openstack.org/developer/oslo.i18n/usage.html .
"""

View File

@ -22,7 +22,8 @@ BASE_HOST = 'http://keystone.example.com'
BASE_URL = "%s:5000/" % BASE_HOST
V2_URL = "%sv2.0" % BASE_URL
EXTENSION_NAMESPACE = "http://docs.openstack.org/identity/api/ext/OS-FAKE/v1.0"
EXTENSION_NAMESPACE = ("https://docs.openstack.org/identity/api/ext/OS-FAKE/"
"v1.0")
EXTENSION_DESCRIBED = {"href": "https://github.com/openstack/identity-api",
"rel": "describedby",
"type": "text/html"}

View File

@ -29,11 +29,11 @@ class DiscoverKeystoneTests(utils.UnauthenticatedTestCase):
"href": "http://127.0.0.1:5000/v2.0/", },
{"rel": "describedby",
"type": "text/html",
"href": "http://docs.openstack.org/api/"
"href": "https://docs.openstack.org/api/"
"openstack-identity-service/2.0/content/", },
{"rel": "describedby",
"type": "application/pdf",
"href": "http://docs.openstack.org/api/"
"href": "https://docs.openstack.org/api/"
"openstack-identity-service/2.0/"
"identity-dev-guide-2.0.pdf", },
{"rel": "describedby",

View File

@ -22,7 +22,7 @@ class ExtensionTests(utils.ClientTestCase):
"values": [
{
'name': 'OpenStack Keystone User CRUD',
'namespace': 'http://docs.openstack.org/'
'namespace': 'https://docs.openstack.org/'
'identity/api/ext/OS-KSCRUD/v1.0',
'updated': '2013-07-07T12:00:0-00:00',
'alias': 'OS-KSCRUD',
@ -36,7 +36,7 @@ class ExtensionTests(utils.ClientTestCase):
},
{
'name': 'OpenStack EC2 API',
'namespace': 'http://docs.openstack.org/'
'namespace': 'https://docs.openstack.org/'
'identity/api/ext/OS-EC2/v1.0',
'updated': '2013-09-07T12:00:0-00:00',
'alias': 'OS-EC2',

View File

@ -27,12 +27,12 @@ class DiscoverKeystoneTests(utils.UnauthenticatedTestCase):
"href": "http://127.0.0.1:5000/v3.0/", },
{"rel": "describedby",
"type": "text/html",
"href": "http://docs.openstack.org/api/"
"href": "https://docs.openstack.org/api/"
"openstack-identity-service/3/"
"content/", },
{"rel": "describedby",
"type": "application/pdf",
"href": "http://docs.openstack.org/api/"
"href": "https://docs.openstack.org/api/"
"openstack-identity-service/3/"
"identity-dev-guide-3.pdf", },
]},
@ -44,12 +44,12 @@ class DiscoverKeystoneTests(utils.UnauthenticatedTestCase):
"href": "http://127.0.0.1:5000/v2.0/", },
{"rel": "describedby",
"type": "text/html",
"href": "http://docs.openstack.org/api/"
"href": "https://docs.openstack.org/api/"
"openstack-identity-service/2.0/"
"content/", },
{"rel": "describedby",
"type": "application/pdf",
"href": "http://docs.openstack.org/api/"
"href": "https://docs.openstack.org/api/"
"openstack-identity-service/2.0/"
"identity-dev-guide-2.0.pdf", }
]}],

View File

@ -3,10 +3,10 @@ deprecations:
- >
[`blueprint deprecate-to-ksa <https://blueprints.launchpad.net/python-keystoneclient/+spec/deprecate-to-ksa>`_]
Several modules related to authentication in keystoneclient have been
deprecated in favor of [`keystoneauth <http://docs.openstack.org/developer/keystoneauth/>`_]
deprecated in favor of [`keystoneauth <https://docs.openstack.org/developer/keystoneauth/>`_]
These modules include: ``keystoneclient.session``, ``keystoneclient.adapter``,
``keystoneclient.httpclient``, ``keystoneclient.auth.base``,
``keystoneclient.auth.cli``, ``keystoneclient.auth.conf``,
``keystoneclient.auth.identity.base``, and ``keystoneclient.auth.token_endpoint``.
Tips for migrating to `keystoneauth` have been
[`documented <http://docs.openstack.org/developer/keystoneauth/migrating.html>`_].
[`documented <https://docs.openstack.org/developer/keystoneauth/migrating.html>`_].

View File

@ -5,7 +5,7 @@ description-file =
README.rst
author = OpenStack
author-email = openstack-dev@lists.openstack.org
home-page = http://docs.openstack.org/developer/python-keystoneclient
home-page = https://docs.openstack.org/developer/python-keystoneclient
classifier =
Environment :: OpenStack
Intended Audience :: Information Technology