umap-project 2.0.1__py3-none-any.whl → 2.0.3__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 +33 -28
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +33 -28
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +48 -43
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +20 -20
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +12 -12
- umap/management/commands/import_pictograms.py +1 -1
- umap/static/umap/base.css +6 -6
- umap/static/umap/content.css +14 -14
- umap/static/umap/js/umap.forms.js +2 -2
- umap/static/umap/js/umap.js +4 -10
- umap/static/umap/js/umap.popup.js +1 -1
- umap/static/umap/js/umap.share.js +2 -0
- umap/static/umap/locale/hu.js +8 -1
- umap/static/umap/locale/hu.json +8 -1
- umap/static/umap/locale/ms.js +28 -21
- umap/static/umap/locale/ms.json +28 -21
- umap/static/umap/locale/zh_TW.js +8 -1
- umap/static/umap/locale/zh_TW.json +8 -1
- umap/static/umap/map.css +9 -9
- umap/static/umap/nav.css +1 -1
- umap/static/umap/test/index.html +16 -13
- umap/static/umap/vars.css +13 -0
- umap/static/umap/vendors/leaflet/leaflet-src.esm.js +7054 -7054
- umap/storage.py +3 -2
- umap/templates/registration/login.html +40 -40
- umap/templates/umap/css.html +1 -1
- umap/templates/umap/js.html +26 -15
- umap/templates/umap/map_detail.html +5 -7
- umap/templates/umap/map_fragment.html +1 -1
- umap/templates/umap/map_init.html +10 -3
- umap/templates/umap/map_table.html +18 -17
- umap/templates/umap/user_dashboard.html +7 -8
- umap/tests/conftest.py +0 -2
- umap/tests/integration/test_anonymous_owned_map.py +32 -2
- umap/tests/integration/test_collaborative_editing.py +57 -1
- umap/tests/integration/test_map_preview.py +8 -0
- umap/tests/integration/test_querystring.py +14 -0
- umap/tests/integration/test_share.py +19 -1
- umap/tests/integration/test_statics.py +6 -3
- umap/tests/test_map_views.py +3 -3
- umap/views.py +16 -10
- {umap_project-2.0.1.dist-info → umap_project-2.0.3.dist-info}/METADATA +4 -4
- {umap_project-2.0.1.dist-info → umap_project-2.0.3.dist-info}/RECORD +51 -58
- {umap_project-2.0.1.dist-info → umap_project-2.0.3.dist-info}/WHEEL +1 -1
- umap/.DS_Store +0 -0
- umap/static/.DS_Store +0 -0
- umap/static/umap/.DS_Store +0 -0
- umap/static/umap/favicons/.DS_Store +0 -0
- umap/static/umap/fonts/.DS_Store +0 -0
- umap/templates/umap/map_messages.html +0 -12
- umap/tests/.DS_Store +0 -0
- umap/tests/integration/.DS_Store +0 -0
- {umap_project-2.0.1.dist-info → umap_project-2.0.3.dist-info}/entry_points.txt +0 -0
- {umap_project-2.0.1.dist-info → umap_project-2.0.3.dist-info}/licenses/LICENSE +0 -0
umap/views.py
CHANGED
|
@@ -9,6 +9,7 @@ from datetime import datetime, timedelta
|
|
|
9
9
|
from http.client import InvalidURL
|
|
10
10
|
from io import BytesIO
|
|
11
11
|
from pathlib import Path
|
|
12
|
+
from smtplib import SMTPException
|
|
12
13
|
from urllib.error import HTTPError, URLError
|
|
13
14
|
from urllib.parse import quote, quote_plus, urlparse
|
|
14
15
|
from urllib.request import Request, build_opener
|
|
@@ -836,16 +837,19 @@ class SendEditLink(FormLessEditMixin, FormView):
|
|
|
836
837
|
return HttpResponseBadRequest("Invalid")
|
|
837
838
|
link = self.object.get_anonymous_edit_url()
|
|
838
839
|
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
% {"map_name": self.object.name}
|
|
843
|
-
),
|
|
844
|
-
_("Here is your secret edit link: %(link)s" % {"link": link}),
|
|
845
|
-
settings.DEFAULT_FROM_EMAIL,
|
|
846
|
-
[email],
|
|
847
|
-
fail_silently=False,
|
|
840
|
+
subject = _(
|
|
841
|
+
"The uMap edit link for your map: %(map_name)s"
|
|
842
|
+
% {"map_name": self.object.name}
|
|
848
843
|
)
|
|
844
|
+
body = _("Here is your secret edit link: %(link)s" % {"link": link})
|
|
845
|
+
try:
|
|
846
|
+
send_mail(
|
|
847
|
+
subject, body, settings.DEFAULT_FROM_EMAIL, [email], fail_silently=False
|
|
848
|
+
)
|
|
849
|
+
except SMTPException:
|
|
850
|
+
return simple_json_response(
|
|
851
|
+
error=_("Can't send email to %(email)s" % {"email": email})
|
|
852
|
+
)
|
|
849
853
|
return simple_json_response(
|
|
850
854
|
info=_("Email sent to %(email)s" % {"email": email})
|
|
851
855
|
)
|
|
@@ -1076,7 +1080,9 @@ class DataLayerUpdate(FormLessEditMixin, GZipMixin, UpdateView):
|
|
|
1076
1080
|
|
|
1077
1081
|
try:
|
|
1078
1082
|
merged_features = merge_features(
|
|
1079
|
-
reference
|
|
1083
|
+
reference.get("features", []),
|
|
1084
|
+
latest.get("features", []),
|
|
1085
|
+
entrant.get("features", []),
|
|
1080
1086
|
)
|
|
1081
1087
|
latest["features"] = merged_features
|
|
1082
1088
|
return latest
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
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>
|
|
@@ -31,13 +31,13 @@ Provides-Extra: dev
|
|
|
31
31
|
Requires-Dist: djlint==1.34.1; extra == 'dev'
|
|
32
32
|
Requires-Dist: hatch==1.9.3; extra == 'dev'
|
|
33
33
|
Requires-Dist: isort==5.13.2; extra == 'dev'
|
|
34
|
-
Requires-Dist: mkdocs-material==9.5.
|
|
34
|
+
Requires-Dist: mkdocs-material==9.5.11; extra == 'dev'
|
|
35
35
|
Requires-Dist: mkdocs==1.5.3; extra == 'dev'
|
|
36
36
|
Requires-Dist: pymdown-extensions==10.7; extra == 'dev'
|
|
37
|
-
Requires-Dist: ruff==0.2.
|
|
37
|
+
Requires-Dist: ruff==0.2.2; extra == 'dev'
|
|
38
38
|
Requires-Dist: vermin==1.6.0; extra == 'dev'
|
|
39
39
|
Provides-Extra: docker
|
|
40
|
-
Requires-Dist: uwsgi==2.0.
|
|
40
|
+
Requires-Dist: uwsgi==2.0.24; extra == 'docker'
|
|
41
41
|
Provides-Extra: test
|
|
42
42
|
Requires-Dist: factory-boy==3.2.1; extra == 'test'
|
|
43
43
|
Requires-Dist: playwright>=1.39; extra == 'test'
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
umap
|
|
2
|
-
umap/__init__.py,sha256=ht3rR5Z1rYwNvmILeAiQlUGrs_ojYkDykFUmpAA_BL4,18
|
|
1
|
+
umap/__init__.py,sha256=N_Wqa-gWhiMCcixs6b3tMg_HMU27mkXkJDRWlzfBXBE,18
|
|
3
2
|
umap/admin.py,sha256=gL6zrexmDbIKIqOKHCuAM5wtqr8FIQkRtjbcXcNyBrs,749
|
|
4
3
|
umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
|
|
5
4
|
umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
|
|
@@ -10,10 +9,10 @@ umap/forms.py,sha256=bpNLMSsB1sHUcaf24MmUpwVdEz_SHy_ohfhQMoKwDzI,3128
|
|
|
10
9
|
umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
|
|
11
10
|
umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
|
|
12
11
|
umap/models.py,sha256=mJ1T8GVUQgvyTiF3Tq0QkkE7o7ZgzovPl06GfF8Pxx4,16627
|
|
13
|
-
umap/storage.py,sha256=
|
|
12
|
+
umap/storage.py,sha256=bdjjdn768fZJYsyDNBxgwLvSu6rhde_Cc6yzyZZDmSg,2282
|
|
14
13
|
umap/urls.py,sha256=Oy97qpSsSbBQwPPIaXPcxPPh2Ti8TPUvzOoTaAv7vxM,6968
|
|
15
14
|
umap/utils.py,sha256=-UpLeatiu0oqAecWJZpi44yl3JvxE0M9ia43y6hvu-Q,5623
|
|
16
|
-
umap/views.py,sha256=
|
|
15
|
+
umap/views.py,sha256=rs5p8N-n2P3BFNl-c1Y1VuNhRR1SgZY9GLH_pyGKuqo,40773
|
|
17
16
|
umap/wsgi.py,sha256=mSba0LSaWFocs-7Fw-bDljb6-Bqh9yZRJU-sTi4dGIU,1131
|
|
18
17
|
umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
|
|
19
18
|
umap/locale/am_ET/LC_MESSAGES/django.mo,sha256=xdPMnJ3Z0fkxocaO7IKexPyomuWUKak01D2T6pVruco,5457
|
|
@@ -37,7 +36,7 @@ umap/locale/de/LC_MESSAGES/django.po,sha256=vkpO7hxsY8C6tGyHNBMgfWRKwNxGs-IZ_BFs
|
|
|
37
36
|
umap/locale/el/LC_MESSAGES/django.mo,sha256=sQhmIyKMdxrBssH9Yu7pt3QjvYEtvqxk0_BiarpCKaI,12429
|
|
38
37
|
umap/locale/el/LC_MESSAGES/django.po,sha256=yI6iHoWce4H3reQNrbrE2cQFCZ8d1zlMP2y9iGA_8TM,17815
|
|
39
38
|
umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
|
|
40
|
-
umap/locale/en/LC_MESSAGES/django.po,sha256=
|
|
39
|
+
umap/locale/en/LC_MESSAGES/django.po,sha256=9AkY2ILOpchNoXCUxPwXPKPm1J8V2ygnlGG6brn4RNI,10789
|
|
41
40
|
umap/locale/es/LC_MESSAGES/django.mo,sha256=JmXqbBXhl11fQCibH1MHU64AFsCp_pEbv8AiA94zL08,9034
|
|
42
41
|
umap/locale/es/LC_MESSAGES/django.po,sha256=JqoNWltQ-vJNgunikXgRcuy90O7t8zROQ5NPlc8rYN4,14596
|
|
43
42
|
umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
|
|
@@ -48,16 +47,16 @@ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=LcU15SxGd21_jDyaZoH2DIQbrD1GqcUHM
|
|
|
48
47
|
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=ASiA2CeduaQzb6TwyWbm-rCi2wN29PV_VnhOn0ifxeg,14688
|
|
49
48
|
umap/locale/fi/LC_MESSAGES/django.mo,sha256=-p9kvtfjdJKrbSMEfpdvoZ6jEX_njf-0uqzlvydbhOo,4856
|
|
50
49
|
umap/locale/fi/LC_MESSAGES/django.po,sha256=Saq5PpycYhmutr6CWPQNYI4UwQbSdxrCWxapwotaB3c,12823
|
|
51
|
-
umap/locale/fr/LC_MESSAGES/django.mo,sha256=
|
|
52
|
-
umap/locale/fr/LC_MESSAGES/django.po,sha256=
|
|
50
|
+
umap/locale/fr/LC_MESSAGES/django.mo,sha256=peYLQjhdbs-c6E-RbVXIl8bNYMzc6OaqVVs0pqw5pwA,10220
|
|
51
|
+
umap/locale/fr/LC_MESSAGES/django.po,sha256=i6LNVXn3OqPfNevCf61MLaEViWjCEalgAPUFjswMv44,15263
|
|
53
52
|
umap/locale/gl/LC_MESSAGES/django.mo,sha256=-p9_T_4C3ns1Sc1iG7zfCUstFsGX_aaxzeLwD8d8Uho,6253
|
|
54
53
|
umap/locale/gl/LC_MESSAGES/django.po,sha256=w5yCwKMsmFJ7Tk-y4p2a8oOaYkyYi_aLNnWpbw04M2M,13210
|
|
55
54
|
umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMjHkvLsRo,6944
|
|
56
55
|
umap/locale/he/LC_MESSAGES/django.po,sha256=EWdmr83WCPXUHKgfqsvgK1ZOVt-qZJmQuv6tGom8M4A,13820
|
|
57
56
|
umap/locale/hr/LC_MESSAGES/django.mo,sha256=bBcaNSs-oqm_cjm6Bbqaph_ZNHF2_I_FP0xccwU9txI,1558
|
|
58
57
|
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=
|
|
58
|
+
umap/locale/hu/LC_MESSAGES/django.mo,sha256=5Sgl3mI9651nDWdsd3WoKFREdFd0kTHbIAWCnlMNv34,10460
|
|
59
|
+
umap/locale/hu/LC_MESSAGES/django.po,sha256=I7hEkKB7qVUsRSrzKA-oW9oRN4av9rzuHyJi8KpUKn4,15119
|
|
61
60
|
umap/locale/id/LC_MESSAGES/django.mo,sha256=8craaGVnVbONfojnkDUUtoxMyeI2tt6GdIWeWZGcaJ8,425
|
|
62
61
|
umap/locale/id/LC_MESSAGES/django.po,sha256=wmbgIN1R7vRDgAdzBu7ZHnTpg5fpB3hmJyjAzRNoN-M,8000
|
|
63
62
|
umap/locale/is/LC_MESSAGES/django.mo,sha256=8Iufls8l_zQFsOYxrfuUig6Ndm2qtmZiBRDs2TlM8tI,6579
|
|
@@ -70,8 +69,8 @@ umap/locale/ko/LC_MESSAGES/django.mo,sha256=os9Vo9pdSyMVWMN3ToDdu19-VwM1PJtPlPG2
|
|
|
70
69
|
umap/locale/ko/LC_MESSAGES/django.po,sha256=HBqpxmWXtrOBmjYIaPnNJmFX3QfNtvGLjl0bNZj1seA,13453
|
|
71
70
|
umap/locale/lt/LC_MESSAGES/django.mo,sha256=cA9gb9IAjuYBVh9QIKuniMpDr8CmgMt_cUP99W5it5s,5922
|
|
72
71
|
umap/locale/lt/LC_MESSAGES/django.po,sha256=adw4Q98CDmXZht37z7lvMTI3tzGHjHxKhbEZ3N5x_y8,13113
|
|
73
|
-
umap/locale/ms/LC_MESSAGES/django.mo,sha256=
|
|
74
|
-
umap/locale/ms/LC_MESSAGES/django.po,sha256=
|
|
72
|
+
umap/locale/ms/LC_MESSAGES/django.mo,sha256=88GIQO91aWcTDt7CK4f5ea6IR8KOLR23K6AVOAvE7eY,9874
|
|
73
|
+
umap/locale/ms/LC_MESSAGES/django.po,sha256=8KCuN_pCUNhXH-mtKkgYLWbjw7wVpQlehu4I5c2KKbw,14532
|
|
75
74
|
umap/locale/nl/LC_MESSAGES/django.mo,sha256=CWIG-7Vc6EO-4L0oy35wuaNEQSkrOoKpbkrvUq6iMAA,6056
|
|
76
75
|
umap/locale/nl/LC_MESSAGES/django.po,sha256=SMjyxF10q7p6AumNtnHRfdI1nP-4-_EKlbTCl8ZjhMM,13009
|
|
77
76
|
umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk_nsxXks,423
|
|
@@ -108,13 +107,13 @@ umap/locale/vi/LC_MESSAGES/django.mo,sha256=OCqzY2ppgBY2UKLvpqReVu-5JV9PLX_FBJku
|
|
|
108
107
|
umap/locale/vi/LC_MESSAGES/django.po,sha256=RXA7JAZFIHun1vwwKwj3ffYQW7ghdTIiq0e2l9Ihai8,12784
|
|
109
108
|
umap/locale/zh/LC_MESSAGES/django.mo,sha256=ozLSGu_UCayTacLRSpiWSV8uEcEAxEiY9uKyz1Hmits,3540
|
|
110
109
|
umap/locale/zh/LC_MESSAGES/django.po,sha256=0WdjDl_mAoZz6RXmP9tBYFV-D13okk-FE9Xg-8KRk-w,11831
|
|
111
|
-
umap/locale/zh_TW/LC_MESSAGES/django.mo,sha256=
|
|
112
|
-
umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=
|
|
110
|
+
umap/locale/zh_TW/LC_MESSAGES/django.mo,sha256=2rzZhzpFVPVxdcEBy96Vzj5n2gGqkf7bXNmF5QnVl8g,9364
|
|
111
|
+
umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=DSikigqh7o4-_U3LbpEn0Zgo4R8RerfRugFR_v1MZkw,14177
|
|
113
112
|
umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
113
|
umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
114
|
umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
|
|
116
115
|
umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUeY2SlOrTXS42tE0-bs,1281
|
|
117
|
-
umap/management/commands/import_pictograms.py,sha256=
|
|
116
|
+
umap/management/commands/import_pictograms.py,sha256=RuQDCoiKamba4l3fZUGAXRyd-3zwWWT5c5AhgDvs7AQ,2369
|
|
118
117
|
umap/migrations/0001_initial.py,sha256=dMcXtTKPiA0IqXCrDVctH91Fe0hhc04NxmvcLAULyzE,8787
|
|
119
118
|
umap/migrations/0002_tilelayer_tms.py,sha256=E99JAu1K0NzwsCEJs1z5uGlBkBJmoVb9a3WBKjpLYlo,372
|
|
120
119
|
umap/migrations/0003_add_tilelayer.py,sha256=53r95Y13CvV0pXseYEnnqtPI4-Q0qcVldYMS-jFpPoE,833
|
|
@@ -137,20 +136,18 @@ umap/settings/__init__.py,sha256=xxt2Nq7a3xjGTvn1f1hEBV8xErNu0XJ-qP_S21uWzpQ,159
|
|
|
137
136
|
umap/settings/base.py,sha256=_gFcy5HbArNEzHDJGaISamLWk4thRFMDdbaiSKO_j3A,9843
|
|
138
137
|
umap/settings/dev.py,sha256=iGroLwlJM2EeqZ4HUC3DviUOgJy-SoULN1WB5AD4xFM,385
|
|
139
138
|
umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
|
|
140
|
-
umap/static/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
141
139
|
umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
|
-
umap/static/umap
|
|
143
|
-
umap/static/umap/base.css,sha256=_IyABJTqxZ_YESwBA-5AN1c1FjZHSFTQdlb6QvQIV9k,21490
|
|
140
|
+
umap/static/umap/base.css,sha256=YQtsvzIJJe9O8F34z9lev3vIGM-JwM9lZcvMJGYqzDI,21590
|
|
144
141
|
umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
|
|
145
|
-
umap/static/umap/content.css,sha256=
|
|
142
|
+
umap/static/umap/content.css,sha256=PxavrwRn3prdgXnnMavSp_5bEfuokje_27Lzyu2NwHs,11688
|
|
146
143
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
147
144
|
umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
|
|
148
|
-
umap/static/umap/map.css,sha256=
|
|
149
|
-
umap/static/umap/nav.css,sha256=
|
|
145
|
+
umap/static/umap/map.css,sha256=Eu_GZWKKJ9chCTSZ62fCMcfEQgEq2YKBnke6tj6OvT8,42997
|
|
146
|
+
umap/static/umap/nav.css,sha256=vU41w3awlBtsB4XCRJOtVVy9-VN7rua1nJsay61ST_0,1574
|
|
150
147
|
umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
|
|
151
148
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
152
149
|
umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
|
|
153
|
-
umap/static/umap/
|
|
150
|
+
umap/static/umap/vars.css,sha256=TT0jijfYX3NWbTLvy1tPBZ-2eblwHw0g_Bt7085qqZQ,387
|
|
154
151
|
umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
|
|
155
152
|
umap/static/umap/favicons/favicon.ico,sha256=0jjg1MnZ2AdWFLKjEwZSf09TVXlqz6oNdtX4rRppHdA,15086
|
|
156
153
|
umap/static/umap/favicons/icon-192.png,sha256=saYoRLAaZNkHHntkmldXiptk9FEcaGWDO3N6HpYyw8w,2987
|
|
@@ -162,7 +159,6 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
|
|
|
162
159
|
umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
|
|
163
160
|
umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
|
|
164
161
|
umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
|
|
165
|
-
umap/static/umap/fonts/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
166
162
|
umap/static/umap/img/16-white.svg,sha256=zOp7SOTF5N0UixoriN-YPHcUWJ8oVTsptENVvCwEWR8,35034
|
|
167
163
|
umap/static/umap/img/16.svg,sha256=aWuJ2C7pahh1KPV8Q8ZQnCFFlrbvDfcmP4PTldvcNi8,21424
|
|
168
164
|
umap/static/umap/img/24-white.svg,sha256=tq2MLPvVKz4h4dHCmMp1-_brBmudqyCcMcSShhnDh24,17550
|
|
@@ -192,14 +188,14 @@ umap/static/umap/js/umap.controls.js,sha256=3b2unsOcIYGSNtlrxzVPnB6RBIEZ0xnP2GO5
|
|
|
192
188
|
umap/static/umap/js/umap.core.js,sha256=D34MfjI7Eaf-NLyKE6SDp0tI2AWlL2DzQhXtojVXpZc,26341
|
|
193
189
|
umap/static/umap/js/umap.datalayer.permissions.js,sha256=kpGb7sZKdcSj0QhmGZ56LFtubysc68S48e3YzeXQNNs,1947
|
|
194
190
|
umap/static/umap/js/umap.features.js,sha256=eP2obnQm7LaDKBw-lWV7ka8f7jsADthyrfR2r3tj390,34337
|
|
195
|
-
umap/static/umap/js/umap.forms.js,sha256=
|
|
191
|
+
umap/static/umap/js/umap.forms.js,sha256=9uB4C5ySuyiUCfv74b1AL80-c6XPEqSxFxWWVFdk75I,32997
|
|
196
192
|
umap/static/umap/js/umap.icon.js,sha256=7x51GI0QvfRqBpgaiCGkYa3sufcAy0oRF2Qw1ujCFLM,7534
|
|
197
193
|
umap/static/umap/js/umap.importer.js,sha256=B4kzV0VWrQK7ovIb2LDDdyaDK6tY7Q6TQejXtR8IakM,5305
|
|
198
|
-
umap/static/umap/js/umap.js,sha256=
|
|
194
|
+
umap/static/umap/js/umap.js,sha256=jDTnvZdk7oBCw6pq5s9KyFMblUjUDyjENDPH9ZFZVKY,58705
|
|
199
195
|
umap/static/umap/js/umap.layer.js,sha256=aXFd2iwE1ePYflULxZO2Vc8gAcss7_QuYYry4Yn2zOs,47371
|
|
200
196
|
umap/static/umap/js/umap.permissions.js,sha256=d7M3aoQ4QliSD7lFnCWgoUN4pHax1-6JnerH8BjvubY,6097
|
|
201
|
-
umap/static/umap/js/umap.popup.js,sha256=
|
|
202
|
-
umap/static/umap/js/umap.share.js,sha256=
|
|
197
|
+
umap/static/umap/js/umap.popup.js,sha256=WnAtCbb0YPJl0Nu_PpfzC0QYkbSWLXL3-aw-9PEYU0Y,9952
|
|
198
|
+
umap/static/umap/js/umap.share.js,sha256=t5hUjkQ-qiG_4iKiGE2wDr7GO995d5NMsFlNecxV6vE,7769
|
|
203
199
|
umap/static/umap/js/umap.slideshow.js,sha256=xRhNvtQJEYtyiif38KLEyquPn_L50Ga3zkD7j4V23aQ,4398
|
|
204
200
|
umap/static/umap/js/umap.tableeditor.js,sha256=GP5fYBTRAw7hLVB_k2H2KvECOBU6DLQF-MIZhsY3UAo,4075
|
|
205
201
|
umap/static/umap/js/umap.ui.js,sha256=xHj0owBiDTgahLsj6fKq3ur0JgNwJFu9BtT4uzbDQag,7699
|
|
@@ -249,8 +245,8 @@ umap/static/umap/locale/he.js,sha256=u3L4N4j7J5RtsPfyzwPeYAP2SOnJ8A45uwcf5xelCz4
|
|
|
249
245
|
umap/static/umap/locale/he.json,sha256=4xbS88exmE8pJxOIwMzl1YPS0SamsuYWfen9ATfqgV8,28913
|
|
250
246
|
umap/static/umap/locale/hr.js,sha256=jilQQ05T1V7co7oV1lBBwQtqM6LBd12YyOaZllwKT8A,25374
|
|
251
247
|
umap/static/umap/locale/hr.json,sha256=QcrKo8jPaHkVi1N02Tti3iei3WqYDi8E85qnOpmoK_8,25309
|
|
252
|
-
umap/static/umap/locale/hu.js,sha256=
|
|
253
|
-
umap/static/umap/locale/hu.json,sha256=
|
|
248
|
+
umap/static/umap/locale/hu.js,sha256=m7yVzgOUAkkv_Btj-JHCfjbSynbixG9RhSNDlEtiulI,29219
|
|
249
|
+
umap/static/umap/locale/hu.json,sha256=TuGDwZVhRN6Nqfr54dxIoLyQX_ZNGEgVbXCcbDxHi4s,29154
|
|
254
250
|
umap/static/umap/locale/id.js,sha256=UwzRW3fspX3vZChWNpjPl5HSfsjaDYu_FJsgMkbJUkk,25203
|
|
255
251
|
umap/static/umap/locale/id.json,sha256=RxrPnnK-J8NaOUq_BzLkJsD8NyWkS2GsMIcAJbztef4,25138
|
|
256
252
|
umap/static/umap/locale/is.js,sha256=7-VEx4F0KKFdzKHJ0B8eoAShgVVsjHFHn0WGw0C84I4,26617
|
|
@@ -263,8 +259,8 @@ umap/static/umap/locale/ko.js,sha256=-Yg9efr5w5qkMA1DADUMzJsgwz-3Q5qNZ9IXn96i0lk
|
|
|
263
259
|
umap/static/umap/locale/ko.json,sha256=U9BfPHUJwVMMMEK1Ncm_GpHNbcLLwFkeRYEnoY0A9TY,25336
|
|
264
260
|
umap/static/umap/locale/lt.js,sha256=XvsY46ZBA4JzLedS23QeKmlD7TFc6lBuPpRKpwVN--E,26089
|
|
265
261
|
umap/static/umap/locale/lt.json,sha256=9LYJlOdrJSn_O_pMH1hgz-2NumIkEDlLKS8M9KE1HtY,26024
|
|
266
|
-
umap/static/umap/locale/ms.js,sha256=
|
|
267
|
-
umap/static/umap/locale/ms.json,sha256=
|
|
262
|
+
umap/static/umap/locale/ms.js,sha256=QgCnrQMnMvwElkR9Kiz9EmW6dLci8wnSvTmanjVYCr0,26887
|
|
263
|
+
umap/static/umap/locale/ms.json,sha256=AhFAsEScQ_rCgZRNVrhD1ajPBiiGRNmeHIsyupevhPQ,26822
|
|
268
264
|
umap/static/umap/locale/nl.js,sha256=R-quA21bvjq5eqR1w9u3AoRvHqXFa_tZWJt8KIMuAhk,26569
|
|
269
265
|
umap/static/umap/locale/nl.json,sha256=bzg5fYxl2PGaFqvqaL4bTCfVjFLepFSWBNXw3j6quVE,26504
|
|
270
266
|
umap/static/umap/locale/no.js,sha256=-Dg-4LTQgSGrPnfP1bUwQBWZbdoKz4KnEyLu7Yg40-M,25434
|
|
@@ -305,8 +301,8 @@ umap/static/umap/locale/zh.js,sha256=_PHC2e8UTxzF3EmhaKwowteSLqN0A7xS0nwW1MRh0Gk
|
|
|
305
301
|
umap/static/umap/locale/zh.json,sha256=a3eQ_H6BeKanoBJ2UtiAkZ3ZHad7ZwCmeH3Et4SF32c,24805
|
|
306
302
|
umap/static/umap/locale/zh_CN.json,sha256=RxrPnnK-J8NaOUq_BzLkJsD8NyWkS2GsMIcAJbztef4,25138
|
|
307
303
|
umap/static/umap/locale/zh_TW.Big5.json,sha256=RxrPnnK-J8NaOUq_BzLkJsD8NyWkS2GsMIcAJbztef4,25138
|
|
308
|
-
umap/static/umap/locale/zh_TW.js,sha256=
|
|
309
|
-
umap/static/umap/locale/zh_TW.json,sha256=
|
|
304
|
+
umap/static/umap/locale/zh_TW.js,sha256=ulTuzsMAtFe44WMJEzyhnza0Q0qU00_gEl4xSYEhk-A,25141
|
|
305
|
+
umap/static/umap/locale/zh_TW.json,sha256=EZblIbUEPvBfVBZFER8JVqlcn7NVl6nM8gAayX1JK1c,25070
|
|
310
306
|
umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
|
|
311
307
|
umap/static/umap/test/Choropleth.js,sha256=3iTkpcmaXhfSQzf3A4wZTKITOVBBkpXEHve0aGObV8U,5266
|
|
312
308
|
umap/static/umap/test/DataLayer.js,sha256=8dOWcOAg1N-Q7ppN9PatFxk43NbdSB1vXAF8CBgSSdM,14224
|
|
@@ -321,7 +317,7 @@ umap/static/umap/test/TableEditor.js,sha256=NXjGGNzVa5A6SQHuY_uhvu1_EqAFEftFp4cO
|
|
|
321
317
|
umap/static/umap/test/URLs.js,sha256=FKXn6UsVMjeuXnGL2lcfuVQRTFWfMg1JKivHn5T9yoo,1793
|
|
322
318
|
umap/static/umap/test/Util.js,sha256=yhcmnlugm-D7ECvyw_RVdsn7sFdnR1XHnMgNiNCZ-XI,17972
|
|
323
319
|
umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
|
|
324
|
-
umap/static/umap/test/index.html,sha256=
|
|
320
|
+
umap/static/umap/test/index.html,sha256=j6nU78Ur-LebO_zVanvFlv3o6xa0-ZnjOwOEbWqTaN0,6919
|
|
325
321
|
umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=FebyRte_vQrD_CLC8Xjc2cI_bR694S6hDSIu26tDnZ8,24622
|
|
326
322
|
umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css,sha256=_pRTmdgpDxfu1Oxb7DnP_DTdA44G-k3kf0otWP8gEnc,990
|
|
327
323
|
umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt4ZrRcCzTUp6OiNmD5KuDsZCvhG-yZt8lhE,8994
|
|
@@ -347,7 +343,7 @@ umap/static/umap/vendors/iconlayers/check.png,sha256=2KEJy_Q7K5Jy_514NoHXWdLk5MS
|
|
|
347
343
|
umap/static/umap/vendors/iconlayers/iconLayers.css,sha256=fUnXSp72SLBi2zm_98OhBipn6jl53eLpMAqU9kVXu3Q,2099
|
|
348
344
|
umap/static/umap/vendors/iconlayers/iconLayers.js,sha256=VcHNxU0KrRKk8fQ_biK4GNZcKj8gmMWG52irE0yY4xY,11789
|
|
349
345
|
umap/static/umap/vendors/iconlayers/transparent-pixel.png,sha256=wmsrONlpwU7Z-Y-1QYMxjQg-h-BumQw4A89vuT55IYg,2792
|
|
350
|
-
umap/static/umap/vendors/leaflet/leaflet-src.esm.js,sha256=
|
|
346
|
+
umap/static/umap/vendors/leaflet/leaflet-src.esm.js,sha256=i7N_sDD-OoSdbNWYx4paYveaHkkprfXimr67-kGDy_M,430058
|
|
351
347
|
umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map,sha256=lxY34ye1PfsolFQ8pTsEtlgBJ4tW7panCBRsm35HNbs,866200
|
|
352
348
|
umap/static/umap/vendors/leaflet/leaflet-src.js,sha256=tPonvXioSHRQt1-4ztWR5mz_1KG1X3yHNzVXprP2gLo,450229
|
|
353
349
|
umap/static/umap/vendors/leaflet/leaflet-src.js.map,sha256=l7cBxd_w6YZOXEWKixXC7DN4ejJsXed7kI-eoTvi1Wo,866292
|
|
@@ -396,25 +392,24 @@ umap/templates/base.html,sha256=Ts5gv90PhwkC9Hs6EzL7tqCq1NdRUkwnLCsA4IPCMWU,1498
|
|
|
396
392
|
umap/templates/auth/user_detail.html,sha256=feuzzlA6QatSUI4g57JSGWViMM6iAydesVls-8J9UUc,491
|
|
397
393
|
umap/templates/auth/user_form.html,sha256=Qo_O7T0FHNwnF4bZBtFhMQEjTFavI10JVqmrnMzYfvk,1742
|
|
398
394
|
umap/templates/auth/user_stars.html,sha256=UE8XnvH48ak27k42hAQviZbj-Q2DNiz1BtSb1cwCGa4,511
|
|
399
|
-
umap/templates/registration/login.html,sha256=
|
|
395
|
+
umap/templates/registration/login.html,sha256=S8gafwZ5wE5FE_EhzySRKPcS2bzhnzJAbXgiawHHbjo,1651
|
|
400
396
|
umap/templates/umap/about.html,sha256=ycCW4EFTJMjLF9YT6xJ7Kqpey4sxozQyVTUx5l48kJo,127
|
|
401
397
|
umap/templates/umap/about_summary.html,sha256=i1M3rNgQi912dr0_Jr2xoBSERm3WgEQTNpaiM4eF2ZM,2208
|
|
402
398
|
umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
|
|
403
399
|
umap/templates/umap/content.html,sha256=L2JRYlXWX9ot3Mc7JCi2Sl5PY6crBTD1PKkf1E61QeA,2255
|
|
404
400
|
umap/templates/umap/content_footer.html,sha256=Lq9CK37V2iFxqOdgGWRsJcoQs8e3Ih5VlENbQ-izX84,724
|
|
405
|
-
umap/templates/umap/css.html,sha256=
|
|
401
|
+
umap/templates/umap/css.html,sha256=Bp7pnglIp9E8IaABO0uMVPx3-gV6zMRDxI12rygIx50,1548
|
|
406
402
|
umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
407
403
|
umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
408
404
|
umap/templates/umap/home.html,sha256=A0tMpiJ8MmLciD7A2SMNoYn5K60MN6PLrRfMahKXh8c,670
|
|
409
|
-
umap/templates/umap/js.html,sha256=
|
|
405
|
+
umap/templates/umap/js.html,sha256=qOEC6NHS37kmt8bUiDQpHsj2eKN_St-0h-ZfX41etMo,3887
|
|
410
406
|
umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
|
|
411
407
|
umap/templates/umap/login_popup_end.html,sha256=b6csbAW1-qZZYgF1RkwfNsGpqhYzzg3wRGbntTadj2U,571
|
|
412
|
-
umap/templates/umap/map_detail.html,sha256=
|
|
413
|
-
umap/templates/umap/map_fragment.html,sha256=
|
|
414
|
-
umap/templates/umap/map_init.html,sha256=
|
|
408
|
+
umap/templates/umap/map_detail.html,sha256=i7853I2IMBHx6rULPp9e8DgSrBuhU0KTlRuIfif7Pkg,877
|
|
409
|
+
umap/templates/umap/map_fragment.html,sha256=hog_2ufpF7wQlYq3PUj4ZoOY6R8_ztNZ4KHaHS-KQxY,150
|
|
410
|
+
umap/templates/umap/map_init.html,sha256=AFGiWxYQ9foyVwF5mndt_l_r4atz-GHnpV7Z--tno5A,485
|
|
415
411
|
umap/templates/umap/map_list.html,sha256=IArhrUe_2ILTpbI2sfmR89oqbqN5_7X2uFKtoqUwNGU,626
|
|
416
|
-
umap/templates/umap/
|
|
417
|
-
umap/templates/umap/map_table.html,sha256=h6Cx-LGYA34Xgjpc8EHUOOKw87J2hk160XVJk3DhVaQ,5317
|
|
412
|
+
umap/templates/umap/map_table.html,sha256=KzEDKxGXRaDSSeqioNYP7i17Xw2Zw1wfL2LAxr_ATuA,5389
|
|
418
413
|
umap/templates/umap/messages.html,sha256=z2nSbxpXeZOXxVB1xq-lYTxm1Ynj-0zGQbGDc61Y2pE,287
|
|
419
414
|
umap/templates/umap/navigation.html,sha256=T7alkzJrOggve0oWO_GgHGypemwcXcShMPuRwmPK5OY,1265
|
|
420
415
|
umap/templates/umap/password_change.html,sha256=trKXzqdwKCT561NhgV1Tt43f1dwqMrfcCVGayVDRGGI,958
|
|
@@ -422,19 +417,18 @@ umap/templates/umap/password_change_done.html,sha256=LNi8aPMtQCZyG7u1BD4eYnazufK
|
|
|
422
417
|
umap/templates/umap/search.html,sha256=g35uiuw2iCPpSm61QoppSift0ZcQbu4E-mhoEHzuSUA,804
|
|
423
418
|
umap/templates/umap/search_bar.html,sha256=PK4aWVIjEDcM7XcRGTLG1lMyrJce5czZoEERzQuPKVY,612
|
|
424
419
|
umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X_CI,3
|
|
425
|
-
umap/templates/umap/user_dashboard.html,sha256=
|
|
420
|
+
umap/templates/umap/user_dashboard.html,sha256=P9A_5m3HBnEGj87ptbBVOoqrF7gW6Rsyl9ZfM4vbF1w,2691
|
|
426
421
|
umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
427
422
|
umap/templatetags/umap_tags.py,sha256=5V5xNk9e0QRhPLaSBXw-VhgK9TMqe4gaZoGfMqOU230,1648
|
|
428
|
-
umap/tests/.DS_Store,sha256=1XzuPE00K75AO_2mNxKwuv3D4oPx0c9L2CQc5cfE-d8,6148
|
|
429
423
|
umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
430
424
|
umap/tests/base.py,sha256=WcrRnmgcTvx9hHekIJsGyVhFwvyNrgT7PYQ6DPwuAZU,4200
|
|
431
|
-
umap/tests/conftest.py,sha256=
|
|
425
|
+
umap/tests/conftest.py,sha256=hlUPzNq7JakJnT2k5LOp7a8CKhHBWhz3v9EwioPOVUg,1367
|
|
432
426
|
umap/tests/settings.py,sha256=d1aFBw-X_6YP1TKfiUz5nUrcQLIAkB_JnTIawiD-Kg8,714
|
|
433
427
|
umap/tests/test_datalayer.py,sha256=1C2z0VACCime11CMbp9ehbj-knLpW8r6j72EQ_hKLU4,6322
|
|
434
428
|
umap/tests/test_datalayer_views.py,sha256=cynpdApav2A8obsyThCgmlnjNkiehV3zcDpuYQra_oA,20527
|
|
435
429
|
umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
|
|
436
430
|
umap/tests/test_map.py,sha256=nX2eE1HJY3bjycXulglK2SY1ybcnjDVgr0yntX6OgyA,3836
|
|
437
|
-
umap/tests/test_map_views.py,sha256=
|
|
431
|
+
umap/tests/test_map_views.py,sha256=0dTGL9j-bOSkaoWDdO4pqzqXWIVxYye0KB2AYliT2Sg,30625
|
|
438
432
|
umap/tests/test_merge_features.py,sha256=kyBpwtdd_cEZRbgWmAf0o0N7M0XRVgPrVgikYSRDzxU,1644
|
|
439
433
|
umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
|
|
440
434
|
umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
|
|
@@ -450,13 +444,12 @@ umap/tests/fixtures/test_upload_data.kml,sha256=t66ms8oNI3999bhRJx01mn-UuHeqWoVY
|
|
|
450
444
|
umap/tests/fixtures/test_upload_empty_coordinates.json,sha256=-mJ_1orzUAROfE4PXchHXyqxjS-q4tDfvEFPllJiHFU,786
|
|
451
445
|
umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5UZ1LbAJCCKnJea0qEFAI,4566
|
|
452
446
|
umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIxU7WL1llnAmEVJwCWla6XOds,1525
|
|
453
|
-
umap/tests/integration/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
454
447
|
umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
|
|
455
448
|
umap/tests/integration/conftest.py,sha256=XuOKbABI1ugTJyPlJzjSK-6L-_vSs3NaQJdYJbyU-6k,607
|
|
456
|
-
umap/tests/integration/test_anonymous_owned_map.py,sha256=
|
|
449
|
+
umap/tests/integration/test_anonymous_owned_map.py,sha256=dfx4SQ-K7Un98H1fyeSvv4T573VKgh5gP2Oyvk1ZIIQ,8415
|
|
457
450
|
umap/tests/integration/test_basics.py,sha256=1FesSkjNBWi5pEqN0MQlC3kIXTFZzuILq7A5ac9L-3g,1598
|
|
458
451
|
umap/tests/integration/test_browser.py,sha256=DqnqnO3Si-AfmFaOPFo6e6RfAfad8xwMw-Lp5_SP7Ds,12324
|
|
459
|
-
umap/tests/integration/test_collaborative_editing.py,sha256=
|
|
452
|
+
umap/tests/integration/test_collaborative_editing.py,sha256=Xqo05XOvrcwHmA76IQxJGY0_KrSJouUutl0XeohMA6A,6910
|
|
460
453
|
umap/tests/integration/test_dashboard.py,sha256=k--MGBZsek4ebjCoHbUyv-XNkPbc55aOwxH6a7WuIL0,1173
|
|
461
454
|
umap/tests/integration/test_drawing.py,sha256=tgtUcvHEwbSbC1Up9OtkVguJYmQKZMxXH3CgZmz8jBQ,8825
|
|
462
455
|
umap/tests/integration/test_edit_datalayer.py,sha256=TouE4gFzUuA3tMLSi5tUpvtz0kpGyHXf_feD4UdKQI4,1621
|
|
@@ -464,17 +457,17 @@ umap/tests/integration/test_export_map.py,sha256=UE4bQtPJ_necBLMncbcV8Ez7bn6A94r
|
|
|
464
457
|
umap/tests/integration/test_facets_browser.py,sha256=wRh5h2kQg-ORfHqZKoumeNJ-JSC8CtgNZG7EvJW5SLc,2670
|
|
465
458
|
umap/tests/integration/test_import.py,sha256=ufbJl0M5rqGVGmHBZjMhioI9uVETSajevtpnQNJCFOI,2005
|
|
466
459
|
umap/tests/integration/test_map.py,sha256=BLwS7BWzmxq94UBkQpcSV9JPSxkKgf0IozvNJIdbSM0,8387
|
|
467
|
-
umap/tests/integration/test_map_preview.py,sha256=
|
|
460
|
+
umap/tests/integration/test_map_preview.py,sha256=4rPQF1zfiwqN7PvwFeB3OagR1wLEMbug0Omcd6zQShQ,2702
|
|
468
461
|
umap/tests/integration/test_owned_map.py,sha256=DVacXEXO0GPYhEEBSkQwSuKummJ7F6gfpc_aaGDXAbU,8658
|
|
469
462
|
umap/tests/integration/test_picto.py,sha256=PKZ7R0XQnNzJodNtmx2R7iDqq0xD2ArHRV8eD6o96k0,9348
|
|
470
|
-
umap/tests/integration/test_querystring.py,sha256=
|
|
471
|
-
umap/tests/integration/test_share.py,sha256=
|
|
463
|
+
umap/tests/integration/test_querystring.py,sha256=zTEs6S01G7t4MYrxmMyZqS7G8LmDoUAjmkhYeSV32h8,2649
|
|
464
|
+
umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
|
|
472
465
|
umap/tests/integration/test_slideshow.py,sha256=uLPw4SyhLgpqU4-jrTu5vKSqYuZG7hXjfY8JlEt1JkM,2020
|
|
473
466
|
umap/tests/integration/test_star.py,sha256=icB5SbFbXe4KYp3DIJ0xAwCrSQS2rweqIaQTAng3CfY,842
|
|
474
|
-
umap/tests/integration/test_statics.py,sha256=
|
|
467
|
+
umap/tests/integration/test_statics.py,sha256=kTdqfv554Dbeqf2IFPd0Z9n8LfVzDu7V1lVsCQ2xn34,1492
|
|
475
468
|
umap/tests/integration/test_tilelayer.py,sha256=S84Q7xsvKQcDAr05dpBog7qRCljqrSZCUu4x2WgTGCg,4139
|
|
476
|
-
umap_project-2.0.
|
|
477
|
-
umap_project-2.0.
|
|
478
|
-
umap_project-2.0.
|
|
479
|
-
umap_project-2.0.
|
|
480
|
-
umap_project-2.0.
|
|
469
|
+
umap_project-2.0.3.dist-info/METADATA,sha256=_NcVvzhyVY2qLULhVk3_lfl0G30R87bxmgQg2Cd7LLw,2557
|
|
470
|
+
umap_project-2.0.3.dist-info/WHEEL,sha256=mRYSEL3Ih6g5a_CVMIcwiF__0Ae4_gLYh01YFNwiq1k,87
|
|
471
|
+
umap_project-2.0.3.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
472
|
+
umap_project-2.0.3.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
473
|
+
umap_project-2.0.3.dist-info/RECORD,,
|
umap/.DS_Store
DELETED
|
Binary file
|
umap/static/.DS_Store
DELETED
|
Binary file
|
umap/static/umap/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
umap/static/umap/fonts/.DS_Store
DELETED
|
Binary file
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<script type="text/javascript">
|
|
2
|
-
window.addEventListener('DOMContentLoaded', (event) => {
|
|
3
|
-
{% for m in messages %}
|
|
4
|
-
{# We have just one, but we need to loop, as for messages API #}
|
|
5
|
-
MAP.ui.alert({
|
|
6
|
-
content: "{{ m }}",
|
|
7
|
-
level: "{{ m.tags }}",
|
|
8
|
-
duration: 100000
|
|
9
|
-
})
|
|
10
|
-
{% endfor %}
|
|
11
|
-
})
|
|
12
|
-
</script>
|
umap/tests/.DS_Store
DELETED
|
Binary file
|
umap/tests/integration/.DS_Store
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|