Add watermark to Newton versioned guides

Adds a Newton watermark to the Install Guides,
Networking Guide, and Config Ref Guide.

Change-Id: I0e4f2942b87d996e9f2fd419f808578636d07e78
Backport: mitaka liberty
Partial-bug: #1479166
This commit is contained in:
Brian Moss 2016-09-06 15:54:30 +10:00
parent 6ad2ab5251
commit aa4ff78daf
5 changed files with 29 additions and 4 deletions

View File

@ -44,7 +44,7 @@ requestsexceptions.squelch_warnings(requestsexceptions.InsecureRequestWarning)
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['ext.remote']
extensions = ['ext.remote', 'sphinxmark']
# Add any paths that contain templates here, relative to this directory.
# templates_path = ['_templates']
@ -297,3 +297,9 @@ texinfo_documents = [
# -- Options for Internationalization output ------------------------------
locale_dirs = ['locale/']
# -- Options for sphinxmark -----------------------------------------------
sphinxmark_enable = True
sphinxmark_div = 'docs-body'
sphinxmark_image = 'text'
sphinxmark_text = 'Newton'

View File

@ -40,7 +40,7 @@ import openstackdocstheme
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
# TODO(ajaeger): enable PDF building, for example add 'rst2pdf.pdfbuilder'
# extensions =
extensions = ['sphinxmark']
# Add any paths that contain templates here, relative to this directory.
# templates_path = ['_templates']
@ -311,3 +311,9 @@ pdf_documents = [
('index', u'InstallGuide', u'Install Guide',
u'OpenStack contributors')
]
# -- Options for sphinxmark -----------------------------------------------
sphinxmark_enable = True
sphinxmark_div = 'docs-body'
sphinxmark_image = 'text'
sphinxmark_text = 'Newton'

View File

@ -40,7 +40,7 @@ import openstackdocstheme
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
# TODO(ajaeger): enable PDF building, for example add 'rst2pdf.pdfbuilder'
# extensions =
extensions = ['sphinxmark']
# Add any paths that contain templates here, relative to this directory.
# templates_path = ['_templates']
@ -311,3 +311,9 @@ pdf_documents = [
('index', u'InstallGuide', u'Install Guide',
u'OpenStack contributors')
]
# -- Options for sphinxmark -----------------------------------------------
sphinxmark_enable = True
sphinxmark_div = 'docs-body'
sphinxmark_image = 'text'
sphinxmark_text = 'Newton'

View File

@ -38,7 +38,7 @@ import openstackdocstheme
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['sphinx.ext.todo']
extensions = ['sphinx.ext.todo', 'sphinxmark']
# Add any paths that contain templates here, relative to this directory.
# templates_path = ['_templates']
@ -290,3 +290,9 @@ texinfo_documents = [
# -- Options for Internationalization output ------------------------------
locale_dirs = ['locale/']
# -- Options for sphinxmark -----------------------------------------------
sphinxmark_enable = True
sphinxmark_div = 'docs-body'
sphinxmark_image = 'text'
sphinxmark_text = 'Newton'

View File

@ -13,3 +13,4 @@ sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2
openstackdocstheme>=1.4.0
doc8 # Apache-2.0
requestsexceptions>=1.1.1 # Apache-2.0
sphinxmark