nghttp2/doc/_themes/sphinx_rtd_theme/__init__.py

35 lines
1.1 KiB
Python
Raw Normal View History

2020-07-24 13:18:59 +02:00
"""
Sphinx Read the Docs theme.
2013-12-06 17:27:56 +01:00
From https://github.com/ryan-roemer/sphinx-bootstrap-theme.
"""
2020-07-24 13:18:59 +02:00
from os import path
import sphinx
2013-12-06 17:27:56 +01:00
2020-07-24 13:18:59 +02:00
__version__ = '0.5.0'
2013-12-06 17:27:56 +01:00
__version_full__ = __version__
def get_html_theme_path():
"""Return list of HTML theme paths."""
2020-07-24 13:18:59 +02:00
cur_dir = path.abspath(path.dirname(path.dirname(__file__)))
2013-12-06 17:27:56 +01:00
return cur_dir
2020-07-24 13:18:59 +02:00
# See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package
def setup(app):
if sphinx.version_info >= (1, 6, 0):
# Register the theme that can be referenced without adding a theme path
app.add_html_theme('sphinx_rtd_theme', path.abspath(path.dirname(__file__)))
if sphinx.version_info >= (1, 8, 0):
# Add Sphinx message catalog for newer versions of Sphinx
# See http://www.sphinx-doc.org/en/master/extdev/appapi.html#sphinx.application.Sphinx.add_message_catalog
rtd_locale_path = path.join(path.abspath(path.dirname(__file__)), 'locale')
app.add_message_catalog('sphinx', rtd_locale_path)
return {'parallel_read_safe': True, 'parallel_write_safe': True}