From f6e44aaeee4d96f1dae97ab73d1ebe04fdd2867b Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 10 Sep 2025 10:45:22 -0400 Subject: [PATCH 1/3] chore(admin): add canonical link to `stable` branch Signed-off-by: Josh --- admin_manual/conf.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/admin_manual/conf.py b/admin_manual/conf.py index 6f4e59a3078..cb8ee91290a 100644 --- a/admin_manual/conf.py +++ b/admin_manual/conf.py @@ -56,6 +56,12 @@ # disable "Created using Sphinx" in the HTML footer (default is True) html_show_sphinx = False +# Add canonical link in all generated pages linking to their respective equivalent +# in `stable` (regardless of which version of the docs someone lands in). +# Note, there is an argument to be made for having this link to `latest` instead, +# but this is likely good enough and the most conservative for now. +html_baseurl = "https://docs.nextcloud.com/server/stable/admin_manual/" + # -- Options for HTML help output -------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-help-output From 5d36f0b4eb026ea9c4e417150ba80093202b4ba4 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 10 Sep 2025 10:49:40 -0400 Subject: [PATCH 2/3] chore(developer): add canonical link to `stable` branch Add canonical link to stable version of developer manual Signed-off-by: Josh From c9126e43a4cd5cd0ae64147b9591a547a7e85812 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 10 Sep 2025 10:50:46 -0400 Subject: [PATCH 3/3] chore(user): add canonical link to `stable` branch Add canonical link for stable version in documentation. Signed-off-by: Josh [skip ci] --- user_manual/conf.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/user_manual/conf.py b/user_manual/conf.py index aafb8687c4a..fb397678adc 100644 --- a/user_manual/conf.py +++ b/user_manual/conf.py @@ -67,6 +67,13 @@ html_short_title = "User Manual" # disable "Created using Sphinx" in the HTML footer (default is True) html_show_sphinx = False + +# Add canonical link in all generated pages linking to their respective equivalent +# in `stable` (regardless of which version of the docs someone lands in). +# Note, there is an argument to be made for having this link to `latest` instead, +# but this is likely good enough and the most conservative for now. +html_baseurl = "https://docs.nextcloud.com/server/stable/user_manual/" + # disable including the reST sources in the HTML build as _sources/name (default is True) html_copy_source = False