umap-project 2.8.0a1__py3-none-any.whl → 2.8.0b0__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/locale/en/LC_MESSAGES/django.po +13 -13
- umap/management/commands/empty_trash.py +5 -2
- umap/settings/local_s3.py +45 -0
- umap/static/umap/css/form.css +3 -0
- umap/static/umap/js/modules/data/features.js +12 -0
- umap/static/umap/js/modules/data/layer.js +37 -18
- umap/static/umap/js/modules/importer.js +65 -20
- umap/static/umap/js/modules/rendering/icon.js +2 -1
- umap/static/umap/js/modules/rendering/map.js +7 -7
- umap/static/umap/js/modules/rendering/ui.js +6 -2
- umap/static/umap/js/modules/request.js +2 -2
- umap/static/umap/js/modules/ui/dialog.js +5 -0
- umap/static/umap/js/modules/umap.js +32 -9
- umap/static/umap/js/umap.controls.js +7 -4
- umap/static/umap/js/umap.forms.js +44 -0
- umap/static/umap/locale/en.js +3 -1
- umap/static/umap/locale/en.json +3 -1
- umap/static/umap/locale/fr.js +3 -1
- umap/static/umap/locale/fr.json +3 -1
- umap/static/umap/map.css +34 -166
- umap/static/umap/vars.css +0 -1
- umap/templates/base.html +2 -0
- umap/templates/umap/components/alerts/alert.html +4 -0
- umap/templates/umap/css.html +3 -0
- umap/templates/umap/js.html +2 -0
- umap/templates/umap/map_init.html +2 -0
- umap/templates/umap/user_dashboard.html +2 -0
- umap/tests/fixtures/test_upload_simple_marker.json +19 -0
- umap/tests/integration/test_edit_datalayer.py +11 -0
- umap/tests/integration/test_import.py +20 -1
- umap/tests/test_dashboard.py +82 -0
- umap/tests/test_team_views.py +35 -1
- umap/tests/test_views.py +0 -74
- umap/views.py +20 -15
- {umap_project-2.8.0a1.dist-info → umap_project-2.8.0b0.dist-info}/METADATA +1 -1
- {umap_project-2.8.0a1.dist-info → umap_project-2.8.0b0.dist-info}/RECORD +40 -37
- {umap_project-2.8.0a1.dist-info → umap_project-2.8.0b0.dist-info}/WHEEL +0 -0
- {umap_project-2.8.0a1.dist-info → umap_project-2.8.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.8.0a1.dist-info → umap_project-2.8.0b0.dist-info}/licenses/LICENSE +0 -0
umap/tests/test_views.py
CHANGED
|
@@ -267,80 +267,6 @@ def test_change_user_slug(client, user, settings):
|
|
|
267
267
|
assert f"/en/user/{user.pk}/" in response.content.decode()
|
|
268
268
|
|
|
269
269
|
|
|
270
|
-
@pytest.mark.django_db
|
|
271
|
-
def test_user_dashboard_is_restricted_to_logged_in(client):
|
|
272
|
-
response = client.get(reverse("user_dashboard"))
|
|
273
|
-
assert response.status_code == 302
|
|
274
|
-
assert response["Location"] == "/en/login/?next=/en/me"
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
@pytest.mark.django_db
|
|
278
|
-
def test_user_dashboard_display_user_maps(client, map):
|
|
279
|
-
client.login(username=map.owner.username, password="123123")
|
|
280
|
-
response = client.get(reverse("user_dashboard"))
|
|
281
|
-
assert response.status_code == 200
|
|
282
|
-
body = response.content.decode()
|
|
283
|
-
assert map.name in body
|
|
284
|
-
assert f"{map.get_absolute_url()}?edit" in body
|
|
285
|
-
assert f"{map.get_absolute_url()}?share" in body
|
|
286
|
-
assert f"/map/{map.pk}/download" in body
|
|
287
|
-
assert "Everyone (public)" in body
|
|
288
|
-
assert "Owner only" in body
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
@pytest.mark.django_db
|
|
292
|
-
def test_user_dashboard_do_not_display_blocked_user_maps(client, map):
|
|
293
|
-
map.share_status = Map.BLOCKED
|
|
294
|
-
map.save()
|
|
295
|
-
client.login(username=map.owner.username, password="123123")
|
|
296
|
-
response = client.get(reverse("user_dashboard"))
|
|
297
|
-
assert response.status_code == 200
|
|
298
|
-
body = response.content.decode()
|
|
299
|
-
assert map.name not in body
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
@pytest.mark.django_db
|
|
303
|
-
def test_user_dashboard_do_not_display_deleted_user_maps(client, map):
|
|
304
|
-
map.share_status = Map.DELETED
|
|
305
|
-
map.save()
|
|
306
|
-
client.login(username=map.owner.username, password="123123")
|
|
307
|
-
response = client.get(reverse("user_dashboard"))
|
|
308
|
-
assert response.status_code == 200
|
|
309
|
-
body = response.content.decode()
|
|
310
|
-
assert map.name not in body
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
@pytest.mark.django_db
|
|
314
|
-
def test_user_dashboard_display_user_team_maps(client, map, team, user):
|
|
315
|
-
user.teams.add(team)
|
|
316
|
-
user.save()
|
|
317
|
-
map.team = team
|
|
318
|
-
map.save()
|
|
319
|
-
client.login(username=user.username, password="123123")
|
|
320
|
-
response = client.get(reverse("user_dashboard"))
|
|
321
|
-
assert response.status_code == 200
|
|
322
|
-
body = response.content.decode()
|
|
323
|
-
assert map.name in body
|
|
324
|
-
assert map.get_absolute_url() in body
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
@pytest.mark.django_db
|
|
328
|
-
def test_user_dashboard_display_user_maps_distinct(client, map):
|
|
329
|
-
# cf https://github.com/umap-project/umap/issues/1325
|
|
330
|
-
anonymap = MapFactory(name="Map witout owner should not appear")
|
|
331
|
-
user1 = UserFactory(username="user1")
|
|
332
|
-
user2 = UserFactory(username="user2")
|
|
333
|
-
map.editors.add(user1)
|
|
334
|
-
map.editors.add(user2)
|
|
335
|
-
map.save()
|
|
336
|
-
client.login(username=map.owner.username, password="123123")
|
|
337
|
-
response = client.get(reverse("user_dashboard"))
|
|
338
|
-
assert response.status_code == 200
|
|
339
|
-
body = response.content.decode()
|
|
340
|
-
assert body.count(f'<a href="/en/map/test-map_{map.pk}">test map</a>') == 1
|
|
341
|
-
assert body.count(anonymap.name) == 0
|
|
342
|
-
|
|
343
|
-
|
|
344
270
|
@pytest.mark.django_db
|
|
345
271
|
def test_logout_should_return_redirect(client, user, settings):
|
|
346
272
|
client.login(username=user.username, password="123123")
|
umap/views.py
CHANGED
|
@@ -317,7 +317,11 @@ class TeamMaps(PaginatorMixin, DetailView):
|
|
|
317
317
|
context_object_name = "current_team"
|
|
318
318
|
|
|
319
319
|
def get_maps(self):
|
|
320
|
-
|
|
320
|
+
qs = Map.public
|
|
321
|
+
user = self.request.user
|
|
322
|
+
if user.is_authenticated and user in self.object.users.all():
|
|
323
|
+
qs = Map.objects
|
|
324
|
+
return qs.filter(team=self.object).order_by("-modified_at")
|
|
321
325
|
|
|
322
326
|
def get_context_data(self, **kwargs):
|
|
323
327
|
kwargs.update(
|
|
@@ -452,27 +456,27 @@ showcase = MapsShowCase.as_view()
|
|
|
452
456
|
|
|
453
457
|
|
|
454
458
|
def validate_url(request):
|
|
455
|
-
assert request.method == "GET"
|
|
459
|
+
assert request.method == "GET", "Wrong HTTP method"
|
|
456
460
|
url = request.GET.get("url")
|
|
457
|
-
assert url
|
|
461
|
+
assert url, "Missing URL"
|
|
458
462
|
try:
|
|
459
463
|
URLValidator(url)
|
|
460
|
-
except ValidationError:
|
|
461
|
-
raise AssertionError()
|
|
462
|
-
assert "HTTP_REFERER" in request.META
|
|
464
|
+
except ValidationError as err:
|
|
465
|
+
raise AssertionError(err)
|
|
466
|
+
assert "HTTP_REFERER" in request.META, "Missing HTTP_REFERER"
|
|
463
467
|
referer = urlparse(request.META.get("HTTP_REFERER"))
|
|
464
468
|
toproxy = urlparse(url)
|
|
465
469
|
local = urlparse(settings.SITE_URL)
|
|
466
|
-
assert toproxy.hostname
|
|
467
|
-
assert referer.hostname == local.hostname
|
|
468
|
-
assert toproxy.hostname != "localhost"
|
|
469
|
-
assert toproxy.netloc != local.netloc
|
|
470
|
+
assert toproxy.hostname, "No hostname"
|
|
471
|
+
assert referer.hostname == local.hostname, f"{referer.hostname} != {local.hostname}"
|
|
472
|
+
assert toproxy.hostname != "localhost", "Invalid localhost target"
|
|
473
|
+
assert toproxy.netloc != local.netloc, "Invalid netloc"
|
|
470
474
|
try:
|
|
471
475
|
# clean this when in python 3.4
|
|
472
476
|
ipaddress = socket.gethostbyname(toproxy.hostname)
|
|
473
|
-
except:
|
|
474
|
-
raise AssertionError()
|
|
475
|
-
assert not PRIVATE_IP.match(ipaddress)
|
|
477
|
+
except Exception as err:
|
|
478
|
+
raise AssertionError(err)
|
|
479
|
+
assert not PRIVATE_IP.match(ipaddress), "Private IP"
|
|
476
480
|
return url
|
|
477
481
|
|
|
478
482
|
|
|
@@ -480,7 +484,8 @@ class AjaxProxy(View):
|
|
|
480
484
|
def get(self, *args, **kwargs):
|
|
481
485
|
try:
|
|
482
486
|
url = validate_url(self.request)
|
|
483
|
-
except AssertionError:
|
|
487
|
+
except AssertionError as err:
|
|
488
|
+
print(f"AjaxProxy: {err}")
|
|
484
489
|
return HttpResponseBadRequest()
|
|
485
490
|
try:
|
|
486
491
|
ttl = int(self.request.GET.get("ttl"))
|
|
@@ -1168,7 +1173,7 @@ class DataLayerView(BaseDetailView):
|
|
|
1168
1173
|
# (no gzip/cache-control/If-Modified-Since/If-None-Match)
|
|
1169
1174
|
data = self.filedata
|
|
1170
1175
|
response = HttpResponse(data, content_type="application/geo+json")
|
|
1171
|
-
|
|
1176
|
+
response["X-Datalayer-Version"] = self.fileversion
|
|
1172
1177
|
return response
|
|
1173
1178
|
|
|
1174
1179
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=HZ0yMvM34f8qnnOHbQ9kawpYuPlBrkN42-iKFemdmLQ,20
|
|
2
2
|
umap/admin.py,sha256=LoQytPGK6pLBqZ5QgQ9DIPAxhTG31cTtHOCqO9BY5S4,2645
|
|
3
3
|
umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
|
|
4
4
|
umap/asgi.py,sha256=CuVSNBwNb4AvuaD_Ha3ehtvf-c46ijZoVOSoP6WhXp8,432
|
|
@@ -12,7 +12,7 @@ umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
|
|
|
12
12
|
umap/models.py,sha256=4SzhKdyWXfJMdzEpCyVPnzbTT-TGbDusAy7SP_8UuwI,17929
|
|
13
13
|
umap/urls.py,sha256=LA3zxyu-GDo8kVqdyU7_bdbDGhDJV8_yFW4oEPTXw4s,7559
|
|
14
14
|
umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
|
|
15
|
-
umap/views.py,sha256=
|
|
15
|
+
umap/views.py,sha256=Z1_X5FaAhco-O_Np6FP8nXDgG-bqOL005R_qWT_GsMg,46414
|
|
16
16
|
umap/websocket_server.py,sha256=D9sTHhKg0DG37b8bw7KWTKMDc6TPyTkNLCVkh2mlFOo,6604
|
|
17
17
|
umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
|
|
18
18
|
umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
|
|
@@ -37,7 +37,7 @@ umap/locale/de/LC_MESSAGES/django.po,sha256=kVaio9t9AKF3vBcZJ-Q2P6Ua90MIwbIRCABW
|
|
|
37
37
|
umap/locale/el/LC_MESSAGES/django.mo,sha256=bJOH3_UQZoEfYi9mrsWHZfV6fVhMgnuiNQ_Dc_xOcuA,15058
|
|
38
38
|
umap/locale/el/LC_MESSAGES/django.po,sha256=ruqAlyQryr7Ip5aTbjEwH6eumb_b8JS-u6qcl9yjN04,22180
|
|
39
39
|
umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
|
|
40
|
-
umap/locale/en/LC_MESSAGES/django.po,sha256=
|
|
40
|
+
umap/locale/en/LC_MESSAGES/django.po,sha256=Ht498JmD3Zp08W7qpOjJBTngf6oSMW2pR5dT3OneL5Q,13628
|
|
41
41
|
umap/locale/es/LC_MESSAGES/django.mo,sha256=rblKBhki-DnIAVxbo2UCYQCIte1dqRZDyAjDQCJgKug,11985
|
|
42
42
|
umap/locale/es/LC_MESSAGES/django.po,sha256=E0xSceHtg4CkgSHT2mFPRdiBP9n8c-PnKDXHQgAgStA,18690
|
|
43
43
|
umap/locale/et/LC_MESSAGES/django.mo,sha256=Y5ulivMuS2IOR9ITeWRx6PBynPn6LBFUizrFWRraR1s,5051
|
|
@@ -114,7 +114,7 @@ umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
114
114
|
umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
115
|
umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
|
|
116
116
|
umap/management/commands/clean_tilelayer.py,sha256=Rcc2PibUUreU0jUZMtUlyqVvgbQMLMuuCZ2tkrzRqHU,5712
|
|
117
|
-
umap/management/commands/empty_trash.py,sha256=
|
|
117
|
+
umap/management/commands/empty_trash.py,sha256=POmBXloLoPZ_6MFbgsDz4YOKGmEwIWrvMt5v5QMi7ZM,1136
|
|
118
118
|
umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUeY2SlOrTXS42tE0-bs,1281
|
|
119
119
|
umap/management/commands/import_pictograms.py,sha256=RuQDCoiKamba4l3fZUGAXRyd-3zwWWT5c5AhgDvs7AQ,2369
|
|
120
120
|
umap/management/commands/migrate_to_S3.py,sha256=GBGnydc107v75NYsQfMLLO7Jx0i2g7EKEfE00YZVb1M,1130
|
|
@@ -149,6 +149,7 @@ umap/settings/__init__.py,sha256=aPJkOTk0uFusIBA-uOjdUi10R5Cxt4jl5yv2_uCTUvo,170
|
|
|
149
149
|
umap/settings/base.py,sha256=rhaIDby2wSb4v8IBx_6xqHVnIigD4G0xzdHX2-9UfNM,11096
|
|
150
150
|
umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
|
|
151
151
|
umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
|
|
152
|
+
umap/settings/local_s3.py,sha256=tunaCRn_I7P0IZH-UJpB1I5ft2kE0ZIBY8GYZeLYyfM,1387
|
|
152
153
|
umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
154
|
umap/static/umap/base.css,sha256=oUvs6YBtFZCgOEk7tVhnlkooORFZ5e1I9qSFGNeBrlw,3771
|
|
154
155
|
umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
|
|
@@ -156,16 +157,16 @@ umap/static/umap/content.css,sha256=04_50AU8iF26_979Ds0sMby4LlKIpm3J08zsv1-blIY,
|
|
|
156
157
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
157
158
|
umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
|
|
158
159
|
umap/static/umap/keycloak.png,sha256=K-23F1dda0wD_39dXN5KmGqmgFvde6baNiZ8gdk0NyY,16598
|
|
159
|
-
umap/static/umap/map.css,sha256=
|
|
160
|
+
umap/static/umap/map.css,sha256=B82ED0WSOrJs4kh943ThK-vi5sU6250DStSsDkfYhVw,25208
|
|
160
161
|
umap/static/umap/nav.css,sha256=IKB8Ga8TRal8naxjsgrcrnCO2eaKUL3YNofJB9IN9l0,1865
|
|
161
162
|
umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
|
|
162
163
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
163
164
|
umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
|
|
164
|
-
umap/static/umap/vars.css,sha256=
|
|
165
|
+
umap/static/umap/vars.css,sha256=OUwPeNbExmoMkyCwmBtqOese9JqjvC87hvJRDP4u4S8,1825
|
|
165
166
|
umap/static/umap/css/bar.css,sha256=u40xqJQtYgBDfhdELlXxkh9kPmn7T2pMEJQWeiG6EvA,4851
|
|
166
167
|
umap/static/umap/css/contextmenu.css,sha256=AdPajFTy2M_yHbkMKDYdh45gRO4amNd0OXRYYDNZSI4,437
|
|
167
168
|
umap/static/umap/css/dialog.css,sha256=9qwy9rOcTQY6SPkteM7dW1t36XQBJVoGETQatSOvffM,879
|
|
168
|
-
umap/static/umap/css/form.css,sha256=
|
|
169
|
+
umap/static/umap/css/form.css,sha256=BW5R_mr4xXN1HaT97v6IPSFMQUH4tsxOm1eJkrpyVJI,13632
|
|
169
170
|
umap/static/umap/css/icon.css,sha256=-lFltPt6bgAhzXPWqYW97JTY3Y22dbR7KXoOmLZQiU8,4328
|
|
170
171
|
umap/static/umap/css/importers.css,sha256=iS3krkVPpqUQlPNQXSyByyho7rHBzxYqm04bPyKo_qY,1455
|
|
171
172
|
umap/static/umap/css/panel.css,sha256=fRPw-dyrcRegoOxTOWTDjBwuI_aHNPmmBOY16flsCBI,3073
|
|
@@ -221,9 +222,9 @@ umap/static/umap/img/source/16-white.svg,sha256=0xOMZOwpZW72QHt4SPao4BEr2lE6kZvW
|
|
|
221
222
|
umap/static/umap/img/source/16.svg,sha256=r3ZFL-rjyozbiboXDQOkoCLHW-0LTQa4Di9qF7z7qV0,44441
|
|
222
223
|
umap/static/umap/img/source/24-white.svg,sha256=t5713m3RdG9vunV2nUhLY4o4xT9v7ke3NY42g9FeAnE,29206
|
|
223
224
|
umap/static/umap/img/source/24.svg,sha256=2HY-QmZc2_eV3TyqGLlzqgJXCLVbrzKQV5Q6JLWgNiI,38319
|
|
224
|
-
umap/static/umap/js/umap.controls.js,sha256=
|
|
225
|
+
umap/static/umap/js/umap.controls.js,sha256=gk6IFPepAJ6QRAX48PJWwukVjbxpzf3UANw0fF0VabQ,30016
|
|
225
226
|
umap/static/umap/js/umap.core.js,sha256=FGx6GVcfrE_sn_izOt5r4DLkbO3-bv28jeXV8kwwUio,7029
|
|
226
|
-
umap/static/umap/js/umap.forms.js,sha256=
|
|
227
|
+
umap/static/umap/js/umap.forms.js,sha256=clc4Kb3F8jpGXlLiilgW6EQtFmEXmnXx9BfmkFEhkFo,32962
|
|
227
228
|
umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
|
|
228
229
|
umap/static/umap/js/components/fragment.js,sha256=-rOrcyPpZ5ihD_hh0C1qrYpaim11JYh5fg0x_od_m5U,379
|
|
229
230
|
umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
|
|
@@ -237,32 +238,32 @@ umap/static/umap/js/modules/formatter.js,sha256=drbIxbDGrcHOUtzJtC4B5iKpm8-YNg_b
|
|
|
237
238
|
umap/static/umap/js/modules/global.js,sha256=7jm6NLZ5PM2yrkbWHdWkoDFcevgIAMqE-vZQRXcIgEo,934
|
|
238
239
|
umap/static/umap/js/modules/help.js,sha256=0vsDTFGcPz2coG_LBeGPSUQupZTFUes6kCwQCPBUjuU,9694
|
|
239
240
|
umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
|
|
240
|
-
umap/static/umap/js/modules/importer.js,sha256=
|
|
241
|
+
umap/static/umap/js/modules/importer.js,sha256=1RTRY9w_fn24lMTlpH_ktbDvvNCO1VHDihN3oSu25co,11045
|
|
241
242
|
umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
|
|
242
243
|
umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
|
|
243
244
|
umap/static/umap/js/modules/permissions.js,sha256=RxKrfjLo6hdGuAvwQrzUUJJznD5RkmSkAHVMidA9iKQ,8497
|
|
244
|
-
umap/static/umap/js/modules/request.js,sha256=
|
|
245
|
+
umap/static/umap/js/modules/request.js,sha256=9GRJoOPbdkHL9OFP6Joaf5wzsJckPyiG2O7AxQciTik,3885
|
|
245
246
|
umap/static/umap/js/modules/rules.js,sha256=z_QmGH5HdS1HVtJXBjQsGkz7kus_E2NocZAqaP7BN1g,7433
|
|
246
247
|
umap/static/umap/js/modules/saving.js,sha256=oO6S23KldT19e3xM_iupw0ZDruyyCNHBx5e5wtrejhI,689
|
|
247
248
|
umap/static/umap/js/modules/schema.js,sha256=RuBO5obpccTPH_iPXRU-lwyj1SoX9bp619tknrPiZjI,13141
|
|
248
249
|
umap/static/umap/js/modules/share.js,sha256=s1X59VpMqut_Vhg7l7LV2IZDm9obRVbDH9wZbG5kX3c,7182
|
|
249
250
|
umap/static/umap/js/modules/slideshow.js,sha256=zcRzOMkJvhps1npGRjHkdK4Ce3UkqOsv8OsDgQWO-bg,3567
|
|
250
251
|
umap/static/umap/js/modules/tableeditor.js,sha256=6p2YE2-NF4NkwLDQkqrl90P_PwOYdFao0-ac_AkOwWs,9854
|
|
251
|
-
umap/static/umap/js/modules/umap.js,sha256=
|
|
252
|
+
umap/static/umap/js/modules/umap.js,sha256=4ZlODvjcUXMV6w1232yV95eD1YlJYajUy4l27E3rRxU,50575
|
|
252
253
|
umap/static/umap/js/modules/urls.js,sha256=76cFqycj2O8huuoYYBvxnVt2Fc2UDbgrRsiv6lQmcSY,890
|
|
253
254
|
umap/static/umap/js/modules/utils.js,sha256=fYzo-WjRzDZsdjv3CI9U4Es3AqOfuBCJuRq997m2EfQ,12309
|
|
254
|
-
umap/static/umap/js/modules/data/features.js,sha256=
|
|
255
|
-
umap/static/umap/js/modules/data/layer.js,sha256=
|
|
255
|
+
umap/static/umap/js/modules/data/features.js,sha256=rYkQ-rMDN6t69K0WyAqyHrg5YAMS3GDbkrK1LrudXAU,31890
|
|
256
|
+
umap/static/umap/js/modules/data/layer.js,sha256=rLoAqwPfxURJNSSweoaq1WsAlxOyGT1yFHAIuta4AsY,35097
|
|
256
257
|
umap/static/umap/js/modules/importers/cadastrefr.js,sha256=KHqxHleFRFzNi98gegvUM1R6eJorAGGcMft_ktUg-ug,2262
|
|
257
258
|
umap/static/umap/js/modules/importers/communesfr.js,sha256=6q6ilmYhhuSmgdrvfTyEDNyMLbc9J9Bt8VMZVXB8ZOA,1723
|
|
258
259
|
umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
|
|
259
260
|
umap/static/umap/js/modules/importers/geodatamine.js,sha256=vIxANzNc1TAe3QcZroIxqNvos1vexBmKDTtzErBNiY4,2949
|
|
260
261
|
umap/static/umap/js/modules/importers/overpass.js,sha256=cY2kb3Fs8tA6PqBjGyc5bI0mg7L1ijapIAkVGwEhSwI,3341
|
|
261
|
-
umap/static/umap/js/modules/rendering/icon.js,sha256=
|
|
262
|
-
umap/static/umap/js/modules/rendering/map.js,sha256=
|
|
262
|
+
umap/static/umap/js/modules/rendering/icon.js,sha256=ZMN6R6ji1au3Iq7XrVLkXgDOzTveU-bMsnFewL0Kaz0,7938
|
|
263
|
+
umap/static/umap/js/modules/rendering/map.js,sha256=tASIpjHaTDlveiErTbmxH4eMywdVMQ9pZjZHQUykSf4,12880
|
|
263
264
|
umap/static/umap/js/modules/rendering/popup.js,sha256=EHfOSPb8BmbGK6-DcGekfbIDpNjH-y8L2QnpfbJEr3Y,2604
|
|
264
265
|
umap/static/umap/js/modules/rendering/template.js,sha256=LRLhU8kKoZpvyPR2h1E3XyfS4BY07p3b82KPZPk5rbU,7890
|
|
265
|
-
umap/static/umap/js/modules/rendering/ui.js,sha256=
|
|
266
|
+
umap/static/umap/js/modules/rendering/ui.js,sha256=Pz7vS8jhbTy7k70mXBFwR8OH1McI98NeRCT6Fc_x7pM,14317
|
|
266
267
|
umap/static/umap/js/modules/rendering/layers/base.js,sha256=DeXxRwTatoxxGStT1tWyNQVCrIkbgd7ZaawIPxWIcOQ,2525
|
|
267
268
|
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=h4cKB4sZ05MTwlE_kur292HRHxdaSkuwIMmW5JaU-Ac,14679
|
|
268
269
|
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=970BbIdiOUQTdNRRRA_4sY2L-1fTe6wb0wBFeuHZxww,3368
|
|
@@ -274,7 +275,7 @@ umap/static/umap/js/modules/sync/websocket.js,sha256=1UtvsTAm-gkfpBRcLPykPvDyax3
|
|
|
274
275
|
umap/static/umap/js/modules/ui/bar.js,sha256=zoWNOKhs-Sf5pFTlPFoEAysS-AUF6ZlXdO5UA9jom2A,7570
|
|
275
276
|
umap/static/umap/js/modules/ui/base.js,sha256=8PN8TRIBqTANRufwVvV0XzOdaYQuRCnlWGbTGq8FZiM,2491
|
|
276
277
|
umap/static/umap/js/modules/ui/contextmenu.js,sha256=VzC94uGUt8DkzC60Gcbz-MxivfSITEqUC91Fkpq1gjk,2550
|
|
277
|
-
umap/static/umap/js/modules/ui/dialog.js,sha256=
|
|
278
|
+
umap/static/umap/js/modules/ui/dialog.js,sha256=geAcMf2ajpNpDePDbaOz_kOiWOZWtpOHT7kBYqOHEa0,5620
|
|
278
279
|
umap/static/umap/js/modules/ui/panel.js,sha256=phPWwCFxQ9AJ9auPPayD5Xtf6yQemQSZHlVlLANfTx0,3240
|
|
279
280
|
umap/static/umap/js/modules/ui/tooltip.js,sha256=M2KBb5CA4AvaA-6QgfpUKMYQuGXzTqx4ZVA9fkMRBEs,1642
|
|
280
281
|
umap/static/umap/locale/am_ET.js,sha256=TsgZgJkMMmFAJE0nJIq62r8hHvFgLLjcA6axXQlkbog,33822
|
|
@@ -297,8 +298,8 @@ umap/static/umap/locale/de.js,sha256=wUAKh3L1vhrHH819XeKeLalw8GOhjh5G-yErBUDY4R0
|
|
|
297
298
|
umap/static/umap/locale/de.json,sha256=cM1Q4WS2qCtQebyUHnHmblS4aj9j4TooDwk_nSQ8pqs,32723
|
|
298
299
|
umap/static/umap/locale/el.js,sha256=aK9fBOMEaQf-a3IU3lEhJ5qeDNRtHIR5k_WD0n09d88,41377
|
|
299
300
|
umap/static/umap/locale/el.json,sha256=G3O0k62tIsf654xUZO0x988aKIAo0zZCHzRibDxpjo8,41312
|
|
300
|
-
umap/static/umap/locale/en.js,sha256=
|
|
301
|
-
umap/static/umap/locale/en.json,sha256=
|
|
301
|
+
umap/static/umap/locale/en.js,sha256=89UHZNqyNhy86A0lPxmFzsw7UYV-f6hHEwnYg4yzQAw,30259
|
|
302
|
+
umap/static/umap/locale/en.json,sha256=U5vQn1-kXUsmAm5tTN2-NbC6UulPa0ERVfs4JQywAwo,30194
|
|
302
303
|
umap/static/umap/locale/en_US.json,sha256=E8ScCCs3lXiHOJPqTNxd7maDyhkkF3GNqN-r2p27lLQ,29813
|
|
303
304
|
umap/static/umap/locale/es.js,sha256=xYnvTBRzycvrYhEA5yr8uFV8aeCoVLPsJegdccDdjQg,32933
|
|
304
305
|
umap/static/umap/locale/es.json,sha256=-JF4DZ5B4yk2Qvhj4FsEhZs0UybS0m0t2roH0cvnPXw,32868
|
|
@@ -310,8 +311,8 @@ umap/static/umap/locale/fa_IR.js,sha256=qn-Oc23zaIz_ua3DAvvVljn--jn2fR7eaMF-bsyp
|
|
|
310
311
|
umap/static/umap/locale/fa_IR.json,sha256=ql1IvgBcDHiAD6ho500PwRE2y8x9gSfsKq96IQgAZTw,38633
|
|
311
312
|
umap/static/umap/locale/fi.js,sha256=wyW-hHzNfKHoPKata6sw_TBx3Grz227eXscuabAGbwQ,30915
|
|
312
313
|
umap/static/umap/locale/fi.json,sha256=lDQ6_RxXtcNI_kahg8XBWlVYUE-MvgUqJA_Ue6DJj3c,30850
|
|
313
|
-
umap/static/umap/locale/fr.js,sha256=
|
|
314
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
314
|
+
umap/static/umap/locale/fr.js,sha256=VLtQz8W6InWu90Ccxx3gJZwuVQ2AutTKImvjdbrNv3U,33146
|
|
315
|
+
umap/static/umap/locale/fr.json,sha256=DzTqe44_JAMHYiNFqGbF3VLHmoXSoavJXcvRegigw-8,33081
|
|
315
316
|
umap/static/umap/locale/gl.js,sha256=ninZHPi3xo8aatt9G6zBNXCX6br0Na7-t20JJT0XDX4,31478
|
|
316
317
|
umap/static/umap/locale/gl.json,sha256=b99nZnWgtOZf1Uj-WUCPnWLrcvg5IGDYCV0wc7ntgb8,31413
|
|
317
318
|
umap/static/umap/locale/he.js,sha256=jljbzL6uctwBN5fzwQM4lFZ6ZLXKzldUeDTyzQTSyqU,33381
|
|
@@ -454,7 +455,7 @@ umap/storage/s3.py,sha256=KAYu3vAqXbd5UhaoPxG6zcGtBfKZOzzi-6uY6YEuIcY,1962
|
|
|
454
455
|
umap/storage/staticfiles.py,sha256=mxFcenC1JECmpNy4H0e7vX8GObDZVXzs1RPjQFWNd5k,2473
|
|
455
456
|
umap/templates/404.html,sha256=1yLlD8rSF_9cfjm5FYy--P46HLVbHeFkJiW9nRzM--E,399
|
|
456
457
|
umap/templates/500.html,sha256=Z8x47OVfYXquAYAlmRB0EJVTCiCaBppFFiFEmoYsMYY,5202
|
|
457
|
-
umap/templates/base.html,sha256=
|
|
458
|
+
umap/templates/base.html,sha256=wb-WxYqyJ-GVQWJYrpVqLE4FYz3hOu0lJic6XL8VPxY,1548
|
|
458
459
|
umap/templates/auth/user_detail.html,sha256=ud6AnM2ZK9WN8SuAnmKhZlGN0Wbi-GOzy09hoPfL04I,525
|
|
459
460
|
umap/templates/auth/user_form.html,sha256=h9NZi9KIC_5jkvj5KAsxX5CdiYCrQ2lrl9qpr5ObPcg,1730
|
|
460
461
|
umap/templates/auth/user_stars.html,sha256=LAGZU50ki2SCqZ0o_NBfN7T2RDl-L_1EGLixu5OH4AY,545
|
|
@@ -464,17 +465,17 @@ umap/templates/umap/about_summary.html,sha256=5pvCvX34YHk_XCtZfcRSznvRwi_-UJMioD
|
|
|
464
465
|
umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
|
|
465
466
|
umap/templates/umap/content.html,sha256=KfNQ18LcbxFd00tHQeirGy5Vh75qQNM6pj0bQbcy4Bo,2246
|
|
466
467
|
umap/templates/umap/content_footer.html,sha256=wkdc4Usuq4-vDIJHPxv-KS6KL4gBkUl7ARyU7zz1Zis,1154
|
|
467
|
-
umap/templates/umap/css.html,sha256=
|
|
468
|
+
umap/templates/umap/css.html,sha256=rlqw64vDT-mpl3Ckv6izFuU-BQHJwXw9Aw1TeFmhL80,2308
|
|
468
469
|
umap/templates/umap/dashboard_menu.html,sha256=DEzGwiL_U1ntDpY0Ybda5ijDMSNw-n7Vb-V7HrsqYgo,688
|
|
469
470
|
umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
470
471
|
umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
471
472
|
umap/templates/umap/home.html,sha256=021I4eVLjMWvhsIqo2k2FADXla2c4UClAJ1uy9R5KVI,839
|
|
472
|
-
umap/templates/umap/js.html,sha256=
|
|
473
|
+
umap/templates/umap/js.html,sha256=5BFbBGsBpebyGgn8yTnj-TEZ1qrWQUTjDC4AJHLdnug,2466
|
|
473
474
|
umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
|
|
474
475
|
umap/templates/umap/login_popup_end.html,sha256=kcENvhycpVvvIzbNasX1rcSI_67A6pttkWCxy0vHC8g,693
|
|
475
476
|
umap/templates/umap/map_detail.html,sha256=xMOsbF7NWJ-mpShR0ciJ8MrTeG2OYDm8OIL0yHbW6eg,1192
|
|
476
477
|
umap/templates/umap/map_fragment.html,sha256=ZRIA3W2tuIecv2LtxyKNSW4k7PmCxRlFmI6TIKC1EV8,152
|
|
477
|
-
umap/templates/umap/map_init.html,sha256=
|
|
478
|
+
umap/templates/umap/map_init.html,sha256=5hX7FE0vN6P70KFf8aKusOCERGzy9JoCPg7oyoIWfLQ,334
|
|
478
479
|
umap/templates/umap/map_list.html,sha256=Jb-VU3dQdRWsW80nyyRq1Eb6UrhAoIfGleu1cNMJKwc,673
|
|
479
480
|
umap/templates/umap/map_table.html,sha256=WrH86ybY_GzzRmALfON_oni9aFuIswgOtpTSJ5h8SEY,5778
|
|
480
481
|
umap/templates/umap/messages.html,sha256=liEsg-I26XHb0FOBAbzFsZl2RfNQtGt-HKoE6jHefbI,190
|
|
@@ -487,9 +488,9 @@ umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X
|
|
|
487
488
|
umap/templates/umap/team_confirm_delete.html,sha256=D4EKfuzVjAexHKPHRsSHpjuAjMNl0iCPtaW2NEGUk2A,448
|
|
488
489
|
umap/templates/umap/team_detail.html,sha256=4gd8YjvVqGysXNJtzAaZwOpBAADLzJ_ekFRPQp1sHYM,699
|
|
489
490
|
umap/templates/umap/team_form.html,sha256=yG_zxmJfEwLC5Mof-4SHYcx6lfkOjbGVusQGT7iqSNs,1922
|
|
490
|
-
umap/templates/umap/user_dashboard.html,sha256=
|
|
491
|
+
umap/templates/umap/user_dashboard.html,sha256=nls1Nzhwvv1QKI3fOV_2QPuQocCKVZ3STvBKXaKUJZ8,2527
|
|
491
492
|
umap/templates/umap/user_teams.html,sha256=MfelqIwoLRVjvX-KpVtwqh0I7pNx3oDRhqmSRdpT4bs,1570
|
|
492
|
-
umap/templates/umap/components/alerts/alert.html,sha256=
|
|
493
|
+
umap/templates/umap/components/alerts/alert.html,sha256=ZvisQkz2GfK2jxEqTosYH72N5gIK1604ATVNa_vHT7U,3564
|
|
493
494
|
umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
494
495
|
umap/templatetags/umap_tags.py,sha256=OumX1AI9uWzNP3zbjexTz7lGp10FweW0NRFSsdQ_cuU,1759
|
|
495
496
|
umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -497,6 +498,7 @@ umap/tests/base.py,sha256=x9GVS5eAzc1CHyNxx5gd2w0AJCeHIr4nmX4yak8LhyM,4768
|
|
|
497
498
|
umap/tests/conftest.py,sha256=KQCZanCTl1ABLIKOuyxS_cpBoXGiwjDc29jsLBiSWxY,1633
|
|
498
499
|
umap/tests/settings.py,sha256=tY70LMFXyo_WijswqGyeWai7vBzM62k7IA8pkkbc9y4,816
|
|
499
500
|
umap/tests/test_clean_tilelayer.py,sha256=wGTd_AHOTmQ4QMswAyc-1_lJmQOSyhY3OahLAusEIdA,2515
|
|
501
|
+
umap/tests/test_dashboard.py,sha256=w9IgKdupP9JpixLqvNl6UKbglgFVN_dG_R9Zvw1SJy0,2880
|
|
500
502
|
umap/tests/test_datalayer.py,sha256=NWX7o-sLOrq3nHT0GDywz5vtJU4HJhZZh11r_rWxhVA,9539
|
|
501
503
|
umap/tests/test_datalayer_s3.py,sha256=6V3AK22AXkFNjx5__SyBk0Uj0rTDAjJQv67r7D_MDVc,4155
|
|
502
504
|
umap/tests/test_datalayer_views.py,sha256=Fx_oQF3hBC2FVHTTjTScXbFS2d7FRKdBL7QFFexvKkg,22880
|
|
@@ -506,10 +508,10 @@ umap/tests/test_map.py,sha256=vrtheSMQNk45kBIcJ0QY9K7HKYee5yg4Vnp78DyaIwQ,5170
|
|
|
506
508
|
umap/tests/test_map_views.py,sha256=EKLJnQ-xk_bkaJ6P7OJ2bnya5orbaSnWFV8GIYcjDNk,33823
|
|
507
509
|
umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
|
|
508
510
|
umap/tests/test_statics.py,sha256=xKuxT8Xj5Ii7gKISuiSfDj7dpjmJ2Ierby3Lg-haZCg,1264
|
|
509
|
-
umap/tests/test_team_views.py,sha256=
|
|
511
|
+
umap/tests/test_team_views.py,sha256=edmqn_tx4XQ1sEQtB7CpuJT6WwQQiUyUYu8-ESZxFcw,5615
|
|
510
512
|
umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
|
|
511
513
|
umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
|
|
512
|
-
umap/tests/test_views.py,sha256=
|
|
514
|
+
umap/tests/test_views.py,sha256=5KXUH46dtjCItm4nqyrpvgnmM6_YMQ3zjcRPTC8rKBo,15820
|
|
513
515
|
umap/tests/test_websocket_server.py,sha256=BQ9Sy5VC9kBAfPWVxqcXoi9yfq12nfNvBE_j5rTFk7w,696
|
|
514
516
|
umap/tests/fixtures/categorized_highway.geojson,sha256=p7QHOd8nXi7yVq37gY6Ca8BXkjaLnDxW9Fq0Zcm3Fk4,15830
|
|
515
517
|
umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
|
|
@@ -529,6 +531,7 @@ umap/tests/fixtures/test_upload_empty_coordinates.json,sha256=-mJ_1orzUAROfE4PXc
|
|
|
529
531
|
umap/tests/fixtures/test_upload_georss.xml,sha256=lfmVA0qGDakCG48jjsLmSIE1U6iZ9yyFuqqX6Srt8Js,1160
|
|
530
532
|
umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5UZ1LbAJCCKnJea0qEFAI,4566
|
|
531
533
|
umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIxU7WL1llnAmEVJwCWla6XOds,1525
|
|
534
|
+
umap/tests/fixtures/test_upload_simple_marker.json,sha256=jH15G5PxgVO-DZb4TPxVMAi1_uzhkvZcFkVUb50CS3Q,393
|
|
532
535
|
umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
|
|
533
536
|
umap/tests/integration/conftest.py,sha256=OTKeDdLBpFUsqFCnHD-QY2X1iv5m4jIaE__4T4qKdDY,2468
|
|
534
537
|
umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
|
|
@@ -545,14 +548,14 @@ umap/tests/integration/test_dashboard.py,sha256=LClLBc8lgDM1-NGhkvUSUMLmMuKt3sR1
|
|
|
545
548
|
umap/tests/integration/test_datalayer.py,sha256=cxsf65noYTucEMLuUz8DfJ9abXHhAq0n65MvdBmBRVo,5492
|
|
546
549
|
umap/tests/integration/test_draw_polygon.py,sha256=Ub_1Witps_BLwMMmQ4M0vPIyQOEQ_Bq82znpJdWpCfY,25385
|
|
547
550
|
umap/tests/integration/test_draw_polyline.py,sha256=lPr5hz-wHL9oC2B3yveNHC-OxdzWvcf8fHMBZbXTuss,14801
|
|
548
|
-
umap/tests/integration/test_edit_datalayer.py,sha256=
|
|
551
|
+
umap/tests/integration/test_edit_datalayer.py,sha256=vC_bpfw_eMvYzhu3x6E2vS4gDFb55Ud5p64mfRqZBf4,10292
|
|
549
552
|
umap/tests/integration/test_edit_map.py,sha256=d76M4J6rumDQ6sKaOyTA45dWAkwAOtoUuNkW-GsA-fo,7134
|
|
550
553
|
umap/tests/integration/test_edit_marker.py,sha256=sj4n2mCYQ-qZ02jFHA566Wg_y9F6oXb1AxddnthSQHI,4746
|
|
551
554
|
umap/tests/integration/test_edit_polygon.py,sha256=JeIW6NcBltIl958uJ_T-0dRCT5gOo9JrNtULvg7nxf4,5286
|
|
552
555
|
umap/tests/integration/test_export_map.py,sha256=jH0BXm-7Ov26OEkve9-xKMfRwXwR73zRrZLIQusyUOY,12112
|
|
553
556
|
umap/tests/integration/test_facets_browser.py,sha256=J--y2rpI__0RIPzcTx4Kn2UwuurFdh-6i_Y4c6GxUyY,10658
|
|
554
557
|
umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
|
|
555
|
-
umap/tests/integration/test_import.py,sha256=
|
|
558
|
+
umap/tests/integration/test_import.py,sha256=dBkj-E9LSUTZvcMK8-MratR5aDz0jLrWEuh6Mek0vzg,31266
|
|
556
559
|
umap/tests/integration/test_map.py,sha256=2ZO54RFVycJKGczfioX0nU1oCu29FVC9hR6wbT4s1NE,8736
|
|
557
560
|
umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
|
|
558
561
|
umap/tests/integration/test_map_preview.py,sha256=kP0vkEiUN7EJNCvZgNeUAzrrXfgwpU0S2UnmOBV4P5A,3540
|
|
@@ -572,8 +575,8 @@ umap/tests/integration/test_view_marker.py,sha256=ZLS6-GOWYpjeoYGHiHa7HesXJTLu9w
|
|
|
572
575
|
umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
|
|
573
576
|
umap/tests/integration/test_view_polyline.py,sha256=aJoXKmLhJaN0yhPdDCVskZNGx3q3mLDkjVPhZ30cadA,13959
|
|
574
577
|
umap/tests/integration/test_websocket_sync.py,sha256=Xjn8z7Gj2PAmPmLkMTsHztFmhzsfyE3vg-wfewpA2I4,15511
|
|
575
|
-
umap_project-2.8.
|
|
576
|
-
umap_project-2.8.
|
|
577
|
-
umap_project-2.8.
|
|
578
|
-
umap_project-2.8.
|
|
579
|
-
umap_project-2.8.
|
|
578
|
+
umap_project-2.8.0b0.dist-info/METADATA,sha256=ekXJ1EOo5be6Xif-mk4mOSVmu58OjcCme27jSfmpLEA,2993
|
|
579
|
+
umap_project-2.8.0b0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
580
|
+
umap_project-2.8.0b0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
581
|
+
umap_project-2.8.0b0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
582
|
+
umap_project-2.8.0b0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|