1
0
mirror of https://github.com/ceph/ceph synced 2025-04-01 23:02:17 +00:00

admin, doc: introduce sphinxcontrib.seqdiag

for rendering sequence-diagram. unlike ditaa, seqdiag allows us to
create sequence-diagram without worrying about the layout. and the
syntax is quite like that of dot.

Signed-off-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
Kefu Chai 2021-08-02 19:00:35 +08:00
parent bc4aacbbbd
commit 1a36bf82fc
2 changed files with 7 additions and 1 deletions

View File

@ -12,3 +12,4 @@ sphinx_rtd_theme == 0.5.2
Sphinx-Substitution-Extensions
typed-ast
sphinxcontrib-openapi
sphinxcontrib-seqdiag

View File

@ -121,7 +121,8 @@ extensions = [
'ceph_commands',
'ceph_releases',
'ceph_confval',
'sphinxcontrib.openapi'
'sphinxcontrib.openapi',
'sphinxcontrib.seqdiag',
]
ditaa = shutil.which("ditaa")
@ -227,6 +228,10 @@ for c in pybinds:
openapi_logger = sphinx.util.logging.getLogger('sphinxcontrib.openapi.openapi30')
openapi_logger.setLevel(logging.WARNING)
# seqdiag
seqdiag_antialias = True
seqdiag_html_image_format = 'SVG'
# ceph_confval
ceph_confval_imports = glob.glob(os.path.join(top_level,
'src/common/options',