Revert "docs: use html_static_path for static files"

No, html_static_path doesn't do the same thing as html_extra_path; it
puts things inside the _static folder, which we don't want here. Let's
revert the change.

This reverts commit e037761a2f.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29805>
(cherry picked from commit 47e422adfa)
This commit is contained in:
Erik Faye-Lund 2024-06-20 13:27:55 +02:00 committed by Eric Engestrom
parent 180ca5812d
commit aa87b78866
68 changed files with 5 additions and 5 deletions

View file

@ -894,7 +894,7 @@
"description": "Revert \"docs: use html_static_path for static files\"",
"nominated": true,
"nomination_type": 2,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "e037761a2f6845653520e0785844efe1fd9340b4",
"notes": null

View file

@ -111,8 +111,10 @@ html_copy_source = False
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = [
'_static/',
html_static_path = []
html_extra_path = [
'_extra/',
'release-maintainers-keys.asc',
'features.txt',
'libGL.txt',
@ -120,8 +122,6 @@ html_static_path = [
'README.VCE',
]
html_extra_path = []
html_redirects = [
('webmaster', 'https://www.mesa3d.org/website/'),
('developers', 'https://www.mesa3d.org/developers/'),