From: rnv Date: Thu, 9 Aug 2018 16:37:41 +0000 (+0300) Subject: Detect sphinx theme directly in conf.py.in file X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=3099543475be061c159f0c904867b0314d92c6ff;p=modules%2Fyacs.git Detect sphinx theme directly in conf.py.in file --- diff --git a/src/AppQuickStart/app-template/doc/conf.py.in b/src/AppQuickStart/app-template/doc/conf.py.in index 6f022ca07..50913b6be 100644 --- a/src/AppQuickStart/app-template/doc/conf.py.in +++ b/src/AppQuickStart/app-template/doc/conf.py.in @@ -9,6 +9,7 @@ # serve to show the default. import sys, os +import sphinx # If your extensions are in another directory, add it here. If the directory # is relative to the documentation root, use os.path.abspath to make it @@ -92,7 +93,7 @@ pygments_style = 'sphinx' # The theme to use for HTML and HTML Help pages. Major themes that come with # Sphinx are currently 'default' and 'sphinxdoc'. -html_theme = '@SPHINX_THEME@' +html_theme = 'default' if sphinx.version_info[:2] < (1,3) else 'classic' # The name for this set of Sphinx documents. If None, it defaults to # " v documentation".