2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-04-03 01:11:59 +01:00

restore lookup() function

This commit is contained in:
Philip Sargent 2023-03-06 22:30:36 +00:00
parent 859a28b4ee
commit e71939fe00

View File

@ -69,7 +69,7 @@ class SurvexFile(models.Model):
class SurvexStationLookUpManager(models.Manager): class SurvexStationLookUpManager(models.Manager):
"""Don't know what this does, """what this does,
https://docs.djangoproject.com/en/dev/topics/db/managers/ https://docs.djangoproject.com/en/dev/topics/db/managers/
This changes the .objects thinggy to use a case-insensitive match name__iexact This changes the .objects thinggy to use a case-insensitive match name__iexact
so that now SurvexStation.objects.lookup() works as a case-insensitive match so that now SurvexStation.objects.lookup() works as a case-insensitive match
@ -104,26 +104,27 @@ class SurvexStation(models.Model):
def __str__(self): def __str__(self):
return self.name and str(self.name) or "no name" return self.name and str(self.name) or "no name"
# #
# Single SurvexBlock # Single SurvexBlock
# #
# class SurvexBlockLookUpManager(models.Manager): class SurvexBlockLookUpManager(models.Manager):
# """Don't know what this does, """what this does,
# https://docs.djangoproject.com/en/dev/topics/db/managers/ https://docs.djangoproject.com/en/dev/topics/db/managers/
# This changes the .objects_set thinggy to use a case-insensitive match name__iexact This adds a method to the .objects thinggy to use a case-insensitive match name__iexact
# so that now SurvexBlock.objects.lookup() works as a case-insensitive match UNUSED so that now SurvexBlock.objects.lookup() works as a case-insensitive match.
# """ This is used in lookup() in SurvexStationLookUpManager()
# def lookup(self, name): which is used in Entrance().other_location() which is used in the Cave webpage
# if name == "": """
# blocknames = [] def lookup(self, name):
# else: if name == "":
# blocknames = name.split(".") blocknames = []
# # block = SurvexBlock.objects.get(parent=None, survexfile__path=settings.SURVEX_TOPNAME) else:
# for blockname in blocknames: blocknames = name.split(".")
# block = SurvexBlock.objects.get(parent=block, name__iexact=blockname) # block = SurvexBlock.objects.get(parent=None, survexfile__path=settings.SURVEX_TOPNAME)
# return block for blockname in blocknames:
block = SurvexBlock.objects.get(parent=block, name__iexact=blockname)
return block
class SurvexBlock(models.Model): class SurvexBlock(models.Model):