mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-04-03 17:31:47 +01:00
remove 'primary' concept from entrance slugs. tested.
This commit is contained in:
parent
6ca5d5bfa8
commit
bbc13c4eb9
@ -265,7 +265,7 @@ class EntranceSlug(models.Model):
|
|||||||
"""
|
"""
|
||||||
entrance = models.ForeignKey("Entrance", on_delete=models.CASCADE)
|
entrance = models.ForeignKey("Entrance", on_delete=models.CASCADE)
|
||||||
slug = models.SlugField(max_length=50, unique=True)
|
slug = models.SlugField(max_length=50, unique=True)
|
||||||
primary = models.BooleanField(default=False)
|
# primary = models.BooleanField(default=False)
|
||||||
|
|
||||||
|
|
||||||
class Entrance(TroggleModel):
|
class Entrance(TroggleModel):
|
||||||
@ -284,7 +284,7 @@ class Entrance(TroggleModel):
|
|||||||
alt = models.TextField(blank=True, null=True)
|
alt = models.TextField(blank=True, null=True)
|
||||||
approach = models.TextField(blank=True, null=True)
|
approach = models.TextField(blank=True, null=True)
|
||||||
bearings = models.TextField(blank=True, null=True)
|
bearings = models.TextField(blank=True, null=True)
|
||||||
cached_primary_slug = models.CharField(max_length=200, blank=True, null=True)
|
cached_slug = models.CharField(max_length=200, blank=True, null=True)
|
||||||
easting = models.TextField(blank=True, null=True)
|
easting = models.TextField(blank=True, null=True)
|
||||||
entrance_description = models.TextField(blank=True, null=True)
|
entrance_description = models.TextField(blank=True, null=True)
|
||||||
exact_station = models.TextField(blank=True, null=True)
|
exact_station = models.TextField(blank=True, null=True)
|
||||||
@ -398,17 +398,12 @@ class Entrance(TroggleModel):
|
|||||||
"""Returns the first slug with primary=True that it can find,
|
"""Returns the first slug with primary=True that it can find,
|
||||||
if there are none with primary=True, then it returns the first slug it finds
|
if there are none with primary=True, then it returns the first slug it finds
|
||||||
"""
|
"""
|
||||||
if not self.cached_primary_slug:
|
if not self.cached_slug:
|
||||||
primarySlugs = self.entranceslug_set.filter(primary=True)
|
slugs = self.entranceslug_set.filter()
|
||||||
if primarySlugs:
|
if slugs:
|
||||||
self.cached_primary_slug = primarySlugs[0].slug
|
self.cached_slug = slugs[0].slug
|
||||||
self.save()
|
self.save()
|
||||||
else:
|
return self.cached_slug
|
||||||
slugs = self.entranceslug_set.filter()
|
|
||||||
if slugs:
|
|
||||||
self.cached_primary_slug = slugs[0].slug
|
|
||||||
self.save()
|
|
||||||
return self.cached_primary_slug
|
|
||||||
|
|
||||||
def cavelist(self):
|
def cavelist(self):
|
||||||
rs = []
|
rs = []
|
||||||
|
@ -484,7 +484,7 @@ def ent(request, cave_id, ent_letter):
|
|||||||
)
|
)
|
||||||
|
|
||||||
def cave_debug(request):
|
def cave_debug(request):
|
||||||
ents = Entrance.objects.all()
|
ents = Entrance.objects.all().order_by('id')
|
||||||
#slugs = self.entranceslug_set.filter()
|
#slugs = self.entranceslug_set.filter()
|
||||||
return render(
|
return render(
|
||||||
request,
|
request,
|
||||||
|
@ -48,13 +48,13 @@ def dummy_entrance(k, slug, msg="DUMMY"):
|
|||||||
if ent:
|
if ent:
|
||||||
ent.save() # must save to have id before foreign keys work.
|
ent.save() # must save to have id before foreign keys work.
|
||||||
try: # Now create a entrance slug ID
|
try: # Now create a entrance slug ID
|
||||||
EntranceSlug(entrance=ent, slug=slug, primary=False)
|
EntranceSlug(entrance=ent, slug=slug)
|
||||||
except:
|
except:
|
||||||
message = f" ! {k:11s} {msg}-{slug} entrance create failure"
|
message = f" ! {k:11s} {msg}-{slug} entrance create failure"
|
||||||
DataIssue.objects.create(parser="caves", message=message, url=f"{slug}")
|
DataIssue.objects.create(parser="caves", message=message, url=f"{slug}")
|
||||||
print(message)
|
print(message)
|
||||||
|
|
||||||
ent.cached_primary_slug = slug
|
ent.cached_slug = slug
|
||||||
ent.filename = slug + ".html"
|
ent.filename = slug + ".html"
|
||||||
ent.save()
|
ent.save()
|
||||||
return ent
|
return ent
|
||||||
@ -362,13 +362,12 @@ def readentrance(filename):
|
|||||||
bearings=bearings[0],
|
bearings=bearings[0],
|
||||||
url=url[0],
|
url=url[0],
|
||||||
filename=filename,
|
filename=filename,
|
||||||
cached_primary_slug=slugs[0],
|
cached_slug=slugs[0],
|
||||||
)
|
)
|
||||||
primary = True
|
|
||||||
for slug in slugs:
|
for slug in slugs:
|
||||||
# print("entrance slug:{} filename:{}".format(slug, filename))
|
# print("entrance slug:{} filename:{}".format(slug, filename))
|
||||||
try:
|
try:
|
||||||
EntranceSlug.objects.update_or_create(entrance=e, slug=slug, primary=primary)
|
EntranceSlug.objects.update_or_create(entrance=e, slug=slug)
|
||||||
except:
|
except:
|
||||||
# need to cope with duplicates
|
# need to cope with duplicates
|
||||||
message = f" ! FAILED to get precisely one ENTRANCE when updating using: cave_entrance/{filename}"
|
message = f" ! FAILED to get precisely one ENTRANCE when updating using: cave_entrance/{filename}"
|
||||||
@ -383,7 +382,6 @@ def readentrance(filename):
|
|||||||
if k.slug() is not None:
|
if k.slug() is not None:
|
||||||
print(" ! - OVERWRITING this one: slug:" + str(k.slug()))
|
print(" ! - OVERWRITING this one: slug:" + str(k.slug()))
|
||||||
k.notes = "DUPLICATE entrance found on import. Please fix\n" + k.notes
|
k.notes = "DUPLICATE entrance found on import. Please fix\n" + k.notes
|
||||||
primary = False
|
|
||||||
# else: # more than one item in long list. But this is not an error, and the max and min have been checked by getXML
|
# else: # more than one item in long list. But this is not an error, and the max and min have been checked by getXML
|
||||||
# slug = Path(filename).stem
|
# slug = Path(filename).stem
|
||||||
# message = f' ! ABORT loading this entrance. in "{filename}"'
|
# message = f' ! ABORT loading this entrance. in "{filename}"'
|
||||||
|
@ -8,17 +8,17 @@
|
|||||||
<h2 id="cmult">Entrances</h2>
|
<h2 id="cmult">Entrances</h2>
|
||||||
<table>
|
<table>
|
||||||
<tr><th>ent</th>
|
<tr><th>ent</th>
|
||||||
<th>cached_primary_slug</th>
|
<th>cached_slug</th>
|
||||||
<th>N slugs</th>
|
<th>N slugs</th>
|
||||||
<th>slugs</th>
|
<th>slugs</th>
|
||||||
</tr>
|
</tr>
|
||||||
{% for ent in ents %}
|
{% for ent in ents %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
{{ent}}
|
#{{ent.id}} {{ent}}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ent.cached_primary_slug}}
|
{{ent.cached_slug}}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ent.entranceslug_set.all|length }}
|
{{ent.entranceslug_set.all|length }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user