]> OzVa Git service - shopping-channel/commitdiff
Added MOBI preperation system
authorMax Value <greenwoodw50@gmail.com>
Fri, 21 Mar 2025 21:53:54 +0000 (21:53 +0000)
committerMax Value <greenwoodw50@gmail.com>
Fri, 21 Mar 2025 21:53:54 +0000 (21:53 +0000)
+ switch to docs.html to remove all incompatible components
(links, details)
~ database check and docgen happens on first request
This may not work with mutliprocesses or threads
~ added manual docgen endpoint @ /api/generate
- EPUB leftovers
- generate_docs.py

docs/epub/META-INF/container.xml [deleted file]
docs/epub/info_page.html [deleted file]
docs/epub/mimetype [deleted file]
docs/epub/stylesheet.css [deleted file]
docs/epub/title_page.html [deleted file]
generate_docs.py [deleted file]
static/cover.jpg [new file with mode: 0644]
teleshopping.py
templates/docs.html

diff --git a/docs/epub/META-INF/container.xml b/docs/epub/META-INF/container.xml
deleted file mode 100644 (file)
index b640723..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0"?>
-<container version="1.0" xmlns="urn:oasis:names:tc:opendocument:xmlns:container">
-       <rootfiles>
-               <rootfile full-path="content.opf"
-                       media-type="application/oebps-package+xml"/>
-       </rootfiles>
-</container>
diff --git a/docs/epub/info_page.html b/docs/epub/info_page.html
deleted file mode 100644 (file)
index 3784551..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
-    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-    <title>Information</title>
-</head>
-    <body>
-        <h1>Infomation</h1>
-        <h2>Call Sheet</h2>
-        <table>
-            <tr>
-                <th>Name</th>
-                <th>Role</th>
-                <th>Contact</th>
-            </tr>
-            <tr>
-                <td>William Greenwood</td>
-                <td>Producer</td>
-                <td>
-                    W.Greenwood@edu.salford.ac.uk
-                    <br>
-                    +44 7594 768180
-                </td>
-            </tr>
-            <tr>
-                <td>Test crew</td>
-                <td>Role</td>
-                <td>
-                    Email
-                    <br>
-                    Phone
-                </td>
-            </tr>
-            <tr>
-                <td>Test crew</td>
-                <td>Role</td>
-                <td>
-                    Email
-                    <br>
-                    Phone
-                </td>
-            </tr>
-            <tr>
-                <td>Test crew</td>
-                <td>Role</td>
-                <td>
-                    Email
-                    <br>
-                    Phone
-                </td>
-            </tr>
-        </table>
-
-        <h2>Lighting cue information</h2>
-        <h3>Lighting scenes</h3>
-        <p>Full cue setups, only one can be opperating at once.</p>
-        <ul>
-            <li><b>Scene 0</b> Initial scene, host silluetted, back walls list up by spots.</li>
-            <li><b>Scene 1</b> Lighting scene information</li>
-            <li><b>Scene 2</b> Lighting scene information</li>
-            <li><b>Scene 3</b> Lighting scene information</li>
-            <li><b>Scene 4</b> Lighting scene information</li>
-        </ul>
-        <h3>Lighting triggers</h3>
-        <p>Individual lighting triggers, for things such as the clock. Any number can be activated at once</p>
-        <ul>
-            <li><b>Trigger 0</b> Lighting trigger</li>
-            <li><b>Trigger 1</b> Lighting trigger</li>
-            <li><b>Trigger 2</b> Lighting trigger</li>
-            <li><b>Trigger 3</b> Lighting trigger</li>
-            <li><b>Trigger 4</b> Lighting trigger</li>
-        </ul>
-    </body>
-</html>
diff --git a/docs/epub/mimetype b/docs/epub/mimetype
deleted file mode 100644 (file)
index 403c4f0..0000000
+++ /dev/null
@@ -1 +0,0 @@
-application/epub+zip
diff --git a/docs/epub/stylesheet.css b/docs/epub/stylesheet.css
deleted file mode 100644 (file)
index 1d70e71..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-@page {
-    margin-bottom: 5pt;
-    margin-top: 5pt;
-}
-
-table, th, td {
-    border: 1px solid black;
-    border-collapse: collapse;
-}
diff --git a/docs/epub/title_page.html b/docs/epub/title_page.html
deleted file mode 100644 (file)
index 75d96ea..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
-    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-    <title>Title Page</title>
-</head>
-    <body>
-    <h1>XMDV Teleshopping</h1>
-    <h2>Item manifest</h2>
-    <p>Info on all items contained within the GFX system.</p><br/>
-    <p>HIDDEN INFORMATION. NOT TO BE SHARED WITH THE ANCHOR.</p>
-    </body>
-</html>
diff --git a/generate_docs.py b/generate_docs.py
deleted file mode 100755 (executable)
index 35ff0fe..0000000
+++ /dev/null
@@ -1,162 +0,0 @@
-#!.venv/bin/python
-
-from pylatex import Command, Document, Section, Tabular, NewPage, NewLine
-from pylatex.utils import NoEscape, bold
-import json
-import os
-
-# clean up working-directory
-for filename in os.listdir("../docs/epub"):
-       if filename[:4] == "item": os.remove("../docs/epub/" + filename)
-
-# generate item pages
-with open("../items.json", "r") as f:
-       items = json.loads(f.read())
-
-for (i, item) in enumerate(items):
-       with open(f"../docs/epub/item{i}.html", "w") as f:
-               f.write(f"""
-       <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
-               "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-       <html xmlns="http://www.w3.org/1999/xhtml">
-       <head>
-               <title>{item['code']}</title>
-       </head>
-       <body>
-               <h2>{item['code']}</h2>
-               <p><em>{item['subtext']}</em></p>
-               <h4>Description</h4>
-               <p>{item['description']}</p>
-               <table>
-                       <tr>
-                               <th>Rating</th>
-                               <td>{item['rating']}</td>
-                       </tr>
-                       <tr>
-                               <th>Starting price</th>
-                               <td>{item['origionalPrice']}</td>
-                       </tr>
-                       <tr>
-                               <th>In stock</th>
-                               <td>{item['stockCount']}</td>
-                       </tr>
-               </table>
-               <h4>Anchor notes:</h4>
-               <p>{item['notes']}</p>
-               <h4>Crew notes:</h4>
-               <p>{item['crew_notes']}</p>
-       </body>
-       </html>
-       """)
-
-# update manifest
-manifest_items = " ".join([
-       f"<item id='item{i}' href='item{i}.html' media-type='application/xhtml+xml' />"
-       for i in range(len(items))
-       ])
-toc_items = " ".join([
-       f"<itemref idref='item{i}' />"
-       for i in range(len(items))
-       ])
-
-with open("../docs/epub/content.opf", "w") as f:
-       f.write(f"""
-<?xml version="1.0"?>
-
-<package xmlns="http://www.idpf.org/2007/opf" unique-identifier="dcidid"
-       version="2.0">
-
-<metadata xmlns:dc="http://purl.org/dc/elements/1.1/"
-       xmlns:dcterms="http://purl.org/dc/terms/"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xmlns:opf="http://www.idpf.org/2007/opf">
-
-       <dc:title>XMDV Teleshopping item manifest</dc:title>
-       <dc:language xsi:type="dcterms:RFC3066">en</dc:language>
-       <dc:identifier id="dcidid" opf:scheme="URI">
-               http://data.ozva.co.uk/shopping/docs/item_manifest.epub
-               </dc:identifier>
-       <dc:subject>Teleshopping, Manifest</dc:subject>
-       <dc:description>Describing all items to be sold during the XMDV Teleshopping performance</dc:description>
-       <dc:creator>William Greenwood</dc:creator>
-       <dc:publisher>Goodnight Publishing</dc:publisher>
-       <dc:date xsi:type="dcterms:W3CDTF">2024-12-28</dc:date>
-       <dc:rights>Creative Commons BY-SA 3.0 License.</dc:rights>
-</metadata>
-
-<manifest>
-       <item id="ncx"      href="toc.ncx"
-               media-type="application/x-dtbncx+xml" />
-       <item id="css"      href="stylesheet.css"
-               media-type="text/css" />
-       <item id="title"    href="title_page.html"
-               media-type="application/xhtml+xml" />
-       <item id="intro"    href="info_page.html"
-               media-type="application/xhtml+xml" />
-       {manifest_items}
-</manifest>
-
-<spine toc="ncx">
-       <itemref idref="title" />
-       <itemref idref="intro" />
-       {toc_items}
-</spine>
-
-</package>
-""")
-
-toc_items = " ".join([
-       f"""
-<navPoint id="navPoint-{i+3}" playOrder="{i+3}">
-       <navLabel>
-               <text>{i+1}: {item["code"]}</text>
-       </navLabel>
-       <content src="item{i}.html"/>
-</navPoint>
-       """
-       for (i, item) in enumerate(items)
-       ])
-
-with open("../docs/epub/toc.ncx", "w") as f:
-       f.write(f"""
-<?xml version="1.0"?>
-<!DOCTYPE ncx PUBLIC "-//NISO//DTD ncx 2005-1//EN"
-       "http://www.daisy.org/z3986/2005/ncx-2005-1.dtd">
-
-<ncx xmlns="http://www.daisy.org/z3986/2005/ncx/" version="2005-1">
-
-<head>
-       <meta name="dtb:uid" content="http://data.ozva.co.uk/shopping/docs/item_manifest.epub"/>
-       <meta name="dtb:depth" content="2"/>
-       <meta name="dtb:totalPageCount" content="0"/>
-       <meta name="dtb:maxPageNumber" content="0"/>
-</head>
-
-<docTitle>
-       <text>XMDV Teleshopping item manifest</text>
-</docTitle>
-
-<navMap>
-       <navPoint id="navPoint-1" playOrder="1">
-               <navLabel>
-                       <text>Title Page</text>
-               </navLabel>
-               <content src="title_page.html"/>
-       </navPoint>
-       <navPoint id="navPoint-2" playOrder="2">
-               <navLabel>
-                       <text>Information</text>
-               </navLabel>
-               <content src="info_page.html"/>
-       </navPoint>
-       {toc_items}
-</navMap>
-
-</ncx>
-""")
-
-os.system("""
-       zip -X0 ../docs/item_manifest.epub ../docs/epub/mimetype &&
-       zip -Xur9D ../docs/item_manifest.epub ../docs/epub/* &&
-       ebook-convert ../docs/item_manifest.epub ../docs/item_manifest.mobi
-       """)
diff --git a/static/cover.jpg b/static/cover.jpg
new file mode 100644 (file)
index 0000000..be15dcf
Binary files /dev/null and b/static/cover.jpg differ
index 7627b6baec49d2d8bff46104020626a1e5c2e704..270d1cefa0c2de0f0e7093e8e320ff0a18e319a3 100755 (executable)
@@ -71,7 +71,7 @@ def gfx_page(page):
 @app.route("/docs")
 @auth.login_required
 def web_docs():
-       return Response(render_template("docs.html", data=static_data, info=static_info), mimetype="text/html")
+       return Response(render_template("docs.html", data=static_data, info=static_info, book=False), mimetype="text/html")
 
 @app.route("/docs/<string:filename>")
 @auth.login_required
@@ -189,30 +189,10 @@ def api_clock():
        else:
                return "", 404
 
-@app.route("/api/regenerate")
+@app.route("/api/generate")
 @auth.login_required
-def check_generate():
-       # sanity check the db
-       with open(path.join(app.root_path, "schema"), "r", encoding="utf-8") as f:
-               schema, load = f.read().split("\n\n")
-
-       with sqlite3.connect(path.join(app.root_path, "data.db")) as connection:
-               cursor = connection.cursor()
-               try:
-                       cursor.execute(load)
-               except sqlite3.IntegrityError:
-                       print("Database is setup correctly")
-                       pass
-               except sqlite3.OperationalError:
-                       print("Table missing or corrupt...")
-                       try: cursor.execute("DROP TABLE state;") # catch if there is no table "state"
-                       except: pass
-                       cursor.execute(schema)
-                       cursor.execute(load)
-               connection.commit()
-
-       # generate docs
-       print("Generating static documentation...")
+def generate_docs():
+       # setup the jinja enviroment for use in latex
        latex_enviroment = Environment(
                loader=FileSystemLoader(path.join(app.root_path, "templates")),
                block_start_string = "|%",
@@ -225,9 +205,10 @@ def check_generate():
                lstrip_blocks = True
                )
 
+       # render each latex document
+       docs_path = path.join(app.root_path, "docs")
        for document in ["call-sheet.tex", "manifest-unsafe.tex", "manifest-safe.tex", "gfx-text.tex"]:
                template = latex_enviroment.get_template(document)
-               docs_path = path.join(app.root_path, "docs")
 
                with open(path.join(docs_path, document), "w", encoding="utf-8") as f:
                        f.write(template.render(data=static_data, info=static_info))
@@ -237,7 +218,47 @@ def check_generate():
 
                print(f" - Generated {document}")
 
+       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))
+
+       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')}'")
+
        return "", 200
 
+
+
+
+# if this is the first incoming request do a sanity check on the db
+# this might happen a few times because of threading, but it doesnt slow requests that much
+first_request = True
+@app.before_request
+def check_database():
+       global first_request
+       if first_request:
+               with open(path.join(app.root_path, "schema"), "r", encoding="utf-8") as f:
+                       schema, load = f.read().split("\n\n")
+
+               with sqlite3.connect(path.join(app.root_path, "data.db")) as connection:
+                       cursor = connection.cursor()
+                       try:
+                               cursor.execute(load)
+                       except sqlite3.IntegrityError:
+                               print("Database is setup correctly")
+                               pass
+                       except sqlite3.OperationalError:
+                               print("Table missing or corrupt...")
+                               try: cursor.execute("DROP TABLE state;") # catch if there is no table "state"
+                               except: pass
+                               cursor.execute(schema)
+                               cursor.execute(load)
+                       connection.commit()
+
+               generate_docs() # This might be a bad idea
+
+               first_request = False
+
+
+
+
 if __name__ == "__main__":
-       app.run(host='192.168.0.144', port=8000, debug=True)
+       app.run(host='127.0.0.1', port=8000, debug=True)
index 11757b100b835d46c80b474482887858b5203e96..8d6a63de0cc6befaa58fd0b6dd492fc3589e44eb 100644 (file)
@@ -140,10 +140,14 @@ details {
                                <tr style="color: red">
                                        <th>Forbidden</th>
                                        <td>
-                                               <details>
-                                                       <summary>Reveal</summary>
+                                               {% if book %}
                                                        {{item.crew_notes}}
-                                               </details>
+                                               {% else %}
+                                                       <details>
+                                                               <summary>Reveal</summary>
+                                                               {{item.crew_notes}}
+                                                       </details>
+                                               {% endif %}
                                        </td>
                                </tr>
                        {% endfor %}
@@ -178,11 +182,15 @@ details {
                </table>
        </body>
 
-       <h2>PDF Documents</h2>
-       <ul>
-               <li><a href="/docs/call-sheet.pdf">Call-sheet</a></li>
-               <li><a href="/docs/manifest-safe.pdf">Item manifest (safe)</a></li>
-               <li><a href="/docs/manifest-unsafe.pdf">Item manifest (unsafe)</a></li>
-               <li><a href="/docs/gfx-text.pdf">GFX text sheet</a></li>
-       </ul>
+       {% if book %}
+               <p>For print document links, see web version of this document.</p>
+       {% else %}
+               <h2>PDF Documents</h2>
+               <ul>
+                       <li><a href="/docs/call-sheet.pdf">Call-sheet</a></li>
+                       <li><a href="/docs/manifest-safe.pdf">Item manifest (safe)</a></li>
+                       <li><a href="/docs/manifest-unsafe.pdf">Item manifest (unsafe)</a></li>
+                       <li><a href="/docs/gfx-text.pdf">GFX text sheet</a></li>
+               </ul>
+       {% endif %}
 </html>