From 8b709fdb93e3cec009f835c45edcdacc0ecd2d25 Mon Sep 17 00:00:00 2001 From: Max Value Date: Tue, 1 Apr 2025 23:16:58 +0100 Subject: [PATCH] Fixed inclusion of images in EPUB --- teleshopping.py | 5 +++++ templates/docs.html | 16 ++++++++++++---- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/teleshopping.py b/teleshopping.py index bd9064f..14122a1 100755 --- a/teleshopping.py +++ b/teleshopping.py @@ -225,6 +225,11 @@ def generate_docs(): with open(path.join(docs_path, "documentation.html"), "w", encoding="utf-8") as f: f.write(render_template("docs.html", data=static_data, info=static_info, book=True)) + floorplan_path = path.join(app.root_path, 'static', 'floorplan.png') + cameras_path = path.join(app.root_path, 'static', 'cameras.png') + system(f"cp '{floorplan_path}' '{docs_path}'") + system(f"cp '{cameras_path}' '{docs_path}'") + system(f"ebook-convert '{path.join(docs_path, 'documentation.html')}' '{path.join(docs_path, 'documentation.mobi')}' --title='XMDV Teleshopping Documentation' --authors='William Greenwood' --comments='Valid for {static_info['shoot']['date']}' --language=en --change-justification=left --cover='{path.join(app.root_path, 'static', 'cover.jpg')}'") system(f"ebook-convert '{path.join(docs_path, 'documentation.html')}' '{path.join(docs_path, 'documentation.epub')}' --title='XMDV Teleshopping Documentation' --authors='William Greenwood' --comments='Valid for {static_info['shoot']['date']}' --language=en --change-justification=left --cover='{path.join(app.root_path, 'static', 'cover.jpg')}'") diff --git a/templates/docs.html b/templates/docs.html index f220d59..5fb84f3 100644 --- a/templates/docs.html +++ b/templates/docs.html @@ -153,11 +153,19 @@ details { {% endfor %} -

Floor-plan

- + {% if book %} +

Floor-plan

+ -

Camera layout

- +

Camera layout

+ + {% else %} +

Floor-plan

+ + +

Camera layout

+ + {% endif %}

Text options

-- 2.39.2