umap-project 2.8.2__py3-none-any.whl → 2.9.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/asgi.py +12 -7
- umap/context_processors.py +1 -0
- umap/locale/en/LC_MESSAGES/django.po +102 -59
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +105 -61
- umap/management/commands/empty_trash.py +12 -1
- umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
- umap/models.py +23 -3
- umap/settings/base.py +4 -1
- umap/static/umap/base.css +1 -1
- umap/static/umap/content.css +2 -22
- umap/static/umap/css/bar.css +7 -10
- umap/static/umap/css/form.css +28 -29
- umap/static/umap/css/icon.css +8 -2
- umap/static/umap/css/panel.css +2 -1
- umap/static/umap/css/tooltip.css +33 -31
- umap/static/umap/img/16-white.svg +2 -0
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/providers/bitbucket.png +0 -0
- umap/static/umap/img/providers/github.png +0 -0
- umap/static/umap/img/providers/keycloak.png +0 -0
- umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
- umap/static/umap/img/providers/twitter-oauth2.png +0 -0
- umap/static/umap/img/source/16-white.svg +3 -1
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.js +4 -1
- umap/static/umap/js/modules/browser.js +6 -6
- umap/static/umap/js/modules/caption.js +30 -7
- umap/static/umap/js/modules/data/features.js +21 -24
- umap/static/umap/js/modules/data/layer.js +71 -33
- umap/static/umap/js/modules/form/builder.js +241 -0
- umap/static/umap/js/modules/form/fields.js +1338 -0
- umap/static/umap/js/modules/formatter.js +5 -8
- umap/static/umap/js/modules/help.js +3 -1
- umap/static/umap/js/modules/importer.js +1 -1
- umap/static/umap/js/modules/permissions.js +5 -4
- umap/static/umap/js/modules/rendering/icon.js +5 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +11 -7
- umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
- umap/static/umap/js/modules/rendering/map.js +0 -2
- umap/static/umap/js/modules/rules.js +2 -1
- umap/static/umap/js/modules/schema.js +5 -6
- umap/static/umap/js/modules/share.js +3 -3
- umap/static/umap/js/modules/sync/engine.js +18 -13
- umap/static/umap/js/modules/sync/updaters.js +8 -0
- umap/static/umap/js/modules/sync/websocket.js +10 -5
- umap/static/umap/js/modules/tableeditor.js +3 -2
- umap/static/umap/js/modules/ui/bar.js +17 -9
- umap/static/umap/js/modules/ui/base.js +7 -24
- umap/static/umap/js/modules/ui/tooltip.js +19 -11
- umap/static/umap/js/modules/umap.js +36 -24
- umap/static/umap/js/modules/utils.js +196 -12
- umap/static/umap/js/umap.controls.js +0 -12
- umap/static/umap/locale/br.js +21 -13
- umap/static/umap/locale/br.json +21 -13
- umap/static/umap/locale/ca.js +12 -4
- umap/static/umap/locale/ca.json +12 -4
- umap/static/umap/locale/cs_CZ.js +10 -4
- umap/static/umap/locale/cs_CZ.json +10 -4
- umap/static/umap/locale/de.js +12 -4
- umap/static/umap/locale/de.json +12 -4
- umap/static/umap/locale/el.js +12 -4
- umap/static/umap/locale/el.json +12 -4
- umap/static/umap/locale/en.js +9 -4
- umap/static/umap/locale/en.json +9 -4
- umap/static/umap/locale/es.js +20 -12
- umap/static/umap/locale/es.json +20 -12
- umap/static/umap/locale/eu.js +12 -4
- umap/static/umap/locale/eu.json +12 -4
- umap/static/umap/locale/fa_IR.js +12 -4
- umap/static/umap/locale/fa_IR.json +12 -4
- umap/static/umap/locale/fr.js +10 -5
- umap/static/umap/locale/fr.json +10 -5
- umap/static/umap/locale/gl.js +353 -345
- umap/static/umap/locale/gl.json +353 -345
- umap/static/umap/locale/hu.js +9 -4
- umap/static/umap/locale/hu.json +9 -4
- umap/static/umap/locale/it.js +100 -92
- umap/static/umap/locale/it.json +100 -92
- umap/static/umap/locale/ms.js +12 -4
- umap/static/umap/locale/ms.json +12 -4
- umap/static/umap/locale/nl.js +12 -4
- umap/static/umap/locale/nl.json +12 -4
- umap/static/umap/locale/pl.js +12 -4
- umap/static/umap/locale/pl.json +12 -4
- umap/static/umap/locale/pt.js +12 -4
- umap/static/umap/locale/pt.json +12 -4
- umap/static/umap/locale/pt_PT.js +12 -4
- umap/static/umap/locale/pt_PT.json +12 -4
- umap/static/umap/locale/th_TH.js +12 -4
- umap/static/umap/locale/th_TH.json +12 -4
- umap/static/umap/locale/zh_TW.js +10 -4
- umap/static/umap/locale/zh_TW.json +10 -4
- umap/static/umap/map.css +12 -8
- umap/static/umap/nav.css +2 -3
- umap/static/umap/unittests/utils.js +14 -0
- umap/static/umap/vars.css +2 -0
- umap/sync/__init__.py +0 -0
- umap/sync/app.py +181 -0
- umap/sync/payloads.py +49 -0
- umap/templates/auth/user_detail.html +4 -0
- umap/templates/auth/user_form.html +9 -6
- umap/templates/auth/user_stars.html +4 -0
- umap/templates/base.html +1 -1
- umap/templates/registration/login.html +2 -5
- umap/templates/umap/about.html +5 -0
- umap/templates/umap/about_summary.html +2 -2
- umap/templates/umap/components/provider.html +8 -0
- umap/templates/umap/js.html +0 -3
- umap/templates/umap/map_detail.html +1 -1
- umap/templates/umap/password_change.html +4 -0
- umap/templates/umap/password_change_done.html +4 -0
- umap/templates/umap/search.html +4 -0
- umap/templates/umap/team_confirm_delete.html +4 -0
- umap/templates/umap/team_detail.html +4 -0
- umap/templates/umap/team_form.html +4 -0
- umap/templates/umap/user_dashboard.html +1 -1
- umap/templates/umap/user_teams.html +4 -0
- umap/tests/base.py +3 -1
- umap/tests/integration/conftest.py +16 -23
- umap/tests/integration/test_basics.py +2 -2
- umap/tests/integration/test_caption.py +1 -0
- umap/tests/integration/test_draw_polygon.py +3 -3
- umap/tests/integration/test_edit_datalayer.py +1 -1
- umap/tests/integration/test_edit_map.py +3 -3
- umap/tests/integration/test_edit_polygon.py +1 -1
- umap/tests/integration/test_import.py +23 -1
- umap/tests/integration/test_optimistic_merge.py +1 -0
- umap/tests/integration/test_picto.py +8 -8
- umap/tests/integration/test_save.py +1 -0
- umap/tests/integration/test_star.py +13 -9
- umap/tests/integration/test_tableeditor.py +1 -0
- umap/tests/integration/test_websocket_sync.py +112 -33
- umap/tests/settings.py +2 -0
- umap/tests/test_datalayer.py +2 -3
- umap/tests/test_datalayer_views.py +20 -1
- umap/tests/test_empty_trash.py +10 -3
- umap/tests/test_map_views.py +11 -0
- umap/utils.py +24 -11
- umap/views.py +37 -6
- {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/METADATA +15 -15
- {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/RECORD +146 -145
- {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/WHEEL +1 -1
- umap/management/commands/run_websocket_server.py +0 -23
- umap/settings/local_s3.py +0 -45
- umap/static/umap/bitbucket.png +0 -0
- umap/static/umap/github.png +0 -0
- umap/static/umap/js/umap.forms.js +0 -1242
- umap/static/umap/keycloak.png +0 -0
- umap/static/umap/openstreetmap.png +0 -0
- umap/static/umap/twitter.png +0 -0
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
- umap/tests/test_websocket_server.py +0 -22
- umap/websocket_server.py +0 -202
- {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=35bD7tIMkuJmpwkGWv26jONK2ZqnUPDEexIS_1DQc-Y,20
|
|
2
2
|
umap/admin.py,sha256=LoQytPGK6pLBqZ5QgQ9DIPAxhTG31cTtHOCqO9BY5S4,2645
|
|
3
3
|
umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
|
|
4
|
-
umap/asgi.py,sha256=
|
|
4
|
+
umap/asgi.py,sha256=sJkGqDLgMoPkq2nMRyRE_Hz3ZLJm1X5lgXiQJu6rYt0,660
|
|
5
5
|
umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
|
|
6
|
-
umap/context_processors.py,sha256=
|
|
6
|
+
umap/context_processors.py,sha256=sA-RVmsuMiM_HeFYw6K8xUMXnYqd_HwJTxsbCht9Da0,662
|
|
7
7
|
umap/decorators.py,sha256=EEICH54p9swHIs_tuqt4FL-l749vk6P8AevlWFKn5zk,2477
|
|
8
8
|
umap/fields.py,sha256=c32tKWKF8aThrCXDJblwo0n9n2ET6hxBYzEupfr0B4o,900
|
|
9
9
|
umap/forms.py,sha256=fonoSwA02LawR7kXbjEZCH0ZYi53fAbRHYgW2RaqeYw,3803
|
|
10
10
|
umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
|
|
11
11
|
umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
|
|
12
|
-
umap/models.py,sha256=
|
|
12
|
+
umap/models.py,sha256=CXH7Cll8AupN9HlHrgx4rCpSaMH8Vwnwiz45cOsJSsk,18489
|
|
13
13
|
umap/urls.py,sha256=LA3zxyu-GDo8kVqdyU7_bdbDGhDJV8_yFW4oEPTXw4s,7559
|
|
14
|
-
umap/utils.py,sha256=
|
|
15
|
-
umap/views.py,sha256=
|
|
16
|
-
umap/websocket_server.py,sha256=NHyL6HYHj5Yw8GdZgdySCH34VjgWDVngM3H6VuuSrt4,6798
|
|
14
|
+
umap/utils.py,sha256=YZ2ytAEvJ6T69zFJHUPbWP5b6emWsQKCUtx3OzmKCFo,6300
|
|
15
|
+
umap/views.py,sha256=tBcs6oObSTIDDn-QSPgSLM-_dNT3smo41G9JxDBKoC8,47483
|
|
17
16
|
umap/wsgi.py,sha256=IopIgnDZbCus3XpSetTHnra9VyzWi0Y2tJo-CmfTWCY,1132
|
|
18
17
|
umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
|
|
19
18
|
umap/locale/am_ET/LC_MESSAGES/django.mo,sha256=ZF_hEGHnrIX6XZBVqmWR4xbE5D8Y6s1GS5sYOxnFQBY,5377
|
|
@@ -37,7 +36,7 @@ umap/locale/de/LC_MESSAGES/django.po,sha256=_BYgONnpBy-8A_ISpKfRXipU9OFQDoRZ1Csj
|
|
|
37
36
|
umap/locale/el/LC_MESSAGES/django.mo,sha256=Fx_PVOmINKPC2c1HQCwo8p_Sf3sHCMKfjSZ_p1HmebA,14963
|
|
38
37
|
umap/locale/el/LC_MESSAGES/django.po,sha256=vJfKPxWkugMioZSrEvPSTMRufh0HkFIN-m_h5nF94kE,22500
|
|
39
38
|
umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
|
|
40
|
-
umap/locale/en/LC_MESSAGES/django.po,sha256=
|
|
39
|
+
umap/locale/en/LC_MESSAGES/django.po,sha256=PefQBQc4tvibRlshSlhCRvbEMD6ikpu0T8e5t-Twots,14976
|
|
41
40
|
umap/locale/es/LC_MESSAGES/django.mo,sha256=1ZPxfjf6FByGC1DZVhjB3VLpuNZcLsTJgBbYrlkONSI,11912
|
|
42
41
|
umap/locale/es/LC_MESSAGES/django.po,sha256=onOCqDs3YhnljpQSTM7R9BkQmSKEF8aFIsArUbDD4jo,19032
|
|
43
42
|
umap/locale/et/LC_MESSAGES/django.mo,sha256=1_KzsDJhm56-1cMz8pTwuQ_KhJ1oO93MFKwSJCGnkzE,4991
|
|
@@ -48,8 +47,8 @@ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=HU5l77iM_X3iMclmleDH41FHwKFKTFocr
|
|
|
48
47
|
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=u2KHiTbM_CnqrVP9vNKYkbHeSYLR5VWj5SZv-B8fZo8,20925
|
|
49
48
|
umap/locale/fi/LC_MESSAGES/django.mo,sha256=O9foYGhfFTBjBb4Y9abWjOiZNpWtO-315nyHUaiJETM,4779
|
|
50
49
|
umap/locale/fi/LC_MESSAGES/django.po,sha256=5kG9XujFNllOh_wuakGmAHeMy9vqNWFLf9SSrMTaWlk,15709
|
|
51
|
-
umap/locale/fr/LC_MESSAGES/django.mo,sha256=
|
|
52
|
-
umap/locale/fr/LC_MESSAGES/django.po,sha256=
|
|
50
|
+
umap/locale/fr/LC_MESSAGES/django.mo,sha256=NqpZTb_Bjbi7DyC4aAhZV4YI6VP7ZdiV4NWssr2MRFI,13835
|
|
51
|
+
umap/locale/fr/LC_MESSAGES/django.po,sha256=mEgPUmPZrVqpSmAqAtXRpp8M98RpgV3-Jwr3Hww6iCk,20954
|
|
53
52
|
umap/locale/gl/LC_MESSAGES/django.mo,sha256=3shQYPaC7QINEz_aPLkfWnvGt_CVhtgUXSJghzim0A8,6001
|
|
54
53
|
umap/locale/gl/LC_MESSAGES/django.po,sha256=FuWWsjG9OAAn-RkyUZcDvW8Gqz5hJsFejcHJYyzpo10,16417
|
|
55
54
|
umap/locale/he/LC_MESSAGES/django.mo,sha256=A6pkjaL4HQ7lyfvXcGIxle61RXdo7Byq3mfK2FIrSnc,6640
|
|
@@ -114,11 +113,10 @@ umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
114
113
|
umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
114
|
umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
|
|
116
115
|
umap/management/commands/clean_tilelayer.py,sha256=Rcc2PibUUreU0jUZMtUlyqVvgbQMLMuuCZ2tkrzRqHU,5712
|
|
117
|
-
umap/management/commands/empty_trash.py,sha256=
|
|
116
|
+
umap/management/commands/empty_trash.py,sha256=YUp7mZme94ailEnNZnVD8VDPI94buGLngXZ2nFPZ5ZA,1629
|
|
118
117
|
umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUeY2SlOrTXS42tE0-bs,1281
|
|
119
118
|
umap/management/commands/import_pictograms.py,sha256=RuQDCoiKamba4l3fZUGAXRyd-3zwWWT5c5AhgDvs7AQ,2369
|
|
120
119
|
umap/management/commands/migrate_to_S3.py,sha256=GBGnydc107v75NYsQfMLLO7Jx0i2g7EKEfE00YZVb1M,1130
|
|
121
|
-
umap/management/commands/run_websocket_server.py,sha256=TyECJWnmZ95KpVEWSaqfXywz5VwIEzPdypU2d6V541c,648
|
|
122
120
|
umap/migrations/0001_initial.py,sha256=dMcXtTKPiA0IqXCrDVctH91Fe0hhc04NxmvcLAULyzE,8787
|
|
123
121
|
umap/migrations/0002_tilelayer_tms.py,sha256=E99JAu1K0NzwsCEJs1z5uGlBkBJmoVb9a3WBKjpLYlo,372
|
|
124
122
|
umap/migrations/0003_add_tilelayer.py,sha256=53r95Y13CvV0pXseYEnnqtPI4-Q0qcVldYMS-jFpPoE,833
|
|
@@ -144,36 +142,31 @@ umap/migrations/0022_add_team.py,sha256=oEM1cm_GTpiNb4m7HYaid1Sji56NZSf-IudgjYm0
|
|
|
144
142
|
umap/migrations/0023_alter_datalayer_uuid.py,sha256=L5We6QyIByVQA_hj_komQeGE9vOWc2eOpvTQEkvy5Q0,452
|
|
145
143
|
umap/migrations/0024_alter_map_share_status.py,sha256=QRjERy2XN0jsc8MM5cCba5freqpQrOfd8NpTijZHCDo,825
|
|
146
144
|
umap/migrations/0025_alter_datalayer_geojson.py,sha256=958v9AkpkAR5Q78ZcHC0fgZzN05BdfQwtNvUuPmWEvI,563
|
|
145
|
+
umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py,sha256=TnFCUYKwj6rhHziCr5hyx7FDEzdA0235NR3_LAzKTwU,696
|
|
147
146
|
umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
148
147
|
umap/settings/__init__.py,sha256=aPJkOTk0uFusIBA-uOjdUi10R5Cxt4jl5yv2_uCTUvo,1702
|
|
149
|
-
umap/settings/base.py,sha256=
|
|
148
|
+
umap/settings/base.py,sha256=SMKrdeJjvT-xrue7Uc6m7jWWxWYQTJG8q0fglVQXp-A,11134
|
|
150
149
|
umap/settings/dev.py,sha256=pj1mpmZXiI2syW8pB01wcVeqCFABF3V-nlOxArir4cw,386
|
|
151
150
|
umap/settings/local.py.sample,sha256=wpnoe7qtXer_xBuhWbcbqcSCotTJRu6h8hG7N-sD0b4,3157
|
|
152
|
-
umap/settings/local_s3.py,sha256=tunaCRn_I7P0IZH-UJpB1I5ft2kE0ZIBY8GYZeLYyfM,1387
|
|
153
151
|
umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
|
-
umap/static/umap/base.css,sha256=
|
|
155
|
-
umap/static/umap/
|
|
156
|
-
umap/static/umap/content.css,sha256=j6r0ELtj6M5xRuc_6_YJjhlapAHV7zYzuBViB1YQDpU,11813
|
|
152
|
+
umap/static/umap/base.css,sha256=SC7xOMAPH8L5LHsiXam765vnzgYbv62uvyKVcz0KmZw,3770
|
|
153
|
+
umap/static/umap/content.css,sha256=lStyIDC-09jWhgRinU1umOnI9xUJv4v3IPvt_XI0qLs,11275
|
|
157
154
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
158
|
-
umap/static/umap/
|
|
159
|
-
umap/static/umap/
|
|
160
|
-
umap/static/umap/map.css,sha256=B82ED0WSOrJs4kh943ThK-vi5sU6250DStSsDkfYhVw,25208
|
|
161
|
-
umap/static/umap/nav.css,sha256=IKB8Ga8TRal8naxjsgrcrnCO2eaKUL3YNofJB9IN9l0,1865
|
|
162
|
-
umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
|
|
155
|
+
umap/static/umap/map.css,sha256=AF2Y_KzLHOnBrtrwNKFyIrZy6FvG6whkTxkOhDoS3xQ,25199
|
|
156
|
+
umap/static/umap/nav.css,sha256=DQ-NhL_csM8qa-D06G7YSgS-im4HMsWbF0GxAe77mIA,1869
|
|
163
157
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
164
|
-
umap/static/umap/
|
|
165
|
-
umap/static/umap/
|
|
166
|
-
umap/static/umap/css/bar.css,sha256=MIEh9QIF5O7tmLCvmPZfCtn2oG1dfzzUVne01PA9YMo,4962
|
|
158
|
+
umap/static/umap/vars.css,sha256=pZd0UwHtb_1CyCzsI5m15-4-ES-5h9SDZoz9-yujXj4,1887
|
|
159
|
+
umap/static/umap/css/bar.css,sha256=tiFXbDh6UvhzpFyNCe7HAPJrnwEOv1JA_uu5FoiGyCk,4874
|
|
167
160
|
umap/static/umap/css/contextmenu.css,sha256=AdPajFTy2M_yHbkMKDYdh45gRO4amNd0OXRYYDNZSI4,437
|
|
168
161
|
umap/static/umap/css/dialog.css,sha256=9qwy9rOcTQY6SPkteM7dW1t36XQBJVoGETQatSOvffM,879
|
|
169
|
-
umap/static/umap/css/form.css,sha256=
|
|
170
|
-
umap/static/umap/css/icon.css,sha256
|
|
162
|
+
umap/static/umap/css/form.css,sha256=c-u_6j6ptluZZb99JjVDUsQOX7nhl2BRlMPsfXfpGwU,13671
|
|
163
|
+
umap/static/umap/css/icon.css,sha256=fIF8JpPU_f95EGnhAA5YJDUyfhVz4QjTKktKtQfCkWQ,4475
|
|
171
164
|
umap/static/umap/css/importers.css,sha256=iS3krkVPpqUQlPNQXSyByyho7rHBzxYqm04bPyKo_qY,1455
|
|
172
|
-
umap/static/umap/css/panel.css,sha256=
|
|
165
|
+
umap/static/umap/css/panel.css,sha256=9OeHxNcwqp6DSnscMGrkF8D-xznP-UaYk58xGazbIKU,3094
|
|
173
166
|
umap/static/umap/css/popup.css,sha256=KU0MeGp0XD4Wlut-c7p5xpw_BpGLg-9CxhiiG8OCMWw,2426
|
|
174
167
|
umap/static/umap/css/slideshow.css,sha256=zh3H_VlkMJsCjE6djbI9sJ3blY9GbDBYWKGX20oXrXA,1928
|
|
175
168
|
umap/static/umap/css/tableeditor.css,sha256=nYFd5qSMkUasFfAxkWwewKJ5MwIcZb2Zq_DViuDRZc4,1574
|
|
176
|
-
umap/static/umap/css/tooltip.css,sha256=
|
|
169
|
+
umap/static/umap/css/tooltip.css,sha256=slE2MtOawfqC-Ha7hGLpjfBnjwNOH0-XESSHWq6RuXc,1635
|
|
177
170
|
umap/static/umap/css/window.css,sha256=50MFWr9oU200f8-crTPJi3ZPG9h1eG5i6oOBP8yttBQ,808
|
|
178
171
|
umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
|
|
179
172
|
umap/static/umap/favicons/favicon.ico,sha256=0jjg1MnZ2AdWFLKjEwZSf09TVXlqz6oNdtX4rRppHdA,15086
|
|
@@ -186,8 +179,8 @@ umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c
|
|
|
186
179
|
umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
|
|
187
180
|
umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
|
|
188
181
|
umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
|
|
189
|
-
umap/static/umap/img/16-white.svg,sha256=
|
|
190
|
-
umap/static/umap/img/16.svg,sha256=
|
|
182
|
+
umap/static/umap/img/16-white.svg,sha256=nl2DKbfAdswiU4NRYhoQmHQOWTt48hpjL-dtH_ND9rU,43878
|
|
183
|
+
umap/static/umap/img/16.svg,sha256=YVn2MYD3rIx8usBXW0NBmrSwLombLKmKLhybz8W5zeU,24776
|
|
191
184
|
umap/static/umap/img/24-white.svg,sha256=PwFtlnDjxhnPt0c99xIL0KU14dzHT6D1EvAaaE2H650,18139
|
|
192
185
|
umap/static/umap/img/24.svg,sha256=9dLNjDli7tiVsOaV7WXOIa7o3QzdV2Kp6gjBbTsdq2M,25387
|
|
193
186
|
umap/static/umap/img/alert-icon-error.svg,sha256=YyAYn6J4zVGLfpnC60UntTxlylcA4lPcHkBfzufcdDU,4104
|
|
@@ -219,67 +212,73 @@ umap/static/umap/img/importers/overpass.svg,sha256=PFmMwBEQug3bpMdjk3Xue7cU3eArn
|
|
|
219
212
|
umap/static/umap/img/importers/random.svg,sha256=DnxcCu2vJOBdZYWhl8Si0boGjkLcvqrRZaB_BbP1zcM,2445
|
|
220
213
|
umap/static/umap/img/importers/random1.svg,sha256=mY-Yp9-my2ZxdvL6sgnDzc-ihjnAw-mNZtgSkbj25LA,1370
|
|
221
214
|
umap/static/umap/img/importers/random2.svg,sha256=wRwBTM7skyvLZJX4QHozMX8P4jxP59POTHlKPsMODcg,1933
|
|
222
|
-
umap/static/umap/img/
|
|
223
|
-
umap/static/umap/img/
|
|
215
|
+
umap/static/umap/img/providers/bitbucket.png,sha256=MQqVic34G3u5SLEFlgo27kWpi5j__0C37z3_E9W8TFQ,1556
|
|
216
|
+
umap/static/umap/img/providers/github.png,sha256=sA3oznlXAC2lqynqS2PMuNwZPQ3REfK_rwrBSHjkShk,608
|
|
217
|
+
umap/static/umap/img/providers/keycloak.png,sha256=76ZaWlmmVdpr7t33LDqYRPRsuKsFmrOjLQk17LsezYo,1520
|
|
218
|
+
umap/static/umap/img/providers/openstreetmap-oauth2.png,sha256=fzqr15HexNfyi2l3Pxos9ptnmXfTH9Gm2v-1o7F1W7A,1680
|
|
219
|
+
umap/static/umap/img/providers/twitter-oauth2.png,sha256=kDvLvB3BX0AbaMN_p2yT2b2eZ2lOb0IE8ncAgSFvkOo,545
|
|
220
|
+
umap/static/umap/img/source/16-white.svg,sha256=wDswmhz8NAIhcrXQJbQPnH-_FP8FHyKhhIhH6EZBNds,76671
|
|
221
|
+
umap/static/umap/img/source/16.svg,sha256=1A5XYbgpVIeSAGDkaE88wqkST0RwRMzsNr7pmo33yqM,45549
|
|
224
222
|
umap/static/umap/img/source/24-white.svg,sha256=t5713m3RdG9vunV2nUhLY4o4xT9v7ke3NY42g9FeAnE,29206
|
|
225
223
|
umap/static/umap/img/source/24.svg,sha256=2HY-QmZc2_eV3TyqGLlzqgJXCLVbrzKQV5Q6JLWgNiI,38319
|
|
226
|
-
umap/static/umap/js/umap.controls.js,sha256=
|
|
224
|
+
umap/static/umap/js/umap.controls.js,sha256=enl7_HbNjB3C1WF7aqlp55L_zUKqsuTmi0N0COiu1LI,28324
|
|
227
225
|
umap/static/umap/js/umap.core.js,sha256=FGx6GVcfrE_sn_izOt5r4DLkbO3-bv28jeXV8kwwUio,7029
|
|
228
|
-
umap/static/umap/js/umap.forms.js,sha256=clc4Kb3F8jpGXlLiilgW6EQtFmEXmnXx9BfmkFEhkFo,32962
|
|
229
226
|
umap/static/umap/js/components/base.js,sha256=gDb1fGuNCC1KEu4PlQflC1PDNyrulhqLhmlsjyCJpps,1575
|
|
230
227
|
umap/static/umap/js/components/fragment.js,sha256=-rOrcyPpZ5ihD_hh0C1qrYpaim11JYh5fg0x_od_m5U,379
|
|
231
228
|
umap/static/umap/js/components/alerts/alert.css,sha256=fSmbDDjXjEYLfgnEAVDhyqWiBOUy2YhVRy0_den-7Dk,4930
|
|
232
|
-
umap/static/umap/js/components/alerts/alert.js,sha256=
|
|
229
|
+
umap/static/umap/js/components/alerts/alert.js,sha256=N8KzlITHCY1eekvVUtB1e9ULihZFrRQbdG-8YLt08uY,4578
|
|
233
230
|
umap/static/umap/js/modules/autocomplete.js,sha256=j3rZeiBypGcFenEN_7xhYdffYrUP92SATrEB_eTZWwk,8634
|
|
234
|
-
umap/static/umap/js/modules/browser.js,sha256=
|
|
235
|
-
umap/static/umap/js/modules/caption.js,sha256=
|
|
231
|
+
umap/static/umap/js/modules/browser.js,sha256=lwupxrjv6FUx03drn_YG8mdukj8AYiXbsKzEe5k3XzA,9406
|
|
232
|
+
umap/static/umap/js/modules/caption.js,sha256=Nuij_xDr2IrKviuF1ulOTwqabaJqC7M8zm4W-ufCWYE,5484
|
|
236
233
|
umap/static/umap/js/modules/dompurify.js,sha256=SOmoM-pTgYCKCKXFo6-znemWPLiLsFgR4lxM_moWaA8,328
|
|
237
234
|
umap/static/umap/js/modules/drop.js,sha256=aHuz_sDgWAqDEH49OWNhnnyFvGLDMCoeeo5xaBLZwAg,1431
|
|
238
235
|
umap/static/umap/js/modules/facets.js,sha256=q87rllxz4J2fzOJsmRMZMqHJ-RpHYqVGeFvkY7sHRwk,4707
|
|
239
|
-
umap/static/umap/js/modules/formatter.js,sha256=
|
|
236
|
+
umap/static/umap/js/modules/formatter.js,sha256=ciqK1-XKx3JiqWgEVX1F9vNXMI-Ft6cUBygPgNz3ts8,4582
|
|
240
237
|
umap/static/umap/js/modules/global.js,sha256=7jm6NLZ5PM2yrkbWHdWkoDFcevgIAMqE-vZQRXcIgEo,934
|
|
241
|
-
umap/static/umap/js/modules/help.js,sha256=
|
|
238
|
+
umap/static/umap/js/modules/help.js,sha256=b52E9PLtNZ6OCQekGGF6mBK5qb9GhWimShcJfKeFQvU,9738
|
|
242
239
|
umap/static/umap/js/modules/i18n.js,sha256=dEpjsWoEZa-Tr5_MDO0tuWkt7kLL3crxXqhttyP-khU,1387
|
|
243
|
-
umap/static/umap/js/modules/importer.js,sha256
|
|
240
|
+
umap/static/umap/js/modules/importer.js,sha256=-dXNd_938MpQGccTFRNXggbTEOBGWZy_hnBX_HPme40,11140
|
|
244
241
|
umap/static/umap/js/modules/leaflet-configure.js,sha256=P3aD8iNGxuVNv-xW4Di4txAjNmnlpKtCCzDvPaKEdQ8,243
|
|
245
242
|
umap/static/umap/js/modules/orderable.js,sha256=zDtcElZ_MVPoGba8Iv9bxOzk4vuN7C-5XVl4UomDYHE,2521
|
|
246
|
-
umap/static/umap/js/modules/permissions.js,sha256=
|
|
243
|
+
umap/static/umap/js/modules/permissions.js,sha256=Pyq07KcIAqJneQGDTX49aTkiXuNA6KSeFsvd1x0hlS8,8542
|
|
247
244
|
umap/static/umap/js/modules/request.js,sha256=9GRJoOPbdkHL9OFP6Joaf5wzsJckPyiG2O7AxQciTik,3885
|
|
248
|
-
umap/static/umap/js/modules/rules.js,sha256=
|
|
245
|
+
umap/static/umap/js/modules/rules.js,sha256=xIvroA-JcAnaWu3RgjFXtTxMZFCKoOwfNheDMTUUi2U,7481
|
|
249
246
|
umap/static/umap/js/modules/saving.js,sha256=oO6S23KldT19e3xM_iupw0ZDruyyCNHBx5e5wtrejhI,689
|
|
250
|
-
umap/static/umap/js/modules/schema.js,sha256=
|
|
251
|
-
umap/static/umap/js/modules/share.js,sha256=
|
|
247
|
+
umap/static/umap/js/modules/schema.js,sha256=ZrKbOJ2ZLLG8jpPlWOqEZn7SOcOs4PTmtLhD-tBOTPc,13182
|
|
248
|
+
umap/static/umap/js/modules/share.js,sha256=sMNMnavSXg0HEg2DntMiyWlRJe3fJHWqu_PU_X7PAzo,7227
|
|
252
249
|
umap/static/umap/js/modules/slideshow.js,sha256=zcRzOMkJvhps1npGRjHkdK4Ce3UkqOsv8OsDgQWO-bg,3567
|
|
253
|
-
umap/static/umap/js/modules/tableeditor.js,sha256=
|
|
254
|
-
umap/static/umap/js/modules/umap.js,sha256=
|
|
250
|
+
umap/static/umap/js/modules/tableeditor.js,sha256=7vlScGCfl9yXKAi3kdm7k0-T9HIlt9Rg8_kx_U6w0-o,9901
|
|
251
|
+
umap/static/umap/js/modules/umap.js,sha256=_iCPNoj0scFLdY8pMq6OFQ_FD9WK33E7OQD9Ve0Gmfw,51474
|
|
255
252
|
umap/static/umap/js/modules/urls.js,sha256=76cFqycj2O8huuoYYBvxnVt2Fc2UDbgrRsiv6lQmcSY,890
|
|
256
|
-
umap/static/umap/js/modules/utils.js,sha256=
|
|
257
|
-
umap/static/umap/js/modules/data/features.js,sha256=
|
|
258
|
-
umap/static/umap/js/modules/data/layer.js,sha256=
|
|
253
|
+
umap/static/umap/js/modules/utils.js,sha256=32imsti4cf_cTQMNP_DOGBpmOSU4OMgGr1XZPoOUP2Q,15188
|
|
254
|
+
umap/static/umap/js/modules/data/features.js,sha256=pFRQvR3gDJ0ClODx9UQwoGe9GCxxeNWThV05RtIeZ0k,32008
|
|
255
|
+
umap/static/umap/js/modules/data/layer.js,sha256=toDeLIqjJaS-s_1hs5yxTaxnlhIXLxJ_hHKHR8NNov0,36186
|
|
256
|
+
umap/static/umap/js/modules/form/builder.js,sha256=Kp4Mr_uOb1vUVwkyLHt9I3l5q7vcCp955cyuA0_IcYo,6388
|
|
257
|
+
umap/static/umap/js/modules/form/fields.js,sha256=huIziCPyLnfXrgeSJAYJ5d3gqYovNVAEz2nwwGPCaro,33390
|
|
259
258
|
umap/static/umap/js/modules/importers/cadastrefr.js,sha256=KHqxHleFRFzNi98gegvUM1R6eJorAGGcMft_ktUg-ug,2262
|
|
260
259
|
umap/static/umap/js/modules/importers/communesfr.js,sha256=6q6ilmYhhuSmgdrvfTyEDNyMLbc9J9Bt8VMZVXB8ZOA,1723
|
|
261
260
|
umap/static/umap/js/modules/importers/datasets.js,sha256=StZbRiq_1vqe0OO1w66k5Lwzju8RntmHpWe9HWIDfRE,1372
|
|
262
261
|
umap/static/umap/js/modules/importers/geodatamine.js,sha256=vIxANzNc1TAe3QcZroIxqNvos1vexBmKDTtzErBNiY4,2949
|
|
263
262
|
umap/static/umap/js/modules/importers/overpass.js,sha256=cY2kb3Fs8tA6PqBjGyc5bI0mg7L1ijapIAkVGwEhSwI,3341
|
|
264
|
-
umap/static/umap/js/modules/rendering/icon.js,sha256=
|
|
265
|
-
umap/static/umap/js/modules/rendering/map.js,sha256=
|
|
263
|
+
umap/static/umap/js/modules/rendering/icon.js,sha256=V44pEEMjm00YUk5-kDkT2LGCwgCXJKJfxiD92aK9ylc,8044
|
|
264
|
+
umap/static/umap/js/modules/rendering/map.js,sha256=z3e301cNG7GnzS5b6bxzOK_UjueGuvmZp6D_ou6EpXU,12849
|
|
266
265
|
umap/static/umap/js/modules/rendering/popup.js,sha256=k07zuqIo3wx1wdjE8lEtjljjNXgOcxND6Pey68_-_F0,2577
|
|
267
266
|
umap/static/umap/js/modules/rendering/template.js,sha256=reTRxFmrCj0l4euOIyy7ieI_vW_7AOBS5XMxvcg2x1U,9524
|
|
268
267
|
umap/static/umap/js/modules/rendering/ui.js,sha256=Pz7vS8jhbTy7k70mXBFwR8OH1McI98NeRCT6Fc_x7pM,14317
|
|
269
268
|
umap/static/umap/js/modules/rendering/layers/base.js,sha256=DeXxRwTatoxxGStT1tWyNQVCrIkbgd7ZaawIPxWIcOQ,2525
|
|
270
|
-
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=
|
|
271
|
-
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=
|
|
269
|
+
umap/static/umap/js/modules/rendering/layers/classified.js,sha256=Lw6wVFuIpc_WryPWjIs0hcQv_fI01dGSv2CLIXyGbMc,14766
|
|
270
|
+
umap/static/umap/js/modules/rendering/layers/cluster.js,sha256=mUbnAtDlQMoO19FJNYioIH5hWz21JrknQzleTeyISlg,3751
|
|
272
271
|
umap/static/umap/js/modules/rendering/layers/heat.js,sha256=M-Am38FYMy_kJgyb5E5x6XZuBzN25MIvhV6ClYNL0iM,4779
|
|
273
|
-
umap/static/umap/js/modules/sync/engine.js,sha256=
|
|
272
|
+
umap/static/umap/js/modules/sync/engine.js,sha256=DNer_h1z_dC7QBeN-rFn0tpsynQvmqxLaitij_XcLZg,14560
|
|
274
273
|
umap/static/umap/js/modules/sync/hlc.js,sha256=XeJz3x7qiDz7v-mcgGIynj5ks34FpWx_oSPUPFd_ZGA,2991
|
|
275
|
-
umap/static/umap/js/modules/sync/updaters.js,sha256=
|
|
276
|
-
umap/static/umap/js/modules/sync/websocket.js,sha256=
|
|
277
|
-
umap/static/umap/js/modules/ui/bar.js,sha256=
|
|
278
|
-
umap/static/umap/js/modules/ui/base.js,sha256=
|
|
274
|
+
umap/static/umap/js/modules/sync/updaters.js,sha256=glKjGHYCpa1ZGFhxoQe34RWisIhkFxZ7FbAfwhxT0-I,3425
|
|
275
|
+
umap/static/umap/js/modules/sync/websocket.js,sha256=4J6nm32ETGYeG8dSEDALWFpI5RLCdC71mvABJg9h0Lg,2293
|
|
276
|
+
umap/static/umap/js/modules/ui/bar.js,sha256=4kgCfJl0ZUDRdh5faAEs3ecMK6mH5gqx0GoeIhYD92w,7863
|
|
277
|
+
umap/static/umap/js/modules/ui/base.js,sha256=ZP9dUzGKPLBCw8z64uCN6d5AwuQjJj85ks43JeVr4XA,2135
|
|
279
278
|
umap/static/umap/js/modules/ui/contextmenu.js,sha256=VzC94uGUt8DkzC60Gcbz-MxivfSITEqUC91Fkpq1gjk,2550
|
|
280
279
|
umap/static/umap/js/modules/ui/dialog.js,sha256=geAcMf2ajpNpDePDbaOz_kOiWOZWtpOHT7kBYqOHEa0,5620
|
|
281
280
|
umap/static/umap/js/modules/ui/panel.js,sha256=phPWwCFxQ9AJ9auPPayD5Xtf6yQemQSZHlVlLANfTx0,3240
|
|
282
|
-
umap/static/umap/js/modules/ui/tooltip.js,sha256=
|
|
281
|
+
umap/static/umap/js/modules/ui/tooltip.js,sha256=BGZBlt4D73cSV-ZPiL4qZQMEvlBYflPK-CIvgTg6Ohk,1919
|
|
283
282
|
umap/static/umap/locale/am_ET.js,sha256=TsgZgJkMMmFAJE0nJIq62r8hHvFgLLjcA6axXQlkbog,33822
|
|
284
283
|
umap/static/umap/locale/am_ET.json,sha256=HUTiaoPRD8nuC4dFMykm0qlHpEEVAj-FohAS3oJBBTI,33751
|
|
285
284
|
umap/static/umap/locale/ar.js,sha256=iT2H7Ipxsfk_w1KA6eCVsrCzm7H28cR5KLWT64YAKO4,30513
|
|
@@ -288,68 +287,68 @@ umap/static/umap/locale/ast.js,sha256=inLuiOwEYD_zX3tbnI2YEyQMyA6VOwy6R_WUExQ60o
|
|
|
288
287
|
umap/static/umap/locale/ast.json,sha256=9EbcClQgnn14besF7LctqoxAWPR4qvnRiMIoN3XeuHY,30024
|
|
289
288
|
umap/static/umap/locale/bg.js,sha256=bI2LwzpeRksr86cgH_kRfeFQ3v3tIErtJAKx1KU1LcI,33094
|
|
290
289
|
umap/static/umap/locale/bg.json,sha256=k4uLgTydaQdqv_o7JC8-ydBSeat1x_OHL4n6178fLCo,33029
|
|
291
|
-
umap/static/umap/locale/br.js,sha256=
|
|
292
|
-
umap/static/umap/locale/br.json,sha256=
|
|
293
|
-
umap/static/umap/locale/ca.js,sha256=
|
|
294
|
-
umap/static/umap/locale/ca.json,sha256=
|
|
295
|
-
umap/static/umap/locale/cs_CZ.js,sha256
|
|
296
|
-
umap/static/umap/locale/cs_CZ.json,sha256=
|
|
290
|
+
umap/static/umap/locale/br.js,sha256=QsPKr8jAhl6Nzpi8gUi32oKG0DI5ktMvJTBQb4GSQ3Y,32458
|
|
291
|
+
umap/static/umap/locale/br.json,sha256=QAViL-R-RGkr3c3Xdw2IDodRXA-sl5rm5gOSdOnoG04,32393
|
|
292
|
+
umap/static/umap/locale/ca.js,sha256=WWBIx39_05C08hkUCWJ7ktImoU5sJ7a2Pfq9iLFZ1Mk,32160
|
|
293
|
+
umap/static/umap/locale/ca.json,sha256=eSCzrlKUzbpVF9vGpWsk5Y0OP7nBaIn83GRahDDmpys,32095
|
|
294
|
+
umap/static/umap/locale/cs_CZ.js,sha256=-5OHWLQHMpSt3QJ-YQNZyOMwsBsS9N7fQc8Hg_yNQXk,33298
|
|
295
|
+
umap/static/umap/locale/cs_CZ.json,sha256=6SnXM1AY4OT3bFR2ilYvedyFRNO0jYnydkpTME-V9k8,33227
|
|
297
296
|
umap/static/umap/locale/da.js,sha256=LY_-13XCTzjU8lYZ2D_y_MQOhWCLOxNb_WI24065cgg,30466
|
|
298
297
|
umap/static/umap/locale/da.json,sha256=IE5PSbdzvvbFGq0meEaaMLksdTfTwsruXMQlc_Tum0g,30401
|
|
299
|
-
umap/static/umap/locale/de.js,sha256=
|
|
300
|
-
umap/static/umap/locale/de.json,sha256=
|
|
301
|
-
umap/static/umap/locale/el.js,sha256=
|
|
302
|
-
umap/static/umap/locale/el.json,sha256=
|
|
303
|
-
umap/static/umap/locale/en.js,sha256=
|
|
304
|
-
umap/static/umap/locale/en.json,sha256=
|
|
298
|
+
umap/static/umap/locale/de.js,sha256=L1wBxVQekw7ze3Pf0zKAquMBkjunaaZvl9LGsq7y2bo,33318
|
|
299
|
+
umap/static/umap/locale/de.json,sha256=fPh3vpsjm162Ru_2poo5PtS3DeL6qPPmhAUMC0mFoh4,33253
|
|
300
|
+
umap/static/umap/locale/el.js,sha256=AwbwVZ1uh75XIRq5-_DPU01POMqkbYmb8_6owWT-Pio,41867
|
|
301
|
+
umap/static/umap/locale/el.json,sha256=5ax6Nd1Nfepgjj-yfugO7Lumd1bPPaozn1yflUD6C1w,41802
|
|
302
|
+
umap/static/umap/locale/en.js,sha256=cSDIkGqLYSG5axLISWJDMhNge65806aDTEKVPpRC3Hw,30641
|
|
303
|
+
umap/static/umap/locale/en.json,sha256=vkaUOtr4zM1gpL5x7bkv8aO_1a1W-av1OXbHs2TqQno,30576
|
|
305
304
|
umap/static/umap/locale/en_US.json,sha256=E8ScCCs3lXiHOJPqTNxd7maDyhkkF3GNqN-r2p27lLQ,29813
|
|
306
|
-
umap/static/umap/locale/es.js,sha256=
|
|
307
|
-
umap/static/umap/locale/es.json,sha256
|
|
305
|
+
umap/static/umap/locale/es.js,sha256=DtmaEdS24agzdQMsYuByTnGPHdbmzhN01DsrOej6F7o,33527
|
|
306
|
+
umap/static/umap/locale/es.json,sha256=a_oh1IrR8hnVuMQ6JnkOGDKc3hwfp8Q0DZHP3CRRICk,33462
|
|
308
307
|
umap/static/umap/locale/et.js,sha256=7w-K6LwNlNAe_I5YbJmBzQvI3LDnJEIWIAU36lYEvME,30280
|
|
309
308
|
umap/static/umap/locale/et.json,sha256=DkH6uKdB8nH8QacxkJgELV5ma0f9f5-4KGl2vbCk2c8,30215
|
|
310
|
-
umap/static/umap/locale/eu.js,sha256=
|
|
311
|
-
umap/static/umap/locale/eu.json,sha256=
|
|
312
|
-
umap/static/umap/locale/fa_IR.js,sha256=
|
|
313
|
-
umap/static/umap/locale/fa_IR.json,sha256=
|
|
309
|
+
umap/static/umap/locale/eu.js,sha256=_jU7ondhBLO4OcMtt9LxAfv6ZFExiqoU7Bznwjv0CFo,32495
|
|
310
|
+
umap/static/umap/locale/eu.json,sha256=YuZZciCLJniqkqhVctnRmHrT7eUv9ozhe6xlsgeqhpE,32430
|
|
311
|
+
umap/static/umap/locale/fa_IR.js,sha256=wvh6EYFx2aFtbXk-QCK0e6wfFnVO2PC5nQIWb7vEuZE,39216
|
|
312
|
+
umap/static/umap/locale/fa_IR.json,sha256=OpEpdkYVPMBs6bUKd9TRipqzIygAr2H-Fowm4bRj7JM,39145
|
|
314
313
|
umap/static/umap/locale/fi.js,sha256=wyW-hHzNfKHoPKata6sw_TBx3Grz227eXscuabAGbwQ,30915
|
|
315
314
|
umap/static/umap/locale/fi.json,sha256=lDQ6_RxXtcNI_kahg8XBWlVYUE-MvgUqJA_Ue6DJj3c,30850
|
|
316
|
-
umap/static/umap/locale/fr.js,sha256=
|
|
317
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
318
|
-
umap/static/umap/locale/gl.js,sha256=
|
|
319
|
-
umap/static/umap/locale/gl.json,sha256=
|
|
315
|
+
umap/static/umap/locale/fr.js,sha256=HC-HmpjPGGL-ZgHiktK5aUM36wownAi_K7dOfGdRRjo,33532
|
|
316
|
+
umap/static/umap/locale/fr.json,sha256=DnOF2tQ_MTzPrkQ2PqFbJ-bZHln3ezFhgzLQ0DkGFPs,33467
|
|
317
|
+
umap/static/umap/locale/gl.js,sha256=C_Xgum6th4oK49O9wnI1RqFPAtc7-ueLf2J_-8G4Gl8,33399
|
|
318
|
+
umap/static/umap/locale/gl.json,sha256=f2TdWNTbbhGiKgZMPx1aVup2LLJeepszq93Qu_BQfAo,33334
|
|
320
319
|
umap/static/umap/locale/he.js,sha256=jljbzL6uctwBN5fzwQM4lFZ6ZLXKzldUeDTyzQTSyqU,33381
|
|
321
320
|
umap/static/umap/locale/he.json,sha256=s0Ug5JiUxUdtzvRk-Q3K1-IfW9blpmWJnL5MPjsaJ-g,33316
|
|
322
321
|
umap/static/umap/locale/hr.js,sha256=2ItNt_8cfIRFkrq2ef3U7QGUJDBkV1IuDmvtzeKwSNs,30267
|
|
323
322
|
umap/static/umap/locale/hr.json,sha256=31E79dPcxfoCeuntIWiS_1tv3zWtzOZclRXzIqJhD78,30202
|
|
324
|
-
umap/static/umap/locale/hu.js,sha256=
|
|
325
|
-
umap/static/umap/locale/hu.json,sha256=
|
|
323
|
+
umap/static/umap/locale/hu.js,sha256=JWYM7Qaz9HSry97ZPsGuuC5zEc83N4UUOQO8B0v71MQ,35058
|
|
324
|
+
umap/static/umap/locale/hu.json,sha256=bjCamFJTxroHGusA2L8C8NCDTix4bZtp6yficwhkfqQ,34993
|
|
326
325
|
umap/static/umap/locale/id.js,sha256=-cm1Di8QwRWbvzwmapf_zWB-8l56aQeVCuMLzrfdGK8,30089
|
|
327
326
|
umap/static/umap/locale/id.json,sha256=9EbcClQgnn14besF7LctqoxAWPR4qvnRiMIoN3XeuHY,30024
|
|
328
327
|
umap/static/umap/locale/is.js,sha256=VCR5O55_9SPCAuR6W8LP0jqPPvNNdLzqDFfPPx1jn_U,31367
|
|
329
328
|
umap/static/umap/locale/is.json,sha256=Jrnjrbo24fIALFKfCDC6RuFAeQAaNRqVeU7ybG_3Hc0,31302
|
|
330
|
-
umap/static/umap/locale/it.js,sha256=
|
|
331
|
-
umap/static/umap/locale/it.json,sha256
|
|
329
|
+
umap/static/umap/locale/it.js,sha256=qjOo-XqFp5s6GqS_NKqkQafEn6Pa_xhgta_p0V-CP6o,33326
|
|
330
|
+
umap/static/umap/locale/it.json,sha256=-yTjFMmABUfprLZ2WyIOJxWNUVrqPYHtjfMNScAEtf8,33261
|
|
332
331
|
umap/static/umap/locale/ja.js,sha256=90_RblxTH-AzVH2zCQg-N6k3aU1W0u-uxlndQeCOeEI,32498
|
|
333
332
|
umap/static/umap/locale/ja.json,sha256=9KdBJhNEQAi3IfJT8i4x5-7Hk7tHOvs5vFjBBn6Jv1A,32433
|
|
334
333
|
umap/static/umap/locale/ko.js,sha256=aUEfDaVikoHwRhGiQ3nsryLJNoHUTXuHpuoDK62ayFc,30277
|
|
335
334
|
umap/static/umap/locale/ko.json,sha256=pGbCNCmkz83Ry8UwmnXIGM-TH_OCXJRJp5RIj5HNxrI,30212
|
|
336
335
|
umap/static/umap/locale/lt.js,sha256=9zdA1yCVWMl2Kzoa_NSYXkILJo1CV8cusZRTLnb3eAY,30868
|
|
337
336
|
umap/static/umap/locale/lt.json,sha256=sjuqZ9MXDHelqxrJoIa6na-H4K0U6B7EWJlBjM9OxME,30803
|
|
338
|
-
umap/static/umap/locale/ms.js,sha256=
|
|
339
|
-
umap/static/umap/locale/ms.json,sha256=
|
|
340
|
-
umap/static/umap/locale/nl.js,sha256=
|
|
341
|
-
umap/static/umap/locale/nl.json,sha256=
|
|
337
|
+
umap/static/umap/locale/ms.js,sha256=SYM6E5_8n10Q4rcIGKt766y8dex_pgCKB1Ng9VC_IJc,31770
|
|
338
|
+
umap/static/umap/locale/ms.json,sha256=oRNvrI7vSasEK2OggJkMpUG4ZKBmgy-yPnTUVVM5YUs,31705
|
|
339
|
+
umap/static/umap/locale/nl.js,sha256=_TTtq574zuQIPiF4t86hppnX4mbc7_n6Okjhn-U5ChY,32227
|
|
340
|
+
umap/static/umap/locale/nl.json,sha256=Sooe57I79BvgsyQfLg8DSVr4tKswWIN4F7zW2XwAL2U,32162
|
|
342
341
|
umap/static/umap/locale/no.js,sha256=Srb9jVwrDrC44yqcYo7CSZRDfnp8ieLoEB3EaPIKml0,30313
|
|
343
342
|
umap/static/umap/locale/no.json,sha256=uURvDIsHalG5ysr-zFtYeS5HGXN_te1jSmcPqSEbexE,30248
|
|
344
|
-
umap/static/umap/locale/pl.js,sha256=
|
|
345
|
-
umap/static/umap/locale/pl.json,sha256=
|
|
343
|
+
umap/static/umap/locale/pl.js,sha256=CkgcNZ-KMSJ5bsW2xmwwp5dg5lmlt8K-N876WthU9yc,32424
|
|
344
|
+
umap/static/umap/locale/pl.json,sha256=PFYyJj27sHKTBIigBP2lpaRBnojvxDU6yrb8NfbGSME,32359
|
|
346
345
|
umap/static/umap/locale/pl_PL.json,sha256=9EbcClQgnn14besF7LctqoxAWPR4qvnRiMIoN3XeuHY,30024
|
|
347
|
-
umap/static/umap/locale/pt.js,sha256=
|
|
348
|
-
umap/static/umap/locale/pt.json,sha256=
|
|
346
|
+
umap/static/umap/locale/pt.js,sha256=co5ppFCqFhm11xwfM0jahNRmI3HSF36XDpVrsGqrWa4,33304
|
|
347
|
+
umap/static/umap/locale/pt.json,sha256=Nx8OLpIkUqb9UOBePqwPp2UNpDdnQD3EZQKEW1e4HZ8,33239
|
|
349
348
|
umap/static/umap/locale/pt_BR.js,sha256=uWUdhGn7IZGpQFzl0KMQEPQafhpYVUo90tZ5IeHkd94,31448
|
|
350
349
|
umap/static/umap/locale/pt_BR.json,sha256=ksjtMpl2eRrXpxT1QlcX7lS8ymHVSoJ54RK-BOE3plQ,31377
|
|
351
|
-
umap/static/umap/locale/pt_PT.js,sha256=
|
|
352
|
-
umap/static/umap/locale/pt_PT.json,sha256=
|
|
350
|
+
umap/static/umap/locale/pt_PT.js,sha256=d1P6RufIi8E5Zc_qy880vPZXR2GKMTwncGnLDHWheBY,33268
|
|
351
|
+
umap/static/umap/locale/pt_PT.json,sha256=t4Ma38NpIL5XTWTRYu0a42OLY6bIQIPoPeRuDR6oIQw,33197
|
|
353
352
|
umap/static/umap/locale/ro.js,sha256=Ls9FmNl5_svi8kesFz4U6g5WEL4MtsHo1DGJuokVPQY,30118
|
|
354
353
|
umap/static/umap/locale/ro.json,sha256=prIbV9H0WA6NRh7zWEhyEghjgFW66MBjR-v_uW7B5Os,30053
|
|
355
354
|
umap/static/umap/locale/ru.js,sha256=s6fcgx5-hygJ3eXCyR4mxY06-u0k80ePGhMgk-8gG0k,37184
|
|
@@ -364,8 +363,8 @@ umap/static/umap/locale/sr.js,sha256=_l17hp1EAegvwrQWfMFtTUuGXRmNaHyOEtgW4CK26-A
|
|
|
364
363
|
umap/static/umap/locale/sr.json,sha256=Oi75zWEoBJLqilYnI_7yeDQ8vMGEww0iljmjCdHew_Q,34041
|
|
365
364
|
umap/static/umap/locale/sv.js,sha256=RJVvQczMH3zqi2vwqUybOdYWW097I64ud2qTxlCD25E,31108
|
|
366
365
|
umap/static/umap/locale/sv.json,sha256=-2UDaWJ0I5JEFl4NlemsBsIFJpgUksIxnuohS4z9tCo,31043
|
|
367
|
-
umap/static/umap/locale/th_TH.js,sha256=
|
|
368
|
-
umap/static/umap/locale/th_TH.json,sha256=
|
|
366
|
+
umap/static/umap/locale/th_TH.js,sha256=8bqpeyn9VklXnoF5KJknZkqSJKiTC2JS32QDpuNDtDc,31681
|
|
367
|
+
umap/static/umap/locale/th_TH.json,sha256=UK7VK5vH8tqOTsI93A9B9JEuKOVHe80tFWxf3OUwmt0,31610
|
|
369
368
|
umap/static/umap/locale/tr.js,sha256=H470zyD0E2ZV_a4OVKFBUUUUUgdfVO494PbOPZrBhV0,31642
|
|
370
369
|
umap/static/umap/locale/tr.json,sha256=aNfhirDkVaVO_deaHHmT_5zaIywPeAA46zNA9cYj6Ys,31577
|
|
371
370
|
umap/static/umap/locale/uk_UA.js,sha256=yVv2LskMW449d0FfKvVrNj21ybqLjirQEaE63xGmrv4,36801
|
|
@@ -377,8 +376,8 @@ umap/static/umap/locale/zh.js,sha256=CJ7RTt_bwXzeVTVGQul-dAA_BHBnZwDAh590vdkAO0A
|
|
|
377
376
|
umap/static/umap/locale/zh.json,sha256=32Cvlx1c6lE6-yil6WXB87rJ6luKUa20OhJ-4LQ5bto,29730
|
|
378
377
|
umap/static/umap/locale/zh_CN.json,sha256=9EbcClQgnn14besF7LctqoxAWPR4qvnRiMIoN3XeuHY,30024
|
|
379
378
|
umap/static/umap/locale/zh_TW.Big5.json,sha256=9EbcClQgnn14besF7LctqoxAWPR4qvnRiMIoN3XeuHY,30024
|
|
380
|
-
umap/static/umap/locale/zh_TW.js,sha256=
|
|
381
|
-
umap/static/umap/locale/zh_TW.json,sha256=
|
|
379
|
+
umap/static/umap/locale/zh_TW.js,sha256=MHYdJLfugw9oKRfj1hf9U68gy2A-wlgVIq6LZnxiW4Q,30106
|
|
380
|
+
umap/static/umap/locale/zh_TW.json,sha256=WKNJye0FlFry9NiWUVBDK8QaYwhqNioPeM4gjJH0Aaw,30035
|
|
382
381
|
umap/static/umap/test/.eslintrc,sha256=lsy_EQL70iOehznbw1QtRqN858VT9vQAZXg9h2aTX2w,444
|
|
383
382
|
umap/static/umap/test/DataLayer.js,sha256=P-bq8gjGrSEKXLxmDk85NI33GT5XWHHLvv44xJ7CGKk,14221
|
|
384
383
|
umap/static/umap/test/Feature.js,sha256=xb6HjjD_EuI4ezvn3z_SUR_s7C1e8xmZim20VHaR2qg,3664
|
|
@@ -392,7 +391,7 @@ umap/static/umap/test/index.html,sha256=1ZKUQry_D4tzZapPOnhs7TfLP0-yDtOpE28nEicH
|
|
|
392
391
|
umap/static/umap/unittests/URLs.js,sha256=wF0hfRX3NqwFAe31QGeKFwavUpNP2T8pHwXBlcpiwNo,2070
|
|
393
392
|
umap/static/umap/unittests/hlc.js,sha256=GvpBaBSgfMs0Zym0_zOs2QldUOcbFNVIKweBhuwM_QI,5294
|
|
394
393
|
umap/static/umap/unittests/sync.js,sha256=khNfXve8gGtKedsVhgCcfNz4tVUu-LRbuJy3M-bXOYk,12929
|
|
395
|
-
umap/static/umap/unittests/utils.js,sha256=
|
|
394
|
+
umap/static/umap/unittests/utils.js,sha256=ldr3eVd2FgvTkSdhs3eJRbnrYosN9A9Fu1xcCd549Vk,27050
|
|
396
395
|
umap/static/umap/vendors/colorbrewer/colorbrewer.js,sha256=wEHf7UslhI09j7tfzC1V9FLgTbZELDbbtGiL2x0y9vY,23051
|
|
397
396
|
umap/static/umap/vendors/csv2geojson/csv2geojson.js,sha256=FARwXdqk_yf3ttJmSyrJ204B9glI2YaZ2vuhaQPmhVk,15712
|
|
398
397
|
umap/static/umap/vendors/dompurify/purify.es.js,sha256=z-0CPcG0TCk11WMdauq46gDt65U61y_i-ltN5dKc500,64057
|
|
@@ -402,7 +401,6 @@ umap/static/umap/vendors/editable/Path.Drag.js,sha256=EATyTfgSiCkdjTwGM5lU1RZayx
|
|
|
402
401
|
umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o5490h8BbMh5XeraSLmo6qTc8zj8,1263
|
|
403
402
|
umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js,sha256=ati65azw8WxPG70b4JblFSHgD-fJ0ytriQEzC5tJWCM,9141
|
|
404
403
|
umap/static/umap/vendors/editinosm/edit-in-osm.png,sha256=xsQrWBc8olICRKg-bt7auEoceoCoWWZxm5OmAHSE2PM,3340
|
|
405
|
-
umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js,sha256=E6d3ANdkutf-GhnCi2H49-XJf55YVV8cA4iod-nomI0,10984
|
|
406
404
|
umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js,sha256=_VGiFGzaidNadoKY4_8zFXP_OqGdajjpB-0vNHRz33o,5041
|
|
407
405
|
umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js,sha256=RQN1bmEq_28pzVG8Csu34O677VNj5_1xl1wUGyDjMuo,3654
|
|
408
406
|
umap/static/umap/vendors/fullscreen/fullscreen.png,sha256=yDtz-dhjuAoo6q9xc00-_XNTrGwEWrN80pOneFdol4g,299
|
|
@@ -455,17 +453,20 @@ umap/storage/__init__.py,sha256=Aj421eIsZhsu0B7zd5lTJufVYr0EtUkH0lTqpbBh8AU,85
|
|
|
455
453
|
umap/storage/fs.py,sha256=CdjnDe4UVMt_9Yp2uZqvtarfHTAYRed6Tid2UU-sBgY,3721
|
|
456
454
|
umap/storage/s3.py,sha256=KAYu3vAqXbd5UhaoPxG6zcGtBfKZOzzi-6uY6YEuIcY,1962
|
|
457
455
|
umap/storage/staticfiles.py,sha256=mxFcenC1JECmpNy4H0e7vX8GObDZVXzs1RPjQFWNd5k,2473
|
|
456
|
+
umap/sync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
457
|
+
umap/sync/app.py,sha256=JZIluuyrUnPZ6z6J7OOyli6TeSrs6Jpk3DL5hI8k6Tk,6349
|
|
458
|
+
umap/sync/payloads.py,sha256=MQGnyoA0zXSIsLIMDreAfnwcVeGYobp2laIzqYl5yNo,1326
|
|
458
459
|
umap/templates/403.html,sha256=7nzCrjNhLxqYkCoLHtBkMsKsticp0g0zj-fGdWxbd_k,454
|
|
459
460
|
umap/templates/404.html,sha256=9sNX3VTySf8tiAcj201dBIGcznOfeViJkIv7Wju79vY,267
|
|
460
461
|
umap/templates/40x.html,sha256=vqXMu5psELqmQA7tajpOCpQB2olyJ4yZvBXme5p84XU,206
|
|
461
462
|
umap/templates/500.html,sha256=Z8x47OVfYXquAYAlmRB0EJVTCiCaBppFFiFEmoYsMYY,5202
|
|
462
|
-
umap/templates/base.html,sha256=
|
|
463
|
-
umap/templates/auth/user_detail.html,sha256=
|
|
464
|
-
umap/templates/auth/user_form.html,sha256
|
|
465
|
-
umap/templates/auth/user_stars.html,sha256=
|
|
466
|
-
umap/templates/registration/login.html,sha256=
|
|
467
|
-
umap/templates/umap/about.html,sha256=
|
|
468
|
-
umap/templates/umap/about_summary.html,sha256=
|
|
463
|
+
umap/templates/base.html,sha256=7WJ89NxyDiciP7GqpXu9VuZvLX4uJeLnEP4t5aWQdIY,1573
|
|
464
|
+
umap/templates/auth/user_detail.html,sha256=NMCFTxNfQWHlfEa44P6_nMyfvkdLcWcZW1k82jTeuwI,673
|
|
465
|
+
umap/templates/auth/user_form.html,sha256=-BNLjvI9i3gFEur13-T-NjQ4ycu7U5yC6Gv5bj6zTHM,1931
|
|
466
|
+
umap/templates/auth/user_stars.html,sha256=ptxSvFAfsQ6R8GSMJ30Alm4qMEbumuqkHyFWBdYps7M,701
|
|
467
|
+
umap/templates/registration/login.html,sha256=PSBLBFW7szyXezaXwPwFqTBQAsbFEDd5SvPL-n9Djek,1824
|
|
468
|
+
umap/templates/umap/about.html,sha256=Shu5lP_Iff4iQMDhMACuwdlZ00o8Yi3MT1du-y2rDEY,245
|
|
469
|
+
umap/templates/umap/about_summary.html,sha256=9_K2HxctGKjU3GWaI9Rny-kb_iLnS5lScx2WJrbd89I,2339
|
|
469
470
|
umap/templates/umap/branding.html,sha256=8IzkIWqiZckgkX9FC-n1v6f8JIB2q7DcX3JHscxsaYA,60
|
|
470
471
|
umap/templates/umap/content.html,sha256=KfNQ18LcbxFd00tHQeirGy5Vh75qQNM6pj0bQbcy4Bo,2246
|
|
471
472
|
umap/templates/umap/content_footer.html,sha256=wkdc4Usuq4-vDIJHPxv-KS6KL4gBkUl7ARyU7zz1Zis,1154
|
|
@@ -474,49 +475,49 @@ umap/templates/umap/dashboard_menu.html,sha256=DEzGwiL_U1ntDpY0Ybda5ijDMSNw-n7Vb
|
|
|
474
475
|
umap/templates/umap/footer.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
476
|
umap/templates/umap/header.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
476
477
|
umap/templates/umap/home.html,sha256=021I4eVLjMWvhsIqo2k2FADXla2c4UClAJ1uy9R5KVI,839
|
|
477
|
-
umap/templates/umap/js.html,sha256=
|
|
478
|
+
umap/templates/umap/js.html,sha256=1xW63Pr3XOxcrn9RACpFrvOjiQS0k1dLqJWshOFJ3zc,2298
|
|
478
479
|
umap/templates/umap/locale.js,sha256=AP-mSJQq5RyC3eNaBbk-sOsD80r0_qlvuK1afXdsVo4,112
|
|
479
480
|
umap/templates/umap/login_popup_end.html,sha256=kcENvhycpVvvIzbNasX1rcSI_67A6pttkWCxy0vHC8g,693
|
|
480
|
-
umap/templates/umap/map_detail.html,sha256=
|
|
481
|
+
umap/templates/umap/map_detail.html,sha256=vNFIK7BhWWNiiBnMwKDPyvr0LZH9rLLqD95T_wsi5ng,1217
|
|
481
482
|
umap/templates/umap/map_fragment.html,sha256=ZRIA3W2tuIecv2LtxyKNSW4k7PmCxRlFmI6TIKC1EV8,152
|
|
482
483
|
umap/templates/umap/map_init.html,sha256=5hX7FE0vN6P70KFf8aKusOCERGzy9JoCPg7oyoIWfLQ,334
|
|
483
484
|
umap/templates/umap/map_list.html,sha256=Jb-VU3dQdRWsW80nyyRq1Eb6UrhAoIfGleu1cNMJKwc,673
|
|
484
485
|
umap/templates/umap/map_table.html,sha256=WrH86ybY_GzzRmALfON_oni9aFuIswgOtpTSJ5h8SEY,5778
|
|
485
486
|
umap/templates/umap/messages.html,sha256=liEsg-I26XHb0FOBAbzFsZl2RfNQtGt-HKoE6jHefbI,190
|
|
486
487
|
umap/templates/umap/navigation.html,sha256=gUhdTQOfbMHp1QwnzQYcn3CqQ0RqWUjlDFdT92MerO4,1261
|
|
487
|
-
umap/templates/umap/password_change.html,sha256=
|
|
488
|
-
umap/templates/umap/password_change_done.html,sha256=
|
|
489
|
-
umap/templates/umap/search.html,sha256=
|
|
488
|
+
umap/templates/umap/password_change.html,sha256=egS_bPFdVyXCoFGMTzcinROoc60_DVV38p1QalAEi8s,1079
|
|
489
|
+
umap/templates/umap/password_change_done.html,sha256=DqlQJyoQJ4v69pTXdWYybd1LgSqCo6XXvReaMc7zIHs,404
|
|
490
|
+
umap/templates/umap/search.html,sha256=716daOxENbRh1YLHO5rk4AYexHT1vOBDUXb4fiDx6Xc,1088
|
|
490
491
|
umap/templates/umap/search_bar.html,sha256=V9p1D9HFAjQ0ewJ77Uw_znYNpqaOLN1nSqnSWbQ3PDU,613
|
|
491
492
|
umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X_CI,3
|
|
492
|
-
umap/templates/umap/team_confirm_delete.html,sha256=
|
|
493
|
-
umap/templates/umap/team_detail.html,sha256=
|
|
494
|
-
umap/templates/umap/team_form.html,sha256=
|
|
495
|
-
umap/templates/umap/user_dashboard.html,sha256=
|
|
496
|
-
umap/templates/umap/user_teams.html,sha256=
|
|
493
|
+
umap/templates/umap/team_confirm_delete.html,sha256=hURs2wcKXl3c0PMATHqRTaoFvQuSb7wWaM3nrHgzCVY,557
|
|
494
|
+
umap/templates/umap/team_detail.html,sha256=ETLdGysmEViuAgXCEeCVmOUwkf06ClFwNcLPe156cSw,847
|
|
495
|
+
umap/templates/umap/team_form.html,sha256=wwxpxGC4lno4PqNs9pOnlwQ23leKj3kxV3Pbs2UpJb0,2039
|
|
496
|
+
umap/templates/umap/user_dashboard.html,sha256=UsqL7lRJcX4z9wER6M32RZdFyQxbaHsRcRr7ld5kuDM,2538
|
|
497
|
+
umap/templates/umap/user_teams.html,sha256=p--dXgYw8Kjt0XTCVcFkwmw_PN2tFv98K9bYTsCdilo,1674
|
|
498
|
+
umap/templates/umap/components/provider.html,sha256=lEoxBZxFscgYh3gWFtjXRs1Sc__0cFXY6k348Rxm5XI,285
|
|
497
499
|
umap/templates/umap/components/alerts/alert.html,sha256=ZvisQkz2GfK2jxEqTosYH72N5gIK1604ATVNa_vHT7U,3564
|
|
498
500
|
umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
499
501
|
umap/templatetags/umap_tags.py,sha256=OumX1AI9uWzNP3zbjexTz7lGp10FweW0NRFSsdQ_cuU,1759
|
|
500
502
|
umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
501
|
-
umap/tests/base.py,sha256=
|
|
503
|
+
umap/tests/base.py,sha256=SUWGz39rmOoWeU8KdBID-w-p0i-LTNt2Z-2hcH5kKtY,4914
|
|
502
504
|
umap/tests/conftest.py,sha256=KQCZanCTl1ABLIKOuyxS_cpBoXGiwjDc29jsLBiSWxY,1633
|
|
503
|
-
umap/tests/settings.py,sha256=
|
|
505
|
+
umap/tests/settings.py,sha256=QYfR4B9i7_4tZR5wiiG9LMZdKzdl8PjU2gtNAj2JnBk,857
|
|
504
506
|
umap/tests/test_clean_tilelayer.py,sha256=wGTd_AHOTmQ4QMswAyc-1_lJmQOSyhY3OahLAusEIdA,2515
|
|
505
507
|
umap/tests/test_dashboard.py,sha256=w9IgKdupP9JpixLqvNl6UKbglgFVN_dG_R9Zvw1SJy0,2880
|
|
506
|
-
umap/tests/test_datalayer.py,sha256
|
|
508
|
+
umap/tests/test_datalayer.py,sha256=-1sTYnmJksgV4jxRQUtw_jRUqaYhh0siqfJe8QfWTqs,9528
|
|
507
509
|
umap/tests/test_datalayer_s3.py,sha256=6V3AK22AXkFNjx5__SyBk0Uj0rTDAjJQv67r7D_MDVc,4155
|
|
508
|
-
umap/tests/test_datalayer_views.py,sha256=
|
|
509
|
-
umap/tests/test_empty_trash.py,sha256=
|
|
510
|
+
umap/tests/test_datalayer_views.py,sha256=ySOyYOvdMjyBbBeyZ6YUS0_RfH2dlovQ5luT7ZXXxuQ,23734
|
|
511
|
+
umap/tests/test_empty_trash.py,sha256=VuFSNzZ2n4v60WCBeazLn6c8cSgUcUKQWwzN0c7FCIk,1492
|
|
510
512
|
umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
|
|
511
513
|
umap/tests/test_map.py,sha256=vrtheSMQNk45kBIcJ0QY9K7HKYee5yg4Vnp78DyaIwQ,5170
|
|
512
|
-
umap/tests/test_map_views.py,sha256=
|
|
514
|
+
umap/tests/test_map_views.py,sha256=qEQaelvHns2Dggqh-unuPamFmI8-NMd3wIxsghR_XgA,34196
|
|
513
515
|
umap/tests/test_merge_features.py,sha256=uLZSW00WAI8_nZS0KPP8gg8U4nnky-XGb-VhhKUxv1M,2275
|
|
514
516
|
umap/tests/test_statics.py,sha256=xKuxT8Xj5Ii7gKISuiSfDj7dpjmJ2Ierby3Lg-haZCg,1264
|
|
515
517
|
umap/tests/test_team_views.py,sha256=edmqn_tx4XQ1sEQtB7CpuJT6WwQQiUyUYu8-ESZxFcw,5615
|
|
516
518
|
umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
|
|
517
519
|
umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
|
|
518
520
|
umap/tests/test_views.py,sha256=5KXUH46dtjCItm4nqyrpvgnmM6_YMQ3zjcRPTC8rKBo,15820
|
|
519
|
-
umap/tests/test_websocket_server.py,sha256=BQ9Sy5VC9kBAfPWVxqcXoi9yfq12nfNvBE_j5rTFk7w,696
|
|
520
521
|
umap/tests/fixtures/categorized_highway.geojson,sha256=p7QHOd8nXi7yVq37gY6Ca8BXkjaLnDxW9Fq0Zcm3Fk4,15830
|
|
521
522
|
umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
|
|
522
523
|
umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
|
|
@@ -537,12 +538,12 @@ umap/tests/fixtures/test_upload_missing_name.json,sha256=klSMHb6laTghzU4AdIG1_p5
|
|
|
537
538
|
umap/tests/fixtures/test_upload_non_linear_ring.json,sha256=WOR0NnJHNUUW6VKzZyIxU7WL1llnAmEVJwCWla6XOds,1525
|
|
538
539
|
umap/tests/fixtures/test_upload_simple_marker.json,sha256=jH15G5PxgVO-DZb4TPxVMAi1_uzhkvZcFkVUb50CS3Q,393
|
|
539
540
|
umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-mEKG4,57
|
|
540
|
-
umap/tests/integration/conftest.py,sha256=
|
|
541
|
+
umap/tests/integration/conftest.py,sha256=pNIxoZ6mNclAwovFt76gzvJaXH940lYXWByf6cmJDx8,2251
|
|
541
542
|
umap/tests/integration/helpers.py,sha256=vvGX5b-DS2fMVDdeXz1lH2IleZkRHjyL7DVvatJU8Do,344
|
|
542
543
|
umap/tests/integration/test_anonymous_owned_map.py,sha256=wzM80reHDiUVIefuTVelFA4n2Gfe3xTP3EN6SmDn9Hk,11119
|
|
543
|
-
umap/tests/integration/test_basics.py,sha256=
|
|
544
|
+
umap/tests/integration/test_basics.py,sha256=dChiUZhS3oIhyLp9zfy-J7tcAHgKe-bGGH32-Sq4C-c,3802
|
|
544
545
|
umap/tests/integration/test_browser.py,sha256=oOd7kYgdwmQpWkifppV7Kwa5KmQW-oak7HiNmN5rHfc,20633
|
|
545
|
-
umap/tests/integration/test_caption.py,sha256=
|
|
546
|
+
umap/tests/integration/test_caption.py,sha256=9JHQvTju2W-IoV2UBrEUAH4nV2W7eKN2hJi4YcPfSPE,1843
|
|
546
547
|
umap/tests/integration/test_categorized_layer.py,sha256=1MJopDBMLUd_NN2NVqWoePuNPS42RbNlXOwXeyKdZo8,5586
|
|
547
548
|
umap/tests/integration/test_choropleth.py,sha256=MOgWxPiv39wU7v6kwEJ6sfN3P3xTf_ABQo7hxQa_Y1M,3775
|
|
548
549
|
umap/tests/integration/test_circles_layer.py,sha256=PjYGmCvAd9qDnldnbiw6nomJs1YgUdX181a9xrWSUYE,2396
|
|
@@ -550,37 +551,37 @@ umap/tests/integration/test_cluster.py,sha256=AK4t1k0nur2-gSSFPvkhnq7Ki81PgfvYv1
|
|
|
550
551
|
umap/tests/integration/test_conditional_rules.py,sha256=josrLgUbBvoa9ygbJB6sKR5_GnTXo65UGrJMSpD8QbY,11890
|
|
551
552
|
umap/tests/integration/test_dashboard.py,sha256=LClLBc8lgDM1-NGhkvUSUMLmMuKt3sR1ubt2Eo-Iq7A,1550
|
|
552
553
|
umap/tests/integration/test_datalayer.py,sha256=cxsf65noYTucEMLuUz8DfJ9abXHhAq0n65MvdBmBRVo,5492
|
|
553
|
-
umap/tests/integration/test_draw_polygon.py,sha256=
|
|
554
|
+
umap/tests/integration/test_draw_polygon.py,sha256=vNDDilpI0owqvyiEwLXJF5RTc8bkL6La6f5bM4sV4eI,25385
|
|
554
555
|
umap/tests/integration/test_draw_polyline.py,sha256=lPr5hz-wHL9oC2B3yveNHC-OxdzWvcf8fHMBZbXTuss,14801
|
|
555
|
-
umap/tests/integration/test_edit_datalayer.py,sha256=
|
|
556
|
-
umap/tests/integration/test_edit_map.py,sha256=
|
|
556
|
+
umap/tests/integration/test_edit_datalayer.py,sha256=_G8LTjDg_zM9tSy_t_2vizYhVkZLGA2vyFIPBa4wnI4,10297
|
|
557
|
+
umap/tests/integration/test_edit_map.py,sha256=RPHvYcrcs32wpZI3e6pTCr114EKxxEFI6mPyuOszmsw,7145
|
|
557
558
|
umap/tests/integration/test_edit_marker.py,sha256=sj4n2mCYQ-qZ02jFHA566Wg_y9F6oXb1AxddnthSQHI,4746
|
|
558
|
-
umap/tests/integration/test_edit_polygon.py,sha256=
|
|
559
|
+
umap/tests/integration/test_edit_polygon.py,sha256=1UbM2-Xrnsu1ZblcW0IqWUFjOPJ4EtsvqyUqHMOuVUk,5303
|
|
559
560
|
umap/tests/integration/test_export_map.py,sha256=jH0BXm-7Ov26OEkve9-xKMfRwXwR73zRrZLIQusyUOY,12112
|
|
560
561
|
umap/tests/integration/test_facets_browser.py,sha256=J--y2rpI__0RIPzcTx4Kn2UwuurFdh-6i_Y4c6GxUyY,10658
|
|
561
562
|
umap/tests/integration/test_features_id_generation.py,sha256=e99_8AxeMAi53JjVGlsI32zlrXGAU19FHJfTuYdiBVQ,1511
|
|
562
|
-
umap/tests/integration/test_import.py,sha256=
|
|
563
|
+
umap/tests/integration/test_import.py,sha256=VckpIyOgOgXm8M9tha4YEkODw3wz1iIaak20XaZGDyQ,32274
|
|
563
564
|
umap/tests/integration/test_map.py,sha256=2ZO54RFVycJKGczfioX0nU1oCu29FVC9hR6wbT4s1NE,8736
|
|
564
565
|
umap/tests/integration/test_map_list.py,sha256=l1FImKnJkY7DupYX8waKaUZqhnORR20L8dzaqu-eF8E,1280
|
|
565
566
|
umap/tests/integration/test_map_preview.py,sha256=kP0vkEiUN7EJNCvZgNeUAzrrXfgwpU0S2UnmOBV4P5A,3540
|
|
566
|
-
umap/tests/integration/test_optimistic_merge.py,sha256=
|
|
567
|
+
umap/tests/integration/test_optimistic_merge.py,sha256=uUFIpTLxTyS6ZLtARSFslqWvF0aK9G_H_30ldVmxMNM,11817
|
|
567
568
|
umap/tests/integration/test_owned_map.py,sha256=qVG91H44Piao67HVXB9W3N2Df31iTkLaT8Cj1ln6SZA,10844
|
|
568
|
-
umap/tests/integration/test_picto.py,sha256=
|
|
569
|
+
umap/tests/integration/test_picto.py,sha256=q55UBamCweckq5RBqiNOyF1pzgagt3-RJ8dK40MzeuI,9155
|
|
569
570
|
umap/tests/integration/test_popup.py,sha256=kZy6JAJIs2R6tnPbGEzgz_yX76yMbEAfPqCa6c9P670,1445
|
|
570
571
|
umap/tests/integration/test_querystring.py,sha256=yR7oOlIA4qbL14gEazdFmdCtoOc7RKwadpuuutAPxU8,2754
|
|
571
|
-
umap/tests/integration/test_save.py,sha256=
|
|
572
|
+
umap/tests/integration/test_save.py,sha256=8OQ9j7kuK8nfcgre5BQKCS_gKbdQiXa4TFzbj95YwSg,1367
|
|
572
573
|
umap/tests/integration/test_share.py,sha256=gDna-wFedwJ_-8HLBw_G5IO3zA3l96p1FGBSZ15g_7g,1813
|
|
573
574
|
umap/tests/integration/test_slideshow.py,sha256=yhy75YYpfTKpkGK7xGjJDJoqHtN6p2LG-O4krVE1Yks,1907
|
|
574
|
-
umap/tests/integration/test_star.py,sha256=
|
|
575
|
-
umap/tests/integration/test_tableeditor.py,sha256=
|
|
575
|
+
umap/tests/integration/test_star.py,sha256=qJUvFij0XK0PcWJnbe4w8nTvTjbJdJ5X-2JjHy6DqEw,973
|
|
576
|
+
umap/tests/integration/test_tableeditor.py,sha256=OfxvaeLKu5OZTgIvSr-TvgAwN284zXOIKcHyaZJdz6U,7901
|
|
576
577
|
umap/tests/integration/test_team.py,sha256=LVuj5Dhz27cqk6ieEbukGsdy9J2FP5aQmcMex_xevIg,1594
|
|
577
578
|
umap/tests/integration/test_tilelayer.py,sha256=rBI3bm4hCpH87rcFvuc5H8yu1D9FQBZMNbqqJzpdI24,5302
|
|
578
579
|
umap/tests/integration/test_view_marker.py,sha256=ZLS6-GOWYpjeoYGHiHa7HesXJTLu9wbKbVwTVhY8hvw,6461
|
|
579
580
|
umap/tests/integration/test_view_polygon.py,sha256=NMJC6Nt9VpQ8FIU9Pqq2OspHv49xsWlsoXCr8iBa0VA,2060
|
|
580
581
|
umap/tests/integration/test_view_polyline.py,sha256=aJoXKmLhJaN0yhPdDCVskZNGx3q3mLDkjVPhZ30cadA,13959
|
|
581
|
-
umap/tests/integration/test_websocket_sync.py,sha256=
|
|
582
|
-
umap_project-2.
|
|
583
|
-
umap_project-2.
|
|
584
|
-
umap_project-2.
|
|
585
|
-
umap_project-2.
|
|
586
|
-
umap_project-2.
|
|
582
|
+
umap/tests/integration/test_websocket_sync.py,sha256=4zQHMr5cLJVCm-2cXE5W_gR-y_LQKPrVSndUGClDWm4,21656
|
|
583
|
+
umap_project-2.9.0b0.dist-info/METADATA,sha256=1xI-AwpQZqyThZtR0Zfhd3DSqG0SW01hnl8L_4cJ8x8,2965
|
|
584
|
+
umap_project-2.9.0b0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
585
|
+
umap_project-2.9.0b0.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
586
|
+
umap_project-2.9.0b0.dist-info/licenses/LICENSE,sha256=kQtrtRKgiPhcl7aO0-lmvbrNAXu7WHyiXvPrUk-TD2Q,820
|
|
587
|
+
umap_project-2.9.0b0.dist-info/RECORD,,
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
from django.conf import settings
|
|
2
|
-
from django.core.management.base import BaseCommand
|
|
3
|
-
|
|
4
|
-
from umap import websocket_server
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
class Command(BaseCommand):
|
|
8
|
-
help = "Run the websocket server"
|
|
9
|
-
|
|
10
|
-
def add_arguments(self, parser):
|
|
11
|
-
parser.add_argument(
|
|
12
|
-
"--host",
|
|
13
|
-
help="The server host to bind to.",
|
|
14
|
-
default=settings.WEBSOCKET_BACK_HOST,
|
|
15
|
-
)
|
|
16
|
-
parser.add_argument(
|
|
17
|
-
"--port",
|
|
18
|
-
help="The server port to bind to.",
|
|
19
|
-
default=settings.WEBSOCKET_BACK_PORT,
|
|
20
|
-
)
|
|
21
|
-
|
|
22
|
-
def handle(self, *args, **options):
|
|
23
|
-
websocket_server.run(options["host"], options["port"])
|