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

expung imagekit and clean import lists

This commit is contained in:
Philip Sargent 2020-05-28 01:38:35 +01:00
parent 6cc578435c
commit cb4128436c
7 changed files with 20 additions and 81 deletions

View File

@ -1,22 +0,0 @@
from imagekit.specs import ImageSpec
from imagekit import processors
class ResizeThumb(processors.Resize):
width = 100
crop = False
class ResizeDisplay(processors.Resize):
width = 600
#class EnhanceThumb(processors.Adjustment):
#contrast = 1.2
#sharpness = 2
class Thumbnail(ImageSpec):
access_as = 'thumbnail_image'
pre_cache = True
processors = [ResizeThumb]
class Display(ImageSpec):
increment_count = True
processors = [ResizeDisplay]

View File

@ -148,7 +148,7 @@ class Person(TroggleModel):
return "%s %s" % (self.first_name, self.last_name) return "%s %s" % (self.first_name, self.last_name)
return self.first_name return self.first_name
def notability(self): def notability(self):
notability = Decimal(0) notability = Decimal(0)
max_expo_val = 0 max_expo_val = 0
@ -172,15 +172,6 @@ class Person(TroggleModel):
return self.personexpedition_set.order_by('-expedition')[0] return self.personexpedition_set.order_by('-expedition')[0]
def last(self): def last(self):
return self.personexpedition_set.order_by('expedition')[0] return self.personexpedition_set.order_by('expedition')[0]
#def Sethref(self):
#if self.last_name:
#self.href = self.first_name.lower() + "_" + self.last_name.lower()
#self.orderref = self.last_name + " " + self.first_name
#else:
# self.href = self.first_name.lower()
#self.orderref = self.first_name
#self.notability = 0.0 # set temporarily
class PersonExpedition(TroggleModel): class PersonExpedition(TroggleModel):
"""Person's attendance to one Expo """Person's attendance to one Expo
@ -412,12 +403,10 @@ class Cave(TroggleModel):
url = models.CharField(max_length=200,blank=True,null=True) url = models.CharField(max_length=200,blank=True,null=True)
filename = models.CharField(max_length=200) filename = models.CharField(max_length=200)
#class Meta: #class Meta:
# unique_together = (("area", "kataster_number"), ("area", "unofficial_number")) # unique_together = (("area", "kataster_number"), ("area", "unofficial_number"))
# FIXME Kataster Areas and CUCC defined sub areas need seperating # FIXME Kataster Areas and CUCC defined sub areas need seperating
#href = models.CharField(max_length=100) #href = models.CharField(max_length=100)
class Meta: class Meta:
@ -791,33 +780,6 @@ class QM(TroggleModel):
def wiki_link(self): def wiki_link(self):
return "%s%s%s" % ('[[QM:',self.code(),']]') return "%s%s%s" % ('[[QM:',self.code(),']]')
#photoFileStorage = FileSystemStorage(location=settings.PHOTOS_ROOT, base_url=settings.PHOTOS_URL)
#class DPhoto(TroggleImageModel):
#caption = models.CharField(max_length=1000,blank=True,null=True)
#contains_logbookentry = models.ForeignKey(LogbookEntry,blank=True,null=True)
#contains_person = models.ManyToManyField(Person,blank=True,null=True)
# replace link to copied file with link to original file location
#file = models.ImageField(storage=photoFileStorage, upload_to='.',)
#is_mugshot = models.BooleanField(default=False)
#contains_cave = models.ForeignKey(Cave,blank=True,null=True)
#contains_entrance = models.ForeignKey(Entrance, related_name="photo_file",blank=True,null=True)
#nearest_survey_point = models.ForeignKey(SurveyStation,blank=True,null=True)
#nearest_QM = models.ForeignKey(QM,blank=True,null=True)
#lon_utm = models.FloatField(blank=True,null=True)
#lat_utm = models.FloatField(blank=True,null=True)
# class IKOptions:
# spec_module = 'core.imagekit_specs'
# cache_dir = 'thumbs'
# image_field = 'file'
#content_type = models.ForeignKey(ContentType)
#object_id = models.PositiveIntegerField()
#location = generic.GenericForeignKey('content_type', 'object_id')
# def __str__(self):
# return self.caption
scansFileStorage = FileSystemStorage(location=settings.SURVEY_SCANS, base_url=settings.SURVEYS_URL) scansFileStorage = FileSystemStorage(location=settings.SURVEY_SCANS, base_url=settings.SURVEYS_URL)
def get_scan_path(instance, filename): def get_scan_path(instance, filename):
year=instance.survey.expedition.year year=instance.survey.expedition.year
@ -837,10 +799,6 @@ class ScannedImage(TroggleImageModel):
lon_utm = models.FloatField(blank=True,null=True) lon_utm = models.FloatField(blank=True,null=True)
lat_utm = models.FloatField(blank=True,null=True) lat_utm = models.FloatField(blank=True,null=True)
class IKOptions:
spec_module = 'core.imagekit_specs'
cache_dir = 'thumbs'
image_field = 'file'
#content_type = models.ForeignKey(ContentType) #content_type = models.ForeignKey(ContentType)
#object_id = models.PositiveIntegerField() #object_id = models.PositiveIntegerField()
#location = generic.GenericForeignKey('content_type', 'object_id') #location = generic.GenericForeignKey('content_type', 'object_id')

View File

@ -45,5 +45,4 @@ def _resolves(url):
resolve(url) resolve(url)
return True return True
except http.Http404: except http.Http404:
return False return False

View File

@ -1,11 +1,13 @@
''' '''
This module is the part of troggle that parses descriptions of cave parts (subcaves) from the legacy html files and saves them in the troggle database as instances of the model Subcave. Unfortunately, this parser can not be very flexible because the legacy format is poorly structured. This module is the part of troggle that parses descriptions of cave parts (subcaves) from the legacy html files and saves them in the troggle database as instances of the model Subcave. Unfortunately, this parser can not be very flexible because the legacy format is poorly structured.
''' '''
import sys
import os
import re
import logging
import sys, os
import os, re, logging
from django.conf import settings from django.conf import settings
from troggle.core.models import Subcave, Cave from troggle.core.models import Subcave, Cave
from utils import save_carefully from utils import save_carefully

View File

@ -1,12 +1,14 @@
#!/usr/bin/python #!/usr/bin/python
from .settings import *
import sys import sys
import os import os
import string import string
import re import re
import urllib.parse import urllib.parse
import django import django
from .settings import *
pathsdict={ pathsdict={
"ADMIN_MEDIA_PREFIX" : ADMIN_MEDIA_PREFIX, "ADMIN_MEDIA_PREFIX" : ADMIN_MEDIA_PREFIX,
"ADMIN_MEDIA_PREFIX" : ADMIN_MEDIA_PREFIX, "ADMIN_MEDIA_PREFIX" : ADMIN_MEDIA_PREFIX,
@ -57,4 +59,3 @@ for p in bycodes:
byvals = sorted(pathsdict, key=pathsdict.__getitem__) byvals = sorted(pathsdict, key=pathsdict.__getitem__)
for p in byvals: for p in byvals:
print(pathsdict[p] , sep2, p) print(pathsdict[p] , sep2, p)

10
urls.py
View File

@ -1,15 +1,15 @@
from django.conf.urls import *
from django.conf import settings from django.conf import settings
from django.conf.urls import *
from django.views.generic.edit import UpdateView
from django.views.generic.list import ListView
from django.contrib import admin
from .core.views import * # flat import from .core.views import * # flat import
from .core.views_other import * from .core.views_other import *
from .core.views_caves import * from .core.views_caves import *
from .core.views_survex import * from .core.views_survex import *
from .core.models import * from .core.models import *
from django.views.generic.edit import UpdateView
from django.contrib import admin
from django.views.generic.list import ListView
from django.contrib import admin
admin.autodiscover() admin.autodiscover()

View File

@ -1,6 +1,9 @@
import random
import re
import logging
from django.conf import settings from django.conf import settings
from django.shortcuts import render from django.shortcuts import render
import random, re, logging
from troggle.core.models import CaveDescription from troggle.core.models import CaveDescription
def weighted_choice(lst): def weighted_choice(lst):
@ -159,6 +162,4 @@ def html_to_wiki(text, codec = "utf-8"):
#substitutions #substitutions
for regex, repl in re_subs: for regex, repl in re_subs:
out = regex.sub(repl, out) out = regex.sub(repl, out)
return out return out