umap-project 3.3.6__py3-none-any.whl → 3.4.0b0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +43 -33
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +35 -29
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +35 -29
- umap/locale/en/LC_MESSAGES/django.po +34 -28
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +43 -33
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +58 -54
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +43 -33
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +36 -30
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +43 -33
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +35 -29
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +43 -33
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +43 -33
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +35 -29
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +43 -33
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +43 -33
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
- umap/management/commands/switch_user.py +2 -2
- umap/static/umap/base.css +89 -32
- umap/static/umap/content.css +129 -33
- umap/static/umap/css/bar.css +82 -20
- umap/static/umap/css/browser.css +163 -0
- umap/static/umap/css/contextmenu.css +15 -0
- umap/static/umap/css/dialog.css +36 -16
- umap/static/umap/css/form.css +122 -32
- umap/static/umap/css/icon.css +46 -3
- umap/static/umap/css/panel.css +7 -3
- umap/static/umap/css/popup.css +34 -8
- umap/static/umap/css/tooltip.css +8 -4
- umap/static/umap/img/16-white.svg +26 -8
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/source/16-white.svg +36 -18
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.css +69 -31
- umap/static/umap/js/components/alerts/alert.js +20 -2
- umap/static/umap/js/modules/browser.js +63 -55
- umap/static/umap/js/modules/caption.js +10 -7
- umap/static/umap/js/modules/data/features.js +82 -59
- umap/static/umap/js/modules/data/layer.js +56 -157
- umap/static/umap/js/modules/domutils.js +109 -0
- umap/static/umap/js/modules/filters.js +807 -0
- umap/static/umap/js/modules/form/builder.js +8 -5
- umap/static/umap/js/modules/form/fields.js +110 -220
- umap/static/umap/js/modules/formatter.js +24 -1
- umap/static/umap/js/modules/help.js +3 -2
- umap/static/umap/js/modules/importers/opendata.js +5 -0
- umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
- umap/static/umap/js/modules/managers.js +265 -1
- umap/static/umap/js/modules/permissions.js +35 -31
- umap/static/umap/js/modules/rendering/controls.js +7 -7
- umap/static/umap/js/modules/rendering/icon.js +3 -8
- umap/static/umap/js/modules/rendering/layers/classified.js +17 -10
- umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
- umap/static/umap/js/modules/rendering/template.js +44 -8
- umap/static/umap/js/modules/rendering/ui.js +29 -23
- umap/static/umap/js/modules/rules.js +4 -3
- umap/static/umap/js/modules/schema.js +3 -6
- umap/static/umap/js/modules/share.js +4 -3
- umap/static/umap/js/modules/tableeditor.js +50 -38
- umap/static/umap/js/modules/templates.js +2 -3
- umap/static/umap/js/modules/ui/bar.js +42 -18
- umap/static/umap/js/modules/ui/dialog.js +33 -31
- umap/static/umap/js/modules/ui/panel.js +21 -7
- umap/static/umap/js/modules/ui/tooltip.js +6 -5
- umap/static/umap/js/modules/umap.js +148 -51
- umap/static/umap/js/modules/utils.js +23 -1
- umap/static/umap/js/umap.core.js +1 -110
- umap/static/umap/locale/am_ET.js +40 -14
- umap/static/umap/locale/am_ET.json +40 -14
- umap/static/umap/locale/ar.js +40 -14
- umap/static/umap/locale/ar.json +40 -14
- umap/static/umap/locale/ast.js +40 -14
- umap/static/umap/locale/ast.json +40 -14
- umap/static/umap/locale/bg.js +40 -14
- umap/static/umap/locale/bg.json +40 -14
- umap/static/umap/locale/br.js +47 -21
- umap/static/umap/locale/br.json +47 -21
- umap/static/umap/locale/ca.js +40 -14
- umap/static/umap/locale/ca.json +40 -14
- umap/static/umap/locale/cs_CZ.js +40 -14
- umap/static/umap/locale/cs_CZ.json +40 -14
- umap/static/umap/locale/da.js +40 -14
- umap/static/umap/locale/da.json +40 -14
- umap/static/umap/locale/de.js +39 -13
- umap/static/umap/locale/de.json +39 -13
- umap/static/umap/locale/el.js +40 -14
- umap/static/umap/locale/el.json +40 -14
- umap/static/umap/locale/en.js +39 -13
- umap/static/umap/locale/en.json +39 -13
- umap/static/umap/locale/en_US.json +40 -14
- umap/static/umap/locale/es.js +40 -14
- umap/static/umap/locale/es.json +40 -14
- umap/static/umap/locale/et.js +79 -53
- umap/static/umap/locale/et.json +79 -53
- umap/static/umap/locale/eu.js +72 -46
- umap/static/umap/locale/eu.json +72 -46
- umap/static/umap/locale/fa_IR.js +40 -14
- umap/static/umap/locale/fa_IR.json +40 -14
- umap/static/umap/locale/fi.js +40 -14
- umap/static/umap/locale/fi.json +40 -14
- umap/static/umap/locale/fr.js +39 -13
- umap/static/umap/locale/fr.json +39 -13
- umap/static/umap/locale/gl.js +40 -14
- umap/static/umap/locale/gl.json +40 -14
- umap/static/umap/locale/he.js +40 -14
- umap/static/umap/locale/he.json +40 -14
- umap/static/umap/locale/hr.js +40 -14
- umap/static/umap/locale/hr.json +40 -14
- umap/static/umap/locale/hu.js +40 -14
- umap/static/umap/locale/hu.json +40 -14
- umap/static/umap/locale/id.js +40 -14
- umap/static/umap/locale/id.json +40 -14
- umap/static/umap/locale/is.js +40 -14
- umap/static/umap/locale/is.json +40 -14
- umap/static/umap/locale/it.js +40 -14
- umap/static/umap/locale/it.json +40 -14
- umap/static/umap/locale/ja.js +40 -14
- umap/static/umap/locale/ja.json +40 -14
- umap/static/umap/locale/ko.js +40 -14
- umap/static/umap/locale/ko.json +40 -14
- umap/static/umap/locale/lt.js +40 -14
- umap/static/umap/locale/lt.json +40 -14
- umap/static/umap/locale/ms.js +40 -14
- umap/static/umap/locale/ms.json +40 -14
- umap/static/umap/locale/nl.js +40 -14
- umap/static/umap/locale/nl.json +40 -14
- umap/static/umap/locale/no.js +40 -14
- umap/static/umap/locale/no.json +40 -14
- umap/static/umap/locale/pl.js +40 -14
- umap/static/umap/locale/pl.json +40 -14
- umap/static/umap/locale/pl_PL.json +40 -14
- umap/static/umap/locale/pt.js +40 -14
- umap/static/umap/locale/pt.json +40 -14
- umap/static/umap/locale/pt_BR.js +40 -14
- umap/static/umap/locale/pt_BR.json +40 -14
- umap/static/umap/locale/pt_PT.js +40 -14
- umap/static/umap/locale/pt_PT.json +40 -14
- umap/static/umap/locale/ro.js +40 -14
- umap/static/umap/locale/ro.json +40 -14
- umap/static/umap/locale/ru.js +40 -14
- umap/static/umap/locale/ru.json +40 -14
- umap/static/umap/locale/sk_SK.js +40 -14
- umap/static/umap/locale/sk_SK.json +40 -14
- umap/static/umap/locale/sl.js +40 -14
- umap/static/umap/locale/sl.json +40 -14
- umap/static/umap/locale/sr.js +40 -14
- umap/static/umap/locale/sr.json +40 -14
- umap/static/umap/locale/sv.js +40 -14
- umap/static/umap/locale/sv.json +40 -14
- umap/static/umap/locale/th_TH.js +40 -14
- umap/static/umap/locale/th_TH.json +40 -14
- umap/static/umap/locale/tr.js +40 -14
- umap/static/umap/locale/tr.json +40 -14
- umap/static/umap/locale/uk_UA.js +40 -14
- umap/static/umap/locale/uk_UA.json +40 -14
- umap/static/umap/locale/vi.js +40 -14
- umap/static/umap/locale/vi.json +40 -14
- umap/static/umap/locale/vi_VN.json +40 -14
- umap/static/umap/locale/zh.js +40 -14
- umap/static/umap/locale/zh.json +40 -14
- umap/static/umap/locale/zh_CN.json +40 -14
- umap/static/umap/locale/zh_TW.Big5.json +40 -14
- umap/static/umap/locale/zh_TW.js +39 -13
- umap/static/umap/locale/zh_TW.json +39 -13
- umap/static/umap/map.css +60 -223
- umap/static/umap/unittests/utils.js +18 -0
- umap/static/umap/vars.css +23 -5
- umap/templates/umap/components/alerts/alert.html +32 -29
- umap/templates/umap/css.html +2 -1
- umap/templates/umap/login_popup_end.html +18 -9
- umap/templates/umap/user_map_table.html +7 -2
- umap/tests/integration/conftest.py +2 -6
- umap/tests/integration/test_anonymous_owned_map.py +89 -36
- umap/tests/integration/test_basics.py +25 -1
- umap/tests/integration/test_browser.py +37 -0
- umap/tests/integration/test_draw_polygon.py +2 -0
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_export_map.py +19 -0
- umap/tests/integration/test_fields.py +522 -0
- umap/tests/integration/test_filters.py +617 -0
- umap/tests/integration/test_import.py +15 -42
- umap/tests/integration/test_remote_data.py +60 -4
- umap/tests/integration/test_share.py +4 -4
- umap/tests/integration/test_tableeditor.py +31 -7
- umap/tests/integration/test_websocket_sync.py +3 -1
- umap/tests/test_dashboard.py +10 -0
- umap/urls.py +1 -0
- umap/views.py +5 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/METADATA +12 -12
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/RECORD +214 -211
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/WHEEL +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=Ljc5HYqr_2XjFCS7LvSKLk0QIG5RJru6J6Kdn2PxkCQ,20
|
|
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
|
|
@@ -10,9 +10,9 @@ umap/forms.py,sha256=i_SQ6OykKc6XFZJ5tg3rrA6r5SryOvj1WiKbIcWtD4A,3771
|
|
|
10
10
|
umap/managers.py,sha256=A5Ih92f9E3egPVCToQHYJ4wQMFSqTS6dtqzx56Fs2JU,1051
|
|
11
11
|
umap/middleware.py,sha256=GsIFl0St_Rk5zjpE8dpGBlD0JL2AyMrNHu8SHylqwEg,1564
|
|
12
12
|
umap/models.py,sha256=xANPE5gw3jjLartllGrc3GtEZ4en1NsG1WLS05blmRc,19914
|
|
13
|
-
umap/urls.py,sha256=
|
|
13
|
+
umap/urls.py,sha256=evKfLGEIoc8TPfCalLeHxeQ-zD0HvUJo0Rln8n3kBps,7896
|
|
14
14
|
umap/utils.py,sha256=rSzK0GjsAZtPCeJ9Wkk4J3xhIrduOU3wQjxzpPWCA5s,7720
|
|
15
|
-
umap/views.py,sha256=
|
|
15
|
+
umap/views.py,sha256=vqef2yvth3Zea_074vyIBlf5hHoFrHlfbGKxdTBLAhI,50821
|
|
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
|
|
@@ -27,42 +27,42 @@ umap/locale/br/LC_MESSAGES/django.mo,sha256=QxrhLe2zCvq0T-lIgS4Nf-J-n1qYvFhMel-L
|
|
|
27
27
|
umap/locale/br/LC_MESSAGES/django.po,sha256=aNkz0lFGm_y3KEnkMmN5iMHHbPAYaUrE5EZSF0SSTeQ,22596
|
|
28
28
|
umap/locale/ca/LC_MESSAGES/django.mo,sha256=ot6jkZZt33z5vi1vjioiYkIhj06M8yUsoh72y8F1KAw,8465
|
|
29
29
|
umap/locale/ca/LC_MESSAGES/django.po,sha256=1N47JBRQkUM--J0mplfECL-VyOcV3ZwU69eusIoK_BE,20736
|
|
30
|
-
umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=
|
|
31
|
-
umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=
|
|
32
|
-
umap/locale/da/LC_MESSAGES/django.mo,sha256=
|
|
33
|
-
umap/locale/da/LC_MESSAGES/django.po,sha256=
|
|
34
|
-
umap/locale/de/LC_MESSAGES/django.mo,sha256=
|
|
35
|
-
umap/locale/de/LC_MESSAGES/django.po,sha256=
|
|
36
|
-
umap/locale/el/LC_MESSAGES/django.mo,sha256=
|
|
37
|
-
umap/locale/el/LC_MESSAGES/django.po,sha256=
|
|
30
|
+
umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=UNPbfSq0pXOKeTk4CGwLgcHW0jZpCjQvmTHbdar7ubI,13107
|
|
31
|
+
umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=3YPEHWudGNQ4n-TOe3vlI1xMc1vaYg77saspMi9BEz0,23158
|
|
32
|
+
umap/locale/da/LC_MESSAGES/django.mo,sha256=aLUimZbrZQNS3ARrTYhhtFPR4fxlw9D7oFl0gqjv6vc,15050
|
|
33
|
+
umap/locale/da/LC_MESSAGES/django.po,sha256=RURq1B73cA9otx6gsYlJuPHDUoCeY_vaJW4cuPYnxFg,23263
|
|
34
|
+
umap/locale/de/LC_MESSAGES/django.mo,sha256=H94cTq-eTmAH2F8_ffCIU8AWf_u5yg_ZwIBqSr0WVZ4,15731
|
|
35
|
+
umap/locale/de/LC_MESSAGES/django.po,sha256=WIAMMZahTjxhHx7n_Wbu5Ffh8FbiOicUSSV-fTq7lQc,24113
|
|
36
|
+
umap/locale/el/LC_MESSAGES/django.mo,sha256=A6Zkv5CJ0XNowPpRLlq6l9Wp1YwntCltDx6Tcso-JyM,21095
|
|
37
|
+
umap/locale/el/LC_MESSAGES/django.po,sha256=dfuGMPgd0kJoP1jsD4lC2W6uekRrE6SHUwSPNBqDlpE,29378
|
|
38
38
|
umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
|
|
39
|
-
umap/locale/en/LC_MESSAGES/django.po,sha256=
|
|
40
|
-
umap/locale/es/LC_MESSAGES/django.mo,sha256=
|
|
41
|
-
umap/locale/es/LC_MESSAGES/django.po,sha256
|
|
42
|
-
umap/locale/et/LC_MESSAGES/django.mo,sha256=
|
|
43
|
-
umap/locale/et/LC_MESSAGES/django.po,sha256=
|
|
44
|
-
umap/locale/eu/LC_MESSAGES/django.mo,sha256=
|
|
45
|
-
umap/locale/eu/LC_MESSAGES/django.po,sha256=
|
|
46
|
-
umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=
|
|
47
|
-
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=
|
|
39
|
+
umap/locale/en/LC_MESSAGES/django.po,sha256=PToxnUv77TImL6IU0L_brGIj223qxL8_Bb4jc_RKBx4,17757
|
|
40
|
+
umap/locale/es/LC_MESSAGES/django.mo,sha256=xQtrnx5Fd1R6vQbgsWayba1spgp7d9TSxZo80UKpjFI,15594
|
|
41
|
+
umap/locale/es/LC_MESSAGES/django.po,sha256=-YNwM8T8GMgXt6hrqm4zIlnX-rCKkMLmg2geq2CVat8,24122
|
|
42
|
+
umap/locale/et/LC_MESSAGES/django.mo,sha256=QtkHvxK_vk6NsiWn319ujwQGVsLLm9JXVKv14ecwRfM,10439
|
|
43
|
+
umap/locale/et/LC_MESSAGES/django.po,sha256=mCPTNEs53RUw5kOiGhwDNUL65l0c6zEAHJldxASoG8E,20794
|
|
44
|
+
umap/locale/eu/LC_MESSAGES/django.mo,sha256=1FJ63mmOwLpZgKGhiz0NbONsq-51esJpznN6_I0XWHg,15517
|
|
45
|
+
umap/locale/eu/LC_MESSAGES/django.po,sha256=fzyIOaSXuq8Sn4Ctr3XC8e3siEpBG1EuF_enYUk--1M,23662
|
|
46
|
+
umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=IP9thpIyVdNiujuQk0o1w1775KpfZtCdnwAqwrQtH7Q,13229
|
|
47
|
+
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=eO_q1yuRV0nMeLVIa7LKP54mtNf49THRFwK5rzHxkuQ,24403
|
|
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=
|
|
52
|
-
umap/locale/gl/LC_MESSAGES/django.mo,sha256=
|
|
53
|
-
umap/locale/gl/LC_MESSAGES/django.po,sha256=
|
|
50
|
+
umap/locale/fr/LC_MESSAGES/django.mo,sha256=8X-wcWvaTuGp1ri5OdN3GJ_JpYZrGnUZqbNJy63vVTA,16505
|
|
51
|
+
umap/locale/fr/LC_MESSAGES/django.po,sha256=OK23yY3gu5EgLBJtk_F1uZTNww9d6_yWPmCnQjFlSbc,24701
|
|
52
|
+
umap/locale/gl/LC_MESSAGES/django.mo,sha256=wyv5gRoIwzjpjtkWRLbSVU2GZ1RwY289jnDUxDdMktw,13464
|
|
53
|
+
umap/locale/gl/LC_MESSAGES/django.po,sha256=ixsETHl2camE839lzl-mb8J9FNodMdJyMuF-AjS6GJk,23059
|
|
54
54
|
umap/locale/he/LC_MESSAGES/django.mo,sha256=A6pkjaL4HQ7lyfvXcGIxle61RXdo7Byq3mfK2FIrSnc,6640
|
|
55
55
|
umap/locale/he/LC_MESSAGES/django.po,sha256=LpR1smtpQWi6w_YNiZjEx0hrHc7uVYQnQEPK_1vcY5g,16975
|
|
56
56
|
umap/locale/hr/LC_MESSAGES/django.mo,sha256=bBcaNSs-oqm_cjm6Bbqaph_ZNHF2_I_FP0xccwU9txI,1558
|
|
57
57
|
umap/locale/hr/LC_MESSAGES/django.po,sha256=Aj3m28Ugyjq-Ih32P7dzw0M4czitDqoYpCvyNsNnEnE,9742
|
|
58
|
-
umap/locale/hu/LC_MESSAGES/django.mo,sha256=
|
|
59
|
-
umap/locale/hu/LC_MESSAGES/django.po,sha256=
|
|
58
|
+
umap/locale/hu/LC_MESSAGES/django.mo,sha256=3tjoIGwTfhrS3Zc1Dj2_OfLAE0FGXujl35EjkJ8BvAE,16349
|
|
59
|
+
umap/locale/hu/LC_MESSAGES/django.po,sha256=u7uw_lYD_98SeYKQe971clNhPD5h-J9DAJ3V-ALBvz4,24438
|
|
60
60
|
umap/locale/id/LC_MESSAGES/django.mo,sha256=8craaGVnVbONfojnkDUUtoxMyeI2tt6GdIWeWZGcaJ8,425
|
|
61
61
|
umap/locale/id/LC_MESSAGES/django.po,sha256=wmbgIN1R7vRDgAdzBu7ZHnTpg5fpB3hmJyjAzRNoN-M,8000
|
|
62
|
-
umap/locale/is/LC_MESSAGES/django.mo,sha256=
|
|
63
|
-
umap/locale/is/LC_MESSAGES/django.po,sha256=
|
|
64
|
-
umap/locale/it/LC_MESSAGES/django.mo,sha256=
|
|
65
|
-
umap/locale/it/LC_MESSAGES/django.po,sha256=
|
|
62
|
+
umap/locale/is/LC_MESSAGES/django.mo,sha256=Bxt2xTFRNTe8j0CrKhYX8yY-2s4BJXeuKlyMtXR7fyk,13970
|
|
63
|
+
umap/locale/is/LC_MESSAGES/django.po,sha256=dIwnVr7FHTlHgMhkT8SXcFdcEiWAlh2GgSaSrhQN6q4,23418
|
|
64
|
+
umap/locale/it/LC_MESSAGES/django.mo,sha256=0b0QP-YwYSkuhLn42qbN1jCN1lccyLAgR3a4ue6FWyk,14509
|
|
65
|
+
umap/locale/it/LC_MESSAGES/django.po,sha256=9cAuUn7Hm6EgouYXdqZvXWxqMqc-db-dJCku5Mk03fE,23853
|
|
66
66
|
umap/locale/ja/LC_MESSAGES/django.mo,sha256=zsTOx7DEn9r67Az293pOmtM3Hd8nFK53-TNZH1W6498,6369
|
|
67
67
|
umap/locale/ja/LC_MESSAGES/django.po,sha256=IF4sZYIDt8Nxdgt6Lbz0kDAty87N3ULdTDDYVhz1O6s,16735
|
|
68
68
|
umap/locale/ko/LC_MESSAGES/django.mo,sha256=xqzC6LAMv6pK2xiIlGoHyb18OQBACMBeevJfFFjK8iA,6365
|
|
@@ -71,14 +71,14 @@ umap/locale/lt/LC_MESSAGES/django.mo,sha256=A4RbTyKvur2NUY0aKXCDmSIQV0G0GeOhQ1vw
|
|
|
71
71
|
umap/locale/lt/LC_MESSAGES/django.po,sha256=GK_nTnzSiMY4g2pf5uzh5Nzl57OTB4O9Y29ikZVp274,16324
|
|
72
72
|
umap/locale/ms/LC_MESSAGES/django.mo,sha256=4yHaFWXR-O6VjUtUnmcoyfV8OdJlUgi3YxN3mR97A30,9619
|
|
73
73
|
umap/locale/ms/LC_MESSAGES/django.po,sha256=3tEND2vbt3ZiW3jjX-ao6CkY2UOiQXuYOGfp3mgdLnE,21205
|
|
74
|
-
umap/locale/nl/LC_MESSAGES/django.mo,sha256=
|
|
75
|
-
umap/locale/nl/LC_MESSAGES/django.po,sha256=
|
|
74
|
+
umap/locale/nl/LC_MESSAGES/django.mo,sha256=86G2RNADnRZLosCRmzJk7OuQ-vw3gN1H9Fby0vWn4Y4,15288
|
|
75
|
+
umap/locale/nl/LC_MESSAGES/django.po,sha256=b9tNe5nZWCzHkL_o7X_XlKrLJzz82AnMmxv5a3IPQeY,23511
|
|
76
76
|
umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk_nsxXks,423
|
|
77
77
|
umap/locale/no/LC_MESSAGES/django.po,sha256=HXr3Y_gxOPjdU1pSV_tyX_l7pbDMVrFBdf0gm3gciwI,7998
|
|
78
|
-
umap/locale/pl/LC_MESSAGES/django.mo,sha256=
|
|
79
|
-
umap/locale/pl/LC_MESSAGES/django.po,sha256=
|
|
80
|
-
umap/locale/pt/LC_MESSAGES/django.mo,sha256=
|
|
81
|
-
umap/locale/pt/LC_MESSAGES/django.po,sha256=
|
|
78
|
+
umap/locale/pl/LC_MESSAGES/django.mo,sha256=WqzeXPLoym-2cu3s2-Hadqo7fMwK0qJlT_cAtxNuZHg,9820
|
|
79
|
+
umap/locale/pl/LC_MESSAGES/django.po,sha256=LHA4IddE7SQj7-RdNf98qDyoxgarGjOftXSeh19itnI,21847
|
|
80
|
+
umap/locale/pt/LC_MESSAGES/django.mo,sha256=dWMirDnBhlrvHWIxmIlJrJk8zwXfin71DdLltp27BAY,13185
|
|
81
|
+
umap/locale/pt/LC_MESSAGES/django.po,sha256=u5XDBHiFVfD_DI3B6fZp978LXDK3AdBcuhyIggNqHmY,22971
|
|
82
82
|
umap/locale/pt_BR/LC_MESSAGES/django.mo,sha256=HSIam_B-jha9C6heFx6q_axE1IHAk1sPXeyFCjpxWWk,6077
|
|
83
83
|
umap/locale/pt_BR/LC_MESSAGES/django.po,sha256=XcGimIbdy4T6_ONPpCNqjCT0unt4RdndXg8GMTykr_E,16527
|
|
84
84
|
umap/locale/pt_PT/LC_MESSAGES/django.mo,sha256=6rNHtp4zBsXX4uIG4tQCnZxeO5GGucvrsl0JUXbRVrM,6105
|
|
@@ -97,8 +97,8 @@ umap/locale/sr/LC_MESSAGES/django.mo,sha256=FseFOdktRat654eT-W1iUn6k6JdRi0YuABzU
|
|
|
97
97
|
umap/locale/sr/LC_MESSAGES/django.po,sha256=VDiXdSNvZqU1uqo4OQoVt8tVq0WJgSg1_u0VloxTgQE,17654
|
|
98
98
|
umap/locale/sv/LC_MESSAGES/django.mo,sha256=I--xTEefiPNFuVdl1UD3lLMIDvWwdaI8YA5548BQfnA,7519
|
|
99
99
|
umap/locale/sv/LC_MESSAGES/django.po,sha256=T4EKHDqRLUpQJx9NJl_bDGPFvybljJkD-OzptnG7qms,16846
|
|
100
|
-
umap/locale/th_TH/LC_MESSAGES/django.mo,sha256=
|
|
101
|
-
umap/locale/th_TH/LC_MESSAGES/django.po,sha256=
|
|
100
|
+
umap/locale/th_TH/LC_MESSAGES/django.mo,sha256=BOawhybWL0YYbzG-xCTu2CSShc3xoKpltv6buVebiWU,11607
|
|
101
|
+
umap/locale/th_TH/LC_MESSAGES/django.po,sha256=wJFRuO_tRsHiQplIH25k7HzmD_iUrhM7WIGFVBGhsPA,24453
|
|
102
102
|
umap/locale/tr/LC_MESSAGES/django.mo,sha256=-xsY_o18gBND3xAbXBzYfo9roJEv8pb5g8AHKoF0S9M,6120
|
|
103
103
|
umap/locale/tr/LC_MESSAGES/django.po,sha256=EB0xFgOxo0ipk-WeDGmMeHPGRfFCqPcdZFcWgHrWNbg,16533
|
|
104
104
|
umap/locale/uk_UA/LC_MESSAGES/django.mo,sha256=vHCorO_e12hrisGYYGWN8khNL4v3dOBb9-NT7G44j4o,7860
|
|
@@ -107,8 +107,8 @@ umap/locale/vi/LC_MESSAGES/django.mo,sha256=zjsS0va90-Ezx1_JO59gKXYToqBjezp1ew6V
|
|
|
107
107
|
umap/locale/vi/LC_MESSAGES/django.po,sha256=SFJZUmxSxWSLc1ZCgZe4x1vs2uUdeFznXmOJTOGCZoM,15672
|
|
108
108
|
umap/locale/zh/LC_MESSAGES/django.mo,sha256=2Nr3G4oqiJd4fsxGwbN2EAPHGP20_Nof4Yv-AYU0rlw,3483
|
|
109
109
|
umap/locale/zh/LC_MESSAGES/django.po,sha256=2NfxhbFLnTpwLLl8iKiFrj7M0F0X8nVe6MsZPqVJH1o,14737
|
|
110
|
-
umap/locale/zh_TW/LC_MESSAGES/django.mo,sha256
|
|
111
|
-
umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=
|
|
110
|
+
umap/locale/zh_TW/LC_MESSAGES/django.mo,sha256=-ztWegBLMMaA03QGz3K1BHWKXH-J_sJ8GL6GSUROlFw,14625
|
|
111
|
+
umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=WNerChQastTRV2GV05agUUN5a0ewm7IeV1QXdnSPuYk,22955
|
|
112
112
|
umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
113
113
|
umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
114
|
umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
|
|
@@ -119,7 +119,7 @@ umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUe
|
|
|
119
119
|
umap/management/commands/import_pictograms.py,sha256=RuQDCoiKamba4l3fZUGAXRyd-3zwWWT5c5AhgDvs7AQ,2369
|
|
120
120
|
umap/management/commands/migrate_to_S3.py,sha256=SJuadjgZPCGqrdQ0SshxvVh0CBzJan6yP525PpIsgMw,2158
|
|
121
121
|
umap/management/commands/purge_old_versions.py,sha256=qT2kET_TVhvtUOj4yD4kC-cwVjN9aCZRlyS1THTPYm0,2599
|
|
122
|
-
umap/management/commands/switch_user.py,sha256=
|
|
122
|
+
umap/management/commands/switch_user.py,sha256=gmayZB6DiaiJuLEqoZG8FQR354wWmJUcdhpV6mHP6lQ,1800
|
|
123
123
|
umap/migrations/0001_initial.py,sha256=dMcXtTKPiA0IqXCrDVctH91Fe0hhc04NxmvcLAULyzE,8787
|
|
124
124
|
umap/migrations/0002_tilelayer_tms.py,sha256=E99JAu1K0NzwsCEJs1z5uGlBkBJmoVb9a3WBKjpLYlo,372
|
|
125
125
|
umap/migrations/0003_add_tilelayer.py,sha256=53r95Y13CvV0pXseYEnnqtPI4-Q0qcVldYMS-jFpPoE,833
|
|
@@ -154,24 +154,25 @@ umap/settings/base.py,sha256=d_ee8wuqvK2Dro8L4nHtInUEhQ_Yl4DlUzq-G58_5lM,12528
|
|
|
154
154
|
umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
|
|
155
155
|
umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
|
|
156
156
|
umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
|
-
umap/static/umap/base.css,sha256=
|
|
158
|
-
umap/static/umap/content.css,sha256=
|
|
157
|
+
umap/static/umap/base.css,sha256=G6TyKKFTu-A7QOrq5ZAt8KEIJ5CFbe4K-JEURDDRkmw,5120
|
|
158
|
+
umap/static/umap/content.css,sha256=gOvOzuvw-AzhVnalcoU0Kyj25uYp6g2nLo0gOWZ_1i4,12287
|
|
159
159
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
160
|
-
umap/static/umap/map.css,sha256=
|
|
160
|
+
umap/static/umap/map.css,sha256=zP2RV7OGcLvvplCCrflrBUqDXV0L1NqVGRgLkSk6igI,22109
|
|
161
161
|
umap/static/umap/nav.css,sha256=MsckfSfuMgADt71FIVpW351ZC2ATlr50iGW-47hziwk,1956
|
|
162
162
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
163
|
-
umap/static/umap/vars.css,sha256=
|
|
164
|
-
umap/static/umap/css/bar.css,sha256=
|
|
165
|
-
umap/static/umap/css/
|
|
166
|
-
umap/static/umap/css/
|
|
167
|
-
umap/static/umap/css/
|
|
168
|
-
umap/static/umap/css/
|
|
163
|
+
umap/static/umap/vars.css,sha256=bZVi0ACdtGDupargPUT2yQLFYEzaEo6czW9yo5znm3Y,2636
|
|
164
|
+
umap/static/umap/css/bar.css,sha256=B-nd_KN6da95i3kEjIyKSOC-HGOrKnJal4IirqHG0Mo,6675
|
|
165
|
+
umap/static/umap/css/browser.css,sha256=WemvOscBou8XODvwtnArJUjmaqDxoyRmlMB0KKGN9bk,3258
|
|
166
|
+
umap/static/umap/css/contextmenu.css,sha256=dEKoTFTtZkIEvKspKlPfN9-9n9h9Pv4QYk4GzQXMFs8,2302
|
|
167
|
+
umap/static/umap/css/dialog.css,sha256=I5Dg8LRzZYDd-sG36C4EN2Mnk3gcOsVkKRKqEJOgSAc,1271
|
|
168
|
+
umap/static/umap/css/form.css,sha256=xZhOdPaxEAA8s9HhU0QzyTgK1IuL2YhdiJ5yELojCCw,16985
|
|
169
|
+
umap/static/umap/css/icon.css,sha256=7wOJUYbluABWKLvxia-sPg8iqW4MBL4BpKxFOey0Ydk,7464
|
|
169
170
|
umap/static/umap/css/importers.css,sha256=Q_pXPC02AwaPi5hu-raDSoBBPKH2Vj-EOoLIG-IIn-A,1774
|
|
170
|
-
umap/static/umap/css/panel.css,sha256=
|
|
171
|
-
umap/static/umap/css/popup.css,sha256=
|
|
171
|
+
umap/static/umap/css/panel.css,sha256=9nL8XQeHAc02_5D4oL7YRSJu_p15BjW6TW68LOCf-QA,4680
|
|
172
|
+
umap/static/umap/css/popup.css,sha256=r3irkmNwrv5eQ5HZuFMystbvzTiYpt6U6Qub_FGCj9w,2385
|
|
172
173
|
umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
|
|
173
174
|
umap/static/umap/css/tableeditor.css,sha256=nYFd5qSMkUasFfAxkWwewKJ5MwIcZb2Zq_DViuDRZc4,1574
|
|
174
|
-
umap/static/umap/css/tooltip.css,sha256=
|
|
175
|
+
umap/static/umap/css/tooltip.css,sha256=vCuxyI82CEdAnwADpIOG0dEKmy0zSVNRr5mr5DU_ubU,1921
|
|
175
176
|
umap/static/umap/css/window.css,sha256=50MFWr9oU200f8-crTPJi3ZPG9h1eG5i6oOBP8yttBQ,808
|
|
176
177
|
umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
|
|
177
178
|
umap/static/umap/favicons/favicon.ico,sha256=0jjg1MnZ2AdWFLKjEwZSf09TVXlqz6oNdtX4rRppHdA,15086
|
|
@@ -184,8 +185,8 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
|
|
|
184
185
|
umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
|
|
185
186
|
umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
|
|
186
187
|
umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
|
|
187
|
-
umap/static/umap/img/16-white.svg,sha256=
|
|
188
|
-
umap/static/umap/img/16.svg,sha256=
|
|
188
|
+
umap/static/umap/img/16-white.svg,sha256=WFAqQyvacbM68E2lIBSY5zOdTDXGQhwVV3GWj4wm01I,43299
|
|
189
|
+
umap/static/umap/img/16.svg,sha256=kK0jBjNpP9jP-oBmbaIluGwiQGP0JTwJ8VW5QAMTvqE,30587
|
|
189
190
|
umap/static/umap/img/24-white.svg,sha256=QVuiHS78y4m7ZejFb5-jWwAYAVNLlWxXKiGbyJf5FHk,21455
|
|
190
191
|
umap/static/umap/img/24.svg,sha256=nLcI0MgKj48m8CKwfNBBdPWr4SXkQHMSwF4v25PTHQ4,29496
|
|
191
192
|
umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
|
|
@@ -226,179 +227,180 @@ umap/static/umap/img/providers/github.png,sha256=sA3oznlXAC2lqynqS2PMuNwZPQ3REfK
|
|
|
226
227
|
umap/static/umap/img/providers/keycloak.png,sha256=76ZaWlmmVdpr7t33LDqYRPRsuKsFmrOjLQk17LsezYo,1520
|
|
227
228
|
umap/static/umap/img/providers/openstreetmap-oauth2.png,sha256=fzqr15HexNfyi2l3Pxos9ptnmXfTH9Gm2v-1o7F1W7A,1680
|
|
228
229
|
umap/static/umap/img/providers/twitter-oauth2.png,sha256=9sCQYpLXTK40nvQmwEWd325XgBPq-Wt2JGu59GJDRfs,1589
|
|
229
|
-
umap/static/umap/img/source/16-white.svg,sha256=
|
|
230
|
-
umap/static/umap/img/source/16.svg,sha256=
|
|
230
|
+
umap/static/umap/img/source/16-white.svg,sha256=KtitRSWVEQ_0N5oi-dIPxmLNzBd57RGiMLrQtHlZeSw,73826
|
|
231
|
+
umap/static/umap/img/source/16.svg,sha256=sCq4Ir8bzS9108fmB2imqheXpnAkeifs25ZFdm8zck0,54064
|
|
231
232
|
umap/static/umap/img/source/24-white.svg,sha256=WbH5ljoAw3b7yq6HoZiFhab1-XSSK9Y5dVwcsTeGU8U,34009
|
|
232
233
|
umap/static/umap/img/source/24.svg,sha256=zWBP4zWRi_p6Gc98QS1ivhANGmHG5jnpiI36ptecUT8,45124
|
|
233
234
|
umap/static/umap/js/umap.controls.js,sha256=zaMX2VKSlK63iPRovPPajcM5Aduqnz8zbgzpPvn_Fto,13845
|
|
234
|
-
umap/static/umap/js/umap.core.js,sha256=
|
|
235
|
+
umap/static/umap/js/umap.core.js,sha256=MkXV9kv-UOMjQFVer-T9RMN3AzpyxHWpeqkUKhjU35Y,2657
|
|
235
236
|
umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
|
|
236
237
|
umap/static/umap/js/components/fragment.js,sha256=-rOrcyPpZ5ihD_hh0C1qrYpaim11JYh5fg0x_od_m5U,379
|
|
237
238
|
umap/static/umap/js/components/modal.js,sha256=ugaibc2n5Pftocs1crN6zaPRJztSQm1atyf7jhSAnC4,742
|
|
238
|
-
umap/static/umap/js/components/alerts/alert.css,sha256=
|
|
239
|
-
umap/static/umap/js/components/alerts/alert.js,sha256=
|
|
239
|
+
umap/static/umap/js/components/alerts/alert.css,sha256=amMkhzABVFfvF4Sdi752wQNLgG5gP5mfUpe8bnRurFY,5282
|
|
240
|
+
umap/static/umap/js/components/alerts/alert.js,sha256=s5oyrtkTX6185CHXlAiekclIf9oqaLLNK_HGLwFfFdQ,5047
|
|
240
241
|
umap/static/umap/js/modules/autocomplete.js,sha256=CLw4KP_Mmf5s55OWimK3Xw7GkwDLtuCqeEI2WqPSsOU,8729
|
|
241
|
-
umap/static/umap/js/modules/browser.js,sha256=
|
|
242
|
-
umap/static/umap/js/modules/caption.js,sha256=
|
|
242
|
+
umap/static/umap/js/modules/browser.js,sha256=Jufw72pBjGDaDwHnWHxaaBvvM0oJxv-424DGZfwaF_M,9923
|
|
243
|
+
umap/static/umap/js/modules/caption.js,sha256=31p5ai_gKq7pp0cWiAwONbxopif7iq_I11PDRW0zDYI,5843
|
|
243
244
|
umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
|
|
245
|
+
umap/static/umap/js/modules/domutils.js,sha256=1vzBiJtkvZs76irtQmIpynUR0OwKLFwuuvoWP94N3Ps,3534
|
|
244
246
|
umap/static/umap/js/modules/drop.js,sha256=aHuz_sDgWAqDEH49OWNhnnyFvGLDMCoeeo5xaBLZwAg,1431
|
|
245
|
-
umap/static/umap/js/modules/
|
|
246
|
-
umap/static/umap/js/modules/formatter.js,sha256=
|
|
247
|
+
umap/static/umap/js/modules/filters.js,sha256=ulf2cD3np_521T7lBYh1m9LyDWnXf3KCeErlixikoq0,22106
|
|
248
|
+
umap/static/umap/js/modules/formatter.js,sha256=6E3dZCe3H2jqgdANUEBwdpiGpR1U9ZcVNm7YyaDy1Tc,6696
|
|
247
249
|
umap/static/umap/js/modules/global.js,sha256=pmO5iFezaPhxQemgscta2S1J4vBRHIpjALjym2Hs9Z4,941
|
|
248
|
-
umap/static/umap/js/modules/help.js,sha256=
|
|
250
|
+
umap/static/umap/js/modules/help.js,sha256=BzK28uTVnYPq8UUdydThYXAR4m5NW82YEdpj4TfAATk,10164
|
|
249
251
|
umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
|
|
250
252
|
umap/static/umap/js/modules/importer.js,sha256=UEEUodCoWmrhq1ActNusz4jU6n6R3DRuhPVd3_oSF00,11458
|
|
251
253
|
umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
|
|
252
|
-
umap/static/umap/js/modules/managers.js,sha256=
|
|
254
|
+
umap/static/umap/js/modules/managers.js,sha256=d44NX7SXabpGnnlRH1Oh968VNMlhbvnqASt7VcbiUdc,10459
|
|
253
255
|
umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
|
|
254
|
-
umap/static/umap/js/modules/permissions.js,sha256=
|
|
256
|
+
umap/static/umap/js/modules/permissions.js,sha256=kZ2RHM1R3maA3Yqwe8LSkdI7Ex0jQOb3o3MYMe_XxI0,9081
|
|
255
257
|
umap/static/umap/js/modules/printer.js,sha256=fvb44tLBiYR7TyBdXJdroYsjQOrnbzw7-6F0dBCUEGg,3607
|
|
256
258
|
umap/static/umap/js/modules/request.js,sha256=9GRJoOPbdkHL9OFP6Joaf5wzsJckPyiG2O7AxQciTik,3885
|
|
257
|
-
umap/static/umap/js/modules/rules.js,sha256=
|
|
258
|
-
umap/static/umap/js/modules/schema.js,sha256=
|
|
259
|
-
umap/static/umap/js/modules/share.js,sha256=
|
|
259
|
+
umap/static/umap/js/modules/rules.js,sha256=Ff20yyrQ0OfcS_UtfPbaSs9lV3f5x4ZXUFEvSBw88fk,10034
|
|
260
|
+
umap/static/umap/js/modules/schema.js,sha256=gQRpO_VHU7EBLVrkaXQ1LVZaVxwyC11QgIwBdgX4qxs,15479
|
|
261
|
+
umap/static/umap/js/modules/share.js,sha256=obyh6uYy9CR7Xry3uoAJkhgGlg7-io3SHjaZOCYE-To,7518
|
|
260
262
|
umap/static/umap/js/modules/slideshow.js,sha256=7tmW32iuEwLXTY_4A_DmiRMjdDr5luhpJSdmbz2SXPc,3608
|
|
261
|
-
umap/static/umap/js/modules/tableeditor.js,sha256=
|
|
262
|
-
umap/static/umap/js/modules/templates.js,sha256=
|
|
263
|
-
umap/static/umap/js/modules/umap.js,sha256=
|
|
263
|
+
umap/static/umap/js/modules/tableeditor.js,sha256=8ZQcy_b0urXMoUUKcYW1fi1nul38jTaq95GfDyykGTI,8800
|
|
264
|
+
umap/static/umap/js/modules/templates.js,sha256=mm-3OnVcCKmPyPfNkar0HX2ynT8E4CgqU4Q3m9bDP10,4401
|
|
265
|
+
umap/static/umap/js/modules/umap.js,sha256=beEtnWoOJe797Pjgy_VW7ZHJV2a5iOTYZaPC5xT_BCs,57359
|
|
264
266
|
umap/static/umap/js/modules/urls.js,sha256=76cFqycj2O8huuoYYBvxnVt2Fc2UDbgrRsiv6lQmcSY,890
|
|
265
|
-
umap/static/umap/js/modules/utils.js,sha256=
|
|
266
|
-
umap/static/umap/js/modules/data/features.js,sha256=
|
|
267
|
-
umap/static/umap/js/modules/data/layer.js,sha256=
|
|
268
|
-
umap/static/umap/js/modules/form/builder.js,sha256=
|
|
269
|
-
umap/static/umap/js/modules/form/fields.js,sha256=
|
|
267
|
+
umap/static/umap/js/modules/utils.js,sha256=yZhvc6kMsgnBTxeflcJ0eigNd0S1uOsZCzotXqqVpMA,16702
|
|
268
|
+
umap/static/umap/js/modules/data/features.js,sha256=a5hbjoJQEaKpKkT_JELmAZVcNBcfEgP7dnpY7-5XGhA,39287
|
|
269
|
+
umap/static/umap/js/modules/data/layer.js,sha256=e56iu8nr1fMYBYu5gOXvVvYv8mSTBxMT_KwuC1Jgl90,40933
|
|
270
|
+
umap/static/umap/js/modules/form/builder.js,sha256=Xq1oNE3t_6JFWm_i2MAaCrfYMkollWHW9nVmL-8Bu7o,6518
|
|
271
|
+
umap/static/umap/js/modules/form/fields.js,sha256=n7zezzllOKNu1o_AD8dCI-WiLJ9rqWnF1P9gTb90TT4,32938
|
|
270
272
|
umap/static/umap/js/modules/importers/banfr.js,sha256=TBwL3GQJdzYtaDtxeHxyPQ7Ycy5zTaQyvzXa55X7n2I,2932
|
|
271
273
|
umap/static/umap/js/modules/importers/cadastrefr.js,sha256=fcNOYZ679MYpy3fQubEhNmyaMpGKyNNeZRlUVgHKcz4,2319
|
|
272
274
|
umap/static/umap/js/modules/importers/communesfr.js,sha256=HoeVApZ0ORDxQt4dA86nKDldey3aJNeLdagMkn5skUg,1723
|
|
273
275
|
umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
|
|
274
276
|
umap/static/umap/js/modules/importers/geodatamine.js,sha256=4KmRpEpwdUHO1lqzB38hnTFvPjh7IjcQfVVDziqKS8k,3000
|
|
275
|
-
umap/static/umap/js/modules/importers/opendata.js,sha256=
|
|
276
|
-
umap/static/umap/js/modules/importers/openrouteservice.js,sha256=
|
|
277
|
+
umap/static/umap/js/modules/importers/opendata.js,sha256=Fyud039OV725ht60RC1R_GVp5NHbiJpJ7cbVptnUCLk,7479
|
|
278
|
+
umap/static/umap/js/modules/importers/openrouteservice.js,sha256=0tVlCqcze4oVqkzI6PHhIrB7VksXb_1DwZvw92j4eNU,4133
|
|
277
279
|
umap/static/umap/js/modules/importers/overpass.js,sha256=cY2kb3Fs8tA6PqBjGyc5bI0mg7L1ijapIAkVGwEhSwI,3341
|
|
278
|
-
umap/static/umap/js/modules/rendering/controls.js,sha256=
|
|
279
|
-
umap/static/umap/js/modules/rendering/icon.js,sha256=
|
|
280
|
+
umap/static/umap/js/modules/rendering/controls.js,sha256=hzkoSAu_P6ngkJ81KfSOcTNHKIj9p3vzzGpia_ba6oY,10616
|
|
281
|
+
umap/static/umap/js/modules/rendering/icon.js,sha256=4PTpNcx8nqVM7OzEXi6jLAF-0Q_mDlablkiv0dUPo_k,8924
|
|
280
282
|
umap/static/umap/js/modules/rendering/map.js,sha256=frdccjuaoK9-PMCNAGGk0y_rG5DVUKWxPkeAQm_F_B4,12822
|
|
281
283
|
umap/static/umap/js/modules/rendering/popup.js,sha256=OtQYpjhWCoW20XBFeeSKCXMqN-szohaX1TKWhPc9eBo,2577
|
|
282
|
-
umap/static/umap/js/modules/rendering/template.js,sha256=
|
|
283
|
-
umap/static/umap/js/modules/rendering/ui.js,sha256=
|
|
284
|
+
umap/static/umap/js/modules/rendering/template.js,sha256=D-x6gNP5NbpZRitqfGL28VWYdBCk8ZkHkQMc89LNDvA,12850
|
|
285
|
+
umap/static/umap/js/modules/rendering/ui.js,sha256=LgaDuTHm9EbdL35OOCSiMnufeOVGS8Ecu6tGW_oFHkw,17700
|
|
284
286
|
umap/static/umap/js/modules/rendering/layers/base.js,sha256=k_TlwHiGc16CFvE41-OmgjTFa99LbkG0IUKCUoZaruk,2483
|
|
285
|
-
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=
|
|
286
|
-
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=
|
|
287
|
+
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=gYvPWJMHKWuIC2xtUI9gzuUJcVExaoYd86fxgZY2WtE,15294
|
|
288
|
+
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=K38WgRk7VI80cpJc1wFjqaZsNQCQqpM5CWMmy1LOYnk,8090
|
|
287
289
|
umap/static/umap/js/modules/rendering/layers/heat.js,sha256=K_LsxnfpGImy2HlneV5nK0cBu1FxDmPNxR5VmsV4LaM,4975
|
|
288
290
|
umap/static/umap/js/modules/sync/engine.js,sha256=LDB7HHCmfVb0Cz30yVXBSV0f-1CGG5bkzrPtaT5RePM,18390
|
|
289
291
|
umap/static/umap/js/modules/sync/hlc.js,sha256=XeJz3x7qiDz7v-mcgGIynj5ks34FpWx_oSPUPFd_ZGA,2991
|
|
290
292
|
umap/static/umap/js/modules/sync/undo.js,sha256=CQufaRvI_-dT0HGm5Wl8hBbO00IruflPdlmWJ4acgFM,2910
|
|
291
293
|
umap/static/umap/js/modules/sync/updaters.js,sha256=9qukCBW_pPk4-3k4boKjcyocBd5w37UZxYGqclewlD0,3809
|
|
292
294
|
umap/static/umap/js/modules/sync/websocket.js,sha256=M2wsFuW5vRsY677dRSAFUWJl5MBPCOvaNYCAxBAqjcA,2522
|
|
293
|
-
umap/static/umap/js/modules/ui/bar.js,sha256=
|
|
295
|
+
umap/static/umap/js/modules/ui/bar.js,sha256=OPbJUkwAJroSUKzQwY27bEXdenFvyPMGrY7Aqk6535g,16353
|
|
294
296
|
umap/static/umap/js/modules/ui/base.js,sha256=OLR8VOvKPkDCT0X3hQq3s0WVRQunNEIUj83RNMEyzBM,2980
|
|
295
297
|
umap/static/umap/js/modules/ui/contextmenu.js,sha256=3Zm0AOoZLdCm76SLvImH1rtv0gPbcU1DQsJHf6cEojM,3169
|
|
296
|
-
umap/static/umap/js/modules/ui/dialog.js,sha256=
|
|
297
|
-
umap/static/umap/js/modules/ui/panel.js,sha256=
|
|
298
|
-
umap/static/umap/js/modules/ui/tooltip.js,sha256=
|
|
299
|
-
umap/static/umap/locale/am_ET.js,sha256=
|
|
300
|
-
umap/static/umap/locale/am_ET.json,sha256=
|
|
301
|
-
umap/static/umap/locale/ar.js,sha256=
|
|
302
|
-
umap/static/umap/locale/ar.json,sha256=
|
|
303
|
-
umap/static/umap/locale/ast.js,sha256=
|
|
304
|
-
umap/static/umap/locale/ast.json,sha256=
|
|
305
|
-
umap/static/umap/locale/bg.js,sha256=
|
|
306
|
-
umap/static/umap/locale/bg.json,sha256
|
|
307
|
-
umap/static/umap/locale/br.js,sha256=
|
|
308
|
-
umap/static/umap/locale/br.json,sha256=
|
|
309
|
-
umap/static/umap/locale/ca.js,sha256=
|
|
310
|
-
umap/static/umap/locale/ca.json,sha256=
|
|
311
|
-
umap/static/umap/locale/cs_CZ.js,sha256=
|
|
312
|
-
umap/static/umap/locale/cs_CZ.json,sha256
|
|
313
|
-
umap/static/umap/locale/da.js,sha256=
|
|
314
|
-
umap/static/umap/locale/da.json,sha256=
|
|
315
|
-
umap/static/umap/locale/de.js,sha256=
|
|
316
|
-
umap/static/umap/locale/de.json,sha256=
|
|
317
|
-
umap/static/umap/locale/el.js,sha256=
|
|
318
|
-
umap/static/umap/locale/el.json,sha256=
|
|
319
|
-
umap/static/umap/locale/en.js,sha256=
|
|
320
|
-
umap/static/umap/locale/en.json,sha256=
|
|
321
|
-
umap/static/umap/locale/en_US.json,sha256=
|
|
322
|
-
umap/static/umap/locale/es.js,sha256=
|
|
323
|
-
umap/static/umap/locale/es.json,sha256=
|
|
324
|
-
umap/static/umap/locale/et.js,sha256=
|
|
325
|
-
umap/static/umap/locale/et.json,sha256=
|
|
326
|
-
umap/static/umap/locale/eu.js,sha256=
|
|
327
|
-
umap/static/umap/locale/eu.json,sha256=
|
|
328
|
-
umap/static/umap/locale/fa_IR.js,sha256=
|
|
329
|
-
umap/static/umap/locale/fa_IR.json,sha256=
|
|
330
|
-
umap/static/umap/locale/fi.js,sha256=
|
|
331
|
-
umap/static/umap/locale/fi.json,sha256=
|
|
332
|
-
umap/static/umap/locale/fr.js,sha256=
|
|
333
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
334
|
-
umap/static/umap/locale/gl.js,sha256=
|
|
335
|
-
umap/static/umap/locale/gl.json,sha256=
|
|
336
|
-
umap/static/umap/locale/he.js,sha256=
|
|
337
|
-
umap/static/umap/locale/he.json,sha256=
|
|
338
|
-
umap/static/umap/locale/hr.js,sha256=
|
|
339
|
-
umap/static/umap/locale/hr.json,sha256=
|
|
340
|
-
umap/static/umap/locale/hu.js,sha256=
|
|
341
|
-
umap/static/umap/locale/hu.json,sha256=
|
|
342
|
-
umap/static/umap/locale/id.js,sha256=
|
|
343
|
-
umap/static/umap/locale/id.json,sha256=
|
|
344
|
-
umap/static/umap/locale/is.js,sha256=
|
|
345
|
-
umap/static/umap/locale/is.json,sha256=
|
|
346
|
-
umap/static/umap/locale/it.js,sha256=
|
|
347
|
-
umap/static/umap/locale/it.json,sha256=
|
|
348
|
-
umap/static/umap/locale/ja.js,sha256=
|
|
349
|
-
umap/static/umap/locale/ja.json,sha256=
|
|
350
|
-
umap/static/umap/locale/ko.js,sha256=
|
|
351
|
-
umap/static/umap/locale/ko.json,sha256=
|
|
352
|
-
umap/static/umap/locale/lt.js,sha256=
|
|
353
|
-
umap/static/umap/locale/lt.json,sha256=
|
|
354
|
-
umap/static/umap/locale/ms.js,sha256=
|
|
355
|
-
umap/static/umap/locale/ms.json,sha256=
|
|
356
|
-
umap/static/umap/locale/nl.js,sha256=
|
|
357
|
-
umap/static/umap/locale/nl.json,sha256=
|
|
358
|
-
umap/static/umap/locale/no.js,sha256=
|
|
359
|
-
umap/static/umap/locale/no.json,sha256=
|
|
360
|
-
umap/static/umap/locale/pl.js,sha256=
|
|
361
|
-
umap/static/umap/locale/pl.json,sha256=
|
|
362
|
-
umap/static/umap/locale/pl_PL.json,sha256=
|
|
363
|
-
umap/static/umap/locale/pt.js,sha256=
|
|
364
|
-
umap/static/umap/locale/pt.json,sha256=
|
|
365
|
-
umap/static/umap/locale/pt_BR.js,sha256=
|
|
366
|
-
umap/static/umap/locale/pt_BR.json,sha256=
|
|
367
|
-
umap/static/umap/locale/pt_PT.js,sha256=
|
|
368
|
-
umap/static/umap/locale/pt_PT.json,sha256=
|
|
369
|
-
umap/static/umap/locale/ro.js,sha256=
|
|
370
|
-
umap/static/umap/locale/ro.json,sha256=
|
|
371
|
-
umap/static/umap/locale/ru.js,sha256=
|
|
372
|
-
umap/static/umap/locale/ru.json,sha256=
|
|
298
|
+
umap/static/umap/js/modules/ui/dialog.js,sha256=vw025H74allPg-UZ8UbSOKRLy6jSetz04MJXwpf-nfc,5916
|
|
299
|
+
umap/static/umap/js/modules/ui/panel.js,sha256=jGVcd4QA7ckJ4HIBy9DCWjtZRCvj8DeQhJ1iah0WeQo,4108
|
|
300
|
+
umap/static/umap/js/modules/ui/tooltip.js,sha256=N2UYUuTcOpkejSVCcTDu3PmEpzg8G_bHmPCGcsfYaxc,1925
|
|
301
|
+
umap/static/umap/locale/am_ET.js,sha256=F1sTVH9bP84L5pKzzAf2odBOd9mkx_Tykrh7fk-_2uI,39065
|
|
302
|
+
umap/static/umap/locale/am_ET.json,sha256=wL2MFoFPZNJTDHBM-Xi1FyNCDNiRNZ7hyx76nhEvvo8,38994
|
|
303
|
+
umap/static/umap/locale/ar.js,sha256=ji0RCf8X55G1Ax3SBJIlFI79EosPsjAU3-lRW5dMz-M,36053
|
|
304
|
+
umap/static/umap/locale/ar.json,sha256=0upue_jb1zkyyngqnEBFcMwiQnROBv_wJ3yqjjSNqt8,35988
|
|
305
|
+
umap/static/umap/locale/ast.js,sha256=mVlNw0BPlgt0As-LOyMNIQHSCCubY1snAjZDyj3NaeI,35657
|
|
306
|
+
umap/static/umap/locale/ast.json,sha256=9wrAP7KEoqFr75U8M2SyhTuR-vFWFCRqvasCvNFYMXk,35590
|
|
307
|
+
umap/static/umap/locale/bg.js,sha256=kindxycUO7dNxN-pEBRvKum-1-GZP_e9Npnqh0K1X5M,38504
|
|
308
|
+
umap/static/umap/locale/bg.json,sha256=-f5qNFYj2_xRnzT7T25eLkmr0t5C4sbo6Nu_I0LC0oI,38439
|
|
309
|
+
umap/static/umap/locale/br.js,sha256=6fSmedkeRdzHgqV48ColhygAlbwdAaZYr_nttFiYbzo,37987
|
|
310
|
+
umap/static/umap/locale/br.json,sha256=W013hd5I6EBmA4axyHBSvXj7MKrsyW7E_wZb_uYWLaw,37922
|
|
311
|
+
umap/static/umap/locale/ca.js,sha256=vZPjxhlcgAowu7k5c5q9ANtyuz6WkExq0m9GKsk8ifU,37412
|
|
312
|
+
umap/static/umap/locale/ca.json,sha256=hjQ50QvEq6lUoLiuEF7zP51G3YhkQIvlUdXWp9BoYhY,37347
|
|
313
|
+
umap/static/umap/locale/cs_CZ.js,sha256=IvaWX883HDnidsJIfJ2jXgpVEqbJc0yVUY0Cn0XmeCA,38209
|
|
314
|
+
umap/static/umap/locale/cs_CZ.json,sha256=-UmhFFcKNcKCdVk5cvf5WbNX9LrSsIebG2h95XhkFd8,38138
|
|
315
|
+
umap/static/umap/locale/da.js,sha256=3i6LXQthXBd7s4o8_OZ3hlZR4BhxRjVxltdBHHmjp6o,36702
|
|
316
|
+
umap/static/umap/locale/da.json,sha256=on2gFyK8JDTUGAw91dFYsiowUjaEuaC1VPX4tvpNn20,36637
|
|
317
|
+
umap/static/umap/locale/de.js,sha256=ec6Pq6YkedLd_uVucpoXhn8sKX_lTRhhx3A1ftorSMU,38849
|
|
318
|
+
umap/static/umap/locale/de.json,sha256=496qCbDzlvjeXw4uyPgP1kBTyDqLb5pYrTZVFlyNclk,38784
|
|
319
|
+
umap/static/umap/locale/el.js,sha256=Gl4haQ79eitl5lKUYL_YHZ5yFEnFzuk5i-i6BHWPWjs,53622
|
|
320
|
+
umap/static/umap/locale/el.json,sha256=PZaWf4pbxuqzQ49pK3i_KG0UGOSsawkRHdUQqS2Ohhw,53557
|
|
321
|
+
umap/static/umap/locale/en.js,sha256=ZnWXmNVRcegnDtuXMA0yGuUFkAbafGOcxD7lB28bwOk,35655
|
|
322
|
+
umap/static/umap/locale/en.json,sha256=9wrAP7KEoqFr75U8M2SyhTuR-vFWFCRqvasCvNFYMXk,35590
|
|
323
|
+
umap/static/umap/locale/en_US.json,sha256=bJ12A1G4oXhlkvoZmQgcznqZPFWsUuhYJtRa5whc7WQ,35384
|
|
324
|
+
umap/static/umap/locale/es.js,sha256=XvaQhRTqcUTG1xdBYT1I3ugzmi4ly-uT5aHttquM6Mc,38839
|
|
325
|
+
umap/static/umap/locale/es.json,sha256=FcKTcPqUo0qLewED5wwTKdH6Zb_Cl7EDp9Jz0x3o8P0,38774
|
|
326
|
+
umap/static/umap/locale/et.js,sha256=BqyeiSydZ-9ABxPxhLTRMiuup92pKz1Ws1a66vBH7zs,35859
|
|
327
|
+
umap/static/umap/locale/et.json,sha256=PIeN0bfKCs3upZmDXGFOf_sQ9H2NkvE006v9i0umRmg,35794
|
|
328
|
+
umap/static/umap/locale/eu.js,sha256=b5qPlQCko1qLk8a53Z1TuF2maiRTQWfZyhFCsFsy3tI,37968
|
|
329
|
+
umap/static/umap/locale/eu.json,sha256=RK-7zw7rMikSws00ngArlhfvn2huN7ITn2a5HDvKxUI,37903
|
|
330
|
+
umap/static/umap/locale/fa_IR.js,sha256=SF4D2g8_CCLvaITd83NdYs6A9almfFUnrv-vmohKlHQ,43584
|
|
331
|
+
umap/static/umap/locale/fa_IR.json,sha256=Uza7DTU883ywmIRnUz2HEaxrtQwL9hWDHkpY1LumaFw,43513
|
|
332
|
+
umap/static/umap/locale/fi.js,sha256=GzeC6IZT2AN1pZmkDbyCj1lnynJ25Gc5EURwrNGd-XE,36439
|
|
333
|
+
umap/static/umap/locale/fi.json,sha256=dyl-wgVFumaWvhJ9yzdPg4uXrJ-gGs5Ik9fFi0fhppo,36374
|
|
334
|
+
umap/static/umap/locale/fr.js,sha256=lycDAJARuY8iY4YizU1sihXO1KDkuAEaKVlnVyqfagU,39037
|
|
335
|
+
umap/static/umap/locale/fr.json,sha256=A-PdUMBK3NUnqZQztB5Cxngi_R5h36pTXZTUy6o631s,38972
|
|
336
|
+
umap/static/umap/locale/gl.js,sha256=jgvw3r7quzHPe7ZZ3RTqjkdVy0wP93Mt_z_DQZSztsI,38283
|
|
337
|
+
umap/static/umap/locale/gl.json,sha256=ytwdsKIa0pK8aa4-KuAicGK1U0tz2loAGzZUeUQgZq0,38218
|
|
338
|
+
umap/static/umap/locale/he.js,sha256=vmZMm0YF8QuN3nLy3O0Ctki4mBtZlBznY0OY6oUfJFQ,38812
|
|
339
|
+
umap/static/umap/locale/he.json,sha256=bdzAX_q718Z0yjpeCuzc-nZ8OKWsyV3Dx02Mvr9CszA,38747
|
|
340
|
+
umap/static/umap/locale/hr.js,sha256=1CNSj-1_-WNmrV5HcWOSKAHxMxDPxzrUhMIDUG9vlPk,35825
|
|
341
|
+
umap/static/umap/locale/hr.json,sha256=9oVxLv0mBWBFwFOTCHCzr6USAUZE40ImNRwq7xQy7sY,35760
|
|
342
|
+
umap/static/umap/locale/hu.js,sha256=pgOMxVyXFtrLsP4F9oxHKkOzCl4jWBf6w4ARjcTYu9U,40573
|
|
343
|
+
umap/static/umap/locale/hu.json,sha256=8UyOtwF1NcAQsuR1LFCgsqB7tey5wMmp4u8OB7MMA4I,40508
|
|
344
|
+
umap/static/umap/locale/id.js,sha256=SzOzrESJIdpNAi6BL50JQXz1J6IAYer_u7DiOjmmDaM,35655
|
|
345
|
+
umap/static/umap/locale/id.json,sha256=9wrAP7KEoqFr75U8M2SyhTuR-vFWFCRqvasCvNFYMXk,35590
|
|
346
|
+
umap/static/umap/locale/is.js,sha256=1SgZ9cUtxlmEEsOXjbpLXNHkmagYlBtqIpHPxSaFEc0,37395
|
|
347
|
+
umap/static/umap/locale/is.json,sha256=S86BhAf_EDMkbLz5lE1Yk6cyXl5H91wCEsZM_oSLwDg,37330
|
|
348
|
+
umap/static/umap/locale/it.js,sha256=qNfjTopaYH5KFLRSaaZUU-OoiYb9cbnlj2qGKKH06Rk,38626
|
|
349
|
+
umap/static/umap/locale/it.json,sha256=1oTwX0xn8ox1C0JNbYkaVZGpExyic67TcqpeCnoNjng,38561
|
|
350
|
+
umap/static/umap/locale/ja.js,sha256=ONn-PFwycRfC-KXPQwknsvtwI3JwBRrgun2QYlVeauM,37917
|
|
351
|
+
umap/static/umap/locale/ja.json,sha256=kc2fd35I6lgHBH1TUk7caSC7rKEGHGeNwTcGq8oUnsw,37852
|
|
352
|
+
umap/static/umap/locale/ko.js,sha256=D9ykzaBjS9tzGxpwIK2YcXNUozvjTbXNeRLg_1m7HqY,35797
|
|
353
|
+
umap/static/umap/locale/ko.json,sha256=HYqnE-2W2wfY3LCypK0j54MuwBV_yCpGEkRddQNgce0,35732
|
|
354
|
+
umap/static/umap/locale/lt.js,sha256=LIoy2GyedUXugpQKy4gpn1K5OaoWVnqKzHOFV7TqqOo,36413
|
|
355
|
+
umap/static/umap/locale/lt.json,sha256=unsPpyDKN0kRXKvDIXlFoO3pOBrfj1hTOytcjhX10Pg,36348
|
|
356
|
+
umap/static/umap/locale/ms.js,sha256=X-fyaENNYqRkxfrVBiiZtK7MTISwvHDa0qxGdCf3RsA,36788
|
|
357
|
+
umap/static/umap/locale/ms.json,sha256=PnKo82iyUtD3U-Dz8z4OzZY-JOgQRnJYmhGF62UtNO8,36723
|
|
358
|
+
umap/static/umap/locale/nl.js,sha256=pi0DTtMQ1qhaK6SzHlIGbaXRgql9uwi2yBme15dX734,38151
|
|
359
|
+
umap/static/umap/locale/nl.json,sha256=UgG83zbL_Y9LawmqFmpR7oLEDC3viyjWqBtfBK97wfQ,38086
|
|
360
|
+
umap/static/umap/locale/no.js,sha256=GOeJRxdGptZlFkreNEmrGC8Qvu5m9IOhPdQtaAm-u-U,35842
|
|
361
|
+
umap/static/umap/locale/no.json,sha256=ZbxuuTfYiAbeyrsj1LaqO3htgKQe5YIKA6UlhKqBzeo,35777
|
|
362
|
+
umap/static/umap/locale/pl.js,sha256=PamU4XMCQgSb6O_uRoHrQPTCA96nEjrbxLqe_8cCU-I,37410
|
|
363
|
+
umap/static/umap/locale/pl.json,sha256=2TqEAeYaX95FatvO0jc-EbPiG4wMTnsvGdabczcxO0E,37345
|
|
364
|
+
umap/static/umap/locale/pl_PL.json,sha256=9wrAP7KEoqFr75U8M2SyhTuR-vFWFCRqvasCvNFYMXk,35590
|
|
365
|
+
umap/static/umap/locale/pt.js,sha256=aGyd9xfkdGDpkdE0d58PIg4V9YPTkQMuMXUm2VpAMBw,38368
|
|
366
|
+
umap/static/umap/locale/pt.json,sha256=x08_idMgjmxc8OeVCyBA3rxiIJPewR2b7yxyN8sCQ3w,38303
|
|
367
|
+
umap/static/umap/locale/pt_BR.js,sha256=l7SI-svzSytP-oPagBiKb9-eDasMMMHu3lSpNWEKGWw,36972
|
|
368
|
+
umap/static/umap/locale/pt_BR.json,sha256=cXIklJf7uy8glgfq6LTYnB5kRaBypsrPYpO1NTlroh4,36901
|
|
369
|
+
umap/static/umap/locale/pt_PT.js,sha256=ua0I7ugba30pkXlHTK2Ul1j4RLtqNL0FuS5obhL-xi8,38080
|
|
370
|
+
umap/static/umap/locale/pt_PT.json,sha256=tscWIV8gmWnsdO0zMi3D1BRl7UQ320Al5sHwRFTub_g,38009
|
|
371
|
+
umap/static/umap/locale/ro.js,sha256=6WR7IAvAPHJ9jwdn__19LeMsO-X6xcDTelgVz6e84BE,35684
|
|
372
|
+
umap/static/umap/locale/ro.json,sha256=yk4X-6AyJethNj06kwU4e-_eOx_Bj6ghlU42sYGZ_uM,35619
|
|
373
|
+
umap/static/umap/locale/ru.js,sha256=4WLGZjD1xlgxepghcvo-P_qNcVCJTzHzlS92PtmupIM,42308
|
|
374
|
+
umap/static/umap/locale/ru.json,sha256=ecNA6jTWZk98tGwHv-mi7PeVz_FvzQpIrZHG_Q2e5Sg,42243
|
|
373
375
|
umap/static/umap/locale/si.js,sha256=mcgXepIhSBBoRr6LvmvdRJFIwEGzXdjABC6W7lGYQUg,28504
|
|
374
376
|
umap/static/umap/locale/si.json,sha256=DHd8onJhyE8lBV76Zc9XmpHejZZOx0FwF3zaMlPq_Dc,28439
|
|
375
|
-
umap/static/umap/locale/sk_SK.js,sha256=
|
|
376
|
-
umap/static/umap/locale/sk_SK.json,sha256=
|
|
377
|
-
umap/static/umap/locale/sl.js,sha256=
|
|
378
|
-
umap/static/umap/locale/sl.json,sha256=
|
|
379
|
-
umap/static/umap/locale/sr.js,sha256=
|
|
380
|
-
umap/static/umap/locale/sr.json,sha256=
|
|
381
|
-
umap/static/umap/locale/sv.js,sha256=
|
|
382
|
-
umap/static/umap/locale/sv.json,sha256=
|
|
383
|
-
umap/static/umap/locale/th_TH.js,sha256=
|
|
384
|
-
umap/static/umap/locale/th_TH.json,sha256=
|
|
385
|
-
umap/static/umap/locale/tr.js,sha256=
|
|
386
|
-
umap/static/umap/locale/tr.json,sha256=
|
|
387
|
-
umap/static/umap/locale/uk_UA.js,sha256=
|
|
388
|
-
umap/static/umap/locale/uk_UA.json,sha256=
|
|
389
|
-
umap/static/umap/locale/vi.js,sha256=
|
|
390
|
-
umap/static/umap/locale/vi.json,sha256=
|
|
391
|
-
umap/static/umap/locale/vi_VN.json,sha256=
|
|
392
|
-
umap/static/umap/locale/zh.js,sha256=
|
|
393
|
-
umap/static/umap/locale/zh.json,sha256=
|
|
394
|
-
umap/static/umap/locale/zh_CN.json,sha256=
|
|
395
|
-
umap/static/umap/locale/zh_TW.Big5.json,sha256=
|
|
396
|
-
umap/static/umap/locale/zh_TW.js,sha256=
|
|
397
|
-
umap/static/umap/locale/zh_TW.json,sha256=
|
|
377
|
+
umap/static/umap/locale/sk_SK.js,sha256=Kux0P-D3RR1xYvzXjTmO7Xj3K13MPUumkIcruWNqEFI,36865
|
|
378
|
+
umap/static/umap/locale/sk_SK.json,sha256=_y-hqHR-ukvSe_eSXyykoX4fJEeqnZt7RgzwD6LMuNg,36794
|
|
379
|
+
umap/static/umap/locale/sl.js,sha256=8VT5uLMMbh_x9edBH6oulVQcTXFdiDYVkfN8zcy1h2I,36743
|
|
380
|
+
umap/static/umap/locale/sl.json,sha256=Ll9GQNl6klUVrIJwDynUj_tH7_wtQF-gvCFn25FTUeY,36678
|
|
381
|
+
umap/static/umap/locale/sr.js,sha256=6Nh-MQ6YXsGfWfwKHL2BPs1rWKl8nxl9ZupQqe_FCuU,39336
|
|
382
|
+
umap/static/umap/locale/sr.json,sha256=FpEBDM_SxvXf2nznZP33Lt5Ul9xHdoFN41TOMxIQAbA,39271
|
|
383
|
+
umap/static/umap/locale/sv.js,sha256=OJamXTJkThSjgXqtyzK-OGmO59KuqdodawHE24_mTvk,36626
|
|
384
|
+
umap/static/umap/locale/sv.json,sha256=552mQKfXvS5OK_NCZJIQZYFuABAEh-1-QWg-GwhupPU,36561
|
|
385
|
+
umap/static/umap/locale/th_TH.js,sha256=a4EVForoYiV07yhkL0EebiAqZZozdBX5eGXo7dbFxNI,36659
|
|
386
|
+
umap/static/umap/locale/th_TH.json,sha256=pL8LsbtQ-_ZExm97yQXT3EDYsz5mYpJ4wew60rZmP5c,36588
|
|
387
|
+
umap/static/umap/locale/tr.js,sha256=zSX3jcgOob-Re49sqU9h_2pG7h3LLC08mAaUQDVUJVQ,37132
|
|
388
|
+
umap/static/umap/locale/tr.json,sha256=WaKnqqp6nUHjiMdZO1fKr2ANe_KS8IkVy1dGOsAtKMg,37067
|
|
389
|
+
umap/static/umap/locale/uk_UA.js,sha256=6HuvPUHm67BAg8nNd6FlZXYIrwnm2t5ecp3QlmhjL_M,41924
|
|
390
|
+
umap/static/umap/locale/uk_UA.json,sha256=ytnu3-R7GBSQGhZ2tgJu_j6uPap5N0tdhgaD2CqKlZI,41853
|
|
391
|
+
umap/static/umap/locale/vi.js,sha256=6UeYqKWqrK022AusXRrcR8UAER6Zb13A0fc55xGS26Q,35907
|
|
392
|
+
umap/static/umap/locale/vi.json,sha256=H485jy8VaSkMMFnNhpyX684Rs9JrGokTuq2pbIU9SeQ,35842
|
|
393
|
+
umap/static/umap/locale/vi_VN.json,sha256=9wrAP7KEoqFr75U8M2SyhTuR-vFWFCRqvasCvNFYMXk,35590
|
|
394
|
+
umap/static/umap/locale/zh.js,sha256=Qk6OxylAfIuz2zl5OjI73A_JSHkynugCIqtibF4BxRg,35449
|
|
395
|
+
umap/static/umap/locale/zh.json,sha256=zFqREj0CVXYPte_WMmB8Z8JiAV5rJgcfjhvaDe_lsMY,35384
|
|
396
|
+
umap/static/umap/locale/zh_CN.json,sha256=9wrAP7KEoqFr75U8M2SyhTuR-vFWFCRqvasCvNFYMXk,35590
|
|
397
|
+
umap/static/umap/locale/zh_TW.Big5.json,sha256=9wrAP7KEoqFr75U8M2SyhTuR-vFWFCRqvasCvNFYMXk,35590
|
|
398
|
+
umap/static/umap/locale/zh_TW.js,sha256=vsPJmvbHVkma08acxUog9SY-dVIjgO63zbKONjPy6Es,35158
|
|
399
|
+
umap/static/umap/locale/zh_TW.json,sha256=8j9HFHRiKgq6xk1Pyq520NwRQI-8MbrQghPxc5voHzE,35087
|
|
398
400
|
umap/static/umap/unittests/URLs.js,sha256=wF0hfRX3NqwFAe31QGeKFwavUpNP2T8pHwXBlcpiwNo,2070
|
|
399
401
|
umap/static/umap/unittests/hlc.js,sha256=GvpBaBSgfMs0Zym0_zOs2QldUOcbFNVIKweBhuwM_QI,5294
|
|
400
402
|
umap/static/umap/unittests/sync.js,sha256=SRzK5N7o7iZodye53evBTZZjXG1mMm6dguV_Iyh69XQ,11096
|
|
401
|
-
umap/static/umap/unittests/utils.js,sha256=
|
|
403
|
+
umap/static/umap/unittests/utils.js,sha256=M-aew-KLqUMBWAdrUwaYygign2RwSCpvhN6dzGXM9GA,29223
|
|
402
404
|
umap/static/umap/vendors/betterknown/betterknown.mjs,sha256=dFgTX_0-k905dEgF5P9icVWeKa9twumz7ghiWOK9yC8,7915
|
|
403
405
|
umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=wEHf7UslhI09j7tfzC1V9FLgTbZELDbbtGiL2x0y9vY,23051
|
|
404
406
|
umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=FARwXdqk_yf3ttJmSyrJ204B9glI2YaZ2vuhaQPmhVk,15712
|
|
@@ -478,7 +480,7 @@ umap/templates/umap/about_summary.html,sha256=9_K2HxctGKjU3GWaI9Rny-kb_iLnS5lScx
|
|
|
478
480
|
umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
|
|
479
481
|
umap/templates/umap/content.html,sha256=BHtQMYOOlfQXWFJtSRV2qTnXsgjF7_IKJ7-c4iZpSo0,2379
|
|
480
482
|
umap/templates/umap/content_footer.html,sha256=170C-9K0a1qkNb4m-x5Vg7bNstvHVEXueDfgPPvXk0I,1130
|
|
481
|
-
umap/templates/umap/css.html,sha256=
|
|
483
|
+
umap/templates/umap/css.html,sha256=eTVmcxBs1u8ehogjipH3sutheSJ6_Vu7ct-3cTKE9IM,2076
|
|
482
484
|
umap/templates/umap/dashboard_menu.html,sha256=fQ7nLKhIAUF_ki16tR7oWwFWCmMs92iKx6gEjx5XpMo,996
|
|
483
485
|
umap/templates/umap/design_system.html,sha256=3LeAtOjkvDSG2PWNeHrAo0G3AQJ7JGMMQE2-L2Plxmw,23813
|
|
484
486
|
umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -486,7 +488,7 @@ umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
486
488
|
umap/templates/umap/home.html,sha256=JuzDOx3-T_XyWT1Rwdy50PWvjlRjnhAXMM4-yvVUkts,890
|
|
487
489
|
umap/templates/umap/js.html,sha256=kAIZtORiXnLUFDZEFAodKU12uHdx4aKVJKbK4p6R_9Y,2290
|
|
488
490
|
umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
|
|
489
|
-
umap/templates/umap/login_popup_end.html,sha256=
|
|
491
|
+
umap/templates/umap/login_popup_end.html,sha256=ygh-w69aKSS_bY6C9rcZevh7nXr5hJFk-xMQP5-Q00s,1133
|
|
490
492
|
umap/templates/umap/map_detail.html,sha256=vNFIK7BhWWNiiBnMwKDPyvr0LZH9rLLqD95T_wsi5ng,1217
|
|
491
493
|
umap/templates/umap/map_fragment.html,sha256=KdHT1fsIhSjH8oo27qIRn0Fw701qpcWs335ixAVav4M,158
|
|
492
494
|
umap/templates/umap/map_init.html,sha256=nvjXbBPJMq7QFSSzNx_EHF9G0D5kcEIsNuqHpnuSo5c,479
|
|
@@ -503,11 +505,11 @@ umap/templates/umap/team_confirm_delete.html,sha256=hURs2wcKXl3c0PMATHqRTaoFvQuS
|
|
|
503
505
|
umap/templates/umap/team_detail.html,sha256=GPfeqlTnyBTLrLxgiksM6XjwA5rd6SESCsjs8d-42PY,853
|
|
504
506
|
umap/templates/umap/team_form.html,sha256=wwxpxGC4lno4PqNs9pOnlwQ23leKj3kxV3Pbs2UpJb0,2039
|
|
505
507
|
umap/templates/umap/user_dashboard.html,sha256=4E7gafTm5oCeMekkaxhFOZJQMkdsJVqWxylIBgWb71Q,920
|
|
506
|
-
umap/templates/umap/user_map_table.html,sha256=
|
|
508
|
+
umap/templates/umap/user_map_table.html,sha256=EIuOvIUwgxtcHTc5qF3tB7lg4csGvR5cTxQ2CEpU-kA,1485
|
|
507
509
|
umap/templates/umap/user_teams.html,sha256=p--dXgYw8Kjt0XTCVcFkwmw_PN2tFv98K9bYTsCdilo,1674
|
|
508
510
|
umap/templates/umap/user_templates.html,sha256=MXhoGDJyUl3ngnmM5tOk_CnImaMqsZnskbRdYoQLahk,955
|
|
509
511
|
umap/templates/umap/components/provider.html,sha256=lEoxBZxFscgYh3gWFtjXRs1Sc__0cFXY6k348Rxm5XI,285
|
|
510
|
-
umap/templates/umap/components/alerts/alert.html,sha256=
|
|
512
|
+
umap/templates/umap/components/alerts/alert.html,sha256=Gj_li_68BXq-uJrxhqqavTBxWI8sVYN-ZOoBX2B0ji0,3934
|
|
511
513
|
umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
512
514
|
umap/templatetags/umap_tags.py,sha256=X1WL5Em08-OORFYYJACV_0_7MVoRuWIKPkYaJBw6OxE,1825
|
|
513
515
|
umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -515,7 +517,7 @@ umap/tests/base.py,sha256=uXQ7xFV41xkjZznVX3hh4Q5ZyqGL4TEa9rRwLcfRxcU,5188
|
|
|
515
517
|
umap/tests/conftest.py,sha256=KQCZanCTl1ABLIKOuyxS_cpBoXGiwjDc29jsLBiSWxY,1633
|
|
516
518
|
umap/tests/settings.py,sha256=-b-RoDlZJXJ6cCFnO2gF-XL-avfHlpUuLrQk-ytgkdY,783
|
|
517
519
|
umap/tests/test_clean_tilelayer.py,sha256=wGTd_AHOTmQ4QMswAyc-1_lJmQOSyhY3OahLAusEIdA,2515
|
|
518
|
-
umap/tests/test_dashboard.py,sha256=
|
|
520
|
+
umap/tests/test_dashboard.py,sha256=G_7--cczaAsgqTDdUIpSBPL7AEBvcsQQjVneHR8xMKE,4013
|
|
519
521
|
umap/tests/test_datalayer.py,sha256=-1sTYnmJksgV4jxRQUtw_jRUqaYhh0siqfJe8QfWTqs,9528
|
|
520
522
|
umap/tests/test_datalayer_s3.py,sha256=le1OvJdMfOmudciECynZfoij3p_lBpclFCqC8tiXFq4,4186
|
|
521
523
|
umap/tests/test_datalayer_views.py,sha256=ySOyYOvdMjyBbBeyZ6YUS0_RfH2dlovQ5luT7ZXXxuQ,23734
|
|
@@ -554,11 +556,11 @@ umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5
|
|
|
554
556
|
umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIxU7WL1llnAmEVJwCWla6XOds,1525
|
|
555
557
|
umap/tests/fixtures/test_upload_simple_marker.json,sha256=jH15G5PxgVO-DZb4TPxVMAi1_uzhkvZcFkVUb50CS3Q,393
|
|
556
558
|
umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
|
|
557
|
-
umap/tests/integration/conftest.py,sha256=
|
|
559
|
+
umap/tests/integration/conftest.py,sha256=bGzAj9HONoQxmszO0b8sUrTdTd8DHpt-pFJ0Wp-FxNM,2232
|
|
558
560
|
umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
|
|
559
|
-
umap/tests/integration/test_anonymous_owned_map.py,sha256
|
|
560
|
-
umap/tests/integration/test_basics.py,sha256=
|
|
561
|
-
umap/tests/integration/test_browser.py,sha256=
|
|
561
|
+
umap/tests/integration/test_anonymous_owned_map.py,sha256=hb7md8lxnw-k29QbEUI_HNiYBsZ1EYdKMIIcYKo8caE,13234
|
|
562
|
+
umap/tests/integration/test_basics.py,sha256=5HGgkuKa2-zsh7s9lxqsFNOW4LJhdZoHDFCdSmetDUc,5166
|
|
563
|
+
umap/tests/integration/test_browser.py,sha256=d3ZkL7qyZAEDo4b9u5MqhHQ3EjF7jQcoM7shl7LGStQ,21955
|
|
562
564
|
umap/tests/integration/test_caption.py,sha256=9JHQvTju2W-IoV2UBrEUAH4nV2W7eKN2hJi4YcPfSPE,1843
|
|
563
565
|
umap/tests/integration/test_categorized_layer.py,sha256=XCCK62fBljTEbt0EKoGsHf9hY2bCEIkyeuPxyhEGJDs,5381
|
|
564
566
|
umap/tests/integration/test_choropleth.py,sha256=Lsd7tszSIua_GUeXhosB-JWk35zYN-3WKRVYI0ZrNSM,3777
|
|
@@ -567,19 +569,20 @@ umap/tests/integration/test_cluster.py,sha256=Ltkk0KUeUtU59lbNwZeoTyaGSYWto5k-rS
|
|
|
567
569
|
umap/tests/integration/test_conditional_rules.py,sha256=D1vs3-fcxmLvlKK17Xf0i6dDkOK1UQWqBBFKodxfm0c,15657
|
|
568
570
|
umap/tests/integration/test_dashboard.py,sha256=LClLBc8lgDM1-NGhkvUSUMLmMuKt3sR1ubt2Eo-Iq7A,1550
|
|
569
571
|
umap/tests/integration/test_datalayer.py,sha256=tjerFu7npF3bQ8L8VOHWjdFJrKU22rGjEqSv2-fj-bY,5525
|
|
570
|
-
umap/tests/integration/test_draw_polygon.py,sha256=
|
|
572
|
+
umap/tests/integration/test_draw_polygon.py,sha256=pnehOGViJvbp_Ksxdg9ss7mtEUNwHbwwspghyod7pt0,25398
|
|
571
573
|
umap/tests/integration/test_draw_polyline.py,sha256=RgivhjEzjHVE6niPG5uAxJjtmEVD11ftuU4Tb47bXh8,14717
|
|
572
574
|
umap/tests/integration/test_draw_route.py,sha256=hxa_uVqHLLEbbSsEIMsPsq5fMCNoKWY7cRCpMwqudmM,7276
|
|
573
575
|
umap/tests/integration/test_edit_datalayer.py,sha256=l5DwzpWXsy80HxMKrF7z7HZPZi1RtFluONpjDrUBqb8,10224
|
|
574
576
|
umap/tests/integration/test_edit_map.py,sha256=0TXwrjgSKok7nxa-wy7WjVb8-lG0-zfS8s-f9klmqOQ,8784
|
|
575
|
-
umap/tests/integration/test_edit_marker.py,sha256=
|
|
577
|
+
umap/tests/integration/test_edit_marker.py,sha256=INj_7CYZxYN7usJbMn2xqIRKZRYnaurlzqr1V3dxdzY,5774
|
|
576
578
|
umap/tests/integration/test_edit_polygon.py,sha256=l2CxnTnblRYUiiBV3ERwPkZ-VQTEWzFSFWhAzTF9BgA,5252
|
|
577
|
-
umap/tests/integration/test_export_map.py,sha256=
|
|
578
|
-
umap/tests/integration/test_facets_browser.py,sha256=nMspm4fR-e-qaO6Dn-N7ZVJ3AK_-jOQ_4fhJ72LrahE,10676
|
|
579
|
+
umap/tests/integration/test_export_map.py,sha256=2Sijh3KUE6cqK0tDNMnHayXk5Ei69i0ARLqymBUiiWM,15957
|
|
579
580
|
umap/tests/integration/test_features_id_generation.py,sha256=mGoLIKV3xTc59XSnNPbAgHeG6RjMYwhmaVEmcqSnv-4,1463
|
|
581
|
+
umap/tests/integration/test_fields.py,sha256=BmE3qnyq603TYTRT9UaatYZiYTiCEVAdfbADuSltW70,17638
|
|
582
|
+
umap/tests/integration/test_filters.py,sha256=YSjmj-aXyeZnr1QZLHDkz-abe67jZfFi0XkiECli0PE,24325
|
|
580
583
|
umap/tests/integration/test_heatmap.py,sha256=N4CH5cRrI8tNsCOqQAqhQR2eKV0bHV2uwF5apml_DCs,1627
|
|
581
584
|
umap/tests/integration/test_iframe.py,sha256=CQ3AdjqLjaI0JKFZ4lnBWedtmvgJ5G6nnGZESoSBqHY,898
|
|
582
|
-
umap/tests/integration/test_import.py,sha256=
|
|
585
|
+
umap/tests/integration/test_import.py,sha256=vryx_CTsX9A3gY7uhaIu7kkIbtm9b1gEZbxSeeQz8E0,42833
|
|
583
586
|
umap/tests/integration/test_map.py,sha256=ev-rbQteyL8d9bCgNThNqyZCMKiF5umVhCj9eCOxMNg,8761
|
|
584
587
|
umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
|
|
585
588
|
umap/tests/integration/test_map_preview.py,sha256=y9ed3T3BCkwK1eBr8dhlGwQY6lMAstP2eyDeL9SDzro,3540
|
|
@@ -588,12 +591,12 @@ umap/tests/integration/test_owned_map.py,sha256=SSOEpqsaBtCCVhyiyjBFF9dEDvbpSh0L
|
|
|
588
591
|
umap/tests/integration/test_picto.py,sha256=xJMvtTuUQ-JTKpC7SL86cUOe7OspAYAflA0q8ixLk20,9340
|
|
589
592
|
umap/tests/integration/test_popup.py,sha256=kZy6JAJIs2R6tnPbGEzgz_yX76yMbEAfPqCa6c9P670,1445
|
|
590
593
|
umap/tests/integration/test_querystring.py,sha256=i6fQEAcNiD2SADv0wRQewGVA4CWrmOOpqnZGOnENOtg,2754
|
|
591
|
-
umap/tests/integration/test_remote_data.py,sha256=
|
|
594
|
+
umap/tests/integration/test_remote_data.py,sha256=ZMdeG-LpnqbM9fMyN1V1hzwsb_gqz9O0QtTnqUfMc3c,4283
|
|
592
595
|
umap/tests/integration/test_save.py,sha256=Ia3BsCVLPqImCyjNZ_5qvtMXMq130Y5sD_Ym1xDpAiU,1260
|
|
593
|
-
umap/tests/integration/test_share.py,sha256=
|
|
596
|
+
umap/tests/integration/test_share.py,sha256=LOwOV0v3viFcsS4r1QQKDwX8-rXmFZvJL8tC75sr0Uk,1809
|
|
594
597
|
umap/tests/integration/test_slideshow.py,sha256=yhy75YYpfTKpkGK7xGjJDJoqHtN6p2LG-O4krVE1Yks,1907
|
|
595
598
|
umap/tests/integration/test_star.py,sha256=qJUvFij0XK0PcWJnbe4w8nTvTjbJdJ5X-2JjHy6DqEw,973
|
|
596
|
-
umap/tests/integration/test_tableeditor.py,sha256=
|
|
599
|
+
umap/tests/integration/test_tableeditor.py,sha256=7XDCgpHMMhz5eLMySWeVmlf-u8B14qAkFh4-nCUk1nA,11619
|
|
597
600
|
umap/tests/integration/test_team.py,sha256=LVuj5Dhz27cqk6ieEbukGsdy9J2FP5aQmcMex_xevIg,1594
|
|
598
601
|
umap/tests/integration/test_templates.py,sha256=QtGZpYmA1Epwp9olYAbl7Mqncs2YSXutqEVHV3-nlkU,1768
|
|
599
602
|
umap/tests/integration/test_tilelayer.py,sha256=rBI3bm4hCpH87rcFvuc5H8yu1D9FQBZMNbqqJzpdI24,5302
|
|
@@ -601,9 +604,9 @@ umap/tests/integration/test_undo_redo.py,sha256=1wSb43fI3ZpJcegW9AaQZ7a2BcuBSfkM
|
|
|
601
604
|
umap/tests/integration/test_view_marker.py,sha256=NFCwNez__E_WsE1DuW5RuB0HVKDP4CQMXGhJw0LfnFs,6900
|
|
602
605
|
umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
|
|
603
606
|
umap/tests/integration/test_view_polyline.py,sha256=aJoXKmLhJaN0yhPdDCVskZNGx3q3mLDkjVPhZ30cadA,13959
|
|
604
|
-
umap/tests/integration/test_websocket_sync.py,sha256=
|
|
605
|
-
umap_project-3.
|
|
606
|
-
umap_project-3.
|
|
607
|
-
umap_project-3.
|
|
608
|
-
umap_project-3.
|
|
609
|
-
umap_project-3.
|
|
607
|
+
umap/tests/integration/test_websocket_sync.py,sha256=CeigDGSDSa6LeM_ZxPoDDfQ20GPHEgPPSDVLEMd4ToI,28367
|
|
608
|
+
umap_project-3.4.0b0.dist-info/METADATA,sha256=_IA4BT3WtcScs9blPrzUaKwTqpMdYMSGH-MvJCvRhZg,5751
|
|
609
|
+
umap_project-3.4.0b0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
610
|
+
umap_project-3.4.0b0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
611
|
+
umap_project-3.4.0b0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
612
|
+
umap_project-3.4.0b0.dist-info/RECORD,,
|