Merge "Remove unnecessary unicode prefixes"

This commit is contained in:
Zuul 2022-09-05 06:21:16 +00:00 committed by Gerrit Code Review
commit 6ec76b1282
3 changed files with 20 additions and 20 deletions

View File

@ -63,7 +63,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2017-present, OpenStack Foundation' copyright = '2017-present, OpenStack Foundation'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
@ -97,7 +97,7 @@ pygments_style = 'native'
# -- Options for man page output ---------------------------------------------- # -- Options for man page output ----------------------------------------------
# Grouping the document tree for man pages. # Grouping the document tree for man pages.
# List of tuples 'sourcefile', 'target', u'title', u'Authors name', 'manual' # List of tuples 'sourcefile', 'target', 'title', 'Authors name', 'manual'
# -- Options for HTML output -------------------------------------------------- # -- Options for HTML output --------------------------------------------------
@ -183,8 +183,8 @@ htmlhelp_basename = 'octaviadoc'
# (source start file, target name, title, author, documentclass # (source start file, target name, title, author, documentclass
# [howto/manual]). # [howto/manual]).
latex_documents = [ latex_documents = [
('index', 'Octavia.tex', u'OpenStack Octavia API Documentation', ('index', 'Octavia.tex', 'OpenStack Octavia API Documentation',
u'OpenStack Foundation', 'manual'), 'OpenStack Foundation', '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

View File

@ -87,7 +87,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2014-2019, OpenStack Octavia Team' copyright = '2014-2019, OpenStack Octavia Team'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
@ -244,8 +244,8 @@ smartquotes_excludes = {'builders': ['latex']}
latex_documents = [( latex_documents = [(
'index', 'index',
'doc-octavia.tex', 'doc-octavia.tex',
u'Octavia Documentation', 'Octavia Documentation',
u'OpenStack Octavia Team', 'OpenStack Octavia Team',
'manual' 'manual'
)] )]
@ -277,8 +277,8 @@ latex_domain_indices = False
texinfo_documents = [( texinfo_documents = [(
'index', 'index',
'Octavia-specs', 'Octavia-specs',
u'Octavia Design Specs', 'Octavia Design Specs',
u'OpenStack Octavia Team', 'OpenStack Octavia Team',
'octavia-specs', 'octavia-specs',
'Design specifications for the Octavia project.', 'Design specifications for the Octavia project.',
'Miscellaneous' 'Miscellaneous'
@ -297,10 +297,10 @@ texinfo_documents = [(
# -- Options for Epub output -------------------------------------------------- # -- Options for Epub output --------------------------------------------------
# Bibliographic Dublin Core info. # Bibliographic Dublin Core info.
epub_title = u'Octavia Specs' epub_title = 'Octavia Specs'
epub_author = u'OpenStack Octavia Team' epub_author = 'OpenStack Octavia Team'
epub_publisher = u'OpenStack Octavia Team' epub_publisher = 'OpenStack Octavia Team'
epub_copyright = u'2014, OpenStack Octavia Team' epub_copyright = '2014, OpenStack Octavia Team'
# The language of the text. It defaults to the language option # The language of the text. It defaults to the language option
# or en if the language is not set. # or en if the language is not set.

View File

@ -60,7 +60,7 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
copyright = u'2015, Octavia Developers' copyright = '2015, Octavia Developers'
# Release notes are version independent. # Release notes are version independent.
# The short X.Y version. # The short X.Y version.
@ -192,8 +192,8 @@ htmlhelp_basename = 'OctaviaReleaseNotesdoc'
# documentclass [howto, manual, or own class]). # documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
('index', 'OctaviaReleaseNotes.tex', ('index', 'OctaviaReleaseNotes.tex',
u'OctaviaRelease Notes Documentation', 'OctaviaRelease Notes Documentation',
u'Octavia Developers', 'manual'), '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
@ -222,8 +222,8 @@ 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', 'octaviareleasenotes', u'Octavia Release Notes ' ('index', 'octaviareleasenotes', 'Octavia Release Notes '
'Documentation', [u'Octavia Developers'], 1) 'Documentation', ['Octavia Developers'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -236,9 +236,9 @@ 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', 'OctaviaReleaseNotes', u'Octavia Release Notes ' ('index', 'OctaviaReleaseNotes', 'Octavia Release Notes '
'Documentation', 'Documentation',
u'Octavia Developers', 'OctaviaReleaseNotes', 'Octavia Developers', 'OctaviaReleaseNotes',
'One line description of project.', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]