Remove remaining reference to oslosphinx

oslosphinx was retired in favor of openstackdocstheme.

Change-Id: Iad5ef97d6081084e3f0ecc512f84e328aed152d5
This commit is contained in:
Takashi Kajinami 2024-05-07 18:55:17 +09:00 committed by Arnaud M
parent 800c3dbf93
commit e71ae064dc
2 changed files with 6 additions and 10 deletions

View File

@ -15,8 +15,6 @@ import os
import sys
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
@ -31,11 +29,10 @@ extensions = [
'sphinx.ext.autodoc',
'sphinxcontrib.autohttp.flask',
'sphinxcontrib.pecanwsme.rest',
'os_api_ref',
'openstackdocstheme',
]
if not on_rtd:
extensions.append('oslosphinx')
wsme_protocols = ['restjson']
# Add any paths that contain templates here, relative to this directory.
@ -75,9 +72,10 @@ pygments_style = 'native'
# a list of builtin themes.
# html_static_path = ['_static']
if on_rtd:
html_theme_path = ['.']
html_theme = 'sphinx_rtd_theme'
html_theme = 'openstackdocs'
html_theme_options = {
"sidebar_mode": "toc",
}
# Output file base name for HTML help builder.
htmlhelp_basename = '%sdoc' % project

View File

@ -19,8 +19,6 @@
import os
import sys
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.