mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-04-03 01:11:59 +01:00
bug fixed for new logbook
This commit is contained in:
parent
e08b4275a9
commit
78f8ea2b5b
@ -108,15 +108,12 @@ def EnterLogIntoDbase(date, place, title, text, trippeople, expedition, logtime_
|
|||||||
lookupAttribs={'date':date, 'title':title}
|
lookupAttribs={'date':date, 'title':title}
|
||||||
nonLookupAttribs={'place':place, 'text':text, 'expedition':expedition, 'cave':cave, 'slug':slugify(title)[:50], 'entry_type':entry_type}
|
nonLookupAttribs={'place':place, 'text':text, 'expedition':expedition, 'cave':cave, 'slug':slugify(title)[:50], 'entry_type':entry_type}
|
||||||
lbo, created=save_carefully(models.LogbookEntry, lookupAttribs, nonLookupAttribs)
|
lbo, created=save_carefully(models.LogbookEntry, lookupAttribs, nonLookupAttribs)
|
||||||
#logentries.append(models.LogbookEntry)
|
|
||||||
|
|
||||||
|
|
||||||
for tripperson, time_underground in trippersons:
|
for tripperson, time_underground in trippersons:
|
||||||
lookupAttribs={'personexpedition':tripperson, 'logbook_entry':lbo}
|
lookupAttribs={'personexpedition':tripperson, 'logbook_entry':lbo}
|
||||||
nonLookupAttribs={'time_underground':time_underground, 'is_logbook_entry_author':(tripperson == author)}
|
nonLookupAttribs={'time_underground':time_underground, 'is_logbook_entry_author':(tripperson == author)}
|
||||||
save_carefully(models.PersonTrip, lookupAttribs, nonLookupAttribs)
|
save_carefully(models.PersonTrip, lookupAttribs, nonLookupAttribs)
|
||||||
#logentries.append(models.PersonTrip)
|
|
||||||
|
|
||||||
|
|
||||||
def ParseDate(tripdate, year):
|
def ParseDate(tripdate, year):
|
||||||
""" Interprets dates in the expo logbooks and returns a correct datetime.date object """
|
""" Interprets dates in the expo logbooks and returns a correct datetime.date object """
|
||||||
@ -350,17 +347,6 @@ def LoadLogbookForExpedition(expedition):
|
|||||||
parsefunc = year_settings[1]
|
parsefunc = year_settings[1]
|
||||||
logbook_parseable = True
|
logbook_parseable = True
|
||||||
print(" - Parsing logbook: " + year_settings[0] + "\n - Using parser: " + year_settings[1])
|
print(" - Parsing logbook: " + year_settings[0] + "\n - Using parser: " + year_settings[1])
|
||||||
else:
|
|
||||||
try:
|
|
||||||
file_in = open(os.path.join(expowebbase, expedition.year, settings.DEFAULT_LOGBOOK_FILE))
|
|
||||||
txt = file_in.read().decode("latin1")
|
|
||||||
file_in.close()
|
|
||||||
logbook_parseable = True
|
|
||||||
print("No set parser found using default")
|
|
||||||
parsefunc = settings.DEFAULT_LOGBOOK_PARSER
|
|
||||||
except (IOError):
|
|
||||||
logbook_parseable = False
|
|
||||||
print("Couldn't open default logbook file and nothing in settings for expo " + expedition.year)
|
|
||||||
|
|
||||||
if logbook_parseable:
|
if logbook_parseable:
|
||||||
parser = globals()[parsefunc]
|
parser = globals()[parsefunc]
|
||||||
@ -368,6 +354,7 @@ def LoadLogbookForExpedition(expedition):
|
|||||||
SetDatesFromLogbookEntries(expedition)
|
SetDatesFromLogbookEntries(expedition)
|
||||||
# and this has also stored all the objects in logentries[]
|
# and this has also stored all the objects in logentries[]
|
||||||
print " - Storing " , len(logentries), " log entries"
|
print " - Storing " , len(logentries), " log entries"
|
||||||
|
cache_filename = os.path.join(expowebbase, year_settings[0])+".cache"
|
||||||
with open(cache_filename, "wb") as f:
|
with open(cache_filename, "wb") as f:
|
||||||
pickle.dump(logentries, f, 2)
|
pickle.dump(logentries, f, 2)
|
||||||
logentries=[] # flush for next year
|
logentries=[] # flush for next year
|
||||||
@ -381,6 +368,18 @@ def LoadLogbookForExpedition(expedition):
|
|||||||
EnterLogIntoDbase(date, place, title, text, trippeople, expedition, logtime_underground,\
|
EnterLogIntoDbase(date, place, title, text, trippeople, expedition, logtime_underground,\
|
||||||
entry_type)
|
entry_type)
|
||||||
i +=1
|
i +=1
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
file_in = open(os.path.join(expowebbase, expedition.year, settings.DEFAULT_LOGBOOK_FILE))
|
||||||
|
txt = file_in.read().decode("latin1")
|
||||||
|
file_in.close()
|
||||||
|
logbook_parseable = True
|
||||||
|
print("No set parser found using default")
|
||||||
|
parsefunc = settings.DEFAULT_LOGBOOK_PARSER
|
||||||
|
except (IOError):
|
||||||
|
logbook_parseable = False
|
||||||
|
print("Couldn't open default logbook file and nothing in settings for expo " + expedition.year)
|
||||||
|
|
||||||
|
|
||||||
#return "TOLOAD: " + year + " " + str(expedition.personexpedition_set.all()[1].logbookentry_set.count()) + " " + str(models.PersonTrip.objects.filter(personexpedition__expedition=expedition).count())
|
#return "TOLOAD: " + year + " " + str(expedition.personexpedition_set.all()[1].logbookentry_set.count()) + " " + str(models.PersonTrip.objects.filter(personexpedition__expedition=expedition).count())
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user