Copyright and other information correctness

This patch adds correct information about the project and project copyright.

Change-Id: I8fb7eec4e5fb96d73778bd84fd646b21f6673377
This commit is contained in:
raiesmh08 2017-02-07 00:24:59 +05:30 committed by Mh Raies
parent 7511b36e7a
commit a6348e1e76
3 changed files with 14 additions and 13 deletions

View File

@ -38,7 +38,7 @@ master_doc = 'index'
# General information about the project.
project = u'patrole'
copyright = u'2016, OpenStack Foundation'
copyright = u'2017, Patrole Developers'
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True
@ -68,7 +68,7 @@ latex_documents = [
('index',
'%s.tex' % project,
u'%s Documentation' % project,
u'OpenStack Foundation', 'manual'),
u'Patrole Developers', 'manual'),
]
# Example configuration for intersphinx: refer to the Python standard library.

View File

@ -1,4 +1,4 @@
# Copyright 2016 AT&T Corp
# Copyright 2017 AT&T Corporation.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may

View File

@ -12,8 +12,8 @@
# 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.
# Patrole Release Notes documentation build configuration file, created by
# sphinx-quickstart on Tue Jan 5 17:40:50 2017.
#
# This file is execfile()d with the current directory set to its
# containing dir.
@ -56,7 +56,7 @@ master_doc = 'index'
# General information about the project.
project = u'patrole Release Notes'
copyright = u'2016, OpenStack Foundation'
copyright = u'2017, Patrole Developers'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@ -189,7 +189,7 @@ html_static_path = ['_static']
# html_file_suffix = None
# Output file base name for HTML help builder.
htmlhelp_basename = 'GlanceReleaseNotesdoc'
htmlhelp_basename = 'PatroleReleaseNotesdoc'
# -- Options for LaTeX output ---------------------------------------------
@ -209,8 +209,9 @@ 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', 'PatroleReleaseNotes.tex',
u'Patrole Release Notes Documentation',
u'Patrole Developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -239,8 +240,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', 'patrolereleasenotes', u'Patrole Release Notes Documentation',
[u'Patrole Developers'], 1)
]
# If true, show URL addresses after external links.
@ -253,8 +254,8 @@ 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', 'PatroleReleaseNotes', u'Patrole Release Notes Documentation',
u'Patrole Developers', 'PatroleReleaseNotes',
'One line description of project.',
'Miscellaneous'),
]