From b0e41401724c53d55a6ff064bd54e0deaca4c16b Mon Sep 17 00:00:00 2001 From: Jeremy Mikola Date: Fri, 15 Dec 2023 11:18:56 -0500 Subject: [PATCH 1/2] Update manual and php extlinks Use https for both links and update "manual" to use the canonical docs URL --- conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf.py b/conf.py index 3fbe2eba..f459d1c9 100644 --- a/conf.py +++ b/conf.py @@ -56,8 +56,8 @@ extlinks = { 'issue': ('https://jira.mongodb.org/browse/%s', '' ), - 'manual': ('http://docs.mongodb.org/manual%s', ''), - 'php': ('http://php.net/%s', '') + 'manual': ('https://www.mongodb.com/docs/manual%s', ''), + 'php': ('https://php.net/%s', '') } ## add `extlinks` for each published version. From d2b7599d04b9b4d9b0bf99f9cacfe971b6b80072 Mon Sep 17 00:00:00 2001 From: Jeremy Mikola Date: Thu, 11 Apr 2024 14:31:35 -0400 Subject: [PATCH 2/2] Add extlink for atlas docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jérôme Tamarelle --- conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conf.py b/conf.py index f459d1c9..0154719f 100644 --- a/conf.py +++ b/conf.py @@ -57,6 +57,7 @@ extlinks = { 'issue': ('https://jira.mongodb.org/browse/%s', '' ), 'manual': ('https://www.mongodb.com/docs/manual%s', ''), + 'atlas': ('https://www.mongodb.com/docs/atlas%s', ''), 'php': ('https://php.net/%s', '') }