diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-09-19 21:54:51 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-09-19 21:54:51 +0300 |
commit | 0611c3f00fc17bf8fe100e1c19c0e95e985845f1 (patch) | |
tree | 532dec14242996eee5938ecc0d16ff5f15c3758a /parsers/caves.py | |
parent | 13b57d2bb6e82ed2b6d2c8716da91d47f3986df5 (diff) | |
download | troggle-0611c3f00fc17bf8fe100e1c19c0e95e985845f1.tar.gz troggle-0611c3f00fc17bf8fe100e1c19c0e95e985845f1.tar.bz2 troggle-0611c3f00fc17bf8fe100e1c19c0e95e985845f1.zip |
documn improvements
Diffstat (limited to 'parsers/caves.py')
-rw-r--r-- | parsers/caves.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/parsers/caves.py b/parsers/caves.py index 5b363b6..917bf53 100644 --- a/parsers/caves.py +++ b/parsers/caves.py @@ -82,6 +82,9 @@ def do_pending_cave(k, url, area): ''' default for a PENDING cave, should be overwritten in the db later if a real cave of the same name exists in expoweb/cave_data/1623-"k".html + + Note that at this point in importing the data we have not yet seen the survex files, so we can't + look inside the relevant survex file to find the year and so we con't provide helpful links. ''' slug = k @@ -98,7 +101,7 @@ def do_pending_cave(k, url, area): default_note += f"INSTRUCTIONS: First open 'This survex file' (link above the CaveView panel) to find the date and info. Then " default_note += f"<br><br>\n\n - (1) search in the survex file for the *ref to find a " default_note += f"relevant wallet, e.g.<a href='/survey_scans/2009%252311/'>2009#11</a> and read the notes image files <br>\n - " - default_note += f"<br><br>\n\n - (2) search in the Expo for that year e.g. <a href='/expedition/{k[0:4]}'>{k[0:4]}</a> to find a " + default_note += f"<br><br>\n\n - (2) search in the Expo for that year e.g. <a href='/expedition/2009'>2009</a> to find a " default_note += f"relevant logbook entry, remember that the date may have been recorded incorrectly, " default_note += f"so check for trips i.e. logbook entries involving the same people as were listed in the survex file, " default_note += f"and you should also check the scanned copy of the logbook (linked from each logbook entry page) " |