umap-project 2.1.3__tar.gz → 2.2.0b0__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.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- {umap_project-2.1.3 → umap_project-2.2.0b0}/PKG-INFO +8 -8
- {umap_project-2.1.3 → umap_project-2.2.0b0}/pyproject.toml +7 -7
- umap_project-2.2.0b0/umap/__init__.py +1 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/context_processors.py +1 -0
- umap_project-2.2.0b0/umap/locale/br/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/en/LC_MESSAGES/django.po +32 -32
- umap_project-2.2.0b0/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap_project-2.2.0b0/umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap_project-2.2.0b0/umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap_project-2.2.0b0/umap/migrations/0020_alter_tilelayer_url_template.py +19 -0
- umap_project-2.2.0b0/umap/migrations/0021_remove_map_description.py +16 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/models.py +8 -6
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/settings/base.py +1 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/base.css +29 -151
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/content.css +7 -25
- umap_project-2.2.0b0/umap/static/umap/css/icon.css +112 -0
- umap_project-2.2.0b0/umap/static/umap/css/panel.css +140 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/16-white.svg +5 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/16.svg +7 -4
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/24-white.svg +3 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/24.svg +3 -4
- umap_project-2.2.0b0/umap/static/umap/img/source/16-white.svg +216 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/source/16.svg +8 -5
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/source/24-white.svg +5 -3
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/source/24.svg +6 -7
- umap_project-2.2.0b0/umap/static/umap/js/modules/browser.js +168 -0
- umap_project-2.2.0b0/umap/static/umap/js/modules/dompurify.js +12 -0
- umap_project-2.2.0b0/umap/static/umap/js/modules/facets.js +148 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/modules/global.js +9 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/modules/i18n.js +7 -0
- umap_project-2.2.0b0/umap/static/umap/js/modules/orderable.js +84 -0
- umap_project-2.2.0b0/umap/static/umap/js/modules/panel.js +76 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/modules/request.js +0 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/modules/schema.js +324 -223
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/modules/urls.js +1 -16
- umap_project-2.2.0b0/umap/static/umap/js/modules/utils.js +364 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.controls.js +183 -330
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.core.js +60 -364
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.datalayer.permissions.js +1 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.features.js +60 -40
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.forms.js +111 -25
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.icon.js +11 -4
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.importer.js +24 -17
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.js +170 -145
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.layer.js +71 -40
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.permissions.js +9 -11
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.popup.js +10 -21
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.share.js +11 -8
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.tableeditor.js +4 -6
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.ui.js +0 -51
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/am_ET.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/am_ET.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ar.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ar.json +18 -7
- umap_project-2.2.0b0/umap/static/umap/locale/ast.js +452 -0
- umap_project-2.2.0b0/umap/static/umap/locale/ast.json +450 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/bg.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/bg.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/br.js +252 -237
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/br.json +22 -11
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ca.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ca.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/cs_CZ.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/cs_CZ.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/da.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/da.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/de.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/de.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/el.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/el.json +18 -7
- umap_project-2.2.0b0/umap/static/umap/locale/en.js +452 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/en.json +19 -8
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/en_US.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/es.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/es.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/et.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/et.json +18 -7
- umap_project-2.1.3/umap/static/umap/locale/ast.json → umap_project-2.2.0b0/umap/static/umap/locale/eu.js +21 -19
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/eu.json +1 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/fa_IR.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/fa_IR.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/fi.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/fi.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/fr.js +242 -234
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/fr.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/gl.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/gl.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/he.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/he.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/hr.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/hr.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/hu.js +242 -234
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/hu.json +18 -7
- umap_project-2.2.0b0/umap/static/umap/locale/id.js +452 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/id.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/is.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/is.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/it.js +242 -234
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/it.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ja.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ja.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ko.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ko.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/lt.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/lt.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ms.js +242 -234
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ms.json +19 -8
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/nl.js +245 -230
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/nl.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/no.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/no.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/pl.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/pl.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/pl_PL.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/pt.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/pt.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/pt_BR.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/pt_BR.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/pt_PT.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/pt_PT.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ro.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ro.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ru.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/ru.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/si.js +1 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/si.json +1 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/sk_SK.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/sk_SK.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/sl.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/sl.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/sr.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/sr.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/sv.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/sv.json +18 -7
- umap_project-2.2.0b0/umap/static/umap/locale/th_TH.js +452 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/th_TH.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/tr.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/tr.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/uk_UA.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/uk_UA.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/vi.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/vi.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/vi_VN.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/zh.js +242 -227
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/zh.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/zh_CN.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/zh_TW.Big5.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/zh_TW.js +242 -234
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/locale/zh_TW.json +18 -7
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/map.css +114 -265
- umap_project-2.2.0b0/umap/static/umap/test/DataLayer.js +463 -0
- umap_project-2.2.0b0/umap/static/umap/test/Feature.js +131 -0
- umap_project-2.2.0b0/umap/static/umap/test/TableEditor.js +104 -0
- umap_project-2.2.0b0/umap/static/umap/test/Util.js +28 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/test/index.html +0 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/unittests/URLs.js +1 -1
- umap_project-2.1.3/umap/static/umap/test/Util.js → umap_project-2.2.0b0/umap/static/umap/unittests/utils.js +167 -106
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vars.css +9 -0
- umap_project-2.2.0b0/umap/static/umap/vendors/dompurify/purify.es.mjs +1525 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/iconlayers/iconLayers.js +1 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/css.html +2 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/js.html +0 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/map_detail.html +4 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/map_table.html +12 -10
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templatetags/umap_tags.py +5 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/conftest.py +12 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_anonymous_owned_map.py +6 -5
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_browser.py +12 -25
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_choropleth.py +1 -1
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_dashboard.py +10 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_datalayer.py +8 -6
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_edit_datalayer.py +24 -19
- umap_project-2.2.0b0/umap/tests/integration/test_edit_map.py +195 -0
- umap_project-2.2.0b0/umap/tests/integration/test_edit_marker.py +120 -0
- umap_project-2.2.0b0/umap/tests/integration/test_edit_polygon.py +122 -0
- umap_project-2.2.0b0/umap/tests/integration/test_facets_browser.py +207 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_import.py +70 -20
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_map.py +19 -17
- umap_project-2.2.0b0/umap/tests/integration/test_map_list.py +28 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_owned_map.py +10 -10
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_picto.py +5 -5
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_querystring.py +9 -15
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_slideshow.py +0 -5
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_statics.py +3 -2
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_tableeditor.py +1 -5
- umap_project-2.2.0b0/umap/tests/integration/test_view_marker.py +64 -0
- umap_project-2.2.0b0/umap/tests/integration/test_view_polygon.py +59 -0
- umap_project-2.2.0b0/umap/tests/integration/test_view_polyline.py +51 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/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.0b0}/.gitignore +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/LICENSE +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/README.md +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/admin.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/apps.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/autocomplete.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/bin/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/decorators.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/fields.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/forms.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/am_ET/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/am_ET/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ar/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ar/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ast/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ast/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/bg/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/bg/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/br/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ca/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/cs_CZ/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/da/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/da/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/de/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/de/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/el/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/el/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/en/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/es/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/es/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/et/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/et/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/eu/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/fa_IR/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/fi/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/fi/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/fr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/gl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/he/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/he/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/hr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/hr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/hu/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/id/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/id/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/is/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/is/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/it/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ja/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ja/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ko/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ko/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/lt/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/lt/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ms/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/nl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/no/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/no/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/pl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/pt/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/pt_BR/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/pt_PT/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ro/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ro/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ru/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/ru/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/si/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/si/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/sk_SK/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/sk_SK/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/sl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/sl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/sr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/sr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/sv/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/th_TH/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/tr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/tr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/uk_UA/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/uk_UA/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/vi/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/vi/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/zh/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/zh/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/locale/zh_TW/LC_MESSAGES/django.po +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/management/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/management/commands/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/management/commands/anonymous_edit_url.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/management/commands/generate_js_locale.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/management/commands/import_pictograms.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/managers.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/middleware.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0001_initial.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0002_tilelayer_tms.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0003_add_tilelayer.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0004_add_licence.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0005_remove_map_tilelayer.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0006_auto_20190407_0719.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0007_auto_20190416_1757.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0008_alter_map_settings.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0009_star.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0012_datalayer_settings.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0013_datalayer_edit_status.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0014_map_created_at.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0015_alter_pictogram_pictogram.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0016_pictogram_category.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0017_migrate_to_openstreetmap_oauth2.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0018_datalayer_uuid.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/0019_migrate_internal_remote_datalayers.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/migrations/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/settings/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/settings/dev.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/settings/local.py.sample +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/.gitignore +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/bitbucket.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/favicons/apple-touch-icon.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/favicons/favicon.ico +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/favicons/icon-192.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/favicons/icon-512.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/favicons/icon.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/font/FiraSans-Light.woff +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/font.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/github.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/edit.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/icon-bg.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/icon-delete.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/icon-download.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/icon-duplicate.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/icon-edit.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/icon-share.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/icon-view.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/logo.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/logo_filigree.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/logo_small.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/marker.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/marker.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/opensource.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/osm.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/img/search.gif +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/components/fragment.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/modules/leaflet-configure.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.autocomplete.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/js/umap.slideshow.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/nav.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/openstreetmap.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/test/.eslintrc +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/test/Map.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/test/Marker.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/test/Polygon.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/test/Polyline.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/test/_pre.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/theme.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/twitter.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/colorbrewer/colorbrewer.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/csv2geojson/csv2geojson.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/editable/Leaflet.Editable.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/editable/Path.Drag.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/fullscreen/fullscreen.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/fullscreen/fullscreen@2x.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/hash/leaflet-hash.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/heat/leaflet-heat.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/i18n/Leaflet.i18n.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/iconlayers/check.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/iconlayers/iconLayers.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/iconlayers/transparent-pixel.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/leaflet/images/layers-2x.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/leaflet/images/layers.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/leaflet/images/marker-icon-2x.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/leaflet/images/marker-icon.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/leaflet/images/marker-shadow.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/leaflet/leaflet-src.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/leaflet/leaflet.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/leaflet/leaflet.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/leaflet/leaflet.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/loading/Control.Loading.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/loading/Control.Loading.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/markercluster/MarkerCluster.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/measurable/Leaflet.Measurable.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/measurable/Leaflet.Measurable.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/minimap/Control.MiniMap.min.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/minimap/Control.MiniMap.min.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/minimap/images/toggle.png +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/minimap/images/toggle.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/photon/leaflet.photon.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/togeojson/togeojson.umd.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/togeojson/togeojson.umd.js.map +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/togpx/togpx.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/tokml/tokml.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/storage.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/404.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/500.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/auth/user_detail.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/auth/user_form.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/auth/user_stars.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/base.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/registration/login.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/about.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/about_summary.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/branding.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/content.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/content_footer.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/footer.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/header.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/home.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/locale.js +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/login_popup_end.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/map_fragment.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/map_init.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/map_list.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/messages.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/navigation.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/password_change.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/password_change_done.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/search.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/search_bar.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/success.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templates/umap/user_dashboard.html +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/templatetags/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/base.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/conftest.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/choropleth_region_chomage.geojson +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/circle.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/display_on_load.umap +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/star.svg +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/test_upload_data.csv +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/test_upload_data.gpx +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/test_upload_data.json +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/test_upload_data.kml +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/test_upload_data.umap +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/test_upload_data_osm.json +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/test_upload_empty_coordinates.json +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/test_upload_missing_name.json +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/fixtures/test_upload_non_linear_ring.json +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/__init__.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_basics.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_collaborative_editing.py +0 -0
- /umap_project-2.1.3/umap/tests/integration/test_polygon.py → /umap_project-2.2.0b0/umap/tests/integration/test_draw_polygon.py +0 -0
- /umap_project-2.1.3/umap/tests/integration/test_polyline.py → /umap_project-2.2.0b0/umap/tests/integration/test_draw_polyline.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_export_map.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_features_id_generation.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_map_preview.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_share.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_star.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/integration/test_tilelayer.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/settings.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/test_datalayer.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/test_datalayer_views.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/test_licence.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/test_map.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/test_merge_features.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/test_tilelayer.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/test_utils.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/tests/test_views.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/urls.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/utils.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/views.py +0 -0
- {umap_project-2.1.3 → umap_project-2.2.0b0}/umap/wsgi.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.0b0
|
|
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,25 +19,25 @@ 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.
|
|
28
|
+
Requires-Dist: social-auth-app-django==5.4.1
|
|
29
29
|
Requires-Dist: social-auth-core==4.5.3
|
|
30
30
|
Provides-Extra: dev
|
|
31
31
|
Requires-Dist: djlint==1.34.1; extra == 'dev'
|
|
32
32
|
Requires-Dist: hatch==1.9.4; 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; extra == 'dev'
|
|
37
|
+
Requires-Dist: ruff==0.4.1; 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'
|
|
@@ -28,28 +28,28 @@ 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
40
|
"social-auth-core==4.5.3",
|
|
41
|
-
"social-auth-app-django==5.4.
|
|
41
|
+
"social-auth-app-django==5.4.1",
|
|
42
42
|
]
|
|
43
43
|
|
|
44
44
|
[project.optional-dependencies]
|
|
45
45
|
dev = [
|
|
46
46
|
"hatch==1.9.4",
|
|
47
|
-
"ruff==0.
|
|
47
|
+
"ruff==0.4.1",
|
|
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",
|
|
53
53
|
"isort==5.13.2",
|
|
54
54
|
]
|
|
55
55
|
test = [
|
|
@@ -61,7 +61,7 @@ test = [
|
|
|
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.0b0"
|
|
@@ -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")
|
|
@@ -21,6 +21,9 @@ a {
|
|
|
21
21
|
text-decoration: none;
|
|
22
22
|
color: SeaGreen;
|
|
23
23
|
}
|
|
24
|
+
button {
|
|
25
|
+
cursor: pointer;
|
|
26
|
+
}
|
|
24
27
|
hr {
|
|
25
28
|
clear: both;
|
|
26
29
|
width: 100%;
|
|
@@ -132,7 +135,7 @@ ul {
|
|
|
132
135
|
/* forms */
|
|
133
136
|
/* *********** */
|
|
134
137
|
input[type="text"], input[type="password"], input[type="date"],
|
|
135
|
-
input[type="datetime"], input[type="email"], input[type="number"],
|
|
138
|
+
input[type="datetime-local"], input[type="email"], input[type="number"],
|
|
136
139
|
input[type="search"], input[type="tel"], input[type="time"],
|
|
137
140
|
input[type="url"], textarea {
|
|
138
141
|
background-color: white;
|
|
@@ -160,6 +163,8 @@ input[type="checkbox"] {
|
|
|
160
163
|
textarea {
|
|
161
164
|
height: inherit;
|
|
162
165
|
padding: 7px;
|
|
166
|
+
min-height: 15rem;
|
|
167
|
+
min-height: 6rlh;
|
|
163
168
|
}
|
|
164
169
|
select {
|
|
165
170
|
border: 1px solid #222;
|
|
@@ -258,6 +263,9 @@ input[type="checkbox"] + label {
|
|
|
258
263
|
display: inline;
|
|
259
264
|
padding: 0 14px;
|
|
260
265
|
}
|
|
266
|
+
label input[type="radio"] {
|
|
267
|
+
margin-right: 10px;
|
|
268
|
+
}
|
|
261
269
|
select + .error,
|
|
262
270
|
input + .error {
|
|
263
271
|
display: block;
|
|
@@ -273,12 +281,23 @@ input + .error {
|
|
|
273
281
|
input[type="file"] + .error {
|
|
274
282
|
margin-top: 0;
|
|
275
283
|
}
|
|
284
|
+
input:invalid {
|
|
285
|
+
border-color: red;
|
|
286
|
+
background-color: darkred;
|
|
287
|
+
}
|
|
288
|
+
.dark input, .dark textarea {
|
|
289
|
+
background-color: #232729;
|
|
290
|
+
border-color: #1b1f20;
|
|
291
|
+
color: #efefef;
|
|
292
|
+
}
|
|
276
293
|
.fieldset {
|
|
277
|
-
border: 1px solid #222;
|
|
278
294
|
margin-bottom: 5px;
|
|
279
295
|
border-top-left-radius: 4px;
|
|
280
296
|
border-top-right-radius: 4px;
|
|
281
297
|
}
|
|
298
|
+
.dark .fieldset {
|
|
299
|
+
border: 1px solid #222;
|
|
300
|
+
}
|
|
282
301
|
.fieldset .fields {
|
|
283
302
|
visibility: hidden;
|
|
284
303
|
opacity: 0;
|
|
@@ -296,7 +315,7 @@ input[type="file"] + .error {
|
|
|
296
315
|
text-align: left;
|
|
297
316
|
display: block;
|
|
298
317
|
cursor: pointer;
|
|
299
|
-
background-color:
|
|
318
|
+
background-color: var(--color-lightGray);
|
|
300
319
|
height: 30px;
|
|
301
320
|
line-height: 30px;
|
|
302
321
|
margin: 0;
|
|
@@ -327,6 +346,11 @@ input[type="file"] + .error {
|
|
|
327
346
|
.fieldset.toggle.on .legend:before {
|
|
328
347
|
background-position: -144px -51px;
|
|
329
348
|
}
|
|
349
|
+
fieldset legend {
|
|
350
|
+
font-size: 1.1rem;
|
|
351
|
+
padding: 0 5px;
|
|
352
|
+
}
|
|
353
|
+
|
|
330
354
|
/* Switch */
|
|
331
355
|
input.switch:empty {
|
|
332
356
|
display: none;
|
|
@@ -528,7 +552,7 @@ i.info {
|
|
|
528
552
|
background-position: -150px -78px;
|
|
529
553
|
}
|
|
530
554
|
.umap-delete:before {
|
|
531
|
-
background-position: -
|
|
555
|
+
background-position: -32px -8px;
|
|
532
556
|
}
|
|
533
557
|
.umap-edit:before {
|
|
534
558
|
background-position: -6px -6px;
|
|
@@ -542,12 +566,10 @@ i.info {
|
|
|
542
566
|
.permissions-panel,
|
|
543
567
|
.umap-upload,
|
|
544
568
|
.umap-share,
|
|
545
|
-
.umap-edit-container,
|
|
546
569
|
.umap-datalayer-container,
|
|
547
570
|
.umap-layer-properties-container,
|
|
548
571
|
.umap-browse-data,
|
|
549
572
|
.umap-facet-search,
|
|
550
|
-
.umap-browse-datalayers,
|
|
551
573
|
.umap-tilelayer-switcher-container {
|
|
552
574
|
padding: 0 10px;
|
|
553
575
|
}
|
|
@@ -663,7 +685,7 @@ input[type=hidden].blur + [type="button"] {
|
|
|
663
685
|
.copiable-input button {
|
|
664
686
|
background-repeat: no-repeat;
|
|
665
687
|
background-image: url('./img/16.svg');
|
|
666
|
-
background-position: -
|
|
688
|
+
background-position: -141px -140px;
|
|
667
689
|
display: inline;
|
|
668
690
|
padding: 0 10px;
|
|
669
691
|
height: 32px;
|
|
@@ -678,105 +700,10 @@ input[type=hidden].blur + [type="button"] {
|
|
|
678
700
|
.leaflet-ui-container {
|
|
679
701
|
overflow-x: hidden;
|
|
680
702
|
}
|
|
681
|
-
#umap-ui-container {
|
|
682
|
-
/* Added for playwright to consider the element as non visible */
|
|
683
|
-
/* as being out of the visible viewport is not enough */
|
|
684
|
-
visibility: hidden;
|
|
685
|
-
position: absolute;
|
|
686
|
-
bottom: 0;
|
|
687
|
-
padding: 0 10px;
|
|
688
|
-
border-left: 1px solid var(--color-lightGray);
|
|
689
|
-
overflow-x: auto;
|
|
690
|
-
z-index: 1010;
|
|
691
|
-
background-color: #fff;
|
|
692
|
-
opacity: 0.98;
|
|
693
|
-
cursor: initial;
|
|
694
|
-
}
|
|
695
|
-
#umap-ui-container.login-panel {
|
|
696
|
-
position: fixed; /* Should not scroll when used in content pages (like home page) */
|
|
697
|
-
z-index: 1011; /* Above a map panel if any */
|
|
698
|
-
}
|
|
699
|
-
#umap-ui-container.dark {
|
|
700
|
-
border-left: 1px solid #222;
|
|
701
|
-
background-color: var(--color-darkGray);
|
|
702
|
-
color: #efefef;
|
|
703
|
-
}
|
|
704
|
-
#umap-ui-container.fullwidth {
|
|
705
|
-
width: 100%;
|
|
706
|
-
right: -100%;
|
|
707
|
-
z-index: 10000;
|
|
708
|
-
padding-left: 0;
|
|
709
|
-
padding-right: 0;
|
|
710
|
-
}
|
|
711
|
-
.umap-caption-bar-enabled #umap-ui-container {
|
|
712
|
-
bottom: 46px;
|
|
713
|
-
}
|
|
714
703
|
.leaflet-top,
|
|
715
704
|
.leaflet-right {
|
|
716
705
|
transition: all .7s;
|
|
717
706
|
}
|
|
718
|
-
.umap-ui .leaflet-right {
|
|
719
|
-
right: 400px;
|
|
720
|
-
}
|
|
721
|
-
#umap-ui-container,
|
|
722
|
-
#umap-alert-container,
|
|
723
|
-
#umap-tooltip-container {
|
|
724
|
-
-moz-box-sizing:border-box;
|
|
725
|
-
-webkit-box-sizing:border-box;
|
|
726
|
-
box-sizing: border-box;
|
|
727
|
-
}
|
|
728
|
-
#umap-ui-container .umap-popup-content img {
|
|
729
|
-
/* See https://github.com/Leaflet/Leaflet/commit/61d746818b99d362108545c151a27f09d60960ee#commitcomment-6061847 */
|
|
730
|
-
max-width: 99% !important;
|
|
731
|
-
}
|
|
732
|
-
#umap-ui-container .umap-popup-content {
|
|
733
|
-
max-height: inherit;
|
|
734
|
-
}
|
|
735
|
-
#umap-ui-container .body {
|
|
736
|
-
clear: both;
|
|
737
|
-
height: calc(100% - 54px); /* Minus size of toolbox */
|
|
738
|
-
}
|
|
739
|
-
#umap-ui-container .toolbox {
|
|
740
|
-
padding: 5px 10px;
|
|
741
|
-
overflow: hidden;
|
|
742
|
-
display: flex;
|
|
743
|
-
flex-direction: row-reverse;
|
|
744
|
-
font-size: 10px;
|
|
745
|
-
justify-content: flex-start;
|
|
746
|
-
gap: 5px;
|
|
747
|
-
}
|
|
748
|
-
#umap-ui-container .toolbox li {
|
|
749
|
-
color: #2e3436;
|
|
750
|
-
line-height: 32px;
|
|
751
|
-
cursor: pointer;
|
|
752
|
-
float: right;
|
|
753
|
-
display: inline;
|
|
754
|
-
padding: 0 7px;
|
|
755
|
-
border: 1px solid #b6b6b3;
|
|
756
|
-
border-radius: 2px;
|
|
757
|
-
}
|
|
758
|
-
#umap-ui-container.dark .toolbox li {
|
|
759
|
-
color: #d3dfeb;
|
|
760
|
-
border: 1px solid #202425;
|
|
761
|
-
}
|
|
762
|
-
#umap-ui-container .toolbox li:hover {
|
|
763
|
-
color: #2e3436;
|
|
764
|
-
background-color: #d4d4d2;
|
|
765
|
-
}
|
|
766
|
-
#umap-ui-container.dark .toolbox li:hover {
|
|
767
|
-
color: #eeeeec;
|
|
768
|
-
background-color: #353c3e;
|
|
769
|
-
}
|
|
770
|
-
.dark input, .dark textarea {
|
|
771
|
-
background-color: #232729;
|
|
772
|
-
border-color: #1b1f20;
|
|
773
|
-
/*box-shadow: inset 0 0 0 1px #215d9c;*/
|
|
774
|
-
color: #efefef;
|
|
775
|
-
}
|
|
776
|
-
input:invalid {
|
|
777
|
-
border-color: red;
|
|
778
|
-
background-color: darkred;
|
|
779
|
-
}
|
|
780
707
|
|
|
781
708
|
|
|
782
709
|
/* *********** */
|
|
@@ -897,27 +824,6 @@ input:invalid {
|
|
|
897
824
|
/* *********** */
|
|
898
825
|
/* Close link */
|
|
899
826
|
/* *********** */
|
|
900
|
-
.umap-close-icon {
|
|
901
|
-
background-repeat: no-repeat;
|
|
902
|
-
background-image: url('./img/16.svg');
|
|
903
|
-
background-position: -28px -6px;
|
|
904
|
-
display: inline;
|
|
905
|
-
padding: 0 10px;
|
|
906
|
-
vertical-align: middle;
|
|
907
|
-
}
|
|
908
|
-
.dark .umap-close-icon {
|
|
909
|
-
background-image: url('./img/16-white.svg');
|
|
910
|
-
}
|
|
911
|
-
.dark .umap-close-link {
|
|
912
|
-
border: 1px solid #202425;
|
|
913
|
-
color: #eeeeec;
|
|
914
|
-
padding: 0 7px;
|
|
915
|
-
line-height: 32px;
|
|
916
|
-
background-color: var(--color-darkGray);
|
|
917
|
-
}
|
|
918
|
-
.dark .umap-close-link:hover {
|
|
919
|
-
background-color: #2e3436;
|
|
920
|
-
}
|
|
921
827
|
#umap-alert-container .umap-close-link {
|
|
922
828
|
color: #fff;
|
|
923
829
|
float: right;
|
|
@@ -962,35 +868,7 @@ input:invalid {
|
|
|
962
868
|
/* *********** */
|
|
963
869
|
/* Mobile */
|
|
964
870
|
/* *********** */
|
|
965
|
-
@media all and (orientation:landscape) {
|
|
966
|
-
.umap-edit-enabled #umap-ui-container {
|
|
967
|
-
top: 46px;
|
|
968
|
-
}
|
|
969
|
-
#umap-ui-container {
|
|
970
|
-
width: 400px;
|
|
971
|
-
right: -400px;
|
|
972
|
-
top: 0;
|
|
973
|
-
}
|
|
974
|
-
.umap-ui #umap-ui-container {
|
|
975
|
-
right: 0;
|
|
976
|
-
visibility: visible;
|
|
977
|
-
}
|
|
978
|
-
}
|
|
979
871
|
@media all and (orientation:portrait) {
|
|
980
|
-
#umap-ui-container {
|
|
981
|
-
height: 50%;
|
|
982
|
-
max-height: 400px;
|
|
983
|
-
width: 100%;
|
|
984
|
-
bottom: 0;
|
|
985
|
-
right: -100%;
|
|
986
|
-
}
|
|
987
|
-
.umap-ui #umap-ui-container {
|
|
988
|
-
right: 0;
|
|
989
|
-
visibility: visible;
|
|
990
|
-
}
|
|
991
|
-
.umap-ui .leaflet-right {
|
|
992
|
-
right: 0;
|
|
993
|
-
}
|
|
994
872
|
#umap-alert-container {
|
|
995
873
|
width: 100%;
|
|
996
874
|
left: 0;
|