summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorErik Faye-Lund <erik.faye-lund@collabora.com>2022-01-01 14:03:53 +0100
committerMarge Bot <emma+marge@anholt.net>2022-01-26 23:26:50 +0000
commitf07f4d5ec559c8fa993f773ff997ac769191af97 (patch)
tree4a3bd51e255a6aa2457389b412116ca3a60e37fb /docs/conf.py
parent53426d26c3700355f88578c0ef70a926faf21f2b (diff)
docs: use http-redirect when possible
GitLab Pages has added a feature to do proper HTTP redirects, which are genreally better than the HTML redirects we currently use. Unfortunately, it doesn't support redirecting to other domains, all paths must start with a slash. So there's sadly *one* redirect this doesn't work for. So let's leave that one using a HTML redirect, and use HTTP redirects when we can. Reviewed-by: Eric Engestrom <eric@engestrom.ch> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14369>
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 998f209e998..ab4c3380ef0 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -135,15 +135,6 @@ html_extra_path = [
]
html_redirects = [
- ('drivers/vmware-guest', 'drivers/svga3d.html'),
- ('gallium/drivers/freedreno', 'drivers/freedreno.html'),
- ('gallium/drivers/freedreno/ir3-notes', 'drivers/freedreno/ir3-notes.html'),
- ('gallium/drivers/llvmpipe', 'drivers/llvmpipe.html'),
- ('gallium/drivers/zink', 'drivers/zink.html'),
- ('llvmpipe', 'drivers/llvmpipe.html'),
- ('postprocess', 'gallium/postprocess.html'),
- ('versions', 'relnotes.html'),
- ('vmware-guest', 'drivers/vmware-guest.html'),
('webmaster', 'https://www.mesa3d.org/website/'),
]