mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-04-04 01:41:44 +01:00
<p> now OK in logbook entries
This commit is contained in:
parent
3f94955883
commit
1ba37665b5
@ -215,11 +215,11 @@ def logbookedit(request, year=None, slug=None):
|
|||||||
place = request.POST["place"].strip().replace(' - ',' = ') # no hyphens !
|
place = request.POST["place"].strip().replace(' - ',' = ') # no hyphens !
|
||||||
title = request.POST["title"].strip()
|
title = request.POST["title"].strip()
|
||||||
entry = request.POST["text"].strip()
|
entry = request.POST["text"].strip()
|
||||||
entry = entry.replace('\r','') # remove HTML-standard CR inserted
|
entry = entry.replace('\r','') # remove HTML-standard CR inserted from form.
|
||||||
entry = entry.replace('\n\n','\n<br />\n<br />\n') # replace 2 \n with <br><br>
|
# entry = entry.replace('\n\n','\n<br />\n<br />\n') # replace 2 \n with <br><br>
|
||||||
entry = entry.replace('<p>','<br />\n<br') # replace <p> tag with <br><br>
|
# entry = entry.replace('<p>','<br />\n<br') # replace <p> tag with <br><br>
|
||||||
entry = entry.replace('<p ','<br />\n<br') # replace <p> tag with attributes with <br><br>
|
# entry = entry.replace('<p ','<br />\n<br') # replace <p> tag with attributes with <br><br>
|
||||||
entry = entry.replace('<br>','<br />') # clean up previous hack
|
# entry = entry.replace('<br>','<br />') # clean up previous hack
|
||||||
tu = request.POST["tu"].strip()
|
tu = request.POST["tu"].strip()
|
||||||
tu = clean_tu(tu)
|
tu = clean_tu(tu)
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ LOGBOOK_PARSER_SETTINGS = {
|
|||||||
LOGBOOKS_DIR = "years" # subfolder of settings.EXPOWEB
|
LOGBOOKS_DIR = "years" # subfolder of settings.EXPOWEB
|
||||||
|
|
||||||
ENTRIES = {
|
ENTRIES = {
|
||||||
"2023": 83,
|
"2023": 84,
|
||||||
"2022": 94,
|
"2022": 94,
|
||||||
"2019": 55,
|
"2019": 55,
|
||||||
"2018": 95,
|
"2018": 95,
|
||||||
@ -408,8 +408,9 @@ def parser_html(year, expedition, txt, seq=""):
|
|||||||
place = triptitles[0]
|
place = triptitles[0]
|
||||||
else:
|
else:
|
||||||
place = "Unknown"
|
place = "Unknown"
|
||||||
tripcontent = re.sub(r"</p>", "", triptext)
|
# tripcontent = re.sub(r"</p>", "", triptext)
|
||||||
tripcontent = re.sub(r"<p>", "<br /><br />", tripcontent).strip()
|
# tripcontent = re.sub(r"<p>", "<br /><br />", tripcontent).strip()
|
||||||
|
tripcontent = triptext.strip()
|
||||||
|
|
||||||
triptitle = triptitle.strip()
|
triptitle = triptitle.strip()
|
||||||
# triptitle must be unique for a given date. [Why?!] We fix this here.
|
# triptitle must be unique for a given date. [Why?!] We fix this here.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user