umap-project 1.10.0__py3-none-any.whl → 1.11.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/admin.py +7 -3
- umap/autocomplete.py +3 -5
- umap/bin/__init__.py +2 -5
- umap/decorators.py +4 -5
- umap/forms.py +5 -5
- umap/locale/en/LC_MESSAGES/django.po +23 -23
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +28 -27
- umap/management/commands/generate_js_locale.py +9 -11
- umap/management/commands/import_pictograms.py +49 -28
- umap/managers.py +5 -3
- umap/middleware.py +2 -3
- umap/migrations/0001_initial.py +204 -56
- umap/migrations/0002_tilelayer_tms.py +3 -4
- umap/migrations/0003_add_tilelayer.py +13 -9
- umap/migrations/0004_add_licence.py +3 -6
- umap/migrations/0005_remove_map_tilelayer.py +3 -4
- umap/migrations/0006_auto_20190407_0719.py +6 -5
- umap/migrations/0007_auto_20190416_1757.py +13 -5
- umap/migrations/0008_alter_map_settings.py +0 -1
- umap/migrations/0009_star.py +27 -8
- umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +20 -8
- umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +21 -8
- umap/migrations/0014_map_created_at.py +1 -1
- umap/migrations/0015_alter_pictogram_pictogram.py +17 -0
- umap/migrations/0016_pictogram_category.py +17 -0
- umap/models.py +9 -7
- umap/settings/base.py +1 -4
- umap/static/umap/base.css +59 -20
- umap/static/umap/content.css +2 -13
- umap/static/umap/favicons/apple-touch-icon.png +0 -0
- umap/static/umap/favicons/favicon.ico +0 -0
- umap/static/umap/favicons/icon-192.png +0 -0
- umap/static/umap/favicons/icon-512.png +0 -0
- umap/static/umap/favicons/icon.svg +5 -0
- umap/static/umap/img/16-white.svg +20 -9
- umap/static/umap/img/24-white.svg +2 -2
- umap/static/umap/img/source/16-white.svg +25 -13
- umap/static/umap/img/source/24-white.svg +5 -5
- umap/static/umap/js/umap.controls.js +15 -23
- umap/static/umap/js/umap.core.js +33 -24
- umap/static/umap/js/umap.features.js +24 -2
- umap/static/umap/js/umap.forms.js +182 -84
- umap/static/umap/js/umap.icon.js +19 -14
- umap/static/umap/js/umap.js +14 -32
- umap/static/umap/js/umap.layer.js +13 -2
- umap/static/umap/js/umap.popup.js +21 -0
- umap/static/umap/locale/am_ET.js +9 -4
- umap/static/umap/locale/am_ET.json +9 -4
- umap/static/umap/locale/ar.js +9 -4
- umap/static/umap/locale/ar.json +9 -4
- umap/static/umap/locale/ast.js +9 -4
- umap/static/umap/locale/ast.json +9 -4
- umap/static/umap/locale/bg.js +9 -4
- umap/static/umap/locale/bg.json +9 -4
- umap/static/umap/locale/br.js +20 -15
- umap/static/umap/locale/br.json +20 -15
- umap/static/umap/locale/ca.js +9 -4
- umap/static/umap/locale/ca.json +9 -4
- umap/static/umap/locale/cs_CZ.js +9 -4
- umap/static/umap/locale/cs_CZ.json +9 -4
- umap/static/umap/locale/da.js +9 -4
- umap/static/umap/locale/da.json +9 -4
- umap/static/umap/locale/de.js +9 -4
- umap/static/umap/locale/de.json +9 -4
- umap/static/umap/locale/el.js +9 -4
- umap/static/umap/locale/el.json +9 -4
- umap/static/umap/locale/en.js +9 -4
- umap/static/umap/locale/en.json +9 -4
- umap/static/umap/locale/en_US.json +9 -4
- umap/static/umap/locale/es.js +15 -10
- umap/static/umap/locale/es.json +15 -10
- umap/static/umap/locale/et.js +9 -4
- umap/static/umap/locale/et.json +9 -4
- umap/static/umap/locale/fa_IR.js +9 -4
- umap/static/umap/locale/fa_IR.json +9 -4
- umap/static/umap/locale/fi.js +9 -4
- umap/static/umap/locale/fi.json +9 -4
- umap/static/umap/locale/fr.js +10 -5
- umap/static/umap/locale/fr.json +10 -5
- umap/static/umap/locale/gl.js +9 -4
- umap/static/umap/locale/gl.json +9 -4
- umap/static/umap/locale/he.js +9 -4
- umap/static/umap/locale/he.json +9 -4
- umap/static/umap/locale/hr.js +9 -4
- umap/static/umap/locale/hr.json +9 -4
- umap/static/umap/locale/hu.js +64 -59
- umap/static/umap/locale/hu.json +64 -59
- umap/static/umap/locale/id.js +9 -4
- umap/static/umap/locale/id.json +9 -4
- umap/static/umap/locale/is.js +9 -4
- umap/static/umap/locale/is.json +9 -4
- umap/static/umap/locale/it.js +9 -4
- umap/static/umap/locale/it.json +9 -4
- umap/static/umap/locale/ja.js +9 -4
- umap/static/umap/locale/ja.json +9 -4
- umap/static/umap/locale/ko.js +9 -4
- umap/static/umap/locale/ko.json +9 -4
- umap/static/umap/locale/lt.js +9 -4
- umap/static/umap/locale/lt.json +9 -4
- umap/static/umap/locale/ms.js +15 -10
- umap/static/umap/locale/ms.json +15 -10
- umap/static/umap/locale/nl.js +9 -4
- umap/static/umap/locale/nl.json +9 -4
- umap/static/umap/locale/no.js +9 -4
- umap/static/umap/locale/no.json +9 -4
- umap/static/umap/locale/pl.js +9 -4
- umap/static/umap/locale/pl.json +9 -4
- umap/static/umap/locale/pl_PL.json +9 -4
- umap/static/umap/locale/pt.js +9 -4
- umap/static/umap/locale/pt.json +9 -4
- umap/static/umap/locale/pt_BR.js +9 -4
- umap/static/umap/locale/pt_BR.json +9 -4
- umap/static/umap/locale/pt_PT.js +9 -4
- umap/static/umap/locale/pt_PT.json +9 -4
- umap/static/umap/locale/ro.js +9 -4
- umap/static/umap/locale/ro.json +9 -4
- umap/static/umap/locale/ru.js +9 -4
- umap/static/umap/locale/ru.json +9 -4
- umap/static/umap/locale/si.js +55 -20
- umap/static/umap/locale/si.json +55 -20
- umap/static/umap/locale/sk_SK.js +9 -4
- umap/static/umap/locale/sk_SK.json +9 -4
- umap/static/umap/locale/sl.js +9 -4
- umap/static/umap/locale/sl.json +9 -4
- umap/static/umap/locale/sr.js +9 -4
- umap/static/umap/locale/sr.json +9 -4
- umap/static/umap/locale/sv.js +9 -4
- umap/static/umap/locale/sv.json +9 -4
- umap/static/umap/locale/th_TH.js +9 -4
- umap/static/umap/locale/th_TH.json +9 -4
- umap/static/umap/locale/tr.js +9 -4
- umap/static/umap/locale/tr.json +9 -4
- umap/static/umap/locale/uk_UA.js +9 -4
- umap/static/umap/locale/uk_UA.json +9 -4
- umap/static/umap/locale/vi.js +9 -4
- umap/static/umap/locale/vi.json +9 -4
- umap/static/umap/locale/vi_VN.json +9 -4
- umap/static/umap/locale/zh.js +9 -4
- umap/static/umap/locale/zh.json +9 -4
- umap/static/umap/locale/zh_CN.json +9 -4
- umap/static/umap/locale/zh_TW.Big5.json +9 -4
- umap/static/umap/locale/zh_TW.js +9 -4
- umap/static/umap/locale/zh_TW.json +9 -4
- umap/static/umap/map.css +104 -21
- umap/static/umap/nav.css +0 -1
- umap/static/umap/test/Controls.js +0 -1
- umap/static/umap/test/Feature.js +29 -0
- umap/static/umap/test/Map.Export.js +2 -127
- umap/static/umap/test/Util.js +10 -0
- umap/static/umap/test/_pre.js +2 -3
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +13 -2
- umap/static/umap/vendors/leaflet/leaflet-src.js +7144 -7144
- umap/templates/auth/user_form.html +2 -2
- umap/templates/base.html +11 -0
- umap/templates/umap/map_table.html +3 -3
- umap/templatetags/umap_tags.py +32 -34
- umap/tests/base.py +4 -4
- umap/tests/conftest.py +3 -6
- umap/tests/fixtures/circle.svg +4 -0
- umap/tests/fixtures/star.svg +4 -0
- umap/tests/integration/test_export_map.py +5 -18
- umap/tests/integration/test_picto.py +217 -0
- umap/tests/integration/test_slideshow.py +70 -0
- umap/tests/settings.py +11 -5
- umap/tests/test_datalayer.py +7 -6
- umap/tests/test_map.py +6 -5
- umap/tests/test_map_views.py +82 -10
- umap/tests/test_tilelayer.py +17 -11
- umap/tests/test_views.py +36 -9
- umap/urls.py +27 -4
- umap/utils.py +1 -2
- umap/views.py +67 -35
- umap/wsgi.py +2 -2
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/METADATA +11 -9
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/RECORD +180 -170
- umap/static/favicon.ico +0 -0
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/WHEEL +0 -0
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/entry_points.txt +0 -0
- {umap_project-1.10.0.dist-info → umap_project-1.11.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
umap/__init__.py,sha256=
|
|
2
|
-
umap/admin.py,sha256=
|
|
1
|
+
umap/__init__.py,sha256=wxi1d8fOEl2scnMci9RTh9OQ9YhelMzYhbmHa-viiXg,19
|
|
2
|
+
umap/admin.py,sha256=pE-e7Cxfjs7CxW0eL5_opTaT2rkN18LjZB9zfUVXmUU,562
|
|
3
3
|
umap/apps.py,sha256=5ssKqPUuNJlapaBmr4LY_HDb7J1NFCT3wzythxQOOfs,109
|
|
4
|
-
umap/autocomplete.py,sha256=
|
|
4
|
+
umap/autocomplete.py,sha256=WUsbsVBl_KzzEzxB4g3rAoS5-eEvCZGtelVzXeOFV90,444
|
|
5
5
|
umap/context_processors.py,sha256=HhRfnUElWwWCMk9vtXkyR3fpPcpagSpvRpqh8jYL8Lk,448
|
|
6
|
-
umap/decorators.py,sha256=
|
|
6
|
+
umap/decorators.py,sha256=qHNBLDPQevwyZUSD2bxTPOLT0LNkUPKC8RhLZAjvkns,2480
|
|
7
7
|
umap/fields.py,sha256=Zm8_2uAwdZx5tGOiTPOIXhsT__535tziKBJ-67GP2mw,869
|
|
8
|
-
umap/forms.py,sha256=
|
|
9
|
-
umap/managers.py,sha256
|
|
10
|
-
umap/middleware.py,sha256=
|
|
11
|
-
umap/models.py,sha256
|
|
12
|
-
umap/urls.py,sha256=
|
|
13
|
-
umap/utils.py,sha256=
|
|
14
|
-
umap/views.py,sha256=
|
|
15
|
-
umap/wsgi.py,sha256=
|
|
16
|
-
umap/bin/__init__.py,sha256=
|
|
8
|
+
umap/forms.py,sha256=bpNLMSsB1sHUcaf24MmUpwVdEz_SHy_ohfhQMoKwDzI,3128
|
|
9
|
+
umap/managers.py,sha256=-lBK0xYFRDfX76qDRdLnZOA8jEPYseEwIj8QOiHVM4w,243
|
|
10
|
+
umap/middleware.py,sha256=p8EPW_gYW8Wh2lk0DNIAkZQbYlBZugW7Yq4iiA7L4aE,514
|
|
11
|
+
umap/models.py,sha256=-w9tjK55XQK81XErTl74L2aJ3lGntx4y44OldAs7U_U,14737
|
|
12
|
+
umap/urls.py,sha256=0no_xoq6pn_DS5F2N5vIzYua3qSsw3wXLyudnxkc-50,6832
|
|
13
|
+
umap/utils.py,sha256=T36USx_plEaH-d-IlTOMc8c2HGyrNfXnYwkQ7ZELdWc,4367
|
|
14
|
+
umap/views.py,sha256=DpH-GRXkaEoqDDEmvObWjv0hn4BqPZguEG7JneHPo78,34469
|
|
15
|
+
umap/wsgi.py,sha256=mSba0LSaWFocs-7Fw-bDljb6-Bqh9yZRJU-sTi4dGIU,1131
|
|
16
|
+
umap/bin/__init__.py,sha256=iA3ON4A6NCpenrn3q2OgefUKF5QRFIQS-FtS0pxruI8,234
|
|
17
17
|
umap/locale/am_ET/LC_MESSAGES/django.mo,sha256=meGhTk_lZZMIr3_tA7B8CV_03hxqzkwEtR7h7I4flXk,5530
|
|
18
18
|
umap/locale/am_ET/LC_MESSAGES/django.po,sha256=9scDJOkryFZpfWdeOBPiQNPEMGHs9jWGNGLNtDVfNKg,11990
|
|
19
19
|
umap/locale/ar/LC_MESSAGES/django.mo,sha256=XcMbqHyvnn51Xf_Vb8BQ4sBhHz6FjJwZugyZ9Bsln9E,3324
|
|
@@ -35,7 +35,7 @@ umap/locale/de/LC_MESSAGES/django.po,sha256=ReuTKy-QEJ8VdTMdMWdEoz3V3G-hbhkqBp0E
|
|
|
35
35
|
umap/locale/el/LC_MESSAGES/django.mo,sha256=E92hV1UX0EeMmBmovDMcCx0j47nsACDVZCrEEsO5ubA,12471
|
|
36
36
|
umap/locale/el/LC_MESSAGES/django.po,sha256=uKEFi9JD-pm4Dhw1XDOs_ZeS_5sZ4tiDVHBmcCGrxjw,16535
|
|
37
37
|
umap/locale/en/LC_MESSAGES/django.mo,sha256=UXCQbz2AxBvh-IQ7bGgjoBnijo8h9DfE9107A-2Mgkk,337
|
|
38
|
-
umap/locale/en/LC_MESSAGES/django.po,sha256=
|
|
38
|
+
umap/locale/en/LC_MESSAGES/django.po,sha256=R8TUZpN4JOdO_tHawTTBMHBMCa2ZXySxZwLk4MmEfWQ,9404
|
|
39
39
|
umap/locale/es/LC_MESSAGES/django.mo,sha256=gsjvpwQiO7qnob757M1leKfs4PtTW1KIcXSfShnvgt4,9189
|
|
40
40
|
umap/locale/es/LC_MESSAGES/django.po,sha256=HluFU2opjbl0iWjX0SSDvYzS1zyuN7cGmPTfRp-tE5M,13353
|
|
41
41
|
umap/locale/et/LC_MESSAGES/django.mo,sha256=zVyI6fwSNUZl5ydLwjv4CR8t6Z7qMbmC3tU9uN3VmNI,5285
|
|
@@ -46,8 +46,8 @@ umap/locale/fa_IR/LC_MESSAGES/django.mo,sha256=rhsDYSi1mu_4ejZaBw2XzKpFP1gHkdZ6B
|
|
|
46
46
|
umap/locale/fa_IR/LC_MESSAGES/django.po,sha256=n-5L06dBH5PvDDfXyruXWeZhE4QkCnDAli5vwOzTnz0,13421
|
|
47
47
|
umap/locale/fi/LC_MESSAGES/django.mo,sha256=SUV6nc1FS8XtlKjGhn60NKEttPPRxJXIXUWwZMxRsEk,4925
|
|
48
48
|
umap/locale/fi/LC_MESSAGES/django.po,sha256=mF2LkD2bnvQR0DLyLSZRQPTVErBkuP5gLcu14poIJhM,11543
|
|
49
|
-
umap/locale/fr/LC_MESSAGES/django.mo,sha256=
|
|
50
|
-
umap/locale/fr/LC_MESSAGES/django.po,sha256=
|
|
49
|
+
umap/locale/fr/LC_MESSAGES/django.mo,sha256=IxQdG7xhyd1FYSmLpThi098Wta_JXo8IbtEq_4bSyFU,9334
|
|
50
|
+
umap/locale/fr/LC_MESSAGES/django.po,sha256=mMJ5_OBBsjrSUUJ3Dz77VN4GxOlQEizkPKmtTguy7Hs,13564
|
|
51
51
|
umap/locale/gl/LC_MESSAGES/django.mo,sha256=K5BtO5vpXvhqaeTEINh8vONoB_HDGmFapqjjhfnXmr4,6315
|
|
52
52
|
umap/locale/gl/LC_MESSAGES/django.po,sha256=WavSXp7AMcgZRKeHWCb9HjyZOO4_j6MKocXecogAK2U,11931
|
|
53
53
|
umap/locale/he/LC_MESSAGES/django.mo,sha256=QLCf7QiT1qYO56x1u4516hFIO4yMobkDcqpgVibeq-8,7005
|
|
@@ -111,48 +111,54 @@ umap/locale/zh_TW/LC_MESSAGES/django.po,sha256=c7_DDL-95WVLJyCHjyQ3Z7lr_GIlHXIle
|
|
|
111
111
|
umap/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
112
|
umap/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
113
113
|
umap/management/commands/anonymous_edit_url.py,sha256=hsWgPzZJmLCoDKTWziFUuwq-DdnSiXkSal2t2TIED-s,1070
|
|
114
|
-
umap/management/commands/generate_js_locale.py,sha256=
|
|
115
|
-
umap/management/commands/import_pictograms.py,sha256=
|
|
116
|
-
umap/migrations/0001_initial.py,sha256=
|
|
117
|
-
umap/migrations/0002_tilelayer_tms.py,sha256=
|
|
118
|
-
umap/migrations/0003_add_tilelayer.py,sha256=
|
|
119
|
-
umap/migrations/0004_add_licence.py,sha256=
|
|
120
|
-
umap/migrations/0005_remove_map_tilelayer.py,sha256=
|
|
121
|
-
umap/migrations/0006_auto_20190407_0719.py,sha256=
|
|
122
|
-
umap/migrations/0007_auto_20190416_1757.py,sha256=
|
|
123
|
-
umap/migrations/0008_alter_map_settings.py,sha256=
|
|
124
|
-
umap/migrations/0009_star.py,sha256=
|
|
125
|
-
umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py,sha256=
|
|
126
|
-
umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py,sha256=
|
|
114
|
+
umap/management/commands/generate_js_locale.py,sha256=wkf-PFIHS7m4ZhyL1ZRMBLqyUeY2SlOrTXS42tE0-bs,1281
|
|
115
|
+
umap/management/commands/import_pictograms.py,sha256=hRyUFAfgJSUgylVxZ5HfnscNZ16BnXU43ZioYcYZUr0,2376
|
|
116
|
+
umap/migrations/0001_initial.py,sha256=dMcXtTKPiA0IqXCrDVctH91Fe0hhc04NxmvcLAULyzE,8787
|
|
117
|
+
umap/migrations/0002_tilelayer_tms.py,sha256=E99JAu1K0NzwsCEJs1z5uGlBkBJmoVb9a3WBKjpLYlo,372
|
|
118
|
+
umap/migrations/0003_add_tilelayer.py,sha256=53r95Y13CvV0pXseYEnnqtPI4-Q0qcVldYMS-jFpPoE,833
|
|
119
|
+
umap/migrations/0004_add_licence.py,sha256=AQf6eUkpg4_68KGFw6XIhkgKz_B9nDgwVWHvEQspKXQ,512
|
|
120
|
+
umap/migrations/0005_remove_map_tilelayer.py,sha256=fxx4pJT7BFALWhLZz-XkA0GseLAOlfWQiUJapc_rXNY,317
|
|
121
|
+
umap/migrations/0006_auto_20190407_0719.py,sha256=84dw4zHyqdBFzaMOBAqfSVMpxd0GEhq4kf9aj_N_dQE,526
|
|
122
|
+
umap/migrations/0007_auto_20190416_1757.py,sha256=Wj_w9kuaMzsNEu4GAHkixZFC4joBfW0IUU5TDGbNw8g,676
|
|
123
|
+
umap/migrations/0008_alter_map_settings.py,sha256=V61UVf5APSG2fYUJdi-uAZ-yPybHGA9mvPrQVd02aUw,458
|
|
124
|
+
umap/migrations/0009_star.py,sha256=efWBWXVlWON_zFJeGQZVsklOi2jYrAg8n-jxzLxftlc,1322
|
|
125
|
+
umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py,sha256=uS7LBeD7QROB6UVnoHhsPalj1-lDGbWJFTNjwVejYCw,981
|
|
126
|
+
umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py,sha256=s8ZbY96TVEowFCK8x5FV755nKh3YYynFPLpqX_H94W0,1110
|
|
127
127
|
umap/migrations/0012_datalayer_settings.py,sha256=uolQNiWeOudROb5WQUUrOeJvwQpWWFDCUQvOxrwdwec,488
|
|
128
128
|
umap/migrations/0013_datalayer_edit_status.py,sha256=L4lnGyo9VyuyNv1sOxQuUKCTi3Qvu3QxB6fP4Yyqs84,665
|
|
129
|
-
umap/migrations/0014_map_created_at.py,sha256=
|
|
129
|
+
umap/migrations/0014_map_created_at.py,sha256=VcK1r2MNFJ5wt07_gRWJRf_fF22_GbYhpOdPeskGEio,680
|
|
130
|
+
umap/migrations/0015_alter_pictogram_pictogram.py,sha256=ABoM7PXhcO6R2AM_XH6KITyhnP_dtw9d2xc5XVJiH7c,392
|
|
131
|
+
umap/migrations/0016_pictogram_category.py,sha256=xSNApTToAXVzYSH28ZVqfZq8q0ODSI9czwcQRkTHcX0,416
|
|
130
132
|
umap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
133
|
umap/settings/__init__.py,sha256=bWfNzX2GIt602j8HdF2nDtpKbisq8ARS6B9jVd2QN6k,1771
|
|
132
|
-
umap/settings/base.py,sha256=
|
|
134
|
+
umap/settings/base.py,sha256=6976M9ivlRuXf7EpaSwLgZjB39oO7QwqRj3jlJyIX0Y,9664
|
|
133
135
|
umap/settings/dev.py,sha256=iGroLwlJM2EeqZ4HUC3DviUOgJy-SoULN1WB5AD4xFM,385
|
|
134
136
|
umap/settings/local.py.sample,sha256=IpV5j6T64rRK9M2OEr3_orM5Qc2iSUBniiR_2DB0GK4,3193
|
|
135
137
|
umap/static/.gitignore,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
136
|
-
umap/static/
|
|
137
|
-
umap/static/umap/base.css,sha256=5kzfS6qWsX6RxFPazaDGsGhp7T3elgnB2qFN8QndzMI,19484
|
|
138
|
+
umap/static/umap/base.css,sha256=IpSGz4YLbWszX-5wW0EInIwmRVtDbNs8uJl10OXuaSI,20383
|
|
138
139
|
umap/static/umap/bitbucket.png,sha256=Z-xsnM3QOUn9tJQ0RjPXCpALghrzaDDZP7wSePSjSr8,9125
|
|
139
|
-
umap/static/umap/content.css,sha256=
|
|
140
|
+
umap/static/umap/content.css,sha256=magun-6SM7VfYltzBS0tgauwOp1dAFlP76PLfnXak4s,6547
|
|
140
141
|
umap/static/umap/font.css,sha256=fYmTKNd_Ts6TrmBbnLRgyeUS4vpfxkEqhLR-pkd3KrA,904
|
|
141
142
|
umap/static/umap/github.png,sha256=Yiw6VX71qO87vNgJaDuirn3JVlUwrzIpkT9vbtROg1o,1564
|
|
142
|
-
umap/static/umap/map.css,sha256=
|
|
143
|
-
umap/static/umap/nav.css,sha256=
|
|
143
|
+
umap/static/umap/map.css,sha256=vWRtXRbwI4JUNsmmuA5hRshhcHADj3fWPK6Us5d8DT0,40024
|
|
144
|
+
umap/static/umap/nav.css,sha256=R4cFMZkgHmNHodyW1rEZmtopgkGboghd6Ut7ebQmihk,1514
|
|
144
145
|
umap/static/umap/openstreetmap.png,sha256=xccBb_RsN7uchm7fRowVLjrzmCtj1-1PLByurkdjcr8,19408
|
|
145
146
|
umap/static/umap/theme.css,sha256=gkbyghlT5kNfz0Qyg1JL7xalqvHVx321eO9qlnvcaAU,49
|
|
146
147
|
umap/static/umap/twitter.png,sha256=BnVH7PcYlgKW56KHSOMRPevji2DvhJmvzFjl3-iF7c0,3225
|
|
148
|
+
umap/static/umap/favicons/apple-touch-icon.png,sha256=xjhkAIZwNywTApzAgnwSvagpcm252katIaVnHIIC_LE,2776
|
|
149
|
+
umap/static/umap/favicons/favicon.ico,sha256=0jjg1MnZ2AdWFLKjEwZSf09TVXlqz6oNdtX4rRppHdA,15086
|
|
150
|
+
umap/static/umap/favicons/icon-192.png,sha256=saYoRLAaZNkHHntkmldXiptk9FEcaGWDO3N6HpYyw8w,2987
|
|
151
|
+
umap/static/umap/favicons/icon-512.png,sha256=h_VHiNf_wJWK6mQEQsx_FMMPj3DG7W65iBylCQrcTto,7516
|
|
152
|
+
umap/static/umap/favicons/icon.svg,sha256=SBXqk0YbFuGazMGBQyxRuYv1XLnqKUSBwf48TBM1qU0,390
|
|
147
153
|
umap/static/umap/font/FiraSans-Light.woff,sha256=BpuM9rShca7idiLmGAsWZhXcJcuyVULgOmR2uORNOY8,182984
|
|
148
154
|
umap/static/umap/font/FiraSans-Light.woff2,sha256=b9P588hmLKGEFmHzEJ5NQsTOlaSpFfFf8XhK7pfNt_o,129180
|
|
149
155
|
umap/static/umap/font/FiraSans-LightItalic.woff,sha256=KrCtvOQECD-z6QTULkBg4vv-c1Eo7s0X2IUzVkugeQY,191400
|
|
150
156
|
umap/static/umap/font/FiraSans-LightItalic.woff2,sha256=wzKvr3N8FAQZBmtqxHJX3iIeONALlwcnN-6AKcnRKAE,135744
|
|
151
157
|
umap/static/umap/font/FiraSans-SemiBold.woff,sha256=2xqgp3wksYsMYJGFPwJavE_Bl6Rhac6zQjAJhWZVNTo,198128
|
|
152
158
|
umap/static/umap/font/FiraSans-SemiBold.woff2,sha256=pogC-aUjxvQ8Ia1gp9ZMpal4uGNYoTamBDBkP70PSzY,140168
|
|
153
|
-
umap/static/umap/img/16-white.svg,sha256
|
|
159
|
+
umap/static/umap/img/16-white.svg,sha256=kv-O7n9IyY0RC3paS_-geZ8VDAThCRscEnxPygqrld4,28600
|
|
154
160
|
umap/static/umap/img/16.svg,sha256=llYxW8YrrQVBq5AhdDqM6eBHHu_LVcEMyOFc4D3p9wg,13888
|
|
155
|
-
umap/static/umap/img/24-white.svg,sha256=
|
|
161
|
+
umap/static/umap/img/24-white.svg,sha256=tq2MLPvVKz4h4dHCmMp1-_brBmudqyCcMcSShhnDh24,17550
|
|
156
162
|
umap/static/umap/img/24.svg,sha256=jpi6lDVbN89-zyH3VwNf0pOKzjOfuF9l9yPV-NpE1cI,25175
|
|
157
163
|
umap/static/umap/img/edit.svg,sha256=iePt4pB5hJacTvqNyXxAYyGLvXlShm8JKykH8M6ZTTg,554
|
|
158
164
|
umap/static/umap/img/icon-bg.png,sha256=EeliGSnA81n2CBPKELxRjCodV5Xyqy9yLaoacWNZkdQ,190
|
|
@@ -163,131 +169,131 @@ umap/static/umap/img/marker.png,sha256=0DYKyg5h8swIh80zYGOXcjP3QwFthMeHIO4AJv5V3
|
|
|
163
169
|
umap/static/umap/img/opensource.svg,sha256=hXEQkvJX_vxw2lZ5TU70vOomK_kJcW--WfYdlfvrWq0,473
|
|
164
170
|
umap/static/umap/img/osm.svg,sha256=v676T5hpZhLAFt-pK06jcnzAs9mvdHWtCx6iRvmaGbc,1997
|
|
165
171
|
umap/static/umap/img/search.gif,sha256=Ws7V8knHJGdxG5_12zfPoBweX6PjOjHzrzYY4eyAY-4,1472
|
|
166
|
-
umap/static/umap/img/source/16-white.svg,sha256=
|
|
172
|
+
umap/static/umap/img/source/16-white.svg,sha256=9RWSRRcOGLiAtw4Qtumk9SHlGsGKdoNjEFyRK9RfgaE,59619
|
|
167
173
|
umap/static/umap/img/source/16.svg,sha256=OJhsygxseWrjW-bL78wLSGbCrWmsN3zk26r-jYS4s5I,34037
|
|
168
|
-
umap/static/umap/img/source/24-white.svg,sha256=
|
|
174
|
+
umap/static/umap/img/source/24-white.svg,sha256=31n0rwyxcoJ69Mm2hvSAifQV0x00px0z-Jkf__UetnA,29369
|
|
169
175
|
umap/static/umap/img/source/24.svg,sha256=rocP2xyMQdigy8noiipCM8hJNOc9tvF4uoXUPFBAjxY,38901
|
|
170
176
|
umap/static/umap/js/umap.autocomplete.js,sha256=BwFdzOAzl_61JJMIM8CW2x2v78oxRvZZ7XQY8f53QVk,7937
|
|
171
177
|
umap/static/umap/js/umap.browser.js,sha256=xcuSjFAd7p-1fAPQTcAn1PvHP5CNc-0Iw9DXocf33Bw,4418
|
|
172
|
-
umap/static/umap/js/umap.controls.js,sha256=
|
|
173
|
-
umap/static/umap/js/umap.core.js,sha256=
|
|
178
|
+
umap/static/umap/js/umap.controls.js,sha256=aFzPGn9gDKFVfKW4GkvJI63T-YsmsotYHQkKfrXPQ8Q,52321
|
|
179
|
+
umap/static/umap/js/umap.core.js,sha256=wT4W8P0ODgCYykeZ2kxU0WCBPXdZbqZV3hffXE_YhuU,23136
|
|
174
180
|
umap/static/umap/js/umap.datalayer.permissions.js,sha256=CV5WfUVJVVkbj63KiFIvJN48hA9i723zYk7TVraO_gg,1922
|
|
175
|
-
umap/static/umap/js/umap.features.js,sha256=
|
|
176
|
-
umap/static/umap/js/umap.forms.js,sha256=
|
|
177
|
-
umap/static/umap/js/umap.icon.js,sha256=
|
|
178
|
-
umap/static/umap/js/umap.js,sha256=
|
|
179
|
-
umap/static/umap/js/umap.layer.js,sha256=
|
|
181
|
+
umap/static/umap/js/umap.features.js,sha256=HfVO3VqdKPg0E38di7LlTLXVf2QC3wkYp8DebFFNCPE,34160
|
|
182
|
+
umap/static/umap/js/umap.forms.js,sha256=vkjHsYkJvS8Zm_HcxKMYkLeNDNojjuDZMBRstQGCn3w,32510
|
|
183
|
+
umap/static/umap/js/umap.icon.js,sha256=SHnWd4mzWzOTVIgLaIMjZBTyz2MoCzqjL2w6YSs0BoM,6588
|
|
184
|
+
umap/static/umap/js/umap.js,sha256=KbqkL1PtI4CxQh_zQbFI1mjpXYrOb5x8ba-QvZ_NZ38,59279
|
|
185
|
+
umap/static/umap/js/umap.layer.js,sha256=YpnKIg3QydU7kw7khbywF_LH5i3RJl_4u6iBTzv6iBw,44986
|
|
180
186
|
umap/static/umap/js/umap.permissions.js,sha256=Cnvrvb3UXmVIR411uhpjH2RXTirg7dHlWkS5chQCKYA,6097
|
|
181
|
-
umap/static/umap/js/umap.popup.js,sha256=
|
|
187
|
+
umap/static/umap/js/umap.popup.js,sha256=1UxLawfP9tuHJvxTLzAjTg15xQgOhJs9hU5nkeK-DkI,7409
|
|
182
188
|
umap/static/umap/js/umap.slideshow.js,sha256=P5zByJfMJXROMmFLdSbVqATP0Mf6AGx4QtYpiCvhV-4,4421
|
|
183
189
|
umap/static/umap/js/umap.tableeditor.js,sha256=LE1D3OtZanY2HQ1j3R9V7wdmPrIBPt9FcGz5OhEzH14,4191
|
|
184
190
|
umap/static/umap/js/umap.ui.js,sha256=Fh3iSuZnWpdr2ZmAhL1NtfhsZos-Hj4qWpHY8kEzOQI,7637
|
|
185
191
|
umap/static/umap/js/umap.xhr.js,sha256=-HEti2JnTSExIfy2agAdoUGOvE7t3CzPHU9dPjEKYA4,8981
|
|
186
|
-
umap/static/umap/locale/am_ET.js,sha256=
|
|
187
|
-
umap/static/umap/locale/am_ET.json,sha256=
|
|
188
|
-
umap/static/umap/locale/ar.js,sha256=
|
|
189
|
-
umap/static/umap/locale/ar.json,sha256=
|
|
190
|
-
umap/static/umap/locale/ast.js,sha256=
|
|
191
|
-
umap/static/umap/locale/ast.json,sha256=
|
|
192
|
-
umap/static/umap/locale/bg.js,sha256=
|
|
193
|
-
umap/static/umap/locale/bg.json,sha256=
|
|
194
|
-
umap/static/umap/locale/br.js,sha256=
|
|
195
|
-
umap/static/umap/locale/br.json,sha256
|
|
196
|
-
umap/static/umap/locale/ca.js,sha256=
|
|
197
|
-
umap/static/umap/locale/ca.json,sha256=
|
|
198
|
-
umap/static/umap/locale/cs_CZ.js,sha256=
|
|
199
|
-
umap/static/umap/locale/cs_CZ.json,sha256=
|
|
200
|
-
umap/static/umap/locale/da.js,sha256=
|
|
201
|
-
umap/static/umap/locale/da.json,sha256=
|
|
202
|
-
umap/static/umap/locale/de.js,sha256=
|
|
203
|
-
umap/static/umap/locale/de.json,sha256=
|
|
204
|
-
umap/static/umap/locale/el.js,sha256=
|
|
205
|
-
umap/static/umap/locale/el.json,sha256=
|
|
206
|
-
umap/static/umap/locale/en.js,sha256=
|
|
207
|
-
umap/static/umap/locale/en.json,sha256=
|
|
208
|
-
umap/static/umap/locale/en_US.json,sha256=
|
|
209
|
-
umap/static/umap/locale/es.js,sha256=
|
|
210
|
-
umap/static/umap/locale/es.json,sha256=
|
|
211
|
-
umap/static/umap/locale/et.js,sha256=
|
|
212
|
-
umap/static/umap/locale/et.json,sha256=
|
|
192
|
+
umap/static/umap/locale/am_ET.js,sha256=Xws2J2_SXY3vdtoV-yqKCUcN27Pi2vdk29B8xG0UqHk,29894
|
|
193
|
+
umap/static/umap/locale/am_ET.json,sha256=uf6yyyxDRZfNI_7iBdAISLQdRyJAs1iFvFvA5-bNN1g,29823
|
|
194
|
+
umap/static/umap/locale/ar.js,sha256=_puZglhIyVlgmCYGiPJbxVfAkuTAUCVItVGtsCkUG7g,25865
|
|
195
|
+
umap/static/umap/locale/ar.json,sha256=4cPT-ry53LKZ1XcoCkiNX_IflWTW4qXayCYoMUgxTdM,25800
|
|
196
|
+
umap/static/umap/locale/ast.js,sha256=VMBkl9Xn1kWAPaaXIFxJcPHBniVYktlEuNG2H-zGTsc,25411
|
|
197
|
+
umap/static/umap/locale/ast.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
|
|
198
|
+
umap/static/umap/locale/bg.js,sha256=pbbTVwfe0NazeTeSl_b_x7nxfsllredrcBwPhCkH9g0,28998
|
|
199
|
+
umap/static/umap/locale/bg.json,sha256=ZlRPnGg8HfafhbAMnll8vBvB9kNu9CTOuR2r9Qv4BnA,28933
|
|
200
|
+
umap/static/umap/locale/br.js,sha256=48qdHUg-nfMGJGic4FJk21We2FUnqfBQUA9ImQC9xZk,26834
|
|
201
|
+
umap/static/umap/locale/br.json,sha256=tPe6bkKvGCu_UjHpVhsRXghcE5VufRQFYwhchvy7QjI,26769
|
|
202
|
+
umap/static/umap/locale/ca.js,sha256=lokxnicm7ZgsKUvRGPHdXTy6tkXSFK32QhQhR3Zd79g,26444
|
|
203
|
+
umap/static/umap/locale/ca.json,sha256=9WYUzbYSvZCzmJq-UZTKvOdcTFyusc9zbnPzlu6ExGU,26379
|
|
204
|
+
umap/static/umap/locale/cs_CZ.js,sha256=ccLG9r2HKQiExuiegtlaSVOAa9S5Otc1LUhgrVjIg0I,27578
|
|
205
|
+
umap/static/umap/locale/cs_CZ.json,sha256=jXCI2_cyZvtWvtTqkN12ja2V7YqtYkpwR9LHD65mTcE,27507
|
|
206
|
+
umap/static/umap/locale/da.js,sha256=gUd33-hIIssQCJWU0swEfz1DWCOKvfkwHYcfAIJi-RY,25779
|
|
207
|
+
umap/static/umap/locale/da.json,sha256=lL33eqvoz1KnDOc8-aOV_l5qqyr3GU_N2TIFu-onyN8,25714
|
|
208
|
+
umap/static/umap/locale/de.js,sha256=ms2fDzqNznQhS6H7FiSM-ByBxhdYvFA_P8iB3Sx9tog,27199
|
|
209
|
+
umap/static/umap/locale/de.json,sha256=eulGYqY5pF6mU8wggZFyseG252c0lP_Xjyk2oniL-vU,27134
|
|
210
|
+
umap/static/umap/locale/el.js,sha256=LEDlH7ICmJUlTd-keFJZStN29EKZsded3PlKzMA_KXw,36863
|
|
211
|
+
umap/static/umap/locale/el.json,sha256=JuHZzWlFNuicT9LnfvnkwqRAsSFP9j1WKlilLg46fsM,36798
|
|
212
|
+
umap/static/umap/locale/en.js,sha256=iUYZlF_0nCzsPpX4HKEqg6ustECzdQ1fBq2Z4RC7cnQ,25411
|
|
213
|
+
umap/static/umap/locale/en.json,sha256=qKLfCKuCSmL2o8eqCa50XG8vVlh3aDc5nCZQJ1XxeQ8,25346
|
|
214
|
+
umap/static/umap/locale/en_US.json,sha256=MuNd-Ri0UujQyVmEJ7gD-4tm11eVDnS5Py37pI8RPRU,25063
|
|
215
|
+
umap/static/umap/locale/es.js,sha256=WQsq7L0octeT2LUZCTC9_7NWkf_3Cg-1clQqTRKJFN8,27980
|
|
216
|
+
umap/static/umap/locale/es.json,sha256=DrN9nfAkXUP618NPiuY2bjNC5KnboRLlTRqhEsPFzLU,27915
|
|
217
|
+
umap/static/umap/locale/et.js,sha256=YcngFQYpUvaCml6aCEpNrA4KXkIzZOiYyKqnW-AXlyM,25624
|
|
218
|
+
umap/static/umap/locale/et.json,sha256=nuvFpHyOjnCXJA0R-mrEQD3mzndL4Rgi13Bl8R_Wmao,25559
|
|
213
219
|
umap/static/umap/locale/eu.js,sha256=NZYhxkWnzd5Kx14p5nSpNt9wNOsQvTGGrYrrxQ321Vs,24242
|
|
214
220
|
umap/static/umap/locale/eu.json,sha256=7ZbrluA4I-_HLGUqOLMABfAp_ZmDQJVsmmd4V6PlQMQ,24177
|
|
215
|
-
umap/static/umap/locale/fa_IR.js,sha256=
|
|
216
|
-
umap/static/umap/locale/fa_IR.json,sha256=
|
|
217
|
-
umap/static/umap/locale/fi.js,sha256=
|
|
218
|
-
umap/static/umap/locale/fi.json,sha256=
|
|
219
|
-
umap/static/umap/locale/fr.js,sha256=
|
|
220
|
-
umap/static/umap/locale/fr.json,sha256=
|
|
221
|
-
umap/static/umap/locale/gl.js,sha256=
|
|
222
|
-
umap/static/umap/locale/gl.json,sha256=
|
|
223
|
-
umap/static/umap/locale/he.js,sha256=
|
|
224
|
-
umap/static/umap/locale/he.json,sha256=
|
|
225
|
-
umap/static/umap/locale/hr.js,sha256=
|
|
226
|
-
umap/static/umap/locale/hr.json,sha256=
|
|
227
|
-
umap/static/umap/locale/hu.js,sha256=
|
|
228
|
-
umap/static/umap/locale/hu.json,sha256=
|
|
229
|
-
umap/static/umap/locale/id.js,sha256=
|
|
230
|
-
umap/static/umap/locale/id.json,sha256=
|
|
231
|
-
umap/static/umap/locale/is.js,sha256=
|
|
232
|
-
umap/static/umap/locale/is.json,sha256=
|
|
233
|
-
umap/static/umap/locale/it.js,sha256=
|
|
234
|
-
umap/static/umap/locale/it.json,sha256=
|
|
235
|
-
umap/static/umap/locale/ja.js,sha256=
|
|
236
|
-
umap/static/umap/locale/ja.json,sha256=
|
|
237
|
-
umap/static/umap/locale/ko.js,sha256=
|
|
238
|
-
umap/static/umap/locale/ko.json,sha256=
|
|
239
|
-
umap/static/umap/locale/lt.js,sha256=
|
|
240
|
-
umap/static/umap/locale/lt.json,sha256=
|
|
241
|
-
umap/static/umap/locale/ms.js,sha256=
|
|
242
|
-
umap/static/umap/locale/ms.json,sha256=
|
|
243
|
-
umap/static/umap/locale/nl.js,sha256=
|
|
244
|
-
umap/static/umap/locale/nl.json,sha256=
|
|
245
|
-
umap/static/umap/locale/no.js,sha256=
|
|
246
|
-
umap/static/umap/locale/no.json,sha256=
|
|
247
|
-
umap/static/umap/locale/pl.js,sha256=
|
|
248
|
-
umap/static/umap/locale/pl.json,sha256=
|
|
249
|
-
umap/static/umap/locale/pl_PL.json,sha256=
|
|
250
|
-
umap/static/umap/locale/pt.js,sha256=
|
|
251
|
-
umap/static/umap/locale/pt.json,sha256=
|
|
252
|
-
umap/static/umap/locale/pt_BR.js,sha256
|
|
253
|
-
umap/static/umap/locale/pt_BR.json,sha256
|
|
254
|
-
umap/static/umap/locale/pt_PT.js,sha256=
|
|
255
|
-
umap/static/umap/locale/pt_PT.json,sha256=
|
|
256
|
-
umap/static/umap/locale/ro.js,sha256=
|
|
257
|
-
umap/static/umap/locale/ro.json,sha256=
|
|
258
|
-
umap/static/umap/locale/ru.js,sha256=
|
|
259
|
-
umap/static/umap/locale/ru.json,sha256=
|
|
260
|
-
umap/static/umap/locale/si.js,sha256=
|
|
261
|
-
umap/static/umap/locale/si.json,sha256=
|
|
262
|
-
umap/static/umap/locale/sk_SK.js,sha256
|
|
263
|
-
umap/static/umap/locale/sk_SK.json,sha256=
|
|
264
|
-
umap/static/umap/locale/sl.js,sha256=
|
|
265
|
-
umap/static/umap/locale/sl.json,sha256=
|
|
266
|
-
umap/static/umap/locale/sr.js,sha256=
|
|
267
|
-
umap/static/umap/locale/sr.json,sha256=
|
|
268
|
-
umap/static/umap/locale/sv.js,sha256=
|
|
269
|
-
umap/static/umap/locale/sv.json,sha256=
|
|
270
|
-
umap/static/umap/locale/th_TH.js,sha256=
|
|
271
|
-
umap/static/umap/locale/th_TH.json,sha256=
|
|
272
|
-
umap/static/umap/locale/tr.js,sha256=
|
|
273
|
-
umap/static/umap/locale/tr.json,sha256=
|
|
274
|
-
umap/static/umap/locale/uk_UA.js,sha256=
|
|
275
|
-
umap/static/umap/locale/uk_UA.json,sha256=
|
|
276
|
-
umap/static/umap/locale/vi.js,sha256=
|
|
277
|
-
umap/static/umap/locale/vi.json,sha256=
|
|
278
|
-
umap/static/umap/locale/vi_VN.json,sha256=
|
|
279
|
-
umap/static/umap/locale/zh.js,sha256=
|
|
280
|
-
umap/static/umap/locale/zh.json,sha256=
|
|
281
|
-
umap/static/umap/locale/zh_CN.json,sha256=
|
|
282
|
-
umap/static/umap/locale/zh_TW.Big5.json,sha256=
|
|
283
|
-
umap/static/umap/locale/zh_TW.js,sha256=
|
|
284
|
-
umap/static/umap/locale/zh_TW.json,sha256=
|
|
221
|
+
umap/static/umap/locale/fa_IR.js,sha256=05eZouZ3v6ccmcTq0lteekkzrJeLLO70PIMgBOroik4,32295
|
|
222
|
+
umap/static/umap/locale/fa_IR.json,sha256=DpCFNcC3TLklD8tLvp8AKvUdmwPt8w9wR84Lna5mNkg,32224
|
|
223
|
+
umap/static/umap/locale/fi.js,sha256=s0qYlBidVavypuVuvV3WYA8KLopFg79ycTqPWS5TBnM,26381
|
|
224
|
+
umap/static/umap/locale/fi.json,sha256=ILbaqBmNeDuKl6Sf8aU-W1rKZtwSM-AphdsOZcyUir0,26316
|
|
225
|
+
umap/static/umap/locale/fr.js,sha256=OGIW3953quxXkjFK0a6F7RwmbaVgwwFGuQQ6ufD8TaU,27805
|
|
226
|
+
umap/static/umap/locale/fr.json,sha256=LZAAhPRwF5xKj5yn47pKBkx9T7ltyhwx1_-raZqyADw,27740
|
|
227
|
+
umap/static/umap/locale/gl.js,sha256=Ia-ssPwrIl-dHJrKHWSsl2y6eA0aGXHs4QYEecpfwx0,26981
|
|
228
|
+
umap/static/umap/locale/gl.json,sha256=Evxnkg72uxYh7HT8iPvWj8cIhPJN-CZc_WjB9nIYlWg,26916
|
|
229
|
+
umap/static/umap/locale/he.js,sha256=snIVvXegd9bFWcEbs7Y5UxlgK02Yv_5FrRtzvpdt_9c,29292
|
|
230
|
+
umap/static/umap/locale/he.json,sha256=OFQrbOs0-0Vpx_0ziAQGzcUKZ-zwlIwLOAJG3OcX7c4,29227
|
|
231
|
+
umap/static/umap/locale/hr.js,sha256=jR0U0EKvhFDzHDOwkifgiBarPUwsHzsB53IrIISyx_U,25597
|
|
232
|
+
umap/static/umap/locale/hr.json,sha256=BdM4fpi_Sr0sHpc1c3L-PgpNWU0nmd1shpWi4HXCXG0,25532
|
|
233
|
+
umap/static/umap/locale/hu.js,sha256=AH8Jq0ZNWItQ46254UKEB-1Bq6IFHsTUd6gXU6uFIS8,29028
|
|
234
|
+
umap/static/umap/locale/hu.json,sha256=s7soXKVg2yzWpTMoYbu-nJuYPSQ6knKCz8kQlcRpUfg,28963
|
|
235
|
+
umap/static/umap/locale/id.js,sha256=Z6k_wOag_HEPqASNqO3wEdVwtXCBq9kgGBhC-NvqRgE,25409
|
|
236
|
+
umap/static/umap/locale/id.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
|
|
237
|
+
umap/static/umap/locale/is.js,sha256=3rqZPXDow79bHaFRNnBwiDtrjtLQWvyhwXON4EZ_41A,26883
|
|
238
|
+
umap/static/umap/locale/is.json,sha256=B-96OiqefLZHAb521oMZ-DvCF8lAiF9lOhZgYQqwBcs,26818
|
|
239
|
+
umap/static/umap/locale/it.js,sha256=h_0zgkPEvm5eHQVKCaflDtUSCO67B5AT3aWXBCAL4Tk,27931
|
|
240
|
+
umap/static/umap/locale/it.json,sha256=agkQp2LzhDMFPvRBiqM23rzRg_bKw8zXEbMAKR_g0Rs,27866
|
|
241
|
+
umap/static/umap/locale/ja.js,sha256=6jPE3NYQqD-kXevQUOfV7D2qRriLwkfSaao4VIv7Yc4,28364
|
|
242
|
+
umap/static/umap/locale/ja.json,sha256=gb3quK9k4LyZ28FEm1dof7_2BgKoIpQKtDWho-dcYGk,28299
|
|
243
|
+
umap/static/umap/locale/ko.js,sha256=QyOoTg2C_WinCA2dqeyBtLH1IcO9fVabOfrQEfrTqYs,25651
|
|
244
|
+
umap/static/umap/locale/ko.json,sha256=SuCtq0m7t_uEcDV6vXdUsOYNhNKCWYKvMhpB9N9UtQE,25586
|
|
245
|
+
umap/static/umap/locale/lt.js,sha256=jic87KBJLdZUTryyPGIXd5Cxv3GIDxs9zjFiiqruR58,26320
|
|
246
|
+
umap/static/umap/locale/lt.json,sha256=Vf7rMQ12vzdH0jJZJDjeRCQLqRPEd7A8wRat46g2uwA,26255
|
|
247
|
+
umap/static/umap/locale/ms.js,sha256=CI2r8dgXKwXz6k-aWvFLIhCtr2dy-c0cTEFNJL6UAk0,26745
|
|
248
|
+
umap/static/umap/locale/ms.json,sha256=I0wU8s2gt1jOhdnxrvixZC3PgnQm5UmtAW4NJgW5FRc,26680
|
|
249
|
+
umap/static/umap/locale/nl.js,sha256=KP4_-ABmAqNmWWoKJWMOoaNxhbEZ8pn3GQADQ9ZJWqg,26896
|
|
250
|
+
umap/static/umap/locale/nl.json,sha256=AO-g8t3jcsqsZ5eCT5XIXzKMqDq8Ux44nQURcRZqCRI,26831
|
|
251
|
+
umap/static/umap/locale/no.js,sha256=MWLrpPIRTFOmgO4fdbSToj7NIM4yNJgqZy2laB54Wag,25662
|
|
252
|
+
umap/static/umap/locale/no.json,sha256=O_kQtbsijC0NBDqVxJtedsAktnU4zGa-KRUNuz6cdVM,25597
|
|
253
|
+
umap/static/umap/locale/pl.js,sha256=N7YBJ2C--e85x9566g94cjWCkMZHD-bghbqMBS3oaCQ,27046
|
|
254
|
+
umap/static/umap/locale/pl.json,sha256=wy8ORuERdeLKMLFLYRpBRdVhO42NdhRgKNVIygrzmb4,26981
|
|
255
|
+
umap/static/umap/locale/pl_PL.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
|
|
256
|
+
umap/static/umap/locale/pt.js,sha256=lg4lLe3tIOjf3Jr0rMAVSDRCIjqIRTiLAE3ueg2_qeI,26968
|
|
257
|
+
umap/static/umap/locale/pt.json,sha256=2T9IuOznV77P6oQyECA8Xwk_TRISGp78CqXRVFsmBD4,26903
|
|
258
|
+
umap/static/umap/locale/pt_BR.js,sha256=tTLbkbQfVT8UEN3TkykzuOWjiaNspepQewVwUIwodZ0,26962
|
|
259
|
+
umap/static/umap/locale/pt_BR.json,sha256=-LoEJQ74-Y4z0JZZ0K742PSo0ICOweafjeyBFTvVsdo,26891
|
|
260
|
+
umap/static/umap/locale/pt_PT.js,sha256=WQQzHd9OgQVv_S494cnFjhevtHmd54TT-5xSdkiT_gY,26974
|
|
261
|
+
umap/static/umap/locale/pt_PT.json,sha256=vyB8BzhWQ8IteoB5IOq4pFtZsHOVtAfFXcu6nmvhLmY,26903
|
|
262
|
+
umap/static/umap/locale/ro.js,sha256=3Vnwh95YbYGSPvkd3ZYZzEfmhimMCyWvYkbfqOq77PE,25459
|
|
263
|
+
umap/static/umap/locale/ro.json,sha256=mw2On_in54o0M9aGAFNDP-td1Ap_ouki322Wv6KPIzk,25394
|
|
264
|
+
umap/static/umap/locale/ru.js,sha256=EGsuZl4I2UjsBb530XrJCP-5-Ja3_gVEckMoi0NFCZI,33644
|
|
265
|
+
umap/static/umap/locale/ru.json,sha256=z3YLYfu5B8hQEFcxsCO8mB8iRKb6Kk1g6lNrKdjefxg,33579
|
|
266
|
+
umap/static/umap/locale/si.js,sha256=_Wa9_18OzdnqGUvqbq0PDKC0pTGH6FhAw0vEZrkoxEQ,25799
|
|
267
|
+
umap/static/umap/locale/si.json,sha256=nXKIS9TV2eY76aWr5ylKIXQHaTzikUu8i4qmSV7SnJQ,25734
|
|
268
|
+
umap/static/umap/locale/sk_SK.js,sha256=H0Ux914dIh0sB-ypCtBwadAx16XHX0E-P-aF9wQQiuI,26863
|
|
269
|
+
umap/static/umap/locale/sk_SK.json,sha256=5qfj9CstswultoONWVM8oJOoR1nk3BTUTBZLGWnPRsk,26792
|
|
270
|
+
umap/static/umap/locale/sl.js,sha256=U2ehYnNZ6OvV54IroZWU_1JJH1pUigWHNGeRflZH9Qc,26688
|
|
271
|
+
umap/static/umap/locale/sl.json,sha256=r4aO_Qn2t5k0MyfZYwjsL7AoeQDd7767jzBi499fhM4,26623
|
|
272
|
+
umap/static/umap/locale/sr.js,sha256=WmPORXoe7v2XUIJBcJ03pbCpg1nt8K_vwkCXZRvXgdw,30008
|
|
273
|
+
umap/static/umap/locale/sr.json,sha256=Q5-BpMesnvjz07oYkkQcfoHQb-t8hN73Wkm134qm9fA,29943
|
|
274
|
+
umap/static/umap/locale/sv.js,sha256=D6ojUqp3AYAaEN1X4ZOBr_YtRfYLhY1jfEskO04OFDE,26643
|
|
275
|
+
umap/static/umap/locale/sv.json,sha256=gej96C77ks1Ta1700SNjs0-phQdPXhkQ6j33top7v3g,26578
|
|
276
|
+
umap/static/umap/locale/th_TH.js,sha256=nggyczgehV66IEALQp4uilE-wsQm_BOq59sb1OW0cd4,25415
|
|
277
|
+
umap/static/umap/locale/th_TH.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
|
|
278
|
+
umap/static/umap/locale/tr.js,sha256=z_gnYd3RYV8tJmBsjjyHE_lpxh8lf-S7kwca0kIIC7s,27154
|
|
279
|
+
umap/static/umap/locale/tr.json,sha256=LlvQbhh1EzTffgdf-4Od9Q654pCrGBIaXlXLCl-kaz0,27089
|
|
280
|
+
umap/static/umap/locale/uk_UA.js,sha256=1LEXXPz09b4ic9p99KU58HpFOUZdsjzXsLpsS6aScFo,33256
|
|
281
|
+
umap/static/umap/locale/uk_UA.json,sha256=lpio66UsabOEtDO2xj2zDjqKixC_ZBzluPZxlpZ-xoo,33185
|
|
282
|
+
umap/static/umap/locale/vi.js,sha256=ZfTkAzc8vlVla1BSOIw1ji32Z9wi1QEz3g7uWkeoqU8,25753
|
|
283
|
+
umap/static/umap/locale/vi.json,sha256=_B63yEGc9jNqoKVDU8OnDOaXJZs8QjZPkC5jSAMtxoY,25688
|
|
284
|
+
umap/static/umap/locale/vi_VN.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
|
|
285
|
+
umap/static/umap/locale/zh.js,sha256=LT2HtGQDVPHP17K4cLcxMliUVI6WKg_47ATzWA8ybvY,25041
|
|
286
|
+
umap/static/umap/locale/zh.json,sha256=2R3kFcZ44eZRz4ULNiF-CenKaW3zTd30AVyiZOi8eqk,24976
|
|
287
|
+
umap/static/umap/locale/zh_CN.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
|
|
288
|
+
umap/static/umap/locale/zh_TW.Big5.json,sha256=TcmPSNErGN_fMciABYqd7IHyBTYs_LFj5VBZ7fmwsBg,25344
|
|
289
|
+
umap/static/umap/locale/zh_TW.js,sha256=Webv1vL-rKDTyDl8Wq74YbscK0W4XnpEcjeyDX77xLo,25002
|
|
290
|
+
umap/static/umap/locale/zh_TW.json,sha256=OpBZwtIgPdUD_YPFT41K7A8L2Wamzm8DCdrCUEE248I,24931
|
|
285
291
|
umap/static/umap/test/.eslintrc,sha256=zxYJhhVZ0wLRZ5qxM3yYJTGq_c134VHa8J2hplugqQ0,464
|
|
286
292
|
umap/static/umap/test/Choropleth.js,sha256=_4SMYFErWeuEjswt28GjseByotonFQ8zuHYiyqmlkuI,5340
|
|
287
|
-
umap/static/umap/test/Controls.js,sha256=
|
|
293
|
+
umap/static/umap/test/Controls.js,sha256=cfLfIzCWawKaVRRFmyFS5pUDySDIDoJSR6tQ4eH3hEw,3516
|
|
288
294
|
umap/static/umap/test/DataLayer.js,sha256=gIVayR02wpwx0HSxLwtVGdaPydD_2SOjVz-iYA2MKeA,15722
|
|
289
|
-
umap/static/umap/test/Feature.js,sha256=
|
|
290
|
-
umap/static/umap/test/Map.Export.js,sha256=
|
|
295
|
+
umap/static/umap/test/Feature.js,sha256=D9AiFKCsVCJwqp280i-LhPAhFqfL_Ov8XJE3qivVOFo,12472
|
|
296
|
+
umap/static/umap/test/Map.Export.js,sha256=FLMpPM0PwKWykfevcoL0lCnFRsSqtzfUZ_F9emPyBH4,5086
|
|
291
297
|
umap/static/umap/test/Map.Init.js,sha256=g-u-0Oe8ucGL9ihZXBBT_S-ji5AG8Wwm4XeqqcniWyg,1589
|
|
292
298
|
umap/static/umap/test/Map.js,sha256=fkyT_XIIh8LsZcyFDPTOUW9IB84j7sqT1WuX4UM6HQE,17727
|
|
293
299
|
umap/static/umap/test/Marker.js,sha256=cuMzi2s6yJ4v_kWsn5vOnCfnWiFip__0RE3G-JqJuQ4,4179
|
|
@@ -295,8 +301,8 @@ umap/static/umap/test/Permissions.js,sha256=D2zw97L1bqIwZSG30r0NnbS1YLxGiCNQIKWm
|
|
|
295
301
|
umap/static/umap/test/Polygon.js,sha256=EcyZ-Gnv_kOs3FVhN9O77w_qX4WozQPDtHedRaUduxA,12614
|
|
296
302
|
umap/static/umap/test/Polyline.js,sha256=_mavFZOUdhUkVTo5JVa_tljWrxRjeTlI5k19KXZIEao,13980
|
|
297
303
|
umap/static/umap/test/TableEditor.js,sha256=t0TJvhMLAu4g1lfereKWODz0G8rK4KspZn7xTWZIKFk,3216
|
|
298
|
-
umap/static/umap/test/Util.js,sha256=
|
|
299
|
-
umap/static/umap/test/_pre.js,sha256=
|
|
304
|
+
umap/static/umap/test/Util.js,sha256=UOl5utosvgcyvCCDHy7vHdVfgN2RK6yawy743moChZE,17937
|
|
305
|
+
umap/static/umap/test/_pre.js,sha256=JZ3NtZlyt4hrOR5_VOeK1qcaL9a7odofAqVpPc_yDmw,13095
|
|
300
306
|
umap/static/umap/test/index.html,sha256=LQe62gEntHY4LOAX_49Y8HYwnQVFUNTGWolwFoaKDyw,5756
|
|
301
307
|
umap/static/umap/vendors/choropleth/choropleth.js,sha256=gayHzV6SB_MNdm48-ZANMOcAFkXw_rqaDUYkOWW0EkI,57721
|
|
302
308
|
umap/static/umap/vendors/chroma/chroma.min.js,sha256=oZqg3zt5dAKHJLJmbYMRoias7cZakJR8e8Vu7LmjZ60,46174
|
|
@@ -315,7 +321,7 @@ umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css,sha256=eVKDGO_G2bIJvf_o
|
|
|
315
321
|
umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js,sha256=ati65azw8WxPG70b4JblFSHgD-fJ0ytriQEzC5tJWCM,9141
|
|
316
322
|
umap/static/umap/vendors/editinosm/edit-in-osm.png,sha256=xsQrWBc8olICRKg-bt7auEoceoCoWWZxm5OmAHSE2PM,3340
|
|
317
323
|
umap/static/umap/vendors/flat-drop-files/flatdropfiles.umd.js,sha256=zB9GhNsR_71RiaBxHmyrtVNemX458bFzxgSKroPa-qw,3691
|
|
318
|
-
umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js,sha256=
|
|
324
|
+
umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js,sha256=YgcuELqOzpJjBz4AmXAZp6XKEQGYeRdpJ0sm_kZf8Dw,12432
|
|
319
325
|
umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js,sha256=_VGiFGzaidNadoKY4_8zFXP_OqGdajjpB-0vNHRz33o,5041
|
|
320
326
|
umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js,sha256=RQN1bmEq_28pzVG8Csu34O677VNj5_1xl1wUGyDjMuo,3654
|
|
321
327
|
umap/static/umap/vendors/fullscreen/fullscreen.png,sha256=yDtz-dhjuAoo6q9xc00-_XNTrGwEWrN80pOneFdol4g,299
|
|
@@ -327,7 +333,7 @@ umap/static/umap/vendors/heat/leaflet-heat.js,sha256=65UqrlgGoRAnKfKRuriH3eeDrOh
|
|
|
327
333
|
umap/static/umap/vendors/i18n/Leaflet.i18n.js,sha256=2_Ztz6WBwqg5fdzoVOvB8-b2kzMiQJqpa6K4tcG1aOQ,1328
|
|
328
334
|
umap/static/umap/vendors/leaflet/leaflet-src.esm.js,sha256=Oe6TRk8R_jhHE35QwNyBifcGxGDjaYnqeHG_fVQPMwY,424589
|
|
329
335
|
umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map,sha256=lxY34ye1PfsolFQ8pTsEtlgBJ4tW7panCBRsm35HNbs,866200
|
|
330
|
-
umap/static/umap/vendors/leaflet/leaflet-src.js,sha256=
|
|
336
|
+
umap/static/umap/vendors/leaflet/leaflet-src.js,sha256=Y0Ki5d8X0X1H2YiS590G4GgQTUnf6kP26s5XsJ2w76Q,455791
|
|
331
337
|
umap/static/umap/vendors/leaflet/leaflet-src.js.map,sha256=l7cBxd_w6YZOXEWKixXC7DN4ejJsXed7kI-eoTvi1Wo,866292
|
|
332
338
|
umap/static/umap/vendors/leaflet/leaflet.css,sha256=p4NxAoJBhIIN-hmNHrzRCf9tD_miZyoHS5obTRR9BMY,14806
|
|
333
339
|
umap/static/umap/vendors/leaflet/leaflet.js,sha256=20nQCchB9co0qIjJZRGuk2_Z9VM-kNiyxNV1lvTlZBo,147552
|
|
@@ -369,9 +375,9 @@ umap/static/umap/vendors/toolbar/leaflet.toolbar.css,sha256=5KVBOQ0ivsFuafKYvVm3
|
|
|
369
375
|
umap/static/umap/vendors/toolbar/leaflet.toolbar.js,sha256=HXh_bR49ZFpJ-GNXDNo2eHy-fJmrWehAzUeHgGhu__c,5326
|
|
370
376
|
umap/templates/404.html,sha256=chFp1sDPind5B4cXRY3Cvd6WXw-RBfN3MIujrWajjK4,381
|
|
371
377
|
umap/templates/500.html,sha256=dc0t0omG21JQCesEqV1SLrZ7RNXGtk9Diq5W9pKSAEs,5186
|
|
372
|
-
umap/templates/base.html,sha256=
|
|
378
|
+
umap/templates/base.html,sha256=YG_2-Ap5N87cD6higXIJmA9B5s8G9AUCUetlevqfuHQ,1464
|
|
373
379
|
umap/templates/auth/user_detail.html,sha256=feuzzlA6QatSUI4g57JSGWViMM6iAydesVls-8J9UUc,491
|
|
374
|
-
umap/templates/auth/user_form.html,sha256=
|
|
380
|
+
umap/templates/auth/user_form.html,sha256=VV4-hQQAr4Oe4U6mLLfqbMKUy4J4Km_rPkVQGnfoJjM,1692
|
|
375
381
|
umap/templates/auth/user_stars.html,sha256=UE8XnvH48ak27k42hAQviZbj-Q2DNiz1BtSb1cwCGa4,511
|
|
376
382
|
umap/templates/registration/login.html,sha256=0xthmYnxZ0RtjeAiTHpOvl874KW0kC9g9qCr6xNO4qw,1175
|
|
377
383
|
umap/templates/umap/about.html,sha256=ycCW4EFTJMjLF9YT6xJ7Kqpey4sxozQyVTUx5l48kJo,127
|
|
@@ -389,7 +395,7 @@ umap/templates/umap/map_fragment.html,sha256=eO-03bkMsJn74rnMNMuIwvnpmJLYiUl71u-
|
|
|
389
395
|
umap/templates/umap/map_init.html,sha256=kZ7iaXixnB4DFAj2JopLDre7GA84KzBypqzwewYBZPE,185
|
|
390
396
|
umap/templates/umap/map_list.html,sha256=hIaqhlA8ihq_EighKubTuIQv8clxQEgk6T5GXdHHSu0,636
|
|
391
397
|
umap/templates/umap/map_messages.html,sha256=0SRPEp2psqXeZCDOXODzisVNSUp6xUGlEfI9Nsvscjw,264
|
|
392
|
-
umap/templates/umap/map_table.html,sha256=
|
|
398
|
+
umap/templates/umap/map_table.html,sha256=ghcLOYmCW7bb-ge2DK6leYsTJG2KXWC2TNH74p-X1DM,1518
|
|
393
399
|
umap/templates/umap/messages.html,sha256=z2nSbxpXeZOXxVB1xq-lYTxm1Ynj-0zGQbGDc61Y2pE,287
|
|
394
400
|
umap/templates/umap/navigation.html,sha256=V-DbNKDE34oK59FvTxZBfcIa5KLO_dEn4dULqRns9is,1269
|
|
395
401
|
umap/templates/umap/password_change.html,sha256=trKXzqdwKCT561NhgV1Tt43f1dwqMrfcCVGayVDRGGI,958
|
|
@@ -399,21 +405,23 @@ umap/templates/umap/search_bar.html,sha256=PK4aWVIjEDcM7XcRGTLG1lMyrJce5czZoEERz
|
|
|
399
405
|
umap/templates/umap/success.html,sha256=3FG4yWwtdF3zvVWQ2ZAjCkgv0kcSNZlUjgYy_b-X_CI,3
|
|
400
406
|
umap/templates/umap/user_dashboard.html,sha256=bWlZoEEcem1cpWPl_V5IHwCQsgsGzij82LYtPmmfRUw,840
|
|
401
407
|
umap/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
402
|
-
umap/templatetags/umap_tags.py,sha256=
|
|
408
|
+
umap/templatetags/umap_tags.py,sha256=sDKZMZAtLknc-__G3S5WH0mv-eh7HDV1yLAgT1ICx0Q,2456
|
|
403
409
|
umap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
404
|
-
umap/tests/base.py,sha256=
|
|
405
|
-
umap/tests/conftest.py,sha256=
|
|
406
|
-
umap/tests/settings.py,sha256=
|
|
407
|
-
umap/tests/test_datalayer.py,sha256=
|
|
410
|
+
umap/tests/base.py,sha256=evp_vK5d3Uqw8S5bTDOqYGuoMzpj6GiA95OY3yIFITI,4180
|
|
411
|
+
umap/tests/conftest.py,sha256=X-Yjm5b-yOjd1AVlcOIgsrIg0I5GXe4fj-sa37nxA7Y,1396
|
|
412
|
+
umap/tests/settings.py,sha256=EuwTzb6mxoAQndiijoGXZJ45CPESb6GffopsP1TLFR8,632
|
|
413
|
+
umap/tests/test_datalayer.py,sha256=1C2z0VACCime11CMbp9ehbj-knLpW8r6j72EQ_hKLU4,6322
|
|
408
414
|
umap/tests/test_datalayer_views.py,sha256=vWyKq6gcfkBnwZTSxREclTKRL2aWJJVYH3_cSED0MFY,14927
|
|
409
415
|
umap/tests/test_licence.py,sha256=BxNY3gdKhIoc2u5OPmAkmjCp0jJN-Jm-uPOfAZlpOHA,339
|
|
410
|
-
umap/tests/test_map.py,sha256=
|
|
411
|
-
umap/tests/test_map_views.py,sha256=
|
|
412
|
-
umap/tests/test_tilelayer.py,sha256=
|
|
416
|
+
umap/tests/test_map.py,sha256=nX2eE1HJY3bjycXulglK2SY1ybcnjDVgr0yntX6OgyA,3836
|
|
417
|
+
umap/tests/test_map_views.py,sha256=DGgfQHvLgDYizQeFZ-Vvv70zgKOWsZSDiklba58kAjg,24581
|
|
418
|
+
umap/tests/test_tilelayer.py,sha256=toVpVutEvMLWKx5uH7ZbGNPGzqICZx1_S2OOpIfYPfQ,603
|
|
413
419
|
umap/tests/test_utils.py,sha256=noh-AFL3qV-dNZYr8L1acsYC02SI710Bq2ZXV-jBEzk,407
|
|
414
|
-
umap/tests/test_views.py,sha256=
|
|
420
|
+
umap/tests/test_views.py,sha256=fnvB2p0pK2FlKO66DC-mjNb6xGggCG1KTLQJV2muCm8,12598
|
|
415
421
|
umap/tests/fixtures/choropleth_region_chomage.geojson,sha256=mVVbYlf92Sr3wWH9ETm43FdHz1U3zjsn91HuU5H5r4Y,21325
|
|
422
|
+
umap/tests/fixtures/circle.svg,sha256=P37vV2PhFPecAtY8qR3VlRuB79_wFaMeqKm2tX-2tkA,254
|
|
416
423
|
umap/tests/fixtures/display_on_load.umap,sha256=eo4ecB3QUeCVu1u7COp7mZ8sCPkf2j4gGERE7N1v8GU,1845
|
|
424
|
+
umap/tests/fixtures/star.svg,sha256=zIi-j16L1Fzxtqz2rV2NDDm1NDHBWQfM5O6MIeoxgEU,256
|
|
417
425
|
umap/tests/fixtures/test_upload_data.csv,sha256=b4RQw68ixs9UMj8TlTucV5YSfbactWhLLuE1yCKUTAY,109
|
|
418
426
|
umap/tests/fixtures/test_upload_data.gpx,sha256=sIfeKEGxYikzg121qBdkBIVTFpuYh8q2-yWZOZwbu38,674
|
|
419
427
|
umap/tests/fixtures/test_upload_data.json,sha256=t4PmJtVDhyI1x-E1a36jD8YVSa87T-Vtg8eBmHfQ4KQ,5650
|
|
@@ -425,12 +433,14 @@ umap/tests/integration/__init__.py,sha256=nqQ2miDnSZOKDuFhQ5saFN3qQuK73Cs6xL9Od-
|
|
|
425
433
|
umap/tests/integration/test_anonymous_owned_map.py,sha256=8Zw-MwBcR5ewZMimHdSZr7OYEgpNmQdanmFrUB32hy4,6080
|
|
426
434
|
umap/tests/integration/test_basics.py,sha256=1FesSkjNBWi5pEqN0MQlC3kIXTFZzuILq7A5ac9L-3g,1598
|
|
427
435
|
umap/tests/integration/test_browser.py,sha256=xVNEHGjwE9y6PXAzc5L8w_sEfJrN-CAvoZJVFyZRco4,4842
|
|
428
|
-
umap/tests/integration/test_export_map.py,sha256=
|
|
436
|
+
umap/tests/integration/test_export_map.py,sha256=C5_svVg2I0-KpYZZWL6Zu-lv_h43vystlBHXPaRWACI,3137
|
|
429
437
|
umap/tests/integration/test_import.py,sha256=ML5LlnCY8RmKQgFEhygI9xLNsb6vVw7rGQ2R89LJejE,877
|
|
430
438
|
umap/tests/integration/test_map.py,sha256=vui3SMJN-y9NQ3o5-z9dtJ-sTdvVN7IBDfH4FR4cwp8,3540
|
|
431
439
|
umap/tests/integration/test_owned_map.py,sha256=mdGTLwf69vCpreXLUDkHMNf0R4Z80EGJECNA-I5GSwg,9025
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
umap_project-1.
|
|
435
|
-
umap_project-1.
|
|
436
|
-
umap_project-1.
|
|
440
|
+
umap/tests/integration/test_picto.py,sha256=wNC6nqetSJC-A7Be8UPMeYLaycsG3RLvUrj7ykC7FI4,8356
|
|
441
|
+
umap/tests/integration/test_slideshow.py,sha256=uLPw4SyhLgpqU4-jrTu5vKSqYuZG7hXjfY8JlEt1JkM,2020
|
|
442
|
+
umap_project-1.11.1.dist-info/METADATA,sha256=DE1BXc7NoOtVf9CkME3HKHxSfLKApCfvzQhwfOMde5g,3071
|
|
443
|
+
umap_project-1.11.1.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
|
|
444
|
+
umap_project-1.11.1.dist-info/entry_points.txt,sha256=gz-KDQfEsMLBae8ABOD3foJsCYGPW1tA4Y394R_1RW8,39
|
|
445
|
+
umap_project-1.11.1.dist-info/licenses/LICENSE,sha256=BtMQT5EWvEua8jhXIrm2qfP8dmRFsMqCrJtq4k9Pb34,482
|
|
446
|
+
umap_project-1.11.1.dist-info/RECORD,,
|
umap/static/favicon.ico
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|