umap-project 3.1.2__py3-none-any.whl → 3.3.0__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.mo +0 -0
- umap/locale/en/LC_MESSAGES/django.po +22 -18
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +21 -17
- umap/management/commands/export_pictogram.py +29 -0
- umap/management/commands/migrate_to_S3.py +5 -1
- umap/management/commands/purge_old_versions.py +8 -6
- umap/settings/__init__.py +21 -0
- umap/settings/base.py +3 -0
- umap/static/umap/content.css +7 -2
- umap/static/umap/css/contextmenu.css +58 -2
- umap/static/umap/css/form.css +175 -45
- umap/static/umap/css/icon.css +97 -3
- umap/static/umap/css/panel.css +31 -1
- umap/static/umap/img/16-white.svg +21 -40
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +9 -9
- umap/static/umap/img/24.svg +23 -10
- umap/static/umap/img/source/16-white.svg +23 -41
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +11 -11
- umap/static/umap/img/source/24.svg +25 -12
- umap/static/umap/js/modules/browser.js +1 -1
- umap/static/umap/js/modules/caption.js +8 -0
- umap/static/umap/js/modules/data/features.js +331 -202
- umap/static/umap/js/modules/data/layer.js +263 -152
- umap/static/umap/js/modules/facets.js +2 -2
- umap/static/umap/js/modules/form/builder.js +11 -7
- umap/static/umap/js/modules/form/fields.js +66 -26
- umap/static/umap/js/modules/formatter.js +78 -28
- umap/static/umap/js/modules/importer.js +6 -1
- umap/static/umap/js/modules/importers/opendata.js +138 -33
- umap/static/umap/js/modules/importers/openrouteservice.js +140 -0
- umap/static/umap/js/modules/managers.js +67 -0
- umap/static/umap/js/modules/printer.js +107 -0
- umap/static/umap/js/modules/rendering/controls.js +78 -2
- umap/static/umap/js/modules/rendering/icon.js +116 -87
- umap/static/umap/js/modules/rendering/layers/classified.js +8 -7
- umap/static/umap/js/modules/rendering/layers/cluster.js +199 -63
- umap/static/umap/js/modules/rendering/map.js +6 -2
- umap/static/umap/js/modules/rendering/template.js +71 -1
- umap/static/umap/js/modules/rendering/ui.js +111 -34
- umap/static/umap/js/modules/rules.js +76 -23
- umap/static/umap/js/modules/schema.js +27 -0
- umap/static/umap/js/modules/share.js +19 -12
- umap/static/umap/js/modules/slideshow.js +1 -1
- umap/static/umap/js/modules/sync/updaters.js +1 -6
- umap/static/umap/js/modules/tableeditor.js +13 -37
- umap/static/umap/js/modules/templates.js +7 -6
- umap/static/umap/js/modules/ui/bar.js +6 -1
- umap/static/umap/js/modules/ui/base.js +24 -9
- umap/static/umap/js/modules/ui/contextmenu.js +17 -7
- umap/static/umap/js/modules/ui/dialog.js +7 -4
- umap/static/umap/js/modules/ui/panel.js +7 -0
- umap/static/umap/js/modules/umap.js +84 -67
- umap/static/umap/js/modules/utils.js +8 -7
- umap/static/umap/js/umap.controls.js +22 -57
- umap/static/umap/locale/am_ET.js +81 -9
- umap/static/umap/locale/am_ET.json +81 -9
- umap/static/umap/locale/ar.js +81 -9
- umap/static/umap/locale/ar.json +81 -9
- umap/static/umap/locale/ast.js +81 -9
- umap/static/umap/locale/ast.json +81 -9
- umap/static/umap/locale/bg.js +81 -9
- umap/static/umap/locale/bg.json +81 -9
- umap/static/umap/locale/br.js +68 -29
- umap/static/umap/locale/br.json +68 -29
- umap/static/umap/locale/ca.js +88 -16
- umap/static/umap/locale/ca.json +88 -16
- umap/static/umap/locale/cs_CZ.js +81 -9
- umap/static/umap/locale/cs_CZ.json +81 -9
- umap/static/umap/locale/da.js +48 -9
- umap/static/umap/locale/da.json +48 -9
- umap/static/umap/locale/de.js +48 -9
- umap/static/umap/locale/de.json +48 -9
- umap/static/umap/locale/el.js +58 -13
- umap/static/umap/locale/el.json +58 -13
- umap/static/umap/locale/en.js +48 -9
- umap/static/umap/locale/en.json +48 -9
- umap/static/umap/locale/en_US.json +81 -9
- umap/static/umap/locale/es.js +48 -9
- umap/static/umap/locale/es.json +48 -9
- umap/static/umap/locale/et.js +81 -9
- umap/static/umap/locale/et.json +81 -9
- umap/static/umap/locale/eu.js +97 -25
- umap/static/umap/locale/eu.json +97 -25
- umap/static/umap/locale/fa_IR.js +81 -9
- umap/static/umap/locale/fa_IR.json +81 -9
- umap/static/umap/locale/fi.js +81 -9
- umap/static/umap/locale/fi.json +81 -9
- umap/static/umap/locale/fr.js +48 -9
- umap/static/umap/locale/fr.json +48 -9
- umap/static/umap/locale/gl.js +81 -9
- umap/static/umap/locale/gl.json +81 -9
- umap/static/umap/locale/he.js +81 -9
- umap/static/umap/locale/he.json +81 -9
- umap/static/umap/locale/hr.js +81 -9
- umap/static/umap/locale/hr.json +81 -9
- umap/static/umap/locale/hu.js +72 -27
- umap/static/umap/locale/hu.json +72 -27
- umap/static/umap/locale/id.js +81 -9
- umap/static/umap/locale/id.json +81 -9
- umap/static/umap/locale/is.js +81 -9
- umap/static/umap/locale/is.json +81 -9
- umap/static/umap/locale/it.js +48 -9
- umap/static/umap/locale/it.json +48 -9
- umap/static/umap/locale/ja.js +81 -9
- umap/static/umap/locale/ja.json +81 -9
- umap/static/umap/locale/ko.js +81 -9
- umap/static/umap/locale/ko.json +81 -9
- umap/static/umap/locale/lt.js +81 -9
- umap/static/umap/locale/lt.json +81 -9
- umap/static/umap/locale/ms.js +81 -9
- umap/static/umap/locale/ms.json +81 -9
- umap/static/umap/locale/nl.js +48 -9
- umap/static/umap/locale/nl.json +48 -9
- umap/static/umap/locale/no.js +81 -9
- umap/static/umap/locale/no.json +81 -9
- umap/static/umap/locale/pl.js +81 -9
- umap/static/umap/locale/pl.json +81 -9
- umap/static/umap/locale/pl_PL.json +81 -9
- umap/static/umap/locale/pt.js +81 -9
- umap/static/umap/locale/pt.json +81 -9
- umap/static/umap/locale/pt_BR.js +91 -19
- umap/static/umap/locale/pt_BR.json +91 -19
- umap/static/umap/locale/pt_PT.js +81 -9
- umap/static/umap/locale/pt_PT.json +81 -9
- umap/static/umap/locale/ro.js +81 -9
- umap/static/umap/locale/ro.json +81 -9
- umap/static/umap/locale/ru.js +81 -9
- umap/static/umap/locale/ru.json +81 -9
- umap/static/umap/locale/sk_SK.js +81 -9
- umap/static/umap/locale/sk_SK.json +81 -9
- umap/static/umap/locale/sl.js +81 -9
- umap/static/umap/locale/sl.json +81 -9
- umap/static/umap/locale/sr.js +81 -9
- umap/static/umap/locale/sr.json +81 -9
- umap/static/umap/locale/sv.js +81 -9
- umap/static/umap/locale/sv.json +81 -9
- umap/static/umap/locale/th_TH.js +81 -9
- umap/static/umap/locale/th_TH.json +81 -9
- umap/static/umap/locale/tr.js +81 -9
- umap/static/umap/locale/tr.json +81 -9
- umap/static/umap/locale/uk_UA.js +81 -9
- umap/static/umap/locale/uk_UA.json +81 -9
- umap/static/umap/locale/vi.js +81 -9
- umap/static/umap/locale/vi.json +81 -9
- umap/static/umap/locale/vi_VN.json +81 -9
- umap/static/umap/locale/zh.js +81 -9
- umap/static/umap/locale/zh.json +81 -9
- umap/static/umap/locale/zh_CN.json +81 -9
- umap/static/umap/locale/zh_TW.Big5.json +81 -9
- umap/static/umap/locale/zh_TW.js +98 -26
- umap/static/umap/locale/zh_TW.json +98 -26
- umap/static/umap/map.css +325 -102
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/betterknown/betterknown.mjs +287 -0
- umap/static/umap/vendors/editable/Leaflet.Editable.js +3 -1
- umap/static/umap/vendors/openrouteservice/ors-js-client.js +521 -0
- umap/static/umap/vendors/openrouteservice/ors-js-client.js.map +1 -0
- umap/static/umap/vendors/simple-elevation-chart/elevation.js +63 -0
- umap/static/umap/vendors/simple-elevation-chart/elevation.svg +8 -0
- umap/static/umap/vendors/snapdom/snapdom.min.mjs +3 -0
- umap/storage/fs.py +3 -2
- umap/storage/staticfiles.py +12 -0
- umap/templates/base.html +4 -1
- umap/templates/umap/css.html +0 -4
- umap/templates/umap/js.html +1 -3
- umap/tests/base.py +9 -1
- umap/tests/integration/test_basics.py +3 -1
- umap/tests/integration/test_conditional_rules.py +79 -37
- umap/tests/integration/test_datalayer.py +1 -1
- umap/tests/integration/test_draw_polygon.py +3 -5
- umap/tests/integration/test_draw_polyline.py +4 -6
- umap/tests/integration/test_draw_route.py +178 -0
- umap/tests/integration/test_edit_datalayer.py +1 -1
- umap/tests/integration/test_edit_map.py +1 -1
- umap/tests/integration/test_edit_marker.py +8 -8
- umap/tests/integration/test_edit_polygon.py +2 -2
- umap/tests/integration/test_export_map.py +84 -10
- umap/tests/integration/test_import.py +140 -0
- umap/tests/integration/test_map_preview.py +1 -1
- umap/tests/integration/test_optimistic_merge.py +72 -12
- umap/tests/integration/test_share.py +1 -1
- umap/tests/integration/test_tableeditor.py +10 -7
- umap/tests/integration/test_websocket_sync.py +4 -4
- umap/utils.py +37 -0
- umap/views.py +18 -2
- umap_project-3.3.0.dist-info/METADATA +76 -0
- {umap_project-3.1.2.dist-info → umap_project-3.3.0.dist-info}/RECORD +194 -188
- umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +0 -60
- umap/static/umap/vendors/markercluster/MarkerCluster.css +0 -14
- umap/static/umap/vendors/markercluster/leaflet.markercluster.js +0 -2
- umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map +0 -1
- umap_project-3.1.2.dist-info/METADATA +0 -68
- {umap_project-3.1.2.dist-info → umap_project-3.3.0.dist-info}/WHEEL +0 -0
- {umap_project-3.1.2.dist-info → umap_project-3.3.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.1.2.dist-info → umap_project-3.3.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=PzSl7vO5fA6PZhs4iV8xBCu7yMgUgHHWOABscpEi88A,18
|
|
2
2
|
umap/admin.py,sha256=YlK4CgEWb2eFYRKiklsKouxeiQ8z_b-H2Fv2XCaiGFQ,3014
|
|
3
3
|
umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
|
|
4
4
|
umap/asgi.py,sha256=sJkGqDLgMoPkq2nMRyRE_Hz3ZLJm1X5lgXiQJu6rYt0,660
|
|
@@ -11,8 +11,8 @@ umap/managers.py,sha256=A5Ih92f9E3egPVCToQHYJ4wQMFSqTS6dtqzx56Fs2JU,1051
|
|
|
11
11
|
umap/middleware.py,sha256=GsIFl0St_Rk5zjpE8dpGBlD0JL2AyMrNHu8SHylqwEg,1564
|
|
12
12
|
umap/models.py,sha256=xANPE5gw3jjLartllGrc3GtEZ4en1NsG1WLS05blmRc,19914
|
|
13
13
|
umap/urls.py,sha256=DQ932n0lyS-7eD8ubIaZtW2xjssSVuI7P0DWkClVFx4,7837
|
|
14
|
-
umap/utils.py,sha256=
|
|
15
|
-
umap/views.py,sha256=
|
|
14
|
+
umap/utils.py,sha256=rSzK0GjsAZtPCeJ9Wkk4J3xhIrduOU3wQjxzpPWCA5s,7720
|
|
15
|
+
umap/views.py,sha256=MnkYfclmKv2c_ywh9AnwAZHNqxzYGn-JTIx2pnkqOMo,50677
|
|
16
16
|
umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
|
|
17
17
|
umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
|
|
18
18
|
umap/locale/am_ET/LC_MESSAGES/django.mo,sha256=ZF_hEGHnrIX6XZBVqmWR4xbE5D8Y6s1GS5sYOxnFQBY,5377
|
|
@@ -35,8 +35,8 @@ umap/locale/de/LC_MESSAGES/django.mo,sha256=OsdSrFm_j5mqemJW26YEVWFmRFS6VmGoUjNe
|
|
|
35
35
|
umap/locale/de/LC_MESSAGES/django.po,sha256=a5ZngmPDqTmS2Y64SVmeb7YlAAJneUSpC_xqyIbFxQ0,23638
|
|
36
36
|
umap/locale/el/LC_MESSAGES/django.mo,sha256=6gXjLuMmJZN3-2UdUS_SjpRV-WIzk-kDx3YSghC2Q8o,20110
|
|
37
37
|
umap/locale/el/LC_MESSAGES/django.po,sha256=P1Hrbxvr4x4RihruT0ikK9hN0WvDGkZ9EVfuH17cIUM,28622
|
|
38
|
-
umap/locale/en/LC_MESSAGES/django.mo,sha256=
|
|
39
|
-
umap/locale/en/LC_MESSAGES/django.po,sha256=
|
|
38
|
+
umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
|
|
39
|
+
umap/locale/en/LC_MESSAGES/django.po,sha256=t12FJjuUV4NE3A_cBMQ4EinWOrupcJPagzUCmiwR2BA,17472
|
|
40
40
|
umap/locale/es/LC_MESSAGES/django.mo,sha256=_PIEAre9Tz44L6626UUgZw7nHWpXoK8d8_YWNAvJk20,15906
|
|
41
41
|
umap/locale/es/LC_MESSAGES/django.po,sha256=imix3c0Xycky3RRMHFG8naysWnz1iPaLuo7ovTXZj3Y,23964
|
|
42
42
|
umap/locale/et/LC_MESSAGES/django.mo,sha256=PzS7qLpjfx2vYCxJfg65P9I1TFGqXyr1kIhy-vlyqYo,8618
|
|
@@ -47,8 +47,8 @@ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=SCywKcC6yEdedTcWGPwRBfgQlszKeX3MQ
|
|
|
47
47
|
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=uMHb2uJXhZrpzTXG_RdCQltkFvaQzYpkNrPfB0Aaj24,24337
|
|
48
48
|
umap/locale/fi/LC_MESSAGES/django.mo,sha256=O9foYGhfFTBjBb4Y9abWjOiZNpWtO-315nyHUaiJETM,4779
|
|
49
49
|
umap/locale/fi/LC_MESSAGES/django.po,sha256=5kG9XujFNllOh_wuakGmAHeMy9vqNWFLf9SSrMTaWlk,15709
|
|
50
|
-
umap/locale/fr/LC_MESSAGES/django.mo,sha256=
|
|
51
|
-
umap/locale/fr/LC_MESSAGES/django.po,sha256=
|
|
50
|
+
umap/locale/fr/LC_MESSAGES/django.mo,sha256=iuHQV5wXHOoB7E2BP5n5JKb6iaY0Nvl2Pu7-feDyqI0,16095
|
|
51
|
+
umap/locale/fr/LC_MESSAGES/django.po,sha256=n5IvS9bf_zrOhMTkLQOKZBIJLYFRFdwXi0RQ6F55umE,24203
|
|
52
52
|
umap/locale/gl/LC_MESSAGES/django.mo,sha256=4e03SOje-h-l0HribWZ9-yC7bJmMk6VbK1FfLXOvxTA,13804
|
|
53
53
|
umap/locale/gl/LC_MESSAGES/django.po,sha256=cbHRfZU2a79mxUW2mWI_p-9NAYyjhV5j1nT7oFKdPF8,22904
|
|
54
54
|
umap/locale/he/LC_MESSAGES/django.mo,sha256=A6pkjaL4HQ7lyfvXcGIxle61RXdo7Byq3mfK2FIrSnc,6640
|
|
@@ -114,10 +114,11 @@ umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
114
114
|
umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
|
|
115
115
|
umap/management/commands/clean_tilelayer.py,sha256=Rcc2PibUUreU0jUZMtUlyqVvgbQMLMuuCZ2tkrzRqHU,5712
|
|
116
116
|
umap/management/commands/empty_trash.py,sha256=YUp7mZme94ailEnNZnVD8VDPI94buGLngXZ2nFPZ5ZA,1629
|
|
117
|
+
umap/management/commands/export_pictogram.py,sha256=7rbf-fsESu1C9BcwUnP2ZBZNrvbhNVxtJRhO7vq2pCs,942
|
|
117
118
|
umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUeY2SlOrTXS42tE0-bs,1281
|
|
118
119
|
umap/management/commands/import_pictograms.py,sha256=RuQDCoiKamba4l3fZUGAXRyd-3zwWWT5c5AhgDvs7AQ,2369
|
|
119
|
-
umap/management/commands/migrate_to_S3.py,sha256=
|
|
120
|
-
umap/management/commands/purge_old_versions.py,sha256=
|
|
120
|
+
umap/management/commands/migrate_to_S3.py,sha256=SJuadjgZPCGqrdQ0SshxvVh0CBzJan6yP525PpIsgMw,2158
|
|
121
|
+
umap/management/commands/purge_old_versions.py,sha256=qT2kET_TVhvtUOj4yD4kC-cwVjN9aCZRlyS1THTPYm0,2599
|
|
121
122
|
umap/management/commands/switch_user.py,sha256=NbEGoK7dKgp7V0KOq1iV48_Kd1sVCeUBIu6HveESh_w,1794
|
|
122
123
|
umap/migrations/0001_initial.py,sha256=dMcXtTKPiA0IqXCrDVctH91Fe0hhc04NxmvcLAULyzE,8787
|
|
123
124
|
umap/migrations/0002_tilelayer_tms.py,sha256=E99JAu1K0NzwsCEJs1z5uGlBkBJmoVb9a3WBKjpLYlo,372
|
|
@@ -148,25 +149,25 @@ umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py,sha256=TnFC
|
|
|
148
149
|
umap/migrations/0027_map_tags.py,sha256=zAJzbZkB5Lsp1zczqVbRU2zLwMRfBQzvrDR6G37sKZM,610
|
|
149
150
|
umap/migrations/0028_map_is_template.py,sha256=372PBmOD0VALI4hu_iWK4Uo3mKS3p4_donb0-47CFgs,512
|
|
150
151
|
umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
-
umap/settings/__init__.py,sha256=
|
|
152
|
-
umap/settings/base.py,sha256=
|
|
152
|
+
umap/settings/__init__.py,sha256=Xg2zqnT0H8mpg5xlpjBiS5fEdAvcoyDPAiUp73daDnc,2942
|
|
153
|
+
umap/settings/base.py,sha256=d_ee8wuqvK2Dro8L4nHtInUEhQ_Yl4DlUzq-G58_5lM,12528
|
|
153
154
|
umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
|
|
154
155
|
umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
|
|
155
156
|
umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
156
157
|
umap/static/umap/base.css,sha256=qBg5XJt5sTs0KZ5icTBce3iQgYZOMA-YD5P-9Z6Vu08,5165
|
|
157
|
-
umap/static/umap/content.css,sha256=
|
|
158
|
+
umap/static/umap/content.css,sha256=gh2BfVRdkvxYtISVGg-vay0O6jMrX4anUGZ3QheWzyE,12149
|
|
158
159
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
159
|
-
umap/static/umap/map.css,sha256=
|
|
160
|
+
umap/static/umap/map.css,sha256=Aq0zLESKpZEe5PmcPvu-QfqYw-OZk_g5P5ydrZC-I50,25046
|
|
160
161
|
umap/static/umap/nav.css,sha256=MsckfSfuMgADt71FIVpW351ZC2ATlr50iGW-47hziwk,1956
|
|
161
162
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
162
|
-
umap/static/umap/vars.css,sha256=
|
|
163
|
+
umap/static/umap/vars.css,sha256=MMhfpEJb7g4JP5nS7YdB2zRxh7CKuwZ6tjaU41Q_GUw,2197
|
|
163
164
|
umap/static/umap/css/bar.css,sha256=qAhRGfDqh0Att86H3RUr4os9DPiG6E83aPnKcUtDsS0,6250
|
|
164
|
-
umap/static/umap/css/contextmenu.css,sha256=
|
|
165
|
+
umap/static/umap/css/contextmenu.css,sha256=8xYIro-Fy0QZMOABWNtioVCjXUGIbn5pSi803OJfi2Q,2030
|
|
165
166
|
umap/static/umap/css/dialog.css,sha256=43Cq5ll7g8u4mpzstTtoo5CXtcFkH9pMzEg04xujAaE,993
|
|
166
|
-
umap/static/umap/css/form.css,sha256=
|
|
167
|
-
umap/static/umap/css/icon.css,sha256=
|
|
167
|
+
umap/static/umap/css/form.css,sha256=rlC0nqZhUxFGGN7F_nh2iZURu5fYkYArUrPi2iLIFjg,14980
|
|
168
|
+
umap/static/umap/css/icon.css,sha256=j5f94TGqHC9dLw6auQeybNGv5WsHi8jCSwVpHYSLa4A,6514
|
|
168
169
|
umap/static/umap/css/importers.css,sha256=Q_pXPC02AwaPi5hu-raDSoBBPKH2Vj-EOoLIG-IIn-A,1774
|
|
169
|
-
umap/static/umap/css/panel.css,sha256=
|
|
170
|
+
umap/static/umap/css/panel.css,sha256=BleuyREmEkPwqVE31_hZwsuju3XQoj21-1GsfP-SSKM,4550
|
|
170
171
|
umap/static/umap/css/popup.css,sha256=arW0Yfisk5EUnT7-uSZEIw4IYZxF2uMJkiOtqyEmcIE,2400
|
|
171
172
|
umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
|
|
172
173
|
umap/static/umap/css/tableeditor.css,sha256=nYFd5qSMkUasFfAxkWwewKJ5MwIcZb2Zq_DViuDRZc4,1574
|
|
@@ -183,10 +184,10 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
|
|
|
183
184
|
umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
|
|
184
185
|
umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
|
|
185
186
|
umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
|
|
186
|
-
umap/static/umap/img/16-white.svg,sha256=
|
|
187
|
-
umap/static/umap/img/16.svg,sha256=
|
|
188
|
-
umap/static/umap/img/24-white.svg,sha256=
|
|
189
|
-
umap/static/umap/img/24.svg,sha256=
|
|
187
|
+
umap/static/umap/img/16-white.svg,sha256=jlxB2jX0S7c2jmlnKPOhj29n_ceoJTLvYELchVvelL0,43639
|
|
188
|
+
umap/static/umap/img/16.svg,sha256=c-vbOlms_uFDzTZY3jdZPMMwBZJX_bYam1exVGwOOvI,27828
|
|
189
|
+
umap/static/umap/img/24-white.svg,sha256=QVuiHS78y4m7ZejFb5-jWwAYAVNLlWxXKiGbyJf5FHk,21455
|
|
190
|
+
umap/static/umap/img/24.svg,sha256=nLcI0MgKj48m8CKwfNBBdPWr4SXkQHMSwF4v25PTHQ4,29496
|
|
190
191
|
umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
|
|
191
192
|
umap/static/umap/img/alert-icon-info.svg,sha256=wnfvaWhidanbIX8n2G8ppFG7pXyqnDjL9lhdbVoeCf8,735
|
|
192
193
|
umap/static/umap/img/alert-icon-success.svg,sha256=ZzH4Te0IMM0Cyf9MByh57gxNxVddOavA3gSGqsa3xM0,189
|
|
@@ -225,11 +226,11 @@ umap/static/umap/img/providers/github.png,sha256=sA3oznlXAC2lqynqS2PMuNwZPQ3REfK
|
|
|
225
226
|
umap/static/umap/img/providers/keycloak.png,sha256=76ZaWlmmVdpr7t33LDqYRPRsuKsFmrOjLQk17LsezYo,1520
|
|
226
227
|
umap/static/umap/img/providers/openstreetmap-oauth2.png,sha256=fzqr15HexNfyi2l3Pxos9ptnmXfTH9Gm2v-1o7F1W7A,1680
|
|
227
228
|
umap/static/umap/img/providers/twitter-oauth2.png,sha256=9sCQYpLXTK40nvQmwEWd325XgBPq-Wt2JGu59GJDRfs,1589
|
|
228
|
-
umap/static/umap/img/source/16-white.svg,sha256=
|
|
229
|
-
umap/static/umap/img/source/16.svg,sha256=
|
|
230
|
-
umap/static/umap/img/source/24-white.svg,sha256=
|
|
231
|
-
umap/static/umap/img/source/24.svg,sha256=
|
|
232
|
-
umap/static/umap/js/umap.controls.js,sha256=
|
|
229
|
+
umap/static/umap/img/source/16-white.svg,sha256=R_DDw29zHS7WPq6PwBk3_PZhnITGdQkiSB8tTEkAkK4,72421
|
|
230
|
+
umap/static/umap/img/source/16.svg,sha256=xNb98QftfCBGkC2EUVNzp922DSBJqmfBnQTvAIX72ZA,48560
|
|
231
|
+
umap/static/umap/img/source/24-white.svg,sha256=WbH5ljoAw3b7yq6HoZiFhab1-XSSK9Y5dVwcsTeGU8U,34009
|
|
232
|
+
umap/static/umap/img/source/24.svg,sha256=zWBP4zWRi_p6Gc98QS1ivhANGmHG5jnpiI36ptecUT8,45124
|
|
233
|
+
umap/static/umap/js/umap.controls.js,sha256=zaMX2VKSlK63iPRovPPajcM5Aduqnz8zbgzpPvn_Fto,13845
|
|
233
234
|
umap/static/umap/js/umap.core.js,sha256=BpcfSnHFb1MzOaF0Meo8GrEVETOKMaG_pbgnRwnUPi8,6041
|
|
234
235
|
umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
|
|
235
236
|
umap/static/umap/js/components/fragment.js,sha256=-rOrcyPpZ5ihD_hh0C1qrYpaim11JYh5fg0x_od_m5U,379
|
|
@@ -237,170 +238,173 @@ umap/static/umap/js/components/modal.js,sha256=ugaibc2n5Pftocs1crN6zaPRJztSQm1at
|
|
|
237
238
|
umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
|
|
238
239
|
umap/static/umap/js/components/alerts/alert.js,sha256=_BcG9WluOkJTj_v795c0PIXvv5EZQs0uO5-rUhcwEco,4482
|
|
239
240
|
umap/static/umap/js/modules/autocomplete.js,sha256=CLw4KP_Mmf5s55OWimK3Xw7GkwDLtuCqeEI2WqPSsOU,8729
|
|
240
|
-
umap/static/umap/js/modules/browser.js,sha256=
|
|
241
|
-
umap/static/umap/js/modules/caption.js,sha256=
|
|
241
|
+
umap/static/umap/js/modules/browser.js,sha256=6WVBox4gLoqPasBzkh7dULz74AKKDQ-5Cp-b0-DbVHY,9753
|
|
242
|
+
umap/static/umap/js/modules/caption.js,sha256=glOSK2HIENR-tPO4iDWOvPRX8xgeWloKAbntRpYH1qc,5813
|
|
242
243
|
umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
|
|
243
244
|
umap/static/umap/js/modules/drop.js,sha256=aHuz_sDgWAqDEH49OWNhnnyFvGLDMCoeeo5xaBLZwAg,1431
|
|
244
|
-
umap/static/umap/js/modules/facets.js,sha256=
|
|
245
|
-
umap/static/umap/js/modules/formatter.js,sha256=
|
|
245
|
+
umap/static/umap/js/modules/facets.js,sha256=gan4obCxzJVcRFWaHjNLpqHn4GJ8DLQCl0ifFlqEdgw,4775
|
|
246
|
+
umap/static/umap/js/modules/formatter.js,sha256=q-43WipkO5nOLynnt6jm8yTicBp-DPIlW3WuADE7zY0,5972
|
|
246
247
|
umap/static/umap/js/modules/global.js,sha256=pmO5iFezaPhxQemgscta2S1J4vBRHIpjALjym2Hs9Z4,941
|
|
247
248
|
umap/static/umap/js/modules/help.js,sha256=fnkc6ugsYI1TeermtqiJUYJFm9P1pcC-CoDuJ03iZq0,10338
|
|
248
249
|
umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
|
|
249
|
-
umap/static/umap/js/modules/importer.js,sha256=
|
|
250
|
+
umap/static/umap/js/modules/importer.js,sha256=UEEUodCoWmrhq1ActNusz4jU6n6R3DRuhPVd3_oSF00,11458
|
|
250
251
|
umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
|
|
251
|
-
umap/static/umap/js/modules/managers.js,sha256=
|
|
252
|
+
umap/static/umap/js/modules/managers.js,sha256=hRj3lNFnXKhxBm8uIUpR15bYqlog_i8qeIP9879lDdc,2462
|
|
252
253
|
umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
|
|
253
254
|
umap/static/umap/js/modules/permissions.js,sha256=t-kZvgGIGva8MNMu9Ydr-U9KVrdKUQery_BqniFWut0,8734
|
|
255
|
+
umap/static/umap/js/modules/printer.js,sha256=fvb44tLBiYR7TyBdXJdroYsjQOrnbzw7-6F0dBCUEGg,3607
|
|
254
256
|
umap/static/umap/js/modules/request.js,sha256=9GRJoOPbdkHL9OFP6Joaf5wzsJckPyiG2O7AxQciTik,3885
|
|
255
|
-
umap/static/umap/js/modules/rules.js,sha256=
|
|
256
|
-
umap/static/umap/js/modules/schema.js,sha256=
|
|
257
|
-
umap/static/umap/js/modules/share.js,sha256=
|
|
258
|
-
umap/static/umap/js/modules/slideshow.js,sha256=
|
|
259
|
-
umap/static/umap/js/modules/tableeditor.js,sha256=
|
|
260
|
-
umap/static/umap/js/modules/templates.js,sha256=
|
|
261
|
-
umap/static/umap/js/modules/umap.js,sha256=
|
|
257
|
+
umap/static/umap/js/modules/rules.js,sha256=H250ZVdId8nG2hkJqCegCYYt9njw8g6qBFBt7-vrr8o,10007
|
|
258
|
+
umap/static/umap/js/modules/schema.js,sha256=ZZwbbR0HPstn3vaendxF_RS_umam3BuATrWdxsQZD4s,15631
|
|
259
|
+
umap/static/umap/js/modules/share.js,sha256=xgojG1xHDcbgJZlUd-oP7VFrbGDpl2k1LmTll01f84w,7491
|
|
260
|
+
umap/static/umap/js/modules/slideshow.js,sha256=7tmW32iuEwLXTY_4A_DmiRMjdDr5luhpJSdmbz2SXPc,3608
|
|
261
|
+
umap/static/umap/js/modules/tableeditor.js,sha256=NbUgJul5_fFhikWyXIZ1nOEp9hSVKO61i2y52noGISc,8537
|
|
262
|
+
umap/static/umap/js/modules/templates.js,sha256=41fliDQLrVo-WosiyLkxpRry3WXpCVz4IW7kYn0AMfQ,4415
|
|
263
|
+
umap/static/umap/js/modules/umap.js,sha256=8hMrRD90Mo1OnhBEGEvPeugm9glc36qsHnhsdHxHQHg,54331
|
|
262
264
|
umap/static/umap/js/modules/urls.js,sha256=76cFqycj2O8huuoYYBvxnVt2Fc2UDbgrRsiv6lQmcSY,890
|
|
263
|
-
umap/static/umap/js/modules/utils.js,sha256=
|
|
264
|
-
umap/static/umap/js/modules/data/features.js,sha256=
|
|
265
|
-
umap/static/umap/js/modules/data/layer.js,sha256=
|
|
266
|
-
umap/static/umap/js/modules/form/builder.js,sha256=
|
|
267
|
-
umap/static/umap/js/modules/form/fields.js,sha256=
|
|
265
|
+
umap/static/umap/js/modules/utils.js,sha256=rT_RILODFUWAvvgjFpT5TtNbu8A9jzn0mlkpHEB8QqM,16044
|
|
266
|
+
umap/static/umap/js/modules/data/features.js,sha256=kpx7kVVAlejktTd60_ikVNdKS48PeM-6bDuu7-83T7k,38264
|
|
267
|
+
umap/static/umap/js/modules/data/layer.js,sha256=iMlFupO24Ow6ObbIBJ7WJ_HBYKYtbQFSMg9JEByPkhk,43749
|
|
268
|
+
umap/static/umap/js/modules/form/builder.js,sha256=akRoO8VpKXqWr3LO4Y_B1zr9gXJL2S5RCJqRDREweq8,6452
|
|
269
|
+
umap/static/umap/js/modules/form/fields.js,sha256=yUEUPDHF3tgnpDv7UdfMXHsabCMaGsUDXQq2-Qe1krg,36152
|
|
268
270
|
umap/static/umap/js/modules/importers/banfr.js,sha256=TBwL3GQJdzYtaDtxeHxyPQ7Ycy5zTaQyvzXa55X7n2I,2932
|
|
269
271
|
umap/static/umap/js/modules/importers/cadastrefr.js,sha256=fcNOYZ679MYpy3fQubEhNmyaMpGKyNNeZRlUVgHKcz4,2319
|
|
270
272
|
umap/static/umap/js/modules/importers/communesfr.js,sha256=HoeVApZ0ORDxQt4dA86nKDldey3aJNeLdagMkn5skUg,1723
|
|
271
273
|
umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
|
|
272
274
|
umap/static/umap/js/modules/importers/geodatamine.js,sha256=4KmRpEpwdUHO1lqzB38hnTFvPjh7IjcQfVVDziqKS8k,3000
|
|
273
|
-
umap/static/umap/js/modules/importers/opendata.js,sha256=
|
|
275
|
+
umap/static/umap/js/modules/importers/opendata.js,sha256=SfQr3jY_LM8mMs-BDaggChEjaP8D6pvZ7ZGU_pfQ1P4,7361
|
|
276
|
+
umap/static/umap/js/modules/importers/openrouteservice.js,sha256=RGHMXDaDpgXg-6LEHOFN9GBdhf-hcG194yBEIOTNqcM,3918
|
|
274
277
|
umap/static/umap/js/modules/importers/overpass.js,sha256=cY2kb3Fs8tA6PqBjGyc5bI0mg7L1ijapIAkVGwEhSwI,3341
|
|
275
|
-
umap/static/umap/js/modules/rendering/controls.js,sha256=
|
|
276
|
-
umap/static/umap/js/modules/rendering/icon.js,sha256=
|
|
277
|
-
umap/static/umap/js/modules/rendering/map.js,sha256=
|
|
278
|
+
umap/static/umap/js/modules/rendering/controls.js,sha256=7dPxGdfA3zhVfN26ZoTkO-Fg-Mp6QNUIbyoDznHBFN8,10631
|
|
279
|
+
umap/static/umap/js/modules/rendering/icon.js,sha256=c4kTghfdjku03Ey825LIp9sZ9MS5e4MD8TsV8y33MOo,8910
|
|
280
|
+
umap/static/umap/js/modules/rendering/map.js,sha256=zdBF7153X_vE-k0pZhcsNJKIc3nvLT3K0g_VHPfaMDE,12796
|
|
278
281
|
umap/static/umap/js/modules/rendering/popup.js,sha256=OtQYpjhWCoW20XBFeeSKCXMqN-szohaX1TKWhPc9eBo,2577
|
|
279
|
-
umap/static/umap/js/modules/rendering/template.js,sha256=
|
|
280
|
-
umap/static/umap/js/modules/rendering/ui.js,sha256=
|
|
282
|
+
umap/static/umap/js/modules/rendering/template.js,sha256=n74YzbZOS_4CeK3-Jn7NXbkzqsh4zjCbEX9w15QxKu0,11468
|
|
283
|
+
umap/static/umap/js/modules/rendering/ui.js,sha256=pn1p8eZ67_LTLY8sCkI5r3U-5RmqsOTn3X0GLZwH4SE,16317
|
|
281
284
|
umap/static/umap/js/modules/rendering/layers/base.js,sha256=G9H41vTrh-6Yn5H9UhKj5BOx03Xp2jcevpZINTDCtHI,2528
|
|
282
|
-
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=
|
|
283
|
-
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=
|
|
285
|
+
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=CLktnkjf5_6CzkKVyZcx5wAKvhsRp4pRpCIBauwKeO0,15068
|
|
286
|
+
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=KjCARNyAW5nCoozIYlDwUeeC_gyyjbNvslELe7Cf2Yw,7316
|
|
284
287
|
umap/static/umap/js/modules/rendering/layers/heat.js,sha256=K_LsxnfpGImy2HlneV5nK0cBu1FxDmPNxR5VmsV4LaM,4975
|
|
285
288
|
umap/static/umap/js/modules/sync/engine.js,sha256=LDB7HHCmfVb0Cz30yVXBSV0f-1CGG5bkzrPtaT5RePM,18390
|
|
286
289
|
umap/static/umap/js/modules/sync/hlc.js,sha256=XeJz3x7qiDz7v-mcgGIynj5ks34FpWx_oSPUPFd_ZGA,2991
|
|
287
290
|
umap/static/umap/js/modules/sync/undo.js,sha256=CQufaRvI_-dT0HGm5Wl8hBbO00IruflPdlmWJ4acgFM,2910
|
|
288
|
-
umap/static/umap/js/modules/sync/updaters.js,sha256
|
|
291
|
+
umap/static/umap/js/modules/sync/updaters.js,sha256=9qukCBW_pPk4-3k4boKjcyocBd5w37UZxYGqclewlD0,3809
|
|
289
292
|
umap/static/umap/js/modules/sync/websocket.js,sha256=M2wsFuW5vRsY677dRSAFUWJl5MBPCOvaNYCAxBAqjcA,2522
|
|
290
|
-
umap/static/umap/js/modules/ui/bar.js,sha256=
|
|
291
|
-
umap/static/umap/js/modules/ui/base.js,sha256=
|
|
292
|
-
umap/static/umap/js/modules/ui/contextmenu.js,sha256=
|
|
293
|
-
umap/static/umap/js/modules/ui/dialog.js,sha256=
|
|
294
|
-
umap/static/umap/js/modules/ui/panel.js,sha256=
|
|
293
|
+
umap/static/umap/js/modules/ui/bar.js,sha256=C6moD-rVwYApug3o0fq2O_JSrqNI77_22LNgC4BwTdg,15267
|
|
294
|
+
umap/static/umap/js/modules/ui/base.js,sha256=OLR8VOvKPkDCT0X3hQq3s0WVRQunNEIUj83RNMEyzBM,2980
|
|
295
|
+
umap/static/umap/js/modules/ui/contextmenu.js,sha256=3Zm0AOoZLdCm76SLvImH1rtv0gPbcU1DQsJHf6cEojM,3169
|
|
296
|
+
umap/static/umap/js/modules/ui/dialog.js,sha256=m6WotSD9xReqzzzV_Vc2MP7EjH2bozGmvOiQ_TaS8fE,5669
|
|
297
|
+
umap/static/umap/js/modules/ui/panel.js,sha256=s-dTPKhZDP190OZXoaVxMtBly0aoUbSPCwPdZhuNxTk,3613
|
|
295
298
|
umap/static/umap/js/modules/ui/tooltip.js,sha256=KxUQMtH29DZSCsZ6uZMtNlNR2NnQDnRMfJMJ35O_w5k,1919
|
|
296
|
-
umap/static/umap/locale/am_ET.js,sha256=
|
|
297
|
-
umap/static/umap/locale/am_ET.json,sha256=
|
|
298
|
-
umap/static/umap/locale/ar.js,sha256=
|
|
299
|
-
umap/static/umap/locale/ar.json,sha256=
|
|
300
|
-
umap/static/umap/locale/ast.js,sha256=
|
|
301
|
-
umap/static/umap/locale/ast.json,sha256=
|
|
302
|
-
umap/static/umap/locale/bg.js,sha256=
|
|
303
|
-
umap/static/umap/locale/bg.json,sha256=
|
|
304
|
-
umap/static/umap/locale/br.js,sha256=
|
|
305
|
-
umap/static/umap/locale/br.json,sha256=
|
|
306
|
-
umap/static/umap/locale/ca.js,sha256=
|
|
307
|
-
umap/static/umap/locale/ca.json,sha256=
|
|
308
|
-
umap/static/umap/locale/cs_CZ.js,sha256=
|
|
309
|
-
umap/static/umap/locale/cs_CZ.json,sha256=
|
|
310
|
-
umap/static/umap/locale/da.js,sha256=
|
|
311
|
-
umap/static/umap/locale/da.json,sha256=
|
|
312
|
-
umap/static/umap/locale/de.js,sha256
|
|
313
|
-
umap/static/umap/locale/de.json,sha256=
|
|
314
|
-
umap/static/umap/locale/el.js,sha256=
|
|
315
|
-
umap/static/umap/locale/el.json,sha256=
|
|
316
|
-
umap/static/umap/locale/en.js,sha256
|
|
317
|
-
umap/static/umap/locale/en.json,sha256=
|
|
318
|
-
umap/static/umap/locale/en_US.json,sha256=
|
|
319
|
-
umap/static/umap/locale/es.js,sha256=
|
|
320
|
-
umap/static/umap/locale/es.json,sha256=
|
|
321
|
-
umap/static/umap/locale/et.js,sha256
|
|
322
|
-
umap/static/umap/locale/et.json,sha256=
|
|
323
|
-
umap/static/umap/locale/eu.js,sha256=
|
|
324
|
-
umap/static/umap/locale/eu.json,sha256=
|
|
325
|
-
umap/static/umap/locale/fa_IR.js,sha256=
|
|
326
|
-
umap/static/umap/locale/fa_IR.json,sha256=
|
|
327
|
-
umap/static/umap/locale/fi.js,sha256=
|
|
328
|
-
umap/static/umap/locale/fi.json,sha256=
|
|
329
|
-
umap/static/umap/locale/fr.js,sha256=
|
|
330
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
331
|
-
umap/static/umap/locale/gl.js,sha256=
|
|
332
|
-
umap/static/umap/locale/gl.json,sha256=
|
|
333
|
-
umap/static/umap/locale/he.js,sha256=
|
|
334
|
-
umap/static/umap/locale/he.json,sha256=
|
|
335
|
-
umap/static/umap/locale/hr.js,sha256=
|
|
336
|
-
umap/static/umap/locale/hr.json,sha256=
|
|
337
|
-
umap/static/umap/locale/hu.js,sha256=
|
|
338
|
-
umap/static/umap/locale/hu.json,sha256=
|
|
339
|
-
umap/static/umap/locale/id.js,sha256=
|
|
340
|
-
umap/static/umap/locale/id.json,sha256=
|
|
341
|
-
umap/static/umap/locale/is.js,sha256=
|
|
342
|
-
umap/static/umap/locale/is.json,sha256=
|
|
343
|
-
umap/static/umap/locale/it.js,sha256=
|
|
344
|
-
umap/static/umap/locale/it.json,sha256=
|
|
345
|
-
umap/static/umap/locale/ja.js,sha256=
|
|
346
|
-
umap/static/umap/locale/ja.json,sha256=
|
|
347
|
-
umap/static/umap/locale/ko.js,sha256=
|
|
348
|
-
umap/static/umap/locale/ko.json,sha256=
|
|
349
|
-
umap/static/umap/locale/lt.js,sha256=
|
|
350
|
-
umap/static/umap/locale/lt.json,sha256
|
|
351
|
-
umap/static/umap/locale/ms.js,sha256=
|
|
352
|
-
umap/static/umap/locale/ms.json,sha256
|
|
353
|
-
umap/static/umap/locale/nl.js,sha256=
|
|
354
|
-
umap/static/umap/locale/nl.json,sha256=
|
|
355
|
-
umap/static/umap/locale/no.js,sha256=
|
|
356
|
-
umap/static/umap/locale/no.json,sha256=
|
|
357
|
-
umap/static/umap/locale/pl.js,sha256=
|
|
358
|
-
umap/static/umap/locale/pl.json,sha256=
|
|
359
|
-
umap/static/umap/locale/pl_PL.json,sha256=
|
|
360
|
-
umap/static/umap/locale/pt.js,sha256=
|
|
361
|
-
umap/static/umap/locale/pt.json,sha256=
|
|
362
|
-
umap/static/umap/locale/pt_BR.js,sha256=
|
|
363
|
-
umap/static/umap/locale/pt_BR.json,sha256=
|
|
364
|
-
umap/static/umap/locale/pt_PT.js,sha256=
|
|
365
|
-
umap/static/umap/locale/pt_PT.json,sha256=
|
|
366
|
-
umap/static/umap/locale/ro.js,sha256=
|
|
367
|
-
umap/static/umap/locale/ro.json,sha256=
|
|
368
|
-
umap/static/umap/locale/ru.js,sha256=
|
|
369
|
-
umap/static/umap/locale/ru.json,sha256=
|
|
299
|
+
umap/static/umap/locale/am_ET.js,sha256=sPr73zH6keo-0uW3I7amVv3BPS9ieYhUTM4HGooA1vM,38360
|
|
300
|
+
umap/static/umap/locale/am_ET.json,sha256=wcEzmAU-SeCTCxW5ZUlyqhDk5R9pHzVtGC8BxnYt4yA,38289
|
|
301
|
+
umap/static/umap/locale/ar.js,sha256=e1GUHrSsmFaWNQNnx2g7SVftO7PESLcU1x7kfwERfDQ,35331
|
|
302
|
+
umap/static/umap/locale/ar.json,sha256=wmShokVFMqM92GnUrfHa6p8FrdWAj6Mr3yqGumRvPAA,35266
|
|
303
|
+
umap/static/umap/locale/ast.js,sha256=jRWnhmd_ycm1ioYpp23duGXCQxQ1aC0TDS3KSTOBnuU,34935
|
|
304
|
+
umap/static/umap/locale/ast.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
|
|
305
|
+
umap/static/umap/locale/bg.js,sha256=zCViRdEUwTtd-pdnmoDLzYNIQb1Jd9rZCBkuMG6l7Kc,37782
|
|
306
|
+
umap/static/umap/locale/bg.json,sha256=qA77uGtkk1D70I9xOkDEKMlwFo-tgsJ7IOFuPh0eYYk,37717
|
|
307
|
+
umap/static/umap/locale/br.js,sha256=d-DeTk4U5937JIEWhjCQz8iV7fbdOgG145PtTSVe5Rc,37279
|
|
308
|
+
umap/static/umap/locale/br.json,sha256=t1zobQ--unLcg6OwtCeCJZskstLpG8LfelKCPE0Lu1E,37214
|
|
309
|
+
umap/static/umap/locale/ca.js,sha256=5j9ipDYpbqs8LfExPgq7XKerZwNbrcCwRMKkanVWBZs,36690
|
|
310
|
+
umap/static/umap/locale/ca.json,sha256=ycAAXKO3SsnMBwkXrBHAItCxttC-6vv7GsP-NmGbOqY,36625
|
|
311
|
+
umap/static/umap/locale/cs_CZ.js,sha256=hHwQfF_416U6HcViVZepJga20EwtKGhkDUiks4qtR_E,37618
|
|
312
|
+
umap/static/umap/locale/cs_CZ.json,sha256=jIGpH3nab3egJ6mdzboF9Ktrn-0FRE-xIU8SyFge5aI,37547
|
|
313
|
+
umap/static/umap/locale/da.js,sha256=BBK5fIYL7oSoIa-iH8uJtEih5OoNxz7X8geyzztAkvo,36030
|
|
314
|
+
umap/static/umap/locale/da.json,sha256=sPLyg8woVBRzbAHoZxPU9JJ3frTlGYRLZG1Vcpd5atU,35965
|
|
315
|
+
umap/static/umap/locale/de.js,sha256=-50FATAg0hS6BZQlJsi6TxcZsKmMtxsb_eFKfgfPxjY,38027
|
|
316
|
+
umap/static/umap/locale/de.json,sha256=9QaaZL3ZIAKYsrFMBvkv_wWO0I1oBp34QORq1uRPYqI,37962
|
|
317
|
+
umap/static/umap/locale/el.js,sha256=hWKHx9ct98bErPM7AEz3cHaubjyivC8Z79mLDniqOu4,51333
|
|
318
|
+
umap/static/umap/locale/el.json,sha256=BRiMJkE0HEI2k92LNtzCpOk6C4zHi1L-ktGVjzrYcyI,51268
|
|
319
|
+
umap/static/umap/locale/en.js,sha256=qEsUY-Ic7HQGoL_yhs1Yh_bhNCWbCWTGmGuWXEmHkac,34933
|
|
320
|
+
umap/static/umap/locale/en.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
|
|
321
|
+
umap/static/umap/locale/en_US.json,sha256=3UI6ecOfs6vaMDVC2WDvJ0lb4pWTwNrXayuj-DZWYFU,34662
|
|
322
|
+
umap/static/umap/locale/es.js,sha256=9NhbQN0l4LhtbBPm__6sXPvbyfeE3sb9iDvbrK_NkuI,38171
|
|
323
|
+
umap/static/umap/locale/es.json,sha256=1l_oiGkX96QbqBec2d75_dJdJnLqGOWqiUPlvzCArqc,38106
|
|
324
|
+
umap/static/umap/locale/et.js,sha256=ZnGdY1bfYbJxCW-WLJDakpJX1ZkzQXsBPZ8UIDsyWRQ,35077
|
|
325
|
+
umap/static/umap/locale/et.json,sha256=i6VLYYtPk6py3rlKQA_LRaBi4A5egxGt1ZTnfcoa7T0,35012
|
|
326
|
+
umap/static/umap/locale/eu.js,sha256=88hUF6Chpc5DqoItL-2vPw1CKDCthFflXMGi_MZNsok,37197
|
|
327
|
+
umap/static/umap/locale/eu.json,sha256=WkPOO_Nln44iyGF8BCoI7F3bAIgsHY-cUNC9S2kvwvk,37132
|
|
328
|
+
umap/static/umap/locale/fa_IR.js,sha256=cegs43aHAEsBXoMitji9KVhRLYX7aa7o9FYPMpD_LXw,43203
|
|
329
|
+
umap/static/umap/locale/fa_IR.json,sha256=cRPc42Z0Rfelxc_Ebs3QEoiFrORBO5ZU1UfYLwv8o70,43132
|
|
330
|
+
umap/static/umap/locale/fi.js,sha256=rfjcFAXpG1KHQphGys1l24hYPITYpZ6065J5utEyrVk,35706
|
|
331
|
+
umap/static/umap/locale/fi.json,sha256=ks77grVEgGxcjbT0Re5gFrhXPB5wDtKHazCwqppn89E,35641
|
|
332
|
+
umap/static/umap/locale/fr.js,sha256=wWtShv8yIokLC1y-eyucDlmsTzkrXCtfOPzq1yOqiPs,38350
|
|
333
|
+
umap/static/umap/locale/fr.json,sha256=xaBCmTS5m5iRdO0QWFIcIYRBvOpU07PetlzUm5d4Q9g,38285
|
|
334
|
+
umap/static/umap/locale/gl.js,sha256=UI2AACApwGhYluuJcGPE_f7389T6tEpytrwLsWawgKY,37745
|
|
335
|
+
umap/static/umap/locale/gl.json,sha256=3LN5rMA1FB9KxR_4rolTJdr-k99qDUYYLK6vfMk1rig,37680
|
|
336
|
+
umap/static/umap/locale/he.js,sha256=5GeT5SQloXbq-tAu_g19LungnjzMfg1yvJrDD4-22O8,38091
|
|
337
|
+
umap/static/umap/locale/he.json,sha256=Di_lemTu7wdtVVYyetnmiFM3WTsuNqxaPAKKFi9qmkg,38026
|
|
338
|
+
umap/static/umap/locale/hr.js,sha256=Ks325vywHX7RhWMVWuR1XVL3xFRsftQbc2H6ursRMPo,35103
|
|
339
|
+
umap/static/umap/locale/hr.json,sha256=yoTOB21velJBvgiXWlvWQ7e4jxxZCRE4dy4jbnZzXJM,35038
|
|
340
|
+
umap/static/umap/locale/hu.js,sha256=5M_um_-_LtLuxaETTDFY9tGcjY247cnqnjoCnt7H7qA,39756
|
|
341
|
+
umap/static/umap/locale/hu.json,sha256=CPKAlkNhOn4RiNMz9y-v6jcXub48GrMH7VU19ft2qFc,39691
|
|
342
|
+
umap/static/umap/locale/id.js,sha256=lJSSmoAEz8Xk7ZxyuYZjGAY8BLc2FyxIokmPfQkctvo,34933
|
|
343
|
+
umap/static/umap/locale/id.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
|
|
344
|
+
umap/static/umap/locale/is.js,sha256=nlXbEON9lB5qEqK3w7FpUTWHKNYHbgW79Hrs8ieIjdk,36664
|
|
345
|
+
umap/static/umap/locale/is.json,sha256=OFQhRHznZuxvJBSvS9CGrjLcS7RDgHUkDA2yejCyFMo,36599
|
|
346
|
+
umap/static/umap/locale/it.js,sha256=zhHEq_lL8LEu_M_EGHw1nULa6n-YgpVFJEUO6ogv0cA,38041
|
|
347
|
+
umap/static/umap/locale/it.json,sha256=LC4JfbYpGTSpi75vWX9xs9Xtdx8-O_pKyQj2TnBtWYA,37976
|
|
348
|
+
umap/static/umap/locale/ja.js,sha256=9T51PGLkRjQu83Q2gApaaq468oSRwiVpbzr7LTw77TA,37209
|
|
349
|
+
umap/static/umap/locale/ja.json,sha256=X_SEuSmCjZl0kEUpMYKP8vEXXVUZOKQRfQhKB4HZ-qE,37144
|
|
350
|
+
umap/static/umap/locale/ko.js,sha256=37sNo5dfXLAjU1dpt7_NsLbWN_SYhuPMu09vU4SeczU,35075
|
|
351
|
+
umap/static/umap/locale/ko.json,sha256=jDk0EZDt8D_ex18HkcBmQ9_8hpktjgo-mHIBotH4KHA,35010
|
|
352
|
+
umap/static/umap/locale/lt.js,sha256=IxOsIW6CfJECbsWoXwp2aJFq1XCjxOfDVch5icj0xR0,35694
|
|
353
|
+
umap/static/umap/locale/lt.json,sha256=xepE9WTaFGb1K_BD6UeYUkb5AlcAWOzsGn_p1yHZTsY,35629
|
|
354
|
+
umap/static/umap/locale/ms.js,sha256=3YplahSFPF-Ni1Qgv7Yl-7aIyKsloVSrwUDlPKKUbiI,36010
|
|
355
|
+
umap/static/umap/locale/ms.json,sha256=V2h4rPW9e19Y84PU2NQoNexrpXXNWBaCb_Hs7McCk3U,35945
|
|
356
|
+
umap/static/umap/locale/nl.js,sha256=xpczydITu0zkbHXq94u3_-Qt5aqemLqmLrgCcXvhYPE,37416
|
|
357
|
+
umap/static/umap/locale/nl.json,sha256=P4CCFVAeql_0znTgkOEUTYtjapIPUBpHzV_Xk1RULck,37351
|
|
358
|
+
umap/static/umap/locale/no.js,sha256=3V4t3RDODH2wnE8UfPIXxrf7Trjk9ScUbI0ueutM4uE,35120
|
|
359
|
+
umap/static/umap/locale/no.json,sha256=coUIAIHDTA8dDwEfEd7a0dQ1RPNmbquuG2aA2fhKHGI,35055
|
|
360
|
+
umap/static/umap/locale/pl.js,sha256=IknKEft12ENBMDN7ALEdxq80Tv8RQGJM2tDkssAido0,36683
|
|
361
|
+
umap/static/umap/locale/pl.json,sha256=1gD3DbuDf-Nuw6X7LFAKNtxmIzTrTC9-YHKSxIy41yc,36618
|
|
362
|
+
umap/static/umap/locale/pl_PL.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
|
|
363
|
+
umap/static/umap/locale/pt.js,sha256=tUT_ORWdddoBKj2CwVec2iN9s7zm9lc0YLuIJeOlmJk,37763
|
|
364
|
+
umap/static/umap/locale/pt.json,sha256=bDbsOTS5P_iS-TgHFyveGu0UflL4508aa58AFeABInY,37698
|
|
365
|
+
umap/static/umap/locale/pt_BR.js,sha256=5n0BCvozkxQoGucStlSwJmiQO2oIZEQNpzRpY463TlY,36254
|
|
366
|
+
umap/static/umap/locale/pt_BR.json,sha256=aPAB5GPYkSoNhQfddkZ0DWCQyHLJUk-lVpcE799XFcU,36183
|
|
367
|
+
umap/static/umap/locale/pt_PT.js,sha256=tvLJpkMOeF2-5Abaaum1yq6uK_bIdfRfxl7Eq4qjl8I,37462
|
|
368
|
+
umap/static/umap/locale/pt_PT.json,sha256=yn6IZ5Sw-NVyiw82h_EKYHt9HN8OYr9hD1I7ucYsTT4,37391
|
|
369
|
+
umap/static/umap/locale/ro.js,sha256=7cINkntqypIJtneGp_lgdxLzkvBKPTCGWJKdzTz57xY,34962
|
|
370
|
+
umap/static/umap/locale/ro.json,sha256=jaCFFJnUUzb0ZzQGH0daTGaOEQ0rNpqytdxXkS2w8D8,34897
|
|
371
|
+
umap/static/umap/locale/ru.js,sha256=tSQ4BAIlSxS1p8vtQyObewY6-iDOFVa-pyVLxIUgPw8,41597
|
|
372
|
+
umap/static/umap/locale/ru.json,sha256=sYdbU1uOc4429k_sDzrQhF3QxIUiaSPqgXBRmlPMB5A,41532
|
|
370
373
|
umap/static/umap/locale/si.js,sha256=mcgXepIhSBBoRr6LvmvdRJFIwEGzXdjABC6W7lGYQUg,28504
|
|
371
374
|
umap/static/umap/locale/si.json,sha256=DHd8onJhyE8lBV76Zc9XmpHejZZOx0FwF3zaMlPq_Dc,28439
|
|
372
|
-
umap/static/umap/locale/sk_SK.js,sha256=
|
|
373
|
-
umap/static/umap/locale/sk_SK.json,sha256=
|
|
374
|
-
umap/static/umap/locale/sl.js,sha256=
|
|
375
|
-
umap/static/umap/locale/sl.json,sha256=
|
|
376
|
-
umap/static/umap/locale/sr.js,sha256=
|
|
377
|
-
umap/static/umap/locale/sr.json,sha256=
|
|
378
|
-
umap/static/umap/locale/sv.js,sha256=
|
|
379
|
-
umap/static/umap/locale/sv.json,sha256=
|
|
380
|
-
umap/static/umap/locale/th_TH.js,sha256=
|
|
381
|
-
umap/static/umap/locale/th_TH.json,sha256=
|
|
382
|
-
umap/static/umap/locale/tr.js,sha256=
|
|
383
|
-
umap/static/umap/locale/tr.json,sha256=
|
|
384
|
-
umap/static/umap/locale/uk_UA.js,sha256=
|
|
385
|
-
umap/static/umap/locale/uk_UA.json,sha256=
|
|
386
|
-
umap/static/umap/locale/vi.js,sha256=
|
|
387
|
-
umap/static/umap/locale/vi.json,sha256=
|
|
388
|
-
umap/static/umap/locale/vi_VN.json,sha256=
|
|
389
|
-
umap/static/umap/locale/zh.js,sha256=
|
|
390
|
-
umap/static/umap/locale/zh.json,sha256=
|
|
391
|
-
umap/static/umap/locale/zh_CN.json,sha256=
|
|
392
|
-
umap/static/umap/locale/zh_TW.Big5.json,sha256=
|
|
393
|
-
umap/static/umap/locale/zh_TW.js,sha256=
|
|
394
|
-
umap/static/umap/locale/zh_TW.json,sha256=
|
|
375
|
+
umap/static/umap/locale/sk_SK.js,sha256=8owFG7Etjf1w0EGH4Kpg96eR03Ba-ecr8aonn8jjti0,36140
|
|
376
|
+
umap/static/umap/locale/sk_SK.json,sha256=bTH92fe4pOzjlVlZe7OJbzosNFHX541rTVHnAO7Cqzk,36069
|
|
377
|
+
umap/static/umap/locale/sl.js,sha256=8Ai_W21hPwVAOP-55xb8sLsoG9Rx7IORDO8ulNl-ieQ,35997
|
|
378
|
+
umap/static/umap/locale/sl.json,sha256=uDJMBIUmOMwAUJZgJmz9_u15MKw-B3xUGbUM_U9Ius0,35932
|
|
379
|
+
umap/static/umap/locale/sr.js,sha256=tIVhtciEwZh0HxI4icFp4slpGn8NplfG29rph5585pQ,38614
|
|
380
|
+
umap/static/umap/locale/sr.json,sha256=6qorDQrtZLKp9Fu_fy8AHuIj_5QlqeJegmXwVIMlM6E,38549
|
|
381
|
+
umap/static/umap/locale/sv.js,sha256=ibD26N1KKzOGRtPs_bBgARnaO-2vNM6pbjwp0QfyCIg,35893
|
|
382
|
+
umap/static/umap/locale/sv.json,sha256=3mI1iVeFGvtYBJX3n3Dxlle7TV6nFb-JAu7F3-N94eI,35828
|
|
383
|
+
umap/static/umap/locale/th_TH.js,sha256=IJPuJXupbDM9L0xeVULpdZUukpL_PYZuWgEgP1YlYHg,35937
|
|
384
|
+
umap/static/umap/locale/th_TH.json,sha256=jEZHlP6V2eHNH6hpcoBDl__a-8rKr-SEH3CM15YeSPY,35866
|
|
385
|
+
umap/static/umap/locale/tr.js,sha256=actGHachQKZ2DN9XdLvrkjJPmb427XipzBhHeKj3wZU,36409
|
|
386
|
+
umap/static/umap/locale/tr.json,sha256=LFfr3HV5YZH-PWl4YiqLQBrvHWZ2xZLLDI0cLoKRqWc,36344
|
|
387
|
+
umap/static/umap/locale/uk_UA.js,sha256=nqFoCCAZ8A_nUoLwgTqSnKCiYca3IbMRF5MOa8sajHA,41230
|
|
388
|
+
umap/static/umap/locale/uk_UA.json,sha256=TCqxhtZd7C1H-OdsLnwZZu5Q6ofKN5dENGBWcghK5HU,41159
|
|
389
|
+
umap/static/umap/locale/vi.js,sha256=nrKKB5Qv2d0GAEbqKmUaMcIBF9k1zMO0WSgb0D--5k4,35185
|
|
390
|
+
umap/static/umap/locale/vi.json,sha256=2ILPRCyBPeNUXDiIzNHEwYgBaQNvaKKlEsB1B_0uZOA,35120
|
|
391
|
+
umap/static/umap/locale/vi_VN.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
|
|
392
|
+
umap/static/umap/locale/zh.js,sha256=Uzjdp0Oe4QXCewo_YtDuxbC8VTK7RqeBEmXwulGvV48,34711
|
|
393
|
+
umap/static/umap/locale/zh.json,sha256=Z6IaQd0Sy1MjmdJP2BfQ3ka7CcWpY37h3ytUPniYka8,34646
|
|
394
|
+
umap/static/umap/locale/zh_CN.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
|
|
395
|
+
umap/static/umap/locale/zh_TW.Big5.json,sha256=aGzn8kP65zQ4c9Z4Cw95XtJge94LgVeC2w-72mnODaU,34868
|
|
396
|
+
umap/static/umap/locale/zh_TW.js,sha256=Zhn8lX8EuvoSxCR4g8onrm5OnlF4H54GdYy6Y8h6FWk,34422
|
|
397
|
+
umap/static/umap/locale/zh_TW.json,sha256=LaRuQhZEon8GmIIbSUFw91tDMSyaToLpsQQbMIqRzM8,34351
|
|
395
398
|
umap/static/umap/unittests/URLs.js,sha256=wF0hfRX3NqwFAe31QGeKFwavUpNP2T8pHwXBlcpiwNo,2070
|
|
396
399
|
umap/static/umap/unittests/hlc.js,sha256=GvpBaBSgfMs0Zym0_zOs2QldUOcbFNVIKweBhuwM_QI,5294
|
|
397
400
|
umap/static/umap/unittests/sync.js,sha256=SRzK5N7o7iZodye53evBTZZjXG1mMm6dguV_Iyh69XQ,11096
|
|
398
401
|
umap/static/umap/unittests/utils.js,sha256=Cj7wsVf3RIwahKeoLOnya7u4mDw7oxkWHtmO4O1Jx3c,28683
|
|
402
|
+
umap/static/umap/vendors/betterknown/betterknown.mjs,sha256=dFgTX_0-k905dEgF5P9icVWeKa9twumz7ghiWOK9yC8,7915
|
|
399
403
|
umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=wEHf7UslhI09j7tfzC1V9FLgTbZELDbbtGiL2x0y9vY,23051
|
|
400
404
|
umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=FARwXdqk_yf3ttJmSyrJ204B9glI2YaZ2vuhaQPmhVk,15712
|
|
401
405
|
umap/static/umap/vendors/dompurify/purify.es.js,sha256=OwJJkYgszIMGao8OZPP_KoTXY45kWRIh9rBPjBDLs8I,62059
|
|
402
406
|
umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=ShuPMvIg9nnEZh6FHSieF9HXaWY6L5CpcCdxTKnNnJI,1432
|
|
403
|
-
umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=
|
|
407
|
+
umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=6PAIioDT6LcLvQtMhPCZstLqwieMVZ9lo3Q7ipJF5iQ,69724
|
|
404
408
|
umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayxzynqhE-AgnuRlqYI0,3898
|
|
405
409
|
umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
|
|
406
410
|
umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js,sha256=ati65azw8WxPG70b4JblFSHgD-fJ0ytriQEzC5tJWCM,9141
|
|
@@ -433,29 +437,30 @@ umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css,sha256=b1FUshftU
|
|
|
433
437
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map,sha256=BeirY1RltKf8DrqX4U6IEg49yGaSOS4II4CqTJ96Hi8,371
|
|
434
438
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js,sha256=43FlkezpyRF326OVLB4hJ2nwWATdloa0VVWKR727wI4,12712
|
|
435
439
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map,sha256=CmhhyXJFHx6jWQidSqqQlQKmNN7bTiqiiTTTqIn5X7E,15816
|
|
436
|
-
umap/static/umap/vendors/markercluster/MarkerCluster.Default.css,sha256=YSWCMtmNZNwqex4CEw1nQhvFub2lmU7vcCKP-XVwwXA,1287
|
|
437
|
-
umap/static/umap/vendors/markercluster/MarkerCluster.css,sha256=YU3qCpj_P06tdPBJGPax0bm6Q1wltfwjsho5TR4-TYc,872
|
|
438
|
-
umap/static/umap/vendors/markercluster/leaflet.markercluster.js,sha256=Hk4dIpcqOSb0hZjgyvFOP-cEmDXUKKNE_tT542ZbNQg,34136
|
|
439
|
-
umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map,sha256=p2sESsX-2ysbKhEAYIPZFpVglwMWjQNxLkswXIuv2K8,41953
|
|
440
440
|
umap/static/umap/vendors/measurable/Leaflet.Measurable.css,sha256=w33CMvSXTRFTOBfa4Zp2IqjZKbNh3zYiTQWJSEpy0ec,937
|
|
441
441
|
umap/static/umap/vendors/measurable/Leaflet.Measurable.js,sha256=Dk_G5zpxIM5-YaNetc9zHCS-WeaQ47NhgicmbzSX7BM,7256
|
|
442
442
|
umap/static/umap/vendors/minimap/Control.MiniMap.min.css,sha256=p0ab5p0FrFs9Tz4OZgifAvIP-Rd0VFUEbNYjVXVeh9w,1665
|
|
443
443
|
umap/static/umap/vendors/minimap/Control.MiniMap.min.js,sha256=Hb_f1FMaLV-Qn6KSYbc92GxB2bcKp7_efxNeiduEo3g,8565
|
|
444
444
|
umap/static/umap/vendors/minimap/images/toggle.png,sha256=dSjmzalnKhlwWcTiw6qF82tFV60mQZAmS57_VnCzXIg,219
|
|
445
445
|
umap/static/umap/vendors/minimap/images/toggle.svg,sha256=qYiFw3DWtNgmPPxyM2tW4Q0yQCFdWGtCJ9RqT9SRyhs,1765
|
|
446
|
+
umap/static/umap/vendors/openrouteservice/ors-js-client.js,sha256=q9vO2zpFNtKRSvSniwgXtGSRD2n_QTRgFTJS1qhcycY,16959
|
|
447
|
+
umap/static/umap/vendors/openrouteservice/ors-js-client.js.map,sha256=kNo2evMw4eVnl7uOF7oFAzLwpYsilkh2hkqVdhKPyJ0,32159
|
|
446
448
|
umap/static/umap/vendors/osmtogeojson/osmtogeojson.js,sha256=Zju1u65H1dEr_5zxyHuPlz6F-rSx-DRTgQquma3VRZI,34674
|
|
447
449
|
umap/static/umap/vendors/photon/leaflet.photon.js,sha256=muJBUoB-ocakHmR-iEF7k_yXXu8yZP4BjmJ4kB3GtgI,14888
|
|
450
|
+
umap/static/umap/vendors/simple-elevation-chart/elevation.js,sha256=rnx0X8xyGfma8vP-1mlDhN1BFctTc_6pWI04M-Pr9Yc,2100
|
|
451
|
+
umap/static/umap/vendors/simple-elevation-chart/elevation.svg,sha256=HrpIESa9g_bwP7KtpzltUgIMNFTAUJGMSNFYBtIcJXY,285
|
|
448
452
|
umap/static/umap/vendors/simple-statistics/simple-statistics.min.js,sha256=3vLsuPerHhN9Ywzrl8oey2zgVDhD4VqVGWXY0WammyQ,24073
|
|
449
453
|
umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map,sha256=ayC2E6wVocDrMV-bpQkwXxkVhqcsS0AqHRZ98Nc9JaQ,196163
|
|
454
|
+
umap/static/umap/vendors/snapdom/snapdom.min.mjs,sha256=upCBVv_cWSgLJ3Dsl6kT0wSms6uNe4wjaxan7kn307E,28785
|
|
450
455
|
umap/static/umap/vendors/textpath/leaflet.textpath.js,sha256=o90qOXleHwqf2xs0HGCNpUuz8D7CIvsiR6K-y6cNmR0,6262
|
|
451
456
|
umap/static/umap/vendors/togeojson/togeojson.es.js,sha256=zAEszx8fYSwld0yKXE5SHP2Q0y--flMTbNaZ1AYyQPM,40651
|
|
452
457
|
umap/static/umap/vendors/togeojson/togeojson.es.mjs.map,sha256=_V7GXbgNBVGZZatraIqgQOYShzbBa6yYF51QKlQ2uG0,85156
|
|
453
458
|
umap/static/umap/vendors/tokml/tokml.es.js,sha256=BqL0WqFH5UZAh_S_265E6PWZjPMYxeGNFgAgywM4Aeo,23457
|
|
454
459
|
umap/static/umap/vendors/tokml/tokml.es.mjs.map,sha256=vw5JxZFh_2_xM1cHI51r1Bf48JaBKzNcR7ddgaaF8KY,45844
|
|
455
460
|
umap/storage/__init__.py,sha256=Aj421eIsZhsu0B7zd5lTJufVYr0EtUkH0lTqpbBh8AU,85
|
|
456
|
-
umap/storage/fs.py,sha256=
|
|
461
|
+
umap/storage/fs.py,sha256=iyKd6T0S7vn9YRmOw-MJsausULQff_YG2QsrqJtfi94,4011
|
|
457
462
|
umap/storage/s3.py,sha256=KAYu3vAqXbd5UhaoPxG6zcGtBfKZOzzi-6uY6YEuIcY,1962
|
|
458
|
-
umap/storage/staticfiles.py,sha256=
|
|
463
|
+
umap/storage/staticfiles.py,sha256=wKDS8mPOoZDhuDjua4BDUh7Jdqa9IN5PLrwkc0JZQv4,2753
|
|
459
464
|
umap/sync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
460
465
|
umap/sync/app.py,sha256=MFuMIsIvkF_YLa7DbjyDLWyMGhmqMQi-cMR5z0TEwM0,6640
|
|
461
466
|
umap/sync/payloads.py,sha256=Y5vD4vwH2rG9PzNEBZj6c5-qOuDyjWEinZ_viNrZNRE,1513
|
|
@@ -463,7 +468,7 @@ umap/templates/403.html,sha256=7nzCrjNhLxqYkCoLHtBkMsKsticp0g0zj-fGdWxbd_k,454
|
|
|
463
468
|
umap/templates/404.html,sha256=9sNX3VTySf8tiAcj201dBIGcznOfeViJkIv7Wju79vY,267
|
|
464
469
|
umap/templates/40x.html,sha256=vqXMu5psELqmQA7tajpOCpQB2olyJ4yZvBXme5p84XU,206
|
|
465
470
|
umap/templates/500.html,sha256=Z8x47OVfYXquAYAlmRB0EJVTCiCaBppFFiFEmoYsMYY,5202
|
|
466
|
-
umap/templates/base.html,sha256=
|
|
471
|
+
umap/templates/base.html,sha256=i73WzaapJbZE8V5xCPDacWydocyCzbhrp_imewcIScM,1651
|
|
467
472
|
umap/templates/auth/user_detail.html,sha256=I2GoKso_11a2P9SDvaMD368USKZmNNcPbBzGSN23xNE,679
|
|
468
473
|
umap/templates/auth/user_form.html,sha256=Ts8PqddjHggfIf_NiCrbyYAjrGqoPczXxMLiNRVfMa0,1942
|
|
469
474
|
umap/templates/auth/user_stars.html,sha256=h7TNm1W4BrmXG_BiImIrqDJumuEghqP_tYt-Ib2xZNs,707
|
|
@@ -473,13 +478,13 @@ umap/templates/umap/about_summary.html,sha256=9_K2HxctGKjU3GWaI9Rny-kb_iLnS5lScx
|
|
|
473
478
|
umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
|
|
474
479
|
umap/templates/umap/content.html,sha256=BHtQMYOOlfQXWFJtSRV2qTnXsgjF7_IKJ7-c4iZpSo0,2379
|
|
475
480
|
umap/templates/umap/content_footer.html,sha256=170C-9K0a1qkNb4m-x5Vg7bNstvHVEXueDfgPPvXk0I,1130
|
|
476
|
-
umap/templates/umap/css.html,sha256=
|
|
481
|
+
umap/templates/umap/css.html,sha256=CxJ6L_cpbl0Vmfu_UyoiGlAgry93ews-wiP3M2Qntqw,2007
|
|
477
482
|
umap/templates/umap/dashboard_menu.html,sha256=fQ7nLKhIAUF_ki16tR7oWwFWCmMs92iKx6gEjx5XpMo,996
|
|
478
483
|
umap/templates/umap/design_system.html,sha256=3LeAtOjkvDSG2PWNeHrAo0G3AQJ7JGMMQE2-L2Plxmw,23813
|
|
479
484
|
umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
480
485
|
umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
481
486
|
umap/templates/umap/home.html,sha256=JuzDOx3-T_XyWT1Rwdy50PWvjlRjnhAXMM4-yvVUkts,890
|
|
482
|
-
umap/templates/umap/js.html,sha256=
|
|
487
|
+
umap/templates/umap/js.html,sha256=kAIZtORiXnLUFDZEFAodKU12uHdx4aKVJKbK4p6R_9Y,2290
|
|
483
488
|
umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
|
|
484
489
|
umap/templates/umap/login_popup_end.html,sha256=kcENvhycpVvvIzbNasX1rcSI_67A6pttkWCxy0vHC8g,693
|
|
485
490
|
umap/templates/umap/map_detail.html,sha256=vNFIK7BhWWNiiBnMwKDPyvr0LZH9rLLqD95T_wsi5ng,1217
|
|
@@ -506,7 +511,7 @@ umap/templates/umap/components/alerts/alert.html,sha256=ZvisQkz2GfK2jxEqTosYH72N
|
|
|
506
511
|
umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
507
512
|
umap/templatetags/umap_tags.py,sha256=X1WL5Em08-OORFYYJACV_0_7MVoRuWIKPkYaJBw6OxE,1825
|
|
508
513
|
umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
509
|
-
umap/tests/base.py,sha256=
|
|
514
|
+
umap/tests/base.py,sha256=uXQ7xFV41xkjZznVX3hh4Q5ZyqGL4TEa9rRwLcfRxcU,5188
|
|
510
515
|
umap/tests/conftest.py,sha256=KQCZanCTl1ABLIKOuyxS_cpBoXGiwjDc29jsLBiSWxY,1633
|
|
511
516
|
umap/tests/settings.py,sha256=-b-RoDlZJXJ6cCFnO2gF-XL-avfHlpUuLrQk-ytgkdY,783
|
|
512
517
|
umap/tests/test_clean_tilelayer.py,sha256=wGTd_AHOTmQ4QMswAyc-1_lJmQOSyhY3OahLAusEIdA,2515
|
|
@@ -552,42 +557,43 @@ umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-
|
|
|
552
557
|
umap/tests/integration/conftest.py,sha256=pNIxoZ6mNclAwovFt76gzvJaXH940lYXWByf6cmJDx8,2251
|
|
553
558
|
umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
|
|
554
559
|
umap/tests/integration/test_anonymous_owned_map.py,sha256=-j2YUPWNoEit5a_IxYl1q3fGeybvV0NW8ud4QeCa-Hg,11123
|
|
555
|
-
umap/tests/integration/test_basics.py,sha256=
|
|
560
|
+
umap/tests/integration/test_basics.py,sha256=Ma5HFW8O7bTJxNEXnG3U_YSD4oCzYV0vS3uc9miKA9w,4179
|
|
556
561
|
umap/tests/integration/test_browser.py,sha256=qX4K0m5eb4teYSsJf6K2zbaVQhYFDwWZwpRsk-yPpmI,20533
|
|
557
562
|
umap/tests/integration/test_caption.py,sha256=9JHQvTju2W-IoV2UBrEUAH4nV2W7eKN2hJi4YcPfSPE,1843
|
|
558
563
|
umap/tests/integration/test_categorized_layer.py,sha256=XCCK62fBljTEbt0EKoGsHf9hY2bCEIkyeuPxyhEGJDs,5381
|
|
559
564
|
umap/tests/integration/test_choropleth.py,sha256=Lsd7tszSIua_GUeXhosB-JWk35zYN-3WKRVYI0ZrNSM,3777
|
|
560
565
|
umap/tests/integration/test_circles_layer.py,sha256=PjYGmCvAd9qDnldnbiw6nomJs1YgUdX181a9xrWSUYE,2396
|
|
561
566
|
umap/tests/integration/test_cluster.py,sha256=AK4t1k0nur2-gSSFPvkhnq7Ki81PgfvYv1AQcZmr5iQ,1680
|
|
562
|
-
umap/tests/integration/test_conditional_rules.py,sha256=
|
|
567
|
+
umap/tests/integration/test_conditional_rules.py,sha256=D1vs3-fcxmLvlKK17Xf0i6dDkOK1UQWqBBFKodxfm0c,15657
|
|
563
568
|
umap/tests/integration/test_dashboard.py,sha256=LClLBc8lgDM1-NGhkvUSUMLmMuKt3sR1ubt2Eo-Iq7A,1550
|
|
564
|
-
umap/tests/integration/test_datalayer.py,sha256=
|
|
565
|
-
umap/tests/integration/test_draw_polygon.py,sha256=
|
|
566
|
-
umap/tests/integration/test_draw_polyline.py,sha256=
|
|
567
|
-
umap/tests/integration/
|
|
568
|
-
umap/tests/integration/
|
|
569
|
-
umap/tests/integration/
|
|
570
|
-
umap/tests/integration/
|
|
571
|
-
umap/tests/integration/
|
|
569
|
+
umap/tests/integration/test_datalayer.py,sha256=CNxT97ZVB-pPjgXh77i3n3hJKgi4Sm0rYh5SbHB9ZWE,5752
|
|
570
|
+
umap/tests/integration/test_draw_polygon.py,sha256=WNKXcxMqlTmwI0Yro_PbdpTi-M4gZNeIVa-fSXpS6rE,25298
|
|
571
|
+
umap/tests/integration/test_draw_polyline.py,sha256=RgivhjEzjHVE6niPG5uAxJjtmEVD11ftuU4Tb47bXh8,14717
|
|
572
|
+
umap/tests/integration/test_draw_route.py,sha256=hxa_uVqHLLEbbSsEIMsPsq5fMCNoKWY7cRCpMwqudmM,7276
|
|
573
|
+
umap/tests/integration/test_edit_datalayer.py,sha256=Ayp4GbCbGTrNaKXBqKLKBApSm4QdMIT8QMC7zgk0LNw,10015
|
|
574
|
+
umap/tests/integration/test_edit_map.py,sha256=0TXwrjgSKok7nxa-wy7WjVb8-lG0-zfS8s-f9klmqOQ,8784
|
|
575
|
+
umap/tests/integration/test_edit_marker.py,sha256=hnKsitnSYJdMEPPRGrfODsCxJx3KfFGbD__wfVjiFns,5271
|
|
576
|
+
umap/tests/integration/test_edit_polygon.py,sha256=l2CxnTnblRYUiiBV3ERwPkZ-VQTEWzFSFWhAzTF9BgA,5252
|
|
577
|
+
umap/tests/integration/test_export_map.py,sha256=tpn37iZOwi7rKRqxRS41CiREagwLdTos8DeH2vWXpYs,15047
|
|
572
578
|
umap/tests/integration/test_facets_browser.py,sha256=nMspm4fR-e-qaO6Dn-N7ZVJ3AK_-jOQ_4fhJ72LrahE,10676
|
|
573
579
|
umap/tests/integration/test_features_id_generation.py,sha256=mGoLIKV3xTc59XSnNPbAgHeG6RjMYwhmaVEmcqSnv-4,1463
|
|
574
580
|
umap/tests/integration/test_heatmap.py,sha256=N4CH5cRrI8tNsCOqQAqhQR2eKV0bHV2uwF5apml_DCs,1627
|
|
575
581
|
umap/tests/integration/test_iframe.py,sha256=CQ3AdjqLjaI0JKFZ4lnBWedtmvgJ5G6nnGZESoSBqHY,898
|
|
576
|
-
umap/tests/integration/test_import.py,sha256
|
|
582
|
+
umap/tests/integration/test_import.py,sha256=jJ5A4nhK8heE5q0uvsw2Jkh9eGyo7W_e7NrfioqachE,43593
|
|
577
583
|
umap/tests/integration/test_map.py,sha256=ev-rbQteyL8d9bCgNThNqyZCMKiF5umVhCj9eCOxMNg,8761
|
|
578
584
|
umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
|
|
579
|
-
umap/tests/integration/test_map_preview.py,sha256=
|
|
580
|
-
umap/tests/integration/test_optimistic_merge.py,sha256=
|
|
585
|
+
umap/tests/integration/test_map_preview.py,sha256=y9ed3T3BCkwK1eBr8dhlGwQY6lMAstP2eyDeL9SDzro,3540
|
|
586
|
+
umap/tests/integration/test_optimistic_merge.py,sha256=N1FM0TiaMDd4Ldbzvq7kZRMLQeF3tfRNkg5TjesvQFw,13344
|
|
581
587
|
umap/tests/integration/test_owned_map.py,sha256=SSOEpqsaBtCCVhyiyjBFF9dEDvbpSh0Lh0n-WTvFEO4,10796
|
|
582
588
|
umap/tests/integration/test_picto.py,sha256=xJMvtTuUQ-JTKpC7SL86cUOe7OspAYAflA0q8ixLk20,9340
|
|
583
589
|
umap/tests/integration/test_popup.py,sha256=kZy6JAJIs2R6tnPbGEzgz_yX76yMbEAfPqCa6c9P670,1445
|
|
584
590
|
umap/tests/integration/test_querystring.py,sha256=i6fQEAcNiD2SADv0wRQewGVA4CWrmOOpqnZGOnENOtg,2754
|
|
585
591
|
umap/tests/integration/test_remote_data.py,sha256=5HP7nrOpLvg7fW0y3aIGK6pK7l_MBKOjydclfCLWJqw,2273
|
|
586
592
|
umap/tests/integration/test_save.py,sha256=Ia3BsCVLPqImCyjNZ_5qvtMXMq130Y5sD_Ym1xDpAiU,1260
|
|
587
|
-
umap/tests/integration/test_share.py,sha256=
|
|
593
|
+
umap/tests/integration/test_share.py,sha256=OwJ7nkb1mOuymsGFi6sRS2XE4x-M-XyDWO6IjefspYE,1813
|
|
588
594
|
umap/tests/integration/test_slideshow.py,sha256=yhy75YYpfTKpkGK7xGjJDJoqHtN6p2LG-O4krVE1Yks,1907
|
|
589
595
|
umap/tests/integration/test_star.py,sha256=qJUvFij0XK0PcWJnbe4w8nTvTjbJdJ5X-2JjHy6DqEw,973
|
|
590
|
-
umap/tests/integration/test_tableeditor.py,sha256=
|
|
596
|
+
umap/tests/integration/test_tableeditor.py,sha256=2mlmxsleL1Jl_OcPrdf1zn3y0GvhurPw6MG1sLnuuis,10289
|
|
591
597
|
umap/tests/integration/test_team.py,sha256=LVuj5Dhz27cqk6ieEbukGsdy9J2FP5aQmcMex_xevIg,1594
|
|
592
598
|
umap/tests/integration/test_templates.py,sha256=QtGZpYmA1Epwp9olYAbl7Mqncs2YSXutqEVHV3-nlkU,1768
|
|
593
599
|
umap/tests/integration/test_tilelayer.py,sha256=rBI3bm4hCpH87rcFvuc5H8yu1D9FQBZMNbqqJzpdI24,5302
|
|
@@ -595,9 +601,9 @@ umap/tests/integration/test_undo_redo.py,sha256=1wSb43fI3ZpJcegW9AaQZ7a2BcuBSfkM
|
|
|
595
601
|
umap/tests/integration/test_view_marker.py,sha256=NFCwNez__E_WsE1DuW5RuB0HVKDP4CQMXGhJw0LfnFs,6900
|
|
596
602
|
umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
|
|
597
603
|
umap/tests/integration/test_view_polyline.py,sha256=aJoXKmLhJaN0yhPdDCVskZNGx3q3mLDkjVPhZ30cadA,13959
|
|
598
|
-
umap/tests/integration/test_websocket_sync.py,sha256=
|
|
599
|
-
umap_project-3.
|
|
600
|
-
umap_project-3.
|
|
601
|
-
umap_project-3.
|
|
602
|
-
umap_project-3.
|
|
603
|
-
umap_project-3.
|
|
604
|
+
umap/tests/integration/test_websocket_sync.py,sha256=n3Nd9cDdYMfJjMIkGUidqeceAW2loM8nx17Bh57m0fo,28341
|
|
605
|
+
umap_project-3.3.0.dist-info/METADATA,sha256=U01SWnWevcomq8m_hC-3unYOZteARY9k_q5L6OwZx7Y,5745
|
|
606
|
+
umap_project-3.3.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
607
|
+
umap_project-3.3.0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
608
|
+
umap_project-3.3.0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
609
|
+
umap_project-3.3.0.dist-info/RECORD,,
|