diff options
| author | Matt Riedemann <mriedem.os@gmail.com> | 2019-04-16 18:40:14 -0400 |
|---|---|---|
| committer | Matt Riedemann <mriedem.os@gmail.com> | 2019-04-16 18:40:14 -0400 |
| commit | 8ce203f879ab3be6135d5ce01315bfc15aa70d57 (patch) | |
| tree | a82547f4cc6e9ea50fe07891ae62825836ad1d49 | |
| parent | cac699d0d93d204d019bdcf53f66360d9296f3cf (diff) | |
| download | python-openstackclient-8ce203f879ab3be6135d5ce01315bfc15aa70d57.tar.gz | |
Fix docs bug link to go to storyboard rather than launchpad
This fixes the docs bug link generation for the normal docs
and release notes docs.
The requirement on openstackdocstheme is bumped to 1.23.2 to
pick up fix I2ed164b9b0badade702c50543ac1a5eea4d1867b.
Change-Id: I89711a391ee0fb7e40c1fbf83f950e2b582358d9
Story: #2005467
Task: #30546
| -rw-r--r-- | doc/requirements.txt | 2 | ||||
| -rw-r--r-- | doc/source/conf.py | 3 | ||||
| -rw-r--r-- | releasenotes/source/conf.py | 3 |
3 files changed, 3 insertions, 5 deletions
diff --git a/doc/requirements.txt b/doc/requirements.txt index 1afc73d6..a2649afb 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -1,7 +1,7 @@ # The order of packages is significant, because pip processes them in the order # of appearance. Changing the order has an impact on the overall integration # process, which may cause wedges in the gate later. -openstackdocstheme>=1.18.1 # Apache-2.0 +openstackdocstheme>=1.23.2 # Apache-2.0 reno>=2.5.0 # Apache-2.0 sphinx!=1.6.6,!=1.6.7,>=1.6.5 # BSD sphinxcontrib-apidoc>=0.2.0 # BSD diff --git a/doc/source/conf.py b/doc/source/conf.py index 003bfcaa..45045002 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -32,8 +32,7 @@ extensions = ['sphinx.ext.autodoc', # openstackdocstheme options repository_name = 'openstack/python-openstackclient' -bug_project = 'python-openstackclient' -bug_tag = '' +use_storyboard = True # Add any paths that contain templates here, relative to this directory. #templates_path = ['_templates'] diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index 3c4e4107..4060f49c 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -45,8 +45,7 @@ extensions = [ # openstackdocstheme options repository_name = 'openstack/python-openstackclient' -bug_project = 'python-openstackclient' -bug_tag = '' +use_storyboard = True # Set aliases for extlinks # * lpbug - generic Launchpad bug :lpbug:`123456` |
