This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch branch-1.10
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/branch-1.10 by this push:
new 874e2debeb [KYUUBI #7211] [DOC] Remove unsupported 'logo_only' and
'extra_navbar' theme options
874e2debeb is described below
commit 874e2debeb1445a15c8e1d0777ae53e797b5fbb8
Author: dnskr <[email protected]>
AuthorDate: Mon Sep 22 15:06:54 2025 +0800
[KYUUBI #7211] [DOC] Remove unsupported 'logo_only' and 'extra_navbar'
theme options
### Why are the changes needed?
The PR fixes two `unsupported theme option` warnings that are printed
during the documentation building:
```shell
preparing documents... WARNING: unsupported theme option 'logo_only' given
WARNING: unsupported theme option 'extra_navbar' given
```
Both options were deleted from
[sphinx_book_theme](https://github.com/executablebooks/sphinx-book-theme).
### How was this patch tested?
Built documentation locally and checked there are no warning message
anymore.
### Was this patch authored or co-authored using generative AI tooling?
No
Closes #7211 from dnskr/remove-unsupported-theme-options.
Closes #7211
800f9d99f [dnskr] [DOC] Remove unsupported 'logo_only' and 'extra_navbar'
theme options
Authored-by: dnskr <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
(cherry picked from commit d5468d0bf50e651fca814830d34212818e6195df)
Signed-off-by: Cheng Pan <[email protected]>
---
docs/conf.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/docs/conf.py b/docs/conf.py
index eaac1acede..6ec273a072 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -108,13 +108,11 @@ html_theme_options = {
"use_fullscreen_button": True,
"repository_branch": "master",
"path_to_docs": "docs",
- "logo_only": True,
"home_page_in_toc": False,
"show_navbar_depth": 1,
"show_toc_level": 2,
"announcement": "🦊 Welcome to Kyuubi’s online documentation
✨, v" + release,
"toc_title": "",
- "extra_navbar": "Version " + release,
}
html_logo = 'imgs/logo.png'