Add launchpad tag used by "Report a bug" to automatically tag new bugs

"Report a bug" automatically populates bugs on launchpad with information about
the manual. This additional config setting will allow "Report a bug" to
automatically tag the bug with the respective manual.

Change-Id: Ib2c921f305338df0168f1c85aa6d698d4a963e29
Depends-On: I3c9214a4f5a00648d325b4acaa493057ab0e4821
This commit is contained in:
Peter Tran
2015-05-22 11:20:45 -07:00
parent 266f14a562
commit c32055cc36
3 changed files with 6 additions and 3 deletions

View File

@@ -54,6 +54,7 @@ master_doc = 'index'
# General information about the project.
project = u'Networking Guide'
bug_tag = u'networking-guide'
copyright = u'2015, OpenStack contributors'
# The version info for the project you're documenting, acts as replacement for
@@ -72,7 +73,7 @@ gitsha = os.popen(git_cmd).read().strip('\n')
# source tree
pwd = os.popen("pwd").read().strip('\n')
# html_context allows us to pass arbitrary values into the html template
html_context = {"pwd": pwd, "gitsha": gitsha}
html_context = {"pwd": pwd, "gitsha": gitsha, "bug_tag": bug_tag}
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -56,6 +56,7 @@ master_doc = 'index'
# General information about the project.
project = u'Admin User Guide'
bug_tag = u'admin-user-guide'
copyright = u'2015, OpenStack contributors'
@@ -75,7 +76,7 @@ gitsha = os.popen(git_cmd).read().strip('\n')
# source tree
pwd = os.popen("pwd").read().strip('\n')
# html_context allows us to pass arbitrary values into the html template
html_context = {"pwd": pwd, "gitsha": gitsha}
html_context = {"pwd": pwd, "gitsha": gitsha, "bug_tag": bug_tag}
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -56,6 +56,7 @@ master_doc = 'index'
# General information about the project.
project = u'End User Guide'
bug_tag = u'user-guide'
copyright = u'2015, OpenStack contributors'
@@ -75,7 +76,7 @@ gitsha = os.popen(git_cmd).read().strip('\n')
# source tree
pwd = os.popen("pwd").read().strip('\n')
# html_context allows us to pass arbitrary values into the html template
html_context = {"pwd": pwd, "gitsha": gitsha}
html_context = {"pwd": pwd, "gitsha": gitsha, "bug_tag": bug_tag}
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.