mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-04-04 01:41:44 +01:00
bugfix - hack
This commit is contained in:
parent
1641dfe5f1
commit
8f87e4f77a
@ -340,7 +340,8 @@ def parser_html(year, expedition, txt, seq=""):
|
|||||||
\s whitespace
|
\s whitespace
|
||||||
\S NOT whitespace
|
\S NOT whitespace
|
||||||
|
|
||||||
You can't see it here, but a round-trip export-then-import will move
|
You can't see it here, but a round-trip export-then-import
|
||||||
|
for a new year logbook will move
|
||||||
the endmatter up to the frontmatter. This made sense when translating
|
the endmatter up to the frontmatter. This made sense when translating
|
||||||
from parser_html_01 format logfiles, believe me.
|
from parser_html_01 format logfiles, believe me.
|
||||||
"""
|
"""
|
||||||
@ -351,9 +352,10 @@ def parser_html(year, expedition, txt, seq=""):
|
|||||||
headmatch = re.match(r"(?i)(?s).*<body[^>]*>(.*?)<hr.*", txt)
|
headmatch = re.match(r"(?i)(?s).*<body[^>]*>(.*?)<hr.*", txt)
|
||||||
headpara = headmatch.groups()[0].strip()
|
headpara = headmatch.groups()[0].strip()
|
||||||
|
|
||||||
#print(f" - headpara:\n'{headpara}'")
|
|
||||||
if len(headpara) > 0:
|
if len(headpara) > 0:
|
||||||
frontpath = Path(settings.EXPOWEB, LOGBOOKS_DIR, year, "frontmatter.html")
|
frontpath = Path(settings.EXPOWEB, LOGBOOKS_DIR, year, "frontmatter.html")
|
||||||
|
if not frontpath.is_file:
|
||||||
|
# dont attempt to rewrite it. So this will only run once, for new logbook. Buggy otherwise.
|
||||||
with open(frontpath, "w") as front:
|
with open(frontpath, "w") as front:
|
||||||
front.write(headpara + "\n")
|
front.write(headpara + "\n")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user