diff options
author | 2018-01-04 13:43:33 +0800 | |
---|---|---|
committer | 2018-01-05 11:59:39 +0800 | |
commit | 812ff6ca9fcd3e629e49d4328905f33eee8ca3f5 (patch) | |
tree | 04ece7b4da00d9d2f98093774594f4057ae561d4 /src/ceph/man | |
parent | 15280273faafb77777eab341909a3f495cf248d9 (diff) |
initial code repo
This patch creates initial code repo.
For ceph, luminous stable release will be used for base code,
and next changes and optimization for ceph will be added to it.
For opensds, currently any changes can be upstreamed into original
opensds repo (https://github.com/opensds/opensds), and so stor4nfv
will directly clone opensds code to deploy stor4nfv environment.
And the scripts for deployment based on ceph and opensds will be
put into 'ci' directory.
Change-Id: I46a32218884c75dda2936337604ff03c554648e4
Signed-off-by: Qiaowei Ren <qiaowei.ren@intel.com>
Diffstat (limited to 'src/ceph/man')
-rw-r--r-- | src/ceph/man/.gitignore | 2 | ||||
-rw-r--r-- | src/ceph/man/CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/ceph/man/conf.py | 59 |
3 files changed, 65 insertions, 0 deletions
diff --git a/src/ceph/man/.gitignore b/src/ceph/man/.gitignore new file mode 100644 index 0000000..26b02c4 --- /dev/null +++ b/src/ceph/man/.gitignore @@ -0,0 +1,2 @@ +/*.8 +/doctrees diff --git a/src/ceph/man/CMakeLists.txt b/src/ceph/man/CMakeLists.txt new file mode 100644 index 0000000..a6d8aa6 --- /dev/null +++ b/src/ceph/man/CMakeLists.txt @@ -0,0 +1,4 @@ +if(WITH_SELINUX) + install(FILES ceph_selinux.8 + DESTINATION ${CEPH_MAN_DIR}/man8) +endif() diff --git a/src/ceph/man/conf.py b/src/ceph/man/conf.py new file mode 100644 index 0000000..67d371e --- /dev/null +++ b/src/ceph/man/conf.py @@ -0,0 +1,59 @@ +import os + +project = u'Ceph' +copyright = u'2010-2014, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA' +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 + 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) + description = _get_description(path, base) + 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' |