2013-12-21 11:28:12 +08:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2011-01-25 14:01:22 -06:00
|
|
|
#
|
2017-04-19 09:53:47 +01:00
|
|
|
# python-novaclient documentation build configuration file
|
2011-01-25 14:01:22 -06:00
|
|
|
|
2013-12-16 14:07:24 +08:00
|
|
|
import os
|
2017-04-19 09:53:47 +01:00
|
|
|
import sys
|
2013-12-16 14:07:24 +08:00
|
|
|
|
|
|
|
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
ROOT = os.path.abspath(os.path.join(BASE_DIR, "..", ".."))
|
|
|
|
|
|
|
|
sys.path.insert(0, ROOT)
|
|
|
|
sys.path.insert(0, BASE_DIR)
|
2011-01-25 14:01:22 -06:00
|
|
|
|
2013-12-18 16:04:58 +08:00
|
|
|
|
2017-07-04 11:06:56 +01:00
|
|
|
# TODO(stephenfin): This looks like something that pbr's autodoc integration
|
|
|
|
# could be doing for us. Investigate.
|
|
|
|
|
2013-12-18 16:04:58 +08:00
|
|
|
def gen_ref(ver, title, names):
|
2017-07-04 11:06:56 +01:00
|
|
|
refdir = os.path.join(BASE_DIR, "reference", "api")
|
2013-12-18 16:04:58 +08:00
|
|
|
pkg = "novaclient"
|
|
|
|
if ver:
|
|
|
|
pkg = "%s.%s" % (pkg, ver)
|
|
|
|
refdir = os.path.join(refdir, ver)
|
|
|
|
if not os.path.exists(refdir):
|
|
|
|
os.makedirs(refdir)
|
2017-07-04 11:06:56 +01:00
|
|
|
|
|
|
|
# we don't want to write index files for top-level directories - only
|
|
|
|
# sub-directories
|
|
|
|
if ver:
|
|
|
|
idxpath = os.path.join(refdir, "index.rst")
|
|
|
|
with open(idxpath, "w") as idx:
|
|
|
|
idx.write(("%(title)s\n"
|
|
|
|
"%(signs)s\n"
|
|
|
|
"\n"
|
|
|
|
".. toctree::\n"
|
|
|
|
" :maxdepth: 1\n"
|
|
|
|
"\n") % {"title": title, "signs": "=" * len(title)})
|
|
|
|
for name in names:
|
|
|
|
idx.write(" %s\n" % name)
|
|
|
|
|
|
|
|
for name in names:
|
|
|
|
rstpath = os.path.join(refdir, "%s.rst" % name)
|
|
|
|
with open(rstpath, "w") as rst:
|
|
|
|
rst.write(("%(title)s\n"
|
|
|
|
"%(signs)s\n"
|
|
|
|
"\n"
|
|
|
|
".. automodule:: %(pkg)s.%(name)s\n"
|
|
|
|
" :members:\n"
|
|
|
|
" :undoc-members:\n"
|
|
|
|
" :show-inheritance:\n"
|
|
|
|
" :noindex:\n")
|
|
|
|
% {"title": name.capitalize(),
|
|
|
|
"signs": "=" * len(name),
|
|
|
|
"pkg": pkg, "name": name})
|
2013-12-18 16:04:58 +08:00
|
|
|
|
2016-12-29 14:33:37 -06:00
|
|
|
|
|
|
|
def get_module_names():
|
|
|
|
names = os.listdir(os.path.join(ROOT, 'novaclient', 'v2'))
|
|
|
|
exclude = ['shell.py', '__init__.py']
|
|
|
|
for name in names:
|
|
|
|
if name.endswith('.py') and name not in exclude:
|
|
|
|
yield name.strip('.py')
|
|
|
|
|
|
|
|
|
2013-12-18 16:04:58 +08:00
|
|
|
gen_ref(None, "Exceptions", ["exceptions"])
|
2016-12-29 14:33:37 -06:00
|
|
|
gen_ref("v2", "Version 2 API", sorted(get_module_names()))
|
2013-12-18 16:04:58 +08:00
|
|
|
|
2012-08-29 13:36:55 +08:00
|
|
|
# -- General configuration ----------------------------------------------------
|
2011-01-25 14:01:22 -06:00
|
|
|
|
2012-08-29 13:36:55 +08:00
|
|
|
# Add any Sphinx extension module names here, as strings. They can be
|
2017-04-19 09:53:47 +01:00
|
|
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
2017-06-27 05:31:57 +00:00
|
|
|
extensions = [
|
|
|
|
'sphinx.ext.autodoc',
|
|
|
|
'openstackdocstheme',
|
|
|
|
]
|
2011-01-25 14:01:22 -06:00
|
|
|
|
2015-03-11 15:29:14 +11:00
|
|
|
autoclass_content = 'both'
|
|
|
|
|
2011-01-25 14:01:22 -06:00
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
|
|
|
templates_path = ['_templates']
|
|
|
|
|
|
|
|
# The suffix of source filenames.
|
|
|
|
source_suffix = '.rst'
|
|
|
|
|
|
|
|
# The master toctree document.
|
|
|
|
master_doc = 'index'
|
|
|
|
|
2017-06-27 05:31:57 +00:00
|
|
|
# openstackdocstheme options
|
|
|
|
repository_name = 'openstack/python-novaclient'
|
|
|
|
bug_project = 'python-novaclient'
|
|
|
|
bug_tag = 'doc'
|
2013-06-24 10:03:19 -05:00
|
|
|
project = 'python-novaclient'
|
|
|
|
copyright = 'OpenStack Contributors'
|
2011-01-25 14:01:22 -06:00
|
|
|
|
|
|
|
# List of directories, relative to source directory, that shouldn't be searched
|
|
|
|
# for source files.
|
2012-06-11 14:13:55 -07:00
|
|
|
exclude_trees = []
|
2011-01-25 14:01:22 -06:00
|
|
|
|
|
|
|
# If true, '()' will be appended to :func: etc. cross-reference text.
|
|
|
|
add_function_parentheses = True
|
|
|
|
|
|
|
|
# If true, the current module name will be prepended to all description
|
|
|
|
# unit titles (such as .. function::).
|
|
|
|
add_module_names = True
|
|
|
|
|
|
|
|
# The name of the Pygments (syntax highlighting) style to use.
|
|
|
|
pygments_style = 'sphinx'
|
|
|
|
|
2012-08-29 13:36:55 +08:00
|
|
|
# -- Options for HTML output --------------------------------------------------
|
2011-01-25 14:01:22 -06:00
|
|
|
|
|
|
|
# The theme to use for HTML and HTML Help pages. Major themes that come with
|
|
|
|
# Sphinx are currently 'default' and 'sphinxdoc'.
|
2017-06-27 05:31:57 +00:00
|
|
|
html_theme = 'openstackdocs'
|
|
|
|
|
|
|
|
# -- Options for openstackdocstheme -------------------------------------------
|
|
|
|
|
|
|
|
repository_name = 'openstack/python-novaclient'
|
|
|
|
bug_project = 'python-novaclient'
|
|
|
|
bug_tag = ''
|
2011-01-25 14:01:22 -06:00
|
|
|
|
2017-04-19 09:53:47 +01:00
|
|
|
# -- Options for manual page output ------------------------------------------
|
2011-01-25 14:01:22 -06:00
|
|
|
|
2017-04-19 09:53:47 +01:00
|
|
|
# One entry per manual page. List of tuples
|
|
|
|
# (source start file, name, description, authors, manual section).
|
|
|
|
man_pages = [
|
2017-07-04 11:06:56 +01:00
|
|
|
('cli/nova', 'nova', 'OpenStack Nova command line client',
|
2017-04-19 09:53:47 +01:00
|
|
|
['OpenStack Contributors'], 1),
|
2011-01-25 14:01:22 -06:00
|
|
|
]
|