Migrating documentation to the new style
Change-Id: I4a398b2ea3023250905208f35996015f5a5d5e84
This commit is contained in:
parent
613feacdb3
commit
54005e50da
144
doc/source/_static/freezer.conf.sample
Normal file
144
doc/source/_static/freezer.conf.sample
Normal file
@ -0,0 +1,144 @@
|
|||||||
|
[DEFAULT]
|
||||||
|
|
||||||
|
#
|
||||||
|
# From oslo.log
|
||||||
|
#
|
||||||
|
|
||||||
|
# If set to true, the logging level will be set to DEBUG instead of the default
|
||||||
|
# INFO level. (boolean value)
|
||||||
|
# Note: This option can be changed without restarting.
|
||||||
|
#debug = false
|
||||||
|
|
||||||
|
# The name of a logging configuration file. This file is appended to any
|
||||||
|
# existing logging configuration files. For details about logging configuration
|
||||||
|
# files, see the Python logging module documentation. Note that when logging
|
||||||
|
# configuration files are used then all logging configuration is set in the
|
||||||
|
# configuration file and other logging configuration options are ignored (for
|
||||||
|
# example, logging_context_format_string). (string value)
|
||||||
|
# Note: This option can be changed without restarting.
|
||||||
|
# Deprecated group/name - [DEFAULT]/log_config
|
||||||
|
#log_config_append = <None>
|
||||||
|
|
||||||
|
# Defines the format string for %%(asctime)s in log records. Default:
|
||||||
|
# %(default)s . This option is ignored if log_config_append is set. (string
|
||||||
|
# value)
|
||||||
|
#log_date_format = %Y-%m-%d %H:%M:%S
|
||||||
|
|
||||||
|
# (Optional) Name of log file to send logging output to. If no default is set,
|
||||||
|
# logging will go to stderr as defined by use_stderr. This option is ignored if
|
||||||
|
# log_config_append is set. (string value)
|
||||||
|
# Deprecated group/name - [DEFAULT]/logfile
|
||||||
|
#log_file = <None>
|
||||||
|
|
||||||
|
# (Optional) The base directory used for relative log_file paths. This option
|
||||||
|
# is ignored if log_config_append is set. (string value)
|
||||||
|
# Deprecated group/name - [DEFAULT]/logdir
|
||||||
|
#log_dir = <None>
|
||||||
|
|
||||||
|
# Uses logging handler designed to watch file system. When log file is moved or
|
||||||
|
# removed this handler will open a new log file with specified path
|
||||||
|
# instantaneously. It makes sense only if log_file option is specified and
|
||||||
|
# Linux platform is used. This option is ignored if log_config_append is set.
|
||||||
|
# (boolean value)
|
||||||
|
#watch_log_file = false
|
||||||
|
|
||||||
|
# Use syslog for logging. Existing syslog format is DEPRECATED and will be
|
||||||
|
# changed later to honor RFC5424. This option is ignored if log_config_append
|
||||||
|
# is set. (boolean value)
|
||||||
|
#use_syslog = false
|
||||||
|
|
||||||
|
# Enable journald for logging. If running in a systemd environment you may wish
|
||||||
|
# to enable journal support. Doing so will use the journal native protocol
|
||||||
|
# which includes structured metadata in addition to log messages.This option is
|
||||||
|
# ignored if log_config_append is set. (boolean value)
|
||||||
|
#use_journal = false
|
||||||
|
|
||||||
|
# Syslog facility to receive log lines. This option is ignored if
|
||||||
|
# log_config_append is set. (string value)
|
||||||
|
#syslog_log_facility = LOG_USER
|
||||||
|
|
||||||
|
# Log output to standard error. This option is ignored if log_config_append is
|
||||||
|
# set. (boolean value)
|
||||||
|
#use_stderr = false
|
||||||
|
|
||||||
|
# Format string to use for log messages with context. (string value)
|
||||||
|
#logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
|
||||||
|
|
||||||
|
# Format string to use for log messages when context is undefined. (string
|
||||||
|
# value)
|
||||||
|
#logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
|
||||||
|
|
||||||
|
# Additional data to append to log message when logging level for the message
|
||||||
|
# is DEBUG. (string value)
|
||||||
|
#logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
|
||||||
|
|
||||||
|
# Prefix each line of exception output with this format. (string value)
|
||||||
|
#logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
|
||||||
|
|
||||||
|
# Defines the format string for %(user_identity)s that is used in
|
||||||
|
# logging_context_format_string. (string value)
|
||||||
|
#logging_user_identity_format = %(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s
|
||||||
|
|
||||||
|
# List of package logging levels in logger=LEVEL pairs. This option is ignored
|
||||||
|
# if log_config_append is set. (list value)
|
||||||
|
#default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,oslo_messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN,taskflow=WARN,keystoneauth=WARN,oslo.cache=INFO,dogpile.core.dogpile=INFO
|
||||||
|
|
||||||
|
# Enables or disables publication of error events. (boolean value)
|
||||||
|
#publish_errors = false
|
||||||
|
|
||||||
|
# The format for an instance that is passed with the log message. (string
|
||||||
|
# value)
|
||||||
|
#instance_format = "[instance: %(uuid)s] "
|
||||||
|
|
||||||
|
# The format for an instance UUID that is passed with the log message. (string
|
||||||
|
# value)
|
||||||
|
#instance_uuid_format = "[instance: %(uuid)s] "
|
||||||
|
|
||||||
|
# Interval, number of seconds, of log rate limiting. (integer value)
|
||||||
|
#rate_limit_interval = 0
|
||||||
|
|
||||||
|
# Maximum number of logged messages per rate_limit_interval. (integer value)
|
||||||
|
#rate_limit_burst = 0
|
||||||
|
|
||||||
|
# Log level name used by rate limiting: CRITICAL, ERROR, INFO, WARNING, DEBUG
|
||||||
|
# or empty string. Logs with level greater or equal to rate_limit_except_level
|
||||||
|
# are not filtered. An empty string means that all levels are filtered. (string
|
||||||
|
# value)
|
||||||
|
#rate_limit_except_level = CRITICAL
|
||||||
|
|
||||||
|
# Enables or disables fatal status of deprecations. (boolean value)
|
||||||
|
#fatal_deprecations = false
|
||||||
|
|
||||||
|
#
|
||||||
|
# From scheduler
|
||||||
|
#
|
||||||
|
|
||||||
|
# Specifies the client_id used when contacting the service.
|
||||||
|
# If not specified it will be automatically created
|
||||||
|
# using the tenant-id and the machine hostname. (string value)
|
||||||
|
#client_id = <None>
|
||||||
|
|
||||||
|
# Prevents the scheduler from using the api service (boolean value)
|
||||||
|
#no_api = false
|
||||||
|
|
||||||
|
# Used to store/retrieve files on local storage, including those exchanged with
|
||||||
|
# the api service. Default value is /etc/freezer/scheduler/conf.d (Env:
|
||||||
|
# FREEZER_SCHEDULER_CONF_D) (string value)
|
||||||
|
#jobs_dir = /etc/freezer/scheduler/conf.d
|
||||||
|
|
||||||
|
# Specifies the api-polling interval in seconds. Defaults to 60 seconds
|
||||||
|
# (integer value)
|
||||||
|
#interval = 60
|
||||||
|
|
||||||
|
# Prevents the scheduler from running in daemon mode (boolean value)
|
||||||
|
#no_daemon = false
|
||||||
|
|
||||||
|
# Initialize freezer scheduler with insecure mode (boolean value)
|
||||||
|
#insecure = false
|
||||||
|
|
||||||
|
# Allow Freezer Scheduler to deny jobs that execute commands for security
|
||||||
|
# reasons (boolean value)
|
||||||
|
#disable_exec = false
|
||||||
|
|
||||||
|
# Number of jobs that can be executed at the same time (integer value)
|
||||||
|
#concurrent_jobs = 1
|
@ -1,21 +1,17 @@
|
|||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
||||||
# you may not use this file except in compliance with the License.
|
# not use this file except in compliance with the License. You may obtain
|
||||||
# You may obtain a copy of the License at
|
# a copy of the License at
|
||||||
#
|
#
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
#
|
#
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
# implied.
|
# License for the specific language governing permissions and limitations
|
||||||
# See the License for the specific language governing permissions and
|
# under the License.
|
||||||
# limitations under the License.
|
|
||||||
#
|
# This file is execfile()d with the current directory set
|
||||||
# Freezer documentation build configuration file, created by
|
# to its containing dir.
|
||||||
# sphinx-quickstart on Thu Feb 4 22:27:35 2016.
|
|
||||||
#
|
|
||||||
# This file is execfile()d with the current directory set to its
|
|
||||||
# containing dir.
|
|
||||||
#
|
#
|
||||||
# Note that not all possible configuration values are present in this
|
# Note that not all possible configuration values are present in this
|
||||||
# autogenerated file.
|
# autogenerated file.
|
||||||
@ -23,261 +19,126 @@
|
|||||||
# All configuration values have a default; values that are commented out
|
# All configuration values have a default; values that are commented out
|
||||||
# serve to show the default.
|
# serve to show the default.
|
||||||
|
|
||||||
import sys
|
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
# NOTE(dims): monkey patch subprocess to prevent failures in latest eventlet
|
||||||
|
# See https://github.com/eventlet/eventlet/issues/398
|
||||||
|
|
||||||
|
|
||||||
# If extensions (or modules to document with autodoc) are in another directory,
|
# If extensions (or modules to document with autodoc) are in another directory,
|
||||||
# add these directories to sys.path here. If the directory is relative to the
|
# add these directories to sys.path here. If the directory is relative to the
|
||||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||||
#sys.path.insert(0, os.path.abspath('.'))
|
# sys.path.insert(0, os.path.abspath('../../'))
|
||||||
|
# sys.path.insert(0, os.path.abspath('../'))
|
||||||
|
# sys.path.insert(0, os.path.abspath('./'))
|
||||||
|
|
||||||
# -- General configuration ------------------------------------------------
|
# -- General configuration ----------------------------------------------------
|
||||||
|
|
||||||
# If your documentation needs a minimal Sphinx version, state it here.
|
# Add any Sphinx extension module names here, as strings.
|
||||||
#needs_sphinx = '1.0'
|
# They can be extensions coming with Sphinx (named 'sphinx.ext.*')
|
||||||
|
# or your custom ones.
|
||||||
|
|
||||||
# Add any Sphinx extension module names here, as strings. They can be
|
extensions = ['openstackdocstheme',
|
||||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
'oslo_config.sphinxconfiggen',
|
||||||
# ones.
|
]
|
||||||
extensions = ['sphinx.ext.autodoc',
|
|
||||||
'sphinx.ext.viewcode',
|
config_generator_config_file = (
|
||||||
'openstackdocstheme']
|
'../../config-generator/scheduler.conf')
|
||||||
|
sample_config_basename = '_static/freezer'
|
||||||
|
|
||||||
|
# autodoc generation is a bit aggressive and a nuisance
|
||||||
|
# when doing heavy text edit cycles. Execute "export SPHINX_DEBUG=1"
|
||||||
|
# in your terminal to disable
|
||||||
|
#if not os.getenv('SPHINX_DEBUG'):
|
||||||
|
# extensions += ['ext.freezer_autodoc']
|
||||||
|
|
||||||
|
todo_include_todos = True
|
||||||
|
|
||||||
# Add any paths that contain templates here, relative to this directory.
|
# Add any paths that contain templates here, relative to this directory.
|
||||||
templates_path = ['_templates']
|
# templates_path = []
|
||||||
|
|
||||||
# The suffix of source filenames.
|
# The suffix of source filenames.
|
||||||
source_suffix = '.rst'
|
source_suffix = '.rst'
|
||||||
|
|
||||||
# openstackdocstheme options
|
|
||||||
repository_name = 'openstack/freezer'
|
|
||||||
bug_project = 'freezer'
|
|
||||||
bug_tag = ''
|
|
||||||
|
|
||||||
# Must set this variable to include year, month, day, hours, and minutes.
|
|
||||||
html_last_updated_fmt = '%Y-%m-%d %H:%M'
|
|
||||||
|
|
||||||
# The encoding of source files.
|
# The encoding of source files.
|
||||||
#source_encoding = 'utf-8-sig'
|
# source_encoding = 'utf-8'
|
||||||
|
|
||||||
# The master toctree document.
|
# The master toctree document.
|
||||||
master_doc = 'index'
|
master_doc = 'index'
|
||||||
|
|
||||||
# General information about the project.
|
# General information about the project.
|
||||||
project = u'Freezer'
|
repository_name = 'openstack/freezer'
|
||||||
copyright = u'2016, OpenStack'
|
bug_project = 'freezer'
|
||||||
|
bug_tag = 'doc'
|
||||||
|
# project = u'Freezer'
|
||||||
|
# copyright = u'2010-present, OpenStack Foundation'
|
||||||
|
|
||||||
# The version info for the project you're documenting, acts as replacement for
|
# The version info for the project you're documenting, acts as replacement for
|
||||||
# |version| and |release|, also used in various other places throughout the
|
# |version| and |release|, also used in various other places throughout the
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# from freezer import version_info
|
||||||
version = '2.0'
|
# # The full version, including alpha/beta/rc tags.
|
||||||
# The full version, including alpha/beta/rc tags.
|
# release = version_info.release_string()
|
||||||
release = '2.0.0'
|
# # The short X.Y version.
|
||||||
|
# version = version_info.version_string()
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
#language = None
|
# language = None
|
||||||
|
|
||||||
# There are two options for replacing |today|: either, you set today to some
|
# There are two options for replacing |today|: either, you set today to some
|
||||||
# non-false value, then it is used:
|
# non-false value, then it is used:
|
||||||
#today = ''
|
# today = ''
|
||||||
# Else, today_fmt is used as the format for a strftime call.
|
# Else, today_fmt is used as the format for a strftime call.
|
||||||
#today_fmt = '%B %d, %Y'
|
# today_fmt = '%B %d, %Y'
|
||||||
|
|
||||||
# List of patterns, relative to source directory, that match files and
|
# List of documents that shouldn't be included in the build.
|
||||||
# directories to ignore when looking for source files.
|
|
||||||
exclude_patterns = []
|
|
||||||
|
|
||||||
# The reST default role (used for this markup: `text`) to use for all
|
# # List of directories, relative to source directory, that shouldn't be searched
|
||||||
# documents.
|
# # for source files.
|
||||||
#default_role = None
|
# exclude_trees = []
|
||||||
|
#
|
||||||
# If true, '()' will be appended to :func: etc. cross-reference text.
|
# # The reST default role (used for this markup: `text`) to use
|
||||||
#add_function_parentheses = True
|
# # for all documents.
|
||||||
|
# # default_role = None
|
||||||
# If true, the current module name will be prepended to all description
|
#
|
||||||
# unit titles (such as .. function::).
|
# # If true, '()' will be appended to :func: etc. cross-reference text.
|
||||||
#add_module_names = True
|
# # add_function_parentheses = True
|
||||||
|
#
|
||||||
# If true, sectionauthor and moduleauthor directives will be shown in the
|
# # If true, the current module name will be prepended to all description
|
||||||
# output. They are ignored by default.
|
# # unit titles (such as .. function::).
|
||||||
#show_authors = False
|
# add_module_names = False
|
||||||
|
#
|
||||||
# The name of the Pygments (syntax highlighting) style to use.
|
# # If true, sectionauthor and moduleauthor directives will be shown in the
|
||||||
pygments_style = 'sphinx'
|
# # output. They are ignored by default.
|
||||||
|
# show_authors = False
|
||||||
|
#
|
||||||
|
# # The name of the Pygments (syntax highlighting) style to use.
|
||||||
|
# pygments_style = 'sphinx'
|
||||||
|
|
||||||
# A list of ignored prefixes for module index sorting.
|
# A list of ignored prefixes for module index sorting.
|
||||||
#modindex_common_prefix = []
|
modindex_common_prefix = ['freezer.']
|
||||||
|
|
||||||
# If true, keep warnings as "system message" paragraphs in the built documents.
|
# -- Options for man page output ----------------------------------------------
|
||||||
#keep_warnings = False
|
|
||||||
|
|
||||||
|
# Grouping the document tree for man pages.
|
||||||
|
# List of tuples 'sourcefile', 'target', u'title', u'Authors name', 'manual'
|
||||||
|
|
||||||
# -- Options for HTML output ----------------------------------------------
|
|
||||||
|
|
||||||
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
||||||
# a list of builtin themes.
|
|
||||||
html_theme = 'default'
|
|
||||||
|
|
||||||
# Theme options are theme-specific and customize the look and feel of a theme
|
|
||||||
# further. For a list of options available for each theme, see the
|
|
||||||
# documentation.
|
|
||||||
#html_theme_options = {}
|
|
||||||
|
|
||||||
# Add any paths that contain custom themes here, relative to this directory.
|
|
||||||
#html_theme_path = []
|
|
||||||
|
|
||||||
# The name for this set of Sphinx documents. If None, it defaults to
|
|
||||||
# "<project> v<release> documentation".
|
|
||||||
#html_title = None
|
|
||||||
|
|
||||||
# A shorter title for the navigation bar. Default is the same as html_title.
|
|
||||||
#html_short_title = None
|
|
||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top
|
|
||||||
# of the sidebar.
|
|
||||||
#html_logo = None
|
|
||||||
|
|
||||||
# The name of an image file (within the static path) to use as favicon of the
|
|
||||||
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
|
||||||
# pixels large.
|
|
||||||
#html_favicon = None
|
|
||||||
|
|
||||||
# Add any paths that contain custom static files (such as style sheets) here,
|
|
||||||
# relative to this directory. They are copied after the builtin static files,
|
|
||||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
|
||||||
#html_static_path = ['_static']
|
|
||||||
|
|
||||||
# Add any extra paths that contain custom files (such as robots.txt or
|
|
||||||
# .htaccess) here, relative to this directory. These files are copied
|
|
||||||
# directly to the root of the documentation.
|
|
||||||
#html_extra_path = []
|
|
||||||
|
|
||||||
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
|
||||||
# using the given strftime format.
|
|
||||||
#html_last_updated_fmt = '%b %d, %Y'
|
|
||||||
|
|
||||||
# If true, SmartyPants will be used to convert quotes and dashes to
|
|
||||||
# typographically correct entities.
|
|
||||||
#html_use_smartypants = True
|
|
||||||
|
|
||||||
# Custom sidebar templates, maps document names to template names.
|
|
||||||
#html_sidebars = {}
|
|
||||||
|
|
||||||
# Additional templates that should be rendered to pages, maps page names to
|
|
||||||
# template names.
|
|
||||||
#html_additional_pages = {}
|
|
||||||
|
|
||||||
# If false, no module index is generated.
|
|
||||||
#html_domain_indices = True
|
|
||||||
|
|
||||||
# If false, no index is generated.
|
|
||||||
#html_use_index = True
|
|
||||||
|
|
||||||
# If true, the index is split into individual pages for each letter.
|
|
||||||
#html_split_index = False
|
|
||||||
|
|
||||||
# If true, links to the reST sources are added to the pages.
|
|
||||||
#html_show_sourcelink = True
|
|
||||||
|
|
||||||
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
|
||||||
#html_show_sphinx = True
|
|
||||||
|
|
||||||
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
|
||||||
#html_show_copyright = True
|
|
||||||
|
|
||||||
# If true, an OpenSearch description file will be output, and all pages will
|
|
||||||
# contain a <link> tag referring to it. The value of this option must be the
|
|
||||||
# base URL from which the finished HTML is served.
|
|
||||||
#html_use_opensearch = ''
|
|
||||||
|
|
||||||
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
|
||||||
#html_file_suffix = None
|
|
||||||
|
|
||||||
# Output file base name for HTML help builder.
|
|
||||||
htmlhelp_basename = 'Freezerdoc'
|
|
||||||
|
|
||||||
|
|
||||||
# -- Options for LaTeX output ---------------------------------------------
|
|
||||||
|
|
||||||
latex_elements = {
|
|
||||||
# The paper size ('letterpaper' or 'a4paper').
|
|
||||||
#'papersize': 'letterpaper',
|
|
||||||
|
|
||||||
# The font size ('10pt', '11pt' or '12pt').
|
|
||||||
#'pointsize': '10pt',
|
|
||||||
|
|
||||||
# Additional stuff for the LaTeX preamble.
|
|
||||||
#'preamble': '',
|
|
||||||
}
|
|
||||||
|
|
||||||
# Grouping the document tree into LaTeX files. List of tuples
|
|
||||||
# (source start file, target name, title,
|
|
||||||
# author, documentclass [howto, manual, or own class]).
|
|
||||||
latex_documents = [
|
|
||||||
('index', 'Freezer.tex', u'Freezer Documentation',
|
|
||||||
u'OpenStack', 'manual'),
|
|
||||||
]
|
|
||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top of
|
|
||||||
# the title page.
|
|
||||||
#latex_logo = None
|
|
||||||
|
|
||||||
# For "manual" documents, if this is true, then toplevel headings are parts,
|
|
||||||
# not chapters.
|
|
||||||
#latex_use_parts = False
|
|
||||||
|
|
||||||
# If true, show page references after internal links.
|
|
||||||
#latex_show_pagerefs = False
|
|
||||||
|
|
||||||
# If true, show URL addresses after external links.
|
|
||||||
#latex_show_urls = False
|
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
|
||||||
#latex_appendices = []
|
|
||||||
|
|
||||||
# If false, no module index is generated.
|
|
||||||
#latex_domain_indices = True
|
|
||||||
|
|
||||||
|
|
||||||
# -- Options for manual page output ---------------------------------------
|
|
||||||
|
|
||||||
# One entry per manual page. List of tuples
|
|
||||||
# (source start file, name, description, authors, manual section).
|
|
||||||
man_pages = [
|
man_pages = [
|
||||||
('index', 'freezer', u'Freezer Documentation',
|
('man/freezer-manage', 'freezer-manage', u'Cloud controller fabric',
|
||||||
[u'OpenStack'], 1)
|
[u'OpenStack'], 1)
|
||||||
]
|
]
|
||||||
|
|
||||||
# If true, show URL addresses after external links.
|
# -- Options for HTML output --------------------------------------------------
|
||||||
#man_show_urls = False
|
|
||||||
|
|
||||||
|
# The theme to use for HTML and HTML Help pages. Major themes that come with
|
||||||
|
# Sphinx are currently 'default' and 'sphinxdoc'.
|
||||||
|
# html_theme_path = ["."]
|
||||||
|
html_theme = 'openstackdocs'
|
||||||
|
|
||||||
# -- Options for Texinfo output -------------------------------------------
|
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
||||||
|
# using the given strftime format.
|
||||||
|
html_last_updated_fmt = '%Y-%m-%d %H:%M'
|
||||||
|
|
||||||
# Grouping the document tree into Texinfo files. List of tuples
|
|
||||||
# (source start file, target name, title, author,
|
|
||||||
# dir menu entry, description, category)
|
|
||||||
texinfo_documents = [
|
|
||||||
('index', 'Freezer', u'Freezer Documentation',
|
|
||||||
u'OpenStack', 'Freezer', 'One line description of project.',
|
|
||||||
'Miscellaneous'),
|
|
||||||
]
|
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
|
||||||
#texinfo_appendices = []
|
|
||||||
|
|
||||||
# If false, no module index is generated.
|
|
||||||
#texinfo_domain_indices = True
|
|
||||||
|
|
||||||
# How to display URL addresses: 'footnote', 'no', or 'inline'.
|
|
||||||
#texinfo_show_urls = 'footnote'
|
|
||||||
|
|
||||||
# If true, do not generate a @detailmenu in the "Top" node's menu.
|
|
||||||
#texinfo_no_detailmenu = False
|
|
||||||
|
|
||||||
|
|
||||||
# Example configuration for intersphinx: refer to the Python standard library.
|
|
||||||
#intersphinx_mapping = {'http://docs.python.org/': None}
|
|
||||||
|
4
doc/source/contributor/index.rst
Normal file
4
doc/source/contributor/index.rst
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Developer Guide
|
||||||
|
===============
|
||||||
|
|
||||||
|
TBD
|
@ -1,2 +0,0 @@
|
|||||||
Developer Guide
|
|
||||||
===============
|
|
@ -6,6 +6,36 @@
|
|||||||
Welcome to Freezer's documentation!
|
Welcome to Freezer's documentation!
|
||||||
===================================
|
===================================
|
||||||
|
|
||||||
|
Install Guides
|
||||||
|
-----------
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
|
install/index
|
||||||
|
|
||||||
|
|
||||||
|
User Guides
|
||||||
|
-----------
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
|
user/index
|
||||||
|
|
||||||
|
Admin Guides
|
||||||
|
------------
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
|
admin/index
|
||||||
|
|
||||||
|
Dev Guides
|
||||||
|
----------
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
|
contributor/index
|
||||||
|
|
||||||
|
|
||||||
About Freezer
|
About Freezer
|
||||||
=============
|
=============
|
||||||
|
|
||||||
@ -196,26 +226,3 @@ How to Scale
|
|||||||
.. image:: images/admin/freezer_scheduler_api_scale.png
|
.. image:: images/admin/freezer_scheduler_api_scale.png
|
||||||
:width: 640 px
|
:width: 640 px
|
||||||
|
|
||||||
Documentation
|
|
||||||
=============
|
|
||||||
|
|
||||||
User Guides
|
|
||||||
-----------
|
|
||||||
.. toctree::
|
|
||||||
:maxdepth: 2
|
|
||||||
|
|
||||||
user/index
|
|
||||||
|
|
||||||
Admin Guides
|
|
||||||
------------
|
|
||||||
.. toctree::
|
|
||||||
:maxdepth: 2
|
|
||||||
|
|
||||||
admin/index
|
|
||||||
|
|
||||||
Dev Guides
|
|
||||||
----------
|
|
||||||
.. toctree::
|
|
||||||
:maxdepth: 2
|
|
||||||
|
|
||||||
dev/index
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.. _actions:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Actions
|
Actions
|
||||||
=======
|
=======
|
@ -1,4 +1,4 @@
|
|||||||
.. _api_documents:
|
:ref:`/install/source`
|
||||||
|
|
||||||
API Documents
|
API Documents
|
||||||
=============
|
=============
|
@ -1,4 +1,4 @@
|
|||||||
.. _api_routes:
|
:ref:`/install/source`
|
||||||
|
|
||||||
API routes
|
API routes
|
||||||
==========
|
==========
|
@ -1,4 +1,4 @@
|
|||||||
.. _client_structure:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Freezer Client document structure
|
Freezer Client document structure
|
||||||
=================================
|
=================================
|
@ -1,4 +1,4 @@
|
|||||||
.. _db-install:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Install and configure database
|
Install and configure database
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
@ -1,4 +1,4 @@
|
|||||||
.. _devstack_plugin:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Devstack Plugin
|
Devstack Plugin
|
||||||
===============
|
===============
|
@ -1,4 +1,3 @@
|
|||||||
======================================
|
|
||||||
Backup/Restore and DR service overview
|
Backup/Restore and DR service overview
|
||||||
======================================
|
======================================
|
||||||
The Backup/Restore and DR service provides an easy way to backup and restore
|
The Backup/Restore and DR service provides an easy way to backup and restore
|
@ -1,4 +1,3 @@
|
|||||||
=============================
|
|
||||||
Backup/Restore and DR service
|
Backup/Restore and DR service
|
||||||
=============================
|
=============================
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
.. _install-obs:
|
:ref:`/install/source`
|
||||||
|
|
||||||
|
|
||||||
Install and configure for openSUSE and SUSE Linux Enterprise
|
Install and configure for openSUSE and SUSE Linux Enterprise
|
@ -1,4 +1,4 @@
|
|||||||
.. _install-rdo:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Install and configure for Red Hat Enterprise Linux and CentOS
|
Install and configure for Red Hat Enterprise Linux and CentOS
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
@ -1,4 +1,4 @@
|
|||||||
.. _install-ubuntu:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Install and configure for Ubuntu
|
Install and configure for Ubuntu
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
@ -1,4 +1,4 @@
|
|||||||
.. _install:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Install and configure
|
Install and configure
|
||||||
~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~
|
@ -1,4 +1,4 @@
|
|||||||
.. _install_agent:
|
:ref:`/install/source`
|
||||||
|
|
||||||
This section describes how to install and configure freezer-scheduler and
|
This section describes how to install and configure freezer-scheduler and
|
||||||
freezer-agent, on any node in the cloud or any vm inside the cloud.
|
freezer-agent, on any node in the cloud or any vm inside the cloud.
|
@ -1,4 +1,4 @@
|
|||||||
.. _jobs:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Jobs
|
Jobs
|
||||||
====
|
====
|
@ -1,4 +1,4 @@
|
|||||||
.. _known_issues:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Known Issues
|
Known Issues
|
||||||
============
|
============
|
@ -1,4 +1,4 @@
|
|||||||
.. _metadata_structure:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Backup metadata structure
|
Backup metadata structure
|
||||||
=========================
|
=========================
|
@ -1,4 +1,4 @@
|
|||||||
.. _next-steps:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Next steps
|
Next steps
|
||||||
~~~~~~~~~~
|
~~~~~~~~~~
|
@ -1,4 +1,4 @@
|
|||||||
.. _sessions:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Sessions
|
Sessions
|
||||||
========
|
========
|
@ -1,4 +1,4 @@
|
|||||||
.. _verify:
|
:ref:`/install/source`
|
||||||
|
|
||||||
Verify operation
|
Verify operation
|
||||||
~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~
|
@ -6,20 +6,16 @@
|
|||||||
|
|
||||||
# If set to true, the logging level will be set to DEBUG instead of the default
|
# If set to true, the logging level will be set to DEBUG instead of the default
|
||||||
# INFO level. (boolean value)
|
# INFO level. (boolean value)
|
||||||
|
# Note: This option can be changed without restarting.
|
||||||
#debug = false
|
#debug = false
|
||||||
|
|
||||||
# If set to false, the logging level will be set to WARNING instead of the
|
|
||||||
# default INFO level. (boolean value)
|
|
||||||
# This option is deprecated for removal.
|
|
||||||
# Its value may be silently ignored in the future.
|
|
||||||
#verbose = true
|
|
||||||
|
|
||||||
# The name of a logging configuration file. This file is appended to any
|
# The name of a logging configuration file. This file is appended to any
|
||||||
# existing logging configuration files. For details about logging configuration
|
# existing logging configuration files. For details about logging configuration
|
||||||
# files, see the Python logging module documentation. Note that when logging
|
# files, see the Python logging module documentation. Note that when logging
|
||||||
# configuration files are used all logging configuration is defined in the
|
# configuration files are used then all logging configuration is set in the
|
||||||
# configuration file and other logging configuration options are ignored.
|
# configuration file and other logging configuration options are ignored (for
|
||||||
# (string value)
|
# example, logging_context_format_string). (string value)
|
||||||
|
# Note: This option can be changed without restarting.
|
||||||
# Deprecated group/name - [DEFAULT]/log_config
|
# Deprecated group/name - [DEFAULT]/log_config
|
||||||
#log_config_append = <None>
|
#log_config_append = <None>
|
||||||
|
|
||||||
@ -46,18 +42,24 @@
|
|||||||
# (boolean value)
|
# (boolean value)
|
||||||
#watch_log_file = false
|
#watch_log_file = false
|
||||||
|
|
||||||
# Use syslog for logging. Previous syslog format (without APP-NAME being
|
# Use syslog for logging. Existing syslog format is DEPRECATED and will be
|
||||||
# specified in log messages) is DEPRECATED and format will now honor RFC5424.
|
# changed later to honor RFC5424. This option is ignored if log_config_append
|
||||||
# This option is ignored if log_config_append is set. (boolean value)
|
# is set. (boolean value)
|
||||||
#use_syslog = false
|
#use_syslog = false
|
||||||
|
|
||||||
|
# Enable journald for logging. If running in a systemd environment you may wish
|
||||||
|
# to enable journal support. Doing so will use the journal native protocol
|
||||||
|
# which includes structured metadata in addition to log messages.This option is
|
||||||
|
# ignored if log_config_append is set. (boolean value)
|
||||||
|
#use_journal = false
|
||||||
|
|
||||||
# Syslog facility to receive log lines. This option is ignored if
|
# Syslog facility to receive log lines. This option is ignored if
|
||||||
# log_config_append is set. (string value)
|
# log_config_append is set. (string value)
|
||||||
#syslog_log_facility = LOG_USER
|
#syslog_log_facility = LOG_USER
|
||||||
|
|
||||||
# Log output to standard error. This option is ignored if log_config_append is
|
# Log output to standard error. This option is ignored if log_config_append is
|
||||||
# set. (boolean value)
|
# set. (boolean value)
|
||||||
#use_stderr = true
|
#use_stderr = false
|
||||||
|
|
||||||
# Format string to use for log messages with context. (string value)
|
# Format string to use for log messages with context. (string value)
|
||||||
#logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
|
#logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
|
||||||
@ -79,7 +81,7 @@
|
|||||||
|
|
||||||
# List of package logging levels in logger=LEVEL pairs. This option is ignored
|
# List of package logging levels in logger=LEVEL pairs. This option is ignored
|
||||||
# if log_config_append is set. (list value)
|
# if log_config_append is set. (list value)
|
||||||
#default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN,taskflow=WARN,keystoneauth=WARN,oslo.cache=INFO,dogpile.core.dogpile=INFO
|
#default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,oslo_messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN,taskflow=WARN,keystoneauth=WARN,oslo.cache=INFO,dogpile.core.dogpile=INFO
|
||||||
|
|
||||||
# Enables or disables publication of error events. (boolean value)
|
# Enables or disables publication of error events. (boolean value)
|
||||||
#publish_errors = false
|
#publish_errors = false
|
||||||
@ -92,6 +94,18 @@
|
|||||||
# value)
|
# value)
|
||||||
#instance_uuid_format = "[instance: %(uuid)s] "
|
#instance_uuid_format = "[instance: %(uuid)s] "
|
||||||
|
|
||||||
|
# Interval, number of seconds, of log rate limiting. (integer value)
|
||||||
|
#rate_limit_interval = 0
|
||||||
|
|
||||||
|
# Maximum number of logged messages per rate_limit_interval. (integer value)
|
||||||
|
#rate_limit_burst = 0
|
||||||
|
|
||||||
|
# Log level name used by rate limiting: CRITICAL, ERROR, INFO, WARNING, DEBUG
|
||||||
|
# or empty string. Logs with level greater or equal to rate_limit_except_level
|
||||||
|
# are not filtered. An empty string means that all levels are filtered. (string
|
||||||
|
# value)
|
||||||
|
#rate_limit_except_level = CRITICAL
|
||||||
|
|
||||||
# Enables or disables fatal status of deprecations. (boolean value)
|
# Enables or disables fatal status of deprecations. (boolean value)
|
||||||
#fatal_deprecations = false
|
#fatal_deprecations = false
|
||||||
|
|
||||||
@ -101,14 +115,14 @@
|
|||||||
|
|
||||||
# Specifies the client_id used when contacting the service.
|
# Specifies the client_id used when contacting the service.
|
||||||
# If not specified it will be automatically created
|
# If not specified it will be automatically created
|
||||||
# using the tenant-id and the machine hostname. (string value)
|
# using the tenant-id and the machine hostname. (string value)
|
||||||
#client_id = <None>
|
#client_id = <None>
|
||||||
|
|
||||||
# Prevents the scheduler from using the api service (boolean value)
|
# Prevents the scheduler from using the api service (boolean value)
|
||||||
#no_api = false
|
#no_api = false
|
||||||
|
|
||||||
# Used to store/retrieve files on local storage, including those exchanged with
|
# Used to store/retrieve files on local storage, including those exchanged with
|
||||||
# the api service.Default value is /etc/freezer/scheduler/conf.d (Env:
|
# the api service. Default value is /etc/freezer/scheduler/conf.d (Env:
|
||||||
# FREEZER_SCHEDULER_CONF_D) (string value)
|
# FREEZER_SCHEDULER_CONF_D) (string value)
|
||||||
#jobs_dir = /etc/freezer/scheduler/conf.d
|
#jobs_dir = /etc/freezer/scheduler/conf.d
|
||||||
|
|
||||||
@ -122,8 +136,9 @@
|
|||||||
# Initialize freezer scheduler with insecure mode (boolean value)
|
# Initialize freezer scheduler with insecure mode (boolean value)
|
||||||
#insecure = false
|
#insecure = false
|
||||||
|
|
||||||
# Number of jobs that can be executed at the same time. (integer value)
|
# Allow Freezer Scheduler to deny jobs that execute commands for security
|
||||||
# By default only one job is allowed at a given time because there is no
|
# reasons (boolean value)
|
||||||
# built-in protection to prevent backup and restore to be done at the same time
|
#disable_exec = false
|
||||||
# on one resource.
|
|
||||||
|
# Number of jobs that can be executed at the same time (integer value)
|
||||||
#concurrent_jobs = 1
|
#concurrent_jobs = 1
|
||||||
|
@ -18,3 +18,4 @@ import pbr.version
|
|||||||
|
|
||||||
|
|
||||||
__version__ = pbr.version.VersionInfo('freezer').version_string()
|
__version__ = pbr.version.VersionInfo('freezer').version_string()
|
||||||
|
version_info = pbr.version.VersionInfo('freezer')
|
||||||
|
@ -1,301 +0,0 @@
|
|||||||
# 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.
|
|
||||||
|
|
||||||
# This file is execfile()d with the current directory set to its
|
|
||||||
# containing dir.
|
|
||||||
#
|
|
||||||
# Note that not all possible configuration values are present in this
|
|
||||||
# autogenerated file.
|
|
||||||
#
|
|
||||||
# All configuration values have a default; values that are commented out
|
|
||||||
# serve to show the default.
|
|
||||||
|
|
||||||
import os
|
|
||||||
# import sys
|
|
||||||
|
|
||||||
|
|
||||||
import openstackdocstheme
|
|
||||||
|
|
||||||
# If extensions (or modules to document with autodoc) are in another directory,
|
|
||||||
# add these directories to sys.path here. If the directory is relative to the
|
|
||||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
|
||||||
# sys.path.insert(0, os.path.abspath('.'))
|
|
||||||
|
|
||||||
# -- General configuration ------------------------------------------------
|
|
||||||
|
|
||||||
# If your documentation needs a minimal Sphinx version, state it here.
|
|
||||||
# needs_sphinx = '1.0'
|
|
||||||
|
|
||||||
# Add any Sphinx extension module names here, as strings. They can be
|
|
||||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
||||||
# ones.
|
|
||||||
# TODO(ajaeger): enable PDF building, for example add 'rst2pdf.pdfbuilder'
|
|
||||||
# extensions =
|
|
||||||
|
|
||||||
# Add any paths that contain templates here, relative to this directory.
|
|
||||||
# templates_path = ['_templates']
|
|
||||||
|
|
||||||
# The suffix of source filenames.
|
|
||||||
source_suffix = '.rst'
|
|
||||||
|
|
||||||
# The encoding of source files.
|
|
||||||
# source_encoding = 'utf-8-sig'
|
|
||||||
|
|
||||||
# The master toctree document.
|
|
||||||
master_doc = 'index'
|
|
||||||
|
|
||||||
# General information about the project.
|
|
||||||
project = u'Installation Guide for Backup Service'
|
|
||||||
bug_tag = u'install-guide'
|
|
||||||
copyright = u'2016, OpenStack contributors'
|
|
||||||
|
|
||||||
# The version info for the project you're documenting, acts as replacement for
|
|
||||||
# |version| and |release|, also used in various other places throughout the
|
|
||||||
# built documents.
|
|
||||||
#
|
|
||||||
# The short X.Y version.
|
|
||||||
version = '0.1'
|
|
||||||
# The full version, including alpha/beta/rc tags.
|
|
||||||
release = '0.1'
|
|
||||||
|
|
||||||
# A few variables have to be set for the log-a-bug feature.
|
|
||||||
# giturl: The location of conf.py on Git. Must be set manually.
|
|
||||||
# gitsha: The SHA checksum of the bug description. Automatically extracted
|
|
||||||
# from git log.
|
|
||||||
# bug_tag: Tag for categorizing the bug. Must be set manually.
|
|
||||||
# These variables are passed to the logabug code via html_context.
|
|
||||||
giturl = u'http://git.openstack.org/cgit/openstack/freezer-api/tree/install-guide/source' # noqa
|
|
||||||
git_cmd = "/usr/bin/git log | head -n1 | cut -f2 -d' '"
|
|
||||||
gitsha = os.popen(git_cmd).read().strip('\n')
|
|
||||||
html_context = {"gitsha": gitsha, "bug_tag": bug_tag,
|
|
||||||
"giturl": giturl,
|
|
||||||
"bug_project": "freezer-api"}
|
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
||||||
# for a list of supported languages.
|
|
||||||
# language = None
|
|
||||||
|
|
||||||
# There are two options for replacing |today|: either, you set today to some
|
|
||||||
# non-false value, then it is used:
|
|
||||||
# today = ''
|
|
||||||
# Else, today_fmt is used as the format for a strftime call.
|
|
||||||
# today_fmt = '%B %d, %Y'
|
|
||||||
|
|
||||||
# List of patterns, relative to source directory, that match files and
|
|
||||||
# directories to ignore when looking for source files.
|
|
||||||
exclude_patterns = ["common_prerequisites.rst", "common_configure.rst"]
|
|
||||||
|
|
||||||
# The reST default role (used for this markup: `text`) to use for all
|
|
||||||
# documents.
|
|
||||||
# default_role = None
|
|
||||||
|
|
||||||
# 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
|
|
||||||
|
|
||||||
# If true, sectionauthor and moduleauthor directives will be shown in the
|
|
||||||
# output. They are ignored by default.
|
|
||||||
# show_authors = False
|
|
||||||
|
|
||||||
# The name of the Pygments (syntax highlighting) style to use.
|
|
||||||
pygments_style = 'sphinx'
|
|
||||||
|
|
||||||
# A list of ignored prefixes for module index sorting.
|
|
||||||
# modindex_common_prefix = []
|
|
||||||
|
|
||||||
# If true, keep warnings as "system message" paragraphs in the built documents.
|
|
||||||
# keep_warnings = False
|
|
||||||
|
|
||||||
|
|
||||||
# -- Options for HTML output ----------------------------------------------
|
|
||||||
|
|
||||||
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
||||||
# a list of builtin themes.
|
|
||||||
html_theme = 'openstackdocs'
|
|
||||||
|
|
||||||
# Theme options are theme-specific and customize the look and feel of a theme
|
|
||||||
# further. For a list of options available for each theme, see the
|
|
||||||
# documentation.
|
|
||||||
# html_theme_options = {}
|
|
||||||
|
|
||||||
# Add any paths that contain custom themes here, relative to this directory.
|
|
||||||
html_theme_path = [openstackdocstheme.get_html_theme_path()]
|
|
||||||
|
|
||||||
# The name for this set of Sphinx documents. If None, it defaults to
|
|
||||||
# "<project> v<release> documentation".
|
|
||||||
# html_title = None
|
|
||||||
|
|
||||||
# A shorter title for the navigation bar. Default is the same as html_title.
|
|
||||||
# html_short_title = None
|
|
||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top
|
|
||||||
# of the sidebar.
|
|
||||||
# html_logo = None
|
|
||||||
|
|
||||||
# The name of an image file (within the static path) to use as favicon of the
|
|
||||||
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
|
||||||
# pixels large.
|
|
||||||
# html_favicon = None
|
|
||||||
|
|
||||||
# Add any paths that contain custom static files (such as style sheets) here,
|
|
||||||
# relative to this directory. They are copied after the builtin static files,
|
|
||||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
|
||||||
# html_static_path = []
|
|
||||||
|
|
||||||
# Add any extra paths that contain custom files (such as robots.txt or
|
|
||||||
# .htaccess) here, relative to this directory. These files are copied
|
|
||||||
# directly to the root of the documentation.
|
|
||||||
# html_extra_path = []
|
|
||||||
|
|
||||||
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
|
||||||
# using the given strftime format.
|
|
||||||
# So that we can enable "log-a-bug" links from each output HTML page, this
|
|
||||||
# variable must be set to a format that includes year, month, day, hours and
|
|
||||||
# minutes.
|
|
||||||
html_last_updated_fmt = '%Y-%m-%d %H:%M'
|
|
||||||
|
|
||||||
|
|
||||||
# If true, SmartyPants will be used to convert quotes and dashes to
|
|
||||||
# typographically correct entities.
|
|
||||||
# html_use_smartypants = True
|
|
||||||
|
|
||||||
# Custom sidebar templates, maps document names to template names.
|
|
||||||
# html_sidebars = {}
|
|
||||||
|
|
||||||
# Additional templates that should be rendered to pages, maps page names to
|
|
||||||
# template names.
|
|
||||||
# html_additional_pages = {}
|
|
||||||
|
|
||||||
# If false, no module index is generated.
|
|
||||||
# html_domain_indices = True
|
|
||||||
|
|
||||||
# If false, no index is generated.
|
|
||||||
html_use_index = False
|
|
||||||
|
|
||||||
# If true, the index is split into individual pages for each letter.
|
|
||||||
# html_split_index = False
|
|
||||||
|
|
||||||
# If true, links to the reST sources are added to the pages.
|
|
||||||
html_show_sourcelink = False
|
|
||||||
|
|
||||||
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
|
||||||
# html_show_sphinx = True
|
|
||||||
|
|
||||||
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
|
||||||
# html_show_copyright = True
|
|
||||||
|
|
||||||
# If true, an OpenSearch description file will be output, and all pages will
|
|
||||||
# contain a <link> tag referring to it. The value of this option must be the
|
|
||||||
# base URL from which the finished HTML is served.
|
|
||||||
# html_use_opensearch = ''
|
|
||||||
|
|
||||||
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
|
||||||
# html_file_suffix = None
|
|
||||||
|
|
||||||
# Output file base name for HTML help builder.
|
|
||||||
htmlhelp_basename = 'install-guide'
|
|
||||||
|
|
||||||
# If true, publish source files
|
|
||||||
html_copy_source = False
|
|
||||||
|
|
||||||
# -- Options for LaTeX output ---------------------------------------------
|
|
||||||
|
|
||||||
latex_elements = {
|
|
||||||
# The paper size ('letterpaper' or 'a4paper').
|
|
||||||
# 'papersize': 'letterpaper',
|
|
||||||
|
|
||||||
# The font size ('10pt', '11pt' or '12pt').
|
|
||||||
# 'pointsize': '10pt',
|
|
||||||
|
|
||||||
# Additional stuff for the LaTeX preamble.
|
|
||||||
# 'preamble': '',
|
|
||||||
}
|
|
||||||
|
|
||||||
# Grouping the document tree into LaTeX files. List of tuples
|
|
||||||
# (source start file, target name, title,
|
|
||||||
# author, documentclass [howto, manual, or own class]).
|
|
||||||
latex_documents = [
|
|
||||||
('index', 'InstallGuide.tex', u'Install Guide',
|
|
||||||
u'OpenStack contributors', 'manual'),
|
|
||||||
]
|
|
||||||
|
|
||||||
# The name of an image file (relative to this directory) to place at the top of
|
|
||||||
# the title page.
|
|
||||||
# latex_logo = None
|
|
||||||
|
|
||||||
# For "manual" documents, if this is true, then toplevel headings are parts,
|
|
||||||
# not chapters.
|
|
||||||
# latex_use_parts = False
|
|
||||||
|
|
||||||
# If true, show page references after internal links.
|
|
||||||
# latex_show_pagerefs = False
|
|
||||||
|
|
||||||
# If true, show URL addresses after external links.
|
|
||||||
# latex_show_urls = False
|
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
|
||||||
# latex_appendices = []
|
|
||||||
|
|
||||||
# If false, no module index is generated.
|
|
||||||
# latex_domain_indices = True
|
|
||||||
|
|
||||||
|
|
||||||
# -- Options for manual page output ---------------------------------------
|
|
||||||
|
|
||||||
# One entry per manual page. List of tuples
|
|
||||||
# (source start file, name, description, authors, manual section).
|
|
||||||
man_pages = [
|
|
||||||
('index', 'installguide', u'Install Guide',
|
|
||||||
[u'OpenStack contributors'], 1)
|
|
||||||
]
|
|
||||||
|
|
||||||
# If true, show URL addresses after external links.
|
|
||||||
# man_show_urls = False
|
|
||||||
|
|
||||||
|
|
||||||
# -- Options for Texinfo output -------------------------------------------
|
|
||||||
|
|
||||||
# Grouping the document tree into Texinfo files. List of tuples
|
|
||||||
# (source start file, target name, title, author,
|
|
||||||
# dir menu entry, description, category)
|
|
||||||
texinfo_documents = [
|
|
||||||
('index', 'InstallGuide', u'Install Guide',
|
|
||||||
u'OpenStack contributors', 'InstallGuide',
|
|
||||||
'This guide shows OpenStack end users how to install '
|
|
||||||
'an OpenStack cloud.', 'Miscellaneous'),
|
|
||||||
]
|
|
||||||
|
|
||||||
# Documents to append as an appendix to all manuals.
|
|
||||||
# texinfo_appendices = []
|
|
||||||
|
|
||||||
# If false, no module index is generated.
|
|
||||||
# texinfo_domain_indices = True
|
|
||||||
|
|
||||||
# How to display URL addresses: 'footnote', 'no', or 'inline'.
|
|
||||||
# texinfo_show_urls = 'footnote'
|
|
||||||
|
|
||||||
# If true, do not generate a @detailmenu in the "Top" node's menu.
|
|
||||||
# texinfo_no_detailmenu = False
|
|
||||||
|
|
||||||
# -- Options for Internationalization output ------------------------------
|
|
||||||
locale_dirs = ['locale/']
|
|
||||||
|
|
||||||
# -- Options for PDF output --------------------------------------------------
|
|
||||||
|
|
||||||
pdf_documents = [
|
|
||||||
('index', u'InstallGuide', u'Install Guide',
|
|
||||||
u'OpenStack contributors')
|
|
||||||
]
|
|
10
tox.ini
10
tox.ini
@ -61,8 +61,9 @@ commands =
|
|||||||
whitelist_externals = rm
|
whitelist_externals = rm
|
||||||
bash
|
bash
|
||||||
commands =
|
commands =
|
||||||
|
rm -rf doc/build/
|
||||||
python setup.py build_sphinx
|
python setup.py build_sphinx
|
||||||
sphinx-build -a -E -W -d install-guide/build/doctrees -b html install-guide/source install-guide/build/html
|
|
||||||
|
|
||||||
[testenv:pep8]
|
[testenv:pep8]
|
||||||
commands = flake8 freezer
|
commands = flake8 freezer
|
||||||
@ -76,12 +77,5 @@ show-source = True
|
|||||||
enable-extensions = H203,H106
|
enable-extensions = H203,H106
|
||||||
exclude = .venv,.tox,dist,doc,test,*egg,releasenotes
|
exclude = .venv,.tox,dist,doc,test,*egg,releasenotes
|
||||||
|
|
||||||
[testenv:install-guide]
|
|
||||||
whitelist_externals = rm
|
|
||||||
bash
|
|
||||||
commands =
|
|
||||||
rm -rf install-guide/build/
|
|
||||||
sphinx-build -a -E -W -d install-guide/build/doctrees -b html install-guide/source install-guide/build/html
|
|
||||||
|
|
||||||
[testenv:releasenotes]
|
[testenv:releasenotes]
|
||||||
commands = sphinx-build -a -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
commands = sphinx-build -a -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
||||||
|
Loading…
Reference in New Issue
Block a user