umap-project 2.9.3__py3-none-any.whl → 3.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/context_processors.py +1 -0
- umap/forms.py +1 -2
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +218 -96
- umap/locale/en/LC_MESSAGES/django.po +128 -52
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +128 -52
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +209 -88
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +296 -175
- umap/migrations/0027_map_tags.py +23 -0
- umap/models.py +13 -2
- umap/settings/base.py +23 -5
- umap/static/umap/base.css +41 -8
- umap/static/umap/content.css +72 -37
- umap/static/umap/css/bar.css +43 -21
- umap/static/umap/css/dialog.css +4 -1
- umap/static/umap/css/form.css +40 -27
- umap/static/umap/css/icon.css +11 -1
- umap/static/umap/css/importers.css +7 -0
- umap/static/umap/img/16-white.svg +23 -2
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24.svg +4 -4
- umap/static/umap/img/home.svg +7 -0
- umap/static/umap/img/importers/banfr.svg +1 -0
- umap/static/umap/img/marker.svg +2 -5
- umap/static/umap/img/source/16-white.svg +24 -3
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24.svg +5 -5
- umap/static/umap/img/target.svg +1 -0
- umap/static/umap/js/components/alerts/alert.js +0 -1
- umap/static/umap/js/modules/browser.js +4 -4
- umap/static/umap/js/modules/caption.js +1 -1
- umap/static/umap/js/modules/data/features.js +25 -25
- umap/static/umap/js/modules/data/layer.js +91 -97
- umap/static/umap/js/modules/facets.js +9 -5
- umap/static/umap/js/modules/form/builder.js +19 -27
- umap/static/umap/js/modules/form/fields.js +40 -14
- umap/static/umap/js/modules/formatter.js +1 -1
- umap/static/umap/js/modules/global.js +9 -5
- umap/static/umap/js/modules/help.js +18 -5
- umap/static/umap/js/modules/importer.js +5 -2
- umap/static/umap/js/modules/importers/banfr.js +93 -0
- umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
- umap/static/umap/js/modules/importers/communesfr.js +1 -1
- umap/static/umap/js/modules/permissions.js +20 -10
- umap/static/umap/js/modules/rendering/icon.js +15 -2
- umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
- umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
- umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
- umap/static/umap/js/modules/rendering/map.js +14 -6
- umap/static/umap/js/modules/rendering/popup.js +2 -2
- umap/static/umap/js/modules/rendering/template.js +3 -3
- umap/static/umap/js/modules/rendering/ui.js +17 -11
- umap/static/umap/js/modules/rules.js +13 -16
- umap/static/umap/js/modules/schema.js +23 -1
- umap/static/umap/js/modules/share.js +1 -1
- umap/static/umap/js/modules/slideshow.js +1 -0
- umap/static/umap/js/modules/sync/engine.js +141 -19
- umap/static/umap/js/modules/sync/undo.js +101 -0
- umap/static/umap/js/modules/sync/updaters.js +51 -28
- umap/static/umap/js/modules/tableeditor.js +1 -1
- umap/static/umap/js/modules/ui/bar.js +61 -21
- umap/static/umap/js/modules/ui/tooltip.js +1 -1
- umap/static/umap/js/modules/umap.js +190 -176
- umap/static/umap/js/modules/utils.js +30 -4
- umap/static/umap/js/umap.controls.js +82 -38
- umap/static/umap/locale/am_ET.js +11 -6
- umap/static/umap/locale/am_ET.json +11 -6
- umap/static/umap/locale/ar.js +11 -6
- umap/static/umap/locale/ar.json +11 -6
- umap/static/umap/locale/ast.js +11 -6
- umap/static/umap/locale/ast.json +11 -6
- umap/static/umap/locale/bg.js +11 -6
- umap/static/umap/locale/bg.json +11 -6
- umap/static/umap/locale/br.js +12 -7
- umap/static/umap/locale/br.json +12 -7
- umap/static/umap/locale/ca.js +11 -6
- umap/static/umap/locale/ca.json +11 -6
- umap/static/umap/locale/cs_CZ.js +11 -6
- umap/static/umap/locale/cs_CZ.json +11 -6
- umap/static/umap/locale/da.js +11 -6
- umap/static/umap/locale/da.json +11 -6
- umap/static/umap/locale/de.js +47 -42
- umap/static/umap/locale/de.json +47 -42
- umap/static/umap/locale/el.js +11 -6
- umap/static/umap/locale/el.json +11 -6
- umap/static/umap/locale/en.js +11 -6
- umap/static/umap/locale/en.json +11 -6
- umap/static/umap/locale/en_US.json +11 -6
- umap/static/umap/locale/es.js +11 -6
- umap/static/umap/locale/es.json +11 -6
- umap/static/umap/locale/et.js +11 -6
- umap/static/umap/locale/et.json +11 -6
- umap/static/umap/locale/eu.js +11 -6
- umap/static/umap/locale/eu.json +11 -6
- umap/static/umap/locale/fa_IR.js +11 -6
- umap/static/umap/locale/fa_IR.json +11 -6
- umap/static/umap/locale/fi.js +11 -6
- umap/static/umap/locale/fi.json +11 -6
- umap/static/umap/locale/fr.js +11 -6
- umap/static/umap/locale/fr.json +11 -6
- umap/static/umap/locale/gl.js +12 -7
- umap/static/umap/locale/gl.json +12 -7
- umap/static/umap/locale/he.js +11 -6
- umap/static/umap/locale/he.json +11 -6
- umap/static/umap/locale/hr.js +11 -6
- umap/static/umap/locale/hr.json +11 -6
- umap/static/umap/locale/hu.js +25 -20
- umap/static/umap/locale/hu.json +25 -20
- umap/static/umap/locale/id.js +11 -6
- umap/static/umap/locale/id.json +11 -6
- umap/static/umap/locale/is.js +151 -146
- umap/static/umap/locale/is.json +151 -146
- umap/static/umap/locale/it.js +11 -6
- umap/static/umap/locale/it.json +11 -6
- umap/static/umap/locale/ja.js +11 -6
- umap/static/umap/locale/ja.json +11 -6
- umap/static/umap/locale/ko.js +11 -6
- umap/static/umap/locale/ko.json +11 -6
- umap/static/umap/locale/lt.js +11 -6
- umap/static/umap/locale/lt.json +11 -6
- umap/static/umap/locale/ms.js +11 -6
- umap/static/umap/locale/ms.json +11 -6
- umap/static/umap/locale/nl.js +12 -7
- umap/static/umap/locale/nl.json +12 -7
- umap/static/umap/locale/no.js +11 -6
- umap/static/umap/locale/no.json +11 -6
- umap/static/umap/locale/pl.js +11 -6
- umap/static/umap/locale/pl.json +11 -6
- umap/static/umap/locale/pl_PL.json +11 -6
- umap/static/umap/locale/pt.js +11 -6
- umap/static/umap/locale/pt.json +11 -6
- umap/static/umap/locale/pt_BR.js +11 -6
- umap/static/umap/locale/pt_BR.json +11 -6
- umap/static/umap/locale/pt_PT.js +11 -6
- umap/static/umap/locale/pt_PT.json +11 -6
- umap/static/umap/locale/ro.js +11 -6
- umap/static/umap/locale/ro.json +11 -6
- umap/static/umap/locale/ru.js +11 -6
- umap/static/umap/locale/ru.json +11 -6
- umap/static/umap/locale/sk_SK.js +11 -6
- umap/static/umap/locale/sk_SK.json +11 -6
- umap/static/umap/locale/sl.js +11 -6
- umap/static/umap/locale/sl.json +11 -6
- umap/static/umap/locale/sr.js +11 -6
- umap/static/umap/locale/sr.json +11 -6
- umap/static/umap/locale/sv.js +11 -6
- umap/static/umap/locale/sv.json +11 -6
- umap/static/umap/locale/th_TH.js +11 -6
- umap/static/umap/locale/th_TH.json +11 -6
- umap/static/umap/locale/tr.js +11 -6
- umap/static/umap/locale/tr.json +11 -6
- umap/static/umap/locale/uk_UA.js +11 -6
- umap/static/umap/locale/uk_UA.json +11 -6
- umap/static/umap/locale/vi.js +11 -6
- umap/static/umap/locale/vi.json +11 -6
- umap/static/umap/locale/vi_VN.json +11 -6
- umap/static/umap/locale/zh.js +11 -6
- umap/static/umap/locale/zh.json +11 -6
- umap/static/umap/locale/zh_CN.json +11 -6
- umap/static/umap/locale/zh_TW.Big5.json +11 -6
- umap/static/umap/locale/zh_TW.js +19 -14
- umap/static/umap/locale/zh_TW.json +19 -14
- umap/static/umap/map.css +58 -28
- umap/static/umap/unittests/sync.js +0 -57
- umap/static/umap/unittests/utils.js +47 -0
- umap/static/umap/vars.css +5 -2
- umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
- umap/sync/payloads.py +3 -2
- umap/templates/auth/user_detail.html +1 -1
- umap/templates/auth/user_stars.html +1 -1
- umap/templates/umap/content.html +17 -12
- umap/templates/umap/home.html +7 -5
- umap/templates/umap/map_fragment.html +1 -1
- umap/templates/umap/map_list.html +20 -13
- umap/templates/umap/search.html +7 -3
- umap/templates/umap/search_bar.html +13 -11
- umap/templates/umap/team_detail.html +1 -1
- umap/tests/base.py +2 -1
- umap/tests/fixtures/remote_data.umap +55 -0
- umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
- umap/tests/integration/test_browser.py +1 -3
- umap/tests/integration/test_conditional_rules.py +3 -0
- umap/tests/integration/test_edit_datalayer.py +2 -7
- umap/tests/integration/test_edit_map.py +15 -0
- umap/tests/integration/test_edit_polygon.py +1 -2
- umap/tests/integration/test_import.py +59 -2
- umap/tests/integration/test_optimistic_merge.py +4 -3
- umap/tests/integration/test_owned_map.py +0 -1
- umap/tests/integration/test_save.py +2 -4
- umap/tests/integration/test_undo_redo.py +267 -0
- umap/tests/integration/test_websocket_sync.py +78 -11
- umap/tests/settings.py +1 -3
- umap/tests/test_datalayer_s3.py +1 -0
- umap/tests/test_map_views.py +1 -0
- umap/tests/test_views.py +34 -0
- umap/utils.py +1 -1
- umap/views.py +23 -2
- {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/METADATA +13 -12
- {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/RECORD +206 -208
- umap/static/umap/js/modules/saving.js +0 -52
- umap/static/umap/test/.eslintrc +0 -21
- umap/static/umap/test/DataLayer.js +0 -463
- umap/static/umap/test/Feature.js +0 -131
- umap/static/umap/test/Map.js +0 -37
- umap/static/umap/test/Marker.js +0 -126
- umap/static/umap/test/Polygon.js +0 -111
- umap/static/umap/test/Polyline.js +0 -286
- umap/static/umap/test/Util.js +0 -28
- umap/static/umap/test/_pre.js +0 -455
- umap/static/umap/test/index.html +0 -139
- {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/WHEEL +0 -0
- {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/entry_points.txt +0 -0
- {umap_project-2.9.3.dist-info → umap_project-3.0.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=yK7aOUt_pFy8YQaEzXO6v5ZbKRSr9eAB9NpoD7gEyk4,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
|
|
5
5
|
umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
|
|
6
|
-
umap/context_processors.py,sha256=
|
|
6
|
+
umap/context_processors.py,sha256=QIulvu2vevmyBk4CKPPSJK457FJmdoD3JdrvMnHnMHY,705
|
|
7
7
|
umap/decorators.py,sha256=EEICH54p9swHIs_tuqt4FL-l749vk6P8AevlWFKn5zk,2477
|
|
8
8
|
umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
|
|
9
|
-
umap/forms.py,sha256=
|
|
9
|
+
umap/forms.py,sha256=q34614Y6fn02xK269qsGXfJYpfUqFO4ArWXgoD68pX0,3756
|
|
10
10
|
umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
|
|
11
11
|
umap/middleware.py,sha256=-cCPlG43b8BSS9UDCW5rUSX-SvaG6lpGx_3Zm5QHa9M,1556
|
|
12
|
-
umap/models.py,sha256=
|
|
12
|
+
umap/models.py,sha256=hyrrWrnmVDOY6asEROBQhSsewQEXt489GOXuKXROiW8,19469
|
|
13
13
|
umap/urls.py,sha256=LA3zxyu-GDo8kVqdyU7_bdbDGhDJV8_yFW4oEPTXw4s,7559
|
|
14
|
-
umap/utils.py,sha256=
|
|
15
|
-
umap/views.py,sha256=
|
|
14
|
+
umap/utils.py,sha256=WlTnzS2LUraYViSMsI2tf_0caq_yw_p8RLqpkjynf5E,6379
|
|
15
|
+
umap/views.py,sha256=qAxhI3DYP9dHsHCzvMq0z9bhRoC3phNlgs6L1x2Czgs,48065
|
|
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
|
|
@@ -31,12 +31,12 @@ umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=Tf9qK83KD_26vH6yH8WizwmMx_fPQ6Z2W
|
|
|
31
31
|
umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=5od7T8dd6rSSTM1AHj04trCM8-SF_fXFXWLJ9spgez0,20646
|
|
32
32
|
umap/locale/da/LC_MESSAGES/django.mo,sha256=xChVPJcihv-OB016M6e9VEYm68mTfmQFN60tukD5H5U,5851
|
|
33
33
|
umap/locale/da/LC_MESSAGES/django.po,sha256=tg9vL8x5ZG8tKN6YczUNSyIZDqb7z4F0GP_AVoTMO9g,16340
|
|
34
|
-
umap/locale/de/LC_MESSAGES/django.mo,sha256=
|
|
35
|
-
umap/locale/de/LC_MESSAGES/django.po,sha256=
|
|
34
|
+
umap/locale/de/LC_MESSAGES/django.mo,sha256=A5kUyC-J7_zPueGqh6CujU2tn1hM4lXwCDi8Ru3pqEA,14073
|
|
35
|
+
umap/locale/de/LC_MESSAGES/django.po,sha256=0tb6RSxENd7VEhMcR37xw3CTBTl4vvj2HNS_r--Tk6M,22041
|
|
36
36
|
umap/locale/el/LC_MESSAGES/django.mo,sha256=HQDIUXQJQBMQdZsagQLwNg_-obAgWlXjGo3Fm-4nOyQ,18164
|
|
37
37
|
umap/locale/el/LC_MESSAGES/django.po,sha256=O4EJCt2ftu_4MLE5BXa3BjSMXBVj4x17liuP4G_wxao,25189
|
|
38
38
|
umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
|
|
39
|
-
umap/locale/en/LC_MESSAGES/django.po,sha256=
|
|
39
|
+
umap/locale/en/LC_MESSAGES/django.po,sha256=7lQm96kH5MSDnQ3EPd8AJYSm1vvgKqvkZoHZaSWOLWo,16148
|
|
40
40
|
umap/locale/es/LC_MESSAGES/django.mo,sha256=Sa2idM_a_3YTpGb2O6-bpAHzFuhopDC3x4Dul-Zbj7I,13428
|
|
41
41
|
umap/locale/es/LC_MESSAGES/django.po,sha256=YVmhORb2o4Zi8nkKs8zeofCLllptQkOiGScJvsTVyTM,20703
|
|
42
42
|
umap/locale/et/LC_MESSAGES/django.mo,sha256=e1Vc1BCFkXui1HH9Olrf02GOp9EgPRrMMB8CDM3xpBo,8664
|
|
@@ -47,20 +47,20 @@ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=HU5l77iM_X3iMclmleDH41FHwKFKTFocr
|
|
|
47
47
|
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=u2KHiTbM_CnqrVP9vNKYkbHeSYLR5VWj5SZv-B8fZo8,20925
|
|
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=4cnvvzTgj9z-70o6RPltRHFFXCmrbkk_e6eCg4Q1ngI,14969
|
|
51
|
+
umap/locale/fr/LC_MESSAGES/django.po,sha256=Q8S2XyMs4GYX32_lfaXHQBG_3VNuAqOLLcfnEcVlncM,22500
|
|
52
52
|
umap/locale/gl/LC_MESSAGES/django.mo,sha256=i-or8X3SnF25bdD-K1s97XwlyjKlTIpFH3DXSfQZzKs,13398
|
|
53
53
|
umap/locale/gl/LC_MESSAGES/django.po,sha256=hnXAN8uEyRV_iCJimNGwDPhyFlH0sFL_QwEKhe9RdOc,20317
|
|
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=e6mEWkEyvK6K39ezlk9IOx1cWxCyDLvCJSPwB7-OwBw,14673
|
|
59
|
+
umap/locale/hu/LC_MESSAGES/django.po,sha256=GSeRorHt1RL_pabprxP-rCzxmvHt1KDPZ9d83Rp8Tl0,22379
|
|
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=
|
|
62
|
+
umap/locale/is/LC_MESSAGES/django.mo,sha256=423K77HN4SONa8axLavzPQF3s3aFsPmOnBbIe6EZUuk,14398
|
|
63
|
+
umap/locale/is/LC_MESSAGES/django.po,sha256=Y9eqaw82dMykEh3w92T8M2NzUvywlPUH5wMBvajTxVI,22040
|
|
64
64
|
umap/locale/it/LC_MESSAGES/django.mo,sha256=x4NpUfmC1hUTqcDAT7Ppo1Wuw1kE4LpaRiGr6pSsbZ8,13258
|
|
65
65
|
umap/locale/it/LC_MESSAGES/django.po,sha256=HJt4fOZWcxCHo1Nx_bXdV8FgoAPAQycPoV9kKzQfEOA,20747
|
|
66
66
|
umap/locale/ja/LC_MESSAGES/django.mo,sha256=zsTOx7DEn9r67Az293pOmtM3Hd8nFK53-TNZH1W6498,6369
|
|
@@ -143,25 +143,26 @@ umap/migrations/0023_alter_datalayer_uuid.py,sha256=L5We6QyIByVQA_hj_komQeGE9vOW
|
|
|
143
143
|
umap/migrations/0024_alter_map_share_status.py,sha256=QRjERy2XN0jsc8MM5cCba5freqpQrOfd8NpTijZHCDo,825
|
|
144
144
|
umap/migrations/0025_alter_datalayer_geojson.py,sha256=958v9AkpkAR5Q78ZcHC0fgZzN05BdfQwtNvUuPmWEvI,563
|
|
145
145
|
umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py,sha256=TnFCUYKwj6rhHziCr5hyx7FDEzdA0235NR3_LAzKTwU,696
|
|
146
|
+
umap/migrations/0027_map_tags.py,sha256=zAJzbZkB5Lsp1zczqVbRU2zLwMRfBQzvrDR6G37sKZM,610
|
|
146
147
|
umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
148
|
umap/settings/__init__.py,sha256=aPJkOTk0uFusIBA-uOjdUi10R5Cxt4jl5yv2_uCTUvo,1702
|
|
148
|
-
umap/settings/base.py,sha256=
|
|
149
|
+
umap/settings/base.py,sha256=Bk_8B7WUsD2yfB5IwgH1ZyvTyuSxTBYht0A06_t2RS0,11702
|
|
149
150
|
umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
|
|
150
151
|
umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
|
|
151
152
|
umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
|
-
umap/static/umap/base.css,sha256=
|
|
153
|
-
umap/static/umap/content.css,sha256=
|
|
153
|
+
umap/static/umap/base.css,sha256=ygt9jxzgBN1iJ1VNHX-p26xksvUN-JUHs_68IdO6nCk,5040
|
|
154
|
+
umap/static/umap/content.css,sha256=ToEEtcXLiu0RFSZtivVKWIg7H7AFPZdHG8FioDelsRA,12030
|
|
154
155
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
155
|
-
umap/static/umap/map.css,sha256=
|
|
156
|
+
umap/static/umap/map.css,sha256=zx69Pti1E0UXB9oquE0u3B2QBTkAFGYNl41Wo6dEIns,24736
|
|
156
157
|
umap/static/umap/nav.css,sha256=MsckfSfuMgADt71FIVpW351ZC2ATlr50iGW-47hziwk,1956
|
|
157
158
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
158
|
-
umap/static/umap/vars.css,sha256=
|
|
159
|
-
umap/static/umap/css/bar.css,sha256=
|
|
159
|
+
umap/static/umap/vars.css,sha256=Ngo6NRyvIL3T8KyyWZWD1hfcd7dkytbaQm4gDNhDxfU,2024
|
|
160
|
+
umap/static/umap/css/bar.css,sha256=IbpN1z9wbzn8AjiRBRCx9zZniL7HAOdnwVkRf9jfycw,6196
|
|
160
161
|
umap/static/umap/css/contextmenu.css,sha256=etLtnZXVxJTkmggr05vcfStOw4Gu9DDDTMUh0PKw2Mg,752
|
|
161
|
-
umap/static/umap/css/dialog.css,sha256=
|
|
162
|
-
umap/static/umap/css/form.css,sha256=
|
|
163
|
-
umap/static/umap/css/icon.css,sha256=
|
|
164
|
-
umap/static/umap/css/importers.css,sha256=
|
|
162
|
+
umap/static/umap/css/dialog.css,sha256=BNHxSqzrUTpcEwDlLDn5I8En-uoB7cR94zkr4PvsQPY,952
|
|
163
|
+
umap/static/umap/css/form.css,sha256=PDQgpLuZuxRwOpOKjjRlpE2IxNXJFz-v8p24uOOtrAI,13872
|
|
164
|
+
umap/static/umap/css/icon.css,sha256=YnbUenRybN938ErnZyNX0iDpsNYqqtsXpGSOfwxzq3E,5755
|
|
165
|
+
umap/static/umap/css/importers.css,sha256=xSpvBPy6s4ZGFW6c34sOaSCxO5JvBk_51enBSDR0dZY,1651
|
|
165
166
|
umap/static/umap/css/panel.css,sha256=YCtDmZdWwrGZmOz7FA4WYKD323vlsuRxQp71-hq_pc0,4204
|
|
166
167
|
umap/static/umap/css/popup.css,sha256=arW0Yfisk5EUnT7-uSZEIw4IYZxF2uMJkiOtqyEmcIE,2400
|
|
167
168
|
umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
|
|
@@ -179,14 +180,15 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
|
|
|
179
180
|
umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
|
|
180
181
|
umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
|
|
181
182
|
umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
|
|
182
|
-
umap/static/umap/img/16-white.svg,sha256=
|
|
183
|
-
umap/static/umap/img/16.svg,sha256=
|
|
183
|
+
umap/static/umap/img/16-white.svg,sha256=u2YiEV7A2gpMNCYnthIlQWLuThn5pu5HZb3tMSx4UpA,46954
|
|
184
|
+
umap/static/umap/img/16.svg,sha256=JTxZxEbX96_9zzZqvMgq8ZnZp1P-mOcov-6MVMyJAPM,28189
|
|
184
185
|
umap/static/umap/img/24-white.svg,sha256=HEqXQg5wuSSXyzMj9MzYKrB7hwVqLhL1WLy7aeRikQw,19491
|
|
185
|
-
umap/static/umap/img/24.svg,sha256=
|
|
186
|
+
umap/static/umap/img/24.svg,sha256=rfL7aQJWLwQ3roo3ZPICeHr_TeJNbt6seXvH0Ga0k8U,27344
|
|
186
187
|
umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
|
|
187
188
|
umap/static/umap/img/alert-icon-info.svg,sha256=wnfvaWhidanbIX8n2G8ppFG7pXyqnDjL9lhdbVoeCf8,735
|
|
188
189
|
umap/static/umap/img/alert-icon-success.svg,sha256=ZzH4Te0IMM0Cyf9MByh57gxNxVddOavA3gSGqsa3xM0,189
|
|
189
190
|
umap/static/umap/img/edit.svg,sha256=I3YHkH3X6CQP0TkoKev-9yQD-DeKobDl6MN-bAH2ghs,554
|
|
191
|
+
umap/static/umap/img/home.svg,sha256=xr7Qb3pIqOF-pR2eYv4ugFGuBwPS1KDKZGT3W6ojZcM,2017
|
|
190
192
|
umap/static/umap/img/icon-bg.png,sha256=EeliGSnA81n2CBPKELxRjCodV5Xyqy9yLaoacWNZkdQ,190
|
|
191
193
|
umap/static/umap/img/icon-delete.svg,sha256=ORwww_L88Co87ImlpKw4hj1DYG8KMbj2l5q6lxToRNg,386
|
|
192
194
|
umap/static/umap/img/icon-download.svg,sha256=-KLOn9NCIQka-tZOCbvOoA4Io7tJIi1lEdeFAmmnsrM,554
|
|
@@ -200,10 +202,12 @@ umap/static/umap/img/logo_filigree.png,sha256=Io-aPHqkEZi5z_WM-XialFGSHn7U6Oxwqb
|
|
|
200
202
|
umap/static/umap/img/logo_lightcyan.svg,sha256=lM1N90ZdBjkvqYo9VnM6nxas_j4SEjJzbCqdU9zu5Ls,302
|
|
201
203
|
umap/static/umap/img/logo_small.svg,sha256=Pk-yvvP5j1bcj3TY-k-SzvK1KBuXVBtsJEGSsPQvFPA,2465
|
|
202
204
|
umap/static/umap/img/marker.png,sha256=0DYKyg5h8swIh80zYGOXcjP3QwFthMeHIO4AJv5V3VE,375
|
|
203
|
-
umap/static/umap/img/marker.svg,sha256=
|
|
205
|
+
umap/static/umap/img/marker.svg,sha256=uXQnukhS-yHggwnatPDdmuW0-tYXOTJkZpQWzclvFuA,199
|
|
204
206
|
umap/static/umap/img/opensource.svg,sha256=DLoPUwQivWNDY0DsKLsL0CK4a6x30ao0YXuUJN-HzYI,473
|
|
205
207
|
umap/static/umap/img/osm.svg,sha256=Owz6LQS8mm5ySW0XqnpyXf0WZx7pthz2GLzqwk5cuBA,1997
|
|
206
208
|
umap/static/umap/img/search.gif,sha256=Ws7V8knHJGdxG5_12zfPoBweX6PjOjHzrzYY4eyAY-4,1472
|
|
209
|
+
umap/static/umap/img/target.svg,sha256=Ks0dmaJgh8UtM6TfMjh3mG5eAbtIp_j8UnblS1UYSDM,1467
|
|
210
|
+
umap/static/umap/img/importers/banfr.svg,sha256=xxvUJFrxGMnUqFWa7E5ii5_b17csA3Ys6fVybN6pFo0,2965
|
|
207
211
|
umap/static/umap/img/importers/cadastrefr.svg,sha256=L55Jy0rkP2rpfuzuw8iYQ7lmUPMwOW4rJ4BfEeap50Y,3084
|
|
208
212
|
umap/static/umap/img/importers/communesfr.svg,sha256=P4M9PyT3Y8PCWhp5GVw2W-TeB0xZEWlUzKv7fkfihBk,4760
|
|
209
213
|
umap/static/umap/img/importers/datasets.svg,sha256=Pqn6WzE0ZpE8QLgml75mnkstXseTpI1wXXN5MyjOshU,4075
|
|
@@ -217,181 +221,172 @@ umap/static/umap/img/providers/github.png,sha256=sA3oznlXAC2lqynqS2PMuNwZPQ3REfK
|
|
|
217
221
|
umap/static/umap/img/providers/keycloak.png,sha256=76ZaWlmmVdpr7t33LDqYRPRsuKsFmrOjLQk17LsezYo,1520
|
|
218
222
|
umap/static/umap/img/providers/openstreetmap-oauth2.png,sha256=fzqr15HexNfyi2l3Pxos9ptnmXfTH9Gm2v-1o7F1W7A,1680
|
|
219
223
|
umap/static/umap/img/providers/twitter-oauth2.png,sha256=9sCQYpLXTK40nvQmwEWd325XgBPq-Wt2JGu59GJDRfs,1589
|
|
220
|
-
umap/static/umap/img/source/16-white.svg,sha256=
|
|
221
|
-
umap/static/umap/img/source/16.svg,sha256=
|
|
224
|
+
umap/static/umap/img/source/16-white.svg,sha256=Ogo9QvwvvbB67K6yeegjpk_i03bqJb-ern8r3zyKpNY,81349
|
|
225
|
+
umap/static/umap/img/source/16.svg,sha256=FN7XUTwq5QH_W_sIrqW9lUu_0nQodmZqzCUh5Go8b9c,51416
|
|
222
226
|
umap/static/umap/img/source/24-white.svg,sha256=ANcgKPzXWjbx1JlxHM2jBjCZag81SAK2EtbenPlaqo0,31442
|
|
223
|
-
umap/static/umap/img/source/24.svg,sha256=
|
|
224
|
-
umap/static/umap/js/umap.controls.js,sha256=
|
|
227
|
+
umap/static/umap/img/source/24.svg,sha256=0qzc5BnYCKGCaTZCmeAa9AdD2aNPYGLKPKs_rjLfayk,41479
|
|
228
|
+
umap/static/umap/js/umap.controls.js,sha256=Loq05uXUs4UhCKCBn0nbrdxHUeMUwYmjd6SV3GJsTBY,22906
|
|
225
229
|
umap/static/umap/js/umap.core.js,sha256=FGx6GVcfrE_sn_izOt5r4DLkbO3-bv28jeXV8kwwUio,7029
|
|
226
230
|
umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
|
|
227
231
|
umap/static/umap/js/components/fragment.js,sha256=-rOrcyPpZ5ihD_hh0C1qrYpaim11JYh5fg0x_od_m5U,379
|
|
228
232
|
umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
|
|
229
|
-
umap/static/umap/js/components/alerts/alert.js,sha256=
|
|
233
|
+
umap/static/umap/js/components/alerts/alert.js,sha256=_BcG9WluOkJTj_v795c0PIXvv5EZQs0uO5-rUhcwEco,4482
|
|
230
234
|
umap/static/umap/js/modules/autocomplete.js,sha256=j3rZeiBypGcFenEN_7xhYdffYrUP92SATrEB_eTZWwk,8634
|
|
231
|
-
umap/static/umap/js/modules/browser.js,sha256=
|
|
232
|
-
umap/static/umap/js/modules/caption.js,sha256=
|
|
235
|
+
umap/static/umap/js/modules/browser.js,sha256=OZqTRyh_rkJcoA-gZ_x25RvKSNxXYqwdYs-tWZEvT84,9423
|
|
236
|
+
umap/static/umap/js/modules/caption.js,sha256=jlS9OqW8-QTZLHdebQ8_-6Aj6jObg-mqA1r8VzrW5z4,5490
|
|
233
237
|
umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
|
|
234
238
|
umap/static/umap/js/modules/drop.js,sha256=aHuz_sDgWAqDEH49OWNhnnyFvGLDMCoeeo5xaBLZwAg,1431
|
|
235
|
-
umap/static/umap/js/modules/facets.js,sha256=
|
|
236
|
-
umap/static/umap/js/modules/formatter.js,sha256=
|
|
237
|
-
umap/static/umap/js/modules/global.js,sha256=
|
|
238
|
-
umap/static/umap/js/modules/help.js,sha256=
|
|
239
|
+
umap/static/umap/js/modules/facets.js,sha256=ftNFlXfIufQqb1a7QG1JYT2PWrd3tsAko-tQoM0f53U,4773
|
|
240
|
+
umap/static/umap/js/modules/formatter.js,sha256=6N6P9HeIkj5-NI4I1UfhDFc7q-x6_jR26JiCriQpkoM,4724
|
|
241
|
+
umap/static/umap/js/modules/global.js,sha256=pmO5iFezaPhxQemgscta2S1J4vBRHIpjALjym2Hs9Z4,941
|
|
242
|
+
umap/static/umap/js/modules/help.js,sha256=vjf1_Gt5rhG8JIo80j-8ln68wMuWewzn7jcwZootBEg,9756
|
|
239
243
|
umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
|
|
240
|
-
umap/static/umap/js/modules/importer.js,sha256
|
|
244
|
+
umap/static/umap/js/modules/importer.js,sha256=F3SyebHMDxP25kAIs-nRUPkIAqcGmjFphd-yMgiYM1U,11270
|
|
241
245
|
umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
|
|
242
246
|
umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
|
|
243
|
-
umap/static/umap/js/modules/permissions.js,sha256=
|
|
247
|
+
umap/static/umap/js/modules/permissions.js,sha256=Ye7GKtG84ciAVQ-iswBOR7Hf2TpDVLkW6aPlWbrzrqk,8715
|
|
244
248
|
umap/static/umap/js/modules/request.js,sha256=9GRJoOPbdkHL9OFP6Joaf5wzsJckPyiG2O7AxQciTik,3885
|
|
245
|
-
umap/static/umap/js/modules/rules.js,sha256=
|
|
246
|
-
umap/static/umap/js/modules/
|
|
247
|
-
umap/static/umap/js/modules/
|
|
248
|
-
umap/static/umap/js/modules/
|
|
249
|
-
umap/static/umap/js/modules/
|
|
250
|
-
umap/static/umap/js/modules/
|
|
251
|
-
umap/static/umap/js/modules/umap.js,sha256=ofA7A7-9X4Npgk1xDopzPWdIn4iF7uxN4zvHO3BR9DY,53321
|
|
249
|
+
umap/static/umap/js/modules/rules.js,sha256=pIOt28Lmt64I2jplQepr1Oy0paUu-CS8BX94N06LjqQ,7587
|
|
250
|
+
umap/static/umap/js/modules/schema.js,sha256=a92jlHxq-75cU61HsbMv2KCiCNAq0Pl45kQMqkFC6G4,13591
|
|
251
|
+
umap/static/umap/js/modules/share.js,sha256=eJ5BISGhGTp7908k-zQY94R5J04MzFZX5PLbYhP-_HE,7227
|
|
252
|
+
umap/static/umap/js/modules/slideshow.js,sha256=iIb2J_JSRYo1tyWwqoYGyhejdTctveY0Jne8nKdnG7g,3610
|
|
253
|
+
umap/static/umap/js/modules/tableeditor.js,sha256=tNZMAjzd7ji9MEcSTctH6D7gH3sK2ZgjCSiSQbFxxbQ,9901
|
|
254
|
+
umap/static/umap/js/modules/umap.js,sha256=NOBxVRxVu9na4W4wJpF9LyRKoQCxVRWo71Xvpeox6uw,54279
|
|
252
255
|
umap/static/umap/js/modules/urls.js,sha256=76cFqycj2O8huuoYYBvxnVt2Fc2UDbgrRsiv6lQmcSY,890
|
|
253
|
-
umap/static/umap/js/modules/utils.js,sha256=
|
|
254
|
-
umap/static/umap/js/modules/data/features.js,sha256=
|
|
255
|
-
umap/static/umap/js/modules/data/layer.js,sha256=
|
|
256
|
-
umap/static/umap/js/modules/form/builder.js,sha256
|
|
257
|
-
umap/static/umap/js/modules/form/fields.js,sha256=
|
|
258
|
-
umap/static/umap/js/modules/importers/
|
|
259
|
-
umap/static/umap/js/modules/importers/
|
|
256
|
+
umap/static/umap/js/modules/utils.js,sha256=hP16vfGAb4aE2XWG0MTVKtHnPcqIVGmNt4BCadMJAC0,15916
|
|
257
|
+
umap/static/umap/js/modules/data/features.js,sha256=PRImf5E9kykrQc0C3XZ_TbISfTe1g8nPG6fh_ye99nQ,33185
|
|
258
|
+
umap/static/umap/js/modules/data/layer.js,sha256=YsazQ0_9ojAtiDO9McdqNr4D0MOXX-xVDA-qN_nb7TY,35940
|
|
259
|
+
umap/static/umap/js/modules/form/builder.js,sha256=-V3t6L2YZXwICi2ks5VAhh2Iyq2fYxxkV2iYIsaaRaQ,6435
|
|
260
|
+
umap/static/umap/js/modules/form/fields.js,sha256=tnggW6HdcVOPLZo2ZKV0QGMWDctz4tLo4bVhaD1IU8Q,34285
|
|
261
|
+
umap/static/umap/js/modules/importers/banfr.js,sha256=TBwL3GQJdzYtaDtxeHxyPQ7Ycy5zTaQyvzXa55X7n2I,2932
|
|
262
|
+
umap/static/umap/js/modules/importers/cadastrefr.js,sha256=aTMmeMvg1vBcTn8DNFqRohELlOLEhyp9OjD3ymLqPSs,2262
|
|
263
|
+
umap/static/umap/js/modules/importers/communesfr.js,sha256=HoeVApZ0ORDxQt4dA86nKDldey3aJNeLdagMkn5skUg,1723
|
|
260
264
|
umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
|
|
261
265
|
umap/static/umap/js/modules/importers/geodatamine.js,sha256=vIxANzNc1TAe3QcZroIxqNvos1vexBmKDTtzErBNiY4,2949
|
|
262
266
|
umap/static/umap/js/modules/importers/overpass.js,sha256=cY2kb3Fs8tA6PqBjGyc5bI0mg7L1ijapIAkVGwEhSwI,3341
|
|
263
|
-
umap/static/umap/js/modules/rendering/icon.js,sha256=
|
|
264
|
-
umap/static/umap/js/modules/rendering/map.js,sha256=
|
|
265
|
-
umap/static/umap/js/modules/rendering/popup.js,sha256=
|
|
266
|
-
umap/static/umap/js/modules/rendering/template.js,sha256=
|
|
267
|
-
umap/static/umap/js/modules/rendering/ui.js,sha256=
|
|
267
|
+
umap/static/umap/js/modules/rendering/icon.js,sha256=KurT0rx-mOg3FcaDWVeVidWZgp_P-mIm6nWxt5JT__A,8316
|
|
268
|
+
umap/static/umap/js/modules/rendering/map.js,sha256=0SBHNqx9FbK2d_7dWFZI-iugiWKL2o06lhlSb5ej2Zc,12425
|
|
269
|
+
umap/static/umap/js/modules/rendering/popup.js,sha256=OtQYpjhWCoW20XBFeeSKCXMqN-szohaX1TKWhPc9eBo,2577
|
|
270
|
+
umap/static/umap/js/modules/rendering/template.js,sha256=CTH376AbTBfIeYApeQ2qy4M8dYX6lN_h7czzO28R6hY,9524
|
|
271
|
+
umap/static/umap/js/modules/rendering/ui.js,sha256=jO1lq6gHHqNIny7VZOKAT2eQnapQNfbA62-qILlmCqQ,13763
|
|
268
272
|
umap/static/umap/js/modules/rendering/layers/base.js,sha256=DeXxRwTatoxxGStT1tWyNQVCrIkbgd7ZaawIPxWIcOQ,2525
|
|
269
|
-
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=
|
|
270
|
-
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=
|
|
271
|
-
umap/static/umap/js/modules/rendering/layers/heat.js,sha256=
|
|
272
|
-
umap/static/umap/js/modules/sync/engine.js,sha256=
|
|
273
|
+
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=S8oMae7MjQd2QFS2Q5IRb3eUMWfLiPoo-twpXBDtJXo,14765
|
|
274
|
+
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=2Fq7IXqUXdEHjqHcEyH-3AgFKnO-bUbSZjPpYlKgMyQ,3751
|
|
275
|
+
umap/static/umap/js/modules/rendering/layers/heat.js,sha256=MNYBAdU03kG7AsXl4uaiQlAkeFMEiMSoljv8_zQsMDg,4779
|
|
276
|
+
umap/static/umap/js/modules/sync/engine.js,sha256=iDoD063ZTsDh4HfljRdSwh8Q0Ei0OJR4olif3EkcWxg,18074
|
|
273
277
|
umap/static/umap/js/modules/sync/hlc.js,sha256=XeJz3x7qiDz7v-mcgGIynj5ks34FpWx_oSPUPFd_ZGA,2991
|
|
274
|
-
umap/static/umap/js/modules/sync/
|
|
278
|
+
umap/static/umap/js/modules/sync/undo.js,sha256=CQufaRvI_-dT0HGm5Wl8hBbO00IruflPdlmWJ4acgFM,2910
|
|
279
|
+
umap/static/umap/js/modules/sync/updaters.js,sha256=IHgHknhn-GB2yCvK1TO_iG975QyFD9LyHbT8gKb1u1o,3854
|
|
275
280
|
umap/static/umap/js/modules/sync/websocket.js,sha256=M2wsFuW5vRsY677dRSAFUWJl5MBPCOvaNYCAxBAqjcA,2522
|
|
276
|
-
umap/static/umap/js/modules/ui/bar.js,sha256=
|
|
281
|
+
umap/static/umap/js/modules/ui/bar.js,sha256=vePC6cPZY_GYCtISHJ6HmgUKTPCpaHFYC6QXNCks99E,14145
|
|
277
282
|
umap/static/umap/js/modules/ui/base.js,sha256=2Nk-5bDA5fgzcbKXKBtrUJIyl2vFuakENWv0oKSh3aU,2413
|
|
278
283
|
umap/static/umap/js/modules/ui/contextmenu.js,sha256=eSo9zSPO_4iWIztvbM5n1TQYdX60Yndt3xIWGy10_X0,2842
|
|
279
284
|
umap/static/umap/js/modules/ui/dialog.js,sha256=geAcMf2ajpNpDePDbaOz_kOiWOZWtpOHT7kBYqOHEa0,5620
|
|
280
285
|
umap/static/umap/js/modules/ui/panel.js,sha256=QsoJEPgrXQ1k7_kVFbJgIFKVgTsPFyL41Hu7GN-bubg,3373
|
|
281
|
-
umap/static/umap/js/modules/ui/tooltip.js,sha256=
|
|
282
|
-
umap/static/umap/locale/am_ET.js,sha256=
|
|
283
|
-
umap/static/umap/locale/am_ET.json,sha256=
|
|
284
|
-
umap/static/umap/locale/ar.js,sha256=
|
|
285
|
-
umap/static/umap/locale/ar.json,sha256=
|
|
286
|
-
umap/static/umap/locale/ast.js,sha256=
|
|
287
|
-
umap/static/umap/locale/ast.json,sha256=
|
|
288
|
-
umap/static/umap/locale/bg.js,sha256=
|
|
289
|
-
umap/static/umap/locale/bg.json,sha256=
|
|
290
|
-
umap/static/umap/locale/br.js,sha256
|
|
291
|
-
umap/static/umap/locale/br.json,sha256=
|
|
292
|
-
umap/static/umap/locale/ca.js,sha256
|
|
293
|
-
umap/static/umap/locale/ca.json,sha256=
|
|
294
|
-
umap/static/umap/locale/cs_CZ.js,sha256=
|
|
295
|
-
umap/static/umap/locale/cs_CZ.json,sha256=
|
|
296
|
-
umap/static/umap/locale/da.js,sha256=
|
|
297
|
-
umap/static/umap/locale/da.json,sha256=
|
|
298
|
-
umap/static/umap/locale/de.js,sha256=
|
|
299
|
-
umap/static/umap/locale/de.json,sha256=
|
|
300
|
-
umap/static/umap/locale/el.js,sha256=
|
|
301
|
-
umap/static/umap/locale/el.json,sha256=
|
|
302
|
-
umap/static/umap/locale/en.js,sha256=
|
|
303
|
-
umap/static/umap/locale/en.json,sha256=
|
|
304
|
-
umap/static/umap/locale/en_US.json,sha256=
|
|
305
|
-
umap/static/umap/locale/es.js,sha256=
|
|
306
|
-
umap/static/umap/locale/es.json,sha256=
|
|
307
|
-
umap/static/umap/locale/et.js,sha256=
|
|
308
|
-
umap/static/umap/locale/et.json,sha256=
|
|
309
|
-
umap/static/umap/locale/eu.js,sha256=
|
|
310
|
-
umap/static/umap/locale/eu.json,sha256=
|
|
311
|
-
umap/static/umap/locale/fa_IR.js,sha256=
|
|
312
|
-
umap/static/umap/locale/fa_IR.json,sha256=
|
|
313
|
-
umap/static/umap/locale/fi.js,sha256=
|
|
314
|
-
umap/static/umap/locale/fi.json,sha256=
|
|
315
|
-
umap/static/umap/locale/fr.js,sha256=
|
|
316
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
317
|
-
umap/static/umap/locale/gl.js,sha256=
|
|
318
|
-
umap/static/umap/locale/gl.json,sha256=
|
|
319
|
-
umap/static/umap/locale/he.js,sha256=
|
|
320
|
-
umap/static/umap/locale/he.json,sha256=
|
|
321
|
-
umap/static/umap/locale/hr.js,sha256=
|
|
322
|
-
umap/static/umap/locale/hr.json,sha256=
|
|
323
|
-
umap/static/umap/locale/hu.js,sha256=
|
|
324
|
-
umap/static/umap/locale/hu.json,sha256=
|
|
325
|
-
umap/static/umap/locale/id.js,sha256=
|
|
326
|
-
umap/static/umap/locale/id.json,sha256=
|
|
327
|
-
umap/static/umap/locale/is.js,sha256=
|
|
328
|
-
umap/static/umap/locale/is.json,sha256=
|
|
329
|
-
umap/static/umap/locale/it.js,sha256=
|
|
330
|
-
umap/static/umap/locale/it.json,sha256=
|
|
331
|
-
umap/static/umap/locale/ja.js,sha256=
|
|
332
|
-
umap/static/umap/locale/ja.json,sha256=
|
|
333
|
-
umap/static/umap/locale/ko.js,sha256=
|
|
334
|
-
umap/static/umap/locale/ko.json,sha256=
|
|
335
|
-
umap/static/umap/locale/lt.js,sha256=
|
|
336
|
-
umap/static/umap/locale/lt.json,sha256=
|
|
337
|
-
umap/static/umap/locale/ms.js,sha256=
|
|
338
|
-
umap/static/umap/locale/ms.json,sha256=
|
|
339
|
-
umap/static/umap/locale/nl.js,sha256=
|
|
340
|
-
umap/static/umap/locale/nl.json,sha256=
|
|
341
|
-
umap/static/umap/locale/no.js,sha256
|
|
342
|
-
umap/static/umap/locale/no.json,sha256=
|
|
343
|
-
umap/static/umap/locale/pl.js,sha256=
|
|
344
|
-
umap/static/umap/locale/pl.json,sha256=
|
|
345
|
-
umap/static/umap/locale/pl_PL.json,sha256=
|
|
346
|
-
umap/static/umap/locale/pt.js,sha256
|
|
347
|
-
umap/static/umap/locale/pt.json,sha256=
|
|
348
|
-
umap/static/umap/locale/pt_BR.js,sha256=
|
|
349
|
-
umap/static/umap/locale/pt_BR.json,sha256=
|
|
350
|
-
umap/static/umap/locale/pt_PT.js,sha256=
|
|
351
|
-
umap/static/umap/locale/pt_PT.json,sha256=
|
|
352
|
-
umap/static/umap/locale/ro.js,sha256=
|
|
353
|
-
umap/static/umap/locale/ro.json,sha256=
|
|
354
|
-
umap/static/umap/locale/ru.js,sha256=
|
|
355
|
-
umap/static/umap/locale/ru.json,sha256=
|
|
286
|
+
umap/static/umap/js/modules/ui/tooltip.js,sha256=KxUQMtH29DZSCsZ6uZMtNlNR2NnQDnRMfJMJ35O_w5k,1919
|
|
287
|
+
umap/static/umap/locale/am_ET.js,sha256=O2Mycxx-JDRYpPArgz-Y9FrkAj0J4trzufeP-bkEHP8,34401
|
|
288
|
+
umap/static/umap/locale/am_ET.json,sha256=6CROIMKvlEJTL32SXxmGPLqXHVcM1tYs5r90kGH9e3c,34330
|
|
289
|
+
umap/static/umap/locale/ar.js,sha256=ht4D939k2mGOQdATgnqiOEbOidmGRLxG7rTmbE7NkQM,31197
|
|
290
|
+
umap/static/umap/locale/ar.json,sha256=ZfryLqlyoNr5iv80VOXdQbPN11P0IQrIvPB-RwAeRHI,31132
|
|
291
|
+
umap/static/umap/locale/ast.js,sha256=z8GpkjKc7iVDn2Mu5YYebgq3mAUXgffhMU6ig5e1yb4,30801
|
|
292
|
+
umap/static/umap/locale/ast.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
|
|
293
|
+
umap/static/umap/locale/bg.js,sha256=a1HBelbjSXVyc5J11NcDNXqvhI_bSQRIA2guD1CNsUE,33670
|
|
294
|
+
umap/static/umap/locale/bg.json,sha256=VPCUC_oUi2VTjOZHhwh4bfLN9AQZj1iUbmAzgTgs0R4,33605
|
|
295
|
+
umap/static/umap/locale/br.js,sha256=-vDSLoKGUBwiPqxT5vaV5gFnkWkorZrHR0kALgzhOMQ,32663
|
|
296
|
+
umap/static/umap/locale/br.json,sha256=QElv4xsj_J40tvWAUurfCnU1v3FyiHL59V45bCpYWWU,32598
|
|
297
|
+
umap/static/umap/locale/ca.js,sha256=gNKGKLehHVDHqTNWxblcPteOlOseckgjayaCClOaVKg,32306
|
|
298
|
+
umap/static/umap/locale/ca.json,sha256=z2qghJsAmx94iI7nw6-kSKAhcfzaPQtrZqeMHEsrWjA,32241
|
|
299
|
+
umap/static/umap/locale/cs_CZ.js,sha256=34foxcemMvpXwTivoBDb8CaY4NvmFSsDnyJy1vWqAjo,33504
|
|
300
|
+
umap/static/umap/locale/cs_CZ.json,sha256=w5yNShgd2NMXyvsbAKokkchayH9YDN9CxWkSxNkj0yo,33433
|
|
301
|
+
umap/static/umap/locale/da.js,sha256=aj89cjPA7sZSDquiSMmvwue8dV4RloAKJEPiMM3txLQ,31152
|
|
302
|
+
umap/static/umap/locale/da.json,sha256=gEaRgEOjn7vyWZCi2xdGe-3H_dJ4LJnpxZyfyTiL4zg,31087
|
|
303
|
+
umap/static/umap/locale/de.js,sha256=1j4mqEMdMTC6Pbtan8U-iqDB5TVzauvPtCbA4O9v-P4,33849
|
|
304
|
+
umap/static/umap/locale/de.json,sha256=p_By7kcy4X0mbX67-MIidIcfrE37lAfpLKekqvsdW7g,33784
|
|
305
|
+
umap/static/umap/locale/el.js,sha256=LMMB0rd5Ug4ccZXP5omt4J9pPMQogiuPgjUFAkPlzHo,44181
|
|
306
|
+
umap/static/umap/locale/el.json,sha256=uuPmo6RrRPGf0CpmHVS5jGKMMzCoB0FBgUNDE8XdxOY,44116
|
|
307
|
+
umap/static/umap/locale/en.js,sha256=kmcaLlz15CJhsXaDiMCtaLm0f8Ce9MgY093h7BdpJ58,30799
|
|
308
|
+
umap/static/umap/locale/en.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
|
|
309
|
+
umap/static/umap/locale/en_US.json,sha256=VxaLuIQ86N8_z1kio9xIeW6ogSzbxBzPNH6NKTvZzAs,30521
|
|
310
|
+
umap/static/umap/locale/es.js,sha256=kFeMDKjHsljkkCDnIk3Ri1a5VhgPKI-T5xdGYjv1iZ0,33740
|
|
311
|
+
umap/static/umap/locale/es.json,sha256=8kW0dGLPdGQzsS8jrcEhtE8g6yl_taNKzXUPyxM33SI,33675
|
|
312
|
+
umap/static/umap/locale/et.js,sha256=1ZLA7w_m6q4yhPAvAfKoIWHe5Qz-USotJWQBTOPDSzk,30957
|
|
313
|
+
umap/static/umap/locale/et.json,sha256=4xouZrz2oRYpibPni3_4XNPTAi1lIvAuz1LO4HtZ-9M,30892
|
|
314
|
+
umap/static/umap/locale/eu.js,sha256=g2AEjKXmO311ULUHitF0S-eRLmWyQH8Qk-p3YvwkbTU,32860
|
|
315
|
+
umap/static/umap/locale/eu.json,sha256=DEMcsInH5oflnDFNeHMo0eG-iJbz6OPpcVWxk83QTns,32795
|
|
316
|
+
umap/static/umap/locale/fa_IR.js,sha256=VpCSoG5yo783J5hU2eNssIzRPiI5MjlLkhkhpTIQZ50,39236
|
|
317
|
+
umap/static/umap/locale/fa_IR.json,sha256=RTIkylzQqq2Isp7_ZENSMxbZr_mIB-5Ls-y3GlVub_k,39165
|
|
318
|
+
umap/static/umap/locale/fi.js,sha256=AOtrgpRnzYqdGDa_olC3T0xY9uJpij0fHPuy6po5oL8,31581
|
|
319
|
+
umap/static/umap/locale/fi.json,sha256=PhvtgboxugR23AaHQP_UN1vfS-sZxbWilKaRrhtofj8,31516
|
|
320
|
+
umap/static/umap/locale/fr.js,sha256=GGBVQoqbmNX26Nap0y264mXinLLav7tYNNR1wXxIUY8,33754
|
|
321
|
+
umap/static/umap/locale/fr.json,sha256=m3Eu8ZnyaCHAnPQHu7Gb51UOCxsG6j4dxMXsVV4tHK4,33689
|
|
322
|
+
umap/static/umap/locale/gl.js,sha256=41Ve76c0ZKzOqUa4iOm2DEIb0zlDy7GSAANPFQRZg_s,33664
|
|
323
|
+
umap/static/umap/locale/gl.json,sha256=V6fUTvdj1mmmUjUFk_OCFz6v2utXPdF2hNx6QYSpLvU,33599
|
|
324
|
+
umap/static/umap/locale/he.js,sha256=LkeuFRMh62Mm1JEkjcL660_H-f7uQnx_-HZj8nzAwgY,34038
|
|
325
|
+
umap/static/umap/locale/he.json,sha256=WQ2X5_2SXFcyp1BxdOpCh8dcfMN8Cb4VdmAntSkruSs,33973
|
|
326
|
+
umap/static/umap/locale/hr.js,sha256=un3MIxYSjbQBo8dl4XlDYlYVmYS2O09nnD8jUZLNjTo,30971
|
|
327
|
+
umap/static/umap/locale/hr.json,sha256=RqIiis1Y6vAyHOsij-RNq3hOBIsy8UV7G3iPcg9f0I4,30906
|
|
328
|
+
umap/static/umap/locale/hu.js,sha256=wcdYLRFuKzw8qLVEgAFlWuVJ6mx56G6l3h5aaxEkce8,35314
|
|
329
|
+
umap/static/umap/locale/hu.json,sha256=Mo7pFejsrZrkKi7nx0PBijJBItktGa3gZDWvR3f-ra4,35249
|
|
330
|
+
umap/static/umap/locale/id.js,sha256=0Jr1DgplnSafYlQ3KaZ1bG1z_9IiwQy7cGjqJO8YoS0,30799
|
|
331
|
+
umap/static/umap/locale/id.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
|
|
332
|
+
umap/static/umap/locale/is.js,sha256=Z989BeZOKuPI3rMqvOmkJ115_4u9s2Q5k7p3TldiwtM,32558
|
|
333
|
+
umap/static/umap/locale/is.json,sha256=Rw_cXWfis7F7yFBkVD7-tscEikAmAwvYOeqbrcHU_ZA,32493
|
|
334
|
+
umap/static/umap/locale/it.js,sha256=meznASpfsOXaA7YWdM-QjKyzk7kQAOMoFb6n4kVlLOA,33559
|
|
335
|
+
umap/static/umap/locale/it.json,sha256=We9kS3kGjfIfbgaI4dFL5Q76hMIloK1dYAGp5LYmadE,33494
|
|
336
|
+
umap/static/umap/locale/ja.js,sha256=fQJnhi0UEE4QV7Ug6IqkjGMlt6QPRQ6nJPxq4DVxhUo,33158
|
|
337
|
+
umap/static/umap/locale/ja.json,sha256=YqapMEM0lMV6-pOrhQA_GcYEw-HvyNHyOWBWqyRWbTQ,33093
|
|
338
|
+
umap/static/umap/locale/ko.js,sha256=EO1li1610z99fSZDkG4neNDp76alVyPlFLXfrf8yA7I,30954
|
|
339
|
+
umap/static/umap/locale/ko.json,sha256=SX338vKwG54X9n4TXGdWQJeWITo9FuIFc6S-AtMzegs,30889
|
|
340
|
+
umap/static/umap/locale/lt.js,sha256=15rmJN6oJozaXU3fznQ4MtO8WoZYvnd1zCLYavW-HyI,31566
|
|
341
|
+
umap/static/umap/locale/lt.json,sha256=UmBqGSB6Fxi-_zX7VWYShrSNmLzDN7L81lghSSif6OI,31501
|
|
342
|
+
umap/static/umap/locale/ms.js,sha256=be1E29xFLGgM_gIhV04Va-BnAj6BhsF6ADV1S0qHz4g,31902
|
|
343
|
+
umap/static/umap/locale/ms.json,sha256=BTP3X8jLz-H5JM0Hl0MHBn3tQgM5QiJ3EH2j9d1PnKI,31837
|
|
344
|
+
umap/static/umap/locale/nl.js,sha256=vA3qYWjiXHjGjZtBJp8kCmzY8cPSk3MKuqLqeCD8Yvk,33104
|
|
345
|
+
umap/static/umap/locale/nl.json,sha256=3odVH82p4A0N99K-130miI8qjZqzJHaO7nVaVZd8Dbc,33039
|
|
346
|
+
umap/static/umap/locale/no.js,sha256=EQXgdZFTY8iRWYLyulRgJQ-80UrKDkl1NivUngtle60,31001
|
|
347
|
+
umap/static/umap/locale/no.json,sha256=LlgG3GAW6jwY7gDWSzBrq10uAanA1TjxL3BsXI5_yaQ,30936
|
|
348
|
+
umap/static/umap/locale/pl.js,sha256=J8h44TqNZ-1xQI4RSYcpv2NrnvRq4baFYKZlB6b48as,32578
|
|
349
|
+
umap/static/umap/locale/pl.json,sha256=aRxtIcGrLsQSwLuSV6DB2egu4R6plPkOI-BAH37uHpk,32513
|
|
350
|
+
umap/static/umap/locale/pl_PL.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
|
|
351
|
+
umap/static/umap/locale/pt.js,sha256=xapyKKI2vXv8tvhAPuXa2-BleXUhxCPvyPZzNUnft6E,33707
|
|
352
|
+
umap/static/umap/locale/pt.json,sha256=xnbfzhprN7UvsCwNa7wMlLTy5xFcteGBNGacXpOgWSM,33642
|
|
353
|
+
umap/static/umap/locale/pt_BR.js,sha256=6kNgL0JXVW1AY4A0SKgi_SpaT707kd_Xw1pacw5Pypg,32121
|
|
354
|
+
umap/static/umap/locale/pt_BR.json,sha256=a6oW0J0VsTojLORj8OtaMmnGMgqf4xNK3G7wyQrqQRM,32050
|
|
355
|
+
umap/static/umap/locale/pt_PT.js,sha256=CoiHisGJ_-Uc7elWTTw3qUCztkT-jqGohC2VOznuDoY,33387
|
|
356
|
+
umap/static/umap/locale/pt_PT.json,sha256=pEIZFLt6sVu3FXWmupBb7Ng3cHYmtiUFmO-Z_tLszVI,33316
|
|
357
|
+
umap/static/umap/locale/ro.js,sha256=EUIXVcUSwpVDSJwBDGvNrG5TRE1Ucwi4zgvktHDvvqs,30828
|
|
358
|
+
umap/static/umap/locale/ro.json,sha256=SRGXYc2VC84yll41iCEGTOQP5K4dFvQXY415ZV0wdvk,30763
|
|
359
|
+
umap/static/umap/locale/ru.js,sha256=l-6kuWNIy7m_3yKjCgv97XFnz_XU19TjedowNU_HNSo,37667
|
|
360
|
+
umap/static/umap/locale/ru.json,sha256=LIlspjSyBm1UjWivU8A53RLka0g3Yz4xq9acBbx20vg,37602
|
|
356
361
|
umap/static/umap/locale/si.js,sha256=mcgXepIhSBBoRr6LvmvdRJFIwEGzXdjABC6W7lGYQUg,28504
|
|
357
362
|
umap/static/umap/locale/si.json,sha256=DHd8onJhyE8lBV76Zc9XmpHejZZOx0FwF3zaMlPq_Dc,28439
|
|
358
|
-
umap/static/umap/locale/sk_SK.js,sha256=
|
|
359
|
-
umap/static/umap/locale/sk_SK.json,sha256=
|
|
360
|
-
umap/static/umap/locale/sl.js,sha256
|
|
361
|
-
umap/static/umap/locale/sl.json,sha256=
|
|
362
|
-
umap/static/umap/locale/sr.js,sha256=
|
|
363
|
-
umap/static/umap/locale/sr.json,sha256=
|
|
364
|
-
umap/static/umap/locale/sv.js,sha256=
|
|
365
|
-
umap/static/umap/locale/sv.json,sha256=
|
|
366
|
-
umap/static/umap/locale/th_TH.js,sha256=
|
|
367
|
-
umap/static/umap/locale/th_TH.json,sha256=
|
|
368
|
-
umap/static/umap/locale/tr.js,sha256=
|
|
369
|
-
umap/static/umap/locale/tr.json,sha256=
|
|
370
|
-
umap/static/umap/locale/uk_UA.js,sha256=
|
|
371
|
-
umap/static/umap/locale/uk_UA.json,sha256=
|
|
372
|
-
umap/static/umap/locale/vi.js,sha256=
|
|
373
|
-
umap/static/umap/locale/vi.json,sha256=
|
|
374
|
-
umap/static/umap/locale/vi_VN.json,sha256=
|
|
375
|
-
umap/static/umap/locale/zh.js,sha256=
|
|
376
|
-
umap/static/umap/locale/zh.json,sha256=
|
|
377
|
-
umap/static/umap/locale/zh_CN.json,sha256=
|
|
378
|
-
umap/static/umap/locale/zh_TW.Big5.json,sha256=
|
|
379
|
-
umap/static/umap/locale/zh_TW.js,sha256=
|
|
380
|
-
umap/static/umap/locale/zh_TW.json,sha256=
|
|
381
|
-
umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
|
|
382
|
-
umap/static/umap/test/DataLayer.js,sha256=P-bq8gjGrSEKXLxmDk85NI33GT5XWHHLvv44xJ7CGKk,14221
|
|
383
|
-
umap/static/umap/test/Feature.js,sha256=xb6HjjD_EuI4ezvn3z_SUR_s7C1e8xmZim20VHaR2qg,3664
|
|
384
|
-
umap/static/umap/test/Map.js,sha256=LWCyIKxgUXBM61i3QIPkDubTXGlRhy6N2NdlAnaM_mQ,919
|
|
385
|
-
umap/static/umap/test/Marker.js,sha256=pzMBY-l1xD35OgVCd2FNxEDrBMAhafAyZPAFsV2Gd34,4111
|
|
386
|
-
umap/static/umap/test/Polygon.js,sha256=Jrflfe76wmfu8_E3bDLMGG11w-iUmrgL9Oiv4CcCsb8,2320
|
|
387
|
-
umap/static/umap/test/Polyline.js,sha256=5VxRW-b6bnNgyIzDsHM6g5lPci-Td1wY5VPg_umpId0,9374
|
|
388
|
-
umap/static/umap/test/Util.js,sha256=KBsOQN_E4Y5N8VSDNP5fLdUrvOh7G3pewrkRKq547VQ,1096
|
|
389
|
-
umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
|
|
390
|
-
umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
|
|
363
|
+
umap/static/umap/locale/sk_SK.js,sha256=qdUARKTyTBNQHBV0Ec4U4vExdl7fDnZ8Cn1PgnXoBHY,32030
|
|
364
|
+
umap/static/umap/locale/sk_SK.json,sha256=IbBhgfcjcWT_1BX0N5-xL3Bz29wQVJxucpKalKi7J9Y,31959
|
|
365
|
+
umap/static/umap/locale/sl.js,sha256=DG4kPYovDfuhglDeJyMAXXcHHHGd40KM-dFTemvgD-U,31882
|
|
366
|
+
umap/static/umap/locale/sl.json,sha256=rN2gTXLAKvCm0idac5pgixLQ-88XIUMIVz1lk2jOyUE,31817
|
|
367
|
+
umap/static/umap/locale/sr.js,sha256=YAv0cVK2j-XmBM1p0wOO3uMo7-7YiWsRrOLcn8At0Y8,34606
|
|
368
|
+
umap/static/umap/locale/sr.json,sha256=szxrZQAVIGOMKhUtn8GKdZkc5vH0F9f0cmXjLeIkYp0,34541
|
|
369
|
+
umap/static/umap/locale/sv.js,sha256=p5U4Iwl7XOVKX2I30owo1tkJUqxQMZTT6nHBf9CoYKw,31788
|
|
370
|
+
umap/static/umap/locale/sv.json,sha256=7t9tw-qeIRqfFu6Rno75_3ZeKFQcwL_CbRs1hHlsgxQ,31723
|
|
371
|
+
umap/static/umap/locale/th_TH.js,sha256=8Jd5pGxNMPAfBQ1JIGbzlNfziwMXFKRCCwvqhGFaJHI,31839
|
|
372
|
+
umap/static/umap/locale/th_TH.json,sha256=5V4YtYiH_fC6DeeGYL3_wYYXX6HRLcXO_4V1ttVg_hg,31768
|
|
373
|
+
umap/static/umap/locale/tr.js,sha256=E8V8ydvWmcncbJOiKbazeA-U3FyIKW6VeW3L9n1uXG8,32295
|
|
374
|
+
umap/static/umap/locale/tr.json,sha256=y_WoeW9zrer9Psrkjzxhq1D6WJiloErWz4lt_e_g-to,32230
|
|
375
|
+
umap/static/umap/locale/uk_UA.js,sha256=qm5gfU9dR04YnrLLvLDsduigBmWk63zs5Glk-Yc-Sf0,37273
|
|
376
|
+
umap/static/umap/locale/uk_UA.json,sha256=DC2MWAW_xywcwE3wJCaxFKNW7wxqMbXl0ZQd5-uGhcs,37202
|
|
377
|
+
umap/static/umap/locale/vi.js,sha256=BhV5522pZ4DFun5SzeKXftZ6IgX_s5_HZQ4QXammlZs,31059
|
|
378
|
+
umap/static/umap/locale/vi.json,sha256=xG_C3EnHAu6RC-AIcwv5MNvTycN79QXPR_9tTvfk690,30994
|
|
379
|
+
umap/static/umap/locale/vi_VN.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
|
|
380
|
+
umap/static/umap/locale/zh.js,sha256=lZqFG0t7G2Q3eAvddHXkkdntTMf2v1Z5Fo5G6ywwZwY,30532
|
|
381
|
+
umap/static/umap/locale/zh.json,sha256=oRhM6bajAFKTqGsDagLFaGg3o2fvomnpN5wCY3kPZUI,30467
|
|
382
|
+
umap/static/umap/locale/zh_CN.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
|
|
383
|
+
umap/static/umap/locale/zh_TW.Big5.json,sha256=Imybk5dPQejFoiqWp3jPjp_hO5KRMPgUCsbLqhydP0M,30734
|
|
384
|
+
umap/static/umap/locale/zh_TW.js,sha256=RVlO3t21NVSb8pw1EWswS421kv1_cvDO-r0W0zO7_Tc,30294
|
|
385
|
+
umap/static/umap/locale/zh_TW.json,sha256=sa_Y6v0gC7aexQjuIIKSs70VVvd2Hjqqc_C1k-lAvdU,30223
|
|
391
386
|
umap/static/umap/unittests/URLs.js,sha256=wF0hfRX3NqwFAe31QGeKFwavUpNP2T8pHwXBlcpiwNo,2070
|
|
392
387
|
umap/static/umap/unittests/hlc.js,sha256=GvpBaBSgfMs0Zym0_zOs2QldUOcbFNVIKweBhuwM_QI,5294
|
|
393
|
-
umap/static/umap/unittests/sync.js,sha256=
|
|
394
|
-
umap/static/umap/unittests/utils.js,sha256=
|
|
388
|
+
umap/static/umap/unittests/sync.js,sha256=SRzK5N7o7iZodye53evBTZZjXG1mMm6dguV_Iyh69XQ,11096
|
|
389
|
+
umap/static/umap/unittests/utils.js,sha256=Cj7wsVf3RIwahKeoLOnya7u4mDw7oxkWHtmO4O1Jx3c,28683
|
|
395
390
|
umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=wEHf7UslhI09j7tfzC1V9FLgTbZELDbbtGiL2x0y9vY,23051
|
|
396
391
|
umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=FARwXdqk_yf3ttJmSyrJ204B9glI2YaZ2vuhaQPmhVk,15712
|
|
397
392
|
umap/static/umap/vendors/dompurify/purify.es.js,sha256=OwJJkYgszIMGao8OZPP_KoTXY45kWRIh9rBPjBDLs8I,62059
|
|
@@ -440,7 +435,7 @@ umap/static/umap/vendors/minimap/Control.MiniMap.min.js,sha256=Hb_f1FMaLV-Qn6KSY
|
|
|
440
435
|
umap/static/umap/vendors/minimap/images/toggle.png,sha256=dSjmzalnKhlwWcTiw6qF82tFV60mQZAmS57_VnCzXIg,219
|
|
441
436
|
umap/static/umap/vendors/minimap/images/toggle.svg,sha256=qYiFw3DWtNgmPPxyM2tW4Q0yQCFdWGtCJ9RqT9SRyhs,1765
|
|
442
437
|
umap/static/umap/vendors/osmtogeojson/osmtogeojson.js,sha256=Zju1u65H1dEr_5zxyHuPlz6F-rSx-DRTgQquma3VRZI,34674
|
|
443
|
-
umap/static/umap/vendors/photon/leaflet.photon.js,sha256=
|
|
438
|
+
umap/static/umap/vendors/photon/leaflet.photon.js,sha256=muJBUoB-ocakHmR-iEF7k_yXXu8yZP4BjmJ4kB3GtgI,14888
|
|
444
439
|
umap/static/umap/vendors/simple-statistics/simple-statistics.min.js,sha256=3vLsuPerHhN9Ywzrl8oey2zgVDhD4VqVGWXY0WammyQ,24073
|
|
445
440
|
umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map,sha256=ayC2E6wVocDrMV-bpQkwXxkVhqcsS0AqHRZ98Nc9JaQ,196163
|
|
446
441
|
umap/static/umap/vendors/togeojson/togeojson.es.js,sha256=3ahjSicOyuiPMyXmBClO89l-QykDhAy0Fm09kWGSrWI,34371
|
|
@@ -453,43 +448,43 @@ umap/storage/s3.py,sha256=KAYu3vAqXbd5UhaoPxG6zcGtBfKZOzzi-6uY6YEuIcY,1962
|
|
|
453
448
|
umap/storage/staticfiles.py,sha256=mxFcenC1JECmpNy4H0e7vX8GObDZVXzs1RPjQFWNd5k,2473
|
|
454
449
|
umap/sync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
455
450
|
umap/sync/app.py,sha256=MFuMIsIvkF_YLa7DbjyDLWyMGhmqMQi-cMR5z0TEwM0,6640
|
|
456
|
-
umap/sync/payloads.py,sha256=
|
|
451
|
+
umap/sync/payloads.py,sha256=Y5vD4vwH2rG9PzNEBZj6c5-qOuDyjWEinZ_viNrZNRE,1513
|
|
457
452
|
umap/templates/403.html,sha256=7nzCrjNhLxqYkCoLHtBkMsKsticp0g0zj-fGdWxbd_k,454
|
|
458
453
|
umap/templates/404.html,sha256=9sNX3VTySf8tiAcj201dBIGcznOfeViJkIv7Wju79vY,267
|
|
459
454
|
umap/templates/40x.html,sha256=vqXMu5psELqmQA7tajpOCpQB2olyJ4yZvBXme5p84XU,206
|
|
460
455
|
umap/templates/500.html,sha256=Z8x47OVfYXquAYAlmRB0EJVTCiCaBppFFiFEmoYsMYY,5202
|
|
461
456
|
umap/templates/base.html,sha256=7WJ89NxyDiciP7GqpXu9VuZvLX4uJeLnEP4t5aWQdIY,1573
|
|
462
|
-
umap/templates/auth/user_detail.html,sha256=
|
|
457
|
+
umap/templates/auth/user_detail.html,sha256=I2GoKso_11a2P9SDvaMD368USKZmNNcPbBzGSN23xNE,679
|
|
463
458
|
umap/templates/auth/user_form.html,sha256=Ts8PqddjHggfIf_NiCrbyYAjrGqoPczXxMLiNRVfMa0,1942
|
|
464
|
-
umap/templates/auth/user_stars.html,sha256=
|
|
459
|
+
umap/templates/auth/user_stars.html,sha256=h7TNm1W4BrmXG_BiImIrqDJumuEghqP_tYt-Ib2xZNs,707
|
|
465
460
|
umap/templates/registration/login.html,sha256=PSBLBFW7szyXezaXwPwFqTBQAsbFEDd5SvPL-n9Djek,1824
|
|
466
461
|
umap/templates/umap/about.html,sha256=Shu5lP_Iff4iQMDhMACuwdlZ00o8Yi3MT1du-y2rDEY,245
|
|
467
462
|
umap/templates/umap/about_summary.html,sha256=9_K2HxctGKjU3GWaI9Rny-kb_iLnS5lScx2WJrbd89I,2339
|
|
468
463
|
umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
|
|
469
|
-
umap/templates/umap/content.html,sha256=
|
|
464
|
+
umap/templates/umap/content.html,sha256=BHtQMYOOlfQXWFJtSRV2qTnXsgjF7_IKJ7-c4iZpSo0,2379
|
|
470
465
|
umap/templates/umap/content_footer.html,sha256=170C-9K0a1qkNb4m-x5Vg7bNstvHVEXueDfgPPvXk0I,1130
|
|
471
466
|
umap/templates/umap/css.html,sha256=6cyaJ2A_NZmXa6ojLa-Y2NFjUPRWTwC2n03GsZQDKJ4,2213
|
|
472
467
|
umap/templates/umap/dashboard_menu.html,sha256=DEzGwiL_U1ntDpY0Ybda5ijDMSNw-n7Vb-V7HrsqYgo,688
|
|
473
468
|
umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
474
469
|
umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
|
-
umap/templates/umap/home.html,sha256=
|
|
470
|
+
umap/templates/umap/home.html,sha256=JuzDOx3-T_XyWT1Rwdy50PWvjlRjnhAXMM4-yvVUkts,890
|
|
476
471
|
umap/templates/umap/js.html,sha256=XCshHdlnBrO7hH5axaQmTrGXgKzmNZQFv1uso4pjitE,2213
|
|
477
472
|
umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
|
|
478
473
|
umap/templates/umap/login_popup_end.html,sha256=kcENvhycpVvvIzbNasX1rcSI_67A6pttkWCxy0vHC8g,693
|
|
479
474
|
umap/templates/umap/map_detail.html,sha256=vNFIK7BhWWNiiBnMwKDPyvr0LZH9rLLqD95T_wsi5ng,1217
|
|
480
|
-
umap/templates/umap/map_fragment.html,sha256=
|
|
475
|
+
umap/templates/umap/map_fragment.html,sha256=KdHT1fsIhSjH8oo27qIRn0Fw701qpcWs335ixAVav4M,158
|
|
481
476
|
umap/templates/umap/map_init.html,sha256=5hX7FE0vN6P70KFf8aKusOCERGzy9JoCPg7oyoIWfLQ,334
|
|
482
|
-
umap/templates/umap/map_list.html,sha256=
|
|
477
|
+
umap/templates/umap/map_list.html,sha256=AODXZp1fIWFkKarDZo3OpCD1c7_d3SkOCk49H9V8fqM,975
|
|
483
478
|
umap/templates/umap/map_table.html,sha256=WrH86ybY_GzzRmALfON_oni9aFuIswgOtpTSJ5h8SEY,5778
|
|
484
479
|
umap/templates/umap/messages.html,sha256=5W0ScAH0ibLzz_QkAhBm4xt3AOJ3aN9n8oMokdVYw9I,319
|
|
485
480
|
umap/templates/umap/navigation.html,sha256=gUhdTQOfbMHp1QwnzQYcn3CqQ0RqWUjlDFdT92MerO4,1261
|
|
486
481
|
umap/templates/umap/password_change.html,sha256=egS_bPFdVyXCoFGMTzcinROoc60_DVV38p1QalAEi8s,1079
|
|
487
482
|
umap/templates/umap/password_change_done.html,sha256=DqlQJyoQJ4v69pTXdWYybd1LgSqCo6XXvReaMc7zIHs,404
|
|
488
|
-
umap/templates/umap/search.html,sha256=
|
|
489
|
-
umap/templates/umap/search_bar.html,sha256
|
|
483
|
+
umap/templates/umap/search.html,sha256=t0vhR7KsFDdmF37OM2Ui3fg8-tq7WZ2IEi2iWwjQbz0,1191
|
|
484
|
+
umap/templates/umap/search_bar.html,sha256=TdaztaEyioXsUf9_YtMIl0Zh_Oez8qUgeM3wfo30vT0,868
|
|
490
485
|
umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X_CI,3
|
|
491
486
|
umap/templates/umap/team_confirm_delete.html,sha256=hURs2wcKXl3c0PMATHqRTaoFvQuSb7wWaM3nrHgzCVY,557
|
|
492
|
-
umap/templates/umap/team_detail.html,sha256=
|
|
487
|
+
umap/templates/umap/team_detail.html,sha256=GPfeqlTnyBTLrLxgiksM6XjwA5rd6SESCsjs8d-42PY,853
|
|
493
488
|
umap/templates/umap/team_form.html,sha256=wwxpxGC4lno4PqNs9pOnlwQ23leKj3kxV3Pbs2UpJb0,2039
|
|
494
489
|
umap/templates/umap/user_dashboard.html,sha256=UsqL7lRJcX4z9wER6M32RZdFyQxbaHsRcRr7ld5kuDM,2538
|
|
495
490
|
umap/templates/umap/user_teams.html,sha256=p--dXgYw8Kjt0XTCVcFkwmw_PN2tFv98K9bYTsCdilo,1674
|
|
@@ -498,29 +493,30 @@ umap/templates/umap/components/alerts/alert.html,sha256=ZvisQkz2GfK2jxEqTosYH72N
|
|
|
498
493
|
umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
499
494
|
umap/templatetags/umap_tags.py,sha256=OumX1AI9uWzNP3zbjexTz7lGp10FweW0NRFSsdQ_cuU,1759
|
|
500
495
|
umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
501
|
-
umap/tests/base.py,sha256=
|
|
496
|
+
umap/tests/base.py,sha256=kAzUIX5o1Ew8Ih3wtQkVUIiarmrykKkVrbvkOxDoHrg,4940
|
|
502
497
|
umap/tests/conftest.py,sha256=KQCZanCTl1ABLIKOuyxS_cpBoXGiwjDc29jsLBiSWxY,1633
|
|
503
|
-
umap/tests/settings.py,sha256
|
|
498
|
+
umap/tests/settings.py,sha256=-b-RoDlZJXJ6cCFnO2gF-XL-avfHlpUuLrQk-ytgkdY,783
|
|
504
499
|
umap/tests/test_clean_tilelayer.py,sha256=wGTd_AHOTmQ4QMswAyc-1_lJmQOSyhY3OahLAusEIdA,2515
|
|
505
500
|
umap/tests/test_dashboard.py,sha256=w9IgKdupP9JpixLqvNl6UKbglgFVN_dG_R9Zvw1SJy0,2880
|
|
506
501
|
umap/tests/test_datalayer.py,sha256=-1sTYnmJksgV4jxRQUtw_jRUqaYhh0siqfJe8QfWTqs,9528
|
|
507
|
-
umap/tests/test_datalayer_s3.py,sha256=
|
|
502
|
+
umap/tests/test_datalayer_s3.py,sha256=le1OvJdMfOmudciECynZfoij3p_lBpclFCqC8tiXFq4,4186
|
|
508
503
|
umap/tests/test_datalayer_views.py,sha256=ySOyYOvdMjyBbBeyZ6YUS0_RfH2dlovQ5luT7ZXXxuQ,23734
|
|
509
504
|
umap/tests/test_empty_trash.py,sha256=VuFSNzZ2n4v60WCBeazLn6c8cSgUcUKQWwzN0c7FCIk,1492
|
|
510
505
|
umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
|
|
511
506
|
umap/tests/test_map.py,sha256=vrtheSMQNk45kBIcJ0QY9K7HKYee5yg4Vnp78DyaIwQ,5170
|
|
512
|
-
umap/tests/test_map_views.py,sha256=
|
|
507
|
+
umap/tests/test_map_views.py,sha256=SuMzw7KrbmbTELT2Qs6amhiziqTOxvFnbXYg1mJAGBs,34231
|
|
513
508
|
umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
|
|
514
509
|
umap/tests/test_statics.py,sha256=xKuxT8Xj5Ii7gKISuiSfDj7dpjmJ2Ierby3Lg-haZCg,1264
|
|
515
510
|
umap/tests/test_team_views.py,sha256=edmqn_tx4XQ1sEQtB7CpuJT6WwQQiUyUYu8-ESZxFcw,5615
|
|
516
511
|
umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
|
|
517
512
|
umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
|
|
518
|
-
umap/tests/test_views.py,sha256=
|
|
513
|
+
umap/tests/test_views.py,sha256=Y5Cd8Wa_UA3QRE4c6x4eZ3PRdn_XdxXvn4l_YQFeUhw,16878
|
|
519
514
|
umap/tests/fixtures/categorized_highway.geojson,sha256=p7QHOd8nXi7yVq37gY6Ca8BXkjaLnDxW9Fq0Zcm3Fk4,15830
|
|
520
515
|
umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
|
|
521
516
|
umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
|
|
522
517
|
umap/tests/fixtures/display_on_load.umap,sha256=eo4ecB3QUeCVu1u7COp7mZ8sCPkf2j4gGERE7N1v8GU,1845
|
|
523
518
|
umap/tests/fixtures/empty_tile.png,sha256=HHezSHZcZimfhpKaSSVOPm14k9OTAyL_eHndptkHGJk,103
|
|
519
|
+
umap/tests/fixtures/remote_data.umap,sha256=knVVYmkgmmS7WpxAnlbmImgP--JFJ6vLUo8M0maFEfc,1247
|
|
524
520
|
umap/tests/fixtures/star.svg,sha256=zIi-j16L1Fzxtqz2rV2NDDm1NDHBWQfM5O6MIeoxgEU,256
|
|
525
521
|
umap/tests/fixtures/test_circles_layer.geojson,sha256=8S_zh4MA-5qqm43ETKfGz0hw84vuN2cXB1vTz9Syu3k,6454
|
|
526
522
|
umap/tests/fixtures/test_import_osm_relation.json,sha256=SjZFqZ-qnxcrUnVkb43jI9iMBF8Il3-OPqxh62nNH9o,4249
|
|
@@ -530,6 +526,7 @@ umap/tests/fixtures/test_upload_data.json,sha256=t4PmJtVDhyI1x-E1a36jD8YVSa87T-V
|
|
|
530
526
|
umap/tests/fixtures/test_upload_data.kml,sha256=t66ms8oNI3999bhRJx01mn-UuHeqWoVY5LfXnChBaP8,1102
|
|
531
527
|
umap/tests/fixtures/test_upload_data.umap,sha256=WUmcwcQ4o5_rYw0SOqjnszbk2TOzfynrK3psyApSWsk,5463
|
|
532
528
|
umap/tests/fixtures/test_upload_data_osm.json,sha256=ekOwBHdp7qHQ-JUGlb-kGUXcVepdMsBqr7k51pVaCbA,916
|
|
529
|
+
umap/tests/fixtures/test_upload_data_with_iconurl.umap,sha256=eMjat_diYHMCPRyOF5Br1bJWNi9vNsKJerfehIjwILo,3334
|
|
533
530
|
umap/tests/fixtures/test_upload_empty_coordinates.json,sha256=-mJ_1orzUAROfE4PXchHXyqxjS-q4tDfvEFPllJiHFU,786
|
|
534
531
|
umap/tests/fixtures/test_upload_georss.xml,sha256=lfmVA0qGDakCG48jjsLmSIE1U6iZ9yyFuqqX6Srt8Js,1160
|
|
535
532
|
umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5UZ1LbAJCCKnJea0qEFAI,4566
|
|
@@ -540,46 +537,47 @@ umap/tests/integration/conftest.py,sha256=pNIxoZ6mNclAwovFt76gzvJaXH940lYXWByf6c
|
|
|
540
537
|
umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
|
|
541
538
|
umap/tests/integration/test_anonymous_owned_map.py,sha256=-j2YUPWNoEit5a_IxYl1q3fGeybvV0NW8ud4QeCa-Hg,11123
|
|
542
539
|
umap/tests/integration/test_basics.py,sha256=TcTyK8vO-JOgqXEfMIt5ce6MO32cRSLf23cTG6QrIhk,3718
|
|
543
|
-
umap/tests/integration/test_browser.py,sha256=
|
|
540
|
+
umap/tests/integration/test_browser.py,sha256=wd7GRsfHCWTsZAccvERwcodDKbR_eaxJT4FFXkDOUBU,20476
|
|
544
541
|
umap/tests/integration/test_caption.py,sha256=9JHQvTju2W-IoV2UBrEUAH4nV2W7eKN2hJi4YcPfSPE,1843
|
|
545
542
|
umap/tests/integration/test_categorized_layer.py,sha256=XCCK62fBljTEbt0EKoGsHf9hY2bCEIkyeuPxyhEGJDs,5381
|
|
546
543
|
umap/tests/integration/test_choropleth.py,sha256=Lsd7tszSIua_GUeXhosB-JWk35zYN-3WKRVYI0ZrNSM,3777
|
|
547
544
|
umap/tests/integration/test_circles_layer.py,sha256=PjYGmCvAd9qDnldnbiw6nomJs1YgUdX181a9xrWSUYE,2396
|
|
548
545
|
umap/tests/integration/test_cluster.py,sha256=AK4t1k0nur2-gSSFPvkhnq7Ki81PgfvYv1AQcZmr5iQ,1680
|
|
549
|
-
umap/tests/integration/test_conditional_rules.py,sha256=
|
|
546
|
+
umap/tests/integration/test_conditional_rules.py,sha256=2KqEjxot5epBMV3H6ssHAT6-SMZvSgEhRGd7NhUzNa8,12018
|
|
550
547
|
umap/tests/integration/test_dashboard.py,sha256=LClLBc8lgDM1-NGhkvUSUMLmMuKt3sR1ubt2Eo-Iq7A,1550
|
|
551
548
|
umap/tests/integration/test_datalayer.py,sha256=cxsf65noYTucEMLuUz8DfJ9abXHhAq0n65MvdBmBRVo,5492
|
|
552
549
|
umap/tests/integration/test_draw_polygon.py,sha256=liYjm2pls9ovYxzcewe3q_MjDjdxzOGsGU-lTWpCEyc,25292
|
|
553
550
|
umap/tests/integration/test_draw_polyline.py,sha256=sBpu4iawj3W0y6lx4BnsHTmFrvEmcYdfWdMeOZ8vr1Y,14709
|
|
554
|
-
umap/tests/integration/test_edit_datalayer.py,sha256=
|
|
555
|
-
umap/tests/integration/test_edit_map.py,sha256=
|
|
551
|
+
umap/tests/integration/test_edit_datalayer.py,sha256=0DWvp62Pwx5ditafEMB8tG_ybe8FO5YG4EMjR-ZwPdY,10012
|
|
552
|
+
umap/tests/integration/test_edit_map.py,sha256=RSf4Pq-eTaXhmPhfUq19dF68a94QlAKU45AQeKNbZdQ,8877
|
|
556
553
|
umap/tests/integration/test_edit_marker.py,sha256=7FlijPSwRZvXOI6MyYdSIBvKDAbThjFoPf3XwDHi4Uk,4756
|
|
557
|
-
umap/tests/integration/test_edit_polygon.py,sha256=
|
|
554
|
+
umap/tests/integration/test_edit_polygon.py,sha256=nuidgs0v5sgFxcQKirtF5ncE3z7_S0hZxbLvPI2-BUU,5224
|
|
558
555
|
umap/tests/integration/test_export_map.py,sha256=jH0BXm-7Ov26OEkve9-xKMfRwXwR73zRrZLIQusyUOY,12112
|
|
559
556
|
umap/tests/integration/test_facets_browser.py,sha256=J--y2rpI__0RIPzcTx4Kn2UwuurFdh-6i_Y4c6GxUyY,10658
|
|
560
557
|
umap/tests/integration/test_features_id_generation.py,sha256=mGoLIKV3xTc59XSnNPbAgHeG6RjMYwhmaVEmcqSnv-4,1463
|
|
561
|
-
umap/tests/integration/test_import.py,sha256=
|
|
558
|
+
umap/tests/integration/test_import.py,sha256=bG2ec8C7a3GHAqP5W0Go4sYEIVRyrkGGQuR0OOlT7A0,36768
|
|
562
559
|
umap/tests/integration/test_map.py,sha256=2ZO54RFVycJKGczfioX0nU1oCu29FVC9hR6wbT4s1NE,8736
|
|
563
560
|
umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
|
|
564
561
|
umap/tests/integration/test_map_preview.py,sha256=kP0vkEiUN7EJNCvZgNeUAzrrXfgwpU0S2UnmOBV4P5A,3540
|
|
565
|
-
umap/tests/integration/test_optimistic_merge.py,sha256=
|
|
566
|
-
umap/tests/integration/test_owned_map.py,sha256=
|
|
562
|
+
umap/tests/integration/test_optimistic_merge.py,sha256=fPDb4TpgpggAr6wkr299uh3a9TCbqLxgEMLJ1zCb-1k,11898
|
|
563
|
+
umap/tests/integration/test_owned_map.py,sha256=SSOEpqsaBtCCVhyiyjBFF9dEDvbpSh0Lh0n-WTvFEO4,10796
|
|
567
564
|
umap/tests/integration/test_picto.py,sha256=q55UBamCweckq5RBqiNOyF1pzgagt3-RJ8dK40MzeuI,9155
|
|
568
565
|
umap/tests/integration/test_popup.py,sha256=kZy6JAJIs2R6tnPbGEzgz_yX76yMbEAfPqCa6c9P670,1445
|
|
569
566
|
umap/tests/integration/test_querystring.py,sha256=yR7oOlIA4qbL14gEazdFmdCtoOc7RKwadpuuutAPxU8,2754
|
|
570
|
-
umap/tests/integration/test_save.py,sha256=
|
|
567
|
+
umap/tests/integration/test_save.py,sha256=Ia3BsCVLPqImCyjNZ_5qvtMXMq130Y5sD_Ym1xDpAiU,1260
|
|
571
568
|
umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
|
|
572
569
|
umap/tests/integration/test_slideshow.py,sha256=yhy75YYpfTKpkGK7xGjJDJoqHtN6p2LG-O4krVE1Yks,1907
|
|
573
570
|
umap/tests/integration/test_star.py,sha256=qJUvFij0XK0PcWJnbe4w8nTvTjbJdJ5X-2JjHy6DqEw,973
|
|
574
571
|
umap/tests/integration/test_tableeditor.py,sha256=QY2RdZ7NML0XVK_NzIypiJesuN5fGIXfSm0fvId_BzE,7915
|
|
575
572
|
umap/tests/integration/test_team.py,sha256=LVuj5Dhz27cqk6ieEbukGsdy9J2FP5aQmcMex_xevIg,1594
|
|
576
573
|
umap/tests/integration/test_tilelayer.py,sha256=rBI3bm4hCpH87rcFvuc5H8yu1D9FQBZMNbqqJzpdI24,5302
|
|
574
|
+
umap/tests/integration/test_undo_redo.py,sha256=1wSb43fI3ZpJcegW9AaQZ7a2BcuBSfkMAuT5zBsfO0s,9302
|
|
577
575
|
umap/tests/integration/test_view_marker.py,sha256=NFCwNez__E_WsE1DuW5RuB0HVKDP4CQMXGhJw0LfnFs,6900
|
|
578
576
|
umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
|
|
579
577
|
umap/tests/integration/test_view_polyline.py,sha256=aJoXKmLhJaN0yhPdDCVskZNGx3q3mLDkjVPhZ30cadA,13959
|
|
580
|
-
umap/tests/integration/test_websocket_sync.py,sha256=
|
|
581
|
-
umap_project-
|
|
582
|
-
umap_project-
|
|
583
|
-
umap_project-
|
|
584
|
-
umap_project-
|
|
585
|
-
umap_project-
|
|
578
|
+
umap/tests/integration/test_websocket_sync.py,sha256=iASlErX-nZZWu7zGvSe1KHL68EXnEOTjEL9B6wZK-KQ,28300
|
|
579
|
+
umap_project-3.0.1.dist-info/METADATA,sha256=eDoWzxUGTaJfl77prZoslkkhlljPkPTgWWwqb7jlCkg,3016
|
|
580
|
+
umap_project-3.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
581
|
+
umap_project-3.0.1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
582
|
+
umap_project-3.0.1.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
583
|
+
umap_project-3.0.1.dist-info/RECORD,,
|