umap-project 2.7.0b3__py3-none-any.whl → 2.7.2__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.

Files changed (53) hide show
  1. umap/__init__.py +1 -1
  2. umap/asgi.py +15 -0
  3. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/es/LC_MESSAGES/django.po +134 -128
  5. umap/models.py +2 -1
  6. umap/settings/base.py +1 -1
  7. umap/static/umap/css/importers.css +4 -0
  8. umap/static/umap/img/16.svg +1 -184
  9. umap/static/umap/img/24-white.svg +1 -0
  10. umap/static/umap/img/24.svg +1 -0
  11. umap/static/umap/img/importers/cadastrefr.svg +23 -0
  12. umap/static/umap/img/source/16.svg +753 -200
  13. umap/static/umap/img/source/24-white.svg +3 -2
  14. umap/static/umap/img/source/24.svg +3 -2
  15. umap/static/umap/js/modules/caption.js +10 -4
  16. umap/static/umap/js/modules/data/layer.js +26 -14
  17. umap/static/umap/js/modules/formatter.js +5 -1
  18. umap/static/umap/js/modules/importer.js +3 -0
  19. umap/static/umap/js/modules/importers/cadastrefr.js +62 -0
  20. umap/static/umap/js/modules/importers/communesfr.js +2 -2
  21. umap/static/umap/js/modules/rendering/layers/classified.js +1 -0
  22. umap/static/umap/js/modules/rendering/ui.js +3 -1
  23. umap/static/umap/js/modules/share.js +1 -3
  24. umap/static/umap/js/modules/slideshow.js +1 -1
  25. umap/static/umap/js/modules/sync/engine.js +14 -8
  26. umap/static/umap/js/modules/sync/hlc.js +3 -3
  27. umap/static/umap/js/modules/sync/updaters.js +14 -2
  28. umap/static/umap/js/modules/ui/panel.js +12 -1
  29. umap/static/umap/js/modules/utils.js +24 -4
  30. umap/static/umap/js/umap.controls.js +42 -11
  31. umap/static/umap/js/umap.core.js +1 -1
  32. umap/static/umap/js/umap.js +11 -11
  33. umap/static/umap/locale/ca.js +8 -4
  34. umap/static/umap/locale/ca.json +8 -4
  35. umap/static/umap/locale/en.js +2 -1
  36. umap/static/umap/locale/en.json +2 -1
  37. umap/static/umap/locale/es.js +330 -319
  38. umap/static/umap/locale/es.json +330 -319
  39. umap/static/umap/locale/fr.js +2 -1
  40. umap/static/umap/locale/fr.json +2 -1
  41. umap/static/umap/map.css +27 -7
  42. umap/static/umap/unittests/hlc.js +2 -0
  43. umap/static/umap/unittests/utils.js +24 -0
  44. umap/static/umap/vars.css +2 -1
  45. umap/static/umap/vendors/csv2geojson/csv2geojson.js +13 -8
  46. umap/tests/integration/test_caption.py +3 -3
  47. umap/tests/integration/test_edit_map.py +1 -1
  48. umap/tests/integration/test_import.py +33 -0
  49. {umap_project-2.7.0b3.dist-info → umap_project-2.7.2.dist-info}/METADATA +9 -6
  50. {umap_project-2.7.0b3.dist-info → umap_project-2.7.2.dist-info}/RECORD +53 -50
  51. {umap_project-2.7.0b3.dist-info → umap_project-2.7.2.dist-info}/WHEEL +0 -0
  52. {umap_project-2.7.0b3.dist-info → umap_project-2.7.2.dist-info}/entry_points.txt +0 -0
  53. {umap_project-2.7.0b3.dist-info → umap_project-2.7.2.dist-info}/licenses/LICENSE +0 -0
@@ -516,7 +516,8 @@ const locale = {
516
516
  "Manage collaborators": "Gérer les collaborateurs",
517
517
  "show/hide all layers": "montrer/masquer les calques",
518
518
  "zoom to data extent": "zoomer sur les données",
519
- "download visible data": "télécharger les données affichées"
519
+ "download visible data": "télécharger les données affichées",
520
+ "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} personne(s) actuellement connectée(s) à cette carte"
520
521
  }
521
522
  L.registerLocale("fr", locale)
522
523
  L.setLocale("fr")
@@ -516,5 +516,6 @@
516
516
  "Manage collaborators": "Gérer les collaborateurs",
517
517
  "show/hide all layers": "montrer/masquer les calques",
518
518
  "zoom to data extent": "zoomer sur les données",
519
- "download visible data": "télécharger les données affichées"
519
+ "download visible data": "télécharger les données affichées",
520
+ "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} personne(s) actuellement connectée(s) à cette carte"
520
521
  }
umap/static/umap/map.css CHANGED
@@ -500,7 +500,9 @@ ul.photon-autocomplete {
500
500
  }
501
501
  .leaflet-container .leaflet-control-edit-save,
502
502
  .leaflet-container .leaflet-control-edit-cancel,
503
- .leaflet-container .leaflet-control-edit-disable {
503
+ .leaflet-container .leaflet-control-edit-disable,
504
+ .leaflet-container .leaflet-control-connected-peers
505
+ {
504
506
  display: block;
505
507
  border: none;
506
508
  font-size: 12px;
@@ -510,9 +512,17 @@ ul.photon-autocomplete {
510
512
  line-height: 30px;
511
513
  padding: 0 20px;
512
514
  }
515
+ .leaflet-container .leaflet-control-connected-peers,
516
+ .dark [type="button"].leaflet-control-connected-peers:hover
517
+ {
518
+ background-color: var(--color-lightCyan);
519
+ color: var(--color-dark);
520
+ }
521
+
513
522
  .leaflet-container .leaflet-control-edit-disable:before,
514
523
  .leaflet-container .leaflet-control-edit-save:before,
515
- .leaflet-container .leaflet-control-edit-cancel:before {
524
+ .leaflet-container .leaflet-control-edit-cancel:before,
525
+ .leaflet-container .leaflet-control-connected-peers:before {
516
526
  display: inline-block;
517
527
  width: 19px;
518
528
  height: 24px;
@@ -523,9 +533,15 @@ ul.photon-autocomplete {
523
533
  content: ' ';
524
534
  text-align: center;
525
535
  }
536
+
537
+ .leaflet-container .leaflet-control-connected-peers:before {
538
+ background-image: url('./img/16.svg');
539
+ }
540
+
526
541
  .leaflet-container .leaflet-control-edit-disable span,
527
542
  .leaflet-container .leaflet-control-edit-save span,
528
- .leaflet-container .leaflet-control-edit-cancel span {
543
+ .leaflet-container .leaflet-control-edit-cancel span,
544
+ .leaflet-container .leaflet-control-connected-peers span{
529
545
  margin-inline-start: 10px;
530
546
  }
531
547
  .leaflet-container .leaflet-control-edit-save:before {
@@ -534,8 +550,12 @@ ul.photon-autocomplete {
534
550
  .leaflet-container .leaflet-control-edit-disable:before {
535
551
  background-position: -50px -25px;
536
552
  }
553
+ .leaflet-container .leaflet-control-connected-peers:before {
554
+ background-position: -2px -95px;
555
+ }
537
556
  .leaflet-container .leaflet-control-edit-cancel,
538
- .leaflet-container .leaflet-control-edit-disable {
557
+ .leaflet-container .leaflet-control-edit-disable,
558
+ .leaflet-container .leaflet-control-connected-peers{
539
559
  border: 0.5px solid rgba(153, 153, 153, 0.40);
540
560
  }
541
561
  .leaflet-container .leaflet-control-edit-cancel:hover,
@@ -980,18 +1000,18 @@ a.umap-control-caption,
980
1000
  vertical-align: middle;
981
1001
  }
982
1002
 
983
- .datalayer-legend {
1003
+ .caption-item {
984
1004
  color: #555;
985
1005
  padding: 6px 8px;
986
1006
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
987
1007
  border-radius: 1px;
988
1008
  }
989
- .datalayer-legend ul {
1009
+ .caption-item ul {
990
1010
  list-style-type: none;
991
1011
  padding: 0;
992
1012
  margin: 0;
993
1013
  }
994
- .datalayer-legend .circles-layer-legend {
1014
+ .caption-item .circles-layer-legend {
995
1015
  padding: var(--box-padding);
996
1016
  }
997
1017
  .circles-layer-legend li {
@@ -79,6 +79,8 @@ describe('HybridLogicalClock', () => {
79
79
 
80
80
  it('should increment nn when local and remote times are equal', () => {
81
81
  const now = Date.now()
82
+ // mock the clock to be the same time
83
+ sinon.useFakeTimers(now)
82
84
  clock = new HybridLogicalClock(now, 5, 'local')
83
85
  const result = clock.receive(`${now}:7:remote`)
84
86
  expect(result.walltime).to.be.at.least(now)
@@ -747,6 +747,30 @@ describe('Utils', () => {
747
747
  })
748
748
  })
749
749
 
750
+ describe('#fieldInSchema', () => {
751
+ it('should return true if the field is in the schema', () => {
752
+ assert.equal(Utils.fieldInSchema('foo', { foo: {} }), true)
753
+ })
754
+ it('should return false if the field is not in the schema', () => {
755
+ assert.equal(Utils.fieldInSchema('foo', { bar: {} }), false)
756
+ })
757
+ it('should return false if the schema is not provided', () => {
758
+ assert.equal(Utils.fieldInSchema('foo', {}), false)
759
+ })
760
+ it('should return false if the field is undefined', () => {
761
+ assert.equal(Utils.fieldInSchema(undefined, {}), false)
762
+ })
763
+ // check that options. is removed
764
+ it('should remove options. from the field', () => {
765
+ assert.equal(Utils.fieldInSchema('options.foo', { foo: {} }), true)
766
+ })
767
+
768
+ // check that subfields are removed
769
+ it('should remove subfields from the field', () => {
770
+ assert.equal(Utils.fieldInSchema('options.foo.bar', { foo: { bar: {} } }), true)
771
+ })
772
+ })
773
+
750
774
  describe('#parseNaiveDate', () => {
751
775
  it('should parse a date', () => {
752
776
  assert.equal(
umap/static/umap/vars.css CHANGED
@@ -6,6 +6,7 @@
6
6
  --color-mediumGray: #3e4444;
7
7
  --color-darkGray: #323737;
8
8
  --color-light: white;
9
+ --color-dark: black;
9
10
  --color-limeGreen: #b9f5d2;
10
11
  --color-brightCyan: #46ece6;
11
12
  --color-lightCyan: #d4fbf9;
@@ -14,7 +15,7 @@
14
15
 
15
16
  --background-color: var(--color-light);
16
17
  --color-accent: var(--color-brightCyan);
17
- --text-color: black;
18
+ --text-color: var(--color-dark);
18
19
 
19
20
  /* Buttons. */
20
21
  --button-primary-background: var(--color-waterMint);
@@ -81,6 +81,8 @@ function csv2geojson(x, options, callback) {
81
81
  }
82
82
 
83
83
  options.delimiter = options.delimiter || ',';
84
+ options.parseLatLon = options.parseLatLon || parseFloat;
85
+ options.sexagesimal = options.sexagesimal !== false;
84
86
 
85
87
  var latfield = options.latfield || '',
86
88
  lonfield = options.lonfield || '',
@@ -129,6 +131,7 @@ function csv2geojson(x, options, callback) {
129
131
 
130
132
  if (!latfield) latfield = guessLatHeader(parsed[0]);
131
133
  if (!lonfield) lonfield = guessLonHeader(parsed[0]);
134
+
132
135
  var noGeometry = (!latfield || !lonfield);
133
136
 
134
137
  if (noGeometry) {
@@ -152,13 +155,15 @@ function csv2geojson(x, options, callback) {
152
155
  lonf, latf,
153
156
  a;
154
157
 
155
- a = sexagesimal(lonk, 'EW');
156
- if (a) lonk = a;
157
- a = sexagesimal(latk, 'NS');
158
- if (a) latk = a;
158
+ if (options.sexagesimal) {
159
+ a = sexagesimal(lonk, 'EW');
160
+ if (a) lonk = a;
161
+ a = sexagesimal(latk, 'NS');
162
+ if (a) latk = a;
163
+ }
159
164
 
160
- lonf = parseFloat(lonk);
161
- latf = parseFloat(latk);
165
+ lonf = options.parseLatLon(lonk);
166
+ latf = options.parseLatLon(latk);
162
167
 
163
168
  if (isNaN(lonf) ||
164
169
  isNaN(latf)) {
@@ -179,8 +184,8 @@ function csv2geojson(x, options, callback) {
179
184
  geometry: {
180
185
  type: 'Point',
181
186
  coordinates: [
182
- parseFloat(lonf),
183
- parseFloat(latf)
187
+ lonf,
188
+ latf
184
189
  ]
185
190
  }
186
191
  });
@@ -20,11 +20,11 @@ def test_caption(live_server, page, map):
20
20
  panel = page.locator(".panel.left.on")
21
21
  expect(panel).to_have_class(re.compile(".*condensed.*"))
22
22
  expect(panel.locator(".umap-caption")).to_be_visible()
23
- expect(panel.locator(".datalayer-legend").get_by_text(basic.name)).to_be_visible()
23
+ expect(panel.locator(".caption-item").get_by_text(basic.name)).to_be_visible()
24
24
  expect(
25
- panel.locator(".datalayer-legend .off").get_by_text(non_loaded.name)
25
+ panel.locator(".caption-item .off").get_by_text(non_loaded.name)
26
26
  ).to_be_visible()
27
- expect(panel.locator(".datalayer-legend").get_by_text(hidden.name)).to_be_hidden()
27
+ expect(panel.locator(".caption-item").get_by_text(hidden.name)).to_be_hidden()
28
28
 
29
29
 
30
30
  def test_caption_should_display_owner_as_author(live_server, page, map):
@@ -23,7 +23,7 @@ def test_can_edit_name(page, live_server, tilelayer):
23
23
 
24
24
  def test_can_edit_name_on_click_on_toolbar(page, live_server, tilelayer):
25
25
  page.goto(f"{live_server.url}/en/map/new/")
26
- page.locator(".map-name").click()
26
+ page.locator(".umap-main-edit-toolbox .map-name").click()
27
27
  name_input = page.locator('.map-metadata input[name="name"]')
28
28
  expect(name_input).to_be_visible()
29
29
 
@@ -494,6 +494,39 @@ def test_import_csv_without_valid_latlon_headers(tilelayer, live_server, page):
494
494
  expect(page.locator('umap-alert div[data-level="error"]')).to_be_visible()
495
495
 
496
496
 
497
+ def test_import_csv_with_commas_in_latlon(tilelayer, live_server, page, settings):
498
+ settings.UMAP_ALLOW_ANONYMOUS = True
499
+ page.goto(f"{live_server.url}/map/new/")
500
+ page.get_by_title("Open browser").click()
501
+ layers = page.locator(".umap-browser .datalayer")
502
+ markers = page.locator(".leaflet-marker-icon")
503
+ page.get_by_title("Import data").click()
504
+ textarea = page.locator(".umap-upload textarea")
505
+ textarea.fill("lat;lon;foobar\n12,24;48,34;mypoint\n12,23;48,35;mypoint2")
506
+ page.locator('select[name="format"]').select_option("csv")
507
+ page.get_by_role("button", name="Import data", exact=True).click()
508
+ expect(layers).to_have_count(1)
509
+ expect(markers).to_have_count(2)
510
+ with page.expect_response(re.compile(r".*/datalayer/create/.*")):
511
+ page.get_by_role("button", name="Save").click()
512
+ datalayer = DataLayer.objects.last()
513
+ saved_data = json.loads(Path(datalayer.geojson.path).read_text())
514
+ assert saved_data["features"][0]["geometry"] == {
515
+ "coordinates": [
516
+ 48.35,
517
+ 12.23,
518
+ ],
519
+ "type": "Point",
520
+ }
521
+ assert saved_data["features"][1]["geometry"] == {
522
+ "coordinates": [
523
+ 48.34,
524
+ 12.24,
525
+ ],
526
+ "type": "Point",
527
+ }
528
+
529
+
497
530
  def test_create_remote_data(page, live_server, tilelayer):
498
531
  def handle(route):
499
532
  route.fulfill(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: umap-project
3
- Version: 2.7.0b3
3
+ Version: 2.7.2
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>
@@ -20,27 +20,30 @@ Requires-Dist: django-agnocomplete==2.2.0
20
20
  Requires-Dist: django-environ==0.11.2
21
21
  Requires-Dist: django-probes==1.7.0
22
22
  Requires-Dist: django==5.1.2
23
- Requires-Dist: pillow==10.4.0
23
+ Requires-Dist: pillow==11.0.0
24
24
  Requires-Dist: psycopg==3.2.3
25
- Requires-Dist: pydantic==2.9.2
26
25
  Requires-Dist: rcssmin==1.1.3
27
26
  Requires-Dist: requests==2.32.3
28
27
  Requires-Dist: rjsmin==1.2.3
29
28
  Requires-Dist: social-auth-app-django==5.4.2
30
29
  Requires-Dist: social-auth-core==4.5.4
31
- Requires-Dist: websockets==13.1
32
30
  Provides-Extra: dev
33
31
  Requires-Dist: djlint==1.35.2; extra == 'dev'
34
32
  Requires-Dist: hatch==1.13.0; extra == 'dev'
35
33
  Requires-Dist: isort==5.13.2; extra == 'dev'
36
- Requires-Dist: mkdocs-material==9.5.40; extra == 'dev'
34
+ Requires-Dist: mkdocs-material==9.5.42; extra == 'dev'
37
35
  Requires-Dist: mkdocs-static-i18n==1.2.3; extra == 'dev'
38
36
  Requires-Dist: mkdocs==1.6.1; extra == 'dev'
39
37
  Requires-Dist: pymdown-extensions==10.11.2; extra == 'dev'
40
- Requires-Dist: ruff==0.6.9; extra == 'dev'
38
+ Requires-Dist: ruff==0.7.0; extra == 'dev'
41
39
  Requires-Dist: vermin==1.6.0; extra == 'dev'
42
40
  Provides-Extra: docker
43
41
  Requires-Dist: uwsgi==2.0.27; extra == 'docker'
42
+ Provides-Extra: sync
43
+ Requires-Dist: channels==4.1.0; extra == 'sync'
44
+ Requires-Dist: daphne==4.1.2; extra == 'sync'
45
+ Requires-Dist: pydantic==2.9.2; extra == 'sync'
46
+ Requires-Dist: websockets==13.1; extra == 'sync'
44
47
  Provides-Extra: test
45
48
  Requires-Dist: factory-boy==3.3.1; extra == 'test'
46
49
  Requires-Dist: playwright>=1.39; extra == 'test'
@@ -1,6 +1,7 @@
1
- umap/__init__.py,sha256=Q71QddEhF4MeRRzieztdO6BbePwyY5fwiTKxqbluuJs,20
1
+ umap/__init__.py,sha256=NUyqnQWTVjbgd-Uh6a7vcIXyYuuaRt2kNMLp7-l4x_k,18
2
2
  umap/admin.py,sha256=LoQytPGK6pLBqZ5QgQ9DIPAxhTG31cTtHOCqO9BY5S4,2645
3
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
+ umap/asgi.py,sha256=CuVSNBwNb4AvuaD_Ha3ehtvf-c46ijZoVOSoP6WhXp8,432
4
5
  umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
5
6
  umap/context_processors.py,sha256=JugzLQSEybdR-XDYKaUQw7RVGhAqcuuA5cyzeW9lRf4,605
6
7
  umap/decorators.py,sha256=t3YdQLuV0WrqMo2bHEbhkpzmxZe0gRNtzUvczruCn-A,2342
@@ -8,7 +9,7 @@ umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
8
9
  umap/forms.py,sha256=geBn_IVvhbpfswkOZyA1RMgoD6AV33ic9N7gH1M92oE,3994
9
10
  umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
10
11
  umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
11
- umap/models.py,sha256=DHN0eRDEUQnFHB7kJRfLyNuNOzi5H5H_r9qZEkvHdbQ,19963
12
+ umap/models.py,sha256=sWNKBcsRDPoshT6sfu-yw76lpwgLivyZ75hwuwPtQ-g,19981
12
13
  umap/storage.py,sha256=mxFcenC1JECmpNy4H0e7vX8GObDZVXzs1RPjQFWNd5k,2473
13
14
  umap/urls.py,sha256=rr4fr3uXn0ZoQX5MjlJ8veTVoFVcdee2V8VZfzUHQNc,7561
14
15
  umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
@@ -38,8 +39,8 @@ umap/locale/el/LC_MESSAGES/django.mo,sha256=UQ-FdgbaWf6PQu0vHio4GAdSaBg_V9vSas9P
38
39
  umap/locale/el/LC_MESSAGES/django.po,sha256=Vnt6gZTW9VlpTwBw3LOVeHCtAA7y33uPXDeg_G3dUBg,22044
39
40
  umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
40
41
  umap/locale/en/LC_MESSAGES/django.po,sha256=yqwHZ_5njb_K_qGzYNbo3TxsIeziZ-MniJMfUDEGmUw,13403
41
- umap/locale/es/LC_MESSAGES/django.mo,sha256=FWziZWFL8XjPc36Y9fr9ipyA6kyFqstEI9lBpoaYiII,8913
42
- umap/locale/es/LC_MESSAGES/django.po,sha256=ZvVUgXzOKGsjI_8BwF8YC2ld6mnL5IKWFe_RIhnbZr8,17226
42
+ umap/locale/es/LC_MESSAGES/django.mo,sha256=lCSi3pyK8u8GXwNDm1dSOB0Y7L7ljwofV568cy6SEI8,12200
43
+ umap/locale/es/LC_MESSAGES/django.po,sha256=COIKWmLHIJhrhrxw7-EZWR_Zg4vSSUsl1ydQtk9oEuY,18534
43
44
  umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
44
45
  umap/locale/et/LC_MESSAGES/django.po,sha256=344_8a7EH06mtLYRIGIIKiFrg8HRWmVdVMJl9pV1oso,12435
45
46
  umap/locale/eu/LC_MESSAGES/django.mo,sha256=guogxd6hL3SbGClGr7QPv0fr1nAaRa4YPY-7C-MAKUA,11101
@@ -142,7 +143,7 @@ umap/migrations/0021_remove_map_description.py,sha256=C1-pTJ1loj_aZPIbdbPRIHQaya
142
143
  umap/migrations/0022_add_team.py,sha256=oEM1cm_GTpiNb4m7HYaid1Sji56NZSf-IudgjYm0okg,2932
143
144
  umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
145
  umap/settings/__init__.py,sha256=aPJkOTk0uFusIBA-uOjdUi10R5Cxt4jl5yv2_uCTUvo,1702
145
- umap/settings/base.py,sha256=jKn7LABSI_QGUPzHaeLqAk5BKyAVcqmW9R-kGRcbHEs,10566
146
+ umap/settings/base.py,sha256=Ag86hEOxaZ0j-moPEayrusPryti9849KCSrFyZrzmnc,10608
146
147
  umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
147
148
  umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
148
149
  umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -151,16 +152,16 @@ umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr
151
152
  umap/static/umap/content.css,sha256=6p2sgg-FYOjVBiwvk930tBJTl3lfr2m8jjSKkf84Gv0,11555
152
153
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
153
154
  umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
154
- umap/static/umap/map.css,sha256=0H6iLZTbzniFreYSDy2U_1tUYeNmoghfjUvUFWA6Lek,36772
155
+ umap/static/umap/map.css,sha256=7hhZ2m8C9jWQmaYhKtRjwKmE__TSExcK-EewKRNQ4UA,37384
155
156
  umap/static/umap/nav.css,sha256=IKB8Ga8TRal8naxjsgrcrnCO2eaKUL3YNofJB9IN9l0,1865
156
157
  umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
157
158
  umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
158
159
  umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
159
- umap/static/umap/vars.css,sha256=PiwVk4MzyFjnnQTzQ8rorQenpzoB2l3dGoafxtSKmaU,1752
160
+ umap/static/umap/vars.css,sha256=xEyzO2LSadDuwnETrRs-28hxuehFoPHVO3LSFc9XyKY,1789
160
161
  umap/static/umap/css/contextmenu.css,sha256=AdPajFTy2M_yHbkMKDYdh45gRO4amNd0OXRYYDNZSI4,437
161
162
  umap/static/umap/css/dialog.css,sha256=9qwy9rOcTQY6SPkteM7dW1t36XQBJVoGETQatSOvffM,879
162
163
  umap/static/umap/css/icon.css,sha256=e9hadIEzsVJKnTVvueG0IGbNNeFIM1yqboJhsXVE0rs,3868
163
- umap/static/umap/css/importers.css,sha256=qsUmVtV4pyy5yzhKsGqMoCqUhoD5RoFDo69TuI6rSgw,1326
164
+ umap/static/umap/css/importers.css,sha256=iS3krkVPpqUQlPNQXSyByyho7rHBzxYqm04bPyKo_qY,1455
164
165
  umap/static/umap/css/panel.css,sha256=fRPw-dyrcRegoOxTOWTDjBwuI_aHNPmmBOY16flsCBI,3073
165
166
  umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
166
167
  umap/static/umap/css/tableeditor.css,sha256=nYFd5qSMkUasFfAxkWwewKJ5MwIcZb2Zq_DViuDRZc4,1574
@@ -178,9 +179,9 @@ umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIe
178
179
  umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
179
180
  umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
180
181
  umap/static/umap/img/16-white.svg,sha256=DmlXugDNednOGvl66xRwye387ttUxo7MHC_B2mGDcfY,41639
181
- umap/static/umap/img/16.svg,sha256=ik3vCzAnfc7vplTqXoDA8ltDYerhDW6gu_9P3bvoq6c,24725
182
- umap/static/umap/img/24-white.svg,sha256=Z9BBwVMcjO4QOaTZMS0bQS1hd_jaBQHD5NanB2nJhnM,17592
183
- umap/static/umap/img/24.svg,sha256=zZOHyTyuDINA7EForgVFWXosfsXD4-eQ8-Jzhn74gvQ,24878
182
+ umap/static/umap/img/16.svg,sha256=l87Urig9ASu3tDxxTsTR5tF7vrqetVnpCLZVXx4N7mU,24704
183
+ umap/static/umap/img/24-white.svg,sha256=PwFtlnDjxhnPt0c99xIL0KU14dzHT6D1EvAaaE2H650,18139
184
+ umap/static/umap/img/24.svg,sha256=9dLNjDli7tiVsOaV7WXOIa7o3QzdV2Kp6gjBbTsdq2M,25387
184
185
  umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
185
186
  umap/static/umap/img/alert-icon-info.svg,sha256=wnfvaWhidanbIX8n2G8ppFG7pXyqnDjL9lhdbVoeCf8,735
186
187
  umap/static/umap/img/alert-icon-success.svg,sha256=ZzH4Te0IMM0Cyf9MByh57gxNxVddOavA3gSGqsa3xM0,189
@@ -201,6 +202,7 @@ umap/static/umap/img/marker.svg,sha256=xR0PuBxGt9sRlLXbvllNT952Wx1iapyrZpsyJiWY-
201
202
  umap/static/umap/img/opensource.svg,sha256=DLoPUwQivWNDY0DsKLsL0CK4a6x30ao0YXuUJN-HzYI,473
202
203
  umap/static/umap/img/osm.svg,sha256=Owz6LQS8mm5ySW0XqnpyXf0WZx7pthz2GLzqwk5cuBA,1997
203
204
  umap/static/umap/img/search.gif,sha256=Ws7V8knHJGdxG5_12zfPoBweX6PjOjHzrzYY4eyAY-4,1472
205
+ umap/static/umap/img/importers/cadastrefr.svg,sha256=L55Jy0rkP2rpfuzuw8iYQ7lmUPMwOW4rJ4BfEeap50Y,3084
204
206
  umap/static/umap/img/importers/communesfr.svg,sha256=P4M9PyT3Y8PCWhp5GVw2W-TeB0xZEWlUzKv7fkfihBk,4760
205
207
  umap/static/umap/img/importers/datasets.svg,sha256=Pqn6WzE0ZpE8QLgml75mnkstXseTpI1wXXN5MyjOshU,4075
206
208
  umap/static/umap/img/importers/geodatamine.svg,sha256=LmNUU_nANL-q8vE1Y2rZ9_D0QRDFCgWIwf7fEUX_gwo,8133
@@ -209,60 +211,61 @@ umap/static/umap/img/importers/random.svg,sha256=DnxcCu2vJOBdZYWhl8Si0boGjkLcvqr
209
211
  umap/static/umap/img/importers/random1.svg,sha256=mY-Yp9-my2ZxdvL6sgnDzc-ihjnAw-mNZtgSkbj25LA,1370
210
212
  umap/static/umap/img/importers/random2.svg,sha256=wRwBTM7skyvLZJX4QHozMX8P4jxP59POTHlKPsMODcg,1933
211
213
  umap/static/umap/img/source/16-white.svg,sha256=aQE1L1FGy46pqqxn8iSNcfur5GFP7JIbph3QE3q6FrE,74192
212
- umap/static/umap/img/source/16.svg,sha256=U3cXEecGdlLm3X-4rrLk2c6-OJgGeRRt9ZBVMaswEZQ,46531
213
- umap/static/umap/img/source/24-white.svg,sha256=F4lvAvzlTaqUsVhB13PXl7X-r4oz6rWykgHv0Dxmdec,28439
214
- umap/static/umap/img/source/24.svg,sha256=zIuQN1fv_w0asmxzuiCh2TErV4za8Mqg6pK-4YKAt-w,37617
215
- umap/static/umap/js/umap.controls.js,sha256=1_xp8FQeRtutqomTi6RXCALIzXHnrKuEZPCc_TUe80s,35673
216
- umap/static/umap/js/umap.core.js,sha256=xIy3DGUMw1A2SD1-CbBmjN_Xh2wvRgE4ZA2k5tC41Qs,7710
214
+ umap/static/umap/img/source/16.svg,sha256=Los-GMM0FlVBPotdqASVyeEb5LvM0sxZQ_qu6S_3W_0,52984
215
+ umap/static/umap/img/source/24-white.svg,sha256=t5713m3RdG9vunV2nUhLY4o4xT9v7ke3NY42g9FeAnE,29206
216
+ umap/static/umap/img/source/24.svg,sha256=2HY-QmZc2_eV3TyqGLlzqgJXCLVbrzKQV5Q6JLWgNiI,38319
217
+ umap/static/umap/js/umap.controls.js,sha256=2IGTKzQHDPf-4yNzGZvoPvGM7-dnaGFcAjkjSs96LYQ,36551
218
+ umap/static/umap/js/umap.core.js,sha256=j-xy2ZKaCoS2zMRf7bwc9evgXOmJHnbXgYmOP6Ir9g0,7714
217
219
  umap/static/umap/js/umap.forms.js,sha256=T-qC-xxLaY5FaQW-7T_6OKwBBU6HCRX9JK6BO3PYfn8,31554
218
- umap/static/umap/js/umap.js,sha256=sVa_N2nNc9s7wVWOsAF0J4qeh_sOK-xEPfQeYSX4RCA,57771
220
+ umap/static/umap/js/umap.js,sha256=x9XY7Lzc0bH7swCttBufJxakBaUYNEb-3LrNVwAALIg,57844
219
221
  umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
220
222
  umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmBuY67rbZUPo-Fs,341
221
223
  umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
222
224
  umap/static/umap/js/components/alerts/alert.js,sha256=7JaTfAzB6qrodu8soo4aoiQMR7YOYcE3u17q3boMbxI,4491
223
225
  umap/static/umap/js/modules/autocomplete.js,sha256=j3rZeiBypGcFenEN_7xhYdffYrUP92SATrEB_eTZWwk,8634
224
226
  umap/static/umap/js/modules/browser.js,sha256=FXM-Dau0gxqFj77k9FUPBuf6gvrcN6ezsf4myP1rHU0,9243
225
- umap/static/umap/js/modules/caption.js,sha256=bNApBULuZT2hewbdBtN5WgFGYLgovnS0EYcm_P-VyLc,3859
227
+ umap/static/umap/js/modules/caption.js,sha256=WVesRXhlIlr5SAiKDv7nOquihvq1pv-dDHsG6i3nQeU,4041
226
228
  umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
227
229
  umap/static/umap/js/modules/facets.js,sha256=K4qfnCtgIK7oMkL4YvAvPovHfaCK_aRyW5rl7nAFqK0,4677
228
- umap/static/umap/js/modules/formatter.js,sha256=rdOA_HQ89euI1ttLm2CXCUdphMc5-oU-69qeV3hk1Rk,4473
230
+ umap/static/umap/js/modules/formatter.js,sha256=AgRVx9mX_ZYmz7H0AgtJBBp6cPbMhv7KMqia0-uEcIY,4596
229
231
  umap/static/umap/js/modules/global.js,sha256=8s61zn5EKFfZi7j8Ek1-QOpb1D3uRsTEtb3Uv47IQVU,2005
230
232
  umap/static/umap/js/modules/help.js,sha256=k0gUpRf8ik9_okGH7Jv4JOjveNbbvSdk1yV_oZ3kSkQ,9870
231
233
  umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
232
- umap/static/umap/js/modules/importer.js,sha256=4BIQEUHJCaJ7WFrCn_DSPzBKjOw0B_BeAuXMqF8D4W4,8657
234
+ umap/static/umap/js/modules/importer.js,sha256=6wDIbz1MaPKSSAaVP7bpUSBxXoKI9vkaPh5z-z4TilI,8761
233
235
  umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
234
236
  umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
235
237
  umap/static/umap/js/modules/permissions.js,sha256=huRVci6BwjCRbMbel9EdWS-JEd6F8Zese4RGADqLEQY,8302
236
238
  umap/static/umap/js/modules/request.js,sha256=hMy3dleGRxstKsksbNa15w7jk4H9-nAV_ub-JdNhDD8,3881
237
239
  umap/static/umap/js/modules/rules.js,sha256=NO2GeUDgPfWp8VAkV0AE-BeQsDSVYCutcJIk1NKVM5k,7397
238
240
  umap/static/umap/js/modules/schema.js,sha256=TNUNj4_2WDN_0vK083cnui0gKI-qHfiIzkO8sWLJtYY,13071
239
- umap/static/umap/js/modules/share.js,sha256=XFEhE26Fek9tINpzbAQvXzrwoTRlvyLwarDcJW1bdRw,7253
240
- umap/static/umap/js/modules/slideshow.js,sha256=fMpQ93VU7Uc9Mhxary_vrAdAK8g_P5Ch6pTVInIJzW4,3445
241
+ umap/static/umap/js/modules/share.js,sha256=J7w9VXJZTSbrVFvC8wrqSlXrpYzGxDvK7g1slK0y9o8,7180
242
+ umap/static/umap/js/modules/slideshow.js,sha256=-GPd2LXMGwbTc1ZGzzFgJZ3Q4kFwp2BlLCYEL-dILnY,3445
241
243
  umap/static/umap/js/modules/tableeditor.js,sha256=VxIrKAtIuxXmpsJAJ4IGZTC7EiuWtNu8YWDjIUkIbHg,9763
242
244
  umap/static/umap/js/modules/urls.js,sha256=oKkD5jfZMk3752nOWRjpNxVBPUJVcJvNONjnjkKwaVc,876
243
- umap/static/umap/js/modules/utils.js,sha256=dfq-ZwRCu1wYf7uB3L6bd_mrRe3S6n6r9cF7tDf1uWI,11511
245
+ umap/static/umap/js/modules/utils.js,sha256=2vkpCFszXXZqYUAgxClD7r8vpjOHcPOZAC6RprqLMEY,12035
244
246
  umap/static/umap/js/modules/data/features.js,sha256=D7kDDjdXdjzijnJenQOCMprng5pLeckj5lpCfXJ7FWQ,30878
245
- umap/static/umap/js/modules/data/layer.js,sha256=tl_wuBYr3NgixM31TZF7MLlVqfVUBrwtwZ-6yBsO2F8,33296
246
- umap/static/umap/js/modules/importers/communesfr.js,sha256=hfaLAkR-FtUWTs6tF6trqk-GcaODs7iI3KMN2iBAA6U,1700
247
+ umap/static/umap/js/modules/data/layer.js,sha256=t9dzD-n7_7F2ECgWNZF39fWGJR1LnmeEay45xvKKzVo,33686
248
+ umap/static/umap/js/modules/importers/cadastrefr.js,sha256=OZpbtcQSxAf0iEJOFvyR59W4l4yJPwx2XZqiLAsx_aY,2083
249
+ umap/static/umap/js/modules/importers/communesfr.js,sha256=6q6ilmYhhuSmgdrvfTyEDNyMLbc9J9Bt8VMZVXB8ZOA,1723
247
250
  umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
248
251
  umap/static/umap/js/modules/importers/geodatamine.js,sha256=FtrHMVntY4pPelw0uDZCbDVxy5er1ZzDc80zcDpvRnc,2949
249
252
  umap/static/umap/js/modules/importers/overpass.js,sha256=wshao2HAJIz_qowqu6tWxeFAL6TMWMQlzkGLCSfym-4,3178
250
253
  umap/static/umap/js/modules/rendering/icon.js,sha256=hguSJt3wDqe0oSQIm1zrYSbyktKVQUWv-QTo5fYdlc8,7861
251
254
  umap/static/umap/js/modules/rendering/popup.js,sha256=s_LhWy3nqKm_GEwc9aCbzSG1JM9M5-kshwNfKQNdu3A,2460
252
255
  umap/static/umap/js/modules/rendering/template.js,sha256=79umxBD0pMuz8n-sx54Zg7FKcm_fbEkGDlt3vnEXtXo,7177
253
- umap/static/umap/js/modules/rendering/ui.js,sha256=WXwRqs9I1JOJxGcc7-db8w_rbaQ3xggsez6uu-X5GqU,13116
256
+ umap/static/umap/js/modules/rendering/ui.js,sha256=i3sKqp9YX8cpHVLhKRCA7sPijMWF9MfEyGwAX8C_sQo,13174
254
257
  umap/static/umap/js/modules/rendering/layers/base.js,sha256=QNQm_IHSX2jwhr6RfoURk9ypSi4lH1Z0voZNH84VLV0,2419
255
- umap/static/umap/js/modules/rendering/layers/classified.js,sha256=f1MxNzbvlhWTeLLt2XJ0zuLoki667rZS4nQ96l1sUAE,14623
258
+ umap/static/umap/js/modules/rendering/layers/classified.js,sha256=nAmmPUkDD2lRin0qTUsESQdBhkBkK_A5_9hIyMyglXc,14671
256
259
  umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=tIwkcJhJ7SQTpMK7YXumcA6KMjuZjPKWzc_xuF9d_Dc,3360
257
260
  umap/static/umap/js/modules/rendering/layers/heat.js,sha256=pWZkgwNP18bKl5gqN2w9dAxvWWHYoTSDN4n9t_1u-xI,4771
258
- umap/static/umap/js/modules/sync/engine.js,sha256=aX7FyE9N0rV0cqHA5wlhf4cEYy7EuyjuHG027NO28S0,12884
259
- umap/static/umap/js/modules/sync/hlc.js,sha256=gdyRDYx3341csuCDTv8EYHYmJkQLJd5HLYE-kT_i834,2985
260
- umap/static/umap/js/modules/sync/updaters.js,sha256=MYkEyOO7iafzctJrSSBVPfLAbRUXjAyIvXIBsCMI-UY,2930
261
+ umap/static/umap/js/modules/sync/engine.js,sha256=rV5Qqtk_jpe_lDx97NFhea90yTGv0mne4js-9xrNV1c,13070
262
+ umap/static/umap/js/modules/sync/hlc.js,sha256=XeJz3x7qiDz7v-mcgGIynj5ks34FpWx_oSPUPFd_ZGA,2991
263
+ umap/static/umap/js/modules/sync/updaters.js,sha256=WP6hB2gyQKF18hOCy1Ll3UBeYRe2K_LLT9vTUOkPuNk,3184
261
264
  umap/static/umap/js/modules/sync/websocket.js,sha256=1UtvsTAm-gkfpBRcLPykPvDyax3mQSxG0KOjWhqnAIU,647
262
265
  umap/static/umap/js/modules/ui/base.js,sha256=8PN8TRIBqTANRufwVvV0XzOdaYQuRCnlWGbTGq8FZiM,2491
263
266
  umap/static/umap/js/modules/ui/contextmenu.js,sha256=VzC94uGUt8DkzC60Gcbz-MxivfSITEqUC91Fkpq1gjk,2550
264
267
  umap/static/umap/js/modules/ui/dialog.js,sha256=fP51HDkucZpXnx1v0h5eAckj77RsADZO_CzPRbjeKSU,5407
265
- umap/static/umap/js/modules/ui/panel.js,sha256=Iqfagid9BxB0zjexBElaA_hLejoePdfORt4Di5lHVLY,2994
268
+ umap/static/umap/js/modules/ui/panel.js,sha256=aPogrO5AkxHTwtjw6oQri21eyIwDlOKNKp79ZPp2Ogs,3121
266
269
  umap/static/umap/js/modules/ui/tooltip.js,sha256=M2KBb5CA4AvaA-6QgfpUKMYQuGXzTqx4ZVA9fkMRBEs,1642
267
270
  umap/static/umap/locale/am_ET.js,sha256=oNSeVIZMKnxigBUVokMJSzYjLFGs5u4n2zzNjAtOV0A,33119
268
271
  umap/static/umap/locale/am_ET.json,sha256=017quytoO8VyxfVNjsDQmuY3VS66L5xPJK6BtW99Afc,33048
@@ -274,8 +277,8 @@ umap/static/umap/locale/bg.js,sha256=HU9dzYksADHHSzjZJZ60kOWtE8nhiMW11OhkmpWYPQk
274
277
  umap/static/umap/locale/bg.json,sha256=TIiye2peZgV3WqC8n5I2lugq4aLc3OshaO280ztCVTw,32299
275
278
  umap/static/umap/locale/br.js,sha256=UK3KjFWnXc9xPbIYQA74Z5jpweddhS3ZcuPfc8x-32A,31327
276
279
  umap/static/umap/locale/br.json,sha256=x_bto9uVfYKP1lPZQuvhCcVVutXn2aa2MDKt8yAU9qs,31262
277
- umap/static/umap/locale/ca.js,sha256=7VEhFIMfPenA-SlyauVAHtMQjUyDYdOKVIQTvfoiN_8,31079
278
- umap/static/umap/locale/ca.json,sha256=68YqbO1PC8QKH6NzGgZAk21--6cYpA2qVGIujM5j3Gg,31014
280
+ umap/static/umap/locale/ca.js,sha256=N1KYzrF5nRNiPA_Tkg_Uwo5ZKw-sD9AsV2_yoEiWKZQ,31376
281
+ umap/static/umap/locale/ca.json,sha256=9bEQ4CG6-wP9U-rpIsLxE5OO-006xOONyB9m4qJMuds,31311
279
282
  umap/static/umap/locale/cs_CZ.js,sha256=OZxiZoP8040WraxdO2f5J7gFFwH0cbu56OwILE5blDY,32219
280
283
  umap/static/umap/locale/cs_CZ.json,sha256=Ch1f3bmOzJ_jGJMb9r3VGxon6JeG3hdi1EOX-lB-WUs,32148
281
284
  umap/static/umap/locale/da.js,sha256=UOqYXpeJwAGIjxi9vEhq6_zE_GJnU3vIW-yjtwwER64,29655
@@ -284,11 +287,11 @@ umap/static/umap/locale/de.js,sha256=xDf9BY85Ar-mfhFUORgDCL2JLeU08U2UIW_FtNLS5S0
284
287
  umap/static/umap/locale/de.json,sha256=RA0e0pKtfyqZJWSSIYFGkwqT61BcCLTIH2qpQlvlOf4,32300
285
288
  umap/static/umap/locale/el.js,sha256=sa-U3r4Makich8A9KM5ZY43qGMu_bT1PrBsxfQIGcYo,40722
286
289
  umap/static/umap/locale/el.json,sha256=osruzu9kyf-_rzTPCfGE3k65iJN1DNVI1XHznZn3MWY,40657
287
- umap/static/umap/locale/en.js,sha256=Y4OH8ko3vOxNOzWTMrqReCxj4F5VMquyEr21HVzH3Rw,29785
288
- umap/static/umap/locale/en.json,sha256=lNdtdJcpoFINBCiMlsU2dqQ9880GIRy7iBJiirNH5Ls,29720
290
+ umap/static/umap/locale/en.js,sha256=Advf7-TgdNO71jbrMBUupUClGNqhR8rFUlN2TxSXtAM,29909
291
+ umap/static/umap/locale/en.json,sha256=2_bvACFiQ5XGjJXyXN-zXdhFJPqgfT6CPCzNDf0_XhA,29844
289
292
  umap/static/umap/locale/en_US.json,sha256=Oh7wNoHcrN8yUjROyTZbOf7hA_UizteJx9VKkLRqQm8,28991
290
- umap/static/umap/locale/es.js,sha256=JF04Yjo58p5iI0PB87q2KqC0UZ5_glU5b6-4BCd4GuE,31685
291
- umap/static/umap/locale/es.json,sha256=ulTaC0DscZbXov9OvuceQ5c8MMyHlgpxKgUHSoHNH_I,31620
293
+ umap/static/umap/locale/es.js,sha256=yMicCSIiTFkf420jZhucvO3_IfPw_PtCc8itPQZ3fnQ,32797
294
+ umap/static/umap/locale/es.json,sha256=3LNyC3YFM4cO8aoOufS2AtmUT4Z7HrtiJXoOwjGWijk,32732
292
295
  umap/static/umap/locale/et.js,sha256=M0Nm-Q6fzUHSc23VghPpevytG_HwlV3CBqiAOy21CKo,29463
293
296
  umap/static/umap/locale/et.json,sha256=tyFaazZbHUEguCItz9WwqkCLUUJ6Q2Z_FoCQU43Kwlc,29398
294
297
  umap/static/umap/locale/eu.js,sha256=LRaS1-VLUnbpDs3eQeXGOJjvILnK0fM_PGKE5zDjCXQ,31548
@@ -297,8 +300,8 @@ umap/static/umap/locale/fa_IR.js,sha256=wysDJtx5Qh1gmLliSY1nlkb1iiQ_gW0_wwbZhoMM
297
300
  umap/static/umap/locale/fa_IR.json,sha256=aWEthk23gO9px5J4lAn5pSAVwslZIBaB7A18E6CQr_M,38266
298
301
  umap/static/umap/locale/fi.js,sha256=7FHHkRL27ZPFKY9AHYQpdh2Yxmr7nStFkyx0qFFMg-4,30135
299
302
  umap/static/umap/locale/fi.json,sha256=9Diss6QDm0eTgYy2xZNYXVI2akk5Dsgb6Ct6IUSbW7k,30070
300
- umap/static/umap/locale/fr.js,sha256=Hh4Wv_lwbRYfIgDWd3FXcgodyb0D7o9gtU-YM-qmy7s,32626
301
- umap/static/umap/locale/fr.json,sha256=KfBBp-t0UxEu5fZhl3ZzyVundpbjytaFmguf53xtkUs,32561
303
+ umap/static/umap/locale/fr.js,sha256=PSr2EPZZywF5g7yT7Rxhcms2MtFxTorcAlmomp-FYa4,32764
304
+ umap/static/umap/locale/fr.json,sha256=3Iy--oK9JeyLbM3dIQhvx7SVl22TbxGf_t6KCkELj60,32699
302
305
  umap/static/umap/locale/gl.js,sha256=090Z2Qo9MdULunWmqzup_jIyl0vNj98RLNtZ4G0nXeY,30690
303
306
  umap/static/umap/locale/gl.json,sha256=TXy5_yZwAKAP89ohPUz3Z7_5Ol0jGy4T6qrzWQs8zGg,30625
304
307
  umap/static/umap/locale/he.js,sha256=GO-lM4ghM4k5mbWHpHC6SQ_fpIFjfZzCMsbqT9ejf-k,32717
@@ -374,11 +377,11 @@ umap/static/umap/test/Util.js,sha256=KBsOQN_E4Y5N8VSDNP5fLdUrvOh7G3pewrkRKq547VQ
374
377
  umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
375
378
  umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
376
379
  umap/static/umap/unittests/URLs.js,sha256=EqXPGohwNiEtJWk1QY2KgPaIwd0iP56nYvn05ufsZ-g,1878
377
- umap/static/umap/unittests/hlc.js,sha256=FlS314LYdTNoDE8tzjZPZbxjPwb5EaOpgnta4JOLloI,5219
380
+ umap/static/umap/unittests/hlc.js,sha256=GvpBaBSgfMs0Zym0_zOs2QldUOcbFNVIKweBhuwM_QI,5294
378
381
  umap/static/umap/unittests/sync.js,sha256=JSyT4ZwuRF1mMUzLLJzjIs_6iZz8S2iF1imJGLpSdwQ,12751
379
- umap/static/umap/unittests/utils.js,sha256=H-eKixI2F203GwZ36cvXtzbiWu-dGF5UXNS2_9ahnok,24647
382
+ umap/static/umap/unittests/utils.js,sha256=oVckWaCK26yR8nX9NlVEL_eVKf0i8Z-UNnK5K9xY9t0,25609
380
383
  umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=wEHf7UslhI09j7tfzC1V9FLgTbZELDbbtGiL2x0y9vY,23051
381
- umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=Cb88gwY7oibx7WL1Y3bfxc_Cur6yo62nLGaEmzP7Fbw,15530
384
+ umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=FARwXdqk_yf3ttJmSyrJ204B9glI2YaZ2vuhaQPmhVk,15712
382
385
  umap/static/umap/vendors/dompurify/purify.es.js,sha256=z-0CPcG0TCk11WMdauq46gDt65U61y_i-ltN5dKc500,64057
383
386
  umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=wzzJMafObQYxw2FUcIM4AJShakCHU1hiEm1MotxK79g,123512
384
387
  umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=5-RlyT7RhocenG85yKIhSPdCvUrpxH2o-lvWS9St5uA,69568
@@ -516,7 +519,7 @@ umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJ
516
519
  umap/tests/integration/test_anonymous_owned_map.py,sha256=d7YBsnO79NHRHgdYCYqmyALzeHtV__9dWObtvEfv0VM,10673
517
520
  umap/tests/integration/test_basics.py,sha256=_aURyfOJen41AQtTvjQ2pHP5GNc1KVV6NRSspSuxKL0,3760
518
521
  umap/tests/integration/test_browser.py,sha256=uhis-PUFERQEuasfZPRP2tLuq9GcaNeie4nx3n_7SL0,19977
519
- umap/tests/integration/test_caption.py,sha256=UykDB2WpyFl0sbXGrSJ1IAJTM0PzYajPyz-XWaqUBws,1795
522
+ umap/tests/integration/test_caption.py,sha256=ZZwI3kyZe-t4MTxUkfXu33CLhnX5QfDqqwvO_DN4BpU,1783
520
523
  umap/tests/integration/test_categorized_layer.py,sha256=1MJopDBMLUd_NN2NVqWoePuNPS42RbNlXOwXeyKdZo8,5586
521
524
  umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
522
525
  umap/tests/integration/test_circles_layer.py,sha256=PjYGmCvAd9qDnldnbiw6nomJs1YgUdX181a9xrWSUYE,2396
@@ -527,13 +530,13 @@ umap/tests/integration/test_datalayer.py,sha256=cxsf65noYTucEMLuUz8DfJ9abXHhAq0n
527
530
  umap/tests/integration/test_draw_polygon.py,sha256=Ub_1Witps_BLwMMmQ4M0vPIyQOEQ_Bq82znpJdWpCfY,25385
528
531
  umap/tests/integration/test_draw_polyline.py,sha256=lPr5hz-wHL9oC2B3yveNHC-OxdzWvcf8fHMBZbXTuss,14801
529
532
  umap/tests/integration/test_edit_datalayer.py,sha256=oZFEvjAC0XIHgWgwE683dAL95y1Mvl-SBEVaf_dQnR4,9342
530
- umap/tests/integration/test_edit_map.py,sha256=Qt1QypkFNDwA4KPo_qxHbJGb3c4prDaJTuwgtrgGxGE,7110
533
+ umap/tests/integration/test_edit_map.py,sha256=d76M4J6rumDQ6sKaOyTA45dWAkwAOtoUuNkW-GsA-fo,7134
531
534
  umap/tests/integration/test_edit_marker.py,sha256=sj4n2mCYQ-qZ02jFHA566Wg_y9F6oXb1AxddnthSQHI,4746
532
535
  umap/tests/integration/test_edit_polygon.py,sha256=JeIW6NcBltIl958uJ_T-0dRCT5gOo9JrNtULvg7nxf4,5286
533
536
  umap/tests/integration/test_export_map.py,sha256=jH0BXm-7Ov26OEkve9-xKMfRwXwR73zRrZLIQusyUOY,12112
534
537
  umap/tests/integration/test_facets_browser.py,sha256=J--y2rpI__0RIPzcTx4Kn2UwuurFdh-6i_Y4c6GxUyY,10658
535
538
  umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
536
- umap/tests/integration/test_import.py,sha256=k_lrh8HhMLGtpuzYxREyCi_fAQTZboeq6Wd34_MkgV4,28995
539
+ umap/tests/integration/test_import.py,sha256=AAZ3WZPgxbRQ1QhAF55RsxbmftNjT2e-ldmSyIol8zA,30256
537
540
  umap/tests/integration/test_map.py,sha256=2ZO54RFVycJKGczfioX0nU1oCu29FVC9hR6wbT4s1NE,8736
538
541
  umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
539
542
  umap/tests/integration/test_map_preview.py,sha256=kP0vkEiUN7EJNCvZgNeUAzrrXfgwpU0S2UnmOBV4P5A,3540
@@ -551,8 +554,8 @@ umap/tests/integration/test_view_marker.py,sha256=f_WqtVe0ZfDX_SOeNXFh54ubvhJWeu
551
554
  umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
552
555
  umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
553
556
  umap/tests/integration/test_websocket_sync.py,sha256=pcEoXgEFvLBdmQA_rGa5BcHE2eBe3P0qZ6X3j4goRzQ,12764
554
- umap_project-2.7.0b3.dist-info/METADATA,sha256=cOd1tWumJDcvABKF7GQwXsov46fxZYWHcjDs4FHNq1s,2741
555
- umap_project-2.7.0b3.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
556
- umap_project-2.7.0b3.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
557
- umap_project-2.7.0b3.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
558
- umap_project-2.7.0b3.dist-info/RECORD,,
557
+ umap_project-2.7.2.dist-info/METADATA,sha256=VejupE32RcK6HSyW6zXkuXtmqDPIMo9V-oXQ8nQkpts,2888
558
+ umap_project-2.7.2.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
559
+ umap_project-2.7.2.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
560
+ umap_project-2.7.2.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
561
+ umap_project-2.7.2.dist-info/RECORD,,