diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-08-14 22:52:14 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-08-14 22:52:14 +0300 |
commit | 284e044a03caccab0d5dfa2cd1ac56949b80c20b (patch) | |
tree | fd8a96bf6b63bb10f829086d199cb16fc3412b1f /parsers/scans.py | |
parent | b093d00ff46477c2fc7042bfd19962098cf6002c (diff) | |
download | troggle-284e044a03caccab0d5dfa2cd1ac56949b80c20b.tar.gz troggle-284e044a03caccab0d5dfa2cd1ac56949b80c20b.tar.bz2 troggle-284e044a03caccab0d5dfa2cd1ac56949b80c20b.zip |
Fix wallets scan upload faults
Diffstat (limited to 'parsers/scans.py')
-rw-r--r-- | parsers/scans.py | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/parsers/scans.py b/parsers/scans.py index 6439549..400bd74 100644 --- a/parsers/scans.py +++ b/parsers/scans.py @@ -21,7 +21,7 @@ from troggle.core.views.scans import datewallet ''' contentsjson = "contents.json" -indexhtml = "walletindex.html" +#indexhtml = "walletindex.html" git = settings.GIT # to do: create a 'low priority' field, so that any such wallet does not appear in summary reports @@ -44,22 +44,22 @@ wallet_blank_json = { "survex not required": False, "website updated": False} -wallet_blank_html = '''<html><body><H1>Wallet WALLET</H1> -<p>List of trips: <a href="http://expo.survex.com/expedition/YEAR">expedition/YEAR</a> -- troggle-processed .svx files and logbook entries on server</p> -<p>Date: </p><p>People: Unknown,</p> -<p>Cave <a href='http://expo.survex.com/caves/'>Guidebook description</a> -- A description is indicated as being needed, so may need adding into this cave page. -<p>Survex file: not identified yet -<H2>Issues</H2> -<p>The description needs writing</p> -<p>The QMs needs writing</p><p>The website is marked as needing updating (using the guidebook description)</p> -<p>Tunnel / Therion drawing files need drawing</p> -<H2>Files</H2> -<UL> -</UL> -</body></html> -''' +# wallet_blank_html = '''<html><body><H1>Wallet WALLET</H1> +# <p>List of trips: <a href="http://expo.survex.com/expedition/YEAR">expedition/YEAR</a> +# - troggle-processed .svx files and logbook entries on server</p> +# <p>Date: </p><p>People: Unknown,</p> +# <p>Cave <a href='http://expo.survex.com/caves/'>Guidebook description</a> +# - A description is indicated as being needed, so may need adding into this cave page. +# <p>Survex file: not identified yet +# <H2>Issues</H2> +# <p>The description needs writing</p> +# <p>The QMs needs writing</p><p>The website is marked as needing updating (using the guidebook description)</p> +# <p>Tunnel / Therion drawing files need drawing</p> +# <H2>Files</H2> +# <UL> +# </UL> +# </body></html> +# ''' def CheckEmptyDate(wallet): '''If date is not set, get it from a linked survex file. |