From: Max Value Date: Tue, 1 Apr 2025 22:16:58 +0000 (+0100) Subject: Fixed inclusion of images in EPUB X-Git-Url: https://git.ozva.co.uk/?a=commitdiff_plain;h=8b709fdb93e3cec009f835c45edcdacc0ecd2d25;p=shopping-channel Fixed inclusion of images in EPUB --- 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