diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/conf.py | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py index 323a030..504eb9a 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -13,9 +13,7 @@ from __future__ import unicode_literals import os -import subprocess import sys -import warnings import pbr.version @@ -43,7 +41,7 @@ extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.intersphinx', - 'oslosphinx', + 'openstackdocstheme', 'oslo_config.sphinxconfiggen' ] @@ -126,6 +124,7 @@ modindex_common_prefix = ['keystonemiddleware.'] # Sphinx are currently 'default' and 'sphinxdoc'. #html_theme_path = ["."] #html_theme = '_theme' +html_theme = 'openstackdocs' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the @@ -158,14 +157,7 @@ html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -git_cmd = ["git", "log", "--pretty=format:'%ad, commit %h'", "--date=local", - "-n1"] -try: - html_last_updated_fmt = subprocess.check_output(git_cmd).decode('utf-8') - -except Exception: - warnings.warn('Cannot get last updated time from git repository. ' - 'Not setting "html_last_updated_fmt".') +html_last_updated_fmt = '%Y-%m-%d %H:%M' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. @@ -241,3 +233,8 @@ keystoneclient = 'https://docs.openstack.org/developer/python-keystoneclient/' intersphinx_mapping = {'keystoneclient': (keystoneclient, None), } + +# -- Options for openstackdocstheme ------------------------------------------- +repository_name = 'openstack/keystonemiddleware' +bug_project = 'keystonemiddleware' +bug_tag = '' |