Update URLs in docs, comments and setup.cfg
Some URLs are broken, so fix them. The other URLs are redirect to new URLs, so replace them with new ones. Change-Id: Ida2fd70ad0d7b029fadfe91be14d7180b9b5b8d1 Closes-Bug: #1707104
This commit is contained in:
parent
79ae29aaee
commit
561b35a8a8
@ -1,13 +1,13 @@
|
|||||||
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#development-workflow
|
https://docs.openstack.org/infra/manual/developers.html#development-workflow
|
||||||
|
|
||||||
Once those steps have been completed, changes to OpenStack
|
Once those steps have been completed, changes to OpenStack
|
||||||
should be submitted for review via the Gerrit tool, following
|
should be submitted for review via the Gerrit tool, following
|
||||||
the workflow documented at:
|
the workflow documented at:
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ Nova Client 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/hacking/latest
|
||||||
- Step 2: Read on
|
- Step 2: Read on
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
Team and repository tags
|
Team and repository tags
|
||||||
========================
|
========================
|
||||||
|
|
||||||
.. image:: http://governance.openstack.org/badges/python-novaclient.svg
|
.. image:: https://governance.openstack.org/tc/badges/python-novaclient.svg
|
||||||
:target: http://governance.openstack.org/reference/tags/index.html
|
:target: https://governance.openstack.org/tc/reference/tags/index.html
|
||||||
|
|
||||||
.. Change things from this point on
|
.. Change things from this point on
|
||||||
|
|
||||||
@ -34,10 +34,10 @@ This is a client for the OpenStack Compute API. It provides a Python API (the
|
|||||||
* `How to Contribute`_
|
* `How to Contribute`_
|
||||||
|
|
||||||
.. _PyPi: https://pypi.python.org/pypi/python-novaclient
|
.. _PyPi: https://pypi.python.org/pypi/python-novaclient
|
||||||
.. _Online Documentation: http://docs.openstack.org/python-novaclient
|
.. _Online Documentation: https://docs.openstack.org/python-novaclient/latest
|
||||||
.. _Launchpad project: https://launchpad.net/python-novaclient
|
.. _Launchpad project: https://launchpad.net/python-novaclient
|
||||||
.. _Blueprints: https://blueprints.launchpad.net/python-novaclient
|
.. _Blueprints: https://blueprints.launchpad.net/python-novaclient
|
||||||
.. _Bugs: https://bugs.launchpad.net/python-novaclient
|
.. _Bugs: https://bugs.launchpad.net/python-novaclient
|
||||||
.. _Source: https://git.openstack.org/cgit/openstack/python-novaclient
|
.. _Source: https://git.openstack.org/cgit/openstack/python-novaclient
|
||||||
.. _How to Contribute: http://docs.openstack.org/infra/manual/developers.html
|
.. _How to Contribute: https://docs.openstack.org/infra/manual/developers.html
|
||||||
.. _Specs: http://specs.openstack.org/openstack/nova-specs/
|
.. _Specs: http://specs.openstack.org/openstack/nova-specs/
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# This is a cross-platform list tracking distribution packages needed by tests;
|
# 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.
|
||||||
|
|
||||||
build-essential [platform:dpkg]
|
build-essential [platform:dpkg]
|
||||||
dbus-devel [platform:rpm]
|
dbus-devel [platform:rpm]
|
||||||
|
@ -8,7 +8,7 @@ Code is hosted at `git.openstack.org`__. Submit bugs to the Nova project on
|
|||||||
|
|
||||||
__ https://git.openstack.org/cgit/openstack/python-novaclient
|
__ https://git.openstack.org/cgit/openstack/python-novaclient
|
||||||
__ https://launchpad.net/nova
|
__ https://launchpad.net/nova
|
||||||
__ http://docs.openstack.org/infra/manual/developers.html#development-workflow
|
__ https://docs.openstack.org/infra/manual/developers.html#development-workflow
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
@ -18,7 +18,7 @@ test targets that can be run to validate the code.
|
|||||||
Live functional testing against an existing OpenStack instance.
|
Live functional testing against an existing OpenStack instance.
|
||||||
|
|
||||||
Functional testing assumes the existence of a `clouds.yaml` file as supported
|
Functional testing assumes the existence of a `clouds.yaml` file as supported
|
||||||
by `os-client-config <http://docs.openstack.org/developer/os-client-config>`__
|
by `os-client-config <https://docs.openstack.org/os-client-config/latest>`__
|
||||||
It assumes the existence of a cloud named `devstack` that behaves like a normal
|
It assumes the existence of a cloud named `devstack` that behaves like a normal
|
||||||
DevStack installation with a demo and an admin user/tenant - or clouds named
|
DevStack installation with a demo and an admin user/tenant - or clouds named
|
||||||
`functional_admin` and `functional_nonadmin`.
|
`functional_admin` and `functional_nonadmin`.
|
||||||
|
@ -55,7 +55,7 @@ application, you can append a (name, version) tuple to the session's
|
|||||||
|
|
||||||
For more information on this keystoneauth API, see `Using Sessions`_.
|
For more information on this keystoneauth API, see `Using Sessions`_.
|
||||||
|
|
||||||
.. _Using Sessions: http://docs.openstack.org/developer/keystoneauth/using-sessions.html
|
.. _Using Sessions: https://docs.openstack.org/keystoneauth/latest/using-sessions.html
|
||||||
|
|
||||||
It is also possible to use an instance as a context manager in which case
|
It is also possible to use an instance as a context manager in which case
|
||||||
there will be a session kept alive for the duration of the with statement::
|
there will be a session kept alive for the duration of the with statement::
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
"""oslo_i18n integration module for novaclient.
|
"""oslo_i18n integration module for novaclient.
|
||||||
|
|
||||||
See http://docs.openstack.org/developer/oslo.i18n/usage.html .
|
See https://docs.openstack.org/oslo.i18n/latest/user/usage.html .
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -820,7 +820,7 @@ class ServerManager(base.BootingManagerWithFind):
|
|||||||
match the search_opts (optional). The search opts format is a
|
match the search_opts (optional). The search opts format is a
|
||||||
dictionary of key / value pairs that will be appended to the query
|
dictionary of key / value pairs that will be appended to the query
|
||||||
string. For a complete list of keys see:
|
string. For a complete list of keys see:
|
||||||
http://developer.openstack.org/api-ref-compute-v2.1.html#listServers
|
https://developer.openstack.org/api-ref/compute/#list-servers
|
||||||
:param marker: Begin returning servers that appear later in the server
|
:param marker: Begin returning servers that appear later in the server
|
||||||
list than that represented by this server id (optional).
|
list than that represented by this server id (optional).
|
||||||
:param limit: Maximum number of servers to return (optional).
|
:param limit: Maximum number of servers to return (optional).
|
||||||
|
@ -6,7 +6,7 @@ description-file =
|
|||||||
license = Apache License, Version 2.0
|
license = Apache License, Version 2.0
|
||||||
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/python-novaclient
|
home-page = https://docs.openstack.org/python-novaclient/latest
|
||||||
classifier =
|
classifier =
|
||||||
Development Status :: 5 - Production/Stable
|
Development Status :: 5 - Production/Stable
|
||||||
Environment :: Console
|
Environment :: Console
|
||||||
|
Loading…
x
Reference in New Issue
Block a user