]> OzVa Git service - shopping-channel/commitdiff
changed PDF styling on document delivery
authorMax Value <greenwoodw50@gmail.com>
Tue, 28 Jan 2025 13:38:27 +0000 (13:38 +0000)
committerMax Value <greenwoodw50@gmail.com>
Tue, 28 Jan 2025 13:38:27 +0000 (13:38 +0000)
.gitignore
auth/generate_docs.py
docs/epub/info_page.html
docs/epub/stylesheet.css

index 3db8363d870ee85cab3dc36338c6cfe8f2615ad8..8a9cde9385affec68f93ed0b4916cde597df0c31 100644 (file)
@@ -10,3 +10,4 @@ toc.ncx
 *.pdf
 *.aux
 *.log
+*.out
index 52b791a354ba2caffafd883df62509ff033876f9..e7010e378c550a647bdc263092117e0c660c94f1 100755 (executable)
@@ -158,7 +158,7 @@ with open("../docs/epub/toc.ncx", "w") as f:
 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 &
+       ebook-convert ../docs/item_manifest.epub ../docs/item_manifest.mobi
        """)
 
 os.system(f"pandoc -f html ../docs/epub/info_page.html -t latex -o ../docs/pdf/info.tex")
index bdd496a7df4888ecc29fbcecc8f088b476ce39d3..37845519ae130ed9fba8e2803f58145886257736 100644 (file)
@@ -5,7 +5,70 @@
     <title>Information</title>
 </head>
     <body>
-        <h1>Infomation page</h1>
-        <p>Information will go here!</p>
+        <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>
index 773dd891c2622da5afc3ccf3504efd04078659a2..1d70e7129f247777bf7a9ea0f268347849158748 100644 (file)
@@ -2,3 +2,8 @@
     margin-bottom: 5pt;
     margin-top: 5pt;
 }
+
+table, th, td {
+    border: 1px solid black;
+    border-collapse: collapse;
+}