umap-project 2.6.2__py3-none-any.whl → 2.7.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/admin.py +64 -1
- umap/asgi.py +15 -0
- umap/context_processors.py +1 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +96 -92
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +19 -18
- umap/locale/en/LC_MESSAGES/django.po +47 -43
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +134 -128
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +51 -47
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +64 -60
- umap/management/commands/clean_tilelayer.py +152 -0
- umap/management/commands/purge_purgatory.py +28 -0
- umap/models.py +27 -2
- umap/settings/base.py +3 -1
- umap/static/umap/base.css +4 -4
- umap/static/umap/css/contextmenu.css +6 -1
- umap/static/umap/css/icon.css +7 -2
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/img/16-white.svg +9 -2
- umap/static/umap/img/16.svg +1 -181
- umap/static/umap/img/24-white.svg +1 -0
- umap/static/umap/img/24.svg +1 -0
- umap/static/umap/img/importers/cadastrefr.svg +23 -0
- umap/static/umap/img/source/16-white.svg +10 -3
- umap/static/umap/img/source/16.svg +753 -197
- umap/static/umap/img/source/24-white.svg +3 -2
- umap/static/umap/img/source/24.svg +3 -2
- umap/static/umap/js/modules/autocomplete.js +7 -3
- umap/static/umap/js/modules/browser.js +55 -2
- umap/static/umap/js/modules/caption.js +16 -5
- umap/static/umap/js/modules/data/features.js +183 -8
- umap/static/umap/js/modules/data/layer.js +57 -40
- umap/static/umap/js/modules/formatter.js +3 -2
- umap/static/umap/js/modules/global.js +2 -0
- umap/static/umap/js/modules/importer.js +3 -0
- umap/static/umap/js/modules/importers/cadastrefr.js +62 -0
- umap/static/umap/js/modules/importers/communesfr.js +15 -3
- umap/static/umap/js/modules/permissions.js +123 -93
- umap/static/umap/js/modules/rendering/layers/classified.js +2 -0
- umap/static/umap/js/modules/rendering/ui.js +60 -213
- umap/static/umap/js/modules/share.js +1 -3
- umap/static/umap/js/modules/slideshow.js +1 -1
- umap/static/umap/js/modules/sync/engine.js +371 -14
- umap/static/umap/js/modules/sync/hlc.js +106 -0
- umap/static/umap/js/modules/sync/updaters.js +18 -6
- umap/static/umap/js/modules/sync/websocket.js +1 -1
- umap/static/umap/js/modules/tableeditor.js +1 -1
- umap/static/umap/js/modules/ui/base.js +2 -2
- umap/static/umap/js/modules/ui/contextmenu.js +51 -18
- umap/static/umap/js/modules/urls.js +5 -1
- umap/static/umap/js/modules/utils.js +28 -4
- umap/static/umap/js/umap.controls.js +76 -55
- umap/static/umap/js/umap.core.js +3 -3
- umap/static/umap/js/umap.forms.js +3 -1
- umap/static/umap/js/umap.js +115 -124
- umap/static/umap/locale/am_ET.js +2 -2
- umap/static/umap/locale/am_ET.json +2 -2
- umap/static/umap/locale/ar.js +2 -2
- umap/static/umap/locale/ar.json +2 -2
- umap/static/umap/locale/ast.js +2 -2
- umap/static/umap/locale/ast.json +2 -2
- umap/static/umap/locale/bg.js +2 -2
- umap/static/umap/locale/bg.json +2 -2
- umap/static/umap/locale/br.js +13 -4
- umap/static/umap/locale/br.json +13 -4
- umap/static/umap/locale/ca.js +30 -17
- umap/static/umap/locale/ca.json +30 -17
- umap/static/umap/locale/cs_CZ.js +89 -80
- umap/static/umap/locale/cs_CZ.json +89 -80
- umap/static/umap/locale/da.js +2 -2
- umap/static/umap/locale/da.json +2 -2
- umap/static/umap/locale/de.js +17 -8
- umap/static/umap/locale/de.json +17 -8
- umap/static/umap/locale/el.js +2 -2
- umap/static/umap/locale/el.json +2 -2
- umap/static/umap/locale/en.js +15 -4
- umap/static/umap/locale/en.json +15 -4
- umap/static/umap/locale/en_US.json +2 -2
- umap/static/umap/locale/es.js +338 -325
- umap/static/umap/locale/es.json +338 -325
- umap/static/umap/locale/et.js +2 -2
- umap/static/umap/locale/et.json +2 -2
- umap/static/umap/locale/eu.js +11 -4
- umap/static/umap/locale/eu.json +11 -4
- umap/static/umap/locale/fa_IR.js +11 -4
- umap/static/umap/locale/fa_IR.json +11 -4
- umap/static/umap/locale/fi.js +2 -2
- umap/static/umap/locale/fi.json +2 -2
- umap/static/umap/locale/fr.js +15 -4
- umap/static/umap/locale/fr.json +15 -4
- umap/static/umap/locale/gl.js +2 -2
- umap/static/umap/locale/gl.json +2 -2
- umap/static/umap/locale/he.js +2 -2
- umap/static/umap/locale/he.json +2 -2
- umap/static/umap/locale/hr.js +2 -2
- umap/static/umap/locale/hr.json +2 -2
- umap/static/umap/locale/hu.js +12 -5
- umap/static/umap/locale/hu.json +12 -5
- umap/static/umap/locale/id.js +2 -2
- umap/static/umap/locale/id.json +2 -2
- umap/static/umap/locale/is.js +2 -2
- umap/static/umap/locale/is.json +2 -2
- umap/static/umap/locale/it.js +2 -2
- umap/static/umap/locale/it.json +2 -2
- umap/static/umap/locale/ja.js +2 -2
- umap/static/umap/locale/ja.json +2 -2
- umap/static/umap/locale/ko.js +2 -2
- umap/static/umap/locale/ko.json +2 -2
- umap/static/umap/locale/lt.js +2 -2
- umap/static/umap/locale/lt.json +2 -2
- umap/static/umap/locale/ms.js +2 -2
- umap/static/umap/locale/ms.json +2 -2
- umap/static/umap/locale/nl.js +2 -2
- umap/static/umap/locale/nl.json +2 -2
- umap/static/umap/locale/no.js +2 -2
- umap/static/umap/locale/no.json +2 -2
- umap/static/umap/locale/pl.js +2 -2
- umap/static/umap/locale/pl.json +2 -2
- umap/static/umap/locale/pl_PL.json +2 -2
- umap/static/umap/locale/pt.js +19 -10
- umap/static/umap/locale/pt.json +19 -10
- umap/static/umap/locale/pt_BR.js +2 -2
- umap/static/umap/locale/pt_BR.json +2 -2
- umap/static/umap/locale/pt_PT.js +13 -4
- umap/static/umap/locale/pt_PT.json +13 -4
- umap/static/umap/locale/ro.js +2 -2
- umap/static/umap/locale/ro.json +2 -2
- umap/static/umap/locale/ru.js +2 -2
- umap/static/umap/locale/ru.json +2 -2
- umap/static/umap/locale/si.js +2 -2
- umap/static/umap/locale/si.json +2 -2
- umap/static/umap/locale/sk_SK.js +2 -2
- umap/static/umap/locale/sk_SK.json +2 -2
- umap/static/umap/locale/sl.js +2 -2
- umap/static/umap/locale/sl.json +2 -2
- umap/static/umap/locale/sr.js +2 -2
- umap/static/umap/locale/sr.json +2 -2
- umap/static/umap/locale/sv.js +2 -2
- umap/static/umap/locale/sv.json +2 -2
- umap/static/umap/locale/th_TH.js +2 -2
- umap/static/umap/locale/th_TH.json +2 -2
- umap/static/umap/locale/tr.js +2 -2
- umap/static/umap/locale/tr.json +2 -2
- umap/static/umap/locale/uk_UA.js +2 -2
- umap/static/umap/locale/uk_UA.json +2 -2
- umap/static/umap/locale/vi.js +2 -2
- umap/static/umap/locale/vi.json +2 -2
- umap/static/umap/locale/vi_VN.json +2 -2
- umap/static/umap/locale/zh.js +2 -2
- umap/static/umap/locale/zh.json +2 -2
- umap/static/umap/locale/zh_CN.json +2 -2
- umap/static/umap/locale/zh_TW.Big5.json +2 -2
- umap/static/umap/locale/zh_TW.js +13 -4
- umap/static/umap/locale/zh_TW.json +13 -4
- umap/static/umap/map.css +44 -29
- umap/static/umap/unittests/hlc.js +165 -0
- umap/static/umap/unittests/sync.js +321 -15
- umap/static/umap/unittests/utils.js +47 -0
- umap/static/umap/vars.css +2 -1
- umap/static/umap/vendors/colorbrewer/colorbrewer.js +309 -317
- umap/static/umap/vendors/dompurify/purify.es.js +15 -16
- umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
- umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +111 -80
- umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +2 -2
- umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +1 -1
- umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +1 -1
- umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +1 -1
- umap/templates/umap/css.html +0 -2
- umap/templates/umap/dashboard_menu.html +4 -2
- umap/templates/umap/js.html +0 -5
- umap/templates/umap/map_detail.html +2 -2
- umap/tests/fixtures/test_upload_data.csv +2 -2
- umap/tests/integration/test_anonymous_owned_map.py +1 -0
- umap/tests/integration/test_basics.py +1 -1
- umap/tests/integration/test_browser.py +69 -7
- umap/tests/integration/test_caption.py +3 -3
- umap/tests/integration/test_circles_layer.py +12 -0
- umap/tests/integration/test_cluster.py +53 -0
- umap/tests/integration/test_datalayer.py +2 -1
- umap/tests/integration/test_draw_polygon.py +17 -9
- umap/tests/integration/test_draw_polyline.py +84 -7
- umap/tests/integration/test_edit_datalayer.py +5 -8
- umap/tests/integration/test_edit_map.py +2 -2
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_facets_browser.py +3 -3
- umap/tests/integration/test_import.py +1 -0
- umap/tests/integration/test_map.py +1 -0
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_view_marker.py +63 -0
- umap/tests/integration/test_view_polygon.py +12 -12
- umap/tests/integration/test_websocket_sync.py +65 -3
- umap/tests/test_clean_tilelayer.py +83 -0
- umap/tests/test_datalayer.py +24 -0
- umap/tests/test_map_views.py +20 -0
- umap/tests/test_purge_purgatory.py +25 -0
- umap/tests/test_websocket_server.py +22 -0
- umap/urls.py +5 -1
- umap/views.py +6 -3
- umap/websocket_server.py +130 -27
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/METADATA +18 -14
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/RECORD +209 -200
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -1
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -7
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/WHEEL +0 -0
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
2
|
-
umap/admin.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=zS300t5kBvgJNFAMoEda5x5AApc6DZb0kCrfdwrXjG8,18
|
|
2
|
+
umap/admin.py,sha256=LoQytPGK6pLBqZ5QgQ9DIPAxhTG31cTtHOCqO9BY5S4,2645
|
|
3
3
|
umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
|
|
4
|
+
umap/asgi.py,sha256=CuVSNBwNb4AvuaD_Ha3ehtvf-c46ijZoVOSoP6WhXp8,432
|
|
4
5
|
umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
|
|
5
|
-
umap/context_processors.py,sha256=
|
|
6
|
+
umap/context_processors.py,sha256=JugzLQSEybdR-XDYKaUQw7RVGhAqcuuA5cyzeW9lRf4,605
|
|
6
7
|
umap/decorators.py,sha256=t3YdQLuV0WrqMo2bHEbhkpzmxZe0gRNtzUvczruCn-A,2342
|
|
7
8
|
umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
|
|
8
9
|
umap/forms.py,sha256=geBn_IVvhbpfswkOZyA1RMgoD6AV33ic9N7gH1M92oE,3994
|
|
9
10
|
umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
|
|
10
11
|
umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
|
|
11
|
-
umap/models.py,sha256=
|
|
12
|
+
umap/models.py,sha256=DHN0eRDEUQnFHB7kJRfLyNuNOzi5H5H_r9qZEkvHdbQ,19963
|
|
12
13
|
umap/storage.py,sha256=mxFcenC1JECmpNy4H0e7vX8GObDZVXzs1RPjQFWNd5k,2473
|
|
13
|
-
umap/urls.py,sha256=
|
|
14
|
+
umap/urls.py,sha256=rr4fr3uXn0ZoQX5MjlJ8veTVoFVcdee2V8VZfzUHQNc,7561
|
|
14
15
|
umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
|
|
15
|
-
umap/views.py,sha256=
|
|
16
|
-
umap/websocket_server.py,sha256=
|
|
16
|
+
umap/views.py,sha256=IiR3oDMEjAHp3wF0ErYxBcF3HkBsxa6JX66ffhm-ShU,45224
|
|
17
|
+
umap/websocket_server.py,sha256=D9sTHhKg0DG37b8bw7KWTKMDc6TPyTkNLCVkh2mlFOo,6604
|
|
17
18
|
umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
|
|
18
19
|
umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
|
|
19
20
|
umap/locale/am_ET/LC_MESSAGES/django.mo,sha256=xdPMnJ3Z0fkxocaO7IKexPyomuWUKak01D2T6pVruco,5457
|
|
@@ -28,18 +29,18 @@ umap/locale/br/LC_MESSAGES/django.mo,sha256=B16I45ITutbDQcJhPkoMpoEWqUpT5qR2qOOF
|
|
|
28
29
|
umap/locale/br/LC_MESSAGES/django.po,sha256=qaXfnEsQTNfwJ4mDFzJ2XkxuT5maqpGizRQh445f0f8,17395
|
|
29
30
|
umap/locale/ca/LC_MESSAGES/django.mo,sha256=5BMkHNTA4hk-XIxcxMxYzqgdOlLm6ydFum2LzTOk_8A,8671
|
|
30
31
|
umap/locale/ca/LC_MESSAGES/django.po,sha256=MhGl8xM4myBR4qc-4xv7yQ_U_R2fZXniDZMDdgEbb0A,16705
|
|
31
|
-
umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256
|
|
32
|
-
umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=
|
|
32
|
+
umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=-fyKJPNSCZpKRua8ONrlaFQl6TKa9IO5d5RqXt0nSJ4,12227
|
|
33
|
+
umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=NGJTtWF95NN_GHBtosY4QGEJmdJgPIpGDAv8QP5GxGQ,18514
|
|
33
34
|
umap/locale/da/LC_MESSAGES/django.mo,sha256=iaJCTWGuBwECcHX4QuN1okL4mrFWcyQcXoxjKE8E2VA,6073
|
|
34
35
|
umap/locale/da/LC_MESSAGES/django.po,sha256=1d1q7jWvVKi0a5JRDYQoLyMWRCit4VWfL-x-beJTyhQ,13103
|
|
35
|
-
umap/locale/de/LC_MESSAGES/django.mo,sha256=
|
|
36
|
-
umap/locale/de/LC_MESSAGES/django.po,sha256=
|
|
36
|
+
umap/locale/de/LC_MESSAGES/django.mo,sha256=yNtUjelNlkj_CNPq5wg5Ac_je7PwSya9bAzZyDeJWNA,12206
|
|
37
|
+
umap/locale/de/LC_MESSAGES/django.po,sha256=yhWTil1WJ88O2doTHsy67d1p81PlW1mKv7rH-bR8r7s,18402
|
|
37
38
|
umap/locale/el/LC_MESSAGES/django.mo,sha256=UQ-FdgbaWf6PQu0vHio4GAdSaBg_V9vSas9PbgLK6D0,15281
|
|
38
39
|
umap/locale/el/LC_MESSAGES/django.po,sha256=Vnt6gZTW9VlpTwBw3LOVeHCtAA7y33uPXDeg_G3dUBg,22044
|
|
39
40
|
umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
|
|
40
|
-
umap/locale/en/LC_MESSAGES/django.po,sha256=
|
|
41
|
-
umap/locale/es/LC_MESSAGES/django.mo,sha256=
|
|
42
|
-
umap/locale/es/LC_MESSAGES/django.po,sha256=
|
|
41
|
+
umap/locale/en/LC_MESSAGES/django.po,sha256=yqwHZ_5njb_K_qGzYNbo3TxsIeziZ-MniJMfUDEGmUw,13403
|
|
42
|
+
umap/locale/es/LC_MESSAGES/django.mo,sha256=lCSi3pyK8u8GXwNDm1dSOB0Y7L7ljwofV568cy6SEI8,12200
|
|
43
|
+
umap/locale/es/LC_MESSAGES/django.po,sha256=COIKWmLHIJhrhrxw7-EZWR_Zg4vSSUsl1ydQtk9oEuY,18534
|
|
43
44
|
umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
|
|
44
45
|
umap/locale/et/LC_MESSAGES/django.po,sha256=344_8a7EH06mtLYRIGIIKiFrg8HRWmVdVMJl9pV1oso,12435
|
|
45
46
|
umap/locale/eu/LC_MESSAGES/django.mo,sha256=guogxd6hL3SbGClGr7QPv0fr1nAaRa4YPY-7C-MAKUA,11101
|
|
@@ -48,8 +49,8 @@ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=t4H1hC7blrnjOwIxILrqRuDsRAm_C8w3Z
|
|
|
48
49
|
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=hjk92LrZvSeOP-DzQpj_mp6ik97KiAXqANa7hQnOqbc,20435
|
|
49
50
|
umap/locale/fi/LC_MESSAGES/django.mo,sha256=-p9kvtfjdJKrbSMEfpdvoZ6jEX_njf-0uqzlvydbhOo,4856
|
|
50
51
|
umap/locale/fi/LC_MESSAGES/django.po,sha256=Saq5PpycYhmutr6CWPQNYI4UwQbSdxrCWxapwotaB3c,12823
|
|
51
|
-
umap/locale/fr/LC_MESSAGES/django.mo,sha256=
|
|
52
|
-
umap/locale/fr/LC_MESSAGES/django.po,sha256=
|
|
52
|
+
umap/locale/fr/LC_MESSAGES/django.mo,sha256=6EYuhoATrNqy-DRu2SekDAZGvJbbfabo2wid9x9kIgc,12342
|
|
53
|
+
umap/locale/fr/LC_MESSAGES/django.po,sha256=EyAqnd90CbBq5r_9xIEmliUx6qfFbnU7C7phIExMDC4,18739
|
|
53
54
|
umap/locale/gl/LC_MESSAGES/django.mo,sha256=-p9_T_4C3ns1Sc1iG7zfCUstFsGX_aaxzeLwD8d8Uho,6253
|
|
54
55
|
umap/locale/gl/LC_MESSAGES/django.po,sha256=w5yCwKMsmFJ7Tk-y4p2a8oOaYkyYi_aLNnWpbw04M2M,13210
|
|
55
56
|
umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMjHkvLsRo,6944
|
|
@@ -78,8 +79,8 @@ umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk
|
|
|
78
79
|
umap/locale/no/LC_MESSAGES/django.po,sha256=HXr3Y_gxOPjdU1pSV_tyX_l7pbDMVrFBdf0gm3gciwI,7998
|
|
79
80
|
umap/locale/pl/LC_MESSAGES/django.mo,sha256=fMCMevGTw3C8Daq24P1m9gWFKvvZT4kXAd4JpRhjBns,10450
|
|
80
81
|
umap/locale/pl/LC_MESSAGES/django.po,sha256=AWSgcqq7iLAc-k66VFjxqxz4E_TsFXvX1jl5fHc1LyE,17723
|
|
81
|
-
umap/locale/pt/LC_MESSAGES/django.mo,sha256=
|
|
82
|
-
umap/locale/pt/LC_MESSAGES/django.po,sha256=
|
|
82
|
+
umap/locale/pt/LC_MESSAGES/django.mo,sha256=LQeh3K8t5lLWF1sYiL4qxeSjPuuft1iWQrmAKGW_zBU,12262
|
|
83
|
+
umap/locale/pt/LC_MESSAGES/django.po,sha256=kB6GAHqrO17NSjOaQ12Ia380WRK-bJNnsgEECqBO3sE,18294
|
|
83
84
|
umap/locale/pt_BR/LC_MESSAGES/django.mo,sha256=DrxyrIeCD0dmbieR3clKO2Sy0pyWpcHmQKM251Ff294,6328
|
|
84
85
|
umap/locale/pt_BR/LC_MESSAGES/django.po,sha256=RXQyHUSrm2JdiWLyR6XEvdSzFLicNj9hR82Noppc2n4,13319
|
|
85
86
|
umap/locale/pt_PT/LC_MESSAGES/django.mo,sha256=4iwtGYsVFh05Qbp9XmZdclQSTZIYYt6IiLN6W3Eyc6I,6356
|
|
@@ -113,8 +114,10 @@ umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=GpWfCxD6P1AcPJKMRiAWvKQVcKkIQzvOw
|
|
|
113
114
|
umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
115
|
umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
116
|
umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
|
|
117
|
+
umap/management/commands/clean_tilelayer.py,sha256=Rcc2PibUUreU0jUZMtUlyqVvgbQMLMuuCZ2tkrzRqHU,5712
|
|
116
118
|
umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUeY2SlOrTXS42tE0-bs,1281
|
|
117
119
|
umap/management/commands/import_pictograms.py,sha256=RuQDCoiKamba4l3fZUGAXRyd-3zwWWT5c5AhgDvs7AQ,2369
|
|
120
|
+
umap/management/commands/purge_purgatory.py,sha256=IXlDz06Od_tIam5Y1IAT45V3x7GondBH1sPF2yNCYD0,838
|
|
118
121
|
umap/management/commands/run_websocket_server.py,sha256=TyECJWnmZ95KpVEWSaqfXywz5VwIEzPdypU2d6V541c,648
|
|
119
122
|
umap/migrations/0001_initial.py,sha256=dMcXtTKPiA0IqXCrDVctH91Fe0hhc04NxmvcLAULyzE,8787
|
|
120
123
|
umap/migrations/0002_tilelayer_tms.py,sha256=E99JAu1K0NzwsCEJs1z5uGlBkBJmoVb9a3WBKjpLYlo,372
|
|
@@ -140,25 +143,25 @@ umap/migrations/0021_remove_map_description.py,sha256=C1-pTJ1loj_aZPIbdbPRIHQaya
|
|
|
140
143
|
umap/migrations/0022_add_team.py,sha256=oEM1cm_GTpiNb4m7HYaid1Sji56NZSf-IudgjYm0okg,2932
|
|
141
144
|
umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
145
|
umap/settings/__init__.py,sha256=aPJkOTk0uFusIBA-uOjdUi10R5Cxt4jl5yv2_uCTUvo,1702
|
|
143
|
-
umap/settings/base.py,sha256=
|
|
146
|
+
umap/settings/base.py,sha256=Ag86hEOxaZ0j-moPEayrusPryti9849KCSrFyZrzmnc,10608
|
|
144
147
|
umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
|
|
145
148
|
umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
|
|
146
149
|
umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
|
-
umap/static/umap/base.css,sha256=
|
|
150
|
+
umap/static/umap/base.css,sha256=t52n1kFDOFZ7oVjLl_BORJuwC3ZIYfXdQWUfEQiQ6lY,16819
|
|
148
151
|
umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
|
|
149
152
|
umap/static/umap/content.css,sha256=6p2sgg-FYOjVBiwvk930tBJTl3lfr2m8jjSKkf84Gv0,11555
|
|
150
153
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
151
154
|
umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
|
|
152
|
-
umap/static/umap/map.css,sha256=
|
|
155
|
+
umap/static/umap/map.css,sha256=7hhZ2m8C9jWQmaYhKtRjwKmE__TSExcK-EewKRNQ4UA,37384
|
|
153
156
|
umap/static/umap/nav.css,sha256=IKB8Ga8TRal8naxjsgrcrnCO2eaKUL3YNofJB9IN9l0,1865
|
|
154
157
|
umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
|
|
155
158
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
156
159
|
umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
|
|
157
|
-
umap/static/umap/vars.css,sha256=
|
|
158
|
-
umap/static/umap/css/contextmenu.css,sha256=
|
|
160
|
+
umap/static/umap/vars.css,sha256=xEyzO2LSadDuwnETrRs-28hxuehFoPHVO3LSFc9XyKY,1789
|
|
161
|
+
umap/static/umap/css/contextmenu.css,sha256=AdPajFTy2M_yHbkMKDYdh45gRO4amNd0OXRYYDNZSI4,437
|
|
159
162
|
umap/static/umap/css/dialog.css,sha256=9qwy9rOcTQY6SPkteM7dW1t36XQBJVoGETQatSOvffM,879
|
|
160
|
-
umap/static/umap/css/icon.css,sha256=
|
|
161
|
-
umap/static/umap/css/importers.css,sha256=
|
|
163
|
+
umap/static/umap/css/icon.css,sha256=e9hadIEzsVJKnTVvueG0IGbNNeFIM1yqboJhsXVE0rs,3868
|
|
164
|
+
umap/static/umap/css/importers.css,sha256=iS3krkVPpqUQlPNQXSyByyho7rHBzxYqm04bPyKo_qY,1455
|
|
162
165
|
umap/static/umap/css/panel.css,sha256=fRPw-dyrcRegoOxTOWTDjBwuI_aHNPmmBOY16flsCBI,3073
|
|
163
166
|
umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
|
|
164
167
|
umap/static/umap/css/tableeditor.css,sha256=nYFd5qSMkUasFfAxkWwewKJ5MwIcZb2Zq_DViuDRZc4,1574
|
|
@@ -175,10 +178,10 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
|
|
|
175
178
|
umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
|
|
176
179
|
umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
|
|
177
180
|
umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
|
|
178
|
-
umap/static/umap/img/16-white.svg,sha256=
|
|
179
|
-
umap/static/umap/img/16.svg,sha256=
|
|
180
|
-
umap/static/umap/img/24-white.svg,sha256=
|
|
181
|
-
umap/static/umap/img/24.svg,sha256=
|
|
181
|
+
umap/static/umap/img/16-white.svg,sha256=DmlXugDNednOGvl66xRwye387ttUxo7MHC_B2mGDcfY,41639
|
|
182
|
+
umap/static/umap/img/16.svg,sha256=l87Urig9ASu3tDxxTsTR5tF7vrqetVnpCLZVXx4N7mU,24704
|
|
183
|
+
umap/static/umap/img/24-white.svg,sha256=PwFtlnDjxhnPt0c99xIL0KU14dzHT6D1EvAaaE2H650,18139
|
|
184
|
+
umap/static/umap/img/24.svg,sha256=9dLNjDli7tiVsOaV7WXOIa7o3QzdV2Kp6gjBbTsdq2M,25387
|
|
182
185
|
umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
|
|
183
186
|
umap/static/umap/img/alert-icon-info.svg,sha256=wnfvaWhidanbIX8n2G8ppFG7pXyqnDjL9lhdbVoeCf8,735
|
|
184
187
|
umap/static/umap/img/alert-icon-success.svg,sha256=ZzH4Te0IMM0Cyf9MByh57gxNxVddOavA3gSGqsa3xM0,189
|
|
@@ -199,6 +202,7 @@ umap/static/umap/img/marker.svg,sha256=xR0PuBxGt9sRlLXbvllNT952Wx1iapyrZpsyJiWY-
|
|
|
199
202
|
umap/static/umap/img/opensource.svg,sha256=DLoPUwQivWNDY0DsKLsL0CK4a6x30ao0YXuUJN-HzYI,473
|
|
200
203
|
umap/static/umap/img/osm.svg,sha256=Owz6LQS8mm5ySW0XqnpyXf0WZx7pthz2GLzqwk5cuBA,1997
|
|
201
204
|
umap/static/umap/img/search.gif,sha256=Ws7V8knHJGdxG5_12zfPoBweX6PjOjHzrzYY4eyAY-4,1472
|
|
205
|
+
umap/static/umap/img/importers/cadastrefr.svg,sha256=L55Jy0rkP2rpfuzuw8iYQ7lmUPMwOW4rJ4BfEeap50Y,3084
|
|
202
206
|
umap/static/umap/img/importers/communesfr.svg,sha256=P4M9PyT3Y8PCWhp5GVw2W-TeB0xZEWlUzKv7fkfihBk,4760
|
|
203
207
|
umap/static/umap/img/importers/datasets.svg,sha256=Pqn6WzE0ZpE8QLgml75mnkstXseTpI1wXXN5MyjOshU,4075
|
|
204
208
|
umap/static/umap/img/importers/geodatamine.svg,sha256=LmNUU_nANL-q8vE1Y2rZ9_D0QRDFCgWIwf7fEUX_gwo,8133
|
|
@@ -206,160 +210,162 @@ umap/static/umap/img/importers/overpass.svg,sha256=PFmMwBEQug3bpMdjk3Xue7cU3eArn
|
|
|
206
210
|
umap/static/umap/img/importers/random.svg,sha256=DnxcCu2vJOBdZYWhl8Si0boGjkLcvqrRZaB_BbP1zcM,2445
|
|
207
211
|
umap/static/umap/img/importers/random1.svg,sha256=mY-Yp9-my2ZxdvL6sgnDzc-ihjnAw-mNZtgSkbj25LA,1370
|
|
208
212
|
umap/static/umap/img/importers/random2.svg,sha256=wRwBTM7skyvLZJX4QHozMX8P4jxP59POTHlKPsMODcg,1933
|
|
209
|
-
umap/static/umap/img/source/16-white.svg,sha256=
|
|
210
|
-
umap/static/umap/img/source/16.svg,sha256=
|
|
211
|
-
umap/static/umap/img/source/24-white.svg,sha256=
|
|
212
|
-
umap/static/umap/img/source/24.svg,sha256=
|
|
213
|
-
umap/static/umap/js/umap.controls.js,sha256=
|
|
214
|
-
umap/static/umap/js/umap.core.js,sha256=
|
|
215
|
-
umap/static/umap/js/umap.forms.js,sha256=
|
|
216
|
-
umap/static/umap/js/umap.js,sha256=
|
|
213
|
+
umap/static/umap/img/source/16-white.svg,sha256=aQE1L1FGy46pqqxn8iSNcfur5GFP7JIbph3QE3q6FrE,74192
|
|
214
|
+
umap/static/umap/img/source/16.svg,sha256=Los-GMM0FlVBPotdqASVyeEb5LvM0sxZQ_qu6S_3W_0,52984
|
|
215
|
+
umap/static/umap/img/source/24-white.svg,sha256=t5713m3RdG9vunV2nUhLY4o4xT9v7ke3NY42g9FeAnE,29206
|
|
216
|
+
umap/static/umap/img/source/24.svg,sha256=2HY-QmZc2_eV3TyqGLlzqgJXCLVbrzKQV5Q6JLWgNiI,38319
|
|
217
|
+
umap/static/umap/js/umap.controls.js,sha256=vQGX6K37xLWo5TJ49DACIMaNRL1DCa_rbJtxftueh2Q,36495
|
|
218
|
+
umap/static/umap/js/umap.core.js,sha256=j-xy2ZKaCoS2zMRf7bwc9evgXOmJHnbXgYmOP6Ir9g0,7714
|
|
219
|
+
umap/static/umap/js/umap.forms.js,sha256=T-qC-xxLaY5FaQW-7T_6OKwBBU6HCRX9JK6BO3PYfn8,31554
|
|
220
|
+
umap/static/umap/js/umap.js,sha256=Upll7-qM1eyfNnQ1tjza3AfTIkwycJwrxOikbcQh-fM,57847
|
|
217
221
|
umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
|
|
218
222
|
umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmBuY67rbZUPo-Fs,341
|
|
219
223
|
umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
|
|
220
224
|
umap/static/umap/js/components/alerts/alert.js,sha256=7JaTfAzB6qrodu8soo4aoiQMR7YOYcE3u17q3boMbxI,4491
|
|
221
|
-
umap/static/umap/js/modules/autocomplete.js,sha256=
|
|
222
|
-
umap/static/umap/js/modules/browser.js,sha256=
|
|
223
|
-
umap/static/umap/js/modules/caption.js,sha256=
|
|
225
|
+
umap/static/umap/js/modules/autocomplete.js,sha256=j3rZeiBypGcFenEN_7xhYdffYrUP92SATrEB_eTZWwk,8634
|
|
226
|
+
umap/static/umap/js/modules/browser.js,sha256=FXM-Dau0gxqFj77k9FUPBuf6gvrcN6ezsf4myP1rHU0,9243
|
|
227
|
+
umap/static/umap/js/modules/caption.js,sha256=WVesRXhlIlr5SAiKDv7nOquihvq1pv-dDHsG6i3nQeU,4041
|
|
224
228
|
umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
|
|
225
229
|
umap/static/umap/js/modules/facets.js,sha256=K4qfnCtgIK7oMkL4YvAvPovHfaCK_aRyW5rl7nAFqK0,4677
|
|
226
|
-
umap/static/umap/js/modules/formatter.js,sha256=
|
|
227
|
-
umap/static/umap/js/modules/global.js,sha256=
|
|
230
|
+
umap/static/umap/js/modules/formatter.js,sha256=rdOA_HQ89euI1ttLm2CXCUdphMc5-oU-69qeV3hk1Rk,4473
|
|
231
|
+
umap/static/umap/js/modules/global.js,sha256=8s61zn5EKFfZi7j8Ek1-QOpb1D3uRsTEtb3Uv47IQVU,2005
|
|
228
232
|
umap/static/umap/js/modules/help.js,sha256=k0gUpRf8ik9_okGH7Jv4JOjveNbbvSdk1yV_oZ3kSkQ,9870
|
|
229
233
|
umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
|
|
230
|
-
umap/static/umap/js/modules/importer.js,sha256=
|
|
234
|
+
umap/static/umap/js/modules/importer.js,sha256=6wDIbz1MaPKSSAaVP7bpUSBxXoKI9vkaPh5z-z4TilI,8761
|
|
231
235
|
umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
|
|
232
236
|
umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
|
|
233
|
-
umap/static/umap/js/modules/permissions.js,sha256=
|
|
237
|
+
umap/static/umap/js/modules/permissions.js,sha256=huRVci6BwjCRbMbel9EdWS-JEd6F8Zese4RGADqLEQY,8302
|
|
234
238
|
umap/static/umap/js/modules/request.js,sha256=hMy3dleGRxstKsksbNa15w7jk4H9-nAV_ub-JdNhDD8,3881
|
|
235
239
|
umap/static/umap/js/modules/rules.js,sha256=NO2GeUDgPfWp8VAkV0AE-BeQsDSVYCutcJIk1NKVM5k,7397
|
|
236
240
|
umap/static/umap/js/modules/schema.js,sha256=TNUNj4_2WDN_0vK083cnui0gKI-qHfiIzkO8sWLJtYY,13071
|
|
237
|
-
umap/static/umap/js/modules/share.js,sha256=
|
|
238
|
-
umap/static/umap/js/modules/slideshow.js,sha256
|
|
239
|
-
umap/static/umap/js/modules/tableeditor.js,sha256=
|
|
240
|
-
umap/static/umap/js/modules/urls.js,sha256=
|
|
241
|
-
umap/static/umap/js/modules/utils.js,sha256=
|
|
242
|
-
umap/static/umap/js/modules/data/features.js,sha256=
|
|
243
|
-
umap/static/umap/js/modules/data/layer.js,sha256=
|
|
244
|
-
umap/static/umap/js/modules/importers/
|
|
241
|
+
umap/static/umap/js/modules/share.js,sha256=J7w9VXJZTSbrVFvC8wrqSlXrpYzGxDvK7g1slK0y9o8,7180
|
|
242
|
+
umap/static/umap/js/modules/slideshow.js,sha256=-GPd2LXMGwbTc1ZGzzFgJZ3Q4kFwp2BlLCYEL-dILnY,3445
|
|
243
|
+
umap/static/umap/js/modules/tableeditor.js,sha256=VxIrKAtIuxXmpsJAJ4IGZTC7EiuWtNu8YWDjIUkIbHg,9763
|
|
244
|
+
umap/static/umap/js/modules/urls.js,sha256=oKkD5jfZMk3752nOWRjpNxVBPUJVcJvNONjnjkKwaVc,876
|
|
245
|
+
umap/static/umap/js/modules/utils.js,sha256=2vkpCFszXXZqYUAgxClD7r8vpjOHcPOZAC6RprqLMEY,12035
|
|
246
|
+
umap/static/umap/js/modules/data/features.js,sha256=D7kDDjdXdjzijnJenQOCMprng5pLeckj5lpCfXJ7FWQ,30878
|
|
247
|
+
umap/static/umap/js/modules/data/layer.js,sha256=t9dzD-n7_7F2ECgWNZF39fWGJR1LnmeEay45xvKKzVo,33686
|
|
248
|
+
umap/static/umap/js/modules/importers/cadastrefr.js,sha256=OZpbtcQSxAf0iEJOFvyR59W4l4yJPwx2XZqiLAsx_aY,2083
|
|
249
|
+
umap/static/umap/js/modules/importers/communesfr.js,sha256=6q6ilmYhhuSmgdrvfTyEDNyMLbc9J9Bt8VMZVXB8ZOA,1723
|
|
245
250
|
umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
|
|
246
251
|
umap/static/umap/js/modules/importers/geodatamine.js,sha256=FtrHMVntY4pPelw0uDZCbDVxy5er1ZzDc80zcDpvRnc,2949
|
|
247
252
|
umap/static/umap/js/modules/importers/overpass.js,sha256=wshao2HAJIz_qowqu6tWxeFAL6TMWMQlzkGLCSfym-4,3178
|
|
248
253
|
umap/static/umap/js/modules/rendering/icon.js,sha256=hguSJt3wDqe0oSQIm1zrYSbyktKVQUWv-QTo5fYdlc8,7861
|
|
249
254
|
umap/static/umap/js/modules/rendering/popup.js,sha256=s_LhWy3nqKm_GEwc9aCbzSG1JM9M5-kshwNfKQNdu3A,2460
|
|
250
255
|
umap/static/umap/js/modules/rendering/template.js,sha256=79umxBD0pMuz8n-sx54Zg7FKcm_fbEkGDlt3vnEXtXo,7177
|
|
251
|
-
umap/static/umap/js/modules/rendering/ui.js,sha256=
|
|
256
|
+
umap/static/umap/js/modules/rendering/ui.js,sha256=WXwRqs9I1JOJxGcc7-db8w_rbaQ3xggsez6uu-X5GqU,13116
|
|
252
257
|
umap/static/umap/js/modules/rendering/layers/base.js,sha256=QNQm_IHSX2jwhr6RfoURk9ypSi4lH1Z0voZNH84VLV0,2419
|
|
253
|
-
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=
|
|
258
|
+
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=nAmmPUkDD2lRin0qTUsESQdBhkBkK_A5_9hIyMyglXc,14671
|
|
254
259
|
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=tIwkcJhJ7SQTpMK7YXumcA6KMjuZjPKWzc_xuF9d_Dc,3360
|
|
255
260
|
umap/static/umap/js/modules/rendering/layers/heat.js,sha256=pWZkgwNP18bKl5gqN2w9dAxvWWHYoTSDN4n9t_1u-xI,4771
|
|
256
|
-
umap/static/umap/js/modules/sync/engine.js,sha256=
|
|
257
|
-
umap/static/umap/js/modules/sync/
|
|
258
|
-
umap/static/umap/js/modules/sync/
|
|
259
|
-
umap/static/umap/js/modules/
|
|
260
|
-
umap/static/umap/js/modules/ui/
|
|
261
|
+
umap/static/umap/js/modules/sync/engine.js,sha256=rV5Qqtk_jpe_lDx97NFhea90yTGv0mne4js-9xrNV1c,13070
|
|
262
|
+
umap/static/umap/js/modules/sync/hlc.js,sha256=XeJz3x7qiDz7v-mcgGIynj5ks34FpWx_oSPUPFd_ZGA,2991
|
|
263
|
+
umap/static/umap/js/modules/sync/updaters.js,sha256=WP6hB2gyQKF18hOCy1Ll3UBeYRe2K_LLT9vTUOkPuNk,3184
|
|
264
|
+
umap/static/umap/js/modules/sync/websocket.js,sha256=1UtvsTAm-gkfpBRcLPykPvDyax3mQSxG0KOjWhqnAIU,647
|
|
265
|
+
umap/static/umap/js/modules/ui/base.js,sha256=8PN8TRIBqTANRufwVvV0XzOdaYQuRCnlWGbTGq8FZiM,2491
|
|
266
|
+
umap/static/umap/js/modules/ui/contextmenu.js,sha256=VzC94uGUt8DkzC60Gcbz-MxivfSITEqUC91Fkpq1gjk,2550
|
|
261
267
|
umap/static/umap/js/modules/ui/dialog.js,sha256=fP51HDkucZpXnx1v0h5eAckj77RsADZO_CzPRbjeKSU,5407
|
|
262
268
|
umap/static/umap/js/modules/ui/panel.js,sha256=Iqfagid9BxB0zjexBElaA_hLejoePdfORt4Di5lHVLY,2994
|
|
263
269
|
umap/static/umap/js/modules/ui/tooltip.js,sha256=M2KBb5CA4AvaA-6QgfpUKMYQuGXzTqx4ZVA9fkMRBEs,1642
|
|
264
|
-
umap/static/umap/locale/am_ET.js,sha256=
|
|
265
|
-
umap/static/umap/locale/am_ET.json,sha256=
|
|
266
|
-
umap/static/umap/locale/ar.js,sha256=
|
|
267
|
-
umap/static/umap/locale/ar.json,sha256=
|
|
268
|
-
umap/static/umap/locale/ast.js,sha256=
|
|
269
|
-
umap/static/umap/locale/ast.json,sha256=
|
|
270
|
-
umap/static/umap/locale/bg.js,sha256=
|
|
271
|
-
umap/static/umap/locale/bg.json,sha256=
|
|
272
|
-
umap/static/umap/locale/br.js,sha256=
|
|
273
|
-
umap/static/umap/locale/br.json,sha256=
|
|
274
|
-
umap/static/umap/locale/ca.js,sha256=
|
|
275
|
-
umap/static/umap/locale/ca.json,sha256=
|
|
276
|
-
umap/static/umap/locale/cs_CZ.js,sha256=
|
|
277
|
-
umap/static/umap/locale/cs_CZ.json,sha256=
|
|
278
|
-
umap/static/umap/locale/da.js,sha256=
|
|
279
|
-
umap/static/umap/locale/da.json,sha256=
|
|
280
|
-
umap/static/umap/locale/de.js,sha256=
|
|
281
|
-
umap/static/umap/locale/de.json,sha256=
|
|
282
|
-
umap/static/umap/locale/el.js,sha256=
|
|
283
|
-
umap/static/umap/locale/el.json,sha256=
|
|
284
|
-
umap/static/umap/locale/en.js,sha256=
|
|
285
|
-
umap/static/umap/locale/en.json,sha256=
|
|
286
|
-
umap/static/umap/locale/en_US.json,sha256=
|
|
287
|
-
umap/static/umap/locale/es.js,sha256=
|
|
288
|
-
umap/static/umap/locale/es.json,sha256=
|
|
289
|
-
umap/static/umap/locale/et.js,sha256=
|
|
290
|
-
umap/static/umap/locale/et.json,sha256=
|
|
291
|
-
umap/static/umap/locale/eu.js,sha256=
|
|
292
|
-
umap/static/umap/locale/eu.json,sha256=
|
|
293
|
-
umap/static/umap/locale/fa_IR.js,sha256=
|
|
294
|
-
umap/static/umap/locale/fa_IR.json,sha256=
|
|
295
|
-
umap/static/umap/locale/fi.js,sha256=
|
|
296
|
-
umap/static/umap/locale/fi.json,sha256=
|
|
297
|
-
umap/static/umap/locale/fr.js,sha256=
|
|
298
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
299
|
-
umap/static/umap/locale/gl.js,sha256=
|
|
300
|
-
umap/static/umap/locale/gl.json,sha256=
|
|
301
|
-
umap/static/umap/locale/he.js,sha256=
|
|
302
|
-
umap/static/umap/locale/he.json,sha256=
|
|
303
|
-
umap/static/umap/locale/hr.js,sha256=
|
|
304
|
-
umap/static/umap/locale/hr.json,sha256=
|
|
305
|
-
umap/static/umap/locale/hu.js,sha256=
|
|
306
|
-
umap/static/umap/locale/hu.json,sha256=
|
|
307
|
-
umap/static/umap/locale/id.js,sha256=
|
|
308
|
-
umap/static/umap/locale/id.json,sha256=
|
|
309
|
-
umap/static/umap/locale/is.js,sha256=
|
|
310
|
-
umap/static/umap/locale/is.json,sha256=
|
|
311
|
-
umap/static/umap/locale/it.js,sha256=
|
|
312
|
-
umap/static/umap/locale/it.json,sha256=
|
|
313
|
-
umap/static/umap/locale/ja.js,sha256=
|
|
314
|
-
umap/static/umap/locale/ja.json,sha256
|
|
315
|
-
umap/static/umap/locale/ko.js,sha256=
|
|
316
|
-
umap/static/umap/locale/ko.json,sha256=
|
|
317
|
-
umap/static/umap/locale/lt.js,sha256=
|
|
318
|
-
umap/static/umap/locale/lt.json,sha256=
|
|
319
|
-
umap/static/umap/locale/ms.js,sha256=
|
|
320
|
-
umap/static/umap/locale/ms.json,sha256=
|
|
321
|
-
umap/static/umap/locale/nl.js,sha256=
|
|
322
|
-
umap/static/umap/locale/nl.json,sha256=
|
|
323
|
-
umap/static/umap/locale/no.js,sha256=
|
|
324
|
-
umap/static/umap/locale/no.json,sha256=
|
|
325
|
-
umap/static/umap/locale/pl.js,sha256=
|
|
326
|
-
umap/static/umap/locale/pl.json,sha256=
|
|
327
|
-
umap/static/umap/locale/pl_PL.json,sha256=
|
|
328
|
-
umap/static/umap/locale/pt.js,sha256=
|
|
329
|
-
umap/static/umap/locale/pt.json,sha256=
|
|
330
|
-
umap/static/umap/locale/pt_BR.js,sha256=
|
|
331
|
-
umap/static/umap/locale/pt_BR.json,sha256=
|
|
332
|
-
umap/static/umap/locale/pt_PT.js,sha256=
|
|
333
|
-
umap/static/umap/locale/pt_PT.json,sha256=
|
|
334
|
-
umap/static/umap/locale/ro.js,sha256=
|
|
335
|
-
umap/static/umap/locale/ro.json,sha256=
|
|
336
|
-
umap/static/umap/locale/ru.js,sha256=
|
|
337
|
-
umap/static/umap/locale/ru.json,sha256=
|
|
338
|
-
umap/static/umap/locale/si.js,sha256=
|
|
339
|
-
umap/static/umap/locale/si.json,sha256=
|
|
340
|
-
umap/static/umap/locale/sk_SK.js,sha256=
|
|
341
|
-
umap/static/umap/locale/sk_SK.json,sha256=
|
|
342
|
-
umap/static/umap/locale/sl.js,sha256=
|
|
343
|
-
umap/static/umap/locale/sl.json,sha256=
|
|
344
|
-
umap/static/umap/locale/sr.js,sha256=
|
|
345
|
-
umap/static/umap/locale/sr.json,sha256=
|
|
346
|
-
umap/static/umap/locale/sv.js,sha256=
|
|
347
|
-
umap/static/umap/locale/sv.json,sha256=
|
|
348
|
-
umap/static/umap/locale/th_TH.js,sha256=
|
|
349
|
-
umap/static/umap/locale/th_TH.json,sha256=
|
|
350
|
-
umap/static/umap/locale/tr.js,sha256=
|
|
351
|
-
umap/static/umap/locale/tr.json,sha256=
|
|
352
|
-
umap/static/umap/locale/uk_UA.js,sha256=
|
|
353
|
-
umap/static/umap/locale/uk_UA.json,sha256=
|
|
354
|
-
umap/static/umap/locale/vi.js,sha256=
|
|
355
|
-
umap/static/umap/locale/vi.json,sha256=
|
|
356
|
-
umap/static/umap/locale/vi_VN.json,sha256=
|
|
357
|
-
umap/static/umap/locale/zh.js,sha256=
|
|
358
|
-
umap/static/umap/locale/zh.json,sha256=
|
|
359
|
-
umap/static/umap/locale/zh_CN.json,sha256=
|
|
360
|
-
umap/static/umap/locale/zh_TW.Big5.json,sha256=
|
|
361
|
-
umap/static/umap/locale/zh_TW.js,sha256=
|
|
362
|
-
umap/static/umap/locale/zh_TW.json,sha256=
|
|
270
|
+
umap/static/umap/locale/am_ET.js,sha256=oNSeVIZMKnxigBUVokMJSzYjLFGs5u4n2zzNjAtOV0A,33119
|
|
271
|
+
umap/static/umap/locale/am_ET.json,sha256=017quytoO8VyxfVNjsDQmuY3VS66L5xPJK6BtW99Afc,33048
|
|
272
|
+
umap/static/umap/locale/ar.js,sha256=RmOs5JFH_ModbKusX4AxLmuLfsaRPxZTl8tfRZsrzAE,29691
|
|
273
|
+
umap/static/umap/locale/ar.json,sha256=9hOL1bebrOpXpXaNdvebrJ_b98jXIj_z_qVwWV01-Po,29626
|
|
274
|
+
umap/static/umap/locale/ast.js,sha256=SubPKn5IvvFAbrxFX5Uij6vH3QVr1ikFsXGYKS2vW_c,29269
|
|
275
|
+
umap/static/umap/locale/ast.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
|
|
276
|
+
umap/static/umap/locale/bg.js,sha256=HU9dzYksADHHSzjZJZ60kOWtE8nhiMW11OhkmpWYPQk,32364
|
|
277
|
+
umap/static/umap/locale/bg.json,sha256=TIiye2peZgV3WqC8n5I2lugq4aLc3OshaO280ztCVTw,32299
|
|
278
|
+
umap/static/umap/locale/br.js,sha256=UK3KjFWnXc9xPbIYQA74Z5jpweddhS3ZcuPfc8x-32A,31327
|
|
279
|
+
umap/static/umap/locale/br.json,sha256=x_bto9uVfYKP1lPZQuvhCcVVutXn2aa2MDKt8yAU9qs,31262
|
|
280
|
+
umap/static/umap/locale/ca.js,sha256=N1KYzrF5nRNiPA_Tkg_Uwo5ZKw-sD9AsV2_yoEiWKZQ,31376
|
|
281
|
+
umap/static/umap/locale/ca.json,sha256=9bEQ4CG6-wP9U-rpIsLxE5OO-006xOONyB9m4qJMuds,31311
|
|
282
|
+
umap/static/umap/locale/cs_CZ.js,sha256=OZxiZoP8040WraxdO2f5J7gFFwH0cbu56OwILE5blDY,32219
|
|
283
|
+
umap/static/umap/locale/cs_CZ.json,sha256=Ch1f3bmOzJ_jGJMb9r3VGxon6JeG3hdi1EOX-lB-WUs,32148
|
|
284
|
+
umap/static/umap/locale/da.js,sha256=UOqYXpeJwAGIjxi9vEhq6_zE_GJnU3vIW-yjtwwER64,29655
|
|
285
|
+
umap/static/umap/locale/da.json,sha256=nHZ5xFUXt98g-U5erLFGvqdpbVaGEhR8DGMh0jL-hDM,29590
|
|
286
|
+
umap/static/umap/locale/de.js,sha256=xDf9BY85Ar-mfhFUORgDCL2JLeU08U2UIW_FtNLS5S0,32365
|
|
287
|
+
umap/static/umap/locale/de.json,sha256=RA0e0pKtfyqZJWSSIYFGkwqT61BcCLTIH2qpQlvlOf4,32300
|
|
288
|
+
umap/static/umap/locale/el.js,sha256=sa-U3r4Makich8A9KM5ZY43qGMu_bT1PrBsxfQIGcYo,40722
|
|
289
|
+
umap/static/umap/locale/el.json,sha256=osruzu9kyf-_rzTPCfGE3k65iJN1DNVI1XHznZn3MWY,40657
|
|
290
|
+
umap/static/umap/locale/en.js,sha256=Advf7-TgdNO71jbrMBUupUClGNqhR8rFUlN2TxSXtAM,29909
|
|
291
|
+
umap/static/umap/locale/en.json,sha256=2_bvACFiQ5XGjJXyXN-zXdhFJPqgfT6CPCzNDf0_XhA,29844
|
|
292
|
+
umap/static/umap/locale/en_US.json,sha256=Oh7wNoHcrN8yUjROyTZbOf7hA_UizteJx9VKkLRqQm8,28991
|
|
293
|
+
umap/static/umap/locale/es.js,sha256=yMicCSIiTFkf420jZhucvO3_IfPw_PtCc8itPQZ3fnQ,32797
|
|
294
|
+
umap/static/umap/locale/es.json,sha256=3LNyC3YFM4cO8aoOufS2AtmUT4Z7HrtiJXoOwjGWijk,32732
|
|
295
|
+
umap/static/umap/locale/et.js,sha256=M0Nm-Q6fzUHSc23VghPpevytG_HwlV3CBqiAOy21CKo,29463
|
|
296
|
+
umap/static/umap/locale/et.json,sha256=tyFaazZbHUEguCItz9WwqkCLUUJ6Q2Z_FoCQU43Kwlc,29398
|
|
297
|
+
umap/static/umap/locale/eu.js,sha256=LRaS1-VLUnbpDs3eQeXGOJjvILnK0fM_PGKE5zDjCXQ,31548
|
|
298
|
+
umap/static/umap/locale/eu.json,sha256=1FGg0bY3166rx1HQKIXmnDtK5NrfVX0a1xTMmCJv4fA,31483
|
|
299
|
+
umap/static/umap/locale/fa_IR.js,sha256=wysDJtx5Qh1gmLliSY1nlkb1iiQ_gW0_wwbZhoMM1VA,38337
|
|
300
|
+
umap/static/umap/locale/fa_IR.json,sha256=aWEthk23gO9px5J4lAn5pSAVwslZIBaB7A18E6CQr_M,38266
|
|
301
|
+
umap/static/umap/locale/fi.js,sha256=7FHHkRL27ZPFKY9AHYQpdh2Yxmr7nStFkyx0qFFMg-4,30135
|
|
302
|
+
umap/static/umap/locale/fi.json,sha256=9Diss6QDm0eTgYy2xZNYXVI2akk5Dsgb6Ct6IUSbW7k,30070
|
|
303
|
+
umap/static/umap/locale/fr.js,sha256=PSr2EPZZywF5g7yT7Rxhcms2MtFxTorcAlmomp-FYa4,32764
|
|
304
|
+
umap/static/umap/locale/fr.json,sha256=3Iy--oK9JeyLbM3dIQhvx7SVl22TbxGf_t6KCkELj60,32699
|
|
305
|
+
umap/static/umap/locale/gl.js,sha256=090Z2Qo9MdULunWmqzup_jIyl0vNj98RLNtZ4G0nXeY,30690
|
|
306
|
+
umap/static/umap/locale/gl.json,sha256=TXy5_yZwAKAP89ohPUz3Z7_5Ol0jGy4T6qrzWQs8zGg,30625
|
|
307
|
+
umap/static/umap/locale/he.js,sha256=GO-lM4ghM4k5mbWHpHC6SQ_fpIFjfZzCMsbqT9ejf-k,32717
|
|
308
|
+
umap/static/umap/locale/he.json,sha256=AsRd-e_CJ0a_5QLz2mUJy_dTh1P7_IEkGOreiD8LUTk,32652
|
|
309
|
+
umap/static/umap/locale/hr.js,sha256=YsN1qxe9-pb8bvqi1Nr-kQdQhwdFZ0NfdIkHcSFTwuU,29438
|
|
310
|
+
umap/static/umap/locale/hr.json,sha256=A27REEeWlZecgzhJQvoWAVWxmXul5NXlEf5b6o2H0SA,29373
|
|
311
|
+
umap/static/umap/locale/hu.js,sha256=0fmkqqxjgSzEoKdQGMWL9jtYFmJrlYsBHo3RZIk4hcQ,33929
|
|
312
|
+
umap/static/umap/locale/hu.json,sha256=lQJPsQQcg125j6veuJyuTlMflj69ZLLe45ghNBlL2As,33864
|
|
313
|
+
umap/static/umap/locale/id.js,sha256=xJ_xohs4JCGEVW1YQOrW2LGz6HVjKfqEeBXaPlBr57k,29267
|
|
314
|
+
umap/static/umap/locale/id.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
|
|
315
|
+
umap/static/umap/locale/is.js,sha256=1en-tJMUihl2-_hGQKhWMTavjTfZGrM31GZV7RJNnNw,30599
|
|
316
|
+
umap/static/umap/locale/is.json,sha256=AsPulrUHhumnaeQYnLRDft8p3sy3fVUGrcWdqzuupRo,30534
|
|
317
|
+
umap/static/umap/locale/it.js,sha256=Th6sSZ0fTcQV1-ti1IjT8DNRfyOUeGYPX9TPUuqBgcw,31523
|
|
318
|
+
umap/static/umap/locale/it.json,sha256=EKU1eCOMTFGo1Mtbj6btuBIlHfE-URESOgrcwiFEW5c,31458
|
|
319
|
+
umap/static/umap/locale/ja.js,sha256=rd-Jfd_D8yZQVDsAbvwDAV6EenZKm3BehIwvMBdE_tI,31725
|
|
320
|
+
umap/static/umap/locale/ja.json,sha256=8oqXEhEVN5LyXGxHjJ1hN3tPBnK77vLupTSJO2dLtOI,31660
|
|
321
|
+
umap/static/umap/locale/ko.js,sha256=GKdcebhxQIdAT9MJ1cpC4kUoGX08MKwa8D9Kv5pIbiA,29455
|
|
322
|
+
umap/static/umap/locale/ko.json,sha256=eAMDfMgTCJJf0xFLjvg0BdpOQ-yqGqDObCqCOqHRgYM,29390
|
|
323
|
+
umap/static/umap/locale/lt.js,sha256=kPY_OEZe4REqi3o7su_DKteVd221Ucg6CcvMfmGeb8s,30076
|
|
324
|
+
umap/static/umap/locale/lt.json,sha256=j6s08JWMY4fUtv-e_GiptEQVJkdyNLXOaNktK9KyxxA,30011
|
|
325
|
+
umap/static/umap/locale/ms.js,sha256=6LuWnyXeCpbLNUHLjAytTqtwpjowqZ3EbpKQZ9qlBXU,30435
|
|
326
|
+
umap/static/umap/locale/ms.json,sha256=bZj3FTBBW9L848FyQ-lMbi2bhhPrjY3FdSfSAyzjnPI,30370
|
|
327
|
+
umap/static/umap/locale/nl.js,sha256=lgJiy73IdZcd0n6gda9cnHCYnQG4ChcZI1DMSisep2I,30887
|
|
328
|
+
umap/static/umap/locale/nl.json,sha256=MMh9gQBGx8LQews7gHIgtmnpdw3nWtBoiChp48dsREU,30822
|
|
329
|
+
umap/static/umap/locale/no.js,sha256=H8OX_NJLGvTKgfA4nCZ_zN6BEo382FG1cFlWS7hGAmM,29491
|
|
330
|
+
umap/static/umap/locale/no.json,sha256=mYj1ImMm-UQckMx2NuN9qtWSNctK7SQUEXEHg55raNw,29426
|
|
331
|
+
umap/static/umap/locale/pl.js,sha256=xbR-Y6BFt4fMbe3tLxrBL5CbxGYHRAkBmCG9dEP5Ffs,31088
|
|
332
|
+
umap/static/umap/locale/pl.json,sha256=vOBHjtxviK3hgvBUcHqclyCb0D-g7ncyoirJftPyqyk,31023
|
|
333
|
+
umap/static/umap/locale/pl_PL.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
|
|
334
|
+
umap/static/umap/locale/pt.js,sha256=cetF0gJ16qN1mPhRUZvV_IzMi3O-W_nBP51T_8RSHJQ,32361
|
|
335
|
+
umap/static/umap/locale/pt.json,sha256=fqGtE8MemSoCOF16-zUW3Tp7iO1a3ONANcoUTaZpTm0,32296
|
|
336
|
+
umap/static/umap/locale/pt_BR.js,sha256=efTwyMyURTiunberlzIqr4Z5ERGPsItZejYmyUW9qU0,30650
|
|
337
|
+
umap/static/umap/locale/pt_BR.json,sha256=2q-Lq2caZMUi5OQtzTEwQS1uLELULzjj723t610CnoU,30579
|
|
338
|
+
umap/static/umap/locale/pt_PT.js,sha256=bmDW6NyTXqsw0nS9ZDDXb3kHAEAg6hzeORbPd4Jk3ig,32340
|
|
339
|
+
umap/static/umap/locale/pt_PT.json,sha256=NzQ5e9vX4Vcl0AQMXbaXsdIGiCeBDkEW4QnvHBcYnuA,32269
|
|
340
|
+
umap/static/umap/locale/ro.js,sha256=Y-OqPXR2D2aCEZWuCoyWlNSCbnD3VufbOX8z2vgnjyM,29296
|
|
341
|
+
umap/static/umap/locale/ro.json,sha256=Fy2aOAvi2SnwZQAB801w1-__s_nx3RGwbp5Cf-9eDf4,29231
|
|
342
|
+
umap/static/umap/locale/ru.js,sha256=pf4J79Col_9Tqv45w8uFv8WaPKXPgA7pyLF3x9hC1vw,36527
|
|
343
|
+
umap/static/umap/locale/ru.json,sha256=CBNZWjM5nubdqgUJbtbfUyDkdC5oZwI6uX14l2qruDE,36462
|
|
344
|
+
umap/static/umap/locale/si.js,sha256=Ajul-gcw_JPDkYK7n1GiXfgX8KNY0KiU7JHLu9puMHo,28490
|
|
345
|
+
umap/static/umap/locale/si.json,sha256=Bj9Tw22xYOxtERqC0ImucvCM6G-zY8gsnUuN6pgJLso,28425
|
|
346
|
+
umap/static/umap/locale/sk_SK.js,sha256=N3Joczp96fsrSw2G4nsqXZ8UNuYPMssoScGDyQgqRog,30537
|
|
347
|
+
umap/static/umap/locale/sk_SK.json,sha256=1DeOl2V3Io9Iz96St6MgprX8ZsXIN-CKGOtYvq3DppY,30466
|
|
348
|
+
umap/static/umap/locale/sl.js,sha256=8HQv71KC2_y_Nq7NP3L0hmyoWqhu07Cm83MsmTHQ0_E,30426
|
|
349
|
+
umap/static/umap/locale/sl.json,sha256=fOWFKF1zQlydk89-t_mfcWwL9MNGGPvuUSKYSlhfbhQ,30361
|
|
350
|
+
umap/static/umap/locale/sr.js,sha256=n8_mMPEjnNcdxqLxKxp-1_b3oxLCWBLvAjGqkjPOkco,33297
|
|
351
|
+
umap/static/umap/locale/sr.json,sha256=q7VN3DDUmCFUayEK9zq2w5EhCIuyHrUIxD1T8Z7jQUE,33232
|
|
352
|
+
umap/static/umap/locale/sv.js,sha256=G5XxYAoNYJWKCST9w0uE59h48nxY2vQZ9ycVniwS6Cw,30326
|
|
353
|
+
umap/static/umap/locale/sv.json,sha256=1KKBM5akvqZFpJE0QdgggDYKPAHHK6-WPaoYX2QAc28,30261
|
|
354
|
+
umap/static/umap/locale/th_TH.js,sha256=RJuc1--zOkZ_QW6UdGLrlN0iwJWYX-HLnh9DonnLDaU,30351
|
|
355
|
+
umap/static/umap/locale/th_TH.json,sha256=bZdv7f6MCAkVW87riitbTrYI6y6-Xy7CuihRowcnaMU,30280
|
|
356
|
+
umap/static/umap/locale/tr.js,sha256=nRIjktoGNzryxmT_Gg7OpimzQ3EOPEWw6HwHOE4S5B8,30853
|
|
357
|
+
umap/static/umap/locale/tr.json,sha256=8gWE8atPfmlEWss-Ib0p5HQTniRkL17orl-pV6a3UU8,30788
|
|
358
|
+
umap/static/umap/locale/uk_UA.js,sha256=MEkDQFkHQ0mES3bPrYZQ02YxAYA0cJgRpgdT1dn7rU8,36184
|
|
359
|
+
umap/static/umap/locale/uk_UA.json,sha256=kJrZDhPu5Pm1NR8CtoNvoQxAMs1AZ1L2h-_Sa9DPdzM,36113
|
|
360
|
+
umap/static/umap/locale/vi.js,sha256=SOUTXsDr4Dee8rEY7Sq1CqmETSU_chgEi_BB6qKMJws,29547
|
|
361
|
+
umap/static/umap/locale/vi.json,sha256=0cBX_zRFdJVFFujHtom3wmL0UCgJudDXelrG4Hms3Ik,29482
|
|
362
|
+
umap/static/umap/locale/vi_VN.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
|
|
363
|
+
umap/static/umap/locale/zh.js,sha256=SjOsavnijVGgkODXCPnU_aDP4lrsTjwN8CIokqXo6-I,28974
|
|
364
|
+
umap/static/umap/locale/zh.json,sha256=4ZTMRh_3_QG27WXeHPxWt68FRS-7BFZk77Kf89knXw4,28909
|
|
365
|
+
umap/static/umap/locale/zh_CN.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
|
|
366
|
+
umap/static/umap/locale/zh_TW.Big5.json,sha256=AAIiDStS_GxxKjYQzUn0GAUUQ57jdIKqMJcgsohMpFw,29202
|
|
367
|
+
umap/static/umap/locale/zh_TW.js,sha256=BfsgSM3W_oNFY_6uSVi3RN8txM2sUvvDxRiDCwRzN6Y,29146
|
|
368
|
+
umap/static/umap/locale/zh_TW.json,sha256=Bk8NxZwy7OsG2xseNhg0JiuP064HKWbA6BIMBkMi-_g,29075
|
|
363
369
|
umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
|
|
364
370
|
umap/static/umap/test/DataLayer.js,sha256=P-bq8gjGrSEKXLxmDk85NI33GT5XWHHLvv44xJ7CGKk,14221
|
|
365
371
|
umap/static/umap/test/Feature.js,sha256=xb6HjjD_EuI4ezvn3z_SUR_s7C1e8xmZim20VHaR2qg,3664
|
|
@@ -371,14 +377,13 @@ umap/static/umap/test/Util.js,sha256=KBsOQN_E4Y5N8VSDNP5fLdUrvOh7G3pewrkRKq547VQ
|
|
|
371
377
|
umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
|
|
372
378
|
umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
|
|
373
379
|
umap/static/umap/unittests/URLs.js,sha256=EqXPGohwNiEtJWk1QY2KgPaIwd0iP56nYvn05ufsZ-g,1878
|
|
374
|
-
umap/static/umap/unittests/
|
|
375
|
-
umap/static/umap/unittests/
|
|
376
|
-
umap/static/umap/
|
|
377
|
-
umap/static/umap/vendors/
|
|
378
|
-
umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt4ZrRcCzTUp6OiNmD5KuDsZCvhG-yZt8lhE,8994
|
|
380
|
+
umap/static/umap/unittests/hlc.js,sha256=GvpBaBSgfMs0Zym0_zOs2QldUOcbFNVIKweBhuwM_QI,5294
|
|
381
|
+
umap/static/umap/unittests/sync.js,sha256=JSyT4ZwuRF1mMUzLLJzjIs_6iZz8S2iF1imJGLpSdwQ,12751
|
|
382
|
+
umap/static/umap/unittests/utils.js,sha256=oVckWaCK26yR8nX9NlVEL_eVKf0i8Z-UNnK5K9xY9t0,25609
|
|
383
|
+
umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=wEHf7UslhI09j7tfzC1V9FLgTbZELDbbtGiL2x0y9vY,23051
|
|
379
384
|
umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=Cb88gwY7oibx7WL1Y3bfxc_Cur6yo62nLGaEmzP7Fbw,15530
|
|
380
|
-
umap/static/umap/vendors/dompurify/purify.es.js,sha256=
|
|
381
|
-
umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=
|
|
385
|
+
umap/static/umap/vendors/dompurify/purify.es.js,sha256=z-0CPcG0TCk11WMdauq46gDt65U61y_i-ltN5dKc500,64057
|
|
386
|
+
umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=wzzJMafObQYxw2FUcIM4AJShakCHU1hiEm1MotxK79g,123512
|
|
382
387
|
umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=5-RlyT7RhocenG85yKIhSPdCvUrpxH2o-lvWS9St5uA,69568
|
|
383
388
|
umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayxzynqhE-AgnuRlqYI0,3898
|
|
384
389
|
umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
|
|
@@ -391,7 +396,7 @@ umap/static/umap/vendors/fullscreen/fullscreen.png,sha256=yDtz-dhjuAoo6q9xc00-_X
|
|
|
391
396
|
umap/static/umap/vendors/fullscreen/fullscreen@2x.png,sha256=HVi2guZO6sekf2NggilbzjUTvJDweXpSMBS81fhtnX0,420
|
|
392
397
|
umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css,sha256=YTbhDGEH5amI_JfotPMN7IByFpsN9e4tCBnv5oNdvHU,994
|
|
393
398
|
umap/static/umap/vendors/geojson-to-gpx/index.js,sha256=0Yj4TT2yEefWHMCX-0S2sEe7zx89nzN6rFiB-gWfw_s,6242
|
|
394
|
-
umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js,sha256=
|
|
399
|
+
umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js,sha256=LIA6eoe2jK-I4fUdb4SDDXNGEPKTvVnYfX2nIO_dHOQ,2683
|
|
395
400
|
umap/static/umap/vendors/hash/leaflet-hash.js,sha256=0gxt71nsjV0toCvIrBkXr1M5IecQXS39rv9In81hLpE,3462
|
|
396
401
|
umap/static/umap/vendors/heat/leaflet-heat.js,sha256=65UqrlgGoRAnKfKRuriH3eeDrOhZgZo1SCenduc-SGo,5158
|
|
397
402
|
umap/static/umap/vendors/i18n/Leaflet.i18n.js,sha256=2_Ztz6WBwqg5fdzoVOvB8-b2kzMiQJqpa6K4tcG1aOQ,1328
|
|
@@ -411,8 +416,8 @@ umap/static/umap/vendors/loading/Control.Loading.css,sha256=oDy5SfMp_Ew1KH2J2avM
|
|
|
411
416
|
umap/static/umap/vendors/loading/Control.Loading.js,sha256=FquvQIblVRto7kZlJ5hTS0rpr9fzTyNmCCmQzsy5EnU,14143
|
|
412
417
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css,sha256=b1FUshftUDgzY_VtFMamPDs0o3GER52S9Tk8IK-wOoE,2269
|
|
413
418
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map,sha256=BeirY1RltKf8DrqX4U6IEg49yGaSOS4II4CqTJ96Hi8,371
|
|
414
|
-
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js,sha256=
|
|
415
|
-
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map,sha256=
|
|
419
|
+
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js,sha256=43FlkezpyRF326OVLB4hJ2nwWATdloa0VVWKR727wI4,12712
|
|
420
|
+
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map,sha256=CmhhyXJFHx6jWQidSqqQlQKmNN7bTiqiiTTTqIn5X7E,15816
|
|
416
421
|
umap/static/umap/vendors/markercluster/MarkerCluster.Default.css,sha256=YSWCMtmNZNwqex4CEw1nQhvFub2lmU7vcCKP-XVwwXA,1287
|
|
417
422
|
umap/static/umap/vendors/markercluster/MarkerCluster.css,sha256=YU3qCpj_P06tdPBJGPax0bm6Q1wltfwjsho5TR4-TYc,872
|
|
418
423
|
umap/static/umap/vendors/markercluster/leaflet.markercluster.js,sha256=Hk4dIpcqOSb0hZjgyvFOP-cEmDXUKKNE_tT542ZbNQg,34136
|
|
@@ -425,8 +430,8 @@ umap/static/umap/vendors/minimap/images/toggle.png,sha256=dSjmzalnKhlwWcTiw6qF82
|
|
|
425
430
|
umap/static/umap/vendors/minimap/images/toggle.svg,sha256=qYiFw3DWtNgmPPxyM2tW4Q0yQCFdWGtCJ9RqT9SRyhs,1765
|
|
426
431
|
umap/static/umap/vendors/osmtogeojson/osmtogeojson.js,sha256=Zju1u65H1dEr_5zxyHuPlz6F-rSx-DRTgQquma3VRZI,34674
|
|
427
432
|
umap/static/umap/vendors/photon/leaflet.photon.js,sha256=AAgrsDIbpaugU6-2u6024CRB2cvE1OCNek7N9zAVlgY,14730
|
|
428
|
-
umap/static/umap/vendors/simple-statistics/simple-statistics.min.js,sha256=
|
|
429
|
-
umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map,sha256=
|
|
433
|
+
umap/static/umap/vendors/simple-statistics/simple-statistics.min.js,sha256=3vLsuPerHhN9Ywzrl8oey2zgVDhD4VqVGWXY0WammyQ,24073
|
|
434
|
+
umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map,sha256=ayC2E6wVocDrMV-bpQkwXxkVhqcsS0AqHRZ98Nc9JaQ,196163
|
|
430
435
|
umap/static/umap/vendors/togeojson/togeojson.es.js,sha256=3ahjSicOyuiPMyXmBClO89l-QykDhAy0Fm09kWGSrWI,34371
|
|
431
436
|
umap/static/umap/vendors/togeojson/togeojson.es.mjs.map,sha256=NBjflNKJL_uGfiPrRRja6IoswUQ2_kaNk3iV64WY2Uo,75780
|
|
432
437
|
umap/static/umap/vendors/tokml/tokml.es.js,sha256=BqL0WqFH5UZAh_S_265E6PWZjPMYxeGNFgAgywM4Aeo,23457
|
|
@@ -445,15 +450,15 @@ umap/templates/umap/about_summary.html,sha256=5pvCvX34YHk_XCtZfcRSznvRwi_-UJMioD
|
|
|
445
450
|
umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
|
|
446
451
|
umap/templates/umap/content.html,sha256=KfNQ18LcbxFd00tHQeirGy5Vh75qQNM6pj0bQbcy4Bo,2246
|
|
447
452
|
umap/templates/umap/content_footer.html,sha256=wkdc4Usuq4-vDIJHPxv-KS6KL4gBkUl7ARyU7zz1Zis,1154
|
|
448
|
-
umap/templates/umap/css.html,sha256=
|
|
449
|
-
umap/templates/umap/dashboard_menu.html,sha256=
|
|
453
|
+
umap/templates/umap/css.html,sha256=lR84fa1TVT9aDwMOko2VhgjBMEWFZlembJajSVuTNcs,2068
|
|
454
|
+
umap/templates/umap/dashboard_menu.html,sha256=DEzGwiL_U1ntDpY0Ybda5ijDMSNw-n7Vb-V7HrsqYgo,688
|
|
450
455
|
umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
451
456
|
umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
452
457
|
umap/templates/umap/home.html,sha256=021I4eVLjMWvhsIqo2k2FADXla2c4UClAJ1uy9R5KVI,839
|
|
453
|
-
umap/templates/umap/js.html,sha256=
|
|
458
|
+
umap/templates/umap/js.html,sha256=15Hp845KXDZhTT4Hfjxo_W6c63CHOWUp6OeHIqGenyU,2472
|
|
454
459
|
umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
|
|
455
460
|
umap/templates/umap/login_popup_end.html,sha256=kcENvhycpVvvIzbNasX1rcSI_67A6pttkWCxy0vHC8g,693
|
|
456
|
-
umap/templates/umap/map_detail.html,sha256=
|
|
461
|
+
umap/templates/umap/map_detail.html,sha256=xMOsbF7NWJ-mpShR0ciJ8MrTeG2OYDm8OIL0yHbW6eg,1192
|
|
457
462
|
umap/templates/umap/map_fragment.html,sha256=ZRIA3W2tuIecv2LtxyKNSW4k7PmCxRlFmI6TIKC1EV8,152
|
|
458
463
|
umap/templates/umap/map_init.html,sha256=mglKMOvxRbe9qhO8SYsK0q3xcPcqEdSepo1sszxmDrE,290
|
|
459
464
|
umap/templates/umap/map_list.html,sha256=Jb-VU3dQdRWsW80nyyRq1Eb6UrhAoIfGleu1cNMJKwc,673
|
|
@@ -477,17 +482,20 @@ umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
477
482
|
umap/tests/base.py,sha256=VsyFT-cqXEL0scSI69WKUdItfagqOZ3t2omINyVpb1M,4471
|
|
478
483
|
umap/tests/conftest.py,sha256=KQCZanCTl1ABLIKOuyxS_cpBoXGiwjDc29jsLBiSWxY,1633
|
|
479
484
|
umap/tests/settings.py,sha256=tY70LMFXyo_WijswqGyeWai7vBzM62k7IA8pkkbc9y4,816
|
|
480
|
-
umap/tests/
|
|
485
|
+
umap/tests/test_clean_tilelayer.py,sha256=wGTd_AHOTmQ4QMswAyc-1_lJmQOSyhY3OahLAusEIdA,2515
|
|
486
|
+
umap/tests/test_datalayer.py,sha256=6TI9-Tc5Fl2Bxe9vjxmfDV9BHd62ixIkTSEMOfWB8iA,9590
|
|
481
487
|
umap/tests/test_datalayer_views.py,sha256=oq1azMk0IUgf688a41VJHZO4In7On3Nb72x3wwP_ZVQ,22105
|
|
482
488
|
umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
|
|
483
489
|
umap/tests/test_map.py,sha256=yDSU75RxqCmXyiL90NZbrqvrYtmm6OFoc7SQ0kf0ei0,4874
|
|
484
|
-
umap/tests/test_map_views.py,sha256=
|
|
490
|
+
umap/tests/test_map_views.py,sha256=JLKX0zPE7aqw8osVanylO00NDFCxPiMc3I-wGeV-SOc,32567
|
|
485
491
|
umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
|
|
492
|
+
umap/tests/test_purge_purgatory.py,sha256=oQnsZqBFaJFDJxXtkkg2qzi1EFP57RpCwb6MQTupeIY,924
|
|
486
493
|
umap/tests/test_statics.py,sha256=WJe4DZ-cSfN_wCRD8U9ocl6v5FoXrVwBjU6kI6BOcmY,1252
|
|
487
494
|
umap/tests/test_team_views.py,sha256=vExhJ3c1cJ7vgxe0G20UzTKkzR5D2UgAapk09muUg5w,4481
|
|
488
495
|
umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
|
|
489
496
|
umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
|
|
490
497
|
umap/tests/test_views.py,sha256=_zc48oUJ4iz6wZZmjE23RcNqaB17m4Rs5LBYEtrEGlM,16805
|
|
498
|
+
umap/tests/test_websocket_server.py,sha256=BQ9Sy5VC9kBAfPWVxqcXoi9yfq12nfNvBE_j5rTFk7w,696
|
|
491
499
|
umap/tests/fixtures/categorized_highway.geojson,sha256=p7QHOd8nXi7yVq37gY6Ca8BXkjaLnDxW9Fq0Zcm3Fk4,15830
|
|
492
500
|
umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
|
|
493
501
|
umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
|
|
@@ -495,7 +503,7 @@ umap/tests/fixtures/display_on_load.umap,sha256=eo4ecB3QUeCVu1u7COp7mZ8sCPkf2j4g
|
|
|
495
503
|
umap/tests/fixtures/star.svg,sha256=zIi-j16L1Fzxtqz2rV2NDDm1NDHBWQfM5O6MIeoxgEU,256
|
|
496
504
|
umap/tests/fixtures/test_circles_layer.geojson,sha256=8S_zh4MA-5qqm43ETKfGz0hw84vuN2cXB1vTz9Syu3k,6454
|
|
497
505
|
umap/tests/fixtures/test_import_osm_relation.json,sha256=SjZFqZ-qnxcrUnVkb43jI9iMBF8Il3-OPqxh62nNH9o,4249
|
|
498
|
-
umap/tests/fixtures/test_upload_data.csv,sha256=
|
|
506
|
+
umap/tests/fixtures/test_upload_data.csv,sha256=6wI0zxHgmTOeFhO7JxEhlG98IZ8vpKzxbt8lbAiW6ZY,180
|
|
499
507
|
umap/tests/fixtures/test_upload_data.gpx,sha256=sIfeKEGxYikzg121qBdkBIVTFpuYh8q2-yWZOZwbu38,674
|
|
500
508
|
umap/tests/fixtures/test_upload_data.json,sha256=t4PmJtVDhyI1x-E1a36jD8YVSa87T-Vtg8eBmHfQ4KQ,5650
|
|
501
509
|
umap/tests/fixtures/test_upload_data.kml,sha256=t66ms8oNI3999bhRJx01mn-UuHeqWoVY5LfXnChBaP8,1102
|
|
@@ -508,31 +516,32 @@ umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIx
|
|
|
508
516
|
umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
|
|
509
517
|
umap/tests/integration/conftest.py,sha256=bo-ndi3ARHnkwRGo8fGi6lqTd_LdXWSOpgNyXEMcO0I,2436
|
|
510
518
|
umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
|
|
511
|
-
umap/tests/integration/test_anonymous_owned_map.py,sha256=
|
|
512
|
-
umap/tests/integration/test_basics.py,sha256=
|
|
513
|
-
umap/tests/integration/test_browser.py,sha256=
|
|
514
|
-
umap/tests/integration/test_caption.py,sha256=
|
|
519
|
+
umap/tests/integration/test_anonymous_owned_map.py,sha256=d7YBsnO79NHRHgdYCYqmyALzeHtV__9dWObtvEfv0VM,10673
|
|
520
|
+
umap/tests/integration/test_basics.py,sha256=_aURyfOJen41AQtTvjQ2pHP5GNc1KVV6NRSspSuxKL0,3760
|
|
521
|
+
umap/tests/integration/test_browser.py,sha256=uhis-PUFERQEuasfZPRP2tLuq9GcaNeie4nx3n_7SL0,19977
|
|
522
|
+
umap/tests/integration/test_caption.py,sha256=ZZwI3kyZe-t4MTxUkfXu33CLhnX5QfDqqwvO_DN4BpU,1783
|
|
515
523
|
umap/tests/integration/test_categorized_layer.py,sha256=1MJopDBMLUd_NN2NVqWoePuNPS42RbNlXOwXeyKdZo8,5586
|
|
516
524
|
umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
|
|
517
|
-
umap/tests/integration/test_circles_layer.py,sha256=
|
|
525
|
+
umap/tests/integration/test_circles_layer.py,sha256=PjYGmCvAd9qDnldnbiw6nomJs1YgUdX181a9xrWSUYE,2396
|
|
526
|
+
umap/tests/integration/test_cluster.py,sha256=AK4t1k0nur2-gSSFPvkhnq7Ki81PgfvYv1AQcZmr5iQ,1680
|
|
518
527
|
umap/tests/integration/test_conditional_rules.py,sha256=josrLgUbBvoa9ygbJB6sKR5_GnTXo65UGrJMSpD8QbY,11890
|
|
519
528
|
umap/tests/integration/test_dashboard.py,sha256=OmqZx6NwtTnPj1-HsYyg5WptcmPpSq5pL01VtxZuuzk,1526
|
|
520
|
-
umap/tests/integration/test_datalayer.py,sha256=
|
|
521
|
-
umap/tests/integration/test_draw_polygon.py,sha256=
|
|
522
|
-
umap/tests/integration/test_draw_polyline.py,sha256=
|
|
523
|
-
umap/tests/integration/test_edit_datalayer.py,sha256=
|
|
524
|
-
umap/tests/integration/test_edit_map.py,sha256=
|
|
525
|
-
umap/tests/integration/test_edit_marker.py,sha256=
|
|
529
|
+
umap/tests/integration/test_datalayer.py,sha256=cxsf65noYTucEMLuUz8DfJ9abXHhAq0n65MvdBmBRVo,5492
|
|
530
|
+
umap/tests/integration/test_draw_polygon.py,sha256=Ub_1Witps_BLwMMmQ4M0vPIyQOEQ_Bq82znpJdWpCfY,25385
|
|
531
|
+
umap/tests/integration/test_draw_polyline.py,sha256=lPr5hz-wHL9oC2B3yveNHC-OxdzWvcf8fHMBZbXTuss,14801
|
|
532
|
+
umap/tests/integration/test_edit_datalayer.py,sha256=oZFEvjAC0XIHgWgwE683dAL95y1Mvl-SBEVaf_dQnR4,9342
|
|
533
|
+
umap/tests/integration/test_edit_map.py,sha256=d76M4J6rumDQ6sKaOyTA45dWAkwAOtoUuNkW-GsA-fo,7134
|
|
534
|
+
umap/tests/integration/test_edit_marker.py,sha256=sj4n2mCYQ-qZ02jFHA566Wg_y9F6oXb1AxddnthSQHI,4746
|
|
526
535
|
umap/tests/integration/test_edit_polygon.py,sha256=JeIW6NcBltIl958uJ_T-0dRCT5gOo9JrNtULvg7nxf4,5286
|
|
527
536
|
umap/tests/integration/test_export_map.py,sha256=jH0BXm-7Ov26OEkve9-xKMfRwXwR73zRrZLIQusyUOY,12112
|
|
528
|
-
umap/tests/integration/test_facets_browser.py,sha256=
|
|
537
|
+
umap/tests/integration/test_facets_browser.py,sha256=J--y2rpI__0RIPzcTx4Kn2UwuurFdh-6i_Y4c6GxUyY,10658
|
|
529
538
|
umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
|
|
530
|
-
umap/tests/integration/test_import.py,sha256=
|
|
531
|
-
umap/tests/integration/test_map.py,sha256=
|
|
539
|
+
umap/tests/integration/test_import.py,sha256=k_lrh8HhMLGtpuzYxREyCi_fAQTZboeq6Wd34_MkgV4,28995
|
|
540
|
+
umap/tests/integration/test_map.py,sha256=2ZO54RFVycJKGczfioX0nU1oCu29FVC9hR6wbT4s1NE,8736
|
|
532
541
|
umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
|
|
533
542
|
umap/tests/integration/test_map_preview.py,sha256=kP0vkEiUN7EJNCvZgNeUAzrrXfgwpU0S2UnmOBV4P5A,3540
|
|
534
543
|
umap/tests/integration/test_optimistic_merge.py,sha256=HK-RYWyqvkUw3ibnONzb3HNMsvj9RLDXnf0vJlWkv6g,10948
|
|
535
|
-
umap/tests/integration/test_owned_map.py,sha256=
|
|
544
|
+
umap/tests/integration/test_owned_map.py,sha256=v6s0mwXuMDYAzcYoskx3hYX3Nn6X-VdlRiNSHjxQsjg,10368
|
|
536
545
|
umap/tests/integration/test_picto.py,sha256=Ey9V-NTQ64cIEtdXWzjhlBEykmTiGk7jUxKN1oA6n_g,9040
|
|
537
546
|
umap/tests/integration/test_querystring.py,sha256=yR7oOlIA4qbL14gEazdFmdCtoOc7RKwadpuuutAPxU8,2754
|
|
538
547
|
umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
|
|
@@ -541,12 +550,12 @@ umap/tests/integration/test_star.py,sha256=icB5SbFbXe4KYp3DIJ0xAwCrSQS2rweqIaQTA
|
|
|
541
550
|
umap/tests/integration/test_tableeditor.py,sha256=C2s06rTnzbs_ULxfsyPVq4UkfpnuRxCvqsK2zaEYfa0,7838
|
|
542
551
|
umap/tests/integration/test_team.py,sha256=LVuj5Dhz27cqk6ieEbukGsdy9J2FP5aQmcMex_xevIg,1594
|
|
543
552
|
umap/tests/integration/test_tilelayer.py,sha256=rBI3bm4hCpH87rcFvuc5H8yu1D9FQBZMNbqqJzpdI24,5302
|
|
544
|
-
umap/tests/integration/test_view_marker.py,sha256=
|
|
545
|
-
umap/tests/integration/test_view_polygon.py,sha256=
|
|
553
|
+
umap/tests/integration/test_view_marker.py,sha256=f_WqtVe0ZfDX_SOeNXFh54ubvhJWeu7Ox9_Rtb-yfZQ,5970
|
|
554
|
+
umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
|
|
546
555
|
umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
|
|
547
|
-
umap/tests/integration/test_websocket_sync.py,sha256=
|
|
548
|
-
umap_project-2.
|
|
549
|
-
umap_project-2.
|
|
550
|
-
umap_project-2.
|
|
551
|
-
umap_project-2.
|
|
552
|
-
umap_project-2.
|
|
556
|
+
umap/tests/integration/test_websocket_sync.py,sha256=pcEoXgEFvLBdmQA_rGa5BcHE2eBe3P0qZ6X3j4goRzQ,12764
|
|
557
|
+
umap_project-2.7.0.dist-info/METADATA,sha256=EUcgxam0z96KnDDfSJiHTkydthDCBJzvxciZf-fYw60,2888
|
|
558
|
+
umap_project-2.7.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
|
559
|
+
umap_project-2.7.0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
560
|
+
umap_project-2.7.0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
561
|
+
umap_project-2.7.0.dist-info/RECORD,,
|