Skip to content

Commit

Permalink
Fix links in docs for unmaintained releases
Browse files Browse the repository at this point in the history
Links in docs for unmaintained branches (Yoga and Zed) are still
pointing to stable/<release> branches in repository. Instead they
should point to unmaintained/<release>. This patch aims to fix that.

Closes-Bug: #2066052

Change-Id: I7e30ee5754ca2ecf9d4a2d3519f9e0bdf3f0aeea
(cherry picked from commit c0ce380)
  • Loading branch information
GregWhiteyBialas authored and mnasiadka committed Sep 9, 2024
1 parent fd71b46 commit 3d257ad
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,26 @@

# Global variables
# For replacement, use in docs as |VAR_NAME| (note there's no space around variable name)
# When adding new variables, make sure you add them to GLOBAL_VARIABLE_MAP dictionary as well
# When adding new variables, that you want to use in documentation, make sure you add
# them to GLOBAL_VARIABLE_MAP dictionary as well. KOLLA_OPENSTACK_RELEASE_UNMAINTAINED is
# used only to denote unmaintained branches, and it is not intended to be used for
# replacing anything in documentation.

KOLLA_OPENSTACK_RELEASE = openstackdocstheme.ext._get_series_name()

KOLLA_OPENSTACK_RELEASE_UNMAINTAINED = [
'yoga',
'zed',
]

if KOLLA_OPENSTACK_RELEASE == 'latest':
KOLLA_OPENSTACK_RELEASE = 'master'
KOLLA_BRANCH_NAME = 'master'
TESTED_RUNTIMES_GOVERNANCE_URL = 'https://governance.openstack.org/tc/reference/runtimes/'
elif KOLLA_OPENSTACK_RELEASE in KOLLA_OPENSTACK_RELEASE_UNMAINTAINED:
KOLLA_BRANCH_NAME = 'unmaintained/{}'.format(KOLLA_OPENSTACK_RELEASE)
TESTED_RUNTIMES_GOVERNANCE_URL =\
'https://governance.openstack.org/tc/reference/runtimes/{}.html'.format(KOLLA_OPENSTACK_RELEASE)
else:
KOLLA_BRANCH_NAME = 'unmaintained/{}'.format(KOLLA_OPENSTACK_RELEASE)
TESTED_RUNTIMES_GOVERNANCE_URL =\
Expand Down

0 comments on commit 3d257ad

Please sign in to comment.