2015-03-23 06:08:16 +00:00
|
|
|
import os
|
2020-06-22 11:21:28 +00:00
|
|
|
import sys
|
2015-03-23 06:08:16 +00:00
|
|
|
|
|
|
|
project = u'Ceph'
|
2018-03-13 16:36:00 +00:00
|
|
|
copyright = u'2010-2014, Inktank Storage, Inc. and contributors. Licensed under Creative Commons Attribution Share Alike 3.0 (CC-BY-SA-3.0)'
|
2015-03-23 06:08:16 +00:00
|
|
|
version = 'dev'
|
|
|
|
release = 'dev'
|
|
|
|
|
|
|
|
exclude_patterns = ['**/.#*', '**/*~']
|
|
|
|
|
2015-04-21 13:05:09 +00:00
|
|
|
|
|
|
|
def _get_description(fname, base):
|
doc/man: avoid file builtin to solve build error
Sphinx running with Python 3.X fails:
# Sphinx version: 1.4.8
# Python version: 3.5.2 (CPython)
# Docutils version: 0.12 release
# Jinja2 version: 2.8
# Last messages:
# Loaded extensions:
Traceback (most recent call last):
File "/usr/lib/python3.5/site-packages/sphinx/cmdline.py", line 243, in main
opts.warningiserror, opts.tags, opts.verbosity, opts.jobs)
File "/usr/lib/python3.5/site-packages/sphinx/application.py", line 137, in __init__
confoverrides or {}, self.tags)
File "/usr/lib/python3.5/site-packages/sphinx/config.py", line 287, in __init__
execfile_(filename, config)
File "/usr/lib/python3.5/site-packages/sphinx/util/pycompat.py", line 130, in execfile_
exec_(code, _globals)
File "conf.py", line 56, in <module>
File "conf.py", line 47, in _get_manpages
File "conf.py", line 12, in _get_description
NameError: name 'file' is not defined
Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
2016-11-15 03:46:23 +00:00
|
|
|
with open(fname) as f:
|
2015-04-07 07:45:20 +00:00
|
|
|
one = None
|
2015-04-21 13:05:09 +00:00
|
|
|
while True:
|
|
|
|
line = f.readline().rstrip('\n')
|
2015-04-07 07:45:20 +00:00
|
|
|
if not line:
|
|
|
|
continue
|
|
|
|
if line.startswith(':') and line.endswith(':'):
|
|
|
|
continue
|
2018-08-15 05:28:53 +00:00
|
|
|
if line.startswith('.. '):
|
|
|
|
continue
|
2015-04-07 07:45:20 +00:00
|
|
|
one = line
|
|
|
|
break
|
2015-04-21 13:05:09 +00:00
|
|
|
two = f.readline().rstrip('\n')
|
|
|
|
three = f.readline().rstrip('\n')
|
2015-04-07 07:45:20 +00:00
|
|
|
assert one == three
|
2015-04-21 13:05:09 +00:00
|
|
|
assert all(c=='=' for c in one)
|
2015-04-07 07:45:20 +00:00
|
|
|
name, description = two.split('--', 1)
|
|
|
|
assert name.strip() == base
|
|
|
|
return description.strip()
|
|
|
|
|
2015-04-21 13:05:09 +00:00
|
|
|
|
2015-03-23 06:08:16 +00:00
|
|
|
def _get_manpages():
|
2015-04-07 04:29:04 +00:00
|
|
|
src_dir = os.path.dirname(__file__)
|
|
|
|
top_srcdir = os.path.dirname(src_dir)
|
|
|
|
man_dir = os.path.join(top_srcdir, 'doc', 'man')
|
2015-03-23 06:08:16 +00:00
|
|
|
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
|
2015-04-21 13:05:09 +00:00
|
|
|
path = os.path.join(section_dir, filename)
|
2020-06-22 11:21:28 +00:00
|
|
|
try:
|
|
|
|
description = _get_description(path, base)
|
|
|
|
except UnicodeDecodeError as e:
|
|
|
|
print(f"unable to decode {path}", file=sys.stderr)
|
|
|
|
raise e
|
2015-03-23 06:08:16 +00:00
|
|
|
yield (
|
|
|
|
os.path.join(section, base),
|
|
|
|
base,
|
|
|
|
description,
|
|
|
|
'',
|
|
|
|
section,
|
|
|
|
)
|
|
|
|
|
|
|
|
man_pages = list(_get_manpages())
|
2015-04-06 02:36:22 +00:00
|
|
|
# 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'
|