[api-ref] Remove temporary block in conf.py

The os-api-ref 1.0.0 is out. We can remove the support to older version now.
Reference:
6d41feb58d

Change-Id: I8748ae2b4af44f49ab3a97716a7b9cf3d7182777
This commit is contained in:
Nguyen Phuong An 2016-09-07 11:17:40 +07:00
parent da79ed61d8
commit b31098a277
1 changed files with 10 additions and 28 deletions

View File

@ -28,36 +28,18 @@ import sys
from designate.version import version_info
# TODO(Graham Hayes): Remove the following block of code when os-api-ref is
# using openstackdocstheme
import openstackdocstheme
import os_api_ref
html_theme = 'openstackdocs'
html_theme_path = [openstackdocstheme.get_html_theme_path()]
html_theme_options = {
"sidebar_mode": "toc",
"sidebar_dropdown": "api_ref",
}
if getattr(os_api_ref, 'THEME', 'olsosphinx') == 'openstackdocstheme':
# We are on the new version with openstackdocstheme support
extensions = [
'os_api_ref',
]
import openstackdocstheme # noqa
html_theme = 'openstackdocs'
html_theme_path = [openstackdocstheme.get_html_theme_path()]
html_theme_options = {
"sidebar_mode": "toc",
"sidebar_dropdown": "api_ref",
}
else:
# We are on the old version without openstackdocstheme support
extensions = [
'os_api_ref',
'oslosphinx',
]
# End temporary block
extensions = [
'os_api_ref',
]
# 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