Merge "Fix errors found from making a project"

This commit is contained in:
Jenkins 2017-07-14 13:06:39 +00:00 committed by Gerrit Code Review
commit 0af64c7c00
3 changed files with 10 additions and 8 deletions

View File

@ -38,10 +38,10 @@ master_doc = 'index'
# General information about the project.
project = u'{{cookiecutter.repo_name}}'
copyright = u'2017, OpenStack Foundation'
copyright = u'2017, OpenStack Developers'
# openstackdocstheme options
repository_name = '{{cookiecutter.repo_group}}/{cookiecutter.repo_name}}'
repository_name = '{{cookiecutter.repo_group}}/{{cookiecutter.repo_name}}'
bug_project = '{{cookiecutter.launchpad_project}}'
bug_tag = ''
@ -74,7 +74,7 @@ latex_documents = [
('index',
'%s.tex' % project,
u'%s Documentation' % project,
u'OpenStack Foundation', 'manual'),
u'OpenStack Developers', 'manual'),
]
# Example configuration for intersphinx: refer to the Python standard library.

View File

@ -53,10 +53,10 @@ master_doc = 'index'
# General information about the project.
project = u'{{cookiecutter.module_name}} Release Notes'
copyright = u'2016, OpenStack Foundation'
copyright = u'2017, OpenStack Developers'
# openstackdocstheme options
repository_name = '{{cookiecutter.repo_group}}/{cookiecutter.repo_name}}'
repository_name = '{{cookiecutter.repo_group}}/{{cookiecutter.repo_name}}'
bug_project = '{{cookiecutter.launchpad_project}}'
bug_tag = ''
@ -211,7 +211,8 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', '{{cookiecutter.module_name}}ReleaseNotes.tex', u'{{cookiecutter.module_name}} Release Notes Documentation',
('index', '{{cookiecutter.module_name}}ReleaseNotes.tex',
u'{{cookiecutter.module_name}} Release Notes Documentation',
u'OpenStack Foundation', 'manual'),
]
@ -241,7 +242,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', '{{cookiecutter.module_name}}rereleasenotes', u'{{cookiecutter.module_name}} Release Notes Documentation',
('index', '{{cookiecutter.module_name}}rereleasenotes',
u'{{cookiecutter.module_name}} Release Notes Documentation',
[u'OpenStack Foundation'], 1)
]

View File

@ -16,4 +16,4 @@ import pbr.version
__version__ = pbr.version.VersionInfo(
'{{cookiecutter.module_name}}').version_string()
'{{cookiecutter.repo_name}}').version_string()