Merge "Update and add listener stats release notes"

This commit is contained in:
Zuul 2018-01-18 17:57:42 +00:00 committed by Gerrit Code Review
commit 830e49fb05
2 changed files with 24 additions and 10 deletions

View File

@ -0,0 +1,4 @@
---
features:
- |
Adds support for querying the listener statistics.

View File

@ -42,6 +42,11 @@ extensions = [
'reno.sphinxext',
]
# openstackdocstheme options
repository_name = 'openstack/python-octaviaclient'
bug_project = 'octavia'
bug_tag = 'doc'
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
@ -111,7 +116,7 @@ pygments_style = 'sphinx'
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'default'
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
@ -149,7 +154,7 @@ html_static_path = ['_static']
# 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'
html_last_updated_fmt = '%Y-%m-%d %H:%M'
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
@ -189,7 +194,7 @@ html_static_path = ['_static']
# html_file_suffix = None
# Output file base name for HTML help builder.
htmlhelp_basename = 'GlanceReleaseNotesdoc'
htmlhelp_basename = 'PythonOctaviaClientReleaseNotesdoc'
# -- Options for LaTeX output ---------------------------------------------
@ -209,8 +214,9 @@ latex_elements = {
# (source start file, target name, title,
# documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'GlanceReleaseNotes.tex', u'Glance Release Notes Documentation',
u'Glance Developers', 'manual'),
('index', 'PythonOctaviaClientReleaseNotes.tex',
u'python-octaviaclient Release Notes Documentation',
u'Octavia Developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -239,8 +245,10 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'glancereleasenotes', u'Glance Release Notes Documentation',
[u'Glance Developers'], 1)
('index',
'pythonoctaviaclientreleasenotes',
u'python-octaviaclient Release Notes Documentation',
[u'Octavia Developers'], 1)
]
# If true, show URL addresses after external links.
@ -253,9 +261,11 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'GlanceReleaseNotes', u'Glance Release Notes Documentation',
u'Glance Developers', 'GlanceReleaseNotes',
'One line description of project.',
('index',
'PythonOctaviaClientReleaseNotes',
u'python-octaviaclient Release Notes Documentation',
u'Octavia Developers', 'PythonOctaviaClientReleaseNotes',
'OpenStack client plugin for Octavia.',
'Miscellaneous'),
]