- PDF manual is in now built along side html one

- Fixed the incorrect copyright for pdf manual
 - added the missing percona-logo to the pdf manual
This commit is contained in:
Hrvoje Matijakovic
2015-01-15 12:51:25 +01:00
parent 732a3fa9cc
commit ff7e218c96
6 changed files with 2989 additions and 748 deletions

View File

@@ -41,7 +41,7 @@ master_doc = 'index'
# General information about the project.
project = u'Percona Toolkit'
copyright = u'2013, Percona LLC and/or its affiliates'
copyright = u'2015, Percona LLC and/or its affiliates'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -50,7 +50,7 @@ copyright = u'2013, Percona LLC and/or its affiliates'
# The short X.Y version.
version = '2.2'
# The full version, including alpha/beta/rc tags.
release = '2.2.12'
release = '2.2.13'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -179,12 +179,12 @@ htmlhelp_basename = 'PerconaToolkitdoc'
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'PerconaToolkit.tex', u'Percona Toolkit Documentation',
u'Percona Ireland Ltd', 'manual'),
u'2015, Percona LLC and/or its affiliates', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
# the title page.
#latex_logo = None
latex_logo = 'percona-logo.jpg'
# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
@@ -212,5 +212,5 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'perconatoolkit', u'Percona Toolkit Documentation',
[u'Percona Ireland Ltd'], 1)
[u'2015, Percona LLC and/or its affiliates'], 1)
]

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

File diff suppressed because one or more lines are too long

View File

@@ -31,7 +31,7 @@ div.document {
margin: 0 auto;
overflow: hidden;
padding: 30px 0;
width: 960px;
width: 1000px;
}
div.documentwrapper {
@@ -42,7 +42,8 @@ div.documentwrapper {
div.bodywrapper {
margin: 10 0 0 0px;
width: 660px;
padding-right: 12px;
width: 700px;
float:right;
}
@@ -50,6 +51,7 @@ div.body {
background-color: #fff;
color: #333333;
padding: 0 0 20px;
width: 712px;
}
{%- if theme_rightsidebar|tobool %}
@@ -64,9 +66,9 @@ div.footer {
/* padding: 9px 0 9px 0; */
/* text-align: center; */
/* font-size: 75%; */
font: 80% "Lucida Grande",Verdana,Lucida,Helvetica,Arial,sans-serif;
background: none repeat scroll 0 0 #333333;
border-top: 2px solid #D95200;
/*font: 80% "Lucida Grande",Verdana,Lucida,Helvetica,Arial,sans-serif; */
/*background: none repeat scroll 0 0 #333333;*/
/*border-top: 2px solid #D95200;*/
overflow: hidden;
}
@@ -83,7 +85,7 @@ div.related {
border: 1px solid #E0E0E0;
clear: both;
padding: 10px;
width: 635px;
width: 690px;
margin-bottom: 5px;
}
@@ -93,10 +95,10 @@ div.related a {
div.sphinxsidebar {
margin-left: 0px;
margin-right: 30px;
margin-right: 20px;
color: #333333;
font-family: Arial,Helvetica,sans-serif;
width: 260px;
width: 250px;
{%- if theme_stickysidebar|tobool %}
top: 30px;
bottom: 0;

File diff suppressed because it is too large Load Diff

View File

@@ -168,7 +168,7 @@ fi
BUILD=${BUILD:-1}
if [ $BUILD -eq 1 ]; then
cd $BRANCH/config/sphinx-build
make html
make html && make latexpdf
exit_status=$(( exit_status | $? ))
fi