Update and add listener stats release notes

Adds a release note for the listener stats feature and updates the release
notes theme to the new openstackdocs theme.

Change-Id: Ia1ba31176b4c84fe7f09d7bdc62f20412875c709
This commit is contained in:
Michael Johnson 2018-01-18 09:18:24 -08:00
parent a62772d87b
commit e3d14a16f2
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', '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. # Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates'] templates_path = ['_templates']
@ -111,7 +116,7 @@ pygments_style = 'sphinx'
# The theme to use for HTML and HTML Help pages. See the documentation for # The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes. # 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 # 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 # 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, # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format. # 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 # If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities. # typographically correct entities.
@ -189,7 +194,7 @@ html_static_path = ['_static']
# html_file_suffix = None # html_file_suffix = None
# Output file base name for HTML help builder. # Output file base name for HTML help builder.
htmlhelp_basename = 'GlanceReleaseNotesdoc' htmlhelp_basename = 'PythonOctaviaClientReleaseNotesdoc'
# -- Options for LaTeX output --------------------------------------------- # -- Options for LaTeX output ---------------------------------------------
@ -209,8 +214,9 @@ latex_elements = {
# (source start file, target name, title, # (source start file, target name, title,
# documentclass [howto, manual, or own class]). # documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'GlanceReleaseNotes.tex', u'Glance Release Notes Documentation', ('index', 'PythonOctaviaClientReleaseNotes.tex',
u'Glance Developers', 'manual'), 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 # 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 # One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'glancereleasenotes', u'Glance Release Notes Documentation', ('index',
[u'Glance Developers'], 1) 'pythonoctaviaclientreleasenotes',
u'python-octaviaclient Release Notes Documentation',
[u'Octavia Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -253,9 +261,11 @@ man_pages = [
# (source start file, target name, title, author, # (source start file, target name, title, author,
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'GlanceReleaseNotes', u'Glance Release Notes Documentation', ('index',
u'Glance Developers', 'GlanceReleaseNotes', 'PythonOctaviaClientReleaseNotes',
'One line description of project.', u'python-octaviaclient Release Notes Documentation',
u'Octavia Developers', 'PythonOctaviaClientReleaseNotes',
'OpenStack client plugin for Octavia.',
'Miscellaneous'), 'Miscellaneous'),
] ]