From 96962486aa9112d848c0f13b2dc831feda854575 Mon Sep 17 00:00:00 2001 From: Everett Toews Date: Mon, 19 Oct 2015 20:04:58 -0500 Subject: [PATCH] s/stackforge/openstack/ The project moved from stackforge to openstack. Change-Id: I7271363abcdbab92c6df723ef5294db0fd5c1e24 --- doc/source/contributors/setup.rst | 8 ++++---- doc/source/users/guides/compute.rst | 6 +++--- doc/source/users/guides/connect.rst | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/source/contributors/setup.rst b/doc/source/contributors/setup.rst index 1045b6b7..c81cf690 100644 --- a/doc/source/contributors/setup.rst +++ b/doc/source/contributors/setup.rst @@ -89,12 +89,12 @@ Getting the Source Code review systems that we use. The canonical Git repository is hosted on openstack.org at -http://git.openstack.org/cgit/stackforge/python-openstacksdk/, with a -mirror on GitHub at https://github.com/stackforge/python-openstacksdk. +http://git.openstack.org/cgit/openstack/python-openstacksdk/, with a +mirror on GitHub at https://github.com/openstack/python-openstacksdk. Because of how Git works, you can create a local clone from either of those, or your own personal fork.:: - (sdk3)$ git clone git@github.com:briancurtin/python-openstacksdk.git + (sdk3)$ git clone https://git.openstack.org/openstack/python-openstacksdk.git (sdk3)$ cd python-openstacksdk Installing Dependencies @@ -126,7 +126,7 @@ Building the Documentation -------------------------- Our documentation is written in reStructured Text and is built using -Sphinx. A ``docs`` command is availble in our ``tox.ini``, allowing you +Sphinx. A ``docs`` command is available in our ``tox.ini``, allowing you to build the documentation like you'd run tests. The ``docs`` command is not evaluated by default.:: diff --git a/doc/source/users/guides/compute.rst b/doc/source/users/guides/compute.rst index 94fd5335..d5c320a6 100644 --- a/doc/source/users/guides/compute.rst +++ b/doc/source/users/guides/compute.rst @@ -67,6 +67,6 @@ for it to become active. Full example: `compute resource create`_ -.. _compute resource list: http://git.openstack.org/cgit/stackforge/python-openstacksdk/tree/examples/compute/list.py -.. _network resource list: http://git.openstack.org/cgit/stackforge/python-openstacksdk/tree/examples/network/list.py -.. _compute resource create: http://git.openstack.org/cgit/stackforge/python-openstacksdk/tree/examples/compute/create.py +.. _compute resource list: http://git.openstack.org/cgit/openstack/python-openstacksdk/tree/examples/compute/list.py +.. _network resource list: http://git.openstack.org/cgit/openstack/python-openstacksdk/tree/examples/network/list.py +.. _compute resource create: http://git.openstack.org/cgit/openstack/python-openstacksdk/tree/examples/compute/create.py diff --git a/doc/source/users/guides/connect.rst b/doc/source/users/guides/connect.rst index afa4df97..56de4998 100644 --- a/doc/source/users/guides/connect.rst +++ b/doc/source/users/guides/connect.rst @@ -31,7 +31,7 @@ to an OpenStack cloud. You will primarily use it to set the ``auth_args`` parameter. You can also set the ``user_agent`` to something that describes your application (e.g. ``my-web-app/1.3.4``). -Full example at `connect.py `_ +Full example at `connect.py `_ .. note:: To enable logging, see the :doc:`logging` user guide.