summaryrefslogtreecommitdiffstats
path: root/man/conf.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /man/conf.py
parentInitial commit. (diff)
downloadceph-upstream/16.2.11+ds.tar.xz
ceph-upstream/16.2.11+ds.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'man/conf.py')
-rw-r--r--man/conf.py66
1 files changed, 66 insertions, 0 deletions
diff --git a/man/conf.py b/man/conf.py
new file mode 100644
index 000000000..8d4381da3
--- /dev/null
+++ b/man/conf.py
@@ -0,0 +1,66 @@
+import os
+import sys
+
+project = u'Ceph'
+copyright = u'2010-2014, Inktank Storage, Inc. and contributors. Licensed under Creative Commons Attribution Share Alike 3.0 (CC-BY-SA-3.0)'
+version = 'dev'
+release = 'dev'
+
+exclude_patterns = ['**/.#*', '**/*~']
+
+
+def _get_description(fname, base):
+ with open(fname) as f:
+ one = None
+ while True:
+ line = f.readline().rstrip('\n')
+ if not line:
+ continue
+ if line.startswith(':') and line.endswith(':'):
+ continue
+ if line.startswith('.. '):
+ continue
+ one = line
+ break
+ two = f.readline().rstrip('\n')
+ three = f.readline().rstrip('\n')
+ assert one == three
+ assert all(c=='=' for c in one)
+ name, description = two.split('--', 1)
+ assert name.strip() == base
+ return description.strip()
+
+
+def _get_manpages():
+ src_dir = os.path.dirname(__file__)
+ top_srcdir = os.path.dirname(src_dir)
+ man_dir = os.path.join(top_srcdir, 'doc', 'man')
+ sections = os.listdir(man_dir)
+ for section in sections:
+ section_dir = os.path.join(man_dir, section)
+ if not os.path.isdir(section_dir):
+ continue
+ for filename in os.listdir(section_dir):
+ base, ext = os.path.splitext(filename)
+ if ext != '.rst':
+ continue
+ if base == 'index':
+ continue
+ path = os.path.join(section_dir, filename)
+ try:
+ description = _get_description(path, base)
+ except UnicodeDecodeError as e:
+ print(f"unable to decode {path}", file=sys.stderr)
+ raise e
+ yield (
+ os.path.join(section, base),
+ base,
+ description,
+ '',
+ section,
+ )
+
+man_pages = list(_get_manpages())
+# sphinx warns if no toc is found, so feed it with a random file
+# which is also rendered in this run.
+master_doc = '8/ceph'