mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2026-04-11 17:28:44 +01:00
WORKING Dj2.2.24 & 2.2.25 py3.7
This commit is contained in:
@@ -34,7 +34,7 @@ class SimpleTest(SimpleTestCase):
|
||||
def test_import_Cave(self):
|
||||
from troggle.core.models.caves import Cave
|
||||
def test_import_parsers_surveys(self):
|
||||
from PIL import Image
|
||||
#from PIL import Image
|
||||
from troggle.core.utils import save_carefully
|
||||
from functools import reduce
|
||||
def test_import_parsers_survex(self):
|
||||
|
||||
@@ -56,7 +56,7 @@ def writetrogglefile(filepath, filecontent):
|
||||
#os.chmod(filepath, 0o664) # set file permissions to rw-rw-r--
|
||||
# should replace .call with .run and capture_output=True
|
||||
call([git, "add", filename], cwd=cwd)
|
||||
call([git, "commit", "-m", 'Online cave or entrance edit'], cwd=cwd)
|
||||
call([git, "commit", "-m", 'Troggle online cave or entrance edit'], cwd=cwd)
|
||||
|
||||
|
||||
class Area(TroggleModel):
|
||||
|
||||
@@ -5,7 +5,6 @@ import settings
|
||||
import urllib.parse
|
||||
import subprocess
|
||||
from pathlib import Path
|
||||
#from PIL import Image, ImageDraw, ImageFont
|
||||
|
||||
from django import forms
|
||||
from django.conf import settings
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
import os
|
||||
import string
|
||||
import re
|
||||
#import settings
|
||||
import urllib.parse
|
||||
# from pathlib import Path
|
||||
from PIL import Image, ImageDraw, ImageFont
|
||||
|
||||
from django.http import HttpResponse
|
||||
from django.shortcuts import render
|
||||
@@ -18,7 +16,7 @@ from troggle.parsers.survex import MapLocations
|
||||
''' Generates the prospecting guide document.
|
||||
|
||||
Also produces the overlay of points on top of a prospecting_image map - to be deleted.
|
||||
I have tried to make this work with the version of PIL we have installed but something is missing still.
|
||||
Not working with recent PIL aka Pillow image package - removed.
|
||||
'''
|
||||
|
||||
AREANAMES = [
|
||||
@@ -143,7 +141,7 @@ for FONT in [
|
||||
TEXTSIZE = 16
|
||||
CIRCLESIZE =8
|
||||
LINEWIDTH = 2
|
||||
myFont = ImageFont.truetype(FONT, TEXTSIZE)
|
||||
#myFont = ImageFont.truetype(FONT, TEXTSIZE) # disabled as not importing PIL
|
||||
#print(f' - myFont {myFont} {FONT} {TEXTSIZE}')
|
||||
|
||||
def mungecoord(x, y, mapcode, img):
|
||||
|
||||
Reference in New Issue
Block a user