umap-project 2.1.3__tar.gz → 2.2.0__tar.gz
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.
- {umap_project-2.1.3 → umap_project-2.2.0}/PKG-INFO +12 -12
- {umap_project-2.1.3 → umap_project-2.2.0}/pyproject.toml +10 -10
- umap_project-2.2.0/umap/__init__.py +1 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/context_processors.py +1 -0
- umap_project-2.2.0/umap/locale/br/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/en/LC_MESSAGES/django.po +32 -32
- umap_project-2.2.0/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap_project-2.2.0/umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap_project-2.2.0/umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap_project-2.2.0/umap/migrations/0020_alter_tilelayer_url_template.py +19 -0
- umap_project-2.2.0/umap/migrations/0021_remove_map_description.py +16 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/models.py +8 -6
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/settings/base.py +1 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/base.css +43 -156
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/content.css +7 -25
- umap_project-2.2.0/umap/static/umap/css/icon.css +112 -0
- umap_project-2.2.0/umap/static/umap/css/panel.css +140 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/16-white.svg +5 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/16.svg +7 -4
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/24-white.svg +3 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/24.svg +3 -4
- umap_project-2.2.0/umap/static/umap/img/source/16-white.svg +216 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/source/16.svg +8 -5
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/source/24-white.svg +5 -3
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/source/24.svg +6 -7
- umap_project-2.2.0/umap/static/umap/js/modules/browser.js +183 -0
- umap_project-2.2.0/umap/static/umap/js/modules/dompurify.js +12 -0
- umap_project-2.2.0/umap/static/umap/js/modules/facets.js +149 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/modules/global.js +9 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/modules/i18n.js +7 -0
- umap_project-2.2.0/umap/static/umap/js/modules/orderable.js +84 -0
- umap_project-2.2.0/umap/static/umap/js/modules/panel.js +76 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/modules/request.js +0 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/modules/schema.js +324 -223
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/modules/urls.js +1 -16
- umap_project-2.2.0/umap/static/umap/js/modules/utils.js +364 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.autocomplete.js +40 -25
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.controls.js +227 -369
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.core.js +77 -366
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.datalayer.permissions.js +1 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.features.js +62 -42
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.forms.js +128 -36
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.icon.js +11 -4
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.importer.js +78 -57
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.js +179 -156
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.layer.js +79 -40
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.permissions.js +13 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.popup.js +26 -30
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.share.js +12 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.tableeditor.js +4 -6
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.ui.js +10 -60
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/am_ET.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/am_ET.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ar.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ar.json +21 -9
- umap_project-2.2.0/umap/static/umap/locale/ast.js +453 -0
- umap_project-2.2.0/umap/static/umap/locale/ast.json +451 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/bg.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/bg.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/br.js +253 -237
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/br.json +25 -13
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ca.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ca.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/cs_CZ.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/cs_CZ.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/da.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/da.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/de.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/de.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/el.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/el.json +21 -9
- umap_project-2.2.0/umap/static/umap/locale/en.js +453 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/en.json +22 -10
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/en_US.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/es.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/es.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/et.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/et.json +21 -9
- umap_project-2.1.3/umap/static/umap/locale/ast.json → umap_project-2.2.0/umap/static/umap/locale/eu.js +21 -19
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/eu.json +1 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/fa_IR.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/fa_IR.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/fi.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/fi.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/fr.js +243 -234
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/fr.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/gl.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/gl.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/he.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/he.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/hr.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/hr.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/hu.js +243 -234
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/hu.json +21 -9
- umap_project-2.2.0/umap/static/umap/locale/id.js +453 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/id.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/is.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/is.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/it.js +243 -234
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/it.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ja.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ja.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ko.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ko.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/lt.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/lt.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ms.js +243 -234
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ms.json +22 -10
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/nl.js +246 -230
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/nl.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/no.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/no.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/pl.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/pl.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/pl_PL.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/pt.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/pt.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/pt_BR.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/pt_BR.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/pt_PT.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/pt_PT.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ro.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ro.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ru.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/ru.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/si.js +1 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/si.json +1 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/sk_SK.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/sk_SK.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/sl.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/sl.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/sr.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/sr.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/sv.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/sv.json +21 -9
- umap_project-2.2.0/umap/static/umap/locale/th_TH.js +453 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/th_TH.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/tr.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/tr.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/uk_UA.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/uk_UA.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/vi.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/vi.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/vi_VN.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/zh.js +243 -227
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/zh.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/zh_CN.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/zh_TW.Big5.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/zh_TW.js +243 -234
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/locale/zh_TW.json +21 -9
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/map.css +124 -264
- umap_project-2.2.0/umap/static/umap/test/DataLayer.js +463 -0
- umap_project-2.2.0/umap/static/umap/test/Feature.js +131 -0
- umap_project-2.2.0/umap/static/umap/test/TableEditor.js +104 -0
- umap_project-2.2.0/umap/static/umap/test/Util.js +28 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/test/index.html +0 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/unittests/URLs.js +1 -1
- umap_project-2.1.3/umap/static/umap/test/Util.js → umap_project-2.2.0/umap/static/umap/unittests/utils.js +167 -106
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vars.css +9 -0
- umap_project-2.2.0/umap/static/umap/vendors/dompurify/purify.es.mjs +1525 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +1 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/iconlayers/iconLayers.js +1 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/css.html +2 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/js.html +0 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/map_detail.html +4 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/map_table.html +12 -10
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templatetags/umap_tags.py +5 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/conftest.py +12 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_anonymous_owned_map.py +27 -5
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_basics.py +21 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_browser.py +12 -25
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_choropleth.py +1 -1
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_dashboard.py +10 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_datalayer.py +8 -6
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_edit_datalayer.py +24 -19
- umap_project-2.2.0/umap/tests/integration/test_edit_map.py +202 -0
- umap_project-2.2.0/umap/tests/integration/test_edit_marker.py +120 -0
- umap_project-2.2.0/umap/tests/integration/test_edit_polygon.py +122 -0
- umap_project-2.2.0/umap/tests/integration/test_facets_browser.py +207 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_import.py +72 -20
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_map.py +19 -17
- umap_project-2.2.0/umap/tests/integration/test_map_list.py +28 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_owned_map.py +10 -10
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_picto.py +5 -5
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_querystring.py +9 -15
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_slideshow.py +0 -5
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_statics.py +3 -2
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_tableeditor.py +1 -5
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_tilelayer.py +10 -0
- umap_project-2.2.0/umap/tests/integration/test_view_marker.py +64 -0
- umap_project-2.2.0/umap/tests/integration/test_view_polygon.py +59 -0
- umap_project-2.2.0/umap/tests/integration/test_view_polyline.py +51 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/test_map_views.py +13 -0
- umap_project-2.1.3/umap/__init__.py +0 -1
- umap_project-2.1.3/umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap_project-2.1.3/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap_project-2.1.3/umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap_project-2.1.3/umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap_project-2.1.3/umap/static/umap/img/source/16-white.svg +0 -980
- umap_project-2.1.3/umap/static/umap/js/modules/browser.js +0 -159
- umap_project-2.1.3/umap/static/umap/js/modules/utils.js +0 -24
- umap_project-2.1.3/umap/static/umap/locale/ast.js +0 -437
- umap_project-2.1.3/umap/static/umap/locale/en.js +0 -444
- umap_project-2.1.3/umap/static/umap/locale/eu.js +0 -413
- umap_project-2.1.3/umap/static/umap/locale/id.js +0 -437
- umap_project-2.1.3/umap/static/umap/locale/th_TH.js +0 -437
- umap_project-2.1.3/umap/static/umap/test/Feature.js +0 -357
- umap_project-2.1.3/umap/static/umap/vendors/dompurify/purify.min.js +0 -3
- umap_project-2.1.3/umap/static/umap/vendors/dompurify/purify.min.js.map +0 -1
- umap_project-2.1.3/umap/tests/integration/test_edit_map.py +0 -15
- umap_project-2.1.3/umap/tests/integration/test_facets_browser.py +0 -117
- {umap_project-2.1.3 → umap_project-2.2.0}/.gitignore +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/LICENSE +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/README.md +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/admin.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/apps.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/autocomplete.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/bin/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/decorators.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/fields.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/forms.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/am_ET/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/am_ET/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ar/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ar/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ast/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ast/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/bg/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/bg/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/br/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ca/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/cs_CZ/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/da/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/da/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/de/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/de/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/el/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/el/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/en/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/es/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/es/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/et/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/et/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/eu/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/fa_IR/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/fi/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/fi/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/fr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/gl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/he/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/he/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/hr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/hr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/hu/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/id/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/id/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/is/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/is/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/it/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ja/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ja/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ko/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ko/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/lt/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/lt/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ms/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/nl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/no/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/no/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/pl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/pt/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/pt_BR/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/pt_PT/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ro/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ro/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ru/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/ru/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/si/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/si/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/sk_SK/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/sk_SK/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/sl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/sl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/sr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/sr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/sv/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/th_TH/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/tr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/tr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/uk_UA/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/uk_UA/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/vi/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/vi/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/zh/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/zh/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/locale/zh_TW/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/management/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/management/commands/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/management/commands/anonymous_edit_url.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/management/commands/generate_js_locale.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/management/commands/import_pictograms.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/managers.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/middleware.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0001_initial.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0002_tilelayer_tms.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0003_add_tilelayer.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0004_add_licence.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0005_remove_map_tilelayer.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0006_auto_20190407_0719.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0007_auto_20190416_1757.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0008_alter_map_settings.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0009_star.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0012_datalayer_settings.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0013_datalayer_edit_status.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0014_map_created_at.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0015_alter_pictogram_pictogram.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0016_pictogram_category.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0017_migrate_to_openstreetmap_oauth2.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0018_datalayer_uuid.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/0019_migrate_internal_remote_datalayers.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/migrations/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/settings/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/settings/dev.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/settings/local.py.sample +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/.gitignore +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/bitbucket.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/favicons/apple-touch-icon.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/favicons/favicon.ico +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/favicons/icon-192.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/favicons/icon-512.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/favicons/icon.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/font/FiraSans-Light.woff +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/font.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/github.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/edit.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/icon-bg.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/icon-delete.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/icon-download.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/icon-duplicate.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/icon-edit.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/icon-share.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/icon-view.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/logo.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/logo_filigree.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/logo_small.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/marker.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/marker.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/opensource.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/osm.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/img/search.gif +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/components/fragment.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/modules/leaflet-configure.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/js/umap.slideshow.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/nav.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/openstreetmap.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/test/.eslintrc +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/test/Map.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/test/Marker.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/test/Polygon.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/test/Polyline.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/test/_pre.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/theme.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/twitter.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/colorbrewer/colorbrewer.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/csv2geojson/csv2geojson.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/editable/Leaflet.Editable.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/editable/Path.Drag.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/fullscreen/fullscreen.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/fullscreen/fullscreen@2x.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/hash/leaflet-hash.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/heat/leaflet-heat.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/i18n/Leaflet.i18n.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/iconlayers/check.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/iconlayers/iconLayers.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/iconlayers/transparent-pixel.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/leaflet/images/layers-2x.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/leaflet/images/layers.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/leaflet/images/marker-icon-2x.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/leaflet/images/marker-icon.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/leaflet/images/marker-shadow.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/leaflet/leaflet-src.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/leaflet/leaflet.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/leaflet/leaflet.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/leaflet/leaflet.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/loading/Control.Loading.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/loading/Control.Loading.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/markercluster/MarkerCluster.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/measurable/Leaflet.Measurable.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/measurable/Leaflet.Measurable.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/minimap/Control.MiniMap.min.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/minimap/Control.MiniMap.min.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/minimap/images/toggle.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/minimap/images/toggle.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/photon/leaflet.photon.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/togeojson/togeojson.umd.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/togeojson/togeojson.umd.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/togpx/togpx.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/tokml/tokml.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/storage.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/404.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/500.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/auth/user_detail.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/auth/user_form.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/auth/user_stars.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/base.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/registration/login.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/about.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/about_summary.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/branding.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/content.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/content_footer.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/footer.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/header.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/home.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/locale.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/login_popup_end.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/map_fragment.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/map_init.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/map_list.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/messages.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/navigation.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/password_change.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/password_change_done.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/search.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/search_bar.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/success.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templates/umap/user_dashboard.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/templatetags/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/base.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/conftest.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/choropleth_region_chomage.geojson +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/circle.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/display_on_load.umap +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/star.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/test_upload_data.csv +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/test_upload_data.gpx +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/test_upload_data.json +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/test_upload_data.kml +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/test_upload_data.umap +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/test_upload_data_osm.json +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/test_upload_empty_coordinates.json +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/test_upload_missing_name.json +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/fixtures/test_upload_non_linear_ring.json +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_collaborative_editing.py +0 -0
- /umap_project-2.1.3/umap/tests/integration/test_polygon.py → /umap_project-2.2.0/umap/tests/integration/test_draw_polygon.py +0 -0
- /umap_project-2.1.3/umap/tests/integration/test_polyline.py → /umap_project-2.2.0/umap/tests/integration/test_draw_polyline.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_export_map.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_features_id_generation.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_map_preview.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_share.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/integration/test_star.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/settings.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/test_datalayer.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/test_datalayer_views.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/test_licence.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/test_map.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/test_merge_features.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/test_tilelayer.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/test_utils.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/tests/test_views.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/urls.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/utils.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/views.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0}/umap/wsgi.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.0
|
|
4
4
|
Summary: Create maps with OpenStreetMap layers in a minute and embed them in your site.
|
|
5
5
|
Author-email: Yohan Boniface <yb@enix.org>
|
|
6
6
|
Maintainer-email: David Larlet <david@larlet.fr>
|
|
@@ -19,32 +19,32 @@ Requires-Python: >=3.10
|
|
|
19
19
|
Requires-Dist: django-agnocomplete==2.2.0
|
|
20
20
|
Requires-Dist: django-environ==0.11.2
|
|
21
21
|
Requires-Dist: django-probes==1.7.0
|
|
22
|
-
Requires-Dist: django==5.0.
|
|
23
|
-
Requires-Dist: pillow==10.
|
|
22
|
+
Requires-Dist: django==5.0.4
|
|
23
|
+
Requires-Dist: pillow==10.3.0
|
|
24
24
|
Requires-Dist: psycopg==3.1.18
|
|
25
25
|
Requires-Dist: rcssmin==1.1.2
|
|
26
26
|
Requires-Dist: requests==2.31.0
|
|
27
27
|
Requires-Dist: rjsmin==1.2.2
|
|
28
|
-
Requires-Dist: social-auth-app-django==5.4.
|
|
29
|
-
Requires-Dist: social-auth-core==4.5.
|
|
28
|
+
Requires-Dist: social-auth-app-django==5.4.1
|
|
29
|
+
Requires-Dist: social-auth-core==4.5.4
|
|
30
30
|
Provides-Extra: dev
|
|
31
31
|
Requires-Dist: djlint==1.34.1; extra == 'dev'
|
|
32
|
-
Requires-Dist: hatch==1.9.
|
|
32
|
+
Requires-Dist: hatch==1.9.7; extra == 'dev'
|
|
33
33
|
Requires-Dist: isort==5.13.2; extra == 'dev'
|
|
34
|
-
Requires-Dist: mkdocs-material==9.5.
|
|
34
|
+
Requires-Dist: mkdocs-material==9.5.18; extra == 'dev'
|
|
35
35
|
Requires-Dist: mkdocs==1.5.3; extra == 'dev'
|
|
36
|
-
Requires-Dist: pymdown-extensions==10.
|
|
37
|
-
Requires-Dist: ruff==0.
|
|
36
|
+
Requires-Dist: pymdown-extensions==10.8.1; extra == 'dev'
|
|
37
|
+
Requires-Dist: ruff==0.4.2; extra == 'dev'
|
|
38
38
|
Requires-Dist: vermin==1.6.0; extra == 'dev'
|
|
39
39
|
Provides-Extra: docker
|
|
40
|
-
Requires-Dist: uwsgi==2.0.
|
|
40
|
+
Requires-Dist: uwsgi==2.0.25.1; extra == 'docker'
|
|
41
41
|
Provides-Extra: test
|
|
42
42
|
Requires-Dist: factory-boy==3.2.1; extra == 'test'
|
|
43
43
|
Requires-Dist: playwright>=1.39; extra == 'test'
|
|
44
44
|
Requires-Dist: pytest-django==4.8.0; extra == 'test'
|
|
45
45
|
Requires-Dist: pytest-playwright==0.4.4; extra == 'test'
|
|
46
46
|
Requires-Dist: pytest-xdist<4,>=3.5.0; extra == 'test'
|
|
47
|
-
Requires-Dist: pytest==8.
|
|
47
|
+
Requires-Dist: pytest==8.2.0; extra == 'test'
|
|
48
48
|
Description-Content-Type: text/markdown
|
|
49
49
|
|
|
50
50
|
# uMap project
|
|
@@ -28,40 +28,40 @@ classifiers = [
|
|
|
28
28
|
"Programming Language :: Python :: 3.12",
|
|
29
29
|
]
|
|
30
30
|
dependencies = [
|
|
31
|
-
"Django==5.0.
|
|
31
|
+
"Django==5.0.4",
|
|
32
32
|
"django-agnocomplete==2.2.0",
|
|
33
33
|
"django-environ==0.11.2",
|
|
34
34
|
"django-probes==1.7.0",
|
|
35
|
-
"Pillow==10.
|
|
35
|
+
"Pillow==10.3.0",
|
|
36
36
|
"psycopg==3.1.18",
|
|
37
37
|
"requests==2.31.0",
|
|
38
38
|
"rcssmin==1.1.2",
|
|
39
39
|
"rjsmin==1.2.2",
|
|
40
|
-
"social-auth-core==4.5.
|
|
41
|
-
"social-auth-app-django==5.4.
|
|
40
|
+
"social-auth-core==4.5.4",
|
|
41
|
+
"social-auth-app-django==5.4.1",
|
|
42
42
|
]
|
|
43
43
|
|
|
44
44
|
[project.optional-dependencies]
|
|
45
45
|
dev = [
|
|
46
|
-
"hatch==1.9.
|
|
47
|
-
"ruff==0.
|
|
46
|
+
"hatch==1.9.7",
|
|
47
|
+
"ruff==0.4.2",
|
|
48
48
|
"djlint==1.34.1",
|
|
49
49
|
"mkdocs==1.5.3",
|
|
50
|
-
"mkdocs-material==9.5.
|
|
50
|
+
"mkdocs-material==9.5.18",
|
|
51
51
|
"vermin==1.6.0",
|
|
52
|
-
"pymdown-extensions==10.
|
|
52
|
+
"pymdown-extensions==10.8.1",
|
|
53
53
|
"isort==5.13.2",
|
|
54
54
|
]
|
|
55
55
|
test = [
|
|
56
56
|
"factory-boy==3.2.1",
|
|
57
57
|
"playwright>=1.39",
|
|
58
|
-
"pytest==8.
|
|
58
|
+
"pytest==8.2.0",
|
|
59
59
|
"pytest-django==4.8.0",
|
|
60
60
|
"pytest-playwright==0.4.4",
|
|
61
61
|
"pytest-xdist>=3.5.0,<4",
|
|
62
62
|
]
|
|
63
63
|
docker = [
|
|
64
|
-
"uwsgi==2.0.
|
|
64
|
+
"uwsgi==2.0.25.1",
|
|
65
65
|
]
|
|
66
66
|
|
|
67
67
|
[project.scripts]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = "2.2.0"
|
|
@@ -7,6 +7,7 @@ def settings(request):
|
|
|
7
7
|
return {
|
|
8
8
|
"UMAP_FEEDBACK_LINK": djsettings.UMAP_FEEDBACK_LINK,
|
|
9
9
|
"SITE_NAME": djsettings.SITE_NAME,
|
|
10
|
+
"SITE_URL": djsettings.SITE_URL,
|
|
10
11
|
"ENABLE_ACCOUNT_LOGIN": djsettings.ENABLE_ACCOUNT_LOGIN,
|
|
11
12
|
"UMAP_READONLY": djsettings.UMAP_READONLY,
|
|
12
13
|
"UMAP_DEMO_SITE": djsettings.UMAP_DEMO_SITE,
|
|
Binary file
|
|
@@ -8,7 +8,7 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2024-
|
|
11
|
+
"POT-Creation-Date: 2024-04-24 19:16+0000\n"
|
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -25,7 +25,7 @@ msgstr ""
|
|
|
25
25
|
msgid "Everyone can edit"
|
|
26
26
|
msgstr ""
|
|
27
27
|
|
|
28
|
-
#: forms.py:69 models.py:
|
|
28
|
+
#: forms.py:69 models.py:384
|
|
29
29
|
msgid "Inherit"
|
|
30
30
|
msgstr ""
|
|
31
31
|
|
|
@@ -33,54 +33,50 @@ msgstr ""
|
|
|
33
33
|
msgid "Site is readonly for maintenance"
|
|
34
34
|
msgstr ""
|
|
35
35
|
|
|
36
|
-
#: models.py:
|
|
36
|
+
#: models.py:53
|
|
37
37
|
msgid "name"
|
|
38
38
|
msgstr ""
|
|
39
39
|
|
|
40
|
-
#: models.py:
|
|
40
|
+
#: models.py:84
|
|
41
41
|
msgid "details"
|
|
42
42
|
msgstr ""
|
|
43
43
|
|
|
44
|
-
#: models.py:
|
|
44
|
+
#: models.py:85
|
|
45
45
|
msgid "Link to a page where the licence is detailed."
|
|
46
46
|
msgstr ""
|
|
47
47
|
|
|
48
|
-
#: models.py:
|
|
48
|
+
#: models.py:95
|
|
49
49
|
msgid "URL template using OSM tile format"
|
|
50
50
|
msgstr ""
|
|
51
51
|
|
|
52
|
-
#: models.py:
|
|
52
|
+
#: models.py:101
|
|
53
53
|
msgid "Order of the tilelayers in the edit box"
|
|
54
54
|
msgstr ""
|
|
55
55
|
|
|
56
|
-
#: models.py:
|
|
56
|
+
#: models.py:147 models.py:385
|
|
57
57
|
msgid "Everyone"
|
|
58
58
|
msgstr ""
|
|
59
59
|
|
|
60
|
-
#: models.py:
|
|
60
|
+
#: models.py:148 models.py:154 models.py:386
|
|
61
61
|
msgid "Editors only"
|
|
62
62
|
msgstr ""
|
|
63
63
|
|
|
64
|
-
#: models.py:
|
|
64
|
+
#: models.py:149 models.py:387
|
|
65
65
|
msgid "Owner only"
|
|
66
66
|
msgstr ""
|
|
67
67
|
|
|
68
|
-
#: models.py:
|
|
68
|
+
#: models.py:152
|
|
69
69
|
msgid "Everyone (public)"
|
|
70
70
|
msgstr ""
|
|
71
71
|
|
|
72
|
-
#: models.py:
|
|
72
|
+
#: models.py:153
|
|
73
73
|
msgid "Anyone with link"
|
|
74
74
|
msgstr ""
|
|
75
75
|
|
|
76
|
-
#: models.py:
|
|
76
|
+
#: models.py:155
|
|
77
77
|
msgid "Blocked"
|
|
78
78
|
msgstr ""
|
|
79
79
|
|
|
80
|
-
#: models.py:157 models.py:391
|
|
81
|
-
msgid "description"
|
|
82
|
-
msgstr ""
|
|
83
|
-
|
|
84
80
|
#: models.py:158
|
|
85
81
|
msgid "center"
|
|
86
82
|
msgstr ""
|
|
@@ -113,7 +109,7 @@ msgstr ""
|
|
|
113
109
|
msgid "editors"
|
|
114
110
|
msgstr ""
|
|
115
111
|
|
|
116
|
-
#: models.py:186 models.py:
|
|
112
|
+
#: models.py:186 models.py:408
|
|
117
113
|
msgid "edit status"
|
|
118
114
|
msgstr ""
|
|
119
115
|
|
|
@@ -121,19 +117,23 @@ msgstr ""
|
|
|
121
117
|
msgid "share status"
|
|
122
118
|
msgstr ""
|
|
123
119
|
|
|
124
|
-
#: models.py:194 models.py:
|
|
120
|
+
#: models.py:194 models.py:403
|
|
125
121
|
msgid "settings"
|
|
126
122
|
msgstr ""
|
|
127
123
|
|
|
128
|
-
#: models.py:
|
|
124
|
+
#: models.py:325
|
|
129
125
|
msgid "Clone of"
|
|
130
126
|
msgstr ""
|
|
131
127
|
|
|
132
|
-
#: models.py:
|
|
128
|
+
#: models.py:394
|
|
129
|
+
msgid "description"
|
|
130
|
+
msgstr ""
|
|
131
|
+
|
|
132
|
+
#: models.py:398
|
|
133
133
|
msgid "display on load"
|
|
134
134
|
msgstr ""
|
|
135
135
|
|
|
136
|
-
#: models.py:
|
|
136
|
+
#: models.py:399
|
|
137
137
|
msgid "Display this layer on load."
|
|
138
138
|
msgstr ""
|
|
139
139
|
|
|
@@ -345,37 +345,37 @@ msgstr ""
|
|
|
345
345
|
msgid "Clone"
|
|
346
346
|
msgstr ""
|
|
347
347
|
|
|
348
|
-
#: templates/umap/map_table.html:
|
|
348
|
+
#: templates/umap/map_table.html:77 templates/umap/map_table.html:79
|
|
349
349
|
msgid "Delete"
|
|
350
350
|
msgstr ""
|
|
351
351
|
|
|
352
|
-
#: templates/umap/map_table.html:
|
|
352
|
+
#: templates/umap/map_table.html:93
|
|
353
353
|
msgid "first"
|
|
354
354
|
msgstr ""
|
|
355
355
|
|
|
356
|
-
#: templates/umap/map_table.html:
|
|
356
|
+
#: templates/umap/map_table.html:94
|
|
357
357
|
msgid "previous"
|
|
358
358
|
msgstr ""
|
|
359
359
|
|
|
360
|
-
#: templates/umap/map_table.html:
|
|
360
|
+
#: templates/umap/map_table.html:102
|
|
361
361
|
#, python-format
|
|
362
362
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
363
363
|
msgstr ""
|
|
364
364
|
|
|
365
|
-
#: templates/umap/map_table.html:
|
|
365
|
+
#: templates/umap/map_table.html:107
|
|
366
366
|
msgid "next"
|
|
367
367
|
msgstr ""
|
|
368
368
|
|
|
369
|
-
#: templates/umap/map_table.html:
|
|
369
|
+
#: templates/umap/map_table.html:108
|
|
370
370
|
msgid "last"
|
|
371
371
|
msgstr ""
|
|
372
372
|
|
|
373
|
-
#: templates/umap/map_table.html:
|
|
373
|
+
#: templates/umap/map_table.html:116
|
|
374
374
|
#, python-format
|
|
375
375
|
msgid "Lines per page: %(per_page)s"
|
|
376
376
|
msgstr ""
|
|
377
377
|
|
|
378
|
-
#: templates/umap/map_table.html:
|
|
378
|
+
#: templates/umap/map_table.html:121
|
|
379
379
|
#, python-format
|
|
380
380
|
msgid "%(count)s maps"
|
|
381
381
|
msgstr ""
|
|
@@ -542,10 +542,10 @@ msgstr ""
|
|
|
542
542
|
msgid "Congratulations, your map has been cloned!"
|
|
543
543
|
msgstr ""
|
|
544
544
|
|
|
545
|
-
#: views.py:
|
|
545
|
+
#: views.py:1146
|
|
546
546
|
msgid "Layer successfully deleted."
|
|
547
547
|
msgstr ""
|
|
548
548
|
|
|
549
|
-
#: views.py:
|
|
549
|
+
#: views.py:1168
|
|
550
550
|
msgid "Permissions updated with success!"
|
|
551
551
|
msgstr ""
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Generated by Django 5.0.2 on 2024-04-17 09:18
|
|
2
|
+
|
|
3
|
+
from django.db import migrations, models
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Migration(migrations.Migration):
|
|
7
|
+
dependencies = [
|
|
8
|
+
("umap", "0019_migrate_internal_remote_datalayers"),
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
operations = [
|
|
12
|
+
migrations.AlterField(
|
|
13
|
+
model_name="tilelayer",
|
|
14
|
+
name="url_template",
|
|
15
|
+
field=models.CharField(
|
|
16
|
+
help_text="URL template using OSM tile format", max_length=400
|
|
17
|
+
),
|
|
18
|
+
),
|
|
19
|
+
]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Generated by Django 5.0.4 on 2024-04-24 07:50
|
|
2
|
+
|
|
3
|
+
from django.db import migrations
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Migration(migrations.Migration):
|
|
7
|
+
dependencies = [
|
|
8
|
+
("umap", "0020_alter_tilelayer_url_template"),
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
operations = [
|
|
12
|
+
migrations.RemoveField(
|
|
13
|
+
model_name="map",
|
|
14
|
+
name="description",
|
|
15
|
+
),
|
|
16
|
+
]
|
|
@@ -92,7 +92,7 @@ class Licence(NamedModel):
|
|
|
92
92
|
|
|
93
93
|
class TileLayer(NamedModel):
|
|
94
94
|
url_template = models.CharField(
|
|
95
|
-
max_length=
|
|
95
|
+
max_length=400, help_text=_("URL template using OSM tile format")
|
|
96
96
|
)
|
|
97
97
|
minZoom = models.IntegerField(default=0)
|
|
98
98
|
maxZoom = models.IntegerField(default=18)
|
|
@@ -155,7 +155,6 @@ class Map(NamedModel):
|
|
|
155
155
|
(BLOCKED, _("Blocked")),
|
|
156
156
|
)
|
|
157
157
|
slug = models.SlugField(db_index=True)
|
|
158
|
-
description = models.TextField(blank=True, null=True, verbose_name=_("description"))
|
|
159
158
|
center = models.PointField(geography=True, verbose_name=_("center"))
|
|
160
159
|
zoom = models.IntegerField(default=7, verbose_name=_("zoom"))
|
|
161
160
|
locate = models.BooleanField(
|
|
@@ -198,6 +197,13 @@ class Map(NamedModel):
|
|
|
198
197
|
objects = models.Manager()
|
|
199
198
|
public = PublicManager()
|
|
200
199
|
|
|
200
|
+
@property
|
|
201
|
+
def description(self):
|
|
202
|
+
try:
|
|
203
|
+
return self.settings["properties"]["description"]
|
|
204
|
+
except KeyError:
|
|
205
|
+
return ""
|
|
206
|
+
|
|
201
207
|
@property
|
|
202
208
|
def preview_settings(self):
|
|
203
209
|
layers = self.datalayer_set.all()
|
|
@@ -213,13 +219,9 @@ class Map(NamedModel):
|
|
|
213
219
|
"STATIC_URL": settings.STATIC_URL,
|
|
214
220
|
"editMode": "disabled",
|
|
215
221
|
"hash": False,
|
|
216
|
-
"attributionControl": False,
|
|
217
222
|
"scrollWheelZoom": False,
|
|
218
|
-
"umapAttributionControl": False,
|
|
219
223
|
"noControl": True,
|
|
220
224
|
"umap_id": self.pk,
|
|
221
|
-
"onLoadPanel": "none",
|
|
222
|
-
"captionBar": False,
|
|
223
225
|
"schema": self.extra_schema,
|
|
224
226
|
"slideshow": {},
|
|
225
227
|
}
|
|
@@ -239,6 +239,7 @@ UMAP_EXTRA_URLS = {
|
|
|
239
239
|
"routing": "http://www.openstreetmap.org/directions?engine=osrm_car&route={lat},{lng}&locale={locale}#map={zoom}/{lat}/{lng}", # noqa
|
|
240
240
|
"ajax_proxy": "/ajax-proxy/?url={url}&ttl={ttl}",
|
|
241
241
|
"search": "https://photon.komoot.io/api/?",
|
|
242
|
+
"edit_in_osm": "https://www.openstreetmap.org/edit#map={zoom}/{lat}/{lng}",
|
|
242
243
|
}
|
|
243
244
|
UMAP_KEEP_VERSIONS = env.int("UMAP_KEEP_VERSIONS", default=10)
|
|
244
245
|
SITE_URL = env("SITE_URL", default="http://umap.org")
|