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: I8a0588259d7b3fc8bd10504ffba7129b840e2a0d
This commit is contained in:
Eric Brown
2017-02-05 20:40:01 -08:00
parent 8fc7b26776
commit 049e2e6b9b
8 changed files with 19 additions and 20 deletions

View File

@@ -1,7 +1,7 @@
If you would like to contribute to the development of OpenStack, If you would like to contribute to the development of OpenStack,
you must follow the steps documented at: 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 If you already have a good understanding of how the system works
and your OpenStack accounts are set up, you can skip to the 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 changes to OpenStack should be submitted for review via the
Gerrit tool: 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. Pull requests submitted through GitHub will be ignored.

View File

@@ -2,7 +2,7 @@ Keystone Style Commandments
=========================== ===========================
- Step 1: Read the OpenStack 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 - Step 2: Read on
Exceptions Exceptions
@@ -17,7 +17,7 @@ Testing
keystoneauth uses testtools and testr for its unittest suite keystoneauth uses testtools and testr for its unittest suite
and its test runner. Basic workflow around our use of tox and testr can 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: in depth:
https://testtools.readthedocs.org/ https://testtools.readthedocs.org/

View File

@@ -2,8 +2,8 @@
Team and repository tags Team and repository tags
======================== ========================
.. image:: http://governance.openstack.org/badges/keystoneauth.svg .. image:: https://governance.openstack.org/badges/keystoneauth.svg
:target: http://governance.openstack.org/reference/tags/index.html :target: https://governance.openstack.org/reference/tags/index.html
.. Change things from this point on .. Change things from this point on
@@ -30,6 +30,6 @@ These tools include:
Further information: Further information:
* Free software: Apache license * Free software: Apache license
* Documentation: http://docs.openstack.org/developer/keystoneauth * Documentation: https://docs.openstack.org/developer/keystoneauth
* Source: http://git.openstack.org/cgit/openstack/keystoneauth * Source: https://git.openstack.org/cgit/openstack/keystoneauth
* Bugs: http://bugs.launchpad.net/keystoneauth * Bugs: https://bugs.launchpad.net/keystoneauth

View File

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

View File

@@ -37,7 +37,7 @@ using `Gerrit`_.
.. _on GitHub: https://github.com/openstack/keystoneauth .. _on GitHub: https://github.com/openstack/keystoneauth
.. _Launchpad: https://launchpad.net/keystoneauth .. _Launchpad: https://launchpad.net/keystoneauth
.. _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``. Run tests with ``tox``.
@@ -47,4 +47,3 @@ Indices and tables
* :ref:`genindex` * :ref:`genindex`
* :ref:`modindex` * :ref:`modindex`
* :ref:`search` * :ref:`search`

View File

@@ -110,7 +110,7 @@ class V2Discovery(DiscoveryBase):
""" """
_DESC_URL = 'http://docs.openstack.org/api/openstack-identity-service/2.0/' _DESC_URL = 'https://developer.openstack.org/api-ref/identity/v2/'
@positional() @positional()
def __init__(self, href, id=None, html=True, pdf=True, **kwargs): def __init__(self, href, id=None, html=True, pdf=True, **kwargs):

View File

@@ -23,30 +23,30 @@ from keystoneauth1.tests.unit import matchers as ks_matchers
class TestXMLEquals(testtools.TestCase): class TestXMLEquals(testtools.TestCase):
matches_xml = b"""<?xml version="1.0" encoding="UTF-8"?> matches_xml = b"""<?xml version="1.0" encoding="UTF-8"?>
<test xmlns="http://docs.openstack.org/identity/api/v2.0"> <test xmlns="https://docs.openstack.org/identity/api/v2.0">
<first z="0" y="1" x="2"/> <first z="0" y="1" x="2"/>
<second a="a" b="b"></second> <second a="a" b="b"></second>
</test> </test>
""" """
equivalent_xml = b"""<?xml version="1.0" encoding="UTF-8"?> equivalent_xml = b"""<?xml version="1.0" encoding="UTF-8"?>
<test xmlns="http://docs.openstack.org/identity/api/v2.0"> <test xmlns="https://docs.openstack.org/identity/api/v2.0">
<second a="a" b="b"/> <second a="a" b="b"/>
<first z="0" y="1" x="2"></first> <first z="0" y="1" x="2"></first>
</test> </test>
""" """
mismatches_xml = b"""<?xml version="1.0" encoding="UTF-8"?> mismatches_xml = b"""<?xml version="1.0" encoding="UTF-8"?>
<test xmlns="http://docs.openstack.org/identity/api/v2.0"> <test xmlns="https://docs.openstack.org/identity/api/v2.0">
<nope_it_fails/> <nope_it_fails/>
</test> </test>
""" """
mismatches_description = """expected = mismatches_description = """expected =
<test xmlns="http://docs.openstack.org/identity/api/v2.0"> <test xmlns="https://docs.openstack.org/identity/api/v2.0">
<first z="0" y="1" x="2"/> <first z="0" y="1" x="2"/>
<second a="a" b="b"/> <second a="a" b="b"/>
</test> </test>
actual = actual =
<test xmlns="http://docs.openstack.org/identity/api/v2.0"> <test xmlns="https://docs.openstack.org/identity/api/v2.0">
<nope_it_fails/> <nope_it_fails/>
</test> </test>
""" """

View File

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