From 2ea1fcacfde4f07bad36894322ee4e6c162b1287 Mon Sep 17 00:00:00 2001 From: Van Hung Pham Date: Fri, 30 Jun 2017 19:04:55 +0700 Subject: Switch from oslosphinx to openstackdocstheme As part of the docs migration work[0] for Pike we need to switch to use the openstackdocstheme. [0]https://review.openstack.org/#/c/472275/ Change-Id: If3a8f6668d0a4e32bd8a20330d973249ce6a5b46 --- doc/source/conf.py | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'doc') diff --git a/doc/source/conf.py b/doc/source/conf.py index a6f84e1..d9d710e 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 @@ -37,7 +35,7 @@ extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.intersphinx', - 'oslosphinx', + 'openstackdocstheme', ] todo_include_todos = True @@ -116,6 +114,7 @@ modindex_common_prefix = ['keystoneclient.'] # 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 @@ -148,13 +147,7 @@ modindex_common_prefix = ['keystoneclient.'] # 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. @@ -232,3 +225,8 @@ intersphinx_mapping = { 'osloconfig': ('https://docs.openstack.org/developer/oslo.config/', None), 'keystoneauth1': (keystoneauth_url, None), } + +# -- Options for openstackdocstheme ------------------------------------------- +repository_name = 'openstack/python-keystoneclient' +bug_project = 'python-keystoneclient' +bug_tag = '' -- cgit v1.2.1