umap-project 2.8.0a1__py3-none-any.whl → 2.8.0a2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

umap/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION = "2.8.0a1"
1
+ VERSION = "2.8.0a2"
@@ -8,7 +8,7 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2024-12-11 17:05+0000\n"
11
+ "POT-Creation-Date: 2024-12-13 08:26+0000\n"
12
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -617,57 +617,57 @@ msgstr ""
617
617
  msgid "View the map"
618
618
  msgstr ""
619
619
 
620
- #: views.py:820
620
+ #: views.py:821
621
621
  msgid "See full screen"
622
622
  msgstr ""
623
623
 
624
- #: views.py:963
624
+ #: views.py:964
625
625
  msgid "Map editors updated with success!"
626
626
  msgstr ""
627
627
 
628
- #: views.py:999
628
+ #: views.py:1000
629
629
  #, python-format
630
630
  msgid "The uMap edit link for your map: %(map_name)s"
631
631
  msgstr ""
632
632
 
633
- #: views.py:1002
633
+ #: views.py:1003
634
634
  #, python-format
635
635
  msgid "Here is your secret edit link: %(link)s"
636
636
  msgstr ""
637
637
 
638
- #: views.py:1009
638
+ #: views.py:1010
639
639
  #, python-format
640
640
  msgid "Can't send email to %(email)s"
641
641
  msgstr ""
642
642
 
643
- #: views.py:1012
643
+ #: views.py:1013
644
644
  #, python-format
645
645
  msgid "Email sent to %(email)s"
646
646
  msgstr ""
647
647
 
648
- #: views.py:1023
648
+ #: views.py:1024
649
649
  msgid "Only its owner can delete the map."
650
650
  msgstr ""
651
651
 
652
- #: views.py:1026
652
+ #: views.py:1027
653
653
  msgid "Map successfully deleted."
654
654
  msgstr ""
655
655
 
656
- #: views.py:1052
656
+ #: views.py:1053
657
657
  #, python-format
658
658
  msgid ""
659
659
  "Your map has been cloned! If you want to edit this map from another "
660
660
  "computer, please use this link: %(anonymous_url)s"
661
661
  msgstr ""
662
662
 
663
- #: views.py:1057
663
+ #: views.py:1058
664
664
  msgid "Congratulations, your map has been cloned!"
665
665
  msgstr ""
666
666
 
667
- #: views.py:1308
667
+ #: views.py:1309
668
668
  msgid "Layer successfully deleted."
669
669
  msgstr ""
670
670
 
671
- #: views.py:1330
671
+ #: views.py:1331
672
672
  msgid "Permissions updated with success!"
673
673
  msgstr ""
@@ -23,10 +23,13 @@ class Command(BaseCommand):
23
23
 
24
24
  def handle(self, *args, **options):
25
25
  days = options["days"]
26
- since = datetime.utcnow() - timedelta(days=days)
26
+ since = (datetime.utcnow() - timedelta(days=days)).date()
27
27
  print(f"Deleting map in trash since {since}")
28
28
  maps = Map.objects.filter(share_status=Map.DELETED, modified_at__lt=since)
29
29
  for map in maps:
30
+ map_id = map.id
31
+ map_name = map.name
32
+ trashed_at = map.modified_at.date()
30
33
  if not options["dry_run"]:
31
34
  map.delete()
32
- print(f"Deleted map {map.name} ({map.id}), trashed on {map.modified_at}")
35
+ print(f"Deleted map {map_name} ({map_id}), trashed at {trashed_at}")
@@ -252,10 +252,11 @@ export class DataLayer extends ServerStored {
252
252
  }
253
253
 
254
254
  fromGeoJSON(geojson, sync = true) {
255
- this.addData(geojson, sync)
255
+ const features = this.addData(geojson, sync)
256
256
  this._geojson = geojson
257
257
  this.onDataLoaded()
258
258
  this.dataChanged()
259
+ return features
259
260
  }
260
261
 
261
262
  onDataLoaded() {
@@ -315,7 +316,7 @@ export class DataLayer extends ServerStored {
315
316
  const response = await this._umap.request.get(url)
316
317
  if (response?.ok) {
317
318
  this.clear()
318
- this._umap.formatter
319
+ return this._umap.formatter
319
320
  .parse(await response.text(), this.options.remoteData.format)
320
321
  .then((geojson) => this.fromGeoJSON(geojson))
321
322
  }
@@ -443,10 +444,11 @@ export class DataLayer extends ServerStored {
443
444
  try {
444
445
  // Do not fail if remote data is somehow invalid,
445
446
  // otherwise the layer becomes uneditable.
446
- this.makeFeatures(geojson, sync)
447
+ return this.makeFeatures(geojson, sync)
447
448
  } catch (err) {
448
449
  console.log('Error with DataLayer', this.id)
449
450
  console.error(err)
451
+ return []
450
452
  }
451
453
  }
452
454
 
@@ -463,10 +465,13 @@ export class DataLayer extends ServerStored {
463
465
  ? geojson
464
466
  : geojson.features || geojson.geometries
465
467
  if (!collection) return
468
+ const features = []
466
469
  this.sortFeatures(collection)
467
- for (const feature of collection) {
468
- this.makeFeature(feature, sync)
470
+ for (const featureJson of collection) {
471
+ const feature = this.makeFeature(featureJson, sync)
472
+ if (feature) features.push(feature)
469
473
  }
474
+ return features
470
475
  }
471
476
 
472
477
  makeFeature(geojson = {}, sync = true, id = null) {
@@ -503,31 +508,47 @@ export class DataLayer extends ServerStored {
503
508
  }
504
509
 
505
510
  async importRaw(raw, format) {
506
- this._umap.formatter
511
+ return this._umap.formatter
507
512
  .parse(raw, format)
508
513
  .then((geojson) => this.addData(geojson))
509
- .then(() => this.zoomTo())
510
- this.isDirty = true
514
+ .then((data) => {
515
+ if (data?.length) this.isDirty = true
516
+ return data
517
+ })
511
518
  }
512
519
 
513
- importFromFiles(files, type) {
514
- for (const f of files) {
515
- this.importFromFile(f, type)
520
+ readFile(f) {
521
+ return new Promise((resolve) => {
522
+ const reader = new FileReader()
523
+ reader.onloadend = () => resolve(reader.result)
524
+ reader.readAsText(f)
525
+ })
526
+ }
527
+
528
+ async importFromFiles(files, type) {
529
+ let all = []
530
+ for (const file of files) {
531
+ const features = await this.importFromFile(file, type)
532
+ if (features) {
533
+ all = all.concat(features)
534
+ }
516
535
  }
536
+ return new Promise((resolve) => {
537
+ resolve(all)
538
+ })
517
539
  }
518
540
 
519
- importFromFile(f, type) {
520
- const reader = new FileReader()
541
+ async importFromFile(file, type) {
521
542
  type = type || Utils.detectFileType(f)
522
- reader.readAsText(f)
523
- reader.onload = (e) => this.importRaw(e.target.result, type)
543
+ const raw = await this.readFile(file)
544
+ return this.importRaw(raw, type)
524
545
  }
525
546
 
526
547
  async importFromUrl(uri, type) {
527
548
  uri = this._umap.renderUrl(uri)
528
549
  const response = await this._umap.request.get(uri)
529
550
  if (response?.ok) {
530
- this.importRaw(await response.text(), type)
551
+ return this.importRaw(await response.text(), type)
531
552
  }
532
553
  }
533
554
 
@@ -930,9 +951,9 @@ export class DataLayer extends ServerStored {
930
951
  else this.hide()
931
952
  }
932
953
 
933
- zoomTo() {
954
+ zoomTo(bounds) {
934
955
  if (!this.isVisible()) return
935
- const bounds = this.layer.getBounds()
956
+ bounds = bounds || this.layer.getBounds()
936
957
  if (bounds.isValid()) {
937
958
  const options = { maxZoom: this.getOption('zoomTo') }
938
959
  this._leafletMap.fitBounds(bounds, options)
@@ -1,4 +1,8 @@
1
- import { DomEvent, DomUtil } from '../../vendors/leaflet/leaflet-src.esm.js'
1
+ import {
2
+ DomEvent,
3
+ DomUtil,
4
+ LatLngBounds,
5
+ } from '../../vendors/leaflet/leaflet-src.esm.js'
2
6
  import { uMapAlert as Alert } from '../components/alerts/alert.js'
3
7
  import { translate } from './i18n.js'
4
8
  import { SCHEMA } from './schema.js'
@@ -270,16 +274,12 @@ export default class Importer extends Utils.WithTemplate {
270
274
  }
271
275
 
272
276
  submit() {
273
- let hasErrors
274
277
  if (this.format === 'umap') {
275
- hasErrors = !this.full()
278
+ this.full()
276
279
  } else if (!this.url) {
277
- hasErrors = !this.copy()
280
+ this.copy()
278
281
  } else if (this.action) {
279
- hasErrors = !this[this.action]()
280
- }
281
- if (hasErrors === false) {
282
- Alert.info(translate('Data successfully imported!'))
282
+ this[this.action]()
283
283
  }
284
284
  }
285
285
 
@@ -294,8 +294,9 @@ export default class Importer extends Utils.WithTemplate {
294
294
  } else if (this.url) {
295
295
  this._umap.importFromUrl(this.url, this.format)
296
296
  }
297
+ this.onSuccess()
297
298
  } catch (e) {
298
- Alert.error(translate('Invalid umap data'))
299
+ this.onError(translate('Invalid umap data'))
299
300
  console.error(e)
300
301
  return false
301
302
  }
@@ -306,7 +307,7 @@ export default class Importer extends Utils.WithTemplate {
306
307
  return false
307
308
  }
308
309
  if (!this.format) {
309
- Alert.error(translate('Please choose a format'))
310
+ this.onError(translate('Please choose a format'))
310
311
  return false
311
312
  }
312
313
  const layer = this.layer
@@ -318,26 +319,65 @@ export default class Importer extends Utils.WithTemplate {
318
319
  layer.options.remoteData.proxy = true
319
320
  layer.options.remoteData.ttl = SCHEMA.ttl.default
320
321
  }
321
- layer.fetchRemoteData(true)
322
+ layer.fetchRemoteData(true).then((features) => {
323
+ if (features?.length) {
324
+ layer.zoomTo()
325
+ this.onSuccess()
326
+ } else {
327
+ this.onError()
328
+ }
329
+ })
322
330
  }
323
331
 
324
- copy() {
332
+ async copy() {
325
333
  // Format may be guessed from file later.
326
334
  // Usefull in case of multiple files with different formats.
327
335
  if (!this.format && !this.files.length) {
328
- Alert.error(translate('Please choose a format'))
336
+ this.onError(translate('Please choose a format'))
329
337
  return false
330
338
  }
339
+ let promise
331
340
  const layer = this.layer
332
341
  if (this.clear) layer.empty()
333
342
  if (this.files.length) {
334
- for (const file of this.files) {
335
- this._umap.processFileToImport(file, layer, this.format)
336
- }
343
+ promise = layer.importFromFiles(this.files, this.format)
337
344
  } else if (this.raw) {
338
- layer.importRaw(this.raw, this.format)
345
+ promise = layer.importRaw(this.raw, this.format)
339
346
  } else if (this.url) {
340
- layer.importFromUrl(this.url, this.format)
347
+ promise = layer.importFromUrl(this.url, this.format)
348
+ }
349
+ if (promise) promise.then((data) => this.onCopyFinished(layer, data))
350
+ }
351
+
352
+ onError(message = translate('No data has been found for import')) {
353
+ Alert.error(message)
354
+ }
355
+
356
+ onSuccess(count) {
357
+ if (count) {
358
+ Alert.success(translate('Successfully imported {count} feature(s)'), {
359
+ count: count,
360
+ })
361
+ } else {
362
+ Alert.success(translate('Data successfully imported!'))
363
+ }
364
+ }
365
+
366
+ onCopyFinished(layer, features) {
367
+ // undefined features means error, let original error message pop
368
+ if (!features) return
369
+ if (!features.length) {
370
+ this.onError()
371
+ } else {
372
+ const bounds = new LatLngBounds()
373
+ for (const feature of features) {
374
+ const featureBounds = feature.ui.getBounds
375
+ ? feature.ui.getBounds()
376
+ : feature.ui.getCenter()
377
+ bounds.extend(featureBounds)
378
+ }
379
+ this.onSuccess(features.length)
380
+ layer.zoomTo(bounds)
341
381
  }
342
382
  }
343
383
  }
@@ -316,12 +316,14 @@ export default class Umap extends ServerStored {
316
316
  dataUrl = this.renderUrl(dataUrl)
317
317
  dataUrl = this.proxyUrl(dataUrl)
318
318
  const datalayer = this.createDataLayer()
319
- await datalayer.importFromUrl(dataUrl, dataFormat)
319
+ await datalayer
320
+ .importFromUrl(dataUrl, dataFormat)
321
+ .then(() => datalayer.zoomTo())
320
322
  }
321
323
  } else if (data) {
322
324
  data = decodeURIComponent(data)
323
325
  const datalayer = this.createDataLayer()
324
- await datalayer.importRaw(data, dataFormat)
326
+ await datalayer.importRaw(data, dataFormat).then(() => datalayer.zoomTo())
325
327
  }
326
328
  }
327
329
 
@@ -1514,7 +1516,7 @@ export default class Umap extends ServerStored {
1514
1516
  processFileToImport(file, layer, type) {
1515
1517
  type = type || Utils.detectFileType(file)
1516
1518
  if (!type) {
1517
- U.Alert.error(
1519
+ Alert.error(
1518
1520
  translate('Unable to detect format of file {filename}', {
1519
1521
  filename: file.name,
1520
1522
  })
@@ -520,7 +520,9 @@ const locale = {
520
520
  "Import helpers": "Import helpers",
521
521
  "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
522
522
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
523
+ "Save draft": "Save draft",
524
+ "No data has been found for import": "No data has been found for import",
525
+ "Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)"
524
526
  }
525
527
  L.registerLocale("en", locale)
526
528
  L.setLocale("en")
@@ -520,5 +520,7 @@
520
520
  "Import helpers": "Import helpers",
521
521
  "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
522
522
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
523
+ "Save draft": "Save draft",
524
+ "No data has been found for import": "No data has been found for import",
525
+ "Successfully imported {count} feature(s)": "Successfully imported {count} feature(s)"
524
526
  }
@@ -520,7 +520,9 @@ const locale = {
520
520
  "Import helpers": "Assistants d'import",
521
521
  "Import helpers will fill the URL field for you.": "Les assistants d'import vont renseigner le champ URL pour vous.",
522
522
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Enregistrer le brouillon"
523
+ "Save draft": "Enregistrer le brouillon",
524
+ "No data has been found for import": "Aucunes données à importer",
525
+ "Successfully imported {count} feature(s)": "{count} élément(s) ajouté(s) à la carte"
524
526
  }
525
527
  L.registerLocale("fr", locale)
526
528
  L.setLocale("fr")
@@ -520,5 +520,7 @@
520
520
  "Import helpers": "Assistants d'import",
521
521
  "Import helpers will fill the URL field for you.": "Les assistants d'import vont renseigner le champ URL pour vous.",
522
522
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Enregistrer le brouillon"
523
+ "Save draft": "Enregistrer le brouillon",
524
+ "No data has been found for import": "Aucunes données à importer",
525
+ "Successfully imported {count} feature(s)": "{count} élément(s) ajouté(s) à la carte"
524
526
  }
umap/views.py CHANGED
@@ -452,27 +452,27 @@ showcase = MapsShowCase.as_view()
452
452
 
453
453
 
454
454
  def validate_url(request):
455
- assert request.method == "GET"
455
+ assert request.method == "GET", "Wrong HTTP method"
456
456
  url = request.GET.get("url")
457
- assert url
457
+ assert url, "Missing URL"
458
458
  try:
459
459
  URLValidator(url)
460
- except ValidationError:
461
- raise AssertionError()
462
- assert "HTTP_REFERER" in request.META
460
+ except ValidationError as err:
461
+ raise AssertionError(err)
462
+ assert "HTTP_REFERER" in request.META, "Missing HTTP_REFERER"
463
463
  referer = urlparse(request.META.get("HTTP_REFERER"))
464
464
  toproxy = urlparse(url)
465
465
  local = urlparse(settings.SITE_URL)
466
- assert toproxy.hostname
467
- assert referer.hostname == local.hostname
468
- assert toproxy.hostname != "localhost"
469
- assert toproxy.netloc != local.netloc
466
+ assert toproxy.hostname, "No hostname"
467
+ assert referer.hostname == local.hostname, f"{referer.hostname} != {local.hostname}"
468
+ assert toproxy.hostname != "localhost", "Invalid localhost target"
469
+ assert toproxy.netloc != local.netloc, "Invalid netloc"
470
470
  try:
471
471
  # clean this when in python 3.4
472
472
  ipaddress = socket.gethostbyname(toproxy.hostname)
473
- except:
474
- raise AssertionError()
475
- assert not PRIVATE_IP.match(ipaddress)
473
+ except Exception as err:
474
+ raise AssertionError(err)
475
+ assert not PRIVATE_IP.match(ipaddress), "Private IP"
476
476
  return url
477
477
 
478
478
 
@@ -480,7 +480,8 @@ class AjaxProxy(View):
480
480
  def get(self, *args, **kwargs):
481
481
  try:
482
482
  url = validate_url(self.request)
483
- except AssertionError:
483
+ except AssertionError as err:
484
+ print(f"AjaxProxy: {err}")
484
485
  return HttpResponseBadRequest()
485
486
  try:
486
487
  ttl = int(self.request.GET.get("ttl"))
@@ -1168,7 +1169,7 @@ class DataLayerView(BaseDetailView):
1168
1169
  # (no gzip/cache-control/If-Modified-Since/If-None-Match)
1169
1170
  data = self.filedata
1170
1171
  response = HttpResponse(data, content_type="application/geo+json")
1171
- response["X-Datalayer-Version"] = self.fileversion
1172
+ response["X-Datalayer-Version"] = self.fileversion
1172
1173
  return response
1173
1174
 
1174
1175
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: umap-project
3
- Version: 2.8.0a1
3
+ Version: 2.8.0a2
4
4
  Summary: Create maps with OpenStreetMap layers in a minute and embed them in your site.
5
5
  Author-email: Yohan Boniface <yb@enix.org>
6
6
  Maintainer-email: David Larlet <david@larlet.fr>
@@ -1,4 +1,4 @@
1
- umap/__init__.py,sha256=GQ1xPGwR_--i3-Pg0nkWcPAdD7uLAEBfX3aVZiWlVc0,20
1
+ umap/__init__.py,sha256=0_15wRSL9SkA85FevSlxLo6H6SAySXR0t2XW5TtIIQA,20
2
2
  umap/admin.py,sha256=LoQytPGK6pLBqZ5QgQ9DIPAxhTG31cTtHOCqO9BY5S4,2645
3
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
4
  umap/asgi.py,sha256=CuVSNBwNb4AvuaD_Ha3ehtvf-c46ijZoVOSoP6WhXp8,432
@@ -12,7 +12,7 @@ umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
12
12
  umap/models.py,sha256=4SzhKdyWXfJMdzEpCyVPnzbTT-TGbDusAy7SP_8UuwI,17929
13
13
  umap/urls.py,sha256=LA3zxyu-GDo8kVqdyU7_bdbDGhDJV8_yFW4oEPTXw4s,7559
14
14
  umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
15
- umap/views.py,sha256=xSKBdbRFtoA0RXm5qCrVAoir4gm0_rN7d-70Nzbg0pQ,46016
15
+ umap/views.py,sha256=hMBxefWDUZQUVUb5C477cVyL7hp7OfppZlu4_sw9L4o,46266
16
16
  umap/websocket_server.py,sha256=D9sTHhKg0DG37b8bw7KWTKMDc6TPyTkNLCVkh2mlFOo,6604
17
17
  umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
18
18
  umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
@@ -37,7 +37,7 @@ umap/locale/de/LC_MESSAGES/django.po,sha256=kVaio9t9AKF3vBcZJ-Q2P6Ua90MIwbIRCABW
37
37
  umap/locale/el/LC_MESSAGES/django.mo,sha256=bJOH3_UQZoEfYi9mrsWHZfV6fVhMgnuiNQ_Dc_xOcuA,15058
38
38
  umap/locale/el/LC_MESSAGES/django.po,sha256=ruqAlyQryr7Ip5aTbjEwH6eumb_b8JS-u6qcl9yjN04,22180
39
39
  umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
40
- umap/locale/en/LC_MESSAGES/django.po,sha256=RCM-hylLym43OQaDWCABqnHAyip57gwj4P_UNfyr3oU,13627
40
+ umap/locale/en/LC_MESSAGES/django.po,sha256=Ht498JmD3Zp08W7qpOjJBTngf6oSMW2pR5dT3OneL5Q,13628
41
41
  umap/locale/es/LC_MESSAGES/django.mo,sha256=rblKBhki-DnIAVxbo2UCYQCIte1dqRZDyAjDQCJgKug,11985
42
42
  umap/locale/es/LC_MESSAGES/django.po,sha256=E0xSceHtg4CkgSHT2mFPRdiBP9n8c-PnKDXHQgAgStA,18690
43
43
  umap/locale/et/LC_MESSAGES/django.mo,sha256=Y5ulivMuS2IOR9ITeWRx6PBynPn6LBFUizrFWRraR1s,5051
@@ -114,7 +114,7 @@ umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
114
  umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
115
  umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
116
116
  umap/management/commands/clean_tilelayer.py,sha256=Rcc2PibUUreU0jUZMtUlyqVvgbQMLMuuCZ2tkrzRqHU,5712
117
- umap/management/commands/empty_trash.py,sha256=guGnu72EYOiRtS-pLjxByFOmFtq1Ra0JR0SWBOZDOsY,1024
117
+ umap/management/commands/empty_trash.py,sha256=POmBXloLoPZ_6MFbgsDz4YOKGmEwIWrvMt5v5QMi7ZM,1136
118
118
  umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUeY2SlOrTXS42tE0-bs,1281
119
119
  umap/management/commands/import_pictograms.py,sha256=RuQDCoiKamba4l3fZUGAXRyd-3zwWWT5c5AhgDvs7AQ,2369
120
120
  umap/management/commands/migrate_to_S3.py,sha256=GBGnydc107v75NYsQfMLLO7Jx0i2g7EKEfE00YZVb1M,1130
@@ -237,7 +237,7 @@ umap/static/umap/js/modules/formatter.js,sha256=drbIxbDGrcHOUtzJtC4B5iKpm8-YNg_b
237
237
  umap/static/umap/js/modules/global.js,sha256=7jm6NLZ5PM2yrkbWHdWkoDFcevgIAMqE-vZQRXcIgEo,934
238
238
  umap/static/umap/js/modules/help.js,sha256=0vsDTFGcPz2coG_LBeGPSUQupZTFUes6kCwQCPBUjuU,9694
239
239
  umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
240
- umap/static/umap/js/modules/importer.js,sha256=hfFXTXtyCueeEZrs-cq6EAnicgRANzijbhoihYFT-RE,10000
240
+ umap/static/umap/js/modules/importer.js,sha256=6wqs2z-jrfcwvSFvmPuJWDnP9s1dUEe2Oi1ili3FZ0M,10961
241
241
  umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
242
242
  umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
243
243
  umap/static/umap/js/modules/permissions.js,sha256=RxKrfjLo6hdGuAvwQrzUUJJznD5RkmSkAHVMidA9iKQ,8497
@@ -248,11 +248,11 @@ umap/static/umap/js/modules/schema.js,sha256=RuBO5obpccTPH_iPXRU-lwyj1SoX9bp619t
248
248
  umap/static/umap/js/modules/share.js,sha256=s1X59VpMqut_Vhg7l7LV2IZDm9obRVbDH9wZbG5kX3c,7182
249
249
  umap/static/umap/js/modules/slideshow.js,sha256=zcRzOMkJvhps1npGRjHkdK4Ce3UkqOsv8OsDgQWO-bg,3567
250
250
  umap/static/umap/js/modules/tableeditor.js,sha256=6p2YE2-NF4NkwLDQkqrl90P_PwOYdFao0-ac_AkOwWs,9854
251
- umap/static/umap/js/modules/umap.js,sha256=n509OKscghGTM_sXlvcobVdJG36NRpeQA5pIlmEaUDI,49989
251
+ umap/static/umap/js/modules/umap.js,sha256=VSU8p94tLKZBGeL1NWWmrsT81RTZNW1oROOxsUqeAxI,50071
252
252
  umap/static/umap/js/modules/urls.js,sha256=76cFqycj2O8huuoYYBvxnVt2Fc2UDbgrRsiv6lQmcSY,890
253
253
  umap/static/umap/js/modules/utils.js,sha256=fYzo-WjRzDZsdjv3CI9U4Es3AqOfuBCJuRq997m2EfQ,12309
254
254
  umap/static/umap/js/modules/data/features.js,sha256=rd5WpZoai3u4baWxi_8m2vtwGLuI-9hdH4PGnrjqg_4,31667
255
- umap/static/umap/js/modules/data/layer.js,sha256=WhB0ZSaNpI082JKL28EYLjY2fhoIXdOhMwn8JDuqtqM,34530
255
+ umap/static/umap/js/modules/data/layer.js,sha256=uLEVGp3gFq7obA9Ij-RVz-VWqo9SwLQd1uBzmaKYo9o,35101
256
256
  umap/static/umap/js/modules/importers/cadastrefr.js,sha256=KHqxHleFRFzNi98gegvUM1R6eJorAGGcMft_ktUg-ug,2262
257
257
  umap/static/umap/js/modules/importers/communesfr.js,sha256=6q6ilmYhhuSmgdrvfTyEDNyMLbc9J9Bt8VMZVXB8ZOA,1723
258
258
  umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
@@ -297,8 +297,8 @@ umap/static/umap/locale/de.js,sha256=wUAKh3L1vhrHH819XeKeLalw8GOhjh5G-yErBUDY4R0
297
297
  umap/static/umap/locale/de.json,sha256=cM1Q4WS2qCtQebyUHnHmblS4aj9j4TooDwk_nSQ8pqs,32723
298
298
  umap/static/umap/locale/el.js,sha256=aK9fBOMEaQf-a3IU3lEhJ5qeDNRtHIR5k_WD0n09d88,41377
299
299
  umap/static/umap/locale/el.json,sha256=G3O0k62tIsf654xUZO0x988aKIAo0zZCHzRibDxpjo8,41312
300
- umap/static/umap/locale/en.js,sha256=3zFUHDjehyf1qhY9NcO3SkiTY0cdEinrpIOSez3upRw,30089
301
- umap/static/umap/locale/en.json,sha256=9EbcClQgnn14besF7LctqoxAWPR4qvnRiMIoN3XeuHY,30024
300
+ umap/static/umap/locale/en.js,sha256=89UHZNqyNhy86A0lPxmFzsw7UYV-f6hHEwnYg4yzQAw,30259
301
+ umap/static/umap/locale/en.json,sha256=U5vQn1-kXUsmAm5tTN2-NbC6UulPa0ERVfs4JQywAwo,30194
302
302
  umap/static/umap/locale/en_US.json,sha256=E8ScCCs3lXiHOJPqTNxd7maDyhkkF3GNqN-r2p27lLQ,29813
303
303
  umap/static/umap/locale/es.js,sha256=xYnvTBRzycvrYhEA5yr8uFV8aeCoVLPsJegdccDdjQg,32933
304
304
  umap/static/umap/locale/es.json,sha256=-JF4DZ5B4yk2Qvhj4FsEhZs0UybS0m0t2roH0cvnPXw,32868
@@ -310,8 +310,8 @@ umap/static/umap/locale/fa_IR.js,sha256=qn-Oc23zaIz_ua3DAvvVljn--jn2fR7eaMF-bsyp
310
310
  umap/static/umap/locale/fa_IR.json,sha256=ql1IvgBcDHiAD6ho500PwRE2y8x9gSfsKq96IQgAZTw,38633
311
311
  umap/static/umap/locale/fi.js,sha256=wyW-hHzNfKHoPKata6sw_TBx3Grz227eXscuabAGbwQ,30915
312
312
  umap/static/umap/locale/fi.json,sha256=lDQ6_RxXtcNI_kahg8XBWlVYUE-MvgUqJA_Ue6DJj3c,30850
313
- umap/static/umap/locale/fr.js,sha256=qcNce3E8OnRxRQwi8bRm9XhcixmTGtZrdEN-4fjcPSA,32978
314
- umap/static/umap/locale/fr.json,sha256=RgemOdmvz98TVih78sXjhJ-D69KFE5xk12yr-75cMEo,32913
313
+ umap/static/umap/locale/fr.js,sha256=VLtQz8W6InWu90Ccxx3gJZwuVQ2AutTKImvjdbrNv3U,33146
314
+ umap/static/umap/locale/fr.json,sha256=DzTqe44_JAMHYiNFqGbF3VLHmoXSoavJXcvRegigw-8,33081
315
315
  umap/static/umap/locale/gl.js,sha256=ninZHPi3xo8aatt9G6zBNXCX6br0Na7-t20JJT0XDX4,31478
316
316
  umap/static/umap/locale/gl.json,sha256=b99nZnWgtOZf1Uj-WUCPnWLrcvg5IGDYCV0wc7ntgb8,31413
317
317
  umap/static/umap/locale/he.js,sha256=jljbzL6uctwBN5fzwQM4lFZ6ZLXKzldUeDTyzQTSyqU,33381
@@ -572,8 +572,8 @@ umap/tests/integration/test_view_marker.py,sha256=ZLS6-GOWYpjeoYGHiHa7HesXJTLu9w
572
572
  umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
573
573
  umap/tests/integration/test_view_polyline.py,sha256=aJoXKmLhJaN0yhPdDCVskZNGx3q3mLDkjVPhZ30cadA,13959
574
574
  umap/tests/integration/test_websocket_sync.py,sha256=Xjn8z7Gj2PAmPmLkMTsHztFmhzsfyE3vg-wfewpA2I4,15511
575
- umap_project-2.8.0a1.dist-info/METADATA,sha256=MRv8Aho0zddPOihVvrm8zDHu-JYcjSARVr8ZlsO8Shg,2993
576
- umap_project-2.8.0a1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
577
- umap_project-2.8.0a1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
578
- umap_project-2.8.0a1.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
579
- umap_project-2.8.0a1.dist-info/RECORD,,
575
+ umap_project-2.8.0a2.dist-info/METADATA,sha256=Z8IXnRgLp4AOUzTAkfRUB5hatnauca2C0V7NrLZieHk,2993
576
+ umap_project-2.8.0a2.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
577
+ umap_project-2.8.0a2.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
578
+ umap_project-2.8.0a2.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
579
+ umap_project-2.8.0a2.dist-info/RECORD,,