umap-project 3.4.0b3__tar.gz → 3.5.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-3.4.0b3 → umap_project-3.5.0}/PKG-INFO +24 -18
- {umap_project-3.4.0b3 → umap_project-3.5.0}/pyproject.toml +25 -17
- umap_project-3.5.0/umap/__init__.py +1 -0
- umap_project-3.5.0/umap/locale/br/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/br/LC_MESSAGES/django.po +71 -57
- umap_project-3.5.0/umap/locale/da/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/da/LC_MESSAGES/django.po +18 -14
- umap_project-3.5.0/umap/locale/de/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/de/LC_MESSAGES/django.po +20 -16
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/en/LC_MESSAGES/django.po +5 -1
- umap_project-3.5.0/umap/locale/es/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/es/LC_MESSAGES/django.po +20 -16
- umap_project-3.5.0/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/fr/LC_MESSAGES/django.po +18 -14
- umap_project-3.5.0/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/hu/LC_MESSAGES/django.po +20 -16
- umap_project-3.5.0/umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/pl/LC_MESSAGES/django.po +101 -95
- umap_project-3.5.0/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/zh_TW/LC_MESSAGES/django.po +20 -16
- umap_project-3.5.0/umap/management/commands/search_maps.py +77 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/settings/__init__.py +9 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/settings/base.py +7 -6
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/content.css +0 -3
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/bar.css +9 -6
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/form.css +25 -9
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/popup.css +1 -0
- umap_project-3.5.0/umap/static/umap/js/components/copiable.js +47 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/autocomplete.js +32 -67
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/browser.js +4 -4
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/data/features.js +32 -35
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/data/fields.js +189 -23
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/data/layer.js +72 -87
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/domutils.js +25 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/filters.js +13 -40
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/form/fields.js +6 -4
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/formatter.js +9 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/help.js +12 -13
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/importer.js +17 -26
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/importers/banfr.js +0 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/importers/cadastrefr.js +19 -19
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/importers/communesfr.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/importers/datasets.js +14 -14
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/importers/geodatamine.js +20 -22
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/importers/opendata.js +10 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/importers/overpass.js +19 -18
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/managers.js +1 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/permissions.js +15 -5
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/rendering/controls.js +5 -6
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/rendering/icon.js +5 -9
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/rendering/layers/classified.js +16 -11
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/rendering/layers/heat.js +1 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/rendering/map.js +22 -22
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/rendering/popup.js +6 -3
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/rendering/template.js +28 -34
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/rendering/ui.js +1 -2
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/rules.js +34 -41
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/schema.js +0 -7
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/share.js +36 -69
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/slideshow.js +3 -3
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/tableeditor.js +0 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/ui/bar.js +53 -33
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/ui/panel.js +26 -21
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/ui/tooltip.js +1 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/umap.js +75 -80
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/utils.js +12 -3
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/umap.controls.js +33 -14
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/am_ET.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/am_ET.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ar.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ar.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ast.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ast.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/bg.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/bg.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/br.js +44 -36
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/br.json +44 -36
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ca.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ca.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/cs_CZ.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/cs_CZ.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/da.js +8 -9
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/da.json +8 -9
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/de.js +62 -63
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/de.json +62 -63
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/el.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/el.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/en.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/en.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/en_US.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/es.js +19 -20
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/es.json +19 -20
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/et.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/et.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/eu.js +23 -24
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/eu.json +23 -24
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/fa_IR.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/fa_IR.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/fi.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/fi.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/fr.js +8 -9
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/fr.json +8 -9
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/gl.js +147 -148
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/gl.json +147 -148
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/he.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/he.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/hr.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/hr.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/hu.js +8 -9
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/hu.json +8 -9
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/id.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/id.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/is.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/is.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/it.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/it.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ja.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ja.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ko.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ko.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/lt.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/lt.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ms.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ms.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/nl.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/nl.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/no.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/no.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/pl.js +53 -54
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/pl.json +53 -54
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/pl_PL.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/pt.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/pt.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/pt_BR.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/pt_BR.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/pt_PT.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/pt_PT.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ro.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ro.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ru.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/ru.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/sk_SK.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/sk_SK.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/sl.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/sl.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/sr.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/sr.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/sv.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/sv.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/th_TH.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/th_TH.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/tr.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/tr.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/uk_UA.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/uk_UA.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/vi.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/vi.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/vi_VN.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/zh.js +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/zh.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/zh_CN.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/zh_TW.Big5.json +7 -8
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/zh_TW.js +20 -21
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/zh_TW.json +20 -21
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/map.css +5 -4
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/unittests/utils.js +7 -7
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/sync/app.py +4 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/content_footer.html +1 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/css.html +0 -2
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/js.html +1 -3
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/team_form.html +2 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/conftest.py +3 -2
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_anonymous_owned_map.py +1 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_conditional_rules.py +106 -51
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_draw_polygon.py +4 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_draw_polyline.py +11 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_edit_datalayer.py +1 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_fields.py +19 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_iframe.py +1 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_import.py +23 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_map.py +2 -2
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_owned_map.py +2 -2
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_popup.py +31 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_remote_data.py +4 -4
- umap_project-3.5.0/umap/tests/integration/test_search.py +41 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_share.py +2 -2
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_team.py +1 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_websocket_sync.py +6 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_utils.py +4 -1
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/utils.py +10 -3
- umap_project-3.4.0b3/umap/__init__.py +0 -1
- umap_project-3.4.0b3/umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap_project-3.4.0b3/umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap_project-3.4.0b3/umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap_project-3.4.0b3/umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap_project-3.4.0b3/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap_project-3.4.0b3/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap_project-3.4.0b3/umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap_project-3.4.0b3/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap_project-3.4.0b3/umap/static/umap/js/umap.core.js +0 -93
- umap_project-3.4.0b3/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -46
- umap_project-3.4.0b3/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -240
- umap_project-3.4.0b3/umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/.gitignore +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/LICENSE +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/README.md +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/admin.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/apps.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/asgi.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/autocomplete.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/bin/__init__.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/context_processors.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/decorators.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/fields.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/forms.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/am_ET/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/am_ET/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ar/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ar/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ast/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ast/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/bg/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/bg/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ca/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/cs_CZ/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/el/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/el/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/en/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/et/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/et/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/eu/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/fa_IR/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/fi/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/fi/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/gl/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/he/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/he/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/hr/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/hr/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/id/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/id/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/is/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/is/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/it/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/it/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ja/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ja/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ko/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ko/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/lt/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/lt/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ms/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/nl/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/no/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/no/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/pt/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/pt_BR/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/pt_PT/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ro/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ro/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ru/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/ru/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/si/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/si/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/sk_SK/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/sk_SK/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/sl/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/sl/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/sr/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/sr/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/sv/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/th_TH/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/tr/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/tr/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/uk_UA/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/uk_UA/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/vi/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/vi/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/zh/LC_MESSAGES/django.mo +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/locale/zh/LC_MESSAGES/django.po +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/management/__init__.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/management/commands/__init__.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/management/commands/anonymous_edit_url.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/management/commands/clean_tilelayer.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/management/commands/empty_trash.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/management/commands/export_pictogram.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/management/commands/generate_js_locale.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/management/commands/import_pictograms.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/management/commands/migrate_to_S3.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/management/commands/purge_old_versions.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/management/commands/switch_user.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/managers.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/middleware.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0001_initial.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0002_tilelayer_tms.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0003_add_tilelayer.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0004_add_licence.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0005_remove_map_tilelayer.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0006_auto_20190407_0719.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0007_auto_20190416_1757.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0008_alter_map_settings.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0009_star.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0012_datalayer_settings.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0013_datalayer_edit_status.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0014_map_created_at.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0015_alter_pictogram_pictogram.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0016_pictogram_category.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0017_migrate_to_openstreetmap_oauth2.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0018_datalayer_uuid.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0019_migrate_internal_remote_datalayers.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0020_alter_tilelayer_url_template.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0021_remove_map_description.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0022_add_team.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0023_alter_datalayer_uuid.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0024_alter_map_share_status.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0025_alter_datalayer_geojson.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0027_map_tags.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/0028_map_is_template.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/migrations/__init__.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/models.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/settings/dev.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/settings/local.py.sample +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/.gitignore +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/base.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/browser.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/contextmenu.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/dialog.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/icon.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/importers.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/panel.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/slideshow.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/tableeditor.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/tooltip.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/css/window.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/favicons/apple-touch-icon.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/favicons/favicon.ico +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/favicons/icon-192.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/favicons/icon-512.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/favicons/icon.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/font/FiraSans-Light.woff +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/font.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/16-white.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/16.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/24-white.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/24.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/alert-icon-error.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/alert-icon-info.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/alert-icon-success.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/edit.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/home.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/icon-bg.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/icon-delete.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/icon-download.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/icon-duplicate.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/icon-edit.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/icon-external-link.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/icon-share.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/icon-view.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/importers/banfr.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/importers/cadastrefr.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/importers/communesfr.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/importers/datasets.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/importers/geodatamine.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/importers/opendata.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/importers/overpass.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/importers/random.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/importers/random1.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/importers/random2.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/logo.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/logo_filigree.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/logo_lightcyan.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/logo_small.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/marker.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/marker.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/opensource.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/osm.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/providers/bitbucket.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/providers/github.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/providers/keycloak.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/providers/twitter-oauth2.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/search.gif +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/source/16-white.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/source/16.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/source/24-white.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/source/24.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/img/target.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/components/alerts/alert.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/components/alerts/alert.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/components/base.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/components/fragment.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/components/modal.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/caption.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/dompurify.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/drop.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/form/builder.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/global.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/i18n.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/importers/openrouteservice.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/leaflet-configure.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/orderable.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/printer.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/rendering/layers/cluster.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/request.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/sync/engine.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/sync/hlc.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/sync/undo.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/sync/updaters.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/sync/websocket.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/templates.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/ui/base.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/ui/contextmenu.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/ui/dialog.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/js/modules/urls.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/si.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/locale/si.json +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/nav.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/theme.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/unittests/URLs.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/unittests/hlc.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/unittests/sync.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vars.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/betterknown/betterknown.mjs +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/colorbrewer/colorbrewer.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/csv2geojson/csv2geojson.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/dompurify/purify.es.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/dompurify/purify.es.mjs.map +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/editable/Leaflet.Editable.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/editable/Path.Drag.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/fullscreen/fullscreen.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/fullscreen/fullscreen@2x.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/geojson-to-gpx/index.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/hash/leaflet-hash.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/heat/leaflet-heat.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/i18n/Leaflet.i18n.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/iconlayers/check.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/iconlayers/iconLayers.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/iconlayers/iconLayers.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/iconlayers/transparent-pixel.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/leaflet/images/layers-2x.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/leaflet/images/layers.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/leaflet/images/marker-icon-2x.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/leaflet/images/marker-icon.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/leaflet/images/marker-shadow.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/leaflet/leaflet.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/loading/Control.Loading.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/loading/Control.Loading.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/measurable/Leaflet.Measurable.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/measurable/Leaflet.Measurable.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/minimap/Control.MiniMap.min.css +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/minimap/Control.MiniMap.min.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/minimap/images/toggle.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/minimap/images/toggle.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/openrouteservice/ors-js-client.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/openrouteservice/ors-js-client.js.map +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/photon/leaflet.photon.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/simple-elevation-chart/elevation.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/simple-elevation-chart/elevation.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/snapdom/snapdom.min.mjs +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/textpath/leaflet.textpath.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/togeojson/togeojson.es.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/togeojson/togeojson.es.mjs.map +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/tokml/tokml.es.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/static/umap/vendors/tokml/tokml.es.mjs.map +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/storage/__init__.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/storage/fs.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/storage/s3.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/storage/staticfiles.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/sync/__init__.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/sync/payloads.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/403.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/404.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/40x.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/500.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/auth/user_detail.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/auth/user_form.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/auth/user_stars.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/base.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/registration/login.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/about.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/about_summary.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/branding.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/components/alerts/alert.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/components/provider.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/content.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/dashboard_menu.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/design_system.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/footer.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/header.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/home.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/locale.js +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/login_popup_end.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/map_detail.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/map_fragment.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/map_init.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/map_list.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/map_table.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/messages.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/navigation.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/password_change.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/password_change_done.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/search.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/search_bar.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/success.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/team_confirm_delete.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/team_detail.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/user_dashboard.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/user_map_table.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/user_teams.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templates/umap/user_templates.html +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templatetags/__init__.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/templatetags/umap_tags.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/__init__.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/base.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/conftest.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/categorized_highway.geojson +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/choropleth_region_chomage.geojson +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/circle.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/display_on_load.umap +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/empty_tile.png +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/heatmap_data.json +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/remote_data.umap +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/star.svg +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_circles_layer.geojson +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_import_osm_relation.json +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_upload_data.csv +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_upload_data.gpx +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_upload_data.json +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_upload_data.kml +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_upload_data.umap +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_upload_data_osm.json +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_upload_data_with_iconurl.umap +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_upload_empty_coordinates.json +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_upload_georss.xml +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_upload_missing_name.json +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_upload_non_linear_ring.json +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/fixtures/test_upload_simple_marker.json +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/__init__.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/helpers.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_basics.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_browser.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_caption.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_categorized_layer.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_choropleth.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_circles_layer.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_cluster.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_dashboard.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_datalayer.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_draw_route.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_edit_map.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_edit_marker.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_edit_polygon.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_export_map.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_features_id_generation.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_filters.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_heatmap.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_map_list.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_map_preview.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_optimistic_merge.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_picto.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_querystring.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_save.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_slideshow.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_star.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_tableeditor.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_templates.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_tilelayer.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_undo_redo.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_view_marker.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_view_polygon.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/integration/test_view_polyline.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/settings.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_clean_tilelayer.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_dashboard.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_datalayer.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_datalayer_s3.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_datalayer_views.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_empty_trash.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_licence.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_map.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_map_views.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_merge_features.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_purge_old_versions.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_statics.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_switch_user.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_team_views.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_tilelayer.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/tests/test_views.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/urls.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/views.py +0 -0
- {umap_project-3.4.0b3 → umap_project-3.5.0}/umap/wsgi.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.5.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,31 +19,33 @@ Requires-Python: >=3.10
|
|
|
19
19
|
Requires-Dist: django-agnocomplete==2.2.0
|
|
20
20
|
Requires-Dist: django-environ==0.12.0
|
|
21
21
|
Requires-Dist: django-probes==1.7.0
|
|
22
|
-
Requires-Dist: django
|
|
23
|
-
Requires-Dist: pillow==
|
|
24
|
-
Requires-Dist: psycopg==3.2.
|
|
25
|
-
Requires-Dist: rcssmin==1.2.
|
|
22
|
+
Requires-Dist: django<6.0,>=5.1
|
|
23
|
+
Requires-Dist: pillow==12.0.0
|
|
24
|
+
Requires-Dist: psycopg==3.2.13
|
|
25
|
+
Requires-Dist: rcssmin==1.2.2
|
|
26
26
|
Requires-Dist: requests==2.32.5
|
|
27
|
-
Requires-Dist: rjsmin==1.2.
|
|
28
|
-
Requires-Dist: social-auth-app-django==5.
|
|
29
|
-
Requires-Dist: social-auth-core==4.
|
|
27
|
+
Requires-Dist: rjsmin==1.2.5
|
|
28
|
+
Requires-Dist: social-auth-app-django==5.6.0
|
|
29
|
+
Requires-Dist: social-auth-core==4.8.1
|
|
30
|
+
Provides-Extra: deploy
|
|
31
|
+
Requires-Dist: django==5.2.9; extra == 'deploy'
|
|
30
32
|
Provides-Extra: dev
|
|
33
|
+
Requires-Dist: django==5.2.9; extra == 'dev'
|
|
31
34
|
Requires-Dist: djlint==1.36.4; extra == 'dev'
|
|
32
|
-
Requires-Dist: hatch==1.
|
|
33
|
-
Requires-Dist: isort==
|
|
34
|
-
Requires-Dist: mkdocs-material==9.
|
|
35
|
+
Requires-Dist: hatch==1.15.1; extra == 'dev'
|
|
36
|
+
Requires-Dist: isort==7.0.0; extra == 'dev'
|
|
37
|
+
Requires-Dist: mkdocs-material==9.7.0; extra == 'dev'
|
|
35
38
|
Requires-Dist: mkdocs-static-i18n==1.3.0; extra == 'dev'
|
|
36
39
|
Requires-Dist: mkdocs==1.6.1; extra == 'dev'
|
|
37
|
-
Requires-Dist: pymdown-extensions==10.
|
|
38
|
-
Requires-Dist: ruff==0.14.
|
|
39
|
-
Requires-Dist: vermin==1.
|
|
40
|
-
Provides-Extra: docker
|
|
41
|
-
Requires-Dist: uvicorn==0.37.0; extra == 'docker'
|
|
40
|
+
Requires-Dist: pymdown-extensions==10.17.1; extra == 'dev'
|
|
41
|
+
Requires-Dist: ruff==0.14.6; extra == 'dev'
|
|
42
|
+
Requires-Dist: vermin==1.7.0; extra == 'dev'
|
|
42
43
|
Provides-Extra: s3
|
|
43
44
|
Requires-Dist: django-storages[s3]==1.14.6; extra == 's3'
|
|
44
45
|
Provides-Extra: sync
|
|
45
46
|
Requires-Dist: pydantic==2.12.3; extra == 'sync'
|
|
46
|
-
Requires-Dist: redis==
|
|
47
|
+
Requires-Dist: redis==7.1.0; extra == 'sync'
|
|
48
|
+
Requires-Dist: uvicorn==0.38.0; extra == 'sync'
|
|
47
49
|
Requires-Dist: websockets==15.0.1; extra == 'sync'
|
|
48
50
|
Provides-Extra: test
|
|
49
51
|
Requires-Dist: daphne==4.2.1; extra == 'test'
|
|
@@ -51,10 +53,14 @@ Requires-Dist: factory-boy==3.3.3; extra == 'test'
|
|
|
51
53
|
Requires-Dist: moto[s3]==5.1.14; extra == 'test'
|
|
52
54
|
Requires-Dist: playwright>=1.39; extra == 'test'
|
|
53
55
|
Requires-Dist: pytest-django==4.11.1; extra == 'test'
|
|
54
|
-
Requires-Dist: pytest-playwright==0.7.
|
|
56
|
+
Requires-Dist: pytest-playwright==0.7.2; extra == 'test'
|
|
55
57
|
Requires-Dist: pytest-rerunfailures==16.1; extra == 'test'
|
|
56
58
|
Requires-Dist: pytest-xdist<4,>=3.5.0; extra == 'test'
|
|
57
59
|
Requires-Dist: pytest==8.4.2; extra == 'test'
|
|
60
|
+
Provides-Extra: yunohost
|
|
61
|
+
Requires-Dist: django-yunohost-integration==0.10.9; extra == 'yunohost'
|
|
62
|
+
Requires-Dist: django==5.1.15; extra == 'yunohost'
|
|
63
|
+
Requires-Dist: uvicorn==0.38.0; extra == 'yunohost'
|
|
58
64
|
Description-Content-Type: text/markdown
|
|
59
65
|
|
|
60
66
|
[](https://matrix.to/#/#umap:matrix.org)
|
|
@@ -28,30 +28,32 @@ classifiers = [
|
|
|
28
28
|
"Programming Language :: Python :: 3.12",
|
|
29
29
|
]
|
|
30
30
|
dependencies = [
|
|
31
|
-
|
|
31
|
+
# Yunohost needs to be pinned at 5.1.X to keep psql==13 compat.
|
|
32
|
+
"Django>=5.1,<6.0",
|
|
32
33
|
"django-agnocomplete==2.2.0",
|
|
33
34
|
"django-environ==0.12.0",
|
|
34
35
|
"django-probes==1.7.0",
|
|
35
|
-
"Pillow==
|
|
36
|
-
"psycopg==3.2.
|
|
36
|
+
"Pillow==12.0.0",
|
|
37
|
+
"psycopg==3.2.13",
|
|
37
38
|
"requests==2.32.5",
|
|
38
|
-
"rcssmin==1.2.
|
|
39
|
-
"rjsmin==1.2.
|
|
40
|
-
"social-auth-core==4.
|
|
41
|
-
"social-auth-app-django==5.
|
|
39
|
+
"rcssmin==1.2.2",
|
|
40
|
+
"rjsmin==1.2.5",
|
|
41
|
+
"social-auth-core==4.8.1",
|
|
42
|
+
"social-auth-app-django==5.6.0",
|
|
42
43
|
]
|
|
43
44
|
|
|
44
45
|
[project.optional-dependencies]
|
|
45
46
|
dev = [
|
|
46
|
-
"
|
|
47
|
-
"
|
|
47
|
+
"Django==5.2.9",
|
|
48
|
+
"hatch==1.15.1",
|
|
49
|
+
"ruff==0.14.6",
|
|
48
50
|
"djlint==1.36.4",
|
|
49
51
|
"mkdocs==1.6.1",
|
|
50
|
-
"mkdocs-material==9.
|
|
52
|
+
"mkdocs-material==9.7.0",
|
|
51
53
|
"mkdocs-static-i18n==1.3.0",
|
|
52
|
-
"vermin==1.
|
|
53
|
-
"pymdown-extensions==10.
|
|
54
|
-
"isort==
|
|
54
|
+
"vermin==1.7.0",
|
|
55
|
+
"pymdown-extensions==10.17.1",
|
|
56
|
+
"isort==7.0.0",
|
|
55
57
|
]
|
|
56
58
|
test = [
|
|
57
59
|
"daphne==4.2.1",
|
|
@@ -59,20 +61,26 @@ test = [
|
|
|
59
61
|
"playwright>=1.39",
|
|
60
62
|
"pytest==8.4.2",
|
|
61
63
|
"pytest-django==4.11.1",
|
|
62
|
-
"pytest-playwright==0.7.
|
|
64
|
+
"pytest-playwright==0.7.2",
|
|
63
65
|
"pytest-rerunfailures==16.1",
|
|
64
66
|
"pytest-xdist>=3.5.0,<4",
|
|
65
67
|
"moto[s3]==5.1.14"
|
|
66
68
|
]
|
|
67
|
-
|
|
68
|
-
"
|
|
69
|
+
deploy = [
|
|
70
|
+
"Django==5.2.9",
|
|
71
|
+
]
|
|
72
|
+
yunohost = [
|
|
73
|
+
"uvicorn==0.38.0",
|
|
74
|
+
"Django==5.1.15",
|
|
75
|
+
"django_yunohost_integration==0.10.9",
|
|
69
76
|
]
|
|
70
77
|
s3 = [
|
|
71
78
|
"django-storages[s3]==1.14.6",
|
|
72
79
|
]
|
|
73
80
|
sync = [
|
|
81
|
+
"uvicorn==0.38.0",
|
|
74
82
|
"pydantic==2.12.3",
|
|
75
|
-
"redis==
|
|
83
|
+
"redis==7.1.0",
|
|
76
84
|
"websockets==15.0.1",
|
|
77
85
|
]
|
|
78
86
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = "3.5.0"
|
|
Binary file
|
|
@@ -10,7 +10,7 @@ msgid ""
|
|
|
10
10
|
msgstr ""
|
|
11
11
|
"Project-Id-Version: uMap\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date: 2025-
|
|
13
|
+
"POT-Creation-Date: 2025-11-24 14:49+0000\n"
|
|
14
14
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
15
15
|
"Last-Translator: Dren ar Frankig <hadrienlouque@gmail.com>, 2023-2025\n"
|
|
16
16
|
"Language-Team: Breton (http://app.transifex.com/openstreetmap/umap/language/br/)\n"
|
|
@@ -44,7 +44,7 @@ msgstr ""
|
|
|
44
44
|
msgid "name"
|
|
45
45
|
msgstr "anv"
|
|
46
46
|
|
|
47
|
-
#: models.py:63 models.py:
|
|
47
|
+
#: models.py:63 models.py:507
|
|
48
48
|
msgid "description"
|
|
49
49
|
msgstr "deskrivadur"
|
|
50
50
|
|
|
@@ -64,23 +64,23 @@ msgstr "Patrom URL a implij furmad teol OSM"
|
|
|
64
64
|
msgid "Order of the tilelayers in the edit box"
|
|
65
65
|
msgstr ""
|
|
66
66
|
|
|
67
|
-
#: models.py:176 models.py:
|
|
67
|
+
#: models.py:176 models.py:501
|
|
68
68
|
msgid "Only editable with secret edit link"
|
|
69
69
|
msgstr "N'haller he c'hemmañ nemet gant ul liamm aozañ kuzh"
|
|
70
70
|
|
|
71
|
-
#: models.py:177 models.py:
|
|
71
|
+
#: models.py:177 models.py:502
|
|
72
72
|
msgid "Everyone can edit"
|
|
73
73
|
msgstr "An holl a c'hall kemmañ"
|
|
74
74
|
|
|
75
|
-
#: models.py:180 models.py:
|
|
75
|
+
#: models.py:180 models.py:495
|
|
76
76
|
msgid "Everyone"
|
|
77
77
|
msgstr "An holl"
|
|
78
78
|
|
|
79
|
-
#: models.py:181 models.py:190 models.py:
|
|
79
|
+
#: models.py:181 models.py:190 models.py:496
|
|
80
80
|
msgid "Editors and team only"
|
|
81
81
|
msgstr "An aozerien hag ar skipailh hepken"
|
|
82
82
|
|
|
83
|
-
#: models.py:182 models.py:
|
|
83
|
+
#: models.py:182 models.py:497
|
|
84
84
|
msgid "Owner only"
|
|
85
85
|
msgstr "Ar perc'henner hepken"
|
|
86
86
|
|
|
@@ -100,7 +100,7 @@ msgstr "Piv bennak en deus ul liamm"
|
|
|
100
100
|
msgid "Blocked"
|
|
101
101
|
msgstr "Stanket"
|
|
102
102
|
|
|
103
|
-
#: models.py:192 models.py:
|
|
103
|
+
#: models.py:192 models.py:491
|
|
104
104
|
msgid "Deleted"
|
|
105
105
|
msgstr "Dilemel"
|
|
106
106
|
|
|
@@ -140,15 +140,15 @@ msgstr "aozerien"
|
|
|
140
140
|
msgid "team"
|
|
141
141
|
msgstr "skipailh"
|
|
142
142
|
|
|
143
|
-
#: models.py:230 models.py:
|
|
143
|
+
#: models.py:230 models.py:523
|
|
144
144
|
msgid "edit status"
|
|
145
145
|
msgstr "statud aozañ"
|
|
146
146
|
|
|
147
|
-
#: models.py:235 models.py:
|
|
147
|
+
#: models.py:235 models.py:528
|
|
148
148
|
msgid "share status"
|
|
149
149
|
msgstr "digor da biv?"
|
|
150
150
|
|
|
151
|
-
#: models.py:238 models.py:
|
|
151
|
+
#: models.py:238 models.py:518
|
|
152
152
|
msgid "settings"
|
|
153
153
|
msgstr "arventennoù"
|
|
154
154
|
|
|
@@ -164,15 +164,15 @@ msgstr "Ar gartenn-mañ zo ur gartenn patrom"
|
|
|
164
164
|
msgid "Clone of"
|
|
165
165
|
msgstr "Eilenn eus"
|
|
166
166
|
|
|
167
|
-
#: models.py:
|
|
167
|
+
#: models.py:490 models.py:494 models.py:500
|
|
168
168
|
msgid "Inherit"
|
|
169
169
|
msgstr "Dre ziouer"
|
|
170
170
|
|
|
171
|
-
#: models.py:
|
|
171
|
+
#: models.py:513
|
|
172
172
|
msgid "display on load"
|
|
173
173
|
msgstr "diskwel pa vez karget"
|
|
174
174
|
|
|
175
|
-
#: models.py:
|
|
175
|
+
#: models.py:514
|
|
176
176
|
msgid "Display this layer on load."
|
|
177
177
|
msgstr "Diskwel ar gwiskad-mañ pa vez karget"
|
|
178
178
|
|
|
@@ -327,7 +327,7 @@ msgstr "Merdeiñ e kartennoù spilhennet %(current_user)s"
|
|
|
327
327
|
msgid "%(current_user)s has no starred maps yet."
|
|
328
328
|
msgstr "%(current_user)s n'en/he deus kartenn spilhennet ebet."
|
|
329
329
|
|
|
330
|
-
#: templates/base.html:
|
|
330
|
+
#: templates/base.html:16
|
|
331
331
|
msgid ""
|
|
332
332
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
333
333
|
"them in your site."
|
|
@@ -339,7 +339,7 @@ msgstr "Kevreañ"
|
|
|
339
339
|
|
|
340
340
|
#: templates/registration/login.html:22
|
|
341
341
|
msgid "To save and easily find your maps, identify yourself."
|
|
342
|
-
msgstr "Evit enrollañ ha kavout ho kartennoù en doare aes, kennaskit mar plij."
|
|
342
|
+
msgstr "Evit enrollañ ha kavout ho kartennoù en un doare aes, kennaskit mar plij."
|
|
343
343
|
|
|
344
344
|
#: templates/registration/login.html:25
|
|
345
345
|
msgid "Please log in with your account:"
|
|
@@ -411,48 +411,54 @@ msgid "Play with the demo"
|
|
|
411
411
|
msgstr "Amprouiñ an tañva!"
|
|
412
412
|
|
|
413
413
|
#: templates/umap/components/alerts/alert.html:17
|
|
414
|
-
#: templates/umap/components/alerts/alert.html:
|
|
415
|
-
#: templates/umap/components/alerts/alert.html:
|
|
414
|
+
#: templates/umap/components/alerts/alert.html:69
|
|
415
|
+
#: templates/umap/components/alerts/alert.html:97
|
|
416
416
|
msgid "Close"
|
|
417
417
|
msgstr "Serriñ"
|
|
418
418
|
|
|
419
419
|
#: templates/umap/components/alerts/alert.html:32
|
|
420
420
|
#, python-format
|
|
421
421
|
msgid ""
|
|
422
|
-
"
|
|
423
|
-
"
|
|
424
|
-
"
|
|
422
|
+
"Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
|
|
423
|
+
"class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
424
|
+
"class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
|
|
425
425
|
msgstr ""
|
|
426
426
|
|
|
427
|
-
#: templates/umap/components/alerts/alert.html:
|
|
427
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
428
|
+
msgid ""
|
|
429
|
+
"Yes, I want to continue editing anonymously, I will save the secret edit "
|
|
430
|
+
"link to be able to edit this map later or on another device"
|
|
431
|
+
msgstr ""
|
|
432
|
+
|
|
433
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
428
434
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
429
435
|
msgstr ""
|
|
430
436
|
|
|
431
|
-
#: templates/umap/components/alerts/alert.html:
|
|
437
|
+
#: templates/umap/components/alerts/alert.html:43
|
|
432
438
|
msgid "Copy link"
|
|
433
439
|
msgstr "Eilañ al liamm"
|
|
434
440
|
|
|
435
|
-
#: templates/umap/components/alerts/alert.html:
|
|
441
|
+
#: templates/umap/components/alerts/alert.html:50
|
|
436
442
|
msgid "Enter your email address to receive the secret link:"
|
|
437
443
|
msgstr ""
|
|
438
444
|
|
|
439
|
-
#: templates/umap/components/alerts/alert.html:
|
|
445
|
+
#: templates/umap/components/alerts/alert.html:56
|
|
440
446
|
msgid "Email"
|
|
441
447
|
msgstr "Postel"
|
|
442
448
|
|
|
443
|
-
#: templates/umap/components/alerts/alert.html:
|
|
449
|
+
#: templates/umap/components/alerts/alert.html:59
|
|
444
450
|
msgid "Send me the link"
|
|
445
451
|
msgstr "Kas al liamm din"
|
|
446
452
|
|
|
447
|
-
#: templates/umap/components/alerts/alert.html:
|
|
453
|
+
#: templates/umap/components/alerts/alert.html:84
|
|
448
454
|
msgid "See their edits in another tab"
|
|
449
|
-
msgstr ""
|
|
455
|
+
msgstr "Gwelet o kemmoù en un ivinell all"
|
|
450
456
|
|
|
451
|
-
#: templates/umap/components/alerts/alert.html:
|
|
457
|
+
#: templates/umap/components/alerts/alert.html:87
|
|
452
458
|
msgid "Keep your changes and loose theirs"
|
|
453
459
|
msgstr "Derc'hel ho kemmoù hag argas o re"
|
|
454
460
|
|
|
455
|
-
#: templates/umap/components/alerts/alert.html:
|
|
461
|
+
#: templates/umap/components/alerts/alert.html:90
|
|
456
462
|
msgid "Keep their changes and loose yours"
|
|
457
463
|
msgstr "Derc'hel o c'hemmoù hag argas ho re"
|
|
458
464
|
|
|
@@ -491,6 +497,10 @@ msgstr "Darempred"
|
|
|
491
497
|
msgid "Help"
|
|
492
498
|
msgstr "Skoazell"
|
|
493
499
|
|
|
500
|
+
#: templates/umap/content_footer.html:10
|
|
501
|
+
msgid "Terms of Service"
|
|
502
|
+
msgstr "Termenoù implij"
|
|
503
|
+
|
|
494
504
|
#: templates/umap/dashboard_menu.html:6
|
|
495
505
|
#, python-format
|
|
496
506
|
msgid "My Maps (%(count)s)"
|
|
@@ -503,11 +513,11 @@ msgstr "Ma c'hartennoù"
|
|
|
503
513
|
#: templates/umap/dashboard_menu.html:11
|
|
504
514
|
#, python-format
|
|
505
515
|
msgid "My Templates (%(count)s)"
|
|
506
|
-
msgstr ""
|
|
516
|
+
msgstr "Ma fatromoù (%(count)s)"
|
|
507
517
|
|
|
508
518
|
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
509
519
|
msgid "My Templates"
|
|
510
|
-
msgstr ""
|
|
520
|
+
msgstr "Ma fatromoù"
|
|
511
521
|
|
|
512
522
|
#: templates/umap/dashboard_menu.html:17
|
|
513
523
|
msgid "My profile"
|
|
@@ -533,7 +543,7 @@ msgstr "Kevreet oc'h. Gortozit ur pennadig..."
|
|
|
533
543
|
msgid "template"
|
|
534
544
|
msgstr "patrom"
|
|
535
545
|
|
|
536
|
-
#: templates/umap/map_list.html:18 views.py:
|
|
546
|
+
#: templates/umap/map_list.html:18 views.py:459
|
|
537
547
|
msgid "by"
|
|
538
548
|
msgstr "gant"
|
|
539
549
|
|
|
@@ -723,7 +733,7 @@ msgstr "Kartennoù krouet da ziwezhañ"
|
|
|
723
733
|
msgid "Search maps"
|
|
724
734
|
msgstr "Klask kartennoù"
|
|
725
735
|
|
|
726
|
-
#: templates/umap/search_bar.html:14
|
|
736
|
+
#: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
|
|
727
737
|
msgid "Any category"
|
|
728
738
|
msgstr "An holl rummadoù"
|
|
729
739
|
|
|
@@ -768,7 +778,7 @@ msgstr "Klask e-touez ma c'hartennoù"
|
|
|
768
778
|
|
|
769
779
|
#: templates/umap/user_dashboard.html:11
|
|
770
780
|
msgid "Map’s name"
|
|
771
|
-
msgstr ""
|
|
781
|
+
msgstr "Anv ar gartenn"
|
|
772
782
|
|
|
773
783
|
#: templates/umap/user_dashboard.html:12
|
|
774
784
|
#, python-format
|
|
@@ -793,93 +803,97 @@ msgstr "Skipailh nevez"
|
|
|
793
803
|
|
|
794
804
|
#: templates/umap/user_templates.html:10
|
|
795
805
|
msgid "Search my templates"
|
|
796
|
-
msgstr ""
|
|
806
|
+
msgstr "Klask e-touez ma fatromoù"
|
|
797
807
|
|
|
798
808
|
#: templates/umap/user_templates.html:11
|
|
799
809
|
msgid "Template’s name"
|
|
800
|
-
msgstr ""
|
|
810
|
+
msgstr "Anv ar patrom"
|
|
801
811
|
|
|
802
812
|
#: templates/umap/user_templates.html:12
|
|
803
813
|
#, python-format
|
|
804
814
|
msgid "Download %(count)s templates"
|
|
805
|
-
msgstr ""
|
|
815
|
+
msgstr "Pellgargañ %(count)s a batromoù"
|
|
806
816
|
|
|
807
817
|
#: templates/umap/user_templates.html:15
|
|
808
818
|
msgid "You have no template yet."
|
|
809
|
-
msgstr ""
|
|
819
|
+
msgstr "N'ho peus patrom ebet c'hoazh."
|
|
810
820
|
|
|
811
821
|
#: templates/umap/user_templates.html:16
|
|
812
822
|
msgid "Create a template"
|
|
813
|
-
msgstr ""
|
|
823
|
+
msgstr "Krouiñ ur patrom"
|
|
814
824
|
|
|
815
825
|
#: templates/umap/user_templates.html:17
|
|
816
826
|
msgid "No template found."
|
|
817
|
-
msgstr ""
|
|
827
|
+
msgstr "Patrom ebet kavet."
|
|
818
828
|
|
|
819
|
-
#: views.py:
|
|
829
|
+
#: views.py:235
|
|
820
830
|
msgid "Cannot delete a team with more than one member"
|
|
821
|
-
msgstr ""
|
|
831
|
+
msgstr "N'haller ket dilemel ur skipailh gant ouzhpenn un ezel"
|
|
822
832
|
|
|
823
|
-
#: views.py:
|
|
833
|
+
#: views.py:239
|
|
824
834
|
#, python-format
|
|
825
835
|
msgid "Team “%(name)s” has been deleted"
|
|
826
836
|
msgstr "Dilamet eo bet ar skipailh “%(name)s”"
|
|
827
837
|
|
|
828
|
-
#: views.py:
|
|
838
|
+
#: views.py:464
|
|
829
839
|
msgid "View the map"
|
|
830
840
|
msgstr "Diskouez ar gartenn"
|
|
831
841
|
|
|
832
|
-
#: views.py:
|
|
842
|
+
#: views.py:872
|
|
833
843
|
msgid "See full screen"
|
|
834
844
|
msgstr "Gwelet er mod skramm a-bezh"
|
|
835
845
|
|
|
836
|
-
#: views.py:
|
|
846
|
+
#: views.py:1015
|
|
837
847
|
msgid "Map editors updated with success!"
|
|
838
848
|
msgstr "Aozerien ar gartenn bet hizivaet gant berzh!"
|
|
839
849
|
|
|
840
|
-
#: views.py:
|
|
850
|
+
#: views.py:1051
|
|
841
851
|
#, python-format
|
|
842
852
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
843
853
|
msgstr "Al liamm uMap evit aozañ ho kartenn: %(map_name)s"
|
|
844
854
|
|
|
845
|
-
#: views.py:
|
|
855
|
+
#: views.py:1054
|
|
846
856
|
#, python-format
|
|
847
857
|
msgid "Here is your secret edit link: %(link)s"
|
|
848
858
|
msgstr "Setu ho liamm aozañ kuzh: %(link)s"
|
|
849
859
|
|
|
850
|
-
#: views.py:
|
|
860
|
+
#: views.py:1061
|
|
851
861
|
#, python-format
|
|
852
862
|
msgid "Can't send email to %(email)s"
|
|
853
863
|
msgstr "N'haller ket kas ur postel da %(email)s"
|
|
854
864
|
|
|
855
|
-
#: views.py:
|
|
865
|
+
#: views.py:1064
|
|
856
866
|
#, python-format
|
|
857
867
|
msgid "Email sent to %(email)s"
|
|
858
868
|
msgstr "Postel kaset da %(email)s"
|
|
859
869
|
|
|
860
|
-
#: views.py:
|
|
870
|
+
#: views.py:1075
|
|
861
871
|
msgid "Only its owner can delete the map."
|
|
862
872
|
msgstr "N'eus nemet perc'henner ar gartenn a c'hall he dilemel."
|
|
863
873
|
|
|
864
|
-
#: views.py:
|
|
874
|
+
#: views.py:1081
|
|
865
875
|
msgid "Map successfully deleted."
|
|
866
876
|
msgstr "Kartenn dilamet gant berzh."
|
|
867
877
|
|
|
868
|
-
#: views.py:
|
|
878
|
+
#: views.py:1107
|
|
869
879
|
#, python-format
|
|
870
880
|
msgid ""
|
|
871
881
|
"Your map has been cloned! If you want to edit this map from another "
|
|
872
882
|
"computer, please use this link: %(anonymous_url)s"
|
|
873
883
|
msgstr "Doublet eo bet ho kartenn! M'ho peus c'hoant d'he c'hemmañ diwar un urzhiataer all, implijit al liamm-mañ: %(anonymous_url)s"
|
|
874
884
|
|
|
875
|
-
#: views.py:
|
|
885
|
+
#: views.py:1112
|
|
876
886
|
msgid "Congratulations, your map has been cloned!"
|
|
877
887
|
msgstr "Doublet eo bet ho kartenn gant berzh!"
|
|
878
888
|
|
|
879
|
-
#: views.py:
|
|
889
|
+
#: views.py:1366
|
|
880
890
|
msgid "Layer successfully deleted."
|
|
881
891
|
msgstr "Gwiskad dilamet gant berzh."
|
|
882
892
|
|
|
883
|
-
#: views.py:
|
|
893
|
+
#: views.py:1388
|
|
884
894
|
msgid "Permissions updated with success!"
|
|
885
895
|
msgstr "Aotreoù hizivaet gant berzh!"
|
|
896
|
+
|
|
897
|
+
#: views.py:1405
|
|
898
|
+
msgid "Generic"
|
|
899
|
+
msgstr ""
|
|
Binary file
|
|
@@ -12,7 +12,7 @@ msgid ""
|
|
|
12
12
|
msgstr ""
|
|
13
13
|
"Project-Id-Version: uMap\n"
|
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
|
15
|
-
"POT-Creation-Date: 2025-
|
|
15
|
+
"POT-Creation-Date: 2025-11-24 14:49+0000\n"
|
|
16
16
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
17
17
|
"Last-Translator: ERYpTION, 2025\n"
|
|
18
18
|
"Language-Team: Danish (http://app.transifex.com/openstreetmap/umap/language/da/)\n"
|
|
@@ -46,7 +46,7 @@ msgstr "Brug af “%(name)s” til at autentificere er forældet og vil snart bl
|
|
|
46
46
|
msgid "name"
|
|
47
47
|
msgstr "navn"
|
|
48
48
|
|
|
49
|
-
#: models.py:63 models.py:
|
|
49
|
+
#: models.py:63 models.py:507
|
|
50
50
|
msgid "description"
|
|
51
51
|
msgstr "beskrivelse"
|
|
52
52
|
|
|
@@ -66,23 +66,23 @@ msgstr "URL-skabelon i OSM flise-format"
|
|
|
66
66
|
msgid "Order of the tilelayers in the edit box"
|
|
67
67
|
msgstr "Rækkefølge af flise-lag i redigeringsboksen"
|
|
68
68
|
|
|
69
|
-
#: models.py:176 models.py:
|
|
69
|
+
#: models.py:176 models.py:501
|
|
70
70
|
msgid "Only editable with secret edit link"
|
|
71
71
|
msgstr "Er kun redigerbart med et hemmeligt redigeringslink"
|
|
72
72
|
|
|
73
|
-
#: models.py:177 models.py:
|
|
73
|
+
#: models.py:177 models.py:502
|
|
74
74
|
msgid "Everyone can edit"
|
|
75
75
|
msgstr "Alle kan redigere"
|
|
76
76
|
|
|
77
|
-
#: models.py:180 models.py:
|
|
77
|
+
#: models.py:180 models.py:495
|
|
78
78
|
msgid "Everyone"
|
|
79
79
|
msgstr "Alle"
|
|
80
80
|
|
|
81
|
-
#: models.py:181 models.py:190 models.py:
|
|
81
|
+
#: models.py:181 models.py:190 models.py:496
|
|
82
82
|
msgid "Editors and team only"
|
|
83
83
|
msgstr "Kun redaktører og team"
|
|
84
84
|
|
|
85
|
-
#: models.py:182 models.py:
|
|
85
|
+
#: models.py:182 models.py:497
|
|
86
86
|
msgid "Owner only"
|
|
87
87
|
msgstr "Kun ejer"
|
|
88
88
|
|
|
@@ -102,7 +102,7 @@ msgstr "Enhver med link"
|
|
|
102
102
|
msgid "Blocked"
|
|
103
103
|
msgstr "Blokeret"
|
|
104
104
|
|
|
105
|
-
#: models.py:192 models.py:
|
|
105
|
+
#: models.py:192 models.py:491
|
|
106
106
|
msgid "Deleted"
|
|
107
107
|
msgstr "Slettet"
|
|
108
108
|
|
|
@@ -142,15 +142,15 @@ msgstr "redaktører"
|
|
|
142
142
|
msgid "team"
|
|
143
143
|
msgstr "team"
|
|
144
144
|
|
|
145
|
-
#: models.py:230 models.py:
|
|
145
|
+
#: models.py:230 models.py:523
|
|
146
146
|
msgid "edit status"
|
|
147
147
|
msgstr "redigeringsstatus"
|
|
148
148
|
|
|
149
|
-
#: models.py:235 models.py:
|
|
149
|
+
#: models.py:235 models.py:528
|
|
150
150
|
msgid "share status"
|
|
151
151
|
msgstr "delingsstatus"
|
|
152
152
|
|
|
153
|
-
#: models.py:238 models.py:
|
|
153
|
+
#: models.py:238 models.py:518
|
|
154
154
|
msgid "settings"
|
|
155
155
|
msgstr "indstillinger"
|
|
156
156
|
|
|
@@ -166,15 +166,15 @@ msgstr "Dette kort er et skabelonkort."
|
|
|
166
166
|
msgid "Clone of"
|
|
167
167
|
msgstr "Kloning af"
|
|
168
168
|
|
|
169
|
-
#: models.py:
|
|
169
|
+
#: models.py:490 models.py:494 models.py:500
|
|
170
170
|
msgid "Inherit"
|
|
171
171
|
msgstr "Nedarv"
|
|
172
172
|
|
|
173
|
-
#: models.py:
|
|
173
|
+
#: models.py:513
|
|
174
174
|
msgid "display on load"
|
|
175
175
|
msgstr "vis ved indlæsning"
|
|
176
176
|
|
|
177
|
-
#: models.py:
|
|
177
|
+
#: models.py:514
|
|
178
178
|
msgid "Display this layer on load."
|
|
179
179
|
msgstr "Vis dette lag ved indlæsning."
|
|
180
180
|
|
|
@@ -499,6 +499,10 @@ msgstr "Kontakt"
|
|
|
499
499
|
msgid "Help"
|
|
500
500
|
msgstr "Hjælp"
|
|
501
501
|
|
|
502
|
+
#: templates/umap/content_footer.html:10
|
|
503
|
+
msgid "Terms of Service"
|
|
504
|
+
msgstr "Servicevilkår"
|
|
505
|
+
|
|
502
506
|
#: templates/umap/dashboard_menu.html:6
|
|
503
507
|
#, python-format
|
|
504
508
|
msgid "My Maps (%(count)s)"
|
|
Binary file
|