|
|
# Configuration file for the Sphinx documentation builder.
|
|
|
#
|
|
|
# For the full list of built-in configuration values, see the documentation:
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
|
|
import datetime
|
|
|
|
|
|
now = datetime.datetime.today()
|
|
|
|
|
|
project = 'RhodeCode rcstack'
|
|
|
copyright = f'2010-{now.year}, RhodeCode Inc.'
|
|
|
author = 'RhodeCode Inc.'
|
|
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
|
|
|
|
extensions = [
|
|
|
'sphinx_rtd_theme'
|
|
|
]
|
|
|
|
|
|
templates_path = ['_templates']
|
|
|
exclude_patterns = []
|
|
|
|
|
|
# The name of the Pygments (syntax highlighting) style to use.
|
|
|
pygments_style = 'sphinx'
|
|
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
|
|
|
|
|
html_theme = 'furo'
|
|
|
html_static_path = ['_static']
|
|
|
html_last_updated_fmt = ' %H:%m %b %d, %Y'
|
|
|
html_show_sphinx = False
|
|
|
html_extra_path = ['extra']
|
|
|
|
|
|
|
|
|
rst_epilog = '''
|
|
|
.. |RCCEshort| replace:: Community
|
|
|
.. |RCEEshort| replace:: Enterprise
|
|
|
.. |git| replace:: Git
|
|
|
.. |hg| replace:: Mercurial
|
|
|
.. |svn| replace:: Subversion
|
|
|
|
|
|
.. |RCC| replace:: RhodeCode Control
|
|
|
.. |RCE| replace:: RhodeCode Enterprise
|
|
|
.. |RCCE| replace:: RhodeCode Community
|
|
|
.. |RCEE| replace:: RhodeCode Enterprise
|
|
|
.. |RCT| replace:: RhodeCode Tools
|
|
|
|
|
|
.. |RCEBOLD| replace:: **RhodeCode Enterprise**
|
|
|
.. |RCEITALICS| replace:: `RhodeCode Enterprise`
|
|
|
|
|
|
'''
|
|
|
|