umap-project 2.5.1__py3-none-any.whl → 2.6.0b0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/admin.py +6 -1
- umap/context_processors.py +2 -1
- umap/decorators.py +13 -2
- umap/forms.py +26 -2
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +252 -146
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +274 -162
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +299 -187
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +215 -159
- umap/locale/en/LC_MESSAGES/django.po +211 -155
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +255 -144
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +254 -198
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +346 -234
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +216 -160
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +215 -159
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +252 -146
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +252 -146
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +254 -148
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +215 -159
- umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- umap/locale/sv/LC_MESSAGES/django.po +254 -143
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
- umap/migrations/0022_add_team.py +94 -0
- umap/models.py +45 -10
- umap/settings/__init__.py +2 -0
- umap/settings/base.py +3 -2
- umap/static/umap/base.css +32 -41
- umap/static/umap/content.css +19 -25
- umap/static/umap/css/icon.css +63 -37
- umap/static/umap/css/importers.css +1 -1
- umap/static/umap/css/slideshow.css +7 -5
- umap/static/umap/css/tableeditor.css +4 -3
- umap/static/umap/img/16-white.svg +1 -4
- umap/static/umap/img/16.svg +2 -6
- umap/static/umap/img/24-white.svg +4 -4
- umap/static/umap/img/24.svg +6 -6
- umap/static/umap/img/source/16-white.svg +2 -5
- umap/static/umap/img/source/16.svg +3 -7
- umap/static/umap/img/source/24-white.svg +7 -14
- umap/static/umap/img/source/24.svg +10 -17
- umap/static/umap/js/components/alerts/alert.css +20 -8
- umap/static/umap/js/modules/autocomplete.js +3 -3
- umap/static/umap/js/modules/browser.js +4 -3
- umap/static/umap/js/modules/caption.js +9 -11
- umap/static/umap/js/modules/data/features.js +994 -0
- umap/static/umap/js/modules/data/layer.js +1210 -0
- umap/static/umap/js/modules/formatter.js +12 -3
- umap/static/umap/js/modules/global.js +21 -5
- umap/static/umap/js/modules/permissions.js +280 -0
- umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
- umap/static/umap/js/modules/rendering/layers/base.js +105 -0
- umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
- umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
- umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
- umap/static/umap/js/modules/rendering/popup.js +99 -0
- umap/static/umap/js/modules/rendering/template.js +217 -0
- umap/static/umap/js/modules/rendering/ui.js +573 -0
- umap/static/umap/js/modules/schema.js +24 -0
- umap/static/umap/js/modules/share.js +66 -45
- umap/static/umap/js/modules/sync/updaters.js +9 -10
- umap/static/umap/js/modules/tableeditor.js +7 -7
- umap/static/umap/js/modules/ui/dialog.js +8 -4
- umap/static/umap/js/modules/utils.js +22 -13
- umap/static/umap/js/umap.controls.js +79 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +32 -12
- umap/static/umap/js/umap.js +65 -63
- umap/static/umap/locale/br.js +35 -35
- umap/static/umap/locale/br.json +35 -35
- umap/static/umap/locale/ca.js +50 -50
- umap/static/umap/locale/ca.json +50 -50
- umap/static/umap/locale/de.js +136 -136
- umap/static/umap/locale/de.json +136 -136
- umap/static/umap/locale/el.js +47 -47
- umap/static/umap/locale/el.json +47 -47
- umap/static/umap/locale/en.js +7 -1
- umap/static/umap/locale/en.json +7 -1
- umap/static/umap/locale/fa_IR.js +44 -44
- umap/static/umap/locale/fa_IR.json +44 -44
- umap/static/umap/locale/fr.js +8 -2
- umap/static/umap/locale/fr.json +8 -2
- umap/static/umap/locale/pt.js +17 -17
- umap/static/umap/locale/pt.json +17 -17
- umap/static/umap/locale/pt_PT.js +207 -207
- umap/static/umap/locale/pt_PT.json +207 -207
- umap/static/umap/locale/th_TH.js +25 -25
- umap/static/umap/locale/th_TH.json +25 -25
- umap/static/umap/map.css +107 -104
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
- umap/storage.py +1 -0
- umap/templates/404.html +5 -1
- umap/templates/500.html +3 -1
- umap/templates/auth/user_detail.html +8 -2
- umap/templates/auth/user_form.html +19 -10
- umap/templates/auth/user_stars.html +8 -2
- umap/templates/base.html +1 -0
- umap/templates/registration/login.html +18 -3
- umap/templates/umap/about.html +1 -0
- umap/templates/umap/about_summary.html +22 -7
- umap/templates/umap/components/alerts/alert.html +42 -21
- umap/templates/umap/content.html +2 -0
- umap/templates/umap/content_footer.html +6 -2
- umap/templates/umap/css.html +1 -0
- umap/templates/umap/dashboard_menu.html +15 -0
- umap/templates/umap/home.html +14 -4
- umap/templates/umap/js.html +4 -9
- umap/templates/umap/login_popup_end.html +10 -4
- umap/templates/umap/map_detail.html +8 -2
- umap/templates/umap/map_fragment.html +3 -1
- umap/templates/umap/map_init.html +2 -1
- umap/templates/umap/map_list.html +4 -3
- umap/templates/umap/map_table.html +36 -12
- umap/templates/umap/messages.html +0 -1
- umap/templates/umap/navigation.html +2 -1
- umap/templates/umap/password_change.html +5 -1
- umap/templates/umap/password_change_done.html +8 -2
- umap/templates/umap/search.html +8 -2
- umap/templates/umap/search_bar.html +1 -0
- umap/templates/umap/team_confirm_delete.html +19 -0
- umap/templates/umap/team_detail.html +27 -0
- umap/templates/umap/team_form.html +60 -0
- umap/templates/umap/user_dashboard.html +7 -9
- umap/templates/umap/user_teams.html +51 -0
- umap/tests/base.py +8 -1
- umap/tests/conftest.py +6 -0
- umap/tests/fixtures/test_circles_layer.geojson +219 -0
- umap/tests/fixtures/test_upload_georss.xml +20 -0
- umap/tests/integration/conftest.py +18 -4
- umap/tests/integration/helpers.py +12 -0
- umap/tests/integration/test_anonymous_owned_map.py +23 -0
- umap/tests/integration/test_basics.py +29 -0
- umap/tests/integration/test_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_draw_polygon.py +110 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +1 -1
- umap/tests/integration/test_import.py +64 -5
- umap/tests/integration/test_owned_map.py +21 -13
- umap/tests/integration/test_team.py +47 -0
- umap/tests/integration/test_tilelayer.py +19 -2
- umap/tests/integration/test_view_marker.py +28 -1
- umap/tests/integration/test_websocket_sync.py +5 -5
- umap/tests/test_datalayer.py +32 -7
- umap/tests/test_datalayer_views.py +1 -1
- umap/tests/test_map.py +30 -4
- umap/tests/test_map_views.py +2 -2
- umap/tests/test_statics.py +40 -0
- umap/tests/test_team_views.py +131 -0
- umap/tests/test_views.py +15 -1
- umap/urls.py +23 -13
- umap/views.py +116 -10
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/METADATA +9 -9
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/RECORD +177 -170
- umap/static/umap/js/umap.datalayer.permissions.js +0 -70
- umap/static/umap/js/umap.features.js +0 -1290
- umap/static/umap/js/umap.layer.js +0 -1837
- umap/static/umap/js/umap.permissions.js +0 -208
- umap/static/umap/js/umap.popup.js +0 -341
- umap/static/umap/test/TableEditor.js +0 -104
- umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
- umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
- umap/static/umap/vendors/leaflet/leaflet.js +0 -6
- umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
- umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
- umap/tests/integration/test_statics.py +0 -47
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
2
|
-
umap/admin.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=aA5JH4ANEXhVrgAbc8-gFPaZeMhTVPjApqNruLpuuA8,20
|
|
2
|
+
umap/admin.py,sha256=BSZydLskm87WOovG1dnJztkuFTRKA8zxffUDBzJ4PHE,864
|
|
3
3
|
umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
|
|
4
4
|
umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
|
|
5
|
-
umap/context_processors.py,sha256=
|
|
6
|
-
umap/decorators.py,sha256=
|
|
5
|
+
umap/context_processors.py,sha256=tpFuobOUj75OaheysJMIt-Xnq0CFQOMY38e_vohX6dE,534
|
|
6
|
+
umap/decorators.py,sha256=95tsPKWtK-Hdy0wcUdB_UdCCiXs8onmEw6XDLj-4H-U,2373
|
|
7
7
|
umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
|
|
8
|
-
umap/forms.py,sha256=
|
|
8
|
+
umap/forms.py,sha256=geBn_IVvhbpfswkOZyA1RMgoD6AV33ic9N7gH1M92oE,3994
|
|
9
9
|
umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
|
|
10
10
|
umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
|
|
11
|
-
umap/models.py,sha256=
|
|
12
|
-
umap/storage.py,sha256=
|
|
13
|
-
umap/urls.py,sha256=
|
|
11
|
+
umap/models.py,sha256=efPfdunwTjKWdnC9WGTQ2n2XAbPt7K6w37q9_A6-ogo,18811
|
|
12
|
+
umap/storage.py,sha256=mxFcenC1JECmpNy4H0e7vX8GObDZVXzs1RPjQFWNd5k,2473
|
|
13
|
+
umap/urls.py,sha256=OPJ47SOnVMmczfpMBYfKbf6UvCYWCm8sp36K2jczwUE,7476
|
|
14
14
|
umap/utils.py,sha256=19i8ibi-1IXxafT4k_yOHMhD-DsPH74Ll9qw-UrUkM4,5856
|
|
15
|
-
umap/views.py,sha256=
|
|
15
|
+
umap/views.py,sha256=ZrE5WFoTbemRscekTKoFGdYtfJp5yYydDRGsYKL5-gs,45387
|
|
16
16
|
umap/websocket_server.py,sha256=igM05T95y7IqidPy8nVrCwbydj_xcCEAqwjZPb0mxyA,3023
|
|
17
17
|
umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
|
|
18
18
|
umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
|
|
@@ -24,62 +24,62 @@ umap/locale/ast/LC_MESSAGES/django.mo,sha256=KUDcu-q8RC_ZdxpQ6I_9cXxfA4X7sCrHddB
|
|
|
24
24
|
umap/locale/ast/LC_MESSAGES/django.po,sha256=cb9rEL6AdZKMwXrjEDThG2Wok-fHLTdWlRReg6DUdMA,8007
|
|
25
25
|
umap/locale/bg/LC_MESSAGES/django.mo,sha256=YisH_thI9rdxn7wmQ5tEHComNK7TmLxP4fcDk1QGqf4,5921
|
|
26
26
|
umap/locale/bg/LC_MESSAGES/django.po,sha256=nlyZIP-psj_Jqafk4E6rO5-pEMMO_awNxYoANRXPHQA,13713
|
|
27
|
-
umap/locale/br/LC_MESSAGES/django.mo,sha256=
|
|
28
|
-
umap/locale/br/LC_MESSAGES/django.po,sha256=
|
|
29
|
-
umap/locale/ca/LC_MESSAGES/django.mo,sha256=
|
|
30
|
-
umap/locale/ca/LC_MESSAGES/django.po,sha256=
|
|
31
|
-
umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=
|
|
32
|
-
umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=
|
|
27
|
+
umap/locale/br/LC_MESSAGES/django.mo,sha256=B16I45ITutbDQcJhPkoMpoEWqUpT5qR2qOOFo-C0qV4,9880
|
|
28
|
+
umap/locale/br/LC_MESSAGES/django.po,sha256=qaXfnEsQTNfwJ4mDFzJ2XkxuT5maqpGizRQh445f0f8,17395
|
|
29
|
+
umap/locale/ca/LC_MESSAGES/django.mo,sha256=5BMkHNTA4hk-XIxcxMxYzqgdOlLm6ydFum2LzTOk_8A,8671
|
|
30
|
+
umap/locale/ca/LC_MESSAGES/django.po,sha256=MhGl8xM4myBR4qc-4xv7yQ_U_R2fZXniDZMDdgEbb0A,16705
|
|
31
|
+
umap/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=uOOwbC0LrMQz00WCbdyQnOQPVJmN-qw9DKTmah3LDLM,9100
|
|
32
|
+
umap/locale/cs_CZ/LC_MESSAGES/django.po,sha256=aPSw06SzysQvSd5mZU5jXJfj0vhwqag83dRbU7LPCd8,17330
|
|
33
33
|
umap/locale/da/LC_MESSAGES/django.mo,sha256=iaJCTWGuBwECcHX4QuN1okL4mrFWcyQcXoxjKE8E2VA,6073
|
|
34
34
|
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=
|
|
37
|
-
umap/locale/el/LC_MESSAGES/django.mo,sha256=
|
|
38
|
-
umap/locale/el/LC_MESSAGES/django.po,sha256=
|
|
35
|
+
umap/locale/de/LC_MESSAGES/django.mo,sha256=YoS0VViwfgC1c_IRyOH_LOsY-XKcBcmlswDDaQ347S0,11176
|
|
36
|
+
umap/locale/de/LC_MESSAGES/django.po,sha256=Sz07ZjueAB6QcuW5QSYYtNtP7DL8d0ZpCaXNVxwQE44,18037
|
|
37
|
+
umap/locale/el/LC_MESSAGES/django.mo,sha256=UQ-FdgbaWf6PQu0vHio4GAdSaBg_V9vSas9PbgLK6D0,15281
|
|
38
|
+
umap/locale/el/LC_MESSAGES/django.po,sha256=Vnt6gZTW9VlpTwBw3LOVeHCtAA7y33uPXDeg_G3dUBg,22044
|
|
39
39
|
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=
|
|
40
|
+
umap/locale/en/LC_MESSAGES/django.po,sha256=wIjOkMmbE-ZFPwRHoXgYbLzfbh-UBnPYuVA0bivBqow,13359
|
|
41
|
+
umap/locale/es/LC_MESSAGES/django.mo,sha256=FWziZWFL8XjPc36Y9fr9ipyA6kyFqstEI9lBpoaYiII,8913
|
|
42
|
+
umap/locale/es/LC_MESSAGES/django.po,sha256=ZvVUgXzOKGsjI_8BwF8YC2ld6mnL5IKWFe_RIhnbZr8,17226
|
|
43
43
|
umap/locale/et/LC_MESSAGES/django.mo,sha256=vGMEot_LXQAQPvJESjgOFeyOgzEzYWYKP0HXQEDRDW4,5195
|
|
44
44
|
umap/locale/et/LC_MESSAGES/django.po,sha256=344_8a7EH06mtLYRIGIIKiFrg8HRWmVdVMJl9pV1oso,12435
|
|
45
|
-
umap/locale/eu/LC_MESSAGES/django.mo,sha256=
|
|
46
|
-
umap/locale/eu/LC_MESSAGES/django.po,sha256=
|
|
47
|
-
umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=
|
|
48
|
-
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=
|
|
45
|
+
umap/locale/eu/LC_MESSAGES/django.mo,sha256=guogxd6hL3SbGClGr7QPv0fr1nAaRa4YPY-7C-MAKUA,11101
|
|
46
|
+
umap/locale/eu/LC_MESSAGES/django.po,sha256=l9zlOHgIkGnH39nSwqf1ydTnQZ3cNdJ8Uo1iyYpBvX8,17674
|
|
47
|
+
umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=QRnrHXPvibiXJ6F53jhT8YLXC6BAwhTXZ8XvNmIIeqM,13581
|
|
48
|
+
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=IkMp1JTU5k7mtK1o_5xc61KditzLBRzlxVLGksnQPOw,20245
|
|
49
49
|
umap/locale/fi/LC_MESSAGES/django.mo,sha256=-p9kvtfjdJKrbSMEfpdvoZ6jEX_njf-0uqzlvydbhOo,4856
|
|
50
50
|
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=
|
|
51
|
+
umap/locale/fr/LC_MESSAGES/django.mo,sha256=Sn8nXuBFRj4FltY3td4IakYJRpxnkoaZQ7ykctp7AKw,12248
|
|
52
|
+
umap/locale/fr/LC_MESSAGES/django.po,sha256=Y_PyuLMsk4uFUHgYXmtnEcJt6Jn5UFK5oIX_14oo9Bk,18677
|
|
53
53
|
umap/locale/gl/LC_MESSAGES/django.mo,sha256=-p9_T_4C3ns1Sc1iG7zfCUstFsGX_aaxzeLwD8d8Uho,6253
|
|
54
54
|
umap/locale/gl/LC_MESSAGES/django.po,sha256=w5yCwKMsmFJ7Tk-y4p2a8oOaYkyYi_aLNnWpbw04M2M,13210
|
|
55
55
|
umap/locale/he/LC_MESSAGES/django.mo,sha256=HsIucdlws4u7UHqBWx6x3Rgbz7H37MQS0iMjHkvLsRo,6944
|
|
56
56
|
umap/locale/he/LC_MESSAGES/django.po,sha256=EWdmr83WCPXUHKgfqsvgK1ZOVt-qZJmQuv6tGom8M4A,13820
|
|
57
57
|
umap/locale/hr/LC_MESSAGES/django.mo,sha256=bBcaNSs-oqm_cjm6Bbqaph_ZNHF2_I_FP0xccwU9txI,1558
|
|
58
58
|
umap/locale/hr/LC_MESSAGES/django.po,sha256=Aj3m28Ugyjq-Ih32P7dzw0M4czitDqoYpCvyNsNnEnE,9742
|
|
59
|
-
umap/locale/hu/LC_MESSAGES/django.mo,sha256=
|
|
60
|
-
umap/locale/hu/LC_MESSAGES/django.po,sha256=
|
|
59
|
+
umap/locale/hu/LC_MESSAGES/django.mo,sha256=FmVwvGCztvJihfYeW7JNGcvZhD6MmZcjMn-4-H7QpSE,11739
|
|
60
|
+
umap/locale/hu/LC_MESSAGES/django.po,sha256=AD4fgnvcHCv-CnEUXYqhQ7O_A-PLRkOCz_Cb_IVUkN4,18313
|
|
61
61
|
umap/locale/id/LC_MESSAGES/django.mo,sha256=8craaGVnVbONfojnkDUUtoxMyeI2tt6GdIWeWZGcaJ8,425
|
|
62
62
|
umap/locale/id/LC_MESSAGES/django.po,sha256=wmbgIN1R7vRDgAdzBu7ZHnTpg5fpB3hmJyjAzRNoN-M,8000
|
|
63
63
|
umap/locale/is/LC_MESSAGES/django.mo,sha256=8Iufls8l_zQFsOYxrfuUig6Ndm2qtmZiBRDs2TlM8tI,6579
|
|
64
64
|
umap/locale/is/LC_MESSAGES/django.po,sha256=tkEdFtLUQlSwn7AcpKrHJEpw__HNEHkJzqABkVk4pUk,13438
|
|
65
|
-
umap/locale/it/LC_MESSAGES/django.mo,sha256=
|
|
66
|
-
umap/locale/it/LC_MESSAGES/django.po,sha256=
|
|
65
|
+
umap/locale/it/LC_MESSAGES/django.mo,sha256=46JCRPCm43EDeAQUR8zPAzm00BeamLpLZ6EjhndM4i0,10042
|
|
66
|
+
umap/locale/it/LC_MESSAGES/django.po,sha256=SMB6mdbW8dncTP9kXsP7oXNrLlAtRLN5IAbfLVS5sCU,17798
|
|
67
67
|
umap/locale/ja/LC_MESSAGES/django.mo,sha256=aul0MIkp-B49WhZofKy7_gi9wqFe_Cq3Vrq7kU_z6DA,6636
|
|
68
68
|
umap/locale/ja/LC_MESSAGES/django.po,sha256=YjBmabk41z6CCvwAuPhyprUYJLXKsJoCp5_njUyVIm0,13543
|
|
69
69
|
umap/locale/ko/LC_MESSAGES/django.mo,sha256=os9Vo9pdSyMVWMN3ToDdu19-VwM1PJtPlPG20CSC5Q8,6607
|
|
70
70
|
umap/locale/ko/LC_MESSAGES/django.po,sha256=HBqpxmWXtrOBmjYIaPnNJmFX3QfNtvGLjl0bNZj1seA,13453
|
|
71
71
|
umap/locale/lt/LC_MESSAGES/django.mo,sha256=cA9gb9IAjuYBVh9QIKuniMpDr8CmgMt_cUP99W5it5s,5922
|
|
72
72
|
umap/locale/lt/LC_MESSAGES/django.po,sha256=adw4Q98CDmXZht37z7lvMTI3tzGHjHxKhbEZ3N5x_y8,13113
|
|
73
|
-
umap/locale/ms/LC_MESSAGES/django.mo,sha256=
|
|
74
|
-
umap/locale/ms/LC_MESSAGES/django.po,sha256=
|
|
73
|
+
umap/locale/ms/LC_MESSAGES/django.mo,sha256=IrPYBiGUkzJUEu9ATpSqqWaiiGQzGhPXwccAMOwy89o,9880
|
|
74
|
+
umap/locale/ms/LC_MESSAGES/django.po,sha256=fp8NQHyJYlgdhvd8XpAXMAwi5q7bro0k-UXUkvhiyO8,17202
|
|
75
75
|
umap/locale/nl/LC_MESSAGES/django.mo,sha256=CWIG-7Vc6EO-4L0oy35wuaNEQSkrOoKpbkrvUq6iMAA,6056
|
|
76
76
|
umap/locale/nl/LC_MESSAGES/django.po,sha256=SMjyxF10q7p6AumNtnHRfdI1nP-4-_EKlbTCl8ZjhMM,13009
|
|
77
77
|
umap/locale/no/LC_MESSAGES/django.mo,sha256=ADQ1RdDyg19YZHw2wKl_bxEgMu_0wK7HaoYk_nsxXks,423
|
|
78
78
|
umap/locale/no/LC_MESSAGES/django.po,sha256=HXr3Y_gxOPjdU1pSV_tyX_l7pbDMVrFBdf0gm3gciwI,7998
|
|
79
|
-
umap/locale/pl/LC_MESSAGES/django.mo,sha256=
|
|
80
|
-
umap/locale/pl/LC_MESSAGES/django.po,sha256=
|
|
81
|
-
umap/locale/pt/LC_MESSAGES/django.mo,sha256=
|
|
82
|
-
umap/locale/pt/LC_MESSAGES/django.po,sha256=
|
|
79
|
+
umap/locale/pl/LC_MESSAGES/django.mo,sha256=fMCMevGTw3C8Daq24P1m9gWFKvvZT4kXAd4JpRhjBns,10450
|
|
80
|
+
umap/locale/pl/LC_MESSAGES/django.po,sha256=AWSgcqq7iLAc-k66VFjxqxz4E_TsFXvX1jl5fHc1LyE,17723
|
|
81
|
+
umap/locale/pt/LC_MESSAGES/django.mo,sha256=tJ2OdBQAlIFc7X7r7jSkmlx1aMX2k75NxD7Oorye1Zw,11323
|
|
82
|
+
umap/locale/pt/LC_MESSAGES/django.po,sha256=5NCFcwaTN1wybawUpWCtf1XknNlAFcLMpCdewoLB-Bw,17926
|
|
83
83
|
umap/locale/pt_BR/LC_MESSAGES/django.mo,sha256=DrxyrIeCD0dmbieR3clKO2Sy0pyWpcHmQKM251Ff294,6328
|
|
84
84
|
umap/locale/pt_BR/LC_MESSAGES/django.po,sha256=RXQyHUSrm2JdiWLyR6XEvdSzFLicNj9hR82Noppc2n4,13319
|
|
85
85
|
umap/locale/pt_PT/LC_MESSAGES/django.mo,sha256=4iwtGYsVFh05Qbp9XmZdclQSTZIYYt6IiLN6W3Eyc6I,6356
|
|
@@ -96,10 +96,10 @@ umap/locale/sl/LC_MESSAGES/django.mo,sha256=0b49Cays1FTBSDhXRkIEdbe9j00XVRnxXTtN
|
|
|
96
96
|
umap/locale/sl/LC_MESSAGES/django.po,sha256=Zq_C_uygt1eJNamjiiRLt_bD4CnvKr0Sv7ciwu9S6rI,13063
|
|
97
97
|
umap/locale/sr/LC_MESSAGES/django.mo,sha256=t81xXtil60GM5JfXivxFyWd9nMiDXeAVf2pL1SJfwlY,7668
|
|
98
98
|
umap/locale/sr/LC_MESSAGES/django.po,sha256=nQGT42kRT9aHxFOivd7konIkTt4FZexCX2P9n3Vbnyg,14555
|
|
99
|
-
umap/locale/sv/LC_MESSAGES/django.mo,sha256=
|
|
100
|
-
umap/locale/sv/LC_MESSAGES/django.po,sha256=
|
|
101
|
-
umap/locale/th_TH/LC_MESSAGES/django.mo,sha256=
|
|
102
|
-
umap/locale/th_TH/LC_MESSAGES/django.po,sha256=
|
|
99
|
+
umap/locale/sv/LC_MESSAGES/django.mo,sha256=XtlI0vL7Lnu3-P-62HYEzeT7AZp3G814Vis6pWWpe5g,7727
|
|
100
|
+
umap/locale/sv/LC_MESSAGES/django.po,sha256=bdqp9tBe5oTahVrzozF6Eh2f5_xh9hGKEFtpff9OVGM,16280
|
|
101
|
+
umap/locale/th_TH/LC_MESSAGES/django.mo,sha256=cMoM4qiKCkFuF314KdFtv518Ncx5qFo_SYePfyWnRrw,8991
|
|
102
|
+
umap/locale/th_TH/LC_MESSAGES/django.po,sha256=4bwE27mdrd26HZr38J91eEiWib9Q8Nbs2jG4TXOmcMA,17175
|
|
103
103
|
umap/locale/tr/LC_MESSAGES/django.mo,sha256=YguenEWomH76Cy9qrmDYmU-588ohHVw_iiiEWOS-648,6363
|
|
104
104
|
umap/locale/tr/LC_MESSAGES/django.po,sha256=wC1qHzXSO5pAD8_rwF_vjYnXB9Lv7cLgRroVFbNNN04,13317
|
|
105
105
|
umap/locale/uk_UA/LC_MESSAGES/django.mo,sha256=iHdp6HtoDAuqY_w7zMu08tW5_CC64lmJuzsCbt4S8X0,8235
|
|
@@ -108,8 +108,8 @@ umap/locale/vi/LC_MESSAGES/django.mo,sha256=OCqzY2ppgBY2UKLvpqReVu-5JV9PLX_FBJku
|
|
|
108
108
|
umap/locale/vi/LC_MESSAGES/django.po,sha256=RXA7JAZFIHun1vwwKwj3ffYQW7ghdTIiq0e2l9Ihai8,12784
|
|
109
109
|
umap/locale/zh/LC_MESSAGES/django.mo,sha256=ozLSGu_UCayTacLRSpiWSV8uEcEAxEiY9uKyz1Hmits,3540
|
|
110
110
|
umap/locale/zh/LC_MESSAGES/django.po,sha256=0WdjDl_mAoZz6RXmP9tBYFV-D13okk-FE9Xg-8KRk-w,11831
|
|
111
|
-
umap/locale/zh_TW/LC_MESSAGES/django.mo,sha256=
|
|
112
|
-
umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=
|
|
111
|
+
umap/locale/zh_TW/LC_MESSAGES/django.mo,sha256=9jHlpzsn5NjAcFufOeBZKAT3IgRXsEyNzl_BjyHFQH0,10478
|
|
112
|
+
umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=GpWfCxD6P1AcPJKMRiAWvKQVcKkIQzvOw73jszZBsAE,17289
|
|
113
113
|
umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
114
|
umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
115
|
umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
|
|
@@ -137,30 +137,31 @@ umap/migrations/0018_datalayer_uuid.py,sha256=HukF-EgWp4BlgZyK5hWAYhCkitHxACSgDE
|
|
|
137
137
|
umap/migrations/0019_migrate_internal_remote_datalayers.py,sha256=NZOhTwX3UJykn2MZ5x_pcSw2_gULI3Yc9TGwsZt741Q,1601
|
|
138
138
|
umap/migrations/0020_alter_tilelayer_url_template.py,sha256=e6DC3PNSiyyCAwS64D8d4BZiiQa3bCuyoi230L3SPH4,486
|
|
139
139
|
umap/migrations/0021_remove_map_description.py,sha256=C1-pTJ1loj_aZPIbdbPRIHQayarlkbUbfW6bj_vnKGA,336
|
|
140
|
+
umap/migrations/0022_add_team.py,sha256=oEM1cm_GTpiNb4m7HYaid1Sji56NZSf-IudgjYm0okg,2932
|
|
140
141
|
umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
|
-
umap/settings/__init__.py,sha256=
|
|
142
|
-
umap/settings/base.py,sha256=
|
|
142
|
+
umap/settings/__init__.py,sha256=aPJkOTk0uFusIBA-uOjdUi10R5Cxt4jl5yv2_uCTUvo,1702
|
|
143
|
+
umap/settings/base.py,sha256=ttLbgxyXiFzMiQJBJQ0VbmUgqsnasRCRloj97RQvxxo,10284
|
|
143
144
|
umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
|
|
144
145
|
umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
|
|
145
146
|
umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
146
|
-
umap/static/umap/base.css,sha256=
|
|
147
|
+
umap/static/umap/base.css,sha256=HJJ7fmkkXihBrV6_fAwAOYPAVyvIyAmKbGQ55J3RCFQ,16798
|
|
147
148
|
umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
|
|
148
|
-
umap/static/umap/content.css,sha256=
|
|
149
|
+
umap/static/umap/content.css,sha256=6p2sgg-FYOjVBiwvk930tBJTl3lfr2m8jjSKkf84Gv0,11555
|
|
149
150
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
150
151
|
umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
|
|
151
|
-
umap/static/umap/map.css,sha256=
|
|
152
|
-
umap/static/umap/nav.css,sha256=
|
|
152
|
+
umap/static/umap/map.css,sha256=tDsqbCFI037wIQGb2jdZuTNLq8k4-DHALWlM6-IyFUo,36954
|
|
153
|
+
umap/static/umap/nav.css,sha256=IKB8Ga8TRal8naxjsgrcrnCO2eaKUL3YNofJB9IN9l0,1865
|
|
153
154
|
umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
|
|
154
155
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
155
156
|
umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
|
|
156
157
|
umap/static/umap/vars.css,sha256=A2moP0RPPmiej7Q4nJT2a_zmXFxI2BoB390lvtysX3o,1724
|
|
157
158
|
umap/static/umap/css/contextmenu.css,sha256=LAoxcStGC2IesXj9FsYqVTGiJD2AIS0MPErygc-b2No,339
|
|
158
159
|
umap/static/umap/css/dialog.css,sha256=9qwy9rOcTQY6SPkteM7dW1t36XQBJVoGETQatSOvffM,879
|
|
159
|
-
umap/static/umap/css/icon.css,sha256=
|
|
160
|
-
umap/static/umap/css/importers.css,sha256=
|
|
160
|
+
umap/static/umap/css/icon.css,sha256=mXmjTvRU5ElQcuibHbht9oIIBv1ch1LrxQTuIshu7KE,3758
|
|
161
|
+
umap/static/umap/css/importers.css,sha256=qsUmVtV4pyy5yzhKsGqMoCqUhoD5RoFDo69TuI6rSgw,1326
|
|
161
162
|
umap/static/umap/css/panel.css,sha256=fRPw-dyrcRegoOxTOWTDjBwuI_aHNPmmBOY16flsCBI,3073
|
|
162
|
-
umap/static/umap/css/slideshow.css,sha256=
|
|
163
|
-
umap/static/umap/css/tableeditor.css,sha256=
|
|
163
|
+
umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
|
|
164
|
+
umap/static/umap/css/tableeditor.css,sha256=nYFd5qSMkUasFfAxkWwewKJ5MwIcZb2Zq_DViuDRZc4,1574
|
|
164
165
|
umap/static/umap/css/tooltip.css,sha256=YmaXRbnADYALIPxZASRDnkYpBoQnOnfVmIQrl4m3Wi0,1403
|
|
165
166
|
umap/static/umap/css/window.css,sha256=50MFWr9oU200f8-crTPJi3ZPG9h1eG5i6oOBP8yttBQ,808
|
|
166
167
|
umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
|
|
@@ -174,10 +175,10 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
|
|
|
174
175
|
umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
|
|
175
176
|
umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
|
|
176
177
|
umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
|
|
177
|
-
umap/static/umap/img/16-white.svg,sha256=
|
|
178
|
-
umap/static/umap/img/16.svg,sha256=
|
|
179
|
-
umap/static/umap/img/24-white.svg,sha256=
|
|
180
|
-
umap/static/umap/img/24.svg,sha256=
|
|
178
|
+
umap/static/umap/img/16-white.svg,sha256=yPkRrnYx5VagQgmgR8fqOU5_LtRifaMKPzZP7PnEx3c,39878
|
|
179
|
+
umap/static/umap/img/16.svg,sha256=MJM2z0mWeBZnSlDZjxt13CprKYIeZmIzUoORuFMRf8A,23939
|
|
180
|
+
umap/static/umap/img/24-white.svg,sha256=Z9BBwVMcjO4QOaTZMS0bQS1hd_jaBQHD5NanB2nJhnM,17592
|
|
181
|
+
umap/static/umap/img/24.svg,sha256=zZOHyTyuDINA7EForgVFWXosfsXD4-eQ8-Jzhn74gvQ,24878
|
|
181
182
|
umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
|
|
182
183
|
umap/static/umap/img/alert-icon-info.svg,sha256=wnfvaWhidanbIX8n2G8ppFG7pXyqnDjL9lhdbVoeCf8,735
|
|
183
184
|
umap/static/umap/img/alert-icon-success.svg,sha256=ZzH4Te0IMM0Cyf9MByh57gxNxVddOavA3gSGqsa3xM0,189
|
|
@@ -205,54 +206,59 @@ umap/static/umap/img/importers/overpass.svg,sha256=PFmMwBEQug3bpMdjk3Xue7cU3eArn
|
|
|
205
206
|
umap/static/umap/img/importers/random.svg,sha256=DnxcCu2vJOBdZYWhl8Si0boGjkLcvqrRZaB_BbP1zcM,2445
|
|
206
207
|
umap/static/umap/img/importers/random1.svg,sha256=mY-Yp9-my2ZxdvL6sgnDzc-ihjnAw-mNZtgSkbj25LA,1370
|
|
207
208
|
umap/static/umap/img/importers/random2.svg,sha256=wRwBTM7skyvLZJX4QHozMX8P4jxP59POTHlKPsMODcg,1933
|
|
208
|
-
umap/static/umap/img/source/16-white.svg,sha256=
|
|
209
|
-
umap/static/umap/img/source/16.svg,sha256=
|
|
210
|
-
umap/static/umap/img/source/24-white.svg,sha256=
|
|
211
|
-
umap/static/umap/img/source/24.svg,sha256=
|
|
212
|
-
umap/static/umap/js/umap.controls.js,sha256=
|
|
213
|
-
umap/static/umap/js/umap.core.js,sha256=
|
|
214
|
-
umap/static/umap/js/umap.
|
|
215
|
-
umap/static/umap/js/umap.
|
|
216
|
-
umap/static/umap/js/umap.forms.js,sha256=nQIHel542c__Ayumdvqg_gb-FCU6TL257NEOxXGRe04,30897
|
|
217
|
-
umap/static/umap/js/umap.icon.js,sha256=JYLHLtPAZT6BRIrAv5wHXYRIWMkCZMO-olwps9Xz8f8,7465
|
|
218
|
-
umap/static/umap/js/umap.js,sha256=5zdit8BnNLY4WDpox2lTP-A6PyEZvJIDYghCiI9w8GU,57438
|
|
219
|
-
umap/static/umap/js/umap.layer.js,sha256=6PeGuVqGyMTgIusmdrNgC94FTznntmKBPI2vuKlZ-DE,53211
|
|
220
|
-
umap/static/umap/js/umap.permissions.js,sha256=wWgJSyd7fIykn-vo6Wik_sGf9uyL5n3QGqWLPYHDmhs,5947
|
|
221
|
-
umap/static/umap/js/umap.popup.js,sha256=t7zlz_LCgVsUvuDaH5ddF4NygC6Lld6Mhi7Q0eIqZmo,9775
|
|
209
|
+
umap/static/umap/img/source/16-white.svg,sha256=jwnyt-E_4QGPYVc3DKRByI0iI7vj55hoGDOF8QsTs8U,71911
|
|
210
|
+
umap/static/umap/img/source/16.svg,sha256=b5Dm2yMk5bEAb6FvKRWPtk86-Y2Gp4gX8WL1W1sIYBc,45384
|
|
211
|
+
umap/static/umap/img/source/24-white.svg,sha256=F4lvAvzlTaqUsVhB13PXl7X-r4oz6rWykgHv0Dxmdec,28439
|
|
212
|
+
umap/static/umap/img/source/24.svg,sha256=zIuQN1fv_w0asmxzuiCh2TErV4za8Mqg6pK-4YKAt-w,37617
|
|
213
|
+
umap/static/umap/js/umap.controls.js,sha256=g17wQcdA5pnONyFVHsOpecEUDjOwcoJeq9sHuhJkiUI,35705
|
|
214
|
+
umap/static/umap/js/umap.core.js,sha256=JXTrFJJ6Da_RNGqVcgw08VMtZIz4IGB83TqFKLeBHfw,7679
|
|
215
|
+
umap/static/umap/js/umap.forms.js,sha256=k052H20dzA1jl8Y5r9TLpFNunlaqUY98sKdIC3SLjB0,31373
|
|
216
|
+
umap/static/umap/js/umap.js,sha256=oYcivKPRHqXINnG_G28C18tl6Kc9IYurSyoZAd8xnnE,57560
|
|
222
217
|
umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
|
|
223
218
|
umap/static/umap/js/components/fragment.js,sha256=2zFkX4A0iVeebZJawmveEMKMXQyYmBuY67rbZUPo-Fs,341
|
|
224
|
-
umap/static/umap/js/components/alerts/alert.css,sha256=
|
|
219
|
+
umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
|
|
225
220
|
umap/static/umap/js/components/alerts/alert.js,sha256=7JaTfAzB6qrodu8soo4aoiQMR7YOYcE3u17q3boMbxI,4491
|
|
226
|
-
umap/static/umap/js/modules/autocomplete.js,sha256=
|
|
227
|
-
umap/static/umap/js/modules/browser.js,sha256=
|
|
228
|
-
umap/static/umap/js/modules/caption.js,sha256=
|
|
221
|
+
umap/static/umap/js/modules/autocomplete.js,sha256=KDxkcUXMqKOH3T8L5Gz_XCVeQQ7N-srPVzXEsRRX304,8590
|
|
222
|
+
umap/static/umap/js/modules/browser.js,sha256=Aj-kV186oKmmjvWrYY-EA0XOlUOXF_LmYm8ow55JPdg,7406
|
|
223
|
+
umap/static/umap/js/modules/caption.js,sha256=Jz3P_pDeNq8z74Lk1yGSgSstp3rhkh9LzzlWI0PHHxg,3813
|
|
229
224
|
umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
|
|
230
225
|
umap/static/umap/js/modules/facets.js,sha256=K4qfnCtgIK7oMkL4YvAvPovHfaCK_aRyW5rl7nAFqK0,4677
|
|
231
|
-
umap/static/umap/js/modules/formatter.js,sha256=
|
|
232
|
-
umap/static/umap/js/modules/global.js,sha256=
|
|
226
|
+
umap/static/umap/js/modules/formatter.js,sha256=nY2FV4TsZJcdNdb9nQlxcI4pnZZckdxWLFKjQSZc72M,4391
|
|
227
|
+
umap/static/umap/js/modules/global.js,sha256=t57saMq7iT_2ypWBv2eEx8IjH8lWGuB_sMJHVNyfETw,1944
|
|
233
228
|
umap/static/umap/js/modules/help.js,sha256=k0gUpRf8ik9_okGH7Jv4JOjveNbbvSdk1yV_oZ3kSkQ,9870
|
|
234
229
|
umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
|
|
235
230
|
umap/static/umap/js/modules/importer.js,sha256=4BIQEUHJCaJ7WFrCn_DSPzBKjOw0B_BeAuXMqF8D4W4,8657
|
|
236
231
|
umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
|
|
237
232
|
umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
|
|
233
|
+
umap/static/umap/js/modules/permissions.js,sha256=sxItfFTWapFvDhvGvtZ4uONjm6_zparHqIFq1vY5QBI,7534
|
|
238
234
|
umap/static/umap/js/modules/request.js,sha256=hMy3dleGRxstKsksbNa15w7jk4H9-nAV_ub-JdNhDD8,3881
|
|
239
235
|
umap/static/umap/js/modules/rules.js,sha256=fREXFveMjw3pqv8nExLELkT-t0K_h2H6PekNM6dY64A,7076
|
|
240
|
-
umap/static/umap/js/modules/schema.js,sha256=
|
|
241
|
-
umap/static/umap/js/modules/share.js,sha256=
|
|
236
|
+
umap/static/umap/js/modules/schema.js,sha256=U0tUFqqqrHHlOrxwVaJ9Ak5QYLO8pQ7WusPo76wdLNU,13070
|
|
237
|
+
umap/static/umap/js/modules/share.js,sha256=XFEhE26Fek9tINpzbAQvXzrwoTRlvyLwarDcJW1bdRw,7253
|
|
242
238
|
umap/static/umap/js/modules/slideshow.js,sha256=fMpQ93VU7Uc9Mhxary_vrAdAK8g_P5Ch6pTVInIJzW4,3445
|
|
243
|
-
umap/static/umap/js/modules/tableeditor.js,sha256=
|
|
239
|
+
umap/static/umap/js/modules/tableeditor.js,sha256=o8t6zheQcaZ9Ybp67W8AFnMJvbHgLuJsOXXQajCwX7U,9788
|
|
244
240
|
umap/static/umap/js/modules/urls.js,sha256=Y_8KJ8CqMDCgV_0E9mc6oohODvRgoNHBx_avL85SR8g,838
|
|
245
|
-
umap/static/umap/js/modules/utils.js,sha256=
|
|
241
|
+
umap/static/umap/js/modules/utils.js,sha256=TzRJEqlvNpPgv-gqIisWLOv4LtfzvoAeEi1NnD_hPRE,11378
|
|
242
|
+
umap/static/umap/js/modules/data/features.js,sha256=6mzia6TVooUB7w17FuwnkoSkOtqhtibUlX0J3MOkvJc,26139
|
|
243
|
+
umap/static/umap/js/modules/data/layer.js,sha256=c-lEbIfYd23IGSWyD-iYKuDwYsz60dzyX1xXSDp15-c,33188
|
|
246
244
|
umap/static/umap/js/modules/importers/communesfr.js,sha256=GuBriig7n3-AmtBWByrD43S12bQS_vr6VPlEw3bCL0g,1316
|
|
247
245
|
umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
|
|
248
246
|
umap/static/umap/js/modules/importers/geodatamine.js,sha256=FtrHMVntY4pPelw0uDZCbDVxy5er1ZzDc80zcDpvRnc,2949
|
|
249
247
|
umap/static/umap/js/modules/importers/overpass.js,sha256=xWatsY2Xfed2KqBe1h1QBEagO6q11MYbiNVq5eB5nkI,2722
|
|
248
|
+
umap/static/umap/js/modules/rendering/icon.js,sha256=hguSJt3wDqe0oSQIm1zrYSbyktKVQUWv-QTo5fYdlc8,7861
|
|
249
|
+
umap/static/umap/js/modules/rendering/popup.js,sha256=s_LhWy3nqKm_GEwc9aCbzSG1JM9M5-kshwNfKQNdu3A,2460
|
|
250
|
+
umap/static/umap/js/modules/rendering/template.js,sha256=79umxBD0pMuz8n-sx54Zg7FKcm_fbEkGDlt3vnEXtXo,7177
|
|
251
|
+
umap/static/umap/js/modules/rendering/ui.js,sha256=_kv-d5XfrA4l6Ige6_NHIvsZxH2oarPXL34UNORAJ-E,16334
|
|
252
|
+
umap/static/umap/js/modules/rendering/layers/base.js,sha256=QNQm_IHSX2jwhr6RfoURk9ypSi4lH1Z0voZNH84VLV0,2419
|
|
253
|
+
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=HhmYc_PCaA4VoRO_2TUIaPhkiRE1RUOoNEJVGs10Etk,14550
|
|
254
|
+
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=tIwkcJhJ7SQTpMK7YXumcA6KMjuZjPKWzc_xuF9d_Dc,3360
|
|
255
|
+
umap/static/umap/js/modules/rendering/layers/heat.js,sha256=pWZkgwNP18bKl5gqN2w9dAxvWWHYoTSDN4n9t_1u-xI,4771
|
|
250
256
|
umap/static/umap/js/modules/sync/engine.js,sha256=m2FIY-GvtB5zRwiGNMn0DbTQV3aBdVxgXpaAKND0nX8,2587
|
|
251
|
-
umap/static/umap/js/modules/sync/updaters.js,sha256=
|
|
257
|
+
umap/static/umap/js/modules/sync/updaters.js,sha256=_sQtHBI86mapqwSOKBNPWMBnXlEwnS1W4H5F4jdYuqU,3002
|
|
252
258
|
umap/static/umap/js/modules/sync/websocket.js,sha256=v9UdTU1lFTOXWBFFQjvYrl9to8ug_m6XAmpjRZRQreU,640
|
|
253
259
|
umap/static/umap/js/modules/ui/base.js,sha256=a5QgdgkaFZZMDq50kCgyaobUQdjvDecdTQC3lZ7-M5M,2418
|
|
254
260
|
umap/static/umap/js/modules/ui/contextmenu.js,sha256=JY1b_z9jq5FKMMAAZuWUjjvzo3RTuoAA_COS55jcDmo,1493
|
|
255
|
-
umap/static/umap/js/modules/ui/dialog.js,sha256=
|
|
261
|
+
umap/static/umap/js/modules/ui/dialog.js,sha256=fP51HDkucZpXnx1v0h5eAckj77RsADZO_CzPRbjeKSU,5407
|
|
256
262
|
umap/static/umap/js/modules/ui/panel.js,sha256=Iqfagid9BxB0zjexBElaA_hLejoePdfORt4Di5lHVLY,2994
|
|
257
263
|
umap/static/umap/js/modules/ui/tooltip.js,sha256=M2KBb5CA4AvaA-6QgfpUKMYQuGXzTqx4ZVA9fkMRBEs,1642
|
|
258
264
|
umap/static/umap/locale/am_ET.js,sha256=5pEVJGoDPqHE5DkY4Utn8VGFB7KHL9JUv1Pugvbps3U,32779
|
|
@@ -263,20 +269,20 @@ umap/static/umap/locale/ast.js,sha256=0WGEMhCJiEei3YxbypLm8HJsnAfZb_EaC-dWLhjsSi
|
|
|
263
269
|
umap/static/umap/locale/ast.json,sha256=os9weOA3tdpKUHR1vjggDbsaeybpqBbU5Knr6v-LTfQ,28862
|
|
264
270
|
umap/static/umap/locale/bg.js,sha256=S61OiLIDpdgBsJYWpvD6SP69sheeRdQ3A5qO8cH5vaI,32024
|
|
265
271
|
umap/static/umap/locale/bg.json,sha256=134UktcCdYAqLp2qaj7BSWX-pXmcT-N7s8O5QOzjnoI,31959
|
|
266
|
-
umap/static/umap/locale/br.js,sha256=
|
|
267
|
-
umap/static/umap/locale/br.json,sha256=
|
|
268
|
-
umap/static/umap/locale/ca.js,sha256=
|
|
269
|
-
umap/static/umap/locale/ca.json,sha256=
|
|
272
|
+
umap/static/umap/locale/br.js,sha256=KGcCJXXeKcNcsXB_uQmfUGez9JZDMQsM4MHvVC04928,30642
|
|
273
|
+
umap/static/umap/locale/br.json,sha256=CikoqNp3vaKbp-dgRQQu5KFOANGJPOqyk2P1fdlG8LI,30577
|
|
274
|
+
umap/static/umap/locale/ca.js,sha256=VNJk7fRWLmxwYmdU6YchlXRkksxkfDVO2RTTOIDLq0Y,30243
|
|
275
|
+
umap/static/umap/locale/ca.json,sha256=5SZqiNXaT7fo3NYusUq-e3qpY5QdXrAZ_XBVwFDXEqk,30178
|
|
270
276
|
umap/static/umap/locale/cs_CZ.js,sha256=NDXguGes2Z3aCHOcphDBZpK2ITvOa3WoRygBa9rW_WI,31146
|
|
271
277
|
umap/static/umap/locale/cs_CZ.json,sha256=_5wrmpXnBMdgMGraH-j0JNM6gm_iP2lb7zbpAVKLgXE,31075
|
|
272
278
|
umap/static/umap/locale/da.js,sha256=7rqaSoR_OxdJtIaiUJrcmtqjh_8hAeiNKWIwojChi70,29305
|
|
273
279
|
umap/static/umap/locale/da.json,sha256=28w3Gz6ICf3Uu6eoaP3v5GCJfrrnzhCj-ZNJxNvC-Ts,29240
|
|
274
|
-
umap/static/umap/locale/de.js,sha256=
|
|
275
|
-
umap/static/umap/locale/de.json,sha256
|
|
276
|
-
umap/static/umap/locale/el.js,sha256=
|
|
277
|
-
umap/static/umap/locale/el.json,sha256=
|
|
278
|
-
umap/static/umap/locale/en.js,sha256=
|
|
279
|
-
umap/static/umap/locale/en.json,sha256=
|
|
280
|
+
umap/static/umap/locale/de.js,sha256=_fbYoFeaZ95fwmQ600Gu5laFFn2Q-TQ_lGfEnroCblk,31639
|
|
281
|
+
umap/static/umap/locale/de.json,sha256=-yXIeW2DamMQmsTA0vPqrR6CtvRp6y9kMyK-ttshZFE,31574
|
|
282
|
+
umap/static/umap/locale/el.js,sha256=5RQbgH7umfu-8Pcz1_pEhUFvf7a620OE51fUtFMnB5A,40427
|
|
283
|
+
umap/static/umap/locale/el.json,sha256=0OcMJqqDJND4IXKA-8vfR60yhVqD2pUH2fJ9YFD-x_k,40362
|
|
284
|
+
umap/static/umap/locale/en.js,sha256=qTB_Nx8Sk-sA2HhY2DNtGeo7MoUmlJJr3WHgxv_7cHE,29269
|
|
285
|
+
umap/static/umap/locale/en.json,sha256=uj_uwDS25Sj3XAWhNCPn6zGxHw_r5gVzTNhU9j0a3Bg,29204
|
|
280
286
|
umap/static/umap/locale/en_US.json,sha256=xf6FKl8HGtBWVEVlfWfWw7VBahtgn_J6ZSvbxj39Mbw,28651
|
|
281
287
|
umap/static/umap/locale/es.js,sha256=ywDVVvjuezWuXQf32rUSiDYAeuDcuOg86onP7Wncnzs,31237
|
|
282
288
|
umap/static/umap/locale/es.json,sha256=IV1sStOXiF6ZAUPhQ5XyKmr5KAWVnAaTRpzQQAsHK8c,31172
|
|
@@ -284,12 +290,12 @@ umap/static/umap/locale/et.js,sha256=wJNuorCCpv3Xp7kaeP07S1aoYQz-l3Ah0XBKUBQOKdU
|
|
|
284
290
|
umap/static/umap/locale/et.json,sha256=ot4YMGJjNcc_Ylk9BlmN1kfwExJXzBMr1YxEOEpRz_Q,29049
|
|
285
291
|
umap/static/umap/locale/eu.js,sha256=8liI8RYbf8AqJQyR1QJG60cwMYivmXbRljBm7IMQqT4,29474
|
|
286
292
|
umap/static/umap/locale/eu.json,sha256=RMMtXOcXq275c2xN60t5cnsCFxrdt5qptBq2Pariowg,29409
|
|
287
|
-
umap/static/umap/locale/fa_IR.js,sha256=
|
|
288
|
-
umap/static/umap/locale/fa_IR.json,sha256=
|
|
293
|
+
umap/static/umap/locale/fa_IR.js,sha256=I_AU4yMQYahozog6nvsExzncOvPuY43W50tJDK0FLK0,34689
|
|
294
|
+
umap/static/umap/locale/fa_IR.json,sha256=e7w30OAZ2N0NPDSc0VwNMqYqy-2QpStItdeY_xmThJM,34618
|
|
289
295
|
umap/static/umap/locale/fi.js,sha256=cafPW2PrrUpRNrtGBbOUrSI5NwjJhV_Xl5fkJ7ITlhg,29795
|
|
290
296
|
umap/static/umap/locale/fi.json,sha256=o6el7y1e2yA6h8jVPbD0HNHZJ_xmPlta1pzDdejp5TY,29730
|
|
291
|
-
umap/static/umap/locale/fr.js,sha256=
|
|
292
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
297
|
+
umap/static/umap/locale/fr.js,sha256=Vs37GGXmmvG8Qhd9enjWMFj8g7CK6gxS2OHmMh5eWrE,32054
|
|
298
|
+
umap/static/umap/locale/fr.json,sha256=3VEhNr0xK1h1exjuRsPBaer2v1vFEzTDSgJ8aUaIEGM,31989
|
|
293
299
|
umap/static/umap/locale/gl.js,sha256=S_tOpaStQnIiePrDjeHv4D0C_kMPOGwybSkZBFRlMoU,30352
|
|
294
300
|
umap/static/umap/locale/gl.json,sha256=zjwwxAoUuAoVLUxWVEgq6vF2wSTPhyXo8o8jRkmhlR0,30287
|
|
295
301
|
umap/static/umap/locale/he.js,sha256=83gdwuY4hc9JszplHauOvOHx5ExtUNpCvmDtvUTPn8w,32387
|
|
@@ -319,12 +325,12 @@ umap/static/umap/locale/no.json,sha256=65cxYi8Nsu-1xk8H90XouO_I-Is9mfTt3C9eyRr2w
|
|
|
319
325
|
umap/static/umap/locale/pl.js,sha256=r0niZyhE0SAR8EVde2UkeCZ0i9db0lHGApVgyFY_R8k,30577
|
|
320
326
|
umap/static/umap/locale/pl.json,sha256=yDQf2pk_XQuAzd7aHsAAjIH8cR_P7LEPmolakFRvrAk,30512
|
|
321
327
|
umap/static/umap/locale/pl_PL.json,sha256=os9weOA3tdpKUHR1vjggDbsaeybpqBbU5Knr6v-LTfQ,28862
|
|
322
|
-
umap/static/umap/locale/pt.js,sha256=
|
|
323
|
-
umap/static/umap/locale/pt.json,sha256=
|
|
328
|
+
umap/static/umap/locale/pt.js,sha256=yCPymd4di-71wRLYq_COrU3Nubczzw3hHv6ASdyiq_4,31634
|
|
329
|
+
umap/static/umap/locale/pt.json,sha256=RI9i1UgoU6wN8BA6BY2ZZDz3vTs_doL_QBCde2RGQDY,31569
|
|
324
330
|
umap/static/umap/locale/pt_BR.js,sha256=5XoKtlkpJVVADBvEMU0hDA6FchXChvGHfJ8Oyd1rPQc,30318
|
|
325
331
|
umap/static/umap/locale/pt_BR.json,sha256=kBLmLavnqF1PS8n2S513aKdgTiBxVMJxaWlHzYzCoo4,30247
|
|
326
|
-
umap/static/umap/locale/pt_PT.js,sha256=
|
|
327
|
-
umap/static/umap/locale/pt_PT.json,sha256=
|
|
332
|
+
umap/static/umap/locale/pt_PT.js,sha256=74a2WIO0WBhthmM6baXVSohFl_b7Dzg-qGE8oO_mrBw,31664
|
|
333
|
+
umap/static/umap/locale/pt_PT.json,sha256=u_Ux766yU76sPtqemSS9volB4l4qvcJYKNxM9rPbIWA,31593
|
|
328
334
|
umap/static/umap/locale/ro.js,sha256=dEg8AYChxP6RHW3j5TLt8h-FfpVSoR4tbQPu3CrvZVg,28956
|
|
329
335
|
umap/static/umap/locale/ro.json,sha256=FHaUrCx2jdOKPElNz1-VjMK7aVybDymHc_efgfTPSeE,28891
|
|
330
336
|
umap/static/umap/locale/ru.js,sha256=y7YI07Ih3pmprFW8si2B1Q_4GMtXIYmThdmkXGRFuiE,36236
|
|
@@ -339,8 +345,8 @@ umap/static/umap/locale/sr.js,sha256=eRKmXqscQmkeRQKpof1Nav0B3vVVICZY5ilBa0C_ABo
|
|
|
339
345
|
umap/static/umap/locale/sr.json,sha256=22IReHgXmtFyV8I9SkchbRNFZriaHa4akJUu7CwKox4,32924
|
|
340
346
|
umap/static/umap/locale/sv.js,sha256=-9zd65NrsxODsDCRlc7WahqjAGHxBP_DLwnFb58W2Vk,29982
|
|
341
347
|
umap/static/umap/locale/sv.json,sha256=nzRKs6mc-jwF86rD_Th-Wwr-nXtAATPxvXMuW2QBYzs,29917
|
|
342
|
-
umap/static/umap/locale/th_TH.js,sha256=
|
|
343
|
-
umap/static/umap/locale/th_TH.json,sha256=
|
|
348
|
+
umap/static/umap/locale/th_TH.js,sha256=eRe-xUPW0kvXyqAXolniPQKV4pibKQusyYEL4Zhsw5I,30011
|
|
349
|
+
umap/static/umap/locale/th_TH.json,sha256=kGmECZKBPt9uIcQa7YNNGKJDrg15FQ08SMeASuxhDhw,29940
|
|
344
350
|
umap/static/umap/locale/tr.js,sha256=REgtgeeNSqpcf3T1JB0IYuDHaL-oxcrM_vVPqrhnNus,30522
|
|
345
351
|
umap/static/umap/locale/tr.json,sha256=ztaGlDfHYklIWBeViRjLBLQxkQKIK8FhlWHvj7Bnfjw,30457
|
|
346
352
|
umap/static/umap/locale/uk_UA.js,sha256=5Fs6PuNUwOxOvCNkBFjIwm551XMqf7xicRxwUnX5zwc,35874
|
|
@@ -361,17 +367,16 @@ umap/static/umap/test/Map.js,sha256=LWCyIKxgUXBM61i3QIPkDubTXGlRhy6N2NdlAnaM_mQ,
|
|
|
361
367
|
umap/static/umap/test/Marker.js,sha256=pzMBY-l1xD35OgVCd2FNxEDrBMAhafAyZPAFsV2Gd34,4111
|
|
362
368
|
umap/static/umap/test/Polygon.js,sha256=Jrflfe76wmfu8_E3bDLMGG11w-iUmrgL9Oiv4CcCsb8,2320
|
|
363
369
|
umap/static/umap/test/Polyline.js,sha256=5VxRW-b6bnNgyIzDsHM6g5lPci-Td1wY5VPg_umpId0,9374
|
|
364
|
-
umap/static/umap/test/TableEditor.js,sha256=EJyIp90_tKb4aR3jNn2aRmmnbOLixTCUDouYxBRZAIE,3150
|
|
365
370
|
umap/static/umap/test/Util.js,sha256=KBsOQN_E4Y5N8VSDNP5fLdUrvOh7G3pewrkRKq547VQ,1096
|
|
366
371
|
umap/static/umap/test/_pre.js,sha256=O3qaQf-M2SLQ6c7AGIrRwdPm3iULiSTt-KkmAIQnAGg,12960
|
|
367
372
|
umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH4qA,6616
|
|
368
373
|
umap/static/umap/unittests/URLs.js,sha256=EqXPGohwNiEtJWk1QY2KgPaIwd0iP56nYvn05ufsZ-g,1878
|
|
369
374
|
umap/static/umap/unittests/sync.js,sha256=A5JyhiEMSzjWqWtubyDcLfcthsFLvfUuKKn1Lcv0ZnA,3098
|
|
370
|
-
umap/static/umap/unittests/utils.js,sha256=
|
|
375
|
+
umap/static/umap/unittests/utils.js,sha256=BLsT1C2ZfauTB1jHKklTEOsRNUFcdiTNxz3dPyfK9SY,24033
|
|
371
376
|
umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=FebyRte_vQrD_CLC8Xjc2cI_bR694S6hDSIu26tDnZ8,24622
|
|
372
377
|
umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css,sha256=_pRTmdgpDxfu1Oxb7DnP_DTdA44G-k3kf0otWP8gEnc,990
|
|
373
378
|
umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js,sha256=I3zyDVArt4ZrRcCzTUp6OiNmD5KuDsZCvhG-yZt8lhE,8994
|
|
374
|
-
umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=
|
|
379
|
+
umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=Cb88gwY7oibx7WL1Y3bfxc_Cur6yo62nLGaEmzP7Fbw,15530
|
|
375
380
|
umap/static/umap/vendors/dompurify/purify.es.js,sha256=TScM8DATZbXGCLOVBYhpfX4gbnKRCAlt53htdqS9umc,63951
|
|
376
381
|
umap/static/umap/vendors/dompurify/purify.es.mjs.map,sha256=7KkvHp3X9QVutUAQnlG8iCMV4jJeHRsggC4yBoO2dTk,123294
|
|
377
382
|
umap/static/umap/vendors/editable/Leaflet.Editable.js,sha256=Mx8aiCT4w9DBEUBJiX5eq9Ocy-6E3C9wLAik-dgOLY4,74768
|
|
@@ -396,11 +401,7 @@ umap/static/umap/vendors/iconlayers/iconLayers.js,sha256=VcHNxU0KrRKk8fQ_biK4GNZ
|
|
|
396
401
|
umap/static/umap/vendors/iconlayers/transparent-pixel.png,sha256=wmsrONlpwU7Z-Y-1QYMxjQg-h-BumQw4A89vuT55IYg,2792
|
|
397
402
|
umap/static/umap/vendors/leaflet/leaflet-src.esm.js,sha256=Oe6TRk8R_jhHE35QwNyBifcGxGDjaYnqeHG_fVQPMwY,424589
|
|
398
403
|
umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map,sha256=lxY34ye1PfsolFQ8pTsEtlgBJ4tW7panCBRsm35HNbs,866200
|
|
399
|
-
umap/static/umap/vendors/leaflet/leaflet-src.js,sha256=tPonvXioSHRQt1-4ztWR5mz_1KG1X3yHNzVXprP2gLo,450229
|
|
400
|
-
umap/static/umap/vendors/leaflet/leaflet-src.js.map,sha256=l7cBxd_w6YZOXEWKixXC7DN4ejJsXed7kI-eoTvi1Wo,866292
|
|
401
404
|
umap/static/umap/vendors/leaflet/leaflet.css,sha256=p4NxAoJBhIIN-hmNHrzRCf9tD_miZyoHS5obTRR9BMY,14806
|
|
402
|
-
umap/static/umap/vendors/leaflet/leaflet.js,sha256=20nQCchB9co0qIjJZRGuk2_Z9VM-kNiyxNV1lvTlZBo,147552
|
|
403
|
-
umap/static/umap/vendors/leaflet/leaflet.js.map,sha256=YAoQ3FzREN4GmVENMir8vgHHypC0xfSK3CAxTHCqx1M,225544
|
|
404
405
|
umap/static/umap/vendors/leaflet/images/layers-2x.png,sha256=Bm2sqFDY_77wB68AsG6sABVyje4nnFHzy2xxbffELt8,1259
|
|
405
406
|
umap/static/umap/vendors/leaflet/images/layers.png,sha256=Hbvp0CjikvNvy6j4s6KNXokydU_CIVuaxp5M3s9RB8Y,696
|
|
406
407
|
umap/static/umap/vendors/leaflet/images/marker-icon-2x.png,sha256=ABecTB7oMNOhCEEq4NKU9Vd2z-sIXGASmjmqb8SuJSg,2464
|
|
@@ -412,11 +413,8 @@ umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css,sha256=b1FUshftU
|
|
|
412
413
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map,sha256=BeirY1RltKf8DrqX4U6IEg49yGaSOS4II4CqTJ96Hi8,371
|
|
413
414
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js,sha256=jVdNHjjOOJMoykxLOdGxOUzGJDlmr8MM6sFF--b1_sI,12701
|
|
414
415
|
umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map,sha256=JY9YqG-jXWMRHF4pJcvdjB5hyLq7V8MpsaqhnX7p5tE,15802
|
|
415
|
-
umap/static/umap/vendors/markercluster/MarkerCluster.Default.css,sha256=
|
|
416
|
+
umap/static/umap/vendors/markercluster/MarkerCluster.Default.css,sha256=pZS52JI0ds7GG1j68xyykQLcMP_Yatd-Wj9FITpzcm0,1288
|
|
416
417
|
umap/static/umap/vendors/markercluster/MarkerCluster.css,sha256=YU3qCpj_P06tdPBJGPax0bm6Q1wltfwjsho5TR4-TYc,872
|
|
417
|
-
umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt,sha256=-Wux2JFNrEKPToFsslHRUJHV73yJt1-tCo-GMwl3LYI,313
|
|
418
|
-
umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js,sha256=aDdRNljhiyY0m2L86wQeqRfaekllCRM-3DmrzI8XPIw,81160
|
|
419
|
-
umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map,sha256=4REbqTEKzInkVqawqZ6BqI8Zcf8tWUzFKcjk9Uw-nK4,164874
|
|
420
418
|
umap/static/umap/vendors/markercluster/leaflet.markercluster.js,sha256=Hk4dIpcqOSb0hZjgyvFOP-cEmDXUKKNE_tT542ZbNQg,34136
|
|
421
419
|
umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map,sha256=p2sESsX-2ysbKhEAYIPZFpVglwMWjQNxLkswXIuv2K8,41953
|
|
422
420
|
umap/static/umap/vendors/measurable/Leaflet.Measurable.css,sha256=w33CMvSXTRFTOBfa4Zp2IqjZKbNh3zYiTQWJSEpy0ec,937
|
|
@@ -433,63 +431,69 @@ umap/static/umap/vendors/togeojson/togeojson.es.js,sha256=3ahjSicOyuiPMyXmBClO89
|
|
|
433
431
|
umap/static/umap/vendors/togeojson/togeojson.es.mjs.map,sha256=NBjflNKJL_uGfiPrRRja6IoswUQ2_kaNk3iV64WY2Uo,75780
|
|
434
432
|
umap/static/umap/vendors/tokml/tokml.es.js,sha256=BqL0WqFH5UZAh_S_265E6PWZjPMYxeGNFgAgywM4Aeo,23457
|
|
435
433
|
umap/static/umap/vendors/tokml/tokml.es.mjs.map,sha256=vw5JxZFh_2_xM1cHI51r1Bf48JaBKzNcR7ddgaaF8KY,45844
|
|
436
|
-
umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css,sha256=Q1PL4YzNw38EZdT4kmrE1oEhPm0rWuYus4GeQz6aLNA,2890
|
|
437
|
-
umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js,sha256=2LldNgRnLNkn62qw9bxW18O1Lkp3Hm8d6BNoLk3HQZ0,9060
|
|
438
434
|
umap/static/umap/vendors/toolbar/leaflet.toolbar.css,sha256=5KVBOQ0ivsFuafKYvVm32wJ_fi7w8Li1-2Rwwcv85jA,2244
|
|
439
435
|
umap/static/umap/vendors/toolbar/leaflet.toolbar.js,sha256=HXh_bR49ZFpJ-GNXDNo2eHy-fJmrWehAzUeHgGhu__c,5326
|
|
440
|
-
umap/templates/404.html,sha256=
|
|
441
|
-
umap/templates/500.html,sha256=
|
|
442
|
-
umap/templates/base.html,sha256=
|
|
443
|
-
umap/templates/auth/user_detail.html,sha256=
|
|
444
|
-
umap/templates/auth/user_form.html,sha256=
|
|
445
|
-
umap/templates/auth/user_stars.html,sha256=
|
|
446
|
-
umap/templates/registration/login.html,sha256=
|
|
447
|
-
umap/templates/umap/about.html,sha256=
|
|
448
|
-
umap/templates/umap/about_summary.html,sha256=
|
|
436
|
+
umap/templates/404.html,sha256=1yLlD8rSF_9cfjm5FYy--P46HLVbHeFkJiW9nRzM--E,399
|
|
437
|
+
umap/templates/500.html,sha256=Z8x47OVfYXquAYAlmRB0EJVTCiCaBppFFiFEmoYsMYY,5202
|
|
438
|
+
umap/templates/base.html,sha256=_Q0Ikwese3vlUl0pKQdzHDy_oRT9OV4uWh0RGFaYAQA,1499
|
|
439
|
+
umap/templates/auth/user_detail.html,sha256=ud6AnM2ZK9WN8SuAnmKhZlGN0Wbi-GOzy09hoPfL04I,525
|
|
440
|
+
umap/templates/auth/user_form.html,sha256=h9NZi9KIC_5jkvj5KAsxX5CdiYCrQ2lrl9qpr5ObPcg,1730
|
|
441
|
+
umap/templates/auth/user_stars.html,sha256=LAGZU50ki2SCqZ0o_NBfN7T2RDl-L_1EGLixu5OH4AY,545
|
|
442
|
+
umap/templates/registration/login.html,sha256=2T5LwkFlkR_1ED3nVIjeuGp-EJXTuFPnOVXKh8F0FRc,1833
|
|
443
|
+
umap/templates/umap/about.html,sha256=0QXMyUF9SygPxak-FK_YpKgRRPMD_EZEIAHkLXsUH7E,128
|
|
444
|
+
umap/templates/umap/about_summary.html,sha256=5pvCvX34YHk_XCtZfcRSznvRwi_-UJMioD9Nzn6TKh0,2349
|
|
449
445
|
umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
|
|
450
|
-
umap/templates/umap/content.html,sha256=
|
|
451
|
-
umap/templates/umap/content_footer.html,sha256=
|
|
452
|
-
umap/templates/umap/css.html,sha256=
|
|
446
|
+
umap/templates/umap/content.html,sha256=KfNQ18LcbxFd00tHQeirGy5Vh75qQNM6pj0bQbcy4Bo,2246
|
|
447
|
+
umap/templates/umap/content_footer.html,sha256=lOCtMj8RZzeDtHNebJ6q-xKuiqV5sGxvewZ9h6rXUfg,1132
|
|
448
|
+
umap/templates/umap/css.html,sha256=j1oNsuz8g1Fc9rLGhIby9ngQpQYq42uYYn7Q_965aQk,2175
|
|
449
|
+
umap/templates/umap/dashboard_menu.html,sha256=hwZQL2fsZruw2s_yA-NW5t_IP2bdpc4n4ksXIRvBROw,631
|
|
453
450
|
umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
454
451
|
umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
455
|
-
umap/templates/umap/home.html,sha256=
|
|
456
|
-
umap/templates/umap/js.html,sha256=
|
|
452
|
+
umap/templates/umap/home.html,sha256=021I4eVLjMWvhsIqo2k2FADXla2c4UClAJ1uy9R5KVI,839
|
|
453
|
+
umap/templates/umap/js.html,sha256=BbWAsL6UgGx4tGkxkaGgyBRBxDQO327qWEWTp-H4J74,2763
|
|
457
454
|
umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
|
|
458
|
-
umap/templates/umap/login_popup_end.html,sha256=
|
|
459
|
-
umap/templates/umap/map_detail.html,sha256=
|
|
460
|
-
umap/templates/umap/map_fragment.html,sha256=
|
|
461
|
-
umap/templates/umap/map_init.html,sha256=
|
|
462
|
-
umap/templates/umap/map_list.html,sha256
|
|
463
|
-
umap/templates/umap/map_table.html,sha256=
|
|
464
|
-
umap/templates/umap/messages.html,sha256=
|
|
465
|
-
umap/templates/umap/navigation.html,sha256=
|
|
466
|
-
umap/templates/umap/password_change.html,sha256=
|
|
467
|
-
umap/templates/umap/password_change_done.html,sha256=
|
|
468
|
-
umap/templates/umap/search.html,sha256=
|
|
469
|
-
umap/templates/umap/search_bar.html,sha256=
|
|
455
|
+
umap/templates/umap/login_popup_end.html,sha256=kcENvhycpVvvIzbNasX1rcSI_67A6pttkWCxy0vHC8g,693
|
|
456
|
+
umap/templates/umap/map_detail.html,sha256=QBotZCdYGNv6aKgwkcX2sdanw8FXZLlMux49vV8dWAU,1165
|
|
457
|
+
umap/templates/umap/map_fragment.html,sha256=ZRIA3W2tuIecv2LtxyKNSW4k7PmCxRlFmI6TIKC1EV8,152
|
|
458
|
+
umap/templates/umap/map_init.html,sha256=mglKMOvxRbe9qhO8SYsK0q3xcPcqEdSepo1sszxmDrE,290
|
|
459
|
+
umap/templates/umap/map_list.html,sha256=-65808tpXkbfOB9aYU-4ygSjAoVR7Tk2EuFRvI_DFEQ,627
|
|
460
|
+
umap/templates/umap/map_table.html,sha256=WrH86ybY_GzzRmALfON_oni9aFuIswgOtpTSJ5h8SEY,5778
|
|
461
|
+
umap/templates/umap/messages.html,sha256=liEsg-I26XHb0FOBAbzFsZl2RfNQtGt-HKoE6jHefbI,190
|
|
462
|
+
umap/templates/umap/navigation.html,sha256=gUhdTQOfbMHp1QwnzQYcn3CqQ0RqWUjlDFdT92MerO4,1261
|
|
463
|
+
umap/templates/umap/password_change.html,sha256=YOXyq1Y0LRCi73el2kktrQhhlnWVdzWy98u20giOPrE,968
|
|
464
|
+
umap/templates/umap/password_change_done.html,sha256=Ce9RVsyZ4hjYy60lJiubfGGzgCY8881nWRWFzMwoS50,282
|
|
465
|
+
umap/templates/umap/search.html,sha256=KcTKZAUODg_JdYM2C0h0__yGpbZ25zyvaqJGfnMO6KQ,980
|
|
466
|
+
umap/templates/umap/search_bar.html,sha256=V9p1D9HFAjQ0ewJ77Uw_znYNpqaOLN1nSqnSWbQ3PDU,613
|
|
470
467
|
umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X_CI,3
|
|
471
|
-
umap/templates/umap/
|
|
472
|
-
umap/templates/umap/
|
|
468
|
+
umap/templates/umap/team_confirm_delete.html,sha256=D4EKfuzVjAexHKPHRsSHpjuAjMNl0iCPtaW2NEGUk2A,448
|
|
469
|
+
umap/templates/umap/team_detail.html,sha256=4gd8YjvVqGysXNJtzAaZwOpBAADLzJ_ekFRPQp1sHYM,699
|
|
470
|
+
umap/templates/umap/team_form.html,sha256=yG_zxmJfEwLC5Mof-4SHYcx6lfkOjbGVusQGT7iqSNs,1922
|
|
471
|
+
umap/templates/umap/user_dashboard.html,sha256=pc_5pTzAIW4ggZUl2R6aIKB3cdVFTodBtkLjqztI7W8,2478
|
|
472
|
+
umap/templates/umap/user_teams.html,sha256=MfelqIwoLRVjvX-KpVtwqh0I7pNx3oDRhqmSRdpT4bs,1570
|
|
473
|
+
umap/templates/umap/components/alerts/alert.html,sha256=eQRALES_PzIP3qs16eXq9SGz2KWODr4VY0tyl_hARCw,3482
|
|
473
474
|
umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
474
475
|
umap/templatetags/umap_tags.py,sha256=oMXsa80LFM52EcLnF6A_o4_PdvOncLBf33pexaeL8nw,1773
|
|
475
476
|
umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
476
|
-
umap/tests/base.py,sha256=
|
|
477
|
-
umap/tests/conftest.py,sha256=
|
|
477
|
+
umap/tests/base.py,sha256=VsyFT-cqXEL0scSI69WKUdItfagqOZ3t2omINyVpb1M,4471
|
|
478
|
+
umap/tests/conftest.py,sha256=IBjTc6bJVB77C83XJ-vhpUTmTbvyTCUi9p5AHqp-8OY,1570
|
|
478
479
|
umap/tests/settings.py,sha256=tY70LMFXyo_WijswqGyeWai7vBzM62k7IA8pkkbc9y4,816
|
|
479
|
-
umap/tests/test_datalayer.py,sha256=
|
|
480
|
-
umap/tests/test_datalayer_views.py,sha256=
|
|
480
|
+
umap/tests/test_datalayer.py,sha256=lonCoyOH8KVKbq8jjz0jZMfSydaOYthRgQfdQy4qY4M,7561
|
|
481
|
+
umap/tests/test_datalayer_views.py,sha256=oq1azMk0IUgf688a41VJHZO4In7On3Nb72x3wwP_ZVQ,22105
|
|
481
482
|
umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
|
|
482
|
-
umap/tests/test_map.py,sha256=
|
|
483
|
-
umap/tests/test_map_views.py,sha256=
|
|
483
|
+
umap/tests/test_map.py,sha256=8jqB5UDHBedMWugEw8dT57vqtziLIdoK-XFku4WVpNo,4464
|
|
484
|
+
umap/tests/test_map_views.py,sha256=1bd8vqVq3hYQ4m00klMi6Blxcy2dGKzHKRAxx85vfHk,31898
|
|
484
485
|
umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
|
|
486
|
+
umap/tests/test_statics.py,sha256=WJe4DZ-cSfN_wCRD8U9ocl6v5FoXrVwBjU6kI6BOcmY,1252
|
|
487
|
+
umap/tests/test_team_views.py,sha256=vExhJ3c1cJ7vgxe0G20UzTKkzR5D2UgAapk09muUg5w,4481
|
|
485
488
|
umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
|
|
486
489
|
umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
|
|
487
|
-
umap/tests/test_views.py,sha256=
|
|
490
|
+
umap/tests/test_views.py,sha256=_zc48oUJ4iz6wZZmjE23RcNqaB17m4Rs5LBYEtrEGlM,16805
|
|
488
491
|
umap/tests/fixtures/categorized_highway.geojson,sha256=p7QHOd8nXi7yVq37gY6Ca8BXkjaLnDxW9Fq0Zcm3Fk4,15830
|
|
489
492
|
umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
|
|
490
493
|
umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
|
|
491
494
|
umap/tests/fixtures/display_on_load.umap,sha256=eo4ecB3QUeCVu1u7COp7mZ8sCPkf2j4gGERE7N1v8GU,1845
|
|
492
495
|
umap/tests/fixtures/star.svg,sha256=zIi-j16L1Fzxtqz2rV2NDDm1NDHBWQfM5O6MIeoxgEU,256
|
|
496
|
+
umap/tests/fixtures/test_circles_layer.geojson,sha256=8S_zh4MA-5qqm43ETKfGz0hw84vuN2cXB1vTz9Syu3k,6454
|
|
493
497
|
umap/tests/fixtures/test_import_osm_relation.json,sha256=SjZFqZ-qnxcrUnVkb43jI9iMBF8Il3-OPqxh62nNH9o,4249
|
|
494
498
|
umap/tests/fixtures/test_upload_data.csv,sha256=KZOO-DcXhdTgx2FrIYZz_ZNZAKOp8zpN_jCyfDw3PcQ,186
|
|
495
499
|
umap/tests/fixtures/test_upload_data.gpx,sha256=sIfeKEGxYikzg121qBdkBIVTFpuYh8q2-yWZOZwbu38,674
|
|
@@ -498,48 +502,51 @@ umap/tests/fixtures/test_upload_data.kml,sha256=t66ms8oNI3999bhRJx01mn-UuHeqWoVY
|
|
|
498
502
|
umap/tests/fixtures/test_upload_data.umap,sha256=WUmcwcQ4o5_rYw0SOqjnszbk2TOzfynrK3psyApSWsk,5463
|
|
499
503
|
umap/tests/fixtures/test_upload_data_osm.json,sha256=ekOwBHdp7qHQ-JUGlb-kGUXcVepdMsBqr7k51pVaCbA,916
|
|
500
504
|
umap/tests/fixtures/test_upload_empty_coordinates.json,sha256=-mJ_1orzUAROfE4PXchHXyqxjS-q4tDfvEFPllJiHFU,786
|
|
505
|
+
umap/tests/fixtures/test_upload_georss.xml,sha256=lfmVA0qGDakCG48jjsLmSIE1U6iZ9yyFuqqX6Srt8Js,1160
|
|
501
506
|
umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5UZ1LbAJCCKnJea0qEFAI,4566
|
|
502
507
|
umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIxU7WL1llnAmEVJwCWla6XOds,1525
|
|
503
508
|
umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
|
|
504
|
-
umap/tests/integration/conftest.py,sha256=
|
|
505
|
-
umap/tests/integration/
|
|
506
|
-
umap/tests/integration/
|
|
509
|
+
umap/tests/integration/conftest.py,sha256=bo-ndi3ARHnkwRGo8fGi6lqTd_LdXWSOpgNyXEMcO0I,2436
|
|
510
|
+
umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
|
|
511
|
+
umap/tests/integration/test_anonymous_owned_map.py,sha256=nsj9VNJ-uP8gToR-eYxBipE20s3DACfQaddpmvwqUBs,10606
|
|
512
|
+
umap/tests/integration/test_basics.py,sha256=_XC0ojQU_HpBvkIPSt1g_rW1B0vjmAko8FSJ7WOD67M,3760
|
|
507
513
|
umap/tests/integration/test_browser.py,sha256=Vzzqv7i_fH73dKz0qIsyhdKMJRCfnEbwmCGlcFt2D7M,16992
|
|
508
|
-
umap/tests/integration/test_caption.py,sha256=
|
|
514
|
+
umap/tests/integration/test_caption.py,sha256=UykDB2WpyFl0sbXGrSJ1IAJTM0PzYajPyz-XWaqUBws,1795
|
|
509
515
|
umap/tests/integration/test_categorized_layer.py,sha256=1MJopDBMLUd_NN2NVqWoePuNPS42RbNlXOwXeyKdZo8,5586
|
|
510
516
|
umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
|
|
517
|
+
umap/tests/integration/test_circles_layer.py,sha256=7kBqDyvPHbK31LQLU5NVP8mxNqV-Rn7LnzwyDmg801I,1868
|
|
511
518
|
umap/tests/integration/test_conditional_rules.py,sha256=ZDhp93tzJ7y9kXYPMY-5fI-Tp0dFZ4OTKBX8JHkqU4A,8490
|
|
512
519
|
umap/tests/integration/test_dashboard.py,sha256=OmqZx6NwtTnPj1-HsYyg5WptcmPpSq5pL01VtxZuuzk,1526
|
|
513
520
|
umap/tests/integration/test_datalayer.py,sha256=39ceMKkvwaE-TOh6GH1q0YwnYOSMEyQA4Ao0XSXR0nI,5471
|
|
514
|
-
umap/tests/integration/test_draw_polygon.py,sha256=
|
|
515
|
-
umap/tests/integration/test_draw_polyline.py,sha256=
|
|
516
|
-
umap/tests/integration/test_edit_datalayer.py,sha256=
|
|
521
|
+
umap/tests/integration/test_draw_polygon.py,sha256=_JRJzzDVINl5vzTZT1mGygjVR4xieRl1Rvj6l39p5so,17481
|
|
522
|
+
umap/tests/integration/test_draw_polyline.py,sha256=NxoY-Sf56Kyu-AuX-1sO9xCuS5InK9NdEuUZ2EMklTg,12453
|
|
523
|
+
umap/tests/integration/test_edit_datalayer.py,sha256=aqu8vqXkHaFdsT2peK_x6Wbrz98JH2PiDrKKVKrGU5c,9511
|
|
517
524
|
umap/tests/integration/test_edit_map.py,sha256=cIJWelF1DWIUjqEyyb7NyaDLU8cQ0LGo-WfUEUx_5-A,7111
|
|
518
525
|
umap/tests/integration/test_edit_marker.py,sha256=1MpA1mjdtVx2HuFkVSYZojBoGJ0fhK_JBGDsv5v6rUE,4736
|
|
519
526
|
umap/tests/integration/test_edit_polygon.py,sha256=JeIW6NcBltIl958uJ_T-0dRCT5gOo9JrNtULvg7nxf4,5286
|
|
520
527
|
umap/tests/integration/test_export_map.py,sha256=jH0BXm-7Ov26OEkve9-xKMfRwXwR73zRrZLIQusyUOY,12112
|
|
521
528
|
umap/tests/integration/test_facets_browser.py,sha256=bsEpb4tXZtxF3tdmSZ0tGrOIIEhd1KSbmDQruuUQFic,10622
|
|
522
529
|
umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
|
|
523
|
-
umap/tests/integration/test_import.py,sha256=
|
|
530
|
+
umap/tests/integration/test_import.py,sha256=bBOPbILk1rSswEFA4--Nk34i5scBNMSDz6ZkgWVJy2k,26461
|
|
524
531
|
umap/tests/integration/test_map.py,sha256=WH_vNCsFTnfEKNyt9OHfpXa3BMS1fh1cqvSLSb_Nxtk,8726
|
|
525
532
|
umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
|
|
526
533
|
umap/tests/integration/test_map_preview.py,sha256=kP0vkEiUN7EJNCvZgNeUAzrrXfgwpU0S2UnmOBV4P5A,3540
|
|
527
534
|
umap/tests/integration/test_optimistic_merge.py,sha256=HK-RYWyqvkUw3ibnONzb3HNMsvj9RLDXnf0vJlWkv6g,10948
|
|
528
|
-
umap/tests/integration/test_owned_map.py,sha256=
|
|
535
|
+
umap/tests/integration/test_owned_map.py,sha256=lzdHaN9HTQ-bd_MJT1tOVVALRxq1UqNiVWWhAzp-caI,10374
|
|
529
536
|
umap/tests/integration/test_picto.py,sha256=Ey9V-NTQ64cIEtdXWzjhlBEykmTiGk7jUxKN1oA6n_g,9040
|
|
530
537
|
umap/tests/integration/test_querystring.py,sha256=Q9W1TOr5I-FkqIlDGXah9vs7GW-MTYdGNWkSb-uyUd4,2466
|
|
531
538
|
umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
|
|
532
539
|
umap/tests/integration/test_slideshow.py,sha256=yhy75YYpfTKpkGK7xGjJDJoqHtN6p2LG-O4krVE1Yks,1907
|
|
533
540
|
umap/tests/integration/test_star.py,sha256=icB5SbFbXe4KYp3DIJ0xAwCrSQS2rweqIaQTAng3CfY,842
|
|
534
|
-
umap/tests/integration/test_statics.py,sha256=BuScxhKTXclLzKEZYTatzPnh9rKrY2FsqgdT3vVLwqc,1521
|
|
535
541
|
umap/tests/integration/test_tableeditor.py,sha256=C2s06rTnzbs_ULxfsyPVq4UkfpnuRxCvqsK2zaEYfa0,7838
|
|
536
|
-
umap/tests/integration/
|
|
537
|
-
umap/tests/integration/
|
|
542
|
+
umap/tests/integration/test_team.py,sha256=LVuj5Dhz27cqk6ieEbukGsdy9J2FP5aQmcMex_xevIg,1594
|
|
543
|
+
umap/tests/integration/test_tilelayer.py,sha256=rBI3bm4hCpH87rcFvuc5H8yu1D9FQBZMNbqqJzpdI24,5302
|
|
544
|
+
umap/tests/integration/test_view_marker.py,sha256=sPZBbX5jF8WkbAl3Q9eta7a80E2rPXOaH-R26Myf6I0,4003
|
|
538
545
|
umap/tests/integration/test_view_polygon.py,sha256=I7wR6DUrictIMrCPKajCrruJVLry4ZRDdjSs8q0XaOg,1829
|
|
539
546
|
umap/tests/integration/test_view_polyline.py,sha256=n1QVIdl-Xg9yN9o-Jc6VnPhFAuUspsgY0odiUe_jJC4,1598
|
|
540
|
-
umap/tests/integration/test_websocket_sync.py,sha256=
|
|
541
|
-
umap_project-2.
|
|
542
|
-
umap_project-2.
|
|
543
|
-
umap_project-2.
|
|
544
|
-
umap_project-2.
|
|
545
|
-
umap_project-2.
|
|
547
|
+
umap/tests/integration/test_websocket_sync.py,sha256=sdMjvZsCImhceQiFvSBHKo4dR6HJPl7-D0NItl2QsNU,10530
|
|
548
|
+
umap_project-2.6.0b0.dist-info/METADATA,sha256=BU6JcxatGJwbvWfxqhxm040IhmRB8a2pGMtmzuHKJyY,2677
|
|
549
|
+
umap_project-2.6.0b0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
|
550
|
+
umap_project-2.6.0b0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
551
|
+
umap_project-2.6.0b0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
552
|
+
umap_project-2.6.0b0.dist-info/RECORD,,
|