umap-project 2.3.0__py3-none-any.whl → 2.3.1__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 (30) hide show
  1. umap/__init__.py +1 -1
  2. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  3. umap/locale/pl/LC_MESSAGES/django.po +83 -78
  4. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/pt/LC_MESSAGES/django.po +129 -123
  6. umap/static/umap/base.css +4 -2
  7. umap/static/umap/js/modules/browser.js +8 -15
  8. umap/static/umap/js/modules/caption.js +118 -0
  9. umap/static/umap/js/modules/global.js +2 -0
  10. umap/static/umap/js/modules/panel.js +13 -7
  11. umap/static/umap/js/umap.controls.js +25 -99
  12. umap/static/umap/js/umap.core.js +3 -6
  13. umap/static/umap/js/umap.forms.js +8 -6
  14. umap/static/umap/js/umap.js +32 -34
  15. umap/static/umap/js/umap.layer.js +2 -2
  16. umap/static/umap/js/umap.popup.js +1 -0
  17. umap/static/umap/vendors/dompurify/purify.es.js +50 -15
  18. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  19. umap/tests/base.py +1 -0
  20. umap/tests/integration/test_browser.py +4 -2
  21. umap/tests/integration/test_caption.py +27 -0
  22. umap/tests/integration/test_edit_datalayer.py +29 -0
  23. umap/tests/integration/test_facets_browser.py +4 -1
  24. umap/tests/integration/test_map.py +0 -15
  25. umap/tests/integration/test_view_marker.py +17 -0
  26. {umap_project-2.3.0.dist-info → umap_project-2.3.1.dist-info}/METADATA +5 -5
  27. {umap_project-2.3.0.dist-info → umap_project-2.3.1.dist-info}/RECORD +30 -28
  28. {umap_project-2.3.0.dist-info → umap_project-2.3.1.dist-info}/WHEEL +0 -0
  29. {umap_project-2.3.0.dist-info → umap_project-2.3.1.dist-info}/entry_points.txt +0 -0
  30. {umap_project-2.3.0.dist-info → umap_project-2.3.1.dist-info}/licenses/LICENSE +0 -0
umap/tests/base.py CHANGED
@@ -125,6 +125,7 @@ class DataLayerFactory(factory.django.DjangoModelFactory):
125
125
  **kwargs["settings"],
126
126
  }
127
127
  data.setdefault("_umap_options", {})
128
+ kwargs["settings"]["name"] = kwargs["name"]
128
129
  data["_umap_options"]["name"] = kwargs["name"]
129
130
  kwargs["geojson"] = ContentFile(json.dumps(data), "foo.json")
130
131
  return kwargs
@@ -1,3 +1,4 @@
1
+ import re
1
2
  from copy import deepcopy
2
3
  from time import sleep
3
4
 
@@ -63,8 +64,9 @@ def bootstrap(map, live_server):
63
64
 
64
65
  def test_data_browser_should_be_open(live_server, page, bootstrap, map):
65
66
  page.goto(f"{live_server.url}{map.get_absolute_url()}")
66
- el = page.locator(".umap-browser")
67
- expect(el).to_be_visible()
67
+ panel = page.locator(".panel.left.on")
68
+ expect(panel).to_have_class(re.compile(".*expanded.*"))
69
+ expect(panel.locator(".umap-browser")).to_be_visible()
68
70
  expect(page.get_by_text("one point in france")).to_be_visible()
69
71
  expect(page.get_by_text("one line in new zeland")).to_be_visible()
70
72
  expect(page.get_by_text("one polygon in greenland")).to_be_visible()
@@ -0,0 +1,27 @@
1
+ import re
2
+
3
+ import pytest
4
+ from playwright.sync_api import expect
5
+
6
+ from ..base import DataLayerFactory
7
+
8
+ pytestmark = pytest.mark.django_db
9
+
10
+
11
+ def test_caption(live_server, page, map):
12
+ map.settings["properties"]["onLoadPanel"] = "caption"
13
+ map.save()
14
+ basic = DataLayerFactory(map=map, name="Basic layer")
15
+ non_loaded = DataLayerFactory(
16
+ map=map, name="Non loaded", settings={"displayOnLoad": False}
17
+ )
18
+ hidden = DataLayerFactory(map=map, name="Hidden", settings={"inCaption": False})
19
+ page.goto(f"{live_server.url}{map.get_absolute_url()}")
20
+ panel = page.locator(".panel.left.on")
21
+ expect(panel).to_have_class(re.compile(".*condensed.*"))
22
+ expect(panel.locator(".umap-caption")).to_be_visible()
23
+ expect(panel.locator(".datalayer-legend").get_by_text(basic.name)).to_be_visible()
24
+ expect(
25
+ panel.locator(".datalayer-legend .off").get_by_text(non_loaded.name)
26
+ ).to_be_visible()
27
+ expect(panel.locator(".datalayer-legend").get_by_text(hidden.name)).to_be_hidden()
@@ -183,3 +183,32 @@ def test_can_edit_layer_on_ctrl_shift_click(live_server, openmap, page, datalaye
183
183
  page.goto(f"{live_server.url}{openmap.get_absolute_url()}?edit")
184
184
  page.locator(".leaflet-marker-icon").click(modifiers=[modifier, "Shift"])
185
185
  expect(page.get_by_text("Layer properties")).to_be_visible()
186
+
187
+
188
+ def test_deleting_datalayer_should_remove_from_browser_and_layers_list(
189
+ live_server, openmap, datalayer, page
190
+ ):
191
+ page.goto(f"{live_server.url}{openmap.get_absolute_url()}?edit")
192
+ panel = page.locator(".panel.left")
193
+ edit_panel = page.locator(".panel.right")
194
+ page.get_by_title("See layers").click()
195
+ page.get_by_role("link", name="Manage layers").click()
196
+ expect(panel.get_by_text("test datalayer")).to_be_visible()
197
+ expect(edit_panel.get_by_text("test datalayer")).to_be_visible()
198
+ page.once("dialog", lambda dialog: dialog.accept())
199
+ page.locator(".panel.right").get_by_title("Delete layer").click()
200
+ expect(panel.get_by_text("test datalayer")).to_be_hidden()
201
+ expect(edit_panel.get_by_text("test datalayer")).to_be_hidden()
202
+
203
+
204
+ def test_deleting_datalayer_should_remove_from_caption(
205
+ live_server, openmap, datalayer, page
206
+ ):
207
+ page.goto(f"{live_server.url}{openmap.get_absolute_url()}?edit")
208
+ panel = page.locator(".panel.left")
209
+ page.get_by_role("button", name="About").click()
210
+ page.get_by_role("link", name="Manage layers").click()
211
+ expect(panel.get_by_text("test datalayer")).to_be_visible()
212
+ page.once("dialog", lambda dialog: dialog.accept())
213
+ page.locator(".panel.right").get_by_title("Delete layer").click()
214
+ expect(panel.get_by_text("test datalayer")).to_be_hidden()
@@ -1,4 +1,5 @@
1
1
  import copy
2
+ import re
2
3
 
3
4
  import pytest
4
5
  from playwright.sync_api import expect
@@ -101,7 +102,9 @@ def test_simple_facet_search(live_server, page, map):
101
102
  DataLayerFactory(map=map, data=DATALAYER_DATA2)
102
103
  DataLayerFactory(map=map, data=DATALAYER_DATA3)
103
104
  page.goto(f"{live_server.url}{map.get_absolute_url()}#6/48.948/1.670")
104
- panel = page.locator(".umap-browser")
105
+ panel = page.locator(".panel.left.on")
106
+ expect(panel).to_have_class(re.compile(".*expanded.*"))
107
+ expect(panel.locator(".umap-browser")).to_be_visible()
105
108
  # From a non browsable datalayer, should not be impacted
106
109
  paths = page.locator(".leaflet-overlay-pane path")
107
110
  expect(paths).to_be_visible()
@@ -188,21 +188,6 @@ def test_remote_layer_should_not_be_used_as_datalayer_for_created_features(
188
188
  expect(layers).to_have_count(2)
189
189
 
190
190
 
191
- def test_can_hide_datalayer_from_caption(openmap, live_server, datalayer, page):
192
- # Add another DataLayer
193
- other = DataLayerFactory(map=openmap, name="Hidden", settings={"inCaption": False})
194
- page.goto(f"{live_server.url}{openmap.get_absolute_url()}")
195
- toggle = page.get_by_text("About").first
196
- expect(toggle).to_be_visible()
197
- toggle.click()
198
- layers = page.locator(".umap-caption .datalayer-legend")
199
- expect(layers).to_have_count(1)
200
- found = page.locator(".panel.left.on").get_by_text(datalayer.name)
201
- expect(found).to_be_visible()
202
- hidden = page.locator(".panel.left.on").get_by_text(other.name)
203
- expect(hidden).to_be_hidden()
204
-
205
-
206
191
  def test_minimap_on_load(map, live_server, datalayer, page):
207
192
  page.goto(f"{live_server.url}{map.get_absolute_url()}")
208
193
  expect(page.locator(".leaflet-control-minimap")).to_be_hidden()
@@ -1,3 +1,4 @@
1
+ import re
1
2
  from copy import deepcopy
2
3
 
3
4
  import pytest
@@ -62,3 +63,19 @@ def test_should_display_tooltip_with_variable(live_server, map, page, bootstrap)
62
63
  map.save()
63
64
  page.goto(f"{live_server.url}{map.get_absolute_url()}")
64
65
  expect(page.get_by_text("Foo test marker")).to_be_visible()
66
+
67
+
68
+ def test_should_open_popup_panel_on_click(live_server, map, page, bootstrap):
69
+ map.settings["properties"]["popupShape"] = "Panel"
70
+ map.save()
71
+ page.goto(f"{live_server.url}{map.get_absolute_url()}")
72
+ panel = page.locator(".panel.left.on")
73
+ expect(panel).to_be_hidden()
74
+ page.locator(".leaflet-marker-icon").click()
75
+ expect(panel).to_be_visible()
76
+ expect(panel).to_have_class(re.compile(".*expanded.*"))
77
+ expect(panel.get_by_role("heading", name="test marker")).to_be_visible()
78
+ expect(panel.get_by_text("Some description")).to_be_visible()
79
+ # Close popup
80
+ page.locator("#map").click()
81
+ expect(panel).to_be_hidden()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: umap-project
3
- Version: 2.3.0
3
+ Version: 2.3.1
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>
@@ -19,7 +19,7 @@ Requires-Python: >=3.10
19
19
  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
- Requires-Dist: django==5.0.5
22
+ Requires-Dist: django==5.0.6
23
23
  Requires-Dist: pillow==10.3.0
24
24
  Requires-Dist: psycopg==3.1.18
25
25
  Requires-Dist: rcssmin==1.1.2
@@ -31,8 +31,8 @@ Provides-Extra: dev
31
31
  Requires-Dist: djlint==1.34.1; extra == 'dev'
32
32
  Requires-Dist: hatch==1.10.0; extra == 'dev'
33
33
  Requires-Dist: isort==5.13.2; extra == 'dev'
34
- Requires-Dist: mkdocs-material==9.5.21; extra == 'dev'
35
- Requires-Dist: mkdocs-static-i18n==1.2.2; extra == 'dev'
34
+ Requires-Dist: mkdocs-material==9.5.23; extra == 'dev'
35
+ Requires-Dist: mkdocs-static-i18n==1.2.3; extra == 'dev'
36
36
  Requires-Dist: mkdocs==1.6.0; extra == 'dev'
37
37
  Requires-Dist: pymdown-extensions==10.8.1; extra == 'dev'
38
38
  Requires-Dist: ruff==0.4.3; extra == 'dev'
@@ -43,7 +43,7 @@ Provides-Extra: test
43
43
  Requires-Dist: factory-boy==3.2.1; extra == 'test'
44
44
  Requires-Dist: playwright>=1.39; extra == 'test'
45
45
  Requires-Dist: pytest-django==4.8.0; extra == 'test'
46
- Requires-Dist: pytest-playwright==0.4.4; extra == 'test'
46
+ Requires-Dist: pytest-playwright==0.5.0; extra == 'test'
47
47
  Requires-Dist: pytest-xdist<4,>=3.5.0; extra == 'test'
48
48
  Requires-Dist: pytest==8.2.0; extra == 'test'
49
49
  Description-Content-Type: text/markdown
@@ -1,4 +1,4 @@
1
- umap/__init__.py,sha256=ZGW6G5WJj1QfvFS-LneLnBG6X2v4VY6vrLHrJSg90tg,18
1
+ umap/__init__.py,sha256=jNDu9_qA08LzoGVtdJANTg4APrzNV1Rq-CURkQHgCLc,18
2
2
  umap/admin.py,sha256=gL6zrexmDbIKIqOKHCuAM5wtqr8FIQkRtjbcXcNyBrs,749
3
3
  umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
4
4
  umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
@@ -75,10 +75,10 @@ umap/locale/nl/LC_MESSAGES/django.mo,sha256=CWIG-7Vc6EO-4L0oy35wuaNEQSkrOoKpbkrv
75
75
  umap/locale/nl/LC_MESSAGES/django.po,sha256=SMjyxF10q7p6AumNtnHRfdI1nP-4-_EKlbTCl8ZjhMM,13009
76
76
  umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk_nsxXks,423
77
77
  umap/locale/no/LC_MESSAGES/django.po,sha256=HXr3Y_gxOPjdU1pSV_tyX_l7pbDMVrFBdf0gm3gciwI,7998
78
- umap/locale/pl/LC_MESSAGES/django.mo,sha256=74T-W4jdRl0QLNQMyN3cQIV4ApcSp1_GjY9Jqn2sGX8,8563
79
- umap/locale/pl/LC_MESSAGES/django.po,sha256=ZHeM6UF0hFVGRaMeLsvC9nUvUtoBAt99GeRgXKTz0Xo,14400
80
- umap/locale/pt/LC_MESSAGES/django.mo,sha256=vhoo2OwfpOYMeXaFdtCcqZFu6EFrAjvgxb5c13zb8Rs,6341
81
- umap/locale/pt/LC_MESSAGES/django.po,sha256=8izif4-xO0E-70vX6w9CX_vTsQLOoYjjvqj-m1VPa6A,13278
78
+ umap/locale/pl/LC_MESSAGES/django.mo,sha256=gianKLgTIpQVm_eix8KUAIJE2y3hRlb2jlZGGSrZSPA,9457
79
+ umap/locale/pl/LC_MESSAGES/django.po,sha256=EuvkgUF7tFMxxVB7_neSF31zVk07TBp_HDPI2uK8D4c,14735
80
+ umap/locale/pt/LC_MESSAGES/django.mo,sha256=gsaX4yKl65uc_yB9PcPP3pxqbZp4WkJlnmjAxWifCqs,10180
81
+ umap/locale/pt/LC_MESSAGES/django.po,sha256=-R1c6MuNNoJLTTBpGUAYYE3Y_jTnsB2_Vl5w_wVidYM,14808
82
82
  umap/locale/pt_BR/LC_MESSAGES/django.mo,sha256=DrxyrIeCD0dmbieR3clKO2Sy0pyWpcHmQKM251Ff294,6328
83
83
  umap/locale/pt_BR/LC_MESSAGES/django.po,sha256=RXQyHUSrm2JdiWLyR6XEvdSzFLicNj9hR82Noppc2n4,13319
84
84
  umap/locale/pt_PT/LC_MESSAGES/django.mo,sha256=4iwtGYsVFh05Qbp9XmZdclQSTZIYYt6IiLN6W3Eyc6I,6356
@@ -141,7 +141,7 @@ umap/settings/base.py,sha256=CREsol-R6r8rI6t-0BL6rNhDdR0fPZew01HFPXBI2Ds,9924
141
141
  umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
142
142
  umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
143
143
  umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
- umap/static/umap/base.css,sha256=e1R6lkZ7L56GjUI6eoXg4r8QCN5xwt8l1OjQlKtCBkc,19601
144
+ umap/static/umap/base.css,sha256=PMCxVS8cfIFl2OGtHQgNwibraCAu6yIg9sJ6XQk_Gy4,19667
145
145
  umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
146
146
  umap/static/umap/content.css,sha256=pXtVn8r0EStDr7h9Cw5HKRtcFroBIIoffFqk16SB6Xw,11402
147
147
  umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
@@ -190,30 +190,31 @@ umap/static/umap/img/source/16.svg,sha256=XjrSS3_6kxf432h83aQF6UfxwjNxjNdioJG8jX
190
190
  umap/static/umap/img/source/24-white.svg,sha256=KUkQwOG-ut88Ev5QJKNCXx8DWdPxskIRuxxvY_jL0NA,29405
191
191
  umap/static/umap/img/source/24.svg,sha256=YMuMON2fI9PzkG-QMmT0XqoDDGhPEmbE1jMJUBfpOLI,38713
192
192
  umap/static/umap/js/umap.autocomplete.js,sha256=yKkkO2U34lwgy37RfuMSv9npLfmvacWbRjDnc96M2wU,7942
193
- umap/static/umap/js/umap.controls.js,sha256=BDUeophitP3YQ6YH7yM2bIdPE3LKdVzVW-xKWzu_wYw,40022
194
- umap/static/umap/js/umap.core.js,sha256=BYC9IKX-hMFEPIweJvEvLzIQM9JH5G9-AQDuxHFa9pU,17939
193
+ umap/static/umap/js/umap.controls.js,sha256=FneCwTsOAgqgPDOL_Fa3pNr9SUJOBuZ71MTXRdh2xxM,37271
194
+ umap/static/umap/js/umap.core.js,sha256=GG_W-8EsbR_jNU30dG8U0svFoGuC6nKzZ6K-3NR5jC4,17807
195
195
  umap/static/umap/js/umap.datalayer.permissions.js,sha256=_wqTme7S7AvMOXSWecLm_iJBCV65V_KUH9ABKJg1H-8,1948
196
196
  umap/static/umap/js/umap.features.js,sha256=rlf2ZCsRLA2-Z8hYK9oZlll4ehW9IAyX5G9HD9QQ2ro,35504
197
- umap/static/umap/js/umap.forms.js,sha256=tNCH0L7RXseqgJqTk0cUaXFzCqY6a0uEg9Ltckly4rM,31412
197
+ umap/static/umap/js/umap.forms.js,sha256=ZVqImsOUi7oW-N0VmUdePmw4rnpZ4-legYm2WBCN4lE,31531
198
198
  umap/static/umap/js/umap.icon.js,sha256=8dzfEN5fgP2jXYTbN6B-xjrB94A6nXHCXO2RKoTC0S0,7594
199
199
  umap/static/umap/js/umap.importer.js,sha256=8WodN0j0cS0Zc9Q96G7q6Ahlmv-C9NAgUyCyp1o1DOM,5704
200
- umap/static/umap/js/umap.js,sha256=BO0F40rrb-c9yq-y1rNl8byR7WxWt8NHyZXxKYb8uJs,56412
201
- umap/static/umap/js/umap.layer.js,sha256=Ue1k5Tkb0nlH2yKMtOD5rIfaDqCcPcNC2pcCzaMiwrg,48783
200
+ umap/static/umap/js/umap.js,sha256=TTS3qnPa-6ZDVIzcrBoPm23ZKTlachTvDBE1IRaiFXw,56617
201
+ umap/static/umap/js/umap.layer.js,sha256=D1DDRFQsMMPdW6jGOvWAwV01V56wmP1fhdFbP7wRWlc,48797
202
202
  umap/static/umap/js/umap.permissions.js,sha256=u5OoAaMNF5b055NzxshvG1XHzEt-ji7lcrn7USKzCU4,6168
203
- umap/static/umap/js/umap.popup.js,sha256=zjvY4ZtSdsKi1VJXg20Ka6dLOR5VmhhAR9Zb4Yp8YjA,9759
203
+ umap/static/umap/js/umap.popup.js,sha256=rVO7JPJM0usM6hoKtfZaxgyCKaE-Ze1oFDQrc3T3kIY,9800
204
204
  umap/static/umap/js/umap.share.js,sha256=nUM4r1QZSw6s9lIxgXvMMcG-udsauGWFOrayC9_uEa4,7766
205
205
  umap/static/umap/js/umap.slideshow.js,sha256=xRhNvtQJEYtyiif38KLEyquPn_L50Ga3zkD7j4V23aQ,4398
206
206
  umap/static/umap/js/umap.tableeditor.js,sha256=eZucKKD_KwlVEcIBVyAUxK1H_hiTk3t6RP0r-6Qn2DY,3934
207
207
  umap/static/umap/js/umap.ui.js,sha256=2VJYOmKF7ZvyOePF89LSG3W_O7zA15Kf1X1BRujpdek,6072
208
208
  umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmBuY67rbZUPo-Fs,341
209
- umap/static/umap/js/modules/browser.js,sha256=_EcbBNSyaWD7XBAFeHQx46M9qg4JlIHwWggKutRkBqE,7620
209
+ umap/static/umap/js/modules/browser.js,sha256=AekQJOUxDkM0SgJ2BVkeETPgFzLTOZLxlt7FPFMZrQs,7336
210
+ umap/static/umap/js/modules/caption.js,sha256=2CT2DrFJVqvzvDIDHyD3S0KNLjG7jrR1UWtUcXRzJ3k,3780
210
211
  umap/static/umap/js/modules/dompurify.js,sha256=-4MuNA0bAa60lAL40MPa1F4YHfr2V05isAJdPQlABpk,341
211
212
  umap/static/umap/js/modules/facets.js,sha256=H7RtTKbpCMQa68GIRqkUtmKfDYqrv6pcTSLXeC3GwQc,3428
212
- umap/static/umap/js/modules/global.js,sha256=xmgPwJ5bZg7HYFe3P2eGdF9AOQ2vj1L7S8AdMq4tUPc,643
213
+ umap/static/umap/js/modules/global.js,sha256=Sk4vJuQvbo_KmufBcpG5Jp_nqzzSP_HSHhWpE6aOR1Q,689
213
214
  umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
214
215
  umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
215
216
  umap/static/umap/js/modules/orderable.js,sha256=E3FgVeQG1iEnu56M7KIYOwV1ngNyrF8yXVEs0jExbjc,2518
216
- umap/static/umap/js/modules/panel.js,sha256=mYt0slkw_UtN_Wo6hCXCxzncS24F9jtRNgRcnGBEynI,2552
217
+ umap/static/umap/js/modules/panel.js,sha256=ZEEL7JH4BPFClvzs5HjhA8xSdwwaayll5io9p3j0gns,2728
217
218
  umap/static/umap/js/modules/request.js,sha256=X8RklmGBV-aXSlT3jS2Gnr54YTq36nDL94irAJtXQ-Q,3978
218
219
  umap/static/umap/js/modules/schema.js,sha256=Fwn_BHZ1vvcuyAqymEySV4jfP2FDhTG7OZx1Gp1obhY,11019
219
220
  umap/static/umap/js/modules/urls.js,sha256=5r2xDllTHALs7LurFmCSXMN8YZzhOSYwoQrNsTx4Xq8,853
@@ -334,8 +335,8 @@ umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=FebyRte_vQrD_CLC8Xjc2
334
335
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css,sha256=_pRTmdgpDxfu1Oxb7DnP_DTdA44G-k3kf0otWP8gEnc,990
335
336
  umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt4ZrRcCzTUp6OiNmD5KuDsZCvhG-yZt8lhE,8994
336
337
  umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=GCr5ZQawzxqZysqyxDTH6oUqP-KHxYTsG5xRt28--Zw,15029
337
- umap/static/umap/vendors/dompurify/purify.es.js,sha256=zDaK1X93vA_zVvh4f8jtpgExrhxLdwBcUhKhqZfAAmk,64959
338
- umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=ancAeXR8Dl8kGK-pNKBmZGLI_Ms1NDmoHmBqMtMmI8I,124769
338
+ umap/static/umap/vendors/dompurify/purify.es.js,sha256=bbb7tFci1Ja9p9jIhl6P_TRY_UFR7A3l9cx3iBEYctQ,66134
339
+ umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=3alEtwTS7nADNMarS5Av7mklHAozIHSRGLrZDKHRKIw,127359
339
340
  umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=Mx8aiCT4w9DBEUBJiX5eq9Ocy-6E3C9wLAik-dgOLY4,74768
340
341
  umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayxzynqhE-AgnuRlqYI0,3898
341
342
  umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
@@ -433,7 +434,7 @@ umap/templates/umap/user_dashboard.html,sha256=P9A_5m3HBnEGj87ptbBVOoqrF7gW6Rsyl
433
434
  umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
434
435
  umap/templatetags/umap_tags.py,sha256=oMXsa80LFM52EcLnF6A_o4_PdvOncLBf33pexaeL8nw,1773
435
436
  umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
436
- umap/tests/base.py,sha256=WcrRnmgcTvx9hHekIJsGyVhFwvyNrgT7PYQ6DPwuAZU,4200
437
+ umap/tests/base.py,sha256=ROgBMkhPmZ_4ysjs2GjSJzvsebCh80XxfjXg97CZ3wU,4252
437
438
  umap/tests/conftest.py,sha256=yLFE5sqz61tw_EoZp1nrH-8S49_aStA5Lt1JtZXd-Hg,1498
438
439
  umap/tests/settings.py,sha256=qzKYcWzVXUVYxNdv8m7lLV-xkNrV8A8-LWliTJagHOE,716
439
440
  umap/tests/test_datalayer.py,sha256=HJYSQ11LVQe47nnsXdFeX5Ny4WMDPUYg3frnM5G1IzQ,6888
@@ -462,22 +463,23 @@ umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-
462
463
  umap/tests/integration/conftest.py,sha256=Dt6G7M5u-Usrjil0AjJB7sMUEl33swaZlhkTtjmcgc8,1099
463
464
  umap/tests/integration/test_anonymous_owned_map.py,sha256=aDg_q_2Y1eDyRMd3YqEYVpxPQTybuBfi4B3wKSt4FGc,9487
464
465
  umap/tests/integration/test_basics.py,sha256=dOb5zZ4YNJlkJc6rVt5HIrf4nmy0Bxw5S0Nn94Yi1Qo,2616
465
- umap/tests/integration/test_browser.py,sha256=32hYJolmRpa3Aoe6rO--Z8m_sXgmHvMRekDWdPSbrOk,13551
466
+ umap/tests/integration/test_browser.py,sha256=acBtZt6XufO2qDvZR5o8qRnLOpVpyyoj9Zng7-fOsFo,13653
467
+ umap/tests/integration/test_caption.py,sha256=CRZHNwRHuSPIz33F2kpL85bacQQ0cFXDu12IB1rIskc,1016
466
468
  umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
467
469
  umap/tests/integration/test_collaborative_editing.py,sha256=auvyoGbUJ-xe3HpITrQoCby_X_OZC5tQKUsXASJwtqc,10959
468
470
  umap/tests/integration/test_dashboard.py,sha256=KKHZkkpljsXF0h-c0U1v7KIQVSJNcBOoUdMSLGK60A8,1522
469
471
  umap/tests/integration/test_datalayer.py,sha256=EUvPBPleu-XutVw-u2qpq9-4US5dmyJH7pZNX2Zul1s,5244
470
472
  umap/tests/integration/test_draw_polygon.py,sha256=hP2T_2gE3R55hXaGzgJwh2xPq6vJNImDV0-1s8khxo0,14719
471
473
  umap/tests/integration/test_draw_polyline.py,sha256=Cg_lmRLTNPMk1CJBvVJEXww_wQmmdq9i6CToUEflJ1w,12810
472
- umap/tests/integration/test_edit_datalayer.py,sha256=zj9z87YzbrncC3m8SgLdsEIrojN7LCATXUKZ7neZKuU,8079
474
+ umap/tests/integration/test_edit_datalayer.py,sha256=F8CFcSpKloaR0YzDWmH7XTGwSDHVya8RCITXXqabpR8,9423
473
475
  umap/tests/integration/test_edit_map.py,sha256=tD3Rv3lytts_jJQ-A3JoSGL41alon7g8M8UmnoUuYWg,7109
474
476
  umap/tests/integration/test_edit_marker.py,sha256=1MpA1mjdtVx2HuFkVSYZojBoGJ0fhK_JBGDsv5v6rUE,4736
475
477
  umap/tests/integration/test_edit_polygon.py,sha256=v6NaNtZLagP7A4M2I-jUF5qpy4XA67WUwPtKBjKZnA0,4782
476
478
  umap/tests/integration/test_export_map.py,sha256=Y_sgsT7ZTrrDCx5dLegioJ40GN_PtzK7yRFHTxtIb-4,12738
477
- umap/tests/integration/test_facets_browser.py,sha256=5lPPSx058uV_kcV_MQPSpJfJVogAV_1qWgicFN-z-xs,10493
479
+ umap/tests/integration/test_facets_browser.py,sha256=LjIFFcZgjDzjMOXbaTilBFAMC0K9ycBd8UVB8DNeQzg,10623
478
480
  umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
479
481
  umap/tests/integration/test_import.py,sha256=-UJBDyQvh-ZiVXM78C3_DL4tB98Dcb3R6V3J4BJJg_c,17740
480
- umap/tests/integration/test_map.py,sha256=wajd31jL-aYlk3Figf4kzFtUXP5j3T69piBxCiaSbBQ,8323
482
+ umap/tests/integration/test_map.py,sha256=IkvWreX4GO1OYhpb4-E5KWAdzsaj_gyNiLX_a58ZcHQ,7657
481
483
  umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
482
484
  umap/tests/integration/test_map_preview.py,sha256=4rPQF1zfiwqN7PvwFeB3OagR1wLEMbug0Omcd6zQShQ,2702
483
485
  umap/tests/integration/test_owned_map.py,sha256=51Py-D5xiRqbLhVCwfk3ZnAj8_k8HS4kT67w54QGMLA,9883
@@ -489,11 +491,11 @@ umap/tests/integration/test_star.py,sha256=icB5SbFbXe4KYp3DIJ0xAwCrSQS2rweqIaQTA
489
491
  umap/tests/integration/test_statics.py,sha256=SIwLs0ZwXFu734o5WWYxaBarHrEUw2nCOi3s9aGJwQk,1526
490
492
  umap/tests/integration/test_tableeditor.py,sha256=C4C5qj6b77XSNso7B634r0uaIzpO6Gkos7il6VGiSd8,1058
491
493
  umap/tests/integration/test_tilelayer.py,sha256=nQIhU3GIxxCXrelNWgSsm4iT3Su52rW8ENWtKfiqjWk,4607
492
- umap/tests/integration/test_view_marker.py,sha256=PNDYjkcSAUIgXmyzbWYWJ2NDReSrmeT48wujHWNEhb4,2177
494
+ umap/tests/integration/test_view_marker.py,sha256=Y45rDzhScKsHz7_JgK46tRd29qrBLxndFLAk8pjHnJs,2843
493
495
  umap/tests/integration/test_view_polygon.py,sha256=I7wR6DUrictIMrCPKajCrruJVLry4ZRDdjSs8q0XaOg,1829
494
496
  umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
495
- umap_project-2.3.0.dist-info/METADATA,sha256=mGm_td0KkFSTx68LNrlE0dvpS8H7hz3pFJgVnyj5qhQ,2619
496
- umap_project-2.3.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
497
- umap_project-2.3.0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
498
- umap_project-2.3.0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
499
- umap_project-2.3.0.dist-info/RECORD,,
497
+ umap_project-2.3.1.dist-info/METADATA,sha256=COyVIUXnI4JGxIYyXWklEP5amZDQAic3EjV6_zpiFDw,2619
498
+ umap_project-2.3.1.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
499
+ umap_project-2.3.1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
500
+ umap_project-2.3.1.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
501
+ umap_project-2.3.1.dist-info/RECORD,,