core_lang_conf.py (ansible-2.14.0) | : | core_lang_conf.py (ansible-2.14.1rc1) | ||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
# sys.path.append(os.path.abspath('some/directory')) | # sys.path.append(os.path.abspath('some/directory')) | |||
# | # | |||
sys.path.insert(0, os.path.join('ansible', 'lib')) | sys.path.insert(0, os.path.join('ansible', 'lib')) | |||
# We want sphinx to document the ansible modules contained in this repository, | # We want sphinx to document the ansible modules contained in this repository, | |||
# not those that may happen to be installed in the version | # not those that may happen to be installed in the version | |||
# of Python used to run sphinx. When sphinx loads in order to document, | # of Python used to run sphinx. When sphinx loads in order to document, | |||
# the repository version needs to be the one that is loaded: | # the repository version needs to be the one that is loaded: | |||
sys.path.insert(0, os.path.abspath(os.path.join('..', '..', '..', 'lib'))) | sys.path.insert(0, os.path.abspath(os.path.join('..', '..', '..', 'lib'))) | |||
VERSION = 'devel' | VERSION = '2.14_ja' | |||
AUTHOR = 'Ansible, Inc' | AUTHOR = 'Ansible, Inc' | |||
# General configuration | # General configuration | |||
# --------------------- | # --------------------- | |||
# Add any Sphinx extension module names here, as strings. | # Add any Sphinx extension module names here, as strings. | |||
# They can be extensions | # They can be extensions | |||
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. | |||
# TEST: 'sphinxcontrib.fulltoc' | # TEST: 'sphinxcontrib.fulltoc' | |||
extensions = [ | extensions = [ | |||
skipping to change at line 201 | skipping to change at line 201 | |||
'display_github': 'True', | 'display_github': 'True', | |||
'show_sphinx': False, | 'show_sphinx': False, | |||
'is_eol': False, | 'is_eol': False, | |||
'github_user': 'ansible', | 'github_user': 'ansible', | |||
'github_repo': 'ansible', | 'github_repo': 'ansible', | |||
'github_version': 'devel/docs/docsite/rst/', | 'github_version': 'devel/docs/docsite/rst/', | |||
'github_module_version': 'devel/lib/ansible/modules/', | 'github_module_version': 'devel/lib/ansible/modules/', | |||
'github_root_dir': 'devel/lib/ansible', | 'github_root_dir': 'devel/lib/ansible', | |||
'github_cli_version': 'devel/lib/ansible/cli/', | 'github_cli_version': 'devel/lib/ansible/cli/', | |||
'current_version': version, | 'current_version': version, | |||
'latest_version': '2.13', | 'latest_version': '2.14', | |||
# list specifically out of order to make latest work | # list specifically out of order to make latest work | |||
'available_versions': ('2.13_ja', '2.12_ja', '2.11_ja',), | 'available_versions': ('2.14_ja', '2.13_ja', '2.12_ja',), | |||
} | } | |||
# Add extra CSS styles to the resulting HTML pages | # Add extra CSS styles to the resulting HTML pages | |||
html_css_files = [ | html_css_files = [ | |||
'css/core-color-scheme.css', | 'css/core-color-scheme.css', | |||
] | ] | |||
# The style sheet to use for HTML and HTML Help pages. A file of that name | # The style sheet to use for HTML and HTML Help pages. A file of that name | |||
# must exist either in Sphinx' static/ path, or in one of the custom paths | # must exist either in Sphinx' static/ path, or in one of the custom paths | |||
# given in html_static_path. | # given in html_static_path. | |||
End of changes. 3 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added |