summaryrefslogtreecommitdiff
path: root/lib/spack/docs/conf.py
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2019-05-21 23:45:54 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2019-05-26 18:23:44 -0700
commitf32843528e52dc40c6a379f03d69b06f8a52265f (patch)
tree5882c18b8a42423d51f9dde233c37e62ab798504 /lib/spack/docs/conf.py
parent8bf1bd463788080f57c84efa1655eed6d37bf62f (diff)
downloadspack-f32843528e52dc40c6a379f03d69b06f8a52265f.tar.gz
spack-f32843528e52dc40c6a379f03d69b06f8a52265f.tar.bz2
spack-f32843528e52dc40c6a379f03d69b06f8a52265f.tar.xz
spack-f32843528e52dc40c6a379f03d69b06f8a52265f.zip
docs: make docs build relocatable for localized builds
- make all Spack paths relative to a `_spack_root` symlink, so that we can easily relocate the docs build *outside* lib/spack/docs - set some useful defaults for gettext translation variables in conf.py - update `relativeinclude` and other references to the spack root in the RST files to use _spack_root
Diffstat (limited to 'lib/spack/docs/conf.py')
-rw-r--r--lib/spack/docs/conf.py36
1 files changed, 22 insertions, 14 deletions
diff --git a/lib/spack/docs/conf.py b/lib/spack/docs/conf.py
index ea1a100495..7b5ebcbb12 100644
--- a/lib/spack/docs/conf.py
+++ b/lib/spack/docs/conf.py
@@ -20,28 +20,29 @@
import sys
import os
import re
-import shutil
import subprocess
from glob import glob
from sphinx.ext.apidoc import main as sphinx_apidoc
# -- Spack customizations -----------------------------------------------------
-
# 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.
-sys.path.insert(0, os.path.abspath('../external'))
+sys.path.insert(0, os.path.abspath('_spack_root/lib/spack/external'))
+
if sys.version_info[0] < 3:
- sys.path.insert(0, os.path.abspath('../external/yaml/lib'))
+ sys.path.insert(
+ 0, os.path.abspath('_spack_root/lib/spack/external/yaml/lib'))
else:
- sys.path.insert(0, os.path.abspath('../external/yaml/lib3'))
-sys.path.append(os.path.abspath('..'))
+ sys.path.insert(
+ 0, os.path.abspath('_spack_root/lib/spack/external/yaml/lib3'))
+
+sys.path.append(os.path.abspath('_spack_root/lib/spack/'))
# Add the Spack bin directory to the path so that we can use its output in docs.
-spack_root = '../../..'
-os.environ['SPACK_ROOT'] = spack_root
-os.environ['PATH'] += '%s%s/bin' % (os.pathsep, spack_root)
+os.environ['SPACK_ROOT'] = os.path.abspath('_spack_root')
+os.environ['PATH'] += "%s%s" % (os.pathsep, os.path.abspath('_spack_root/bin'))
# Set an environment variable so that colify will print output like it would to
# a terminal.
@@ -72,8 +73,8 @@ apidoc_args = [
'--no-toc', # Don't create a table of contents file
'--output-dir=.', # Directory to place all output
]
-sphinx_apidoc(apidoc_args + ['../spack'])
-sphinx_apidoc(apidoc_args + ['../llnl'])
+sphinx_apidoc(apidoc_args + ['_spack_root/lib/spack/spack'])
+sphinx_apidoc(apidoc_args + ['_spack_root/lib/spack/llnl'])
# Enable todo items
todo_include_todos = True
@@ -144,6 +145,13 @@ release = spack.spack_version
# for a list of supported languages.
#language = None
+# Places to look for .po/.mo files for doc translations
+#locale_dirs = []
+
+# Sphinx gettext settings
+gettext_compact = True
+gettext_uuid = True
+
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#today = ''
@@ -152,7 +160,7 @@ release = spack.spack_version
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
-exclude_patterns = ['_build']
+exclude_patterns = ['_build', '_spack_root']
# The reST default role (used for this markup: `text`) to use for all documents.
#default_role = None
@@ -198,12 +206,12 @@ html_theme_options = { 'logo_only' : True }
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
-html_logo = '../../../share/spack/logo/spack-logo-white-text.svg'
+html_logo = '_spack_root/share/spack/logo/spack-logo-white-text.svg'
# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
-html_favicon = '../../../share/spack/logo/favicon.ico'
+html_favicon = '_spack_root/share/spack/logo/favicon.ico'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,