umap-project 3.0.5__py3-none-any.whl → 3.1.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/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.mo +0 -0
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +219 -73
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +15 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +34 -1
- umap/static/umap/locale/en.json +34 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_init.html +3 -1
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_basics.py +9 -1
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +65 -19
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/METADATA +15 -15
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/RECORD +145 -132
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=3vf_fJuJ1GKgsLolRXa0KsZlsevgoI4iyhPFl5-KJnM,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
|
|
@@ -6,13 +6,13 @@ umap/autocomplete.py,sha256=wHxlOTHQozSQcUAYVfBIGMsgVCKT1ox9bZ0uqUk63YY,803
|
|
|
6
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=
|
|
10
|
-
umap/managers.py,sha256
|
|
11
|
-
umap/middleware.py,sha256
|
|
12
|
-
umap/models.py,sha256=
|
|
13
|
-
umap/urls.py,sha256=
|
|
9
|
+
umap/forms.py,sha256=i_SQ6OykKc6XFZJ5tg3rrA6r5SryOvj1WiKbIcWtD4A,3771
|
|
10
|
+
umap/managers.py,sha256=A5Ih92f9E3egPVCToQHYJ4wQMFSqTS6dtqzx56Fs2JU,1051
|
|
11
|
+
umap/middleware.py,sha256=GsIFl0St_Rk5zjpE8dpGBlD0JL2AyMrNHu8SHylqwEg,1564
|
|
12
|
+
umap/models.py,sha256=xANPE5gw3jjLartllGrc3GtEZ4en1NsG1WLS05blmRc,19914
|
|
13
|
+
umap/urls.py,sha256=DQ932n0lyS-7eD8ubIaZtW2xjssSVuI7P0DWkClVFx4,7837
|
|
14
14
|
umap/utils.py,sha256=WlTnzS2LUraYViSMsI2tf_0caq_yw_p8RLqpkjynf5E,6379
|
|
15
|
-
umap/views.py,sha256=
|
|
15
|
+
umap/views.py,sha256=dwvJz4IcYNUI-S7Z9iU0lePJ2Pn-1vDbV9wIvqlzetU,50041
|
|
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
|
|
@@ -23,62 +23,62 @@ umap/locale/ast/LC_MESSAGES/django.mo,sha256=KUDcu-q8RC_ZdxpQ6I_9cXxfA4X7sCrHddB
|
|
|
23
23
|
umap/locale/ast/LC_MESSAGES/django.po,sha256=cb9rEL6AdZKMwXrjEDThG2Wok-fHLTdWlRReg6DUdMA,8007
|
|
24
24
|
umap/locale/bg/LC_MESSAGES/django.mo,sha256=8nzIStwTN-VG_S8pi2ABNIdqtX6YDtBbt-ThcyU4KdI,5811
|
|
25
25
|
umap/locale/bg/LC_MESSAGES/django.po,sha256=dAX0aIsGesD3vu2vGgMEvdxqWogIOPX-gnhagGkYj54,16590
|
|
26
|
-
umap/locale/br/LC_MESSAGES/django.mo,sha256=
|
|
27
|
-
umap/locale/br/LC_MESSAGES/django.po,sha256=
|
|
28
|
-
umap/locale/ca/LC_MESSAGES/django.mo,sha256=
|
|
29
|
-
umap/locale/ca/LC_MESSAGES/django.po,sha256=
|
|
30
|
-
umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=
|
|
31
|
-
umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=
|
|
32
|
-
umap/locale/da/LC_MESSAGES/django.mo,sha256=
|
|
33
|
-
umap/locale/da/LC_MESSAGES/django.po,sha256=
|
|
34
|
-
umap/locale/de/LC_MESSAGES/django.mo,sha256=
|
|
35
|
-
umap/locale/de/LC_MESSAGES/django.po,sha256=
|
|
36
|
-
umap/locale/el/LC_MESSAGES/django.mo,sha256=
|
|
37
|
-
umap/locale/el/LC_MESSAGES/django.po,sha256=
|
|
38
|
-
umap/locale/en/LC_MESSAGES/django.mo,sha256=
|
|
39
|
-
umap/locale/en/LC_MESSAGES/django.po,sha256=
|
|
40
|
-
umap/locale/es/LC_MESSAGES/django.mo,sha256=
|
|
41
|
-
umap/locale/es/LC_MESSAGES/django.po,sha256=
|
|
42
|
-
umap/locale/et/LC_MESSAGES/django.mo,sha256=
|
|
43
|
-
umap/locale/et/LC_MESSAGES/django.po,sha256=
|
|
44
|
-
umap/locale/eu/LC_MESSAGES/django.mo,sha256=
|
|
45
|
-
umap/locale/eu/LC_MESSAGES/django.po,sha256=
|
|
46
|
-
umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=
|
|
47
|
-
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=
|
|
26
|
+
umap/locale/br/LC_MESSAGES/django.mo,sha256=QxrhLe2zCvq0T-lIgS4Nf-J-n1qYvFhMel-Lsz_5EcQ,13177
|
|
27
|
+
umap/locale/br/LC_MESSAGES/django.po,sha256=aNkz0lFGm_y3KEnkMmN5iMHHbPAYaUrE5EZSF0SSTeQ,22596
|
|
28
|
+
umap/locale/ca/LC_MESSAGES/django.mo,sha256=ot6jkZZt33z5vi1vjioiYkIhj06M8yUsoh72y8F1KAw,8465
|
|
29
|
+
umap/locale/ca/LC_MESSAGES/django.po,sha256=1N47JBRQkUM--J0mplfECL-VyOcV3ZwU69eusIoK_BE,20736
|
|
30
|
+
umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=3rvUUEYFDqA4pNXEqv9E1qkmiXmlrT3AccA7TyR7ung,13469
|
|
31
|
+
umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=IFiiN_krWV-hNxb_cymO-InjLijST0-RcqHDGk8MUfc,23025
|
|
32
|
+
umap/locale/da/LC_MESSAGES/django.mo,sha256=ZjvoMeBervGEeln7yBqNSx1yb98ovwtag9Ox7hPmg1w,15358
|
|
33
|
+
umap/locale/da/LC_MESSAGES/django.po,sha256=l3k3LwGQrESZc8XWHa2If5EoTuLzy1MvedZoAKusu0M,23101
|
|
34
|
+
umap/locale/de/LC_MESSAGES/django.mo,sha256=OsdSrFm_j5mqemJW26YEVWFmRFS6VmGoUjNeR2sTMbo,15131
|
|
35
|
+
umap/locale/de/LC_MESSAGES/django.po,sha256=a5ZngmPDqTmS2Y64SVmeb7YlAAJneUSpC_xqyIbFxQ0,23638
|
|
36
|
+
umap/locale/el/LC_MESSAGES/django.mo,sha256=6gXjLuMmJZN3-2UdUS_SjpRV-WIzk-kDx3YSghC2Q8o,20110
|
|
37
|
+
umap/locale/el/LC_MESSAGES/django.po,sha256=P1Hrbxvr4x4RihruT0ikK9hN0WvDGkZ9EVfuH17cIUM,28622
|
|
38
|
+
umap/locale/en/LC_MESSAGES/django.mo,sha256=au-HPUuc6FQ_crK6vdZ6vIXIaIvw8QXbSVmb24fmQZA,369
|
|
39
|
+
umap/locale/en/LC_MESSAGES/django.po,sha256=FM-OGxCVqKY9a-GrsfzJuAhBAOJhmvWOaVdXrjac-zA,17428
|
|
40
|
+
umap/locale/es/LC_MESSAGES/django.mo,sha256=_PIEAre9Tz44L6626UUgZw7nHWpXoK8d8_YWNAvJk20,15906
|
|
41
|
+
umap/locale/es/LC_MESSAGES/django.po,sha256=imix3c0Xycky3RRMHFG8naysWnz1iPaLuo7ovTXZj3Y,23964
|
|
42
|
+
umap/locale/et/LC_MESSAGES/django.mo,sha256=PzS7qLpjfx2vYCxJfg65P9I1TFGqXyr1kIhy-vlyqYo,8618
|
|
43
|
+
umap/locale/et/LC_MESSAGES/django.po,sha256=E2Y_tbZp6Ndk7UiwyzQXJ8T4mnirAh9oLUcFe31j0nE,20268
|
|
44
|
+
umap/locale/eu/LC_MESSAGES/django.mo,sha256=lH6Vz5F2QCqlIINeExSGh6_0HqnUTkJ2ZpMnBu5dVoQ,15813
|
|
45
|
+
umap/locale/eu/LC_MESSAGES/django.po,sha256=QYvH3Cp4pQlHH7dwB1nLnqXkQqM3JEiTc-45Htl7tJU,23488
|
|
46
|
+
umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=SCywKcC6yEdedTcWGPwRBfgQlszKeX3MQ9KYPGvMiQY,13666
|
|
47
|
+
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=uMHb2uJXhZrpzTXG_RdCQltkFvaQzYpkNrPfB0Aaj24,24337
|
|
48
48
|
umap/locale/fi/LC_MESSAGES/django.mo,sha256=O9foYGhfFTBjBb4Y9abWjOiZNpWtO-315nyHUaiJETM,4779
|
|
49
49
|
umap/locale/fi/LC_MESSAGES/django.po,sha256=5kG9XujFNllOh_wuakGmAHeMy9vqNWFLf9SSrMTaWlk,15709
|
|
50
|
-
umap/locale/fr/LC_MESSAGES/django.mo,sha256=
|
|
51
|
-
umap/locale/fr/LC_MESSAGES/django.po,sha256=
|
|
52
|
-
umap/locale/gl/LC_MESSAGES/django.mo,sha256=
|
|
53
|
-
umap/locale/gl/LC_MESSAGES/django.po,sha256=
|
|
50
|
+
umap/locale/fr/LC_MESSAGES/django.mo,sha256=G9uubnlrOOh06BIfHvlx4ibFrsSnoGEGg5YuzsTi-YE,16059
|
|
51
|
+
umap/locale/fr/LC_MESSAGES/django.po,sha256=garQqaO2uGDO5_WFrEgW25gVNd6sMxhe--5ToqRnTbM,24148
|
|
52
|
+
umap/locale/gl/LC_MESSAGES/django.mo,sha256=4e03SOje-h-l0HribWZ9-yC7bJmMk6VbK1FfLXOvxTA,13804
|
|
53
|
+
umap/locale/gl/LC_MESSAGES/django.po,sha256=cbHRfZU2a79mxUW2mWI_p-9NAYyjhV5j1nT7oFKdPF8,22904
|
|
54
54
|
umap/locale/he/LC_MESSAGES/django.mo,sha256=A6pkjaL4HQ7lyfvXcGIxle61RXdo7Byq3mfK2FIrSnc,6640
|
|
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=Za8gv3Zk332Ba1NLiMcrxT0o-T00RsV8yJnZmGqLFGY,15643
|
|
59
|
+
umap/locale/hu/LC_MESSAGES/django.po,sha256=il-BxCPc48Ktt3wuxBBAHywm5Cl0gJRyJDNP2eIMask,23966
|
|
60
60
|
umap/locale/id/LC_MESSAGES/django.mo,sha256=8craaGVnVbONfojnkDUUtoxMyeI2tt6GdIWeWZGcaJ8,425
|
|
61
61
|
umap/locale/id/LC_MESSAGES/django.po,sha256=wmbgIN1R7vRDgAdzBu7ZHnTpg5fpB3hmJyjAzRNoN-M,8000
|
|
62
|
-
umap/locale/is/LC_MESSAGES/django.mo,sha256=
|
|
63
|
-
umap/locale/is/LC_MESSAGES/django.po,sha256=
|
|
64
|
-
umap/locale/it/LC_MESSAGES/django.mo,sha256=
|
|
65
|
-
umap/locale/it/LC_MESSAGES/django.po,sha256=
|
|
62
|
+
umap/locale/is/LC_MESSAGES/django.mo,sha256=w3ImgT1j7n4Vw07yFik-xOWfAtiqN6ErgV9K1z4rK8A,14347
|
|
63
|
+
umap/locale/is/LC_MESSAGES/django.po,sha256=XUhPr-t27IKF6R7eEPeOgi_lCmxCvTrpV6hwsQa3uW0,23300
|
|
64
|
+
umap/locale/it/LC_MESSAGES/django.mo,sha256=vYS85OYewCrynVWEuEGQl_xX8VSvLeTVBK3FE02gXME,14854
|
|
65
|
+
umap/locale/it/LC_MESSAGES/django.po,sha256=iZhclsxsR2wpNS068wAnUZMf2BSL5e1lHHnghQCatFY,23703
|
|
66
66
|
umap/locale/ja/LC_MESSAGES/django.mo,sha256=zsTOx7DEn9r67Az293pOmtM3Hd8nFK53-TNZH1W6498,6369
|
|
67
67
|
umap/locale/ja/LC_MESSAGES/django.po,sha256=IF4sZYIDt8Nxdgt6Lbz0kDAty87N3ULdTDDYVhz1O6s,16735
|
|
68
68
|
umap/locale/ko/LC_MESSAGES/django.mo,sha256=xqzC6LAMv6pK2xiIlGoHyb18OQBACMBeevJfFFjK8iA,6365
|
|
69
69
|
umap/locale/ko/LC_MESSAGES/django.po,sha256=3vN0obz1v5AX-a3lXRqYltcb0DAB7dvL4Ja3y_z1Mro,16670
|
|
70
70
|
umap/locale/lt/LC_MESSAGES/django.mo,sha256=A4RbTyKvur2NUY0aKXCDmSIQV0G0GeOhQ1vwYz4nUlU,5706
|
|
71
71
|
umap/locale/lt/LC_MESSAGES/django.po,sha256=GK_nTnzSiMY4g2pf5uzh5Nzl57OTB4O9Y29ikZVp274,16324
|
|
72
|
-
umap/locale/ms/LC_MESSAGES/django.mo,sha256=
|
|
73
|
-
umap/locale/ms/LC_MESSAGES/django.po,sha256=
|
|
74
|
-
umap/locale/nl/LC_MESSAGES/django.mo,sha256=
|
|
75
|
-
umap/locale/nl/LC_MESSAGES/django.po,sha256=
|
|
72
|
+
umap/locale/ms/LC_MESSAGES/django.mo,sha256=4yHaFWXR-O6VjUtUnmcoyfV8OdJlUgi3YxN3mR97A30,9619
|
|
73
|
+
umap/locale/ms/LC_MESSAGES/django.po,sha256=3tEND2vbt3ZiW3jjX-ao6CkY2UOiQXuYOGfp3mgdLnE,21205
|
|
74
|
+
umap/locale/nl/LC_MESSAGES/django.mo,sha256=BsRKSUUPxSx5FgzKWAVDfNMyFFYZ9sH8O5OeQKvc528,15021
|
|
75
|
+
umap/locale/nl/LC_MESSAGES/django.po,sha256=RscdQxkxp6sJPDWrD5SOfTifjLggQZjEZiaYwZ9RmQw,23156
|
|
76
76
|
umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk_nsxXks,423
|
|
77
77
|
umap/locale/no/LC_MESSAGES/django.po,sha256=HXr3Y_gxOPjdU1pSV_tyX_l7pbDMVrFBdf0gm3gciwI,7998
|
|
78
|
-
umap/locale/pl/LC_MESSAGES/django.mo,sha256=
|
|
79
|
-
umap/locale/pl/LC_MESSAGES/django.po,sha256=
|
|
80
|
-
umap/locale/pt/LC_MESSAGES/django.mo,sha256=
|
|
81
|
-
umap/locale/pt/LC_MESSAGES/django.po,sha256=
|
|
78
|
+
umap/locale/pl/LC_MESSAGES/django.mo,sha256=1Bw4CiCB84VrlmJC5CcItPdkCXA0cND_7TaEfjIpLpk,10159
|
|
79
|
+
umap/locale/pl/LC_MESSAGES/django.po,sha256=3jECAf-U6RSPyboYn_wROGE9NGqCO7MG-9PIyIub1d0,21691
|
|
80
|
+
umap/locale/pt/LC_MESSAGES/django.mo,sha256=qHSZbQo2fAkMHZ8yG0OngzoYMM5x02MdQQoTRvB7byY,13543
|
|
81
|
+
umap/locale/pt/LC_MESSAGES/django.po,sha256=eWZfGEvGTPJwMAQw6ielUXGPQF3DnhMNZHZK6xIv_Jo,22834
|
|
82
82
|
umap/locale/pt_BR/LC_MESSAGES/django.mo,sha256=HSIam_B-jha9C6heFx6q_axE1IHAk1sPXeyFCjpxWWk,6077
|
|
83
83
|
umap/locale/pt_BR/LC_MESSAGES/django.po,sha256=XcGimIbdy4T6_ONPpCNqjCT0unt4RdndXg8GMTykr_E,16527
|
|
84
84
|
umap/locale/pt_PT/LC_MESSAGES/django.mo,sha256=6rNHtp4zBsXX4uIG4tQCnZxeO5GGucvrsl0JUXbRVrM,6105
|
|
@@ -107,8 +107,8 @@ umap/locale/vi/LC_MESSAGES/django.mo,sha256=zjsS0va90-Ezx1_JO59gKXYToqBjezp1ew6V
|
|
|
107
107
|
umap/locale/vi/LC_MESSAGES/django.po,sha256=SFJZUmxSxWSLc1ZCgZe4x1vs2uUdeFznXmOJTOGCZoM,15672
|
|
108
108
|
umap/locale/zh/LC_MESSAGES/django.mo,sha256=2Nr3G4oqiJd4fsxGwbN2EAPHGP20_Nof4Yv-AYU0rlw,3483
|
|
109
109
|
umap/locale/zh/LC_MESSAGES/django.po,sha256=2NfxhbFLnTpwLLl8iKiFrj7M0F0X8nVe6MsZPqVJH1o,14737
|
|
110
|
-
umap/locale/zh_TW/LC_MESSAGES/django.mo,sha256=
|
|
111
|
-
umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=
|
|
110
|
+
umap/locale/zh_TW/LC_MESSAGES/django.mo,sha256=edWPjP0PlvrVI58FQ986L3f1AqtGTrww3Ww_gxG6qBk,13038
|
|
111
|
+
umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=ViECOPg6JFouHXG-Pdmk8XWol3poBk7KW-OM7eeVtUs,22296
|
|
112
112
|
umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
113
113
|
umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
114
|
umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
|
|
@@ -116,7 +116,9 @@ umap/management/commands/clean_tilelayer.py,sha256=Rcc2PibUUreU0jUZMtUlyqVvgbQML
|
|
|
116
116
|
umap/management/commands/empty_trash.py,sha256=YUp7mZme94ailEnNZnVD8VDPI94buGLngXZ2nFPZ5ZA,1629
|
|
117
117
|
umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUeY2SlOrTXS42tE0-bs,1281
|
|
118
118
|
umap/management/commands/import_pictograms.py,sha256=RuQDCoiKamba4l3fZUGAXRyd-3zwWWT5c5AhgDvs7AQ,2369
|
|
119
|
-
umap/management/commands/migrate_to_S3.py,sha256=
|
|
119
|
+
umap/management/commands/migrate_to_S3.py,sha256=xVv2jHasK9gzXhOy8QCHP0bxoaOFIwOsMQoPDul_zsQ,2083
|
|
120
|
+
umap/management/commands/purge_old_versions.py,sha256=xuVVo4aRb7nZbzZ6PA9Jre10ipKsZGbcBbt2l8VnOM8,2478
|
|
121
|
+
umap/management/commands/switch_user.py,sha256=NbEGoK7dKgp7V0KOq1iV48_Kd1sVCeUBIu6HveESh_w,1794
|
|
120
122
|
umap/migrations/0001_initial.py,sha256=dMcXtTKPiA0IqXCrDVctH91Fe0hhc04NxmvcLAULyzE,8787
|
|
121
123
|
umap/migrations/0002_tilelayer_tms.py,sha256=E99JAu1K0NzwsCEJs1z5uGlBkBJmoVb9a3WBKjpLYlo,372
|
|
122
124
|
umap/migrations/0003_add_tilelayer.py,sha256=53r95Y13CvV0pXseYEnnqtPI4-Q0qcVldYMS-jFpPoE,833
|
|
@@ -144,26 +146,27 @@ umap/migrations/0024_alter_map_share_status.py,sha256=QRjERy2XN0jsc8MM5cCba5freq
|
|
|
144
146
|
umap/migrations/0025_alter_datalayer_geojson.py,sha256=958v9AkpkAR5Q78ZcHC0fgZzN05BdfQwtNvUuPmWEvI,563
|
|
145
147
|
umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py,sha256=TnFCUYKwj6rhHziCr5hyx7FDEzdA0235NR3_LAzKTwU,696
|
|
146
148
|
umap/migrations/0027_map_tags.py,sha256=zAJzbZkB5Lsp1zczqVbRU2zLwMRfBQzvrDR6G37sKZM,610
|
|
149
|
+
umap/migrations/0028_map_is_template.py,sha256=372PBmOD0VALI4hu_iWK4Uo3mKS3p4_donb0-47CFgs,512
|
|
147
150
|
umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
148
151
|
umap/settings/__init__.py,sha256=aPJkOTk0uFusIBA-uOjdUi10R5Cxt4jl5yv2_uCTUvo,1702
|
|
149
|
-
umap/settings/base.py,sha256=
|
|
152
|
+
umap/settings/base.py,sha256=3kZj5WoVnZK08Nblgi_afRxAUIPlAHV4vq3YuuxBT2k,12423
|
|
150
153
|
umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
|
|
151
154
|
umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
|
|
152
155
|
umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
|
-
umap/static/umap/base.css,sha256=
|
|
154
|
-
umap/static/umap/content.css,sha256=
|
|
156
|
+
umap/static/umap/base.css,sha256=qBg5XJt5sTs0KZ5icTBce3iQgYZOMA-YD5P-9Z6Vu08,5165
|
|
157
|
+
umap/static/umap/content.css,sha256=sd5G4QgI3EEkjZi2Gv90i0KUlO6B21SqmY9hbcF0OAw,12030
|
|
155
158
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
156
|
-
umap/static/umap/map.css,sha256=
|
|
159
|
+
umap/static/umap/map.css,sha256=AnVXEo3DRcQWIauKsPGritfkRnm7cyJ9svjvgCq3pBs,23871
|
|
157
160
|
umap/static/umap/nav.css,sha256=MsckfSfuMgADt71FIVpW351ZC2ATlr50iGW-47hziwk,1956
|
|
158
161
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
159
162
|
umap/static/umap/vars.css,sha256=E6FnvCQxs8TCWW4lfXMkSnuEQEwOklZnGFX5tqtW_nI,2164
|
|
160
163
|
umap/static/umap/css/bar.css,sha256=qAhRGfDqh0Att86H3RUr4os9DPiG6E83aPnKcUtDsS0,6250
|
|
161
164
|
umap/static/umap/css/contextmenu.css,sha256=etLtnZXVxJTkmggr05vcfStOw4Gu9DDDTMUh0PKw2Mg,752
|
|
162
|
-
umap/static/umap/css/dialog.css,sha256=
|
|
163
|
-
umap/static/umap/css/form.css,sha256=
|
|
164
|
-
umap/static/umap/css/icon.css,sha256=
|
|
165
|
-
umap/static/umap/css/importers.css,sha256=
|
|
166
|
-
umap/static/umap/css/panel.css,sha256=
|
|
165
|
+
umap/static/umap/css/dialog.css,sha256=43Cq5ll7g8u4mpzstTtoo5CXtcFkH9pMzEg04xujAaE,993
|
|
166
|
+
umap/static/umap/css/form.css,sha256=R0nLqTM0cUiN4lHsXhTV_ed_dNHwSWIGEG3JzsqJ9PA,14694
|
|
167
|
+
umap/static/umap/css/icon.css,sha256=KLlO784Wvp0VJ8liDFzv5k81oGU4bpwpx0nqCTE9l_U,5938
|
|
168
|
+
umap/static/umap/css/importers.css,sha256=Q_pXPC02AwaPi5hu-raDSoBBPKH2Vj-EOoLIG-IIn-A,1774
|
|
169
|
+
umap/static/umap/css/panel.css,sha256=CZ6_Kxo-As0XcbaMbHC2V5Qqotje_JeG7MYZ6rNlafU,4358
|
|
167
170
|
umap/static/umap/css/popup.css,sha256=arW0Yfisk5EUnT7-uSZEIw4IYZxF2uMJkiOtqyEmcIE,2400
|
|
168
171
|
umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
|
|
169
172
|
umap/static/umap/css/tableeditor.css,sha256=nYFd5qSMkUasFfAxkWwewKJ5MwIcZb2Zq_DViuDRZc4,1574
|
|
@@ -180,10 +183,10 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
|
|
|
180
183
|
umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
|
|
181
184
|
umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
|
|
182
185
|
umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
|
|
183
|
-
umap/static/umap/img/16-white.svg,sha256=
|
|
184
|
-
umap/static/umap/img/16.svg,sha256
|
|
185
|
-
umap/static/umap/img/24-white.svg,sha256=
|
|
186
|
-
umap/static/umap/img/24.svg,sha256=
|
|
186
|
+
umap/static/umap/img/16-white.svg,sha256=JbheWIIBZ3GZsCeEHdjahWDyEWOUWyYW9jztRVxjoDg,47701
|
|
187
|
+
umap/static/umap/img/16.svg,sha256=f528rPGSzpn7Ft8RqQN80gyxoCog3vB3MhrVeO_Q8j4,28917
|
|
188
|
+
umap/static/umap/img/24-white.svg,sha256=Wu4ggpWZ781dfaTlW2LH4TSl5mo5IM9nbU4x26kW6KA,20059
|
|
189
|
+
umap/static/umap/img/24.svg,sha256=1xFGK3MEdyw8njUfJv8Qj7A6bPVN1ybmadA4bfSdYPc,28314
|
|
187
190
|
umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
|
|
188
191
|
umap/static/umap/img/alert-icon-info.svg,sha256=wnfvaWhidanbIX8n2G8ppFG7pXyqnDjL9lhdbVoeCf8,735
|
|
189
192
|
umap/static/umap/img/alert-icon-success.svg,sha256=ZzH4Te0IMM0Cyf9MByh57gxNxVddOavA3gSGqsa3xM0,189
|
|
@@ -212,6 +215,7 @@ umap/static/umap/img/importers/cadastrefr.svg,sha256=L55Jy0rkP2rpfuzuw8iYQ7lmUPM
|
|
|
212
215
|
umap/static/umap/img/importers/communesfr.svg,sha256=P4M9PyT3Y8PCWhp5GVw2W-TeB0xZEWlUzKv7fkfihBk,4760
|
|
213
216
|
umap/static/umap/img/importers/datasets.svg,sha256=Pqn6WzE0ZpE8QLgml75mnkstXseTpI1wXXN5MyjOshU,4075
|
|
214
217
|
umap/static/umap/img/importers/geodatamine.svg,sha256=LmNUU_nANL-q8vE1Y2rZ9_D0QRDFCgWIwf7fEUX_gwo,8133
|
|
218
|
+
umap/static/umap/img/importers/opendata.svg,sha256=NEaV1L5_3Vq_vdKcAg3Jf0P9CfWUWIDGEoOXPHXzW1Q,659
|
|
215
219
|
umap/static/umap/img/importers/overpass.svg,sha256=PFmMwBEQug3bpMdjk3Xue7cU3eArnmBwLOYs5M3z0Nc,837
|
|
216
220
|
umap/static/umap/img/importers/random.svg,sha256=DnxcCu2vJOBdZYWhl8Si0boGjkLcvqrRZaB_BbP1zcM,2445
|
|
217
221
|
umap/static/umap/img/importers/random1.svg,sha256=mY-Yp9-my2ZxdvL6sgnDzc-ihjnAw-mNZtgSkbj25LA,1370
|
|
@@ -221,70 +225,73 @@ umap/static/umap/img/providers/github.png,sha256=sA3oznlXAC2lqynqS2PMuNwZPQ3REfK
|
|
|
221
225
|
umap/static/umap/img/providers/keycloak.png,sha256=76ZaWlmmVdpr7t33LDqYRPRsuKsFmrOjLQk17LsezYo,1520
|
|
222
226
|
umap/static/umap/img/providers/openstreetmap-oauth2.png,sha256=fzqr15HexNfyi2l3Pxos9ptnmXfTH9Gm2v-1o7F1W7A,1680
|
|
223
227
|
umap/static/umap/img/providers/twitter-oauth2.png,sha256=9sCQYpLXTK40nvQmwEWd325XgBPq-Wt2JGu59GJDRfs,1589
|
|
224
|
-
umap/static/umap/img/source/16-white.svg,sha256=
|
|
225
|
-
umap/static/umap/img/source/16.svg,sha256=
|
|
226
|
-
umap/static/umap/img/source/24-white.svg,sha256=
|
|
227
|
-
umap/static/umap/img/source/24.svg,sha256=
|
|
228
|
-
umap/static/umap/js/umap.controls.js,sha256=
|
|
228
|
+
umap/static/umap/img/source/16-white.svg,sha256=FtcdSTL_YBr6suFetREjG0uA42TT_W01pdsnIRt7euk,82397
|
|
229
|
+
umap/static/umap/img/source/16.svg,sha256=bGgtW6CLwfAwkdEqNl9ImsUAN6PzONBP1Da0kBEBo1Y,52440
|
|
230
|
+
umap/static/umap/img/source/24-white.svg,sha256=Zph-WIKPvNV41QmYtP_nDzDg5KPJChAarbpxsCbevME,32161
|
|
231
|
+
umap/static/umap/img/source/24.svg,sha256=4CmtIu1h2CgQ2-Kn3wsFVcpdmrzJQpLLTTDgG6G9slg,42759
|
|
232
|
+
umap/static/umap/js/umap.controls.js,sha256=BUmYnZzesFwHyBxdKEmuStPOGbxSeAknLX4tshRx-0Y,14805
|
|
229
233
|
umap/static/umap/js/umap.core.js,sha256=BpcfSnHFb1MzOaF0Meo8GrEVETOKMaG_pbgnRwnUPi8,6041
|
|
230
234
|
umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
|
|
231
235
|
umap/static/umap/js/components/fragment.js,sha256=-rOrcyPpZ5ihD_hh0C1qrYpaim11JYh5fg0x_od_m5U,379
|
|
236
|
+
umap/static/umap/js/components/modal.js,sha256=ugaibc2n5Pftocs1crN6zaPRJztSQm1atyf7jhSAnC4,742
|
|
232
237
|
umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
|
|
233
238
|
umap/static/umap/js/components/alerts/alert.js,sha256=_BcG9WluOkJTj_v795c0PIXvv5EZQs0uO5-rUhcwEco,4482
|
|
234
239
|
umap/static/umap/js/modules/autocomplete.js,sha256=CLw4KP_Mmf5s55OWimK3Xw7GkwDLtuCqeEI2WqPSsOU,8729
|
|
235
240
|
umap/static/umap/js/modules/browser.js,sha256=GpJH1cIQBj0IN0zHax1uDXWHQnmZcUBqagpj7lTKZH0,9748
|
|
236
|
-
umap/static/umap/js/modules/caption.js,sha256=
|
|
241
|
+
umap/static/umap/js/modules/caption.js,sha256=ZO3cE7tRflqK-jlskMYxG5nnulOH7vNwDPa77YY7vAo,5478
|
|
237
242
|
umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
|
|
238
243
|
umap/static/umap/js/modules/drop.js,sha256=aHuz_sDgWAqDEH49OWNhnnyFvGLDMCoeeo5xaBLZwAg,1431
|
|
239
244
|
umap/static/umap/js/modules/facets.js,sha256=o1nnw8Ftvhkyb0MCsY-RvRv1Nm4htZJjmRdObbrGD3g,4777
|
|
240
245
|
umap/static/umap/js/modules/formatter.js,sha256=6N6P9HeIkj5-NI4I1UfhDFc7q-x6_jR26JiCriQpkoM,4724
|
|
241
246
|
umap/static/umap/js/modules/global.js,sha256=pmO5iFezaPhxQemgscta2S1J4vBRHIpjALjym2Hs9Z4,941
|
|
242
|
-
umap/static/umap/js/modules/help.js,sha256=
|
|
247
|
+
umap/static/umap/js/modules/help.js,sha256=fnkc6ugsYI1TeermtqiJUYJFm9P1pcC-CoDuJ03iZq0,10338
|
|
243
248
|
umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
|
|
244
|
-
umap/static/umap/js/modules/importer.js,sha256=
|
|
249
|
+
umap/static/umap/js/modules/importer.js,sha256=DElBWKUOb7LZllSLa9mEnCxHbt6UOZNkY5G7pI46xvo,11380
|
|
245
250
|
umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
|
|
246
251
|
umap/static/umap/js/modules/managers.js,sha256=FJI-m9Lr2jPA_VJyrfwtGD4_H31HJaILAnGIl59_tG4,1213
|
|
247
252
|
umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
|
|
248
|
-
umap/static/umap/js/modules/permissions.js,sha256=
|
|
253
|
+
umap/static/umap/js/modules/permissions.js,sha256=t-kZvgGIGva8MNMu9Ydr-U9KVrdKUQery_BqniFWut0,8734
|
|
249
254
|
umap/static/umap/js/modules/request.js,sha256=9GRJoOPbdkHL9OFP6Joaf5wzsJckPyiG2O7AxQciTik,3885
|
|
250
|
-
umap/static/umap/js/modules/rules.js,sha256=
|
|
251
|
-
umap/static/umap/js/modules/schema.js,sha256=
|
|
255
|
+
umap/static/umap/js/modules/rules.js,sha256=VC6vf0UsFDys11EcZvrfXD9Bb05SgdM4oc7hb-pyNVA,8493
|
|
256
|
+
umap/static/umap/js/modules/schema.js,sha256=SDC26yHfiA1On3VXuIN1QqD71QI50EdMelrlsdCXpUg,15052
|
|
252
257
|
umap/static/umap/js/modules/share.js,sha256=Xpkj-K6DixfcALeTpQ1u9obX-RVU2Ma6R2lZkjDFIMM,7213
|
|
253
258
|
umap/static/umap/js/modules/slideshow.js,sha256=23_i982eABEWwLCd-0Eftk-ew6RSt8sL9sVEhDblC6s,3612
|
|
254
|
-
umap/static/umap/js/modules/tableeditor.js,sha256=
|
|
255
|
-
umap/static/umap/js/modules/
|
|
259
|
+
umap/static/umap/js/modules/tableeditor.js,sha256=O8HdqQHEDObhhIF6udWfYIy1Ut9Odo5XO_p8bb2FMvg,9140
|
|
260
|
+
umap/static/umap/js/modules/templates.js,sha256=FSlSW-uSWQ44bEC_-qE_e4RASvNKIBBdqqVNvy-7gJ0,4418
|
|
261
|
+
umap/static/umap/js/modules/umap.js,sha256=CROu_GJOdMAGOrm8UkvOwPi_P8LpMykJ6JthcAJ93Pw,53929
|
|
256
262
|
umap/static/umap/js/modules/urls.js,sha256=76cFqycj2O8huuoYYBvxnVt2Fc2UDbgrRsiv6lQmcSY,890
|
|
257
263
|
umap/static/umap/js/modules/utils.js,sha256=tN9AJYuypvzIcuLs6YjsW85qsHMx5nvBph3TTNw8HKQ,15938
|
|
258
|
-
umap/static/umap/js/modules/data/features.js,sha256=
|
|
259
|
-
umap/static/umap/js/modules/data/layer.js,sha256=
|
|
260
|
-
umap/static/umap/js/modules/form/builder.js,sha256
|
|
261
|
-
umap/static/umap/js/modules/form/fields.js,sha256=
|
|
264
|
+
umap/static/umap/js/modules/data/features.js,sha256=7sbLGG1a6uBJfztRt8LAs-j4a9SO-BwjTkL9KAUh0lg,34084
|
|
265
|
+
umap/static/umap/js/modules/data/layer.js,sha256=6skY5Th_aIbzcdvHjdoFxhPFxbX9sbuRkEiQEbKQWuE,39608
|
|
266
|
+
umap/static/umap/js/modules/form/builder.js,sha256=3ApKDYKV17z6ipaE5yAUEUgOQ7nkCAEZPRm262AAE9o,6289
|
|
267
|
+
umap/static/umap/js/modules/form/fields.js,sha256=kLs3xL5eEsYqmo2SmyXquruT58lSHxWkqKuOa1xSuSc,34480
|
|
262
268
|
umap/static/umap/js/modules/importers/banfr.js,sha256=TBwL3GQJdzYtaDtxeHxyPQ7Ycy5zTaQyvzXa55X7n2I,2932
|
|
263
269
|
umap/static/umap/js/modules/importers/cadastrefr.js,sha256=fcNOYZ679MYpy3fQubEhNmyaMpGKyNNeZRlUVgHKcz4,2319
|
|
264
270
|
umap/static/umap/js/modules/importers/communesfr.js,sha256=HoeVApZ0ORDxQt4dA86nKDldey3aJNeLdagMkn5skUg,1723
|
|
265
271
|
umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
|
|
266
272
|
umap/static/umap/js/modules/importers/geodatamine.js,sha256=4KmRpEpwdUHO1lqzB38hnTFvPjh7IjcQfVVDziqKS8k,3000
|
|
273
|
+
umap/static/umap/js/modules/importers/opendata.js,sha256=iRimXaOrb82azFpVW2jiymuOB0dYb2oyMQXhm2H7dyo,4491
|
|
267
274
|
umap/static/umap/js/modules/importers/overpass.js,sha256=cY2kb3Fs8tA6PqBjGyc5bI0mg7L1ijapIAkVGwEhSwI,3341
|
|
268
|
-
umap/static/umap/js/modules/rendering/controls.js,sha256=
|
|
269
|
-
umap/static/umap/js/modules/rendering/icon.js,sha256=
|
|
270
|
-
umap/static/umap/js/modules/rendering/map.js,sha256=
|
|
275
|
+
umap/static/umap/js/modules/rendering/controls.js,sha256=ZZvXbKDZ6-SiPGQ7oamWGlTCbd42G8swCuuaxYZYPCc,8675
|
|
276
|
+
umap/static/umap/js/modules/rendering/icon.js,sha256=xEgO9iwzFX80jljRq6YUNXCOu58lGrQa64btmqo0M4A,8322
|
|
277
|
+
umap/static/umap/js/modules/rendering/map.js,sha256=GxypGAKVeBEX-M-mwU4z3uL_-ulOJC8EyHdnWpvuiXo,12692
|
|
271
278
|
umap/static/umap/js/modules/rendering/popup.js,sha256=OtQYpjhWCoW20XBFeeSKCXMqN-szohaX1TKWhPc9eBo,2577
|
|
272
279
|
umap/static/umap/js/modules/rendering/template.js,sha256=CTH376AbTBfIeYApeQ2qy4M8dYX6lN_h7czzO28R6hY,9524
|
|
273
|
-
umap/static/umap/js/modules/rendering/ui.js,sha256=
|
|
274
|
-
umap/static/umap/js/modules/rendering/layers/base.js,sha256=
|
|
275
|
-
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=
|
|
276
|
-
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=
|
|
277
|
-
umap/static/umap/js/modules/rendering/layers/heat.js,sha256=
|
|
280
|
+
umap/static/umap/js/modules/rendering/ui.js,sha256=7234d8pd-K8bwlkWdE_7GUxP7G6Qbg77wFtPaeuND-c,14534
|
|
281
|
+
umap/static/umap/js/modules/rendering/layers/base.js,sha256=G9H41vTrh-6Yn5H9UhKj5BOx03Xp2jcevpZINTDCtHI,2528
|
|
282
|
+
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=MdeUpSfXWHMe5QAkpCLNYNsC31vR9naLCW1PjmS8lsc,14954
|
|
283
|
+
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=wsZhOi1yqA4iE-YQySL88ONT6L8kSIAziRLd1p7s_hc,4017
|
|
284
|
+
umap/static/umap/js/modules/rendering/layers/heat.js,sha256=K_LsxnfpGImy2HlneV5nK0cBu1FxDmPNxR5VmsV4LaM,4975
|
|
278
285
|
umap/static/umap/js/modules/sync/engine.js,sha256=LDB7HHCmfVb0Cz30yVXBSV0f-1CGG5bkzrPtaT5RePM,18390
|
|
279
286
|
umap/static/umap/js/modules/sync/hlc.js,sha256=XeJz3x7qiDz7v-mcgGIynj5ks34FpWx_oSPUPFd_ZGA,2991
|
|
280
287
|
umap/static/umap/js/modules/sync/undo.js,sha256=CQufaRvI_-dT0HGm5Wl8hBbO00IruflPdlmWJ4acgFM,2910
|
|
281
|
-
umap/static/umap/js/modules/sync/updaters.js,sha256
|
|
288
|
+
umap/static/umap/js/modules/sync/updaters.js,sha256=--g0kWkOa650jHUQjb94j2k1Wq6Xu3nm7aAxiE9Rgbk,4018
|
|
282
289
|
umap/static/umap/js/modules/sync/websocket.js,sha256=M2wsFuW5vRsY677dRSAFUWJl5MBPCOvaNYCAxBAqjcA,2522
|
|
283
|
-
umap/static/umap/js/modules/ui/bar.js,sha256=
|
|
290
|
+
umap/static/umap/js/modules/ui/bar.js,sha256=LZDwbpMlJWc2c83vi7heOvjx28pJYBcvYVUw0O6tSRg,14893
|
|
284
291
|
umap/static/umap/js/modules/ui/base.js,sha256=qPV7Rtru69Eo0YYzxuSM-FkAO5M2l2TC-sMLKull5dc,2779
|
|
285
292
|
umap/static/umap/js/modules/ui/contextmenu.js,sha256=eSo9zSPO_4iWIztvbM5n1TQYdX60Yndt3xIWGy10_X0,2842
|
|
286
293
|
umap/static/umap/js/modules/ui/dialog.js,sha256=geAcMf2ajpNpDePDbaOz_kOiWOZWtpOHT7kBYqOHEa0,5620
|
|
287
|
-
umap/static/umap/js/modules/ui/panel.js,sha256=
|
|
294
|
+
umap/static/umap/js/modules/ui/panel.js,sha256=Zxo3k0n442Cta51gW_49EMtq3DKTXnuQE7l6VwMeERs,3377
|
|
288
295
|
umap/static/umap/js/modules/ui/tooltip.js,sha256=KxUQMtH29DZSCsZ6uZMtNlNR2NnQDnRMfJMJ35O_w5k,1919
|
|
289
296
|
umap/static/umap/locale/am_ET.js,sha256=lozducxQlYLYZVUaWj_PnnKYLt-vWHEaHv1uy87M9VA,34724
|
|
290
297
|
umap/static/umap/locale/am_ET.json,sha256=tGboGw8iH_rimgxtR7vsR8TfFtlKa1snWbAGHl3LcnQ,34653
|
|
@@ -294,23 +301,23 @@ umap/static/umap/locale/ast.js,sha256=viph-vf4m-VUPK3p6-Kcrk3gJb23v1p_UktlLoEk3A
|
|
|
294
301
|
umap/static/umap/locale/ast.json,sha256=HyyUkd5SBu6-7zXq4trHKUmmQwBWZAmPKizc_X0f5T0,31090
|
|
295
302
|
umap/static/umap/locale/bg.js,sha256=l7eDwqVxQo30V6LDaN0RLi89oEYt9L9pqSZL7QxsfW0,34004
|
|
296
303
|
umap/static/umap/locale/bg.json,sha256=gY-kPZBlQkdUjOp0n7-NsQ3IJkKnDfqU3a8oo3erLog,33939
|
|
297
|
-
umap/static/umap/locale/br.js,sha256=
|
|
298
|
-
umap/static/umap/locale/br.json,sha256=
|
|
304
|
+
umap/static/umap/locale/br.js,sha256=qOMFtZuUfpELBxGVM7uhaSiXFsNd_qc_KmoCP_EAP4Q,35488
|
|
305
|
+
umap/static/umap/locale/br.json,sha256=ZrmzJSgNP56sfbeha7mXEx5p85Y7YFhUoDntgEBh9rM,35423
|
|
299
306
|
umap/static/umap/locale/ca.js,sha256=RFnhHmrhu_TkbZsUSYCU2cuUvyIZPrcnuy1gm35ctw8,32842
|
|
300
307
|
umap/static/umap/locale/ca.json,sha256=DwaQf35cYOn5Qpod74miG0XUNd842lVGfVWnl_zl73Y,32777
|
|
301
308
|
umap/static/umap/locale/cs_CZ.js,sha256=iWKDuR5dHbpjcbUDPw50s_IOyM5QByaDD7qEkeV4-yo,33855
|
|
302
309
|
umap/static/umap/locale/cs_CZ.json,sha256=OpsoblifP_5txBNe5uhMXePN1yE9887UnnXxevxR-Y4,33784
|
|
303
|
-
umap/static/umap/locale/da.js,sha256=
|
|
304
|
-
umap/static/umap/locale/da.json,sha256=
|
|
305
|
-
umap/static/umap/locale/de.js,sha256=
|
|
306
|
-
umap/static/umap/locale/de.json,sha256=
|
|
307
|
-
umap/static/umap/locale/el.js,sha256=
|
|
308
|
-
umap/static/umap/locale/el.json,sha256=
|
|
309
|
-
umap/static/umap/locale/en.js,sha256
|
|
310
|
-
umap/static/umap/locale/en.json,sha256=
|
|
310
|
+
umap/static/umap/locale/da.js,sha256=EatkndYZovNqXrKm4CTNXx9igPLM2_x8oOpTMkRi6IE,34403
|
|
311
|
+
umap/static/umap/locale/da.json,sha256=7RAeVYFh5qSdERNPHF9sK7KP0V1MKmhF21ZY5k9hqRQ,34338
|
|
312
|
+
umap/static/umap/locale/de.js,sha256=tnI6Wj9amdfr9HoTCUKdaiHCT0lJdS2HejZV33cU3_A,36479
|
|
313
|
+
umap/static/umap/locale/de.json,sha256=MqyPrmAxMifKQS_4RfKc1Q9Jo2QZFTEmsgvYWKNZZOo,36414
|
|
314
|
+
umap/static/umap/locale/el.js,sha256=lILSWGtIsK0lnpdzwG-jb3LUp_FDtM_8zHq9iRvrNp0,49256
|
|
315
|
+
umap/static/umap/locale/el.json,sha256=GL_kmR8rHuYJFvgeHzt1s2I_iq8PNmYwCD-FUY4OCCY,49191
|
|
316
|
+
umap/static/umap/locale/en.js,sha256=-RkuncSSWYUAulWaUdj5DiQyk_SVmg1Om0J7Cni4QI0,33331
|
|
317
|
+
umap/static/umap/locale/en.json,sha256=lUOjnUtXJ1Fh61BWnKVu9Y-g-FgWQWqlQcSez3VCo08,33266
|
|
311
318
|
umap/static/umap/locale/en_US.json,sha256=An1HoCFk1Y0XXF8ZYysRt_0ic9xh1kINj8cvk3nGxF8,30884
|
|
312
|
-
umap/static/umap/locale/es.js,sha256=
|
|
313
|
-
umap/static/umap/locale/es.json,sha256=
|
|
319
|
+
umap/static/umap/locale/es.js,sha256=zIQHsUchaADItFi6ibus_rAdUFPb2FF3YtSBu-_0euk,36584
|
|
320
|
+
umap/static/umap/locale/es.json,sha256=LWOZUH0-OpqowSn4fjnEIdzPF6KWKFnz2vQKDCG_aV0,36519
|
|
314
321
|
umap/static/umap/locale/et.js,sha256=-hnxn8ADU5qvTtoTN1AN-PXt_3w33zSMWk3VqjmUVAY,31315
|
|
315
322
|
umap/static/umap/locale/et.json,sha256=rYxeip6Vm0b9p-H3jyIPByo7ntcliNyEXLAjrqnCMiY,31250
|
|
316
323
|
umap/static/umap/locale/eu.js,sha256=2NU8WKLMpmo8i0dDPSjQIERjneABeQmeL444jjiYzds,33203
|
|
@@ -319,22 +326,22 @@ umap/static/umap/locale/fa_IR.js,sha256=VOFypdoGCMUf-vzjKq9KHozQrpw-HdbuzOv9LuW_
|
|
|
319
326
|
umap/static/umap/locale/fa_IR.json,sha256=KaPxKvOZrlyPdM5lRh2zwKKrTJVBcYipD7sX35OIPaM,39478
|
|
320
327
|
umap/static/umap/locale/fi.js,sha256=r-zS8qkR9zr9UZNM59izf7JxkOKdAcbu7Qf2iSWwHI8,31938
|
|
321
328
|
umap/static/umap/locale/fi.json,sha256=XMu4T8Xoq1MHg0TZkpZ0c8FpmLg1CFKp-XMhbehwR20,31873
|
|
322
|
-
umap/static/umap/locale/fr.js,sha256=
|
|
323
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
329
|
+
umap/static/umap/locale/fr.js,sha256=AKEKNggizaNQ8CPngmA6PKBwITvpQY-bnDOVYVLOpjY,36541
|
|
330
|
+
umap/static/umap/locale/fr.json,sha256=GuxjELrQUTB6sq5tmtqyuz-ldGKmp0g4jq9ii_ekcss,36476
|
|
324
331
|
umap/static/umap/locale/gl.js,sha256=SRcBi0lIT_ld9jw9wJ-ZQLXuMQ5swVhL7HAPK7hQkpQ,34010
|
|
325
332
|
umap/static/umap/locale/gl.json,sha256=omDMfhYmAGVOykpTfloImjE_g7_L2GLePtpAKgCyHZI,33945
|
|
326
333
|
umap/static/umap/locale/he.js,sha256=zJb8KsdK89xAF3TH7XNqKZ8yOu1W9zEXgLXDKH0w8Iw,34389
|
|
327
334
|
umap/static/umap/locale/he.json,sha256=4i0WqIyX5FTfLeUDomHVsT3jgYi1yzErbPOhQFLv6Og,34324
|
|
328
335
|
umap/static/umap/locale/hr.js,sha256=ngHkI9LuQnBeOJ9DUJaI-kkoStaQQm5uEzkqmbx88BE,31325
|
|
329
336
|
umap/static/umap/locale/hr.json,sha256=dLnW5FDSlRnpt1jIzwPDBTJHwvaKR-zmKfmxBtwwiNw,31260
|
|
330
|
-
umap/static/umap/locale/hu.js,sha256=
|
|
331
|
-
umap/static/umap/locale/hu.json,sha256=
|
|
337
|
+
umap/static/umap/locale/hu.js,sha256=PGkQ8_rHBp46G74Fhtrj4idMkwZUW6cNtSub4HRLk9o,37202
|
|
338
|
+
umap/static/umap/locale/hu.json,sha256=nerjTIYHdN0qko2w3oSwnPERCehJcaA7yC1YppBMC8g,37137
|
|
332
339
|
umap/static/umap/locale/id.js,sha256=y22yrjXWjt9nx93ez0IjaH2PtQhT9COgmCPEXqANDks,31155
|
|
333
340
|
umap/static/umap/locale/id.json,sha256=HyyUkd5SBu6-7zXq4trHKUmmQwBWZAmPKizc_X0f5T0,31090
|
|
334
341
|
umap/static/umap/locale/is.js,sha256=ZHkRfsmuhr5FcKyvWbRQjf8fznJUUZGJBJKZhPntrUY,32908
|
|
335
342
|
umap/static/umap/locale/is.json,sha256=p_ez6I-f2R5ttfaDNgXQtvsgB9WbDND8QZKdQhnv1Fo,32843
|
|
336
|
-
umap/static/umap/locale/it.js,sha256=
|
|
337
|
-
umap/static/umap/locale/it.json,sha256=
|
|
343
|
+
umap/static/umap/locale/it.js,sha256=vp6AHXFFtqAqjHik2wqdj5pJikuHrzQmh6gFd8E5eGk,36506
|
|
344
|
+
umap/static/umap/locale/it.json,sha256=oDJb9Fv4EdE798jO5NyXdeiE3FuSqUBuVhocQyIVIXM,36441
|
|
338
345
|
umap/static/umap/locale/ja.js,sha256=B7Yjwib7VFF0vRufHlutliTHdTXDkPpOoL1xueJKdLY,33514
|
|
339
346
|
umap/static/umap/locale/ja.json,sha256=DKF3hNAPL6fz6RWT_HW5CiuLBwpdfkCxaax_MUWbfSA,33449
|
|
340
347
|
umap/static/umap/locale/ko.js,sha256=ykxs5mP-EWWktzoLsIpBe487ml-qop5ITTvJNi8EdQw,31311
|
|
@@ -343,8 +350,8 @@ umap/static/umap/locale/lt.js,sha256=NCnw5Xk-Z3IvRRkZA_r5_iKTk9rXByyvsmzh1xclPx4
|
|
|
343
350
|
umap/static/umap/locale/lt.json,sha256=-MCgeA_v9OzBS4AhPGasj9fA2pz5-Y6WyRz9L2tdaaw,31854
|
|
344
351
|
umap/static/umap/locale/ms.js,sha256=OPyYkUHNqMBTVRDYkBK_bAJTLAzMdE07dujdvh2xpK0,32254
|
|
345
352
|
umap/static/umap/locale/ms.json,sha256=-j_yU0-wHZkzzSe5oJdr2pXwdmGDkD0YT6_LSYtKcyc,32189
|
|
346
|
-
umap/static/umap/locale/nl.js,sha256=
|
|
347
|
-
umap/static/umap/locale/nl.json,sha256
|
|
353
|
+
umap/static/umap/locale/nl.js,sha256=HjQcng9bEvaqlmZFd91qC3VqYkI4B4KfRR6-1z9GPzs,35838
|
|
354
|
+
umap/static/umap/locale/nl.json,sha256=f5lTgSvahx-BHf4IGZZTxBL1_5Ir42Jh-exk06rv4sw,35773
|
|
348
355
|
umap/static/umap/locale/no.js,sha256=v89mlmBjqM-RLwfZTIWtmQafIaQGgcTUsAfdQaLqkU0,31359
|
|
349
356
|
umap/static/umap/locale/no.json,sha256=B6IE7zK4Q1hg6-DqfIXSz-QWIOjqVQ_cTeDGGKcJ46c,31294
|
|
350
357
|
umap/static/umap/locale/pl.js,sha256=z8n3PjWszracZiLw2Jl4xIsi8vgcC0-jC3HvAAwzpq4,32935
|
|
@@ -440,12 +447,13 @@ umap/static/umap/vendors/osmtogeojson/osmtogeojson.js,sha256=Zju1u65H1dEr_5zxyHu
|
|
|
440
447
|
umap/static/umap/vendors/photon/leaflet.photon.js,sha256=muJBUoB-ocakHmR-iEF7k_yXXu8yZP4BjmJ4kB3GtgI,14888
|
|
441
448
|
umap/static/umap/vendors/simple-statistics/simple-statistics.min.js,sha256=3vLsuPerHhN9Ywzrl8oey2zgVDhD4VqVGWXY0WammyQ,24073
|
|
442
449
|
umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map,sha256=ayC2E6wVocDrMV-bpQkwXxkVhqcsS0AqHRZ98Nc9JaQ,196163
|
|
450
|
+
umap/static/umap/vendors/textpath/leaflet.textpath.js,sha256=o90qOXleHwqf2xs0HGCNpUuz8D7CIvsiR6K-y6cNmR0,6262
|
|
443
451
|
umap/static/umap/vendors/togeojson/togeojson.es.js,sha256=zAEszx8fYSwld0yKXE5SHP2Q0y--flMTbNaZ1AYyQPM,40651
|
|
444
452
|
umap/static/umap/vendors/togeojson/togeojson.es.mjs.map,sha256=_V7GXbgNBVGZZatraIqgQOYShzbBa6yYF51QKlQ2uG0,85156
|
|
445
453
|
umap/static/umap/vendors/tokml/tokml.es.js,sha256=BqL0WqFH5UZAh_S_265E6PWZjPMYxeGNFgAgywM4Aeo,23457
|
|
446
454
|
umap/static/umap/vendors/tokml/tokml.es.mjs.map,sha256=vw5JxZFh_2_xM1cHI51r1Bf48JaBKzNcR7ddgaaF8KY,45844
|
|
447
455
|
umap/storage/__init__.py,sha256=Aj421eIsZhsu0B7zd5lTJufVYr0EtUkH0lTqpbBh8AU,85
|
|
448
|
-
umap/storage/fs.py,sha256=
|
|
456
|
+
umap/storage/fs.py,sha256=Nc7diQDNZOBXRwubRHra9OZejNPg6ydDmAr7ExfX32M,3960
|
|
449
457
|
umap/storage/s3.py,sha256=KAYu3vAqXbd5UhaoPxG6zcGtBfKZOzzi-6uY6YEuIcY,1962
|
|
450
458
|
umap/storage/staticfiles.py,sha256=mxFcenC1JECmpNy4H0e7vX8GObDZVXzs1RPjQFWNd5k,2473
|
|
451
459
|
umap/sync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -466,19 +474,19 @@ umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscx
|
|
|
466
474
|
umap/templates/umap/content.html,sha256=BHtQMYOOlfQXWFJtSRV2qTnXsgjF7_IKJ7-c4iZpSo0,2379
|
|
467
475
|
umap/templates/umap/content_footer.html,sha256=170C-9K0a1qkNb4m-x5Vg7bNstvHVEXueDfgPPvXk0I,1130
|
|
468
476
|
umap/templates/umap/css.html,sha256=6cyaJ2A_NZmXa6ojLa-Y2NFjUPRWTwC2n03GsZQDKJ4,2213
|
|
469
|
-
umap/templates/umap/dashboard_menu.html,sha256=
|
|
470
|
-
umap/templates/umap/design_system.html,sha256=
|
|
477
|
+
umap/templates/umap/dashboard_menu.html,sha256=fQ7nLKhIAUF_ki16tR7oWwFWCmMs92iKx6gEjx5XpMo,996
|
|
478
|
+
umap/templates/umap/design_system.html,sha256=3LeAtOjkvDSG2PWNeHrAo0G3AQJ7JGMMQE2-L2Plxmw,23813
|
|
471
479
|
umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
472
480
|
umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
473
481
|
umap/templates/umap/home.html,sha256=JuzDOx3-T_XyWT1Rwdy50PWvjlRjnhAXMM4-yvVUkts,890
|
|
474
|
-
umap/templates/umap/js.html,sha256=
|
|
482
|
+
umap/templates/umap/js.html,sha256=R6Vlyjh0jL1yhzh1E-l89lz9I8z3d7ego3vh4Vvujng,2395
|
|
475
483
|
umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
|
|
476
484
|
umap/templates/umap/login_popup_end.html,sha256=kcENvhycpVvvIzbNasX1rcSI_67A6pttkWCxy0vHC8g,693
|
|
477
485
|
umap/templates/umap/map_detail.html,sha256=vNFIK7BhWWNiiBnMwKDPyvr0LZH9rLLqD95T_wsi5ng,1217
|
|
478
486
|
umap/templates/umap/map_fragment.html,sha256=KdHT1fsIhSjH8oo27qIRn0Fw701qpcWs335ixAVav4M,158
|
|
479
|
-
umap/templates/umap/map_init.html,sha256=
|
|
480
|
-
umap/templates/umap/map_list.html,sha256=
|
|
481
|
-
umap/templates/umap/map_table.html,sha256=
|
|
487
|
+
umap/templates/umap/map_init.html,sha256=nvjXbBPJMq7QFSSzNx_EHF9G0D5kcEIsNuqHpnuSo5c,479
|
|
488
|
+
umap/templates/umap/map_list.html,sha256=XPm8CbBYE7BeZRXD6TGGpt2VsjMYjbfxokJ3lGKrKrQ,1158
|
|
489
|
+
umap/templates/umap/map_table.html,sha256=yfqqfVrMPnZh8_1nd7kym0iYmVK3NY0D0u3LCoTR_1o,5836
|
|
482
490
|
umap/templates/umap/messages.html,sha256=5W0ScAH0ibLzz_QkAhBm4xt3AOJ3aN9n8oMokdVYw9I,319
|
|
483
491
|
umap/templates/umap/navigation.html,sha256=gUhdTQOfbMHp1QwnzQYcn3CqQ0RqWUjlDFdT92MerO4,1261
|
|
484
492
|
umap/templates/umap/password_change.html,sha256=egS_bPFdVyXCoFGMTzcinROoc60_DVV38p1QalAEi8s,1079
|
|
@@ -489,18 +497,20 @@ umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X
|
|
|
489
497
|
umap/templates/umap/team_confirm_delete.html,sha256=hURs2wcKXl3c0PMATHqRTaoFvQuSb7wWaM3nrHgzCVY,557
|
|
490
498
|
umap/templates/umap/team_detail.html,sha256=GPfeqlTnyBTLrLxgiksM6XjwA5rd6SESCsjs8d-42PY,853
|
|
491
499
|
umap/templates/umap/team_form.html,sha256=wwxpxGC4lno4PqNs9pOnlwQ23leKj3kxV3Pbs2UpJb0,2039
|
|
492
|
-
umap/templates/umap/user_dashboard.html,sha256=
|
|
500
|
+
umap/templates/umap/user_dashboard.html,sha256=4E7gafTm5oCeMekkaxhFOZJQMkdsJVqWxylIBgWb71Q,920
|
|
501
|
+
umap/templates/umap/user_map_table.html,sha256=zehRhoyeJj-FmAq0q6nWVQRxwpXZqCJeq6mGRqL8VT0,1196
|
|
493
502
|
umap/templates/umap/user_teams.html,sha256=p--dXgYw8Kjt0XTCVcFkwmw_PN2tFv98K9bYTsCdilo,1674
|
|
503
|
+
umap/templates/umap/user_templates.html,sha256=MXhoGDJyUl3ngnmM5tOk_CnImaMqsZnskbRdYoQLahk,955
|
|
494
504
|
umap/templates/umap/components/provider.html,sha256=lEoxBZxFscgYh3gWFtjXRs1Sc__0cFXY6k348Rxm5XI,285
|
|
495
505
|
umap/templates/umap/components/alerts/alert.html,sha256=ZvisQkz2GfK2jxEqTosYH72N5gIK1604ATVNa_vHT7U,3564
|
|
496
506
|
umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
497
|
-
umap/templatetags/umap_tags.py,sha256=
|
|
507
|
+
umap/templatetags/umap_tags.py,sha256=X1WL5Em08-OORFYYJACV_0_7MVoRuWIKPkYaJBw6OxE,1825
|
|
498
508
|
umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
499
509
|
umap/tests/base.py,sha256=BKdKFwDG6KD83oNywgfw0jcGgKQ6ufTLgBSuOIhSt30,4947
|
|
500
510
|
umap/tests/conftest.py,sha256=KQCZanCTl1ABLIKOuyxS_cpBoXGiwjDc29jsLBiSWxY,1633
|
|
501
511
|
umap/tests/settings.py,sha256=-b-RoDlZJXJ6cCFnO2gF-XL-avfHlpUuLrQk-ytgkdY,783
|
|
502
512
|
umap/tests/test_clean_tilelayer.py,sha256=wGTd_AHOTmQ4QMswAyc-1_lJmQOSyhY3OahLAusEIdA,2515
|
|
503
|
-
umap/tests/test_dashboard.py,sha256=
|
|
513
|
+
umap/tests/test_dashboard.py,sha256=QJa-NE_eXuFEbf-J94H8NVV6F9ed5FwtgUvO4XKrlps,3595
|
|
504
514
|
umap/tests/test_datalayer.py,sha256=-1sTYnmJksgV4jxRQUtw_jRUqaYhh0siqfJe8QfWTqs,9528
|
|
505
515
|
umap/tests/test_datalayer_s3.py,sha256=le1OvJdMfOmudciECynZfoij3p_lBpclFCqC8tiXFq4,4186
|
|
506
516
|
umap/tests/test_datalayer_views.py,sha256=ySOyYOvdMjyBbBeyZ6YUS0_RfH2dlovQ5luT7ZXXxuQ,23734
|
|
@@ -509,11 +519,13 @@ umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,33
|
|
|
509
519
|
umap/tests/test_map.py,sha256=vrtheSMQNk45kBIcJ0QY9K7HKYee5yg4Vnp78DyaIwQ,5170
|
|
510
520
|
umap/tests/test_map_views.py,sha256=SuMzw7KrbmbTELT2Qs6amhiziqTOxvFnbXYg1mJAGBs,34231
|
|
511
521
|
umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
|
|
522
|
+
umap/tests/test_purge_old_versions.py,sha256=_hrrV_nsRvxeqPwxjs3vOOkV6GpmzBR_DnlVm5bxTx4,3628
|
|
512
523
|
umap/tests/test_statics.py,sha256=xKuxT8Xj5Ii7gKISuiSfDj7dpjmJ2Ierby3Lg-haZCg,1264
|
|
524
|
+
umap/tests/test_switch_user.py,sha256=MzTBxcPVm8X0R4gBkBL_wntznOyEn0ixJSEiQMvaxGo,1255
|
|
513
525
|
umap/tests/test_team_views.py,sha256=edmqn_tx4XQ1sEQtB7CpuJT6WwQQiUyUYu8-ESZxFcw,5615
|
|
514
526
|
umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
|
|
515
527
|
umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
|
|
516
|
-
umap/tests/test_views.py,sha256=
|
|
528
|
+
umap/tests/test_views.py,sha256=5-XT4tiT9FIJY6BWWY6yJCj5BFAwON5RfF6HPzz4E8s,19503
|
|
517
529
|
umap/tests/fixtures/categorized_highway.geojson,sha256=p7QHOd8nXi7yVq37gY6Ca8BXkjaLnDxW9Fq0Zcm3Fk4,15830
|
|
518
530
|
umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
|
|
519
531
|
umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
|
|
@@ -540,21 +552,21 @@ umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-
|
|
|
540
552
|
umap/tests/integration/conftest.py,sha256=pNIxoZ6mNclAwovFt76gzvJaXH940lYXWByf6cmJDx8,2251
|
|
541
553
|
umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
|
|
542
554
|
umap/tests/integration/test_anonymous_owned_map.py,sha256=-j2YUPWNoEit5a_IxYl1q3fGeybvV0NW8ud4QeCa-Hg,11123
|
|
543
|
-
umap/tests/integration/test_basics.py,sha256=
|
|
555
|
+
umap/tests/integration/test_basics.py,sha256=8RO5dwSiIuq9EOReWRF1jDTnZij1VLUK8KqZ3UKhE4M,4124
|
|
544
556
|
umap/tests/integration/test_browser.py,sha256=qX4K0m5eb4teYSsJf6K2zbaVQhYFDwWZwpRsk-yPpmI,20533
|
|
545
557
|
umap/tests/integration/test_caption.py,sha256=9JHQvTju2W-IoV2UBrEUAH4nV2W7eKN2hJi4YcPfSPE,1843
|
|
546
558
|
umap/tests/integration/test_categorized_layer.py,sha256=XCCK62fBljTEbt0EKoGsHf9hY2bCEIkyeuPxyhEGJDs,5381
|
|
547
559
|
umap/tests/integration/test_choropleth.py,sha256=Lsd7tszSIua_GUeXhosB-JWk35zYN-3WKRVYI0ZrNSM,3777
|
|
548
560
|
umap/tests/integration/test_circles_layer.py,sha256=PjYGmCvAd9qDnldnbiw6nomJs1YgUdX181a9xrWSUYE,2396
|
|
549
561
|
umap/tests/integration/test_cluster.py,sha256=AK4t1k0nur2-gSSFPvkhnq7Ki81PgfvYv1AQcZmr5iQ,1680
|
|
550
|
-
umap/tests/integration/test_conditional_rules.py,sha256=
|
|
562
|
+
umap/tests/integration/test_conditional_rules.py,sha256=hKQKBK-ekW5YA53F9nS6dN-L3Vrun2V6OKovOuwaGHM,14325
|
|
551
563
|
umap/tests/integration/test_dashboard.py,sha256=LClLBc8lgDM1-NGhkvUSUMLmMuKt3sR1ubt2Eo-Iq7A,1550
|
|
552
|
-
umap/tests/integration/test_datalayer.py,sha256=
|
|
564
|
+
umap/tests/integration/test_datalayer.py,sha256=ilAio_G4O-XZLjRN_ARhQYzPCuVoyl0IqYaoeQkTs3M,5752
|
|
553
565
|
umap/tests/integration/test_draw_polygon.py,sha256=liYjm2pls9ovYxzcewe3q_MjDjdxzOGsGU-lTWpCEyc,25292
|
|
554
566
|
umap/tests/integration/test_draw_polyline.py,sha256=sBpu4iawj3W0y6lx4BnsHTmFrvEmcYdfWdMeOZ8vr1Y,14709
|
|
555
567
|
umap/tests/integration/test_edit_datalayer.py,sha256=0DWvp62Pwx5ditafEMB8tG_ybe8FO5YG4EMjR-ZwPdY,10012
|
|
556
568
|
umap/tests/integration/test_edit_map.py,sha256=p5KEbQdSJYWgA6Ej6Shz4pVzGbYmDxu9saOfjvcuX0M,8784
|
|
557
|
-
umap/tests/integration/test_edit_marker.py,sha256=
|
|
569
|
+
umap/tests/integration/test_edit_marker.py,sha256=yBCZICGPVjWD-rtkFoXqjYyP4W-jTv1rrSnKMtPGWq8,5246
|
|
558
570
|
umap/tests/integration/test_edit_polygon.py,sha256=nuidgs0v5sgFxcQKirtF5ncE3z7_S0hZxbLvPI2-BUU,5224
|
|
559
571
|
umap/tests/integration/test_export_map.py,sha256=jH0BXm-7Ov26OEkve9-xKMfRwXwR73zRrZLIQusyUOY,12112
|
|
560
572
|
umap/tests/integration/test_facets_browser.py,sha256=nMspm4fR-e-qaO6Dn-N7ZVJ3AK_-jOQ_4fhJ72LrahE,10676
|
|
@@ -575,16 +587,17 @@ umap/tests/integration/test_save.py,sha256=Ia3BsCVLPqImCyjNZ_5qvtMXMq130Y5sD_Ym1
|
|
|
575
587
|
umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
|
|
576
588
|
umap/tests/integration/test_slideshow.py,sha256=yhy75YYpfTKpkGK7xGjJDJoqHtN6p2LG-O4krVE1Yks,1907
|
|
577
589
|
umap/tests/integration/test_star.py,sha256=qJUvFij0XK0PcWJnbe4w8nTvTjbJdJ5X-2JjHy6DqEw,973
|
|
578
|
-
umap/tests/integration/test_tableeditor.py,sha256=
|
|
590
|
+
umap/tests/integration/test_tableeditor.py,sha256=AU37neRTiGOJZDR6srw3KmkRGeIJ8YsYERwXr6rKpWg,10017
|
|
579
591
|
umap/tests/integration/test_team.py,sha256=LVuj5Dhz27cqk6ieEbukGsdy9J2FP5aQmcMex_xevIg,1594
|
|
592
|
+
umap/tests/integration/test_templates.py,sha256=QtGZpYmA1Epwp9olYAbl7Mqncs2YSXutqEVHV3-nlkU,1768
|
|
580
593
|
umap/tests/integration/test_tilelayer.py,sha256=rBI3bm4hCpH87rcFvuc5H8yu1D9FQBZMNbqqJzpdI24,5302
|
|
581
594
|
umap/tests/integration/test_undo_redo.py,sha256=1wSb43fI3ZpJcegW9AaQZ7a2BcuBSfkMAuT5zBsfO0s,9302
|
|
582
595
|
umap/tests/integration/test_view_marker.py,sha256=NFCwNez__E_WsE1DuW5RuB0HVKDP4CQMXGhJw0LfnFs,6900
|
|
583
596
|
umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
|
|
584
597
|
umap/tests/integration/test_view_polyline.py,sha256=aJoXKmLhJaN0yhPdDCVskZNGx3q3mLDkjVPhZ30cadA,13959
|
|
585
598
|
umap/tests/integration/test_websocket_sync.py,sha256=pbV7FmaBfjgFfKPIYwhHiaeSmR_tC3MqUYEReXLgSS4,28285
|
|
586
|
-
umap_project-3.0.
|
|
587
|
-
umap_project-3.0.
|
|
588
|
-
umap_project-3.0.
|
|
589
|
-
umap_project-3.0.
|
|
590
|
-
umap_project-3.0.
|
|
599
|
+
umap_project-3.1.0.dist-info/METADATA,sha256=hL_S8NwRi9YpuF0vAYCgwiavCLfusztakHm4hBO_S84,3015
|
|
600
|
+
umap_project-3.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
601
|
+
umap_project-3.1.0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
602
|
+
umap_project-3.1.0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
603
|
+
umap_project-3.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|