diff options
author | Tibor Frank <tifrank@cisco.com> | 2017-10-12 12:47:56 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2017-10-18 14:39:27 +0000 |
commit | 9a89069be33f11879f8307e5b774c6e1e7afa398 (patch) | |
tree | c45f5bf8cd7c3277b6d70c353d03f445a34a9848 /resources/tools/presentation/generator_report.py | |
parent | 59eb880b002cc73cc6e8834814c2da34b2ddfd54 (diff) |
CSIT-836: PDF format: Improvements in pdf layout
CSIT-837: Scope of pdf version
Change-Id: Idfc9c04274c6635fbef14f87147665d31cfd7352
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_report.py')
-rw-r--r-- | resources/tools/presentation/generator_report.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/resources/tools/presentation/generator_report.py b/resources/tools/presentation/generator_report.py index 8a3f8334a7..55aa24b02f 100644 --- a/resources/tools/presentation/generator_report.py +++ b/resources/tools/presentation/generator_report.py @@ -50,6 +50,7 @@ THEME_OVERRIDES = """/* override table width restrictions */ # Command to build the html format of the report HTML_BUILDER = 'sphinx-build -v -c . -a ' \ '-b html -E ' \ + '-t html ' \ '-D release={release} ' \ '-D version="{release} report - {date}" ' \ '{working_dir} ' \ @@ -58,6 +59,7 @@ HTML_BUILDER = 'sphinx-build -v -c . -a ' \ # Command to build the pdf format of the report PDF_BUILDER = 'sphinx-build -v -c . -a ' \ '-b latex -E ' \ + '-t latex ' \ '-D release={release} ' \ '-D version="{release} report - {date}" ' \ '{working_dir} ' \ |