diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 4fc8209a6..9298e22db 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -33,7 +33,7 @@ Project Documentation https://docs.openstack.org/openstacksdk/latest/ Bug tracker - https://bugs.launchpad.net/python-openstacksdk + https://storyboard.openstack.org/#!/project/972 Mailing list (prefix subjects with ``[sdk]`` for faster responses) http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev diff --git a/README.rst b/README.rst index a420f431f..8effea873 100644 --- a/README.rst +++ b/README.rst @@ -122,7 +122,7 @@ in the following locations: * ``~/.config/openstack`` * ``/etc/openstack`` -More information at https://developer.openstack.org/sdks/python/openstacksdk/users/config +More information at https://docs.openstack.org/openstacksdk/latest/user/config/configuration.html openstack.cloud =============== @@ -155,9 +155,8 @@ Create a server using objects configured with the ``clouds.yaml`` file: Links ===== -* `Issue Tracker `_ +* `Issue Tracker `_ * `Code Review `_ -* `Documentation `_ +* `Documentation `_ * `PyPI `_ * `Mailing list `_ -* `Bugs `_ diff --git a/doc/source/conf.py b/doc/source/conf.py index 561e014e3..905223cfb 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -32,7 +32,7 @@ extensions = [ # openstackdocstheme options repository_name = 'openstack/openstacksdk' -bug_project = '760' +bug_project = '972' bug_tag = '' html_last_updated_fmt = '%Y-%m-%d %H:%M' html_theme = 'openstackdocs' @@ -77,7 +77,7 @@ pwd = os.getcwd() html_context = {"pwd": pwd, "gitsha": gitsha, "bug_tag": bug_tag, - "bug_project": "python-openstacksdk"} + "bug_project": bug_project} # If true, '()' will be appended to :func: etc. cross-reference text. add_function_parentheses = True diff --git a/doc/source/user/guides/connect_from_config.rst b/doc/source/user/guides/connect_from_config.rst index 79a7927f7..dfa489ca6 100644 --- a/doc/source/user/guides/connect_from_config.rst +++ b/doc/source/user/guides/connect_from_config.rst @@ -63,7 +63,7 @@ of the cloud configuration to use, . .. Create Connection From Environment Variables -------------------------------------------- - TODO(etoews): Document when https://bugs.launchpad.net/os-client-config/+bug/1489617 + TODO(etoews): Document when https://storyboard.openstack.org/#!/story/1489617 is fixed. Next diff --git a/openstack/image/v2/image.py b/openstack/image/v2/image.py index db8e104de..177ed83ba 100644 --- a/openstack/image/v2/image.py +++ b/openstack/image/v2/image.py @@ -258,7 +258,7 @@ class Image(resource.Resource): # See the following bug report for details on why the checksum # code may sometimes depend on a second GET call. - # https://bugs.launchpad.net/python-openstacksdk/+bug/1619675 + # https://storyboard.openstack.org/#!/story/1619675 checksum = resp.headers.get("Content-MD5") if checksum is None: diff --git a/openstack/tests/functional/orchestration/v1/test_stack.py b/openstack/tests/functional/orchestration/v1/test_stack.py index d7673a1c6..c0c12bcfd 100644 --- a/openstack/tests/functional/orchestration/v1/test_stack.py +++ b/openstack/tests/functional/orchestration/v1/test_stack.py @@ -28,7 +28,7 @@ class TestStack(base.BaseFunctionalTest): super(TestStack, self).setUp() self.skipTest( 'Orchestration functional tests disabled:' - ' https://bugs.launchpad.net/python-openstacksdk/+bug/1525005') + ' https://storyboard.openstack.org/#!/story/1525005') self.require_service('orchestration') if self.conn.compute.find_keypair(self.NAME) is None: diff --git a/openstack/tests/unit/config/test_config.py b/openstack/tests/unit/config/test_config.py index cdc569a94..b92071126 100644 --- a/openstack/tests/unit/config/test_config.py +++ b/openstack/tests/unit/config/test_config.py @@ -399,7 +399,7 @@ class TestConfig(base.TestCase): class TestExcludedFormattedConfigValue(base.TestCase): - # verify LaunchPad bug #1635696 + # verify https://storyboard.openstack.org/#!/story/1635696 # # get_one_cloud() and get_one_cloud_osc() iterate over config # values and try to expand any variables in those values by