update releasenotes conf.py

Remove glance, replace with module name.

Change-Id: Ifbb110b5c0df59374b629e919d4d5d09dcb0fc34
This commit is contained in:
Andreas Jaeger 2017-07-02 10:51:23 +02:00
parent b52e5f2f14
commit 622da75739
1 changed files with 8 additions and 10 deletions

View File

@ -12,9 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Glance Release Notes documentation build configuration file, created by
# sphinx-quickstart on Tue Nov 3 17:40:50 2015.
#
# This file is execfile()d with the current directory set to its
# containing dir.
#
@ -194,7 +191,7 @@ html_static_path = ['_static']
# html_file_suffix = None
# Output file base name for HTML help builder.
htmlhelp_basename = 'GlanceReleaseNotesdoc'
htmlhelp_basename = '{{cookiecutter.module_name}}ReleaseNotesdoc'
# -- Options for LaTeX output ---------------------------------------------
@ -214,8 +211,8 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'GlanceReleaseNotes.tex', u'Glance Release Notes Documentation',
u'Glance Developers', 'manual'),
('index', '{{cookiecutter.module_name}}ReleaseNotes.tex', u'{{cookiecutter.module_name}} Release Notes Documentation',
u'OpenStack Foundation', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -244,8 +241,8 @@ 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', '{{cookiecutter.module_name}}rereleasenotes', u'{{cookiecutter.module_name}} Release Notes Documentation',
[u'OpenStack Foundation'], 1)
]
# If true, show URL addresses after external links.
@ -258,8 +255,9 @@ 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',
('index', '{{cookiecutter.module_name}} ReleaseNotes',
u'{{cookiecutter.module_name}} Release Notes Documentation',
u'OpenStack Foundation', '{{cookiecutter.module_name}}ReleaseNotes',
'One line description of project.',
'Miscellaneous'),
]