From 7da45d65be36d36b880cc55c5036e96c24b53f00 Mon Sep 17 00:00:00 2001 From: Qiaowei Ren Date: Thu, 1 Mar 2018 14:38:11 +0800 Subject: remove ceph code This patch removes initial ceph code, due to license issue. Change-Id: I092d44f601cdf34aed92300fe13214925563081c Signed-off-by: Qiaowei Ren --- src/ceph/man/conf.py | 59 ---------------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 src/ceph/man/conf.py (limited to 'src/ceph/man/conf.py') diff --git a/src/ceph/man/conf.py b/src/ceph/man/conf.py deleted file mode 100644 index 67d371e..0000000 --- a/src/ceph/man/conf.py +++ /dev/null @@ -1,59 +0,0 @@ -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' -- cgit 1.2.3-korg