umap-project 2.6.0b1__py3-none-any.whl → 2.6.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.
- umap/__init__.py +1 -1
- umap/decorators.py +2 -3
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +9 -9
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +18 -18
- umap/models.py +29 -16
- umap/static/umap/js/modules/data/features.js +10 -5
- umap/static/umap/js/modules/data/layer.js +1 -1
- umap/static/umap/js/modules/rendering/ui.js +25 -4
- umap/static/umap/js/modules/rules.js +16 -3
- umap/static/umap/locale/en.js +3 -1
- umap/static/umap/locale/en.json +3 -1
- umap/static/umap/locale/eu.js +8 -6
- umap/static/umap/locale/eu.json +8 -6
- umap/static/umap/locale/fa_IR.js +14 -12
- umap/static/umap/locale/fa_IR.json +14 -12
- umap/static/umap/locale/fr.js +3 -1
- umap/static/umap/locale/fr.json +3 -1
- umap/static/umap/locale/hu.js +14 -12
- umap/static/umap/locale/hu.json +14 -12
- umap/static/umap/map.css +2 -2
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
- umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
- umap/templatetags/umap_tags.py +1 -1
- umap/tests/conftest.py +5 -0
- umap/tests/integration/test_browser.py +20 -0
- umap/tests/integration/test_conditional_rules.py +102 -17
- umap/tests/integration/test_draw_polygon.py +28 -0
- umap/tests/test_datalayer.py +63 -33
- umap/tests/test_map.py +30 -21
- umap/views.py +11 -19
- {umap_project-2.6.0b1.dist-info → umap_project-2.6.1.dist-info}/METADATA +6 -6
- {umap_project-2.6.0b1.dist-info → umap_project-2.6.1.dist-info}/RECORD +38 -38
- {umap_project-2.6.0b1.dist-info → umap_project-2.6.1.dist-info}/WHEEL +0 -0
- {umap_project-2.6.0b1.dist-info → umap_project-2.6.1.dist-info}/entry_points.txt +0 -0
- {umap_project-2.6.0b1.dist-info → umap_project-2.6.1.dist-info}/licenses/LICENSE +0 -0
umap/views.py
CHANGED
|
@@ -546,7 +546,7 @@ class SessionMixin:
|
|
|
546
546
|
data = {}
|
|
547
547
|
user = self.request.user
|
|
548
548
|
if hasattr(self, "object"):
|
|
549
|
-
data["is_owner"] = self.object.is_owner(
|
|
549
|
+
data["is_owner"] = self.object.is_owner(self.request)
|
|
550
550
|
if user.is_anonymous:
|
|
551
551
|
return data
|
|
552
552
|
return {
|
|
@@ -725,20 +725,14 @@ class MapView(MapDetailMixin, PermissionsMixin, DetailView):
|
|
|
725
725
|
return self.object.get_absolute_url()
|
|
726
726
|
|
|
727
727
|
def get_datalayers(self):
|
|
728
|
-
return [
|
|
729
|
-
dl.metadata(self.request.user, self.request)
|
|
730
|
-
for dl in self.object.datalayer_set.all()
|
|
731
|
-
]
|
|
728
|
+
return [dl.metadata(self.request) for dl in self.object.datalayer_set.all()]
|
|
732
729
|
|
|
733
730
|
@property
|
|
734
731
|
def edit_mode(self):
|
|
735
732
|
edit_mode = "disabled"
|
|
736
|
-
if self.object.can_edit(self.request
|
|
733
|
+
if self.object.can_edit(self.request):
|
|
737
734
|
edit_mode = "advanced"
|
|
738
|
-
elif any(
|
|
739
|
-
d.can_edit(self.request.user, self.request)
|
|
740
|
-
for d in self.object.datalayer_set.all()
|
|
741
|
-
):
|
|
735
|
+
elif any(d.can_edit(self.request) for d in self.object.datalayer_set.all()):
|
|
742
736
|
edit_mode = "simple"
|
|
743
737
|
return edit_mode
|
|
744
738
|
|
|
@@ -901,7 +895,7 @@ def get_websocket_auth_token(request, map_id, map_inst):
|
|
|
901
895
|
map_object: Map = Map.objects.get(pk=map_id)
|
|
902
896
|
|
|
903
897
|
permissions = ["edit"]
|
|
904
|
-
if map_object.is_owner(request
|
|
898
|
+
if map_object.is_owner(request):
|
|
905
899
|
permissions.append("owner")
|
|
906
900
|
|
|
907
901
|
if request.user.is_authenticated:
|
|
@@ -959,7 +953,7 @@ class AttachAnonymousMap(View):
|
|
|
959
953
|
if (
|
|
960
954
|
self.object.owner
|
|
961
955
|
or not self.object.is_anonymous_owner(self.request)
|
|
962
|
-
or not self.object.can_edit(self.request
|
|
956
|
+
or not self.object.can_edit(self.request)
|
|
963
957
|
or not self.request.user.is_authenticated
|
|
964
958
|
):
|
|
965
959
|
return HttpResponseForbidden()
|
|
@@ -976,7 +970,7 @@ class SendEditLink(FormLessEditMixin, FormView):
|
|
|
976
970
|
if (
|
|
977
971
|
self.object.owner
|
|
978
972
|
or not self.object.is_anonymous_owner(self.request)
|
|
979
|
-
or not self.object.can_edit(self.request
|
|
973
|
+
or not self.object.can_edit(self.request)
|
|
980
974
|
):
|
|
981
975
|
return HttpResponseForbidden()
|
|
982
976
|
form = self.get_form()
|
|
@@ -1009,7 +1003,7 @@ class MapDelete(DeleteView):
|
|
|
1009
1003
|
|
|
1010
1004
|
def form_valid(self, form):
|
|
1011
1005
|
self.object = self.get_object()
|
|
1012
|
-
if not self.object.can_delete(self.request
|
|
1006
|
+
if not self.object.can_delete(self.request):
|
|
1013
1007
|
return HttpResponseForbidden(_("Only its owner can delete the map."))
|
|
1014
1008
|
self.object.delete()
|
|
1015
1009
|
home_url = reverse("home")
|
|
@@ -1186,9 +1180,7 @@ class DataLayerCreate(FormLessEditMixin, GZipMixin, CreateView):
|
|
|
1186
1180
|
form.instance.map = self.kwargs["map_inst"]
|
|
1187
1181
|
self.object = form.save()
|
|
1188
1182
|
# Simple response with only metadata (including new id)
|
|
1189
|
-
response = simple_json_response(
|
|
1190
|
-
**self.object.metadata(self.request.user, self.request)
|
|
1191
|
-
)
|
|
1183
|
+
response = simple_json_response(**self.object.metadata(self.request))
|
|
1192
1184
|
response["X-Datalayer-Version"] = self.version
|
|
1193
1185
|
return response
|
|
1194
1186
|
|
|
@@ -1242,7 +1234,7 @@ class DataLayerUpdate(FormLessEditMixin, GZipMixin, UpdateView):
|
|
|
1242
1234
|
if self.object.map.pk != int(self.kwargs["map_id"]):
|
|
1243
1235
|
return HttpResponseForbidden()
|
|
1244
1236
|
|
|
1245
|
-
if not self.object.can_edit(
|
|
1237
|
+
if not self.object.can_edit(request=self.request):
|
|
1246
1238
|
return HttpResponseForbidden()
|
|
1247
1239
|
|
|
1248
1240
|
reference_version = self.request.headers.get("X-Datalayer-Reference")
|
|
@@ -1262,7 +1254,7 @@ class DataLayerUpdate(FormLessEditMixin, GZipMixin, UpdateView):
|
|
|
1262
1254
|
|
|
1263
1255
|
def form_valid(self, form):
|
|
1264
1256
|
self.object = form.save()
|
|
1265
|
-
data = {**self.object.metadata(self.request
|
|
1257
|
+
data = {**self.object.metadata(self.request)}
|
|
1266
1258
|
if self.request.session.get("needs_reload"):
|
|
1267
1259
|
data["geojson"] = json.loads(self.object.geojson.read().decode())
|
|
1268
1260
|
self.request.session["needs_reload"] = False
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.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,10 +19,10 @@ 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.1
|
|
22
|
+
Requires-Dist: django==5.1.1
|
|
23
23
|
Requires-Dist: pillow==10.4.0
|
|
24
24
|
Requires-Dist: psycopg==3.2.1
|
|
25
|
-
Requires-Dist: pydantic==2.
|
|
25
|
+
Requires-Dist: pydantic==2.9.1
|
|
26
26
|
Requires-Dist: rcssmin==1.1.2
|
|
27
27
|
Requires-Dist: requests==2.32.3
|
|
28
28
|
Requires-Dist: rjsmin==1.2.2
|
|
@@ -33,11 +33,11 @@ Provides-Extra: dev
|
|
|
33
33
|
Requires-Dist: djlint==1.35.2; extra == 'dev'
|
|
34
34
|
Requires-Dist: hatch==1.12.0; extra == 'dev'
|
|
35
35
|
Requires-Dist: isort==5.13.2; extra == 'dev'
|
|
36
|
-
Requires-Dist: mkdocs-material==9.5.
|
|
36
|
+
Requires-Dist: mkdocs-material==9.5.34; extra == 'dev'
|
|
37
37
|
Requires-Dist: mkdocs-static-i18n==1.2.3; extra == 'dev'
|
|
38
38
|
Requires-Dist: mkdocs==1.6.1; extra == 'dev'
|
|
39
39
|
Requires-Dist: pymdown-extensions==10.9; extra == 'dev'
|
|
40
|
-
Requires-Dist: ruff==0.6.
|
|
40
|
+
Requires-Dist: ruff==0.6.4; extra == 'dev'
|
|
41
41
|
Requires-Dist: vermin==1.6.0; extra == 'dev'
|
|
42
42
|
Provides-Extra: docker
|
|
43
43
|
Requires-Dist: uwsgi==2.0.26; extra == 'docker'
|
|
@@ -45,7 +45,7 @@ Provides-Extra: test
|
|
|
45
45
|
Requires-Dist: factory-boy==3.3.1; extra == 'test'
|
|
46
46
|
Requires-Dist: playwright>=1.39; extra == 'test'
|
|
47
47
|
Requires-Dist: pytest-django==4.9.0; extra == 'test'
|
|
48
|
-
Requires-Dist: pytest-playwright==0.5.
|
|
48
|
+
Requires-Dist: pytest-playwright==0.5.2; extra == 'test'
|
|
49
49
|
Requires-Dist: pytest-xdist<4,>=3.5.0; extra == 'test'
|
|
50
50
|
Requires-Dist: pytest==8.3.2; extra == 'test'
|
|
51
51
|
Description-Content-Type: text/markdown
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=ro6AJSaqPxSqAiAh2RHXql8v0t7TVU5xIp6-hIVrO9Y,18
|
|
2
2
|
umap/admin.py,sha256=BSZydLskm87WOovG1dnJztkuFTRKA8zxffUDBzJ4PHE,864
|
|
3
3
|
umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
|
|
4
4
|
umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
|
|
5
5
|
umap/context_processors.py,sha256=tpFuobOUj75OaheysJMIt-Xnq0CFQOMY38e_vohX6dE,534
|
|
6
|
-
umap/decorators.py,sha256=
|
|
6
|
+
umap/decorators.py,sha256=t3YdQLuV0WrqMo2bHEbhkpzmxZe0gRNtzUvczruCn-A,2342
|
|
7
7
|
umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
|
|
8
8
|
umap/forms.py,sha256=geBn_IVvhbpfswkOZyA1RMgoD6AV33ic9N7gH1M92oE,3994
|
|
9
9
|
umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
|
|
10
10
|
umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
|
|
11
|
-
umap/models.py,sha256=
|
|
11
|
+
umap/models.py,sha256=5hCRqQN7pDqK4u_EOqog6nFNtspHUydQDNGmmdZZuyg,19065
|
|
12
12
|
umap/storage.py,sha256=mxFcenC1JECmpNy4H0e7vX8GObDZVXzs1RPjQFWNd5k,2473
|
|
13
13
|
umap/urls.py,sha256=OPJ47SOnVMmczfpMBYfKbf6UvCYWCm8sp36K2jczwUE,7476
|
|
14
14
|
umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
|
|
15
|
-
umap/views.py,sha256=
|
|
15
|
+
umap/views.py,sha256=kkKsaVJ9oqhv3fCYfyVrDXdzFvIqTkC3MUHbbBghWv0,45101
|
|
16
16
|
umap/websocket_server.py,sha256=igM05T95y7IqidPy8nVrCwbydj_xcCEAqwjZPb0mxyA,3023
|
|
17
17
|
umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
|
|
18
18
|
umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
|
|
@@ -44,8 +44,8 @@ umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HX
|
|
|
44
44
|
umap/locale/et/LC_MESSAGES/django.po,sha256=344_8a7EH06mtLYRIGIIKiFrg8HRWmVdVMJl9pV1oso,12435
|
|
45
45
|
umap/locale/eu/LC_MESSAGES/django.mo,sha256=guogxd6hL3SbGClGr7QPv0fr1nAaRa4YPY-7C-MAKUA,11101
|
|
46
46
|
umap/locale/eu/LC_MESSAGES/django.po,sha256=l9zlOHgIkGnH39nSwqf1ydTnQZ3cNdJ8Uo1iyYpBvX8,17674
|
|
47
|
-
umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=
|
|
48
|
-
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=
|
|
47
|
+
umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=t4H1hC7blrnjOwIxILrqRuDsRAm_C8w3Z-KQBbCbLnk,14040
|
|
48
|
+
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=hjk92LrZvSeOP-DzQpj_mp6ik97KiAXqANa7hQnOqbc,20435
|
|
49
49
|
umap/locale/fi/LC_MESSAGES/django.mo,sha256=-p9kvtfjdJKrbSMEfpdvoZ6jEX_njf-0uqzlvydbhOo,4856
|
|
50
50
|
umap/locale/fi/LC_MESSAGES/django.po,sha256=Saq5PpycYhmutr6CWPQNYI4UwQbSdxrCWxapwotaB3c,12823
|
|
51
51
|
umap/locale/fr/LC_MESSAGES/django.mo,sha256=Sn8nXuBFRj4FltY3td4IakYJRpxnkoaZQ7ykctp7AKw,12248
|
|
@@ -56,8 +56,8 @@ umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMj
|
|
|
56
56
|
umap/locale/he/LC_MESSAGES/django.po,sha256=EWdmr83WCPXUHKgfqsvgK1ZOVt-qZJmQuv6tGom8M4A,13820
|
|
57
57
|
umap/locale/hr/LC_MESSAGES/django.mo,sha256=bBcaNSs-oqm_cjm6Bbqaph_ZNHF2_I_FP0xccwU9txI,1558
|
|
58
58
|
umap/locale/hr/LC_MESSAGES/django.po,sha256=Aj3m28Ugyjq-Ih32P7dzw0M4czitDqoYpCvyNsNnEnE,9742
|
|
59
|
-
umap/locale/hu/LC_MESSAGES/django.mo,sha256=
|
|
60
|
-
umap/locale/hu/LC_MESSAGES/django.po,sha256=
|
|
59
|
+
umap/locale/hu/LC_MESSAGES/django.mo,sha256=VJ2x41SiwPthLvefxlzOuSveaOPQA8Ieia8ZeMzgaac,12697
|
|
60
|
+
umap/locale/hu/LC_MESSAGES/django.po,sha256=iMf7G_L9-4qUmGuV8v2BoXBK3X9D9l0eREuzzqHVEmg,18656
|
|
61
61
|
umap/locale/id/LC_MESSAGES/django.mo,sha256=8craaGVnVbONfojnkDUUtoxMyeI2tt6GdIWeWZGcaJ8,425
|
|
62
62
|
umap/locale/id/LC_MESSAGES/django.po,sha256=wmbgIN1R7vRDgAdzBu7ZHnTpg5fpB3hmJyjAzRNoN-M,8000
|
|
63
63
|
umap/locale/is/LC_MESSAGES/django.mo,sha256=8Iufls8l_zQFsOYxrfuUig6Ndm2qtmZiBRDs2TlM8tI,6579
|
|
@@ -149,12 +149,12 @@ umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr
|
|
|
149
149
|
umap/static/umap/content.css,sha256=6p2sgg-FYOjVBiwvk930tBJTl3lfr2m8jjSKkf84Gv0,11555
|
|
150
150
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
151
151
|
umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
|
|
152
|
-
umap/static/umap/map.css,sha256=
|
|
152
|
+
umap/static/umap/map.css,sha256=v5LjwLgUowtzSXQkGdpwSBxfyOWATY57UAgGyMIPQ_8,36963
|
|
153
153
|
umap/static/umap/nav.css,sha256=IKB8Ga8TRal8naxjsgrcrnCO2eaKUL3YNofJB9IN9l0,1865
|
|
154
154
|
umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
|
|
155
155
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
156
156
|
umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
|
|
157
|
-
umap/static/umap/vars.css,sha256=
|
|
157
|
+
umap/static/umap/vars.css,sha256=PiwVk4MzyFjnnQTzQ8rorQenpzoB2l3dGoafxtSKmaU,1752
|
|
158
158
|
umap/static/umap/css/contextmenu.css,sha256=LAoxcStGC2IesXj9FsYqVTGiJD2AIS0MPErygc-b2No,339
|
|
159
159
|
umap/static/umap/css/dialog.css,sha256=9qwy9rOcTQY6SPkteM7dW1t36XQBJVoGETQatSOvffM,879
|
|
160
160
|
umap/static/umap/css/icon.css,sha256=mXmjTvRU5ElQcuibHbht9oIIBv1ch1LrxQTuIshu7KE,3758
|
|
@@ -232,15 +232,15 @@ umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAj
|
|
|
232
232
|
umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
|
|
233
233
|
umap/static/umap/js/modules/permissions.js,sha256=sxItfFTWapFvDhvGvtZ4uONjm6_zparHqIFq1vY5QBI,7534
|
|
234
234
|
umap/static/umap/js/modules/request.js,sha256=hMy3dleGRxstKsksbNa15w7jk4H9-nAV_ub-JdNhDD8,3881
|
|
235
|
-
umap/static/umap/js/modules/rules.js,sha256=
|
|
235
|
+
umap/static/umap/js/modules/rules.js,sha256=NO2GeUDgPfWp8VAkV0AE-BeQsDSVYCutcJIk1NKVM5k,7397
|
|
236
236
|
umap/static/umap/js/modules/schema.js,sha256=TNUNj4_2WDN_0vK083cnui0gKI-qHfiIzkO8sWLJtYY,13071
|
|
237
237
|
umap/static/umap/js/modules/share.js,sha256=XFEhE26Fek9tINpzbAQvXzrwoTRlvyLwarDcJW1bdRw,7253
|
|
238
238
|
umap/static/umap/js/modules/slideshow.js,sha256=fMpQ93VU7Uc9Mhxary_vrAdAK8g_P5Ch6pTVInIJzW4,3445
|
|
239
239
|
umap/static/umap/js/modules/tableeditor.js,sha256=o8t6zheQcaZ9Ybp67W8AFnMJvbHgLuJsOXXQajCwX7U,9788
|
|
240
240
|
umap/static/umap/js/modules/urls.js,sha256=Y_8KJ8CqMDCgV_0E9mc6oohODvRgoNHBx_avL85SR8g,838
|
|
241
241
|
umap/static/umap/js/modules/utils.js,sha256=TzRJEqlvNpPgv-gqIisWLOv4LtfzvoAeEi1NnD_hPRE,11378
|
|
242
|
-
umap/static/umap/js/modules/data/features.js,sha256=
|
|
243
|
-
umap/static/umap/js/modules/data/layer.js,sha256=
|
|
242
|
+
umap/static/umap/js/modules/data/features.js,sha256=W3v7rwgs-ypvcc3neYcxyMOyqbxxGIGY79ahd1zoQzE,26291
|
|
243
|
+
umap/static/umap/js/modules/data/layer.js,sha256=hcEgr1xlIayfMOTGNRIWP9BwluZAnqgoJ1RSAcVZeLw,33195
|
|
244
244
|
umap/static/umap/js/modules/importers/communesfr.js,sha256=GuBriig7n3-AmtBWByrD43S12bQS_vr6VPlEw3bCL0g,1316
|
|
245
245
|
umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
|
|
246
246
|
umap/static/umap/js/modules/importers/geodatamine.js,sha256=FtrHMVntY4pPelw0uDZCbDVxy5er1ZzDc80zcDpvRnc,2949
|
|
@@ -248,7 +248,7 @@ umap/static/umap/js/modules/importers/overpass.js,sha256=wshao2HAJIz_qowqu6tWxeF
|
|
|
248
248
|
umap/static/umap/js/modules/rendering/icon.js,sha256=hguSJt3wDqe0oSQIm1zrYSbyktKVQUWv-QTo5fYdlc8,7861
|
|
249
249
|
umap/static/umap/js/modules/rendering/popup.js,sha256=s_LhWy3nqKm_GEwc9aCbzSG1JM9M5-kshwNfKQNdu3A,2460
|
|
250
250
|
umap/static/umap/js/modules/rendering/template.js,sha256=79umxBD0pMuz8n-sx54Zg7FKcm_fbEkGDlt3vnEXtXo,7177
|
|
251
|
-
umap/static/umap/js/modules/rendering/ui.js,sha256=
|
|
251
|
+
umap/static/umap/js/modules/rendering/ui.js,sha256=2mRmfBO1gBlFzdh9VaQCupP4wj11YJFu-4hgMzHkvJo,17470
|
|
252
252
|
umap/static/umap/js/modules/rendering/layers/base.js,sha256=QNQm_IHSX2jwhr6RfoURk9ypSi4lH1Z0voZNH84VLV0,2419
|
|
253
253
|
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=HhmYc_PCaA4VoRO_2TUIaPhkiRE1RUOoNEJVGs10Etk,14550
|
|
254
254
|
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=tIwkcJhJ7SQTpMK7YXumcA6KMjuZjPKWzc_xuF9d_Dc,3360
|
|
@@ -281,29 +281,29 @@ umap/static/umap/locale/de.js,sha256=5A_n__cFkmTqCVrGEb3BCe4WpQvjqZT2W3ic4CiC7rM
|
|
|
281
281
|
umap/static/umap/locale/de.json,sha256=6GbeG2QNgD1Cbjn_t0jEKLh2Q5Pdjtr5EqHIONAfd0g,31918
|
|
282
282
|
umap/static/umap/locale/el.js,sha256=Uk9d4jo97ggH2grc-VCsUKyk9JFGDwsvC_Ek1pNF98s,40724
|
|
283
283
|
umap/static/umap/locale/el.json,sha256=oOyM-fcLRGuB-2xsJaNVbBaM_2G5_wxb-GMDfVzv9Ds,40659
|
|
284
|
-
umap/static/umap/locale/en.js,sha256=
|
|
285
|
-
umap/static/umap/locale/en.json,sha256=
|
|
284
|
+
umap/static/umap/locale/en.js,sha256=LhKU66xn0N3PSmQvKqlkLfeJLE-BAS-R-LQ2bCBWm9E,29395
|
|
285
|
+
umap/static/umap/locale/en.json,sha256=rrUpQFKkazodyknBNJOAplmo7wieDZ9Y_Kj73oAqr8M,29330
|
|
286
286
|
umap/static/umap/locale/en_US.json,sha256=dZssHREakThYdUHIKIWWqX3CM9wjS4LrMvMB9-rZBGw,28993
|
|
287
287
|
umap/static/umap/locale/es.js,sha256=mC8vLIXS026NP7HjIOShBlPZKGtfgKH7p_4GmNgCpa0,31571
|
|
288
288
|
umap/static/umap/locale/es.json,sha256=dAH6Yo6iWVSmO5roUs9qH4ANjw6IwnCMQwYyuAefuGM,31506
|
|
289
289
|
umap/static/umap/locale/et.js,sha256=TKMGYlcb-D8KW8WVXGIAR8wDdgqCmi6pb9GXMbpYFEU,29465
|
|
290
290
|
umap/static/umap/locale/et.json,sha256=CPkjYxDD3SsBVyiKO24OREw4l3QVOebdXtLakyNyKyo,29400
|
|
291
|
-
umap/static/umap/locale/eu.js,sha256=
|
|
292
|
-
umap/static/umap/locale/eu.json,sha256=
|
|
293
|
-
umap/static/umap/locale/fa_IR.js,sha256=
|
|
294
|
-
umap/static/umap/locale/fa_IR.json,sha256=
|
|
291
|
+
umap/static/umap/locale/eu.js,sha256=mE1wggWHJHTvuGV-ssScN93um8ULnb_PSgIn32D2O1Y,31311
|
|
292
|
+
umap/static/umap/locale/eu.json,sha256=5sdH-hXljmu6fM-M514QouLN7B0hf1Oc-pojsgC9zS0,31246
|
|
293
|
+
umap/static/umap/locale/fa_IR.js,sha256=3gEG9DjMeGMQZg2Nm7xxghr1loWodtjC1UFGkvO02aA,38112
|
|
294
|
+
umap/static/umap/locale/fa_IR.json,sha256=pbxwHf1S63wo5YyTkOnKKANrcNAuObeOI01eO7Tl6z8,38041
|
|
295
295
|
umap/static/umap/locale/fi.js,sha256=XUIrgmxg9KjmpDwFKRULr-EmyjjTBhWWA_ylX_nSjvw,30137
|
|
296
296
|
umap/static/umap/locale/fi.json,sha256=3suDckLIR0BpLA15zLXPAXEY-DnVlbA-YEfeWqx3zfA,30072
|
|
297
|
-
umap/static/umap/locale/fr.js,sha256
|
|
298
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
297
|
+
umap/static/umap/locale/fr.js,sha256=qbhzRxExAYPoRSaOcqcMWNbuhoSgrhJxreQlOXhP1a8,32169
|
|
298
|
+
umap/static/umap/locale/fr.json,sha256=Hz2eHjWvuCOGSYkjQgVy5fTjJGKajnBtJr1oswvJjTY,32104
|
|
299
299
|
umap/static/umap/locale/gl.js,sha256=A7QDaq4ZBnOXIr6tqfWB7VDSo5UsV70L2HVhiqZXOOI,30692
|
|
300
300
|
umap/static/umap/locale/gl.json,sha256=poqyCH2UFxVAOWepLODcjN3Xtyy3oancGy5c-ch0ocw,30627
|
|
301
301
|
umap/static/umap/locale/he.js,sha256=IQovP2AjKgrah84sWxs9nH7AD3a-w4oNr1WJKDpgjV8,32719
|
|
302
302
|
umap/static/umap/locale/he.json,sha256=F9r726IxWWigKrHajmQyc8Sdyn9Lcj7vIsMAEsPLLw8,32654
|
|
303
303
|
umap/static/umap/locale/hr.js,sha256=QrWfkgZ17dCCBn1fLys07TygfMRWAS2YlhWeJQRsskE,29440
|
|
304
304
|
umap/static/umap/locale/hr.json,sha256=VaHPBeo8GrkyxwyHCpadhRWnPyYktbMzil7lUkCxx-M,29375
|
|
305
|
-
umap/static/umap/locale/hu.js,sha256=
|
|
306
|
-
umap/static/umap/locale/hu.json,sha256=
|
|
305
|
+
umap/static/umap/locale/hu.js,sha256=DSxi72AK8rEcwLmNJymhAtg8jE8JeXry432ilecnlu0,33684
|
|
306
|
+
umap/static/umap/locale/hu.json,sha256=EoCsm1GE9SPCPVaE2ztcxlwPj6oMtudLL1iyZMd9jYk,33619
|
|
307
307
|
umap/static/umap/locale/id.js,sha256=jx04Ng_EzPT3Av7mbVRQvmK1izSat2ucsTnYFj98u8U,29269
|
|
308
308
|
umap/static/umap/locale/id.json,sha256=wyCCbjhU_zc7xE6Zd73k2UktzvennaSl6qUq9Bh0JPo,29204
|
|
309
309
|
umap/static/umap/locale/is.js,sha256=SH5yWYn72yTZnbJkJbwSIEl8P6Kadyk7UJ0xqUIBoz8,30601
|
|
@@ -379,7 +379,7 @@ umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt
|
|
|
379
379
|
umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=Cb88gwY7oibx7WL1Y3bfxc_Cur6yo62nLGaEmzP7Fbw,15530
|
|
380
380
|
umap/static/umap/vendors/dompurify/purify.es.js,sha256=TScM8DATZbXGCLOVBYhpfX4gbnKRCAlt53htdqS9umc,63951
|
|
381
381
|
umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=7KkvHp3X9QVutUAQnlG8iCMV4jJeHRsggC4yBoO2dTk,123294
|
|
382
|
-
umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=
|
|
382
|
+
umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=5-RlyT7RhocenG85yKIhSPdCvUrpxH2o-lvWS9St5uA,69568
|
|
383
383
|
umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayxzynqhE-AgnuRlqYI0,3898
|
|
384
384
|
umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
|
|
385
385
|
umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js,sha256=ati65azw8WxPG70b4JblFSHgD-fJ0ytriQEzC5tJWCM,9141
|
|
@@ -413,7 +413,7 @@ umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css,sha256=b1FUshftU
|
|
|
413
413
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map,sha256=BeirY1RltKf8DrqX4U6IEg49yGaSOS4II4CqTJ96Hi8,371
|
|
414
414
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js,sha256=jVdNHjjOOJMoykxLOdGxOUzGJDlmr8MM6sFF--b1_sI,12701
|
|
415
415
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map,sha256=JY9YqG-jXWMRHF4pJcvdjB5hyLq7V8MpsaqhnX7p5tE,15802
|
|
416
|
-
umap/static/umap/vendors/markercluster/MarkerCluster.Default.css,sha256=
|
|
416
|
+
umap/static/umap/vendors/markercluster/MarkerCluster.Default.css,sha256=YSWCMtmNZNwqex4CEw1nQhvFub2lmU7vcCKP-XVwwXA,1287
|
|
417
417
|
umap/static/umap/vendors/markercluster/MarkerCluster.css,sha256=YU3qCpj_P06tdPBJGPax0bm6Q1wltfwjsho5TR4-TYc,872
|
|
418
418
|
umap/static/umap/vendors/markercluster/leaflet.markercluster.js,sha256=Hk4dIpcqOSb0hZjgyvFOP-cEmDXUKKNE_tT542ZbNQg,34136
|
|
419
419
|
umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map,sha256=p2sESsX-2ysbKhEAYIPZFpVglwMWjQNxLkswXIuv2K8,41953
|
|
@@ -472,15 +472,15 @@ umap/templates/umap/user_dashboard.html,sha256=pc_5pTzAIW4ggZUl2R6aIKB3cdVFTodBt
|
|
|
472
472
|
umap/templates/umap/user_teams.html,sha256=MfelqIwoLRVjvX-KpVtwqh0I7pNx3oDRhqmSRdpT4bs,1570
|
|
473
473
|
umap/templates/umap/components/alerts/alert.html,sha256=eQRALES_PzIP3qs16eXq9SGz2KWODr4VY0tyl_hARCw,3482
|
|
474
474
|
umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
|
-
umap/templatetags/umap_tags.py,sha256=
|
|
475
|
+
umap/templatetags/umap_tags.py,sha256=OumX1AI9uWzNP3zbjexTz7lGp10FweW0NRFSsdQ_cuU,1759
|
|
476
476
|
umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
477
|
umap/tests/base.py,sha256=VsyFT-cqXEL0scSI69WKUdItfagqOZ3t2omINyVpb1M,4471
|
|
478
|
-
umap/tests/conftest.py,sha256=
|
|
478
|
+
umap/tests/conftest.py,sha256=KQCZanCTl1ABLIKOuyxS_cpBoXGiwjDc29jsLBiSWxY,1633
|
|
479
479
|
umap/tests/settings.py,sha256=tY70LMFXyo_WijswqGyeWai7vBzM62k7IA8pkkbc9y4,816
|
|
480
|
-
umap/tests/test_datalayer.py,sha256=
|
|
480
|
+
umap/tests/test_datalayer.py,sha256=auf3u3BDIPianpn08CHkEsKEGq-frseMagAJc1OxXEM,8552
|
|
481
481
|
umap/tests/test_datalayer_views.py,sha256=oq1azMk0IUgf688a41VJHZO4In7On3Nb72x3wwP_ZVQ,22105
|
|
482
482
|
umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
|
|
483
|
-
umap/tests/test_map.py,sha256=
|
|
483
|
+
umap/tests/test_map.py,sha256=yDSU75RxqCmXyiL90NZbrqvrYtmm6OFoc7SQ0kf0ei0,4874
|
|
484
484
|
umap/tests/test_map_views.py,sha256=1bd8vqVq3hYQ4m00klMi6Blxcy2dGKzHKRAxx85vfHk,31898
|
|
485
485
|
umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
|
|
486
486
|
umap/tests/test_statics.py,sha256=WJe4DZ-cSfN_wCRD8U9ocl6v5FoXrVwBjU6kI6BOcmY,1252
|
|
@@ -510,15 +510,15 @@ umap/tests/integration/conftest.py,sha256=bo-ndi3ARHnkwRGo8fGi6lqTd_LdXWSOpgNyXE
|
|
|
510
510
|
umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
|
|
511
511
|
umap/tests/integration/test_anonymous_owned_map.py,sha256=nsj9VNJ-uP8gToR-eYxBipE20s3DACfQaddpmvwqUBs,10606
|
|
512
512
|
umap/tests/integration/test_basics.py,sha256=_XC0ojQU_HpBvkIPSt1g_rW1B0vjmAko8FSJ7WOD67M,3760
|
|
513
|
-
umap/tests/integration/test_browser.py,sha256=
|
|
513
|
+
umap/tests/integration/test_browser.py,sha256=pFPeUlPG5Kpk9EhiHJmSenBpVRI3k15Ad8qBha48YJQ,17820
|
|
514
514
|
umap/tests/integration/test_caption.py,sha256=UykDB2WpyFl0sbXGrSJ1IAJTM0PzYajPyz-XWaqUBws,1795
|
|
515
515
|
umap/tests/integration/test_categorized_layer.py,sha256=1MJopDBMLUd_NN2NVqWoePuNPS42RbNlXOwXeyKdZo8,5586
|
|
516
516
|
umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
|
|
517
517
|
umap/tests/integration/test_circles_layer.py,sha256=7kBqDyvPHbK31LQLU5NVP8mxNqV-Rn7LnzwyDmg801I,1868
|
|
518
|
-
umap/tests/integration/test_conditional_rules.py,sha256=
|
|
518
|
+
umap/tests/integration/test_conditional_rules.py,sha256=josrLgUbBvoa9ygbJB6sKR5_GnTXo65UGrJMSpD8QbY,11890
|
|
519
519
|
umap/tests/integration/test_dashboard.py,sha256=OmqZx6NwtTnPj1-HsYyg5WptcmPpSq5pL01VtxZuuzk,1526
|
|
520
520
|
umap/tests/integration/test_datalayer.py,sha256=39ceMKkvwaE-TOh6GH1q0YwnYOSMEyQA4Ao0XSXR0nI,5471
|
|
521
|
-
umap/tests/integration/test_draw_polygon.py,sha256=
|
|
521
|
+
umap/tests/integration/test_draw_polygon.py,sha256=s_a1j2Ye3jq09VmALZM0k1j2wYgoSjtjtlwpc8Eh_Sg,25311
|
|
522
522
|
umap/tests/integration/test_draw_polyline.py,sha256=NxoY-Sf56Kyu-AuX-1sO9xCuS5InK9NdEuUZ2EMklTg,12453
|
|
523
523
|
umap/tests/integration/test_edit_datalayer.py,sha256=gg55b6xwWo__-DC4at7YT4NcaFnxn47GPhlrd86NZ9s,9505
|
|
524
524
|
umap/tests/integration/test_edit_map.py,sha256=cIJWelF1DWIUjqEyyb7NyaDLU8cQ0LGo-WfUEUx_5-A,7111
|
|
@@ -545,8 +545,8 @@ umap/tests/integration/test_view_marker.py,sha256=sPZBbX5jF8WkbAl3Q9eta7a80E2rPX
|
|
|
545
545
|
umap/tests/integration/test_view_polygon.py,sha256=I7wR6DUrictIMrCPKajCrruJVLry4ZRDdjSs8q0XaOg,1829
|
|
546
546
|
umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
|
|
547
547
|
umap/tests/integration/test_websocket_sync.py,sha256=sdMjvZsCImhceQiFvSBHKo4dR6HJPl7-D0NItl2QsNU,10530
|
|
548
|
-
umap_project-2.6.
|
|
549
|
-
umap_project-2.6.
|
|
550
|
-
umap_project-2.6.
|
|
551
|
-
umap_project-2.6.
|
|
552
|
-
umap_project-2.6.
|
|
548
|
+
umap_project-2.6.1.dist-info/METADATA,sha256=FOZHPJzvEJiZDd6Iu7gY7U2H7PK8F3rEem_CDOHTKVs,2679
|
|
549
|
+
umap_project-2.6.1.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
|
550
|
+
umap_project-2.6.1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
551
|
+
umap_project-2.6.1.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
552
|
+
umap_project-2.6.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|