From ed2553efc81d2c7b067a56f520dbf64cab88b636 Mon Sep 17 00:00:00 2001 From: Daryl White <53910321+djwfyi@users.noreply.github.com> Date: Thu, 21 Dec 2023 12:30:51 -0500 Subject: [PATCH] Add DirectPV docs link to dropdown switcher (#1094) - Adds the DirectPV docs to the doc switcher - Adds a external links reference for the DirectPV Docs Staged: http://192.241.195.202:9000/staging/directpv-docs-link/linux/index.html --- source/default-conf.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/source/default-conf.py b/source/default-conf.py index ee223282..12cc1ebf 100644 --- a/source/default-conf.py +++ b/source/default-conf.py @@ -78,6 +78,7 @@ extlinks = { 'aks-docs' : ('https://learn.microsoft.com/en-us/azure/aks/%s', None), 'azure-docs' : ('https://learn.microsoft.com/en-us/azure/%s', None), 'kes-docs' : ('https://min.io/docs/kes/%s', None), + 'directpv-docs' : ('https://min.io/docs/directpv/%s', None), } suppress_warnings = [ @@ -282,19 +283,19 @@ html_context = { 'docs': [ # The first item has to be the current docs site # { - 'name': 'MinIO Documentation', + 'name': 'MinIO Server Documentation', 'current': True }, + { + 'name': 'DirectPV Documentation', + 'url': 'https://min.io/docs/directpv', + 'external': True + }, { 'name': 'KES Documentation', 'url': 'https://min.io/docs/kes', 'external': True - }, - #{ - #'name': 'DirectPV Documentation', - #'url': '', - #'external': True - #} + } ] }