umap-project 2.9.0b0__tar.gz → 2.9.1__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.9.0b0 → umap_project-2.9.1}/PKG-INFO +13 -13
- {umap_project-2.9.0b0 → umap_project-2.9.1}/pyproject.toml +12 -12
- umap_project-2.9.1/umap/__init__.py +1 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/admin.py +15 -2
- umap_project-2.9.1/umap/locale/br/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/br/LC_MESSAGES/django.po +111 -67
- umap_project-2.9.1/umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/cs_CZ/LC_MESSAGES/django.po +112 -67
- umap_project-2.9.1/umap/locale/el/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/el/LC_MESSAGES/django.po +132 -87
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/en/LC_MESSAGES/django.po +11 -10
- umap_project-2.9.1/umap/locale/es/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/es/LC_MESSAGES/django.po +117 -71
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/fr/LC_MESSAGES/django.po +11 -10
- umap_project-2.9.1/umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/gl/LC_MESSAGES/django.po +219 -173
- umap_project-2.9.1/umap/locale/it/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/it/LC_MESSAGES/django.po +145 -100
- umap_project-2.9.1/umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/nl/LC_MESSAGES/django.po +198 -152
- umap_project-2.9.1/umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/pt/LC_MESSAGES/django.po +118 -73
- umap_project-2.9.1/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/zh_TW/LC_MESSAGES/django.po +112 -67
- umap_project-2.9.1/umap/middleware.py +46 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/models.py +20 -10
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/settings/base.py +2 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/base.css +4 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/css/bar.css +32 -0
- umap_project-2.9.1/umap/static/umap/css/contextmenu.css +28 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/css/form.css +5 -10
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/css/icon.css +39 -3
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/css/panel.css +18 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/css/popup.css +0 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/16-white.svg +3 -3
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/16.svg +1 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/24-white.svg +17 -16
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/24.svg +29 -18
- umap_project-2.9.1/umap/static/umap/img/providers/twitter-oauth2.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/source/16-white.svg +4 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/source/16.svg +1 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/source/24-white.svg +20 -18
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/source/24.svg +30 -19
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/browser.js +2 -2
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/caption.js +4 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/data/features.js +80 -32
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/data/layer.js +37 -50
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/form/builder.js +23 -22
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/form/fields.js +13 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/formatter.js +6 -2
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/help.js +17 -23
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/importer.js +5 -2
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/permissions.js +6 -2
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/rendering/layers/classified.js +1 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/rendering/map.js +1 -21
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/rendering/ui.js +20 -38
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/rules.js +1 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/saving.js +5 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/schema.js +4 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/sync/engine.js +39 -14
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/sync/updaters.js +7 -6
- umap_project-2.9.1/umap/static/umap/js/modules/sync/websocket.js +83 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/ui/bar.js +84 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/ui/contextmenu.js +9 -2
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/ui/panel.js +5 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/umap.js +85 -44
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/umap.controls.js +11 -341
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/am_ET.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/am_ET.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ar.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ar.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ast.js +17 -5
- umap_project-2.9.0b0/umap/static/umap/locale/en.json → umap_project-2.9.1/umap/static/umap/locale/ast.json +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/bg.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/bg.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/br.js +20 -15
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/br.json +20 -15
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ca.js +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ca.json +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/cs_CZ.js +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/cs_CZ.json +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/da.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/da.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/de.js +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/de.json +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/el.js +54 -50
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/el.json +54 -50
- umap_project-2.9.1/umap/static/umap/locale/en.js +539 -0
- umap_project-2.9.0b0/umap/static/umap/locale/id.json → umap_project-2.9.1/umap/static/umap/locale/en.json +18 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/en_US.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/es.js +13 -9
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/es.json +13 -9
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/et.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/et.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/eu.js +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/eu.json +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/fa_IR.js +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/fa_IR.json +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/fi.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/fi.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/fr.js +9 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/fr.json +9 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/gl.js +13 -9
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/gl.json +13 -9
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/he.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/he.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/hr.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/hr.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/hu.js +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/hu.json +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/id.js +17 -5
- umap_project-2.9.0b0/umap/static/umap/locale/en.js → umap_project-2.9.1/umap/static/umap/locale/id.json +10 -8
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/is.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/is.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/it.js +31 -27
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/it.json +31 -27
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ja.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ja.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ko.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ko.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/lt.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/lt.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ms.js +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ms.json +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/nl.js +132 -127
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/nl.json +132 -127
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/no.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/no.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/pl.js +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/pl.json +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/pl_PL.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/pt.js +38 -33
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/pt.json +38 -33
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/pt_BR.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/pt_BR.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/pt_PT.js +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/pt_PT.json +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ro.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ro.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ru.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/ru.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/sk_SK.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/sk_SK.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/sl.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/sl.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/sr.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/sr.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/sv.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/sv.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/th_TH.js +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/th_TH.json +8 -4
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/tr.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/tr.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/uk_UA.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/uk_UA.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/vi.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/vi.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/vi_VN.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/zh.js +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/zh.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/zh_CN.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/zh_TW.Big5.json +17 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/zh_TW.js +14 -10
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/zh_TW.json +14 -10
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/map.css +17 -68
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/nav.css +4 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vars.css +1 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/dompurify/purify.es.js +138 -354
- umap_project-2.9.1/umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/editable/Leaflet.Editable.js +1 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/sync/app.py +19 -13
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/sync/payloads.py +8 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/auth/user_form.html +2 -2
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/content_footer.html +1 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/css.html +0 -2
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/js.html +0 -1
- umap_project-2.9.1/umap/templates/umap/messages.html +12 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/search_bar.html +1 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_anonymous_owned_map.py +2 -2
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_basics.py +2 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_categorized_layer.py +4 -8
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_choropleth.py +1 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_conditional_rules.py +3 -3
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_draw_polygon.py +11 -19
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_draw_polyline.py +6 -14
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_edit_datalayer.py +10 -10
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_edit_map.py +27 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_edit_marker.py +5 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_edit_polygon.py +5 -5
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_features_id_generation.py +2 -6
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_import.py +93 -29
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_owned_map.py +1 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_save.py +2 -2
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_tableeditor.py +7 -7
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_view_marker.py +10 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_websocket_sync.py +128 -32
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/utils.py +4 -1
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/views.py +0 -9
- umap_project-2.9.0b0/umap/__init__.py +0 -1
- umap_project-2.9.0b0/umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap_project-2.9.0b0/umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap_project-2.9.0b0/umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap_project-2.9.0b0/umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap_project-2.9.0b0/umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap_project-2.9.0b0/umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap_project-2.9.0b0/umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap_project-2.9.0b0/umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap_project-2.9.0b0/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap_project-2.9.0b0/umap/middleware.py +0 -17
- umap_project-2.9.0b0/umap/static/umap/css/contextmenu.css +0 -16
- umap_project-2.9.0b0/umap/static/umap/img/providers/twitter-oauth2.png +0 -0
- umap_project-2.9.0b0/umap/static/umap/js/modules/sync/websocket.js +0 -75
- umap_project-2.9.0b0/umap/static/umap/locale/ast.json +0 -524
- umap_project-2.9.0b0/umap/static/umap/vendors/dompurify/purify.es.mjs.map +0 -1
- umap_project-2.9.0b0/umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -1
- umap_project-2.9.0b0/umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -1
- umap_project-2.9.0b0/umap/templates/umap/messages.html +0 -8
- {umap_project-2.9.0b0 → umap_project-2.9.1}/.gitignore +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/LICENSE +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/README.md +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/apps.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/asgi.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/autocomplete.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/bin/__init__.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/context_processors.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/decorators.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/fields.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/forms.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/am_ET/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/am_ET/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ar/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ar/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ast/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ast/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/bg/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/bg/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ca/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/da/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/da/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/de/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/de/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/en/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/et/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/et/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/eu/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/fa_IR/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/fi/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/fi/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/he/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/he/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/hr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/hr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/hu/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/id/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/id/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/is/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/is/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ja/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ja/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ko/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ko/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/lt/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/lt/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ms/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/no/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/no/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/pl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/pt_BR/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/pt_PT/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ro/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ro/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ru/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/ru/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/si/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/si/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/sk_SK/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/sk_SK/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/sl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/sl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/sr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/sr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/sv/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/th_TH/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/tr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/tr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/uk_UA/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/uk_UA/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/vi/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/vi/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/zh/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/locale/zh/LC_MESSAGES/django.po +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/management/__init__.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/management/commands/__init__.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/management/commands/anonymous_edit_url.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/management/commands/clean_tilelayer.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/management/commands/empty_trash.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/management/commands/generate_js_locale.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/management/commands/import_pictograms.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/management/commands/migrate_to_S3.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/managers.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0001_initial.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0002_tilelayer_tms.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0003_add_tilelayer.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0004_add_licence.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0005_remove_map_tilelayer.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0006_auto_20190407_0719.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0007_auto_20190416_1757.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0008_alter_map_settings.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0009_star.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0012_datalayer_settings.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0013_datalayer_edit_status.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0014_map_created_at.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0015_alter_pictogram_pictogram.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0016_pictogram_category.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0017_migrate_to_openstreetmap_oauth2.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0018_datalayer_uuid.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0019_migrate_internal_remote_datalayers.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0020_alter_tilelayer_url_template.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0021_remove_map_description.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0022_add_team.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0023_alter_datalayer_uuid.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0024_alter_map_share_status.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0025_alter_datalayer_geojson.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/migrations/__init__.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/settings/__init__.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/settings/dev.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/settings/local.py.sample +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/.gitignore +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/content.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/css/dialog.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/css/importers.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/css/slideshow.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/css/tableeditor.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/css/tooltip.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/css/window.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/favicons/apple-touch-icon.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/favicons/favicon.ico +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/favicons/icon-192.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/favicons/icon-512.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/favicons/icon.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/font/FiraSans-Light.woff +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/font.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/alert-icon-error.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/alert-icon-info.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/alert-icon-success.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/edit.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/icon-bg.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/icon-delete.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/icon-download.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/icon-duplicate.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/icon-edit.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/icon-external-link.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/icon-share.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/icon-view.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/importers/cadastrefr.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/importers/communesfr.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/importers/datasets.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/importers/geodatamine.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/importers/overpass.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/importers/random.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/importers/random1.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/importers/random2.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/logo.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/logo_filigree.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/logo_lightcyan.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/logo_small.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/marker.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/marker.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/opensource.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/osm.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/providers/bitbucket.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/providers/github.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/providers/keycloak.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/img/search.gif +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/components/alerts/alert.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/components/alerts/alert.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/components/base.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/components/fragment.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/autocomplete.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/dompurify.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/drop.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/facets.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/global.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/i18n.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/importers/cadastrefr.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/importers/communesfr.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/importers/datasets.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/importers/geodatamine.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/importers/overpass.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/leaflet-configure.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/orderable.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/rendering/icon.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/rendering/layers/base.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/rendering/layers/cluster.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/rendering/layers/heat.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/rendering/popup.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/rendering/template.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/request.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/share.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/slideshow.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/sync/hlc.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/tableeditor.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/ui/base.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/ui/dialog.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/ui/tooltip.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/urls.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/modules/utils.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/js/umap.core.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/si.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/locale/si.json +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/test/.eslintrc +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/test/DataLayer.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/test/Feature.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/test/Map.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/test/Marker.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/test/Polygon.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/test/Polyline.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/test/Util.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/test/_pre.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/test/index.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/theme.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/unittests/URLs.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/unittests/hlc.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/unittests/sync.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/unittests/utils.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/colorbrewer/colorbrewer.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/csv2geojson/csv2geojson.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/editable/Path.Drag.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/fullscreen/fullscreen.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/fullscreen/fullscreen@2x.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/geojson-to-gpx/index.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/hash/leaflet-hash.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/heat/leaflet-heat.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/i18n/Leaflet.i18n.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/iconlayers/check.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/iconlayers/iconLayers.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/iconlayers/iconLayers.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/iconlayers/transparent-pixel.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/leaflet/images/layers-2x.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/leaflet/images/layers.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/leaflet/images/marker-icon-2x.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/leaflet/images/marker-icon.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/leaflet/images/marker-shadow.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/leaflet/leaflet.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/loading/Control.Loading.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/loading/Control.Loading.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/markercluster/MarkerCluster.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/measurable/Leaflet.Measurable.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/measurable/Leaflet.Measurable.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/minimap/Control.MiniMap.min.css +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/minimap/Control.MiniMap.min.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/minimap/images/toggle.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/minimap/images/toggle.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/photon/leaflet.photon.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/togeojson/togeojson.es.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/togeojson/togeojson.es.mjs.map +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/tokml/tokml.es.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/static/umap/vendors/tokml/tokml.es.mjs.map +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/storage/__init__.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/storage/fs.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/storage/s3.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/storage/staticfiles.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/sync/__init__.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/403.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/404.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/40x.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/500.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/auth/user_detail.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/auth/user_stars.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/base.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/registration/login.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/about.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/about_summary.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/branding.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/components/alerts/alert.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/components/provider.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/content.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/dashboard_menu.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/footer.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/header.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/home.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/locale.js +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/login_popup_end.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/map_detail.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/map_fragment.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/map_init.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/map_list.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/map_table.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/navigation.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/password_change.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/password_change_done.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/search.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/success.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/team_confirm_delete.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/team_detail.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/team_form.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/user_dashboard.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templates/umap/user_teams.html +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templatetags/__init__.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/templatetags/umap_tags.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/__init__.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/base.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/conftest.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/categorized_highway.geojson +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/choropleth_region_chomage.geojson +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/circle.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/display_on_load.umap +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/empty_tile.png +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/star.svg +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_circles_layer.geojson +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_import_osm_relation.json +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_upload_data.csv +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_upload_data.gpx +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_upload_data.json +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_upload_data.kml +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_upload_data.umap +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_upload_data_osm.json +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_upload_empty_coordinates.json +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_upload_georss.xml +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_upload_missing_name.json +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_upload_non_linear_ring.json +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/fixtures/test_upload_simple_marker.json +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/__init__.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/conftest.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/helpers.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_browser.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_caption.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_circles_layer.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_cluster.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_dashboard.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_datalayer.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_export_map.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_facets_browser.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_map.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_map_list.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_map_preview.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_optimistic_merge.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_picto.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_popup.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_querystring.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_share.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_slideshow.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_star.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_team.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_tilelayer.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_view_polygon.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/integration/test_view_polyline.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/settings.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_clean_tilelayer.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_dashboard.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_datalayer.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_datalayer_s3.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_datalayer_views.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_empty_trash.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_licence.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_map.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_map_views.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_merge_features.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_statics.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_team_views.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_tilelayer.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_utils.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/tests/test_views.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/urls.py +0 -0
- {umap_project-2.9.0b0 → umap_project-2.9.1}/umap/wsgi.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 2.9.
|
|
3
|
+
Version: 2.9.1
|
|
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,23 +19,23 @@ 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==5.1.
|
|
22
|
+
Requires-Dist: django==5.1.6
|
|
23
23
|
Requires-Dist: pillow==11.1.0
|
|
24
24
|
Requires-Dist: psycopg==3.2.4
|
|
25
|
-
Requires-Dist: rcssmin==1.2.
|
|
25
|
+
Requires-Dist: rcssmin==1.2.1
|
|
26
26
|
Requires-Dist: requests==2.32.3
|
|
27
|
-
Requires-Dist: rjsmin==1.2.
|
|
27
|
+
Requires-Dist: rjsmin==1.2.4
|
|
28
28
|
Requires-Dist: social-auth-app-django==5.4.2
|
|
29
29
|
Requires-Dist: social-auth-core==4.5.4
|
|
30
30
|
Provides-Extra: dev
|
|
31
31
|
Requires-Dist: djlint==1.36.4; extra == 'dev'
|
|
32
32
|
Requires-Dist: hatch==1.14.0; extra == 'dev'
|
|
33
|
-
Requires-Dist: isort==
|
|
34
|
-
Requires-Dist: mkdocs-material==9.
|
|
35
|
-
Requires-Dist: mkdocs-static-i18n==1.
|
|
33
|
+
Requires-Dist: isort==6.0.1; extra == 'dev'
|
|
34
|
+
Requires-Dist: mkdocs-material==9.6.4; extra == 'dev'
|
|
35
|
+
Requires-Dist: mkdocs-static-i18n==1.3.0; extra == 'dev'
|
|
36
36
|
Requires-Dist: mkdocs==1.6.1; extra == 'dev'
|
|
37
|
-
Requires-Dist: pymdown-extensions==10.14.
|
|
38
|
-
Requires-Dist: ruff==0.9.
|
|
37
|
+
Requires-Dist: pymdown-extensions==10.14.3; extra == 'dev'
|
|
38
|
+
Requires-Dist: ruff==0.9.9; extra == 'dev'
|
|
39
39
|
Requires-Dist: vermin==1.6.0; extra == 'dev'
|
|
40
40
|
Provides-Extra: docker
|
|
41
41
|
Requires-Dist: uwsgi==2.0.28; extra == 'docker'
|
|
@@ -46,11 +46,11 @@ Requires-Dist: pydantic==2.10.6; extra == 'sync'
|
|
|
46
46
|
Requires-Dist: redis==5.2.1; extra == 'sync'
|
|
47
47
|
Provides-Extra: test
|
|
48
48
|
Requires-Dist: daphne==4.1.2; extra == 'test'
|
|
49
|
-
Requires-Dist: factory-boy==3.3.
|
|
50
|
-
Requires-Dist: moto[s3]==5.0.
|
|
49
|
+
Requires-Dist: factory-boy==3.3.3; extra == 'test'
|
|
50
|
+
Requires-Dist: moto[s3]==5.0.28; extra == 'test'
|
|
51
51
|
Requires-Dist: playwright>=1.39; extra == 'test'
|
|
52
|
-
Requires-Dist: pytest-django==4.
|
|
53
|
-
Requires-Dist: pytest-playwright==0.
|
|
52
|
+
Requires-Dist: pytest-django==4.10.0; extra == 'test'
|
|
53
|
+
Requires-Dist: pytest-playwright==0.7.0; extra == 'test'
|
|
54
54
|
Requires-Dist: pytest-rerunfailures==15.0; extra == 'test'
|
|
55
55
|
Requires-Dist: pytest-xdist<4,>=3.5.0; extra == 'test'
|
|
56
56
|
Requires-Dist: pytest==8.3.4; extra == 'test'
|
|
@@ -28,15 +28,15 @@ classifiers = [
|
|
|
28
28
|
"Programming Language :: Python :: 3.12",
|
|
29
29
|
]
|
|
30
30
|
dependencies = [
|
|
31
|
-
"Django==5.1.
|
|
31
|
+
"Django==5.1.6",
|
|
32
32
|
"django-agnocomplete==2.2.0",
|
|
33
33
|
"django-environ==0.12.0",
|
|
34
34
|
"django-probes==1.7.0",
|
|
35
35
|
"Pillow==11.1.0",
|
|
36
36
|
"psycopg==3.2.4",
|
|
37
37
|
"requests==2.32.3",
|
|
38
|
-
"rcssmin==1.2.
|
|
39
|
-
"rjsmin==1.2.
|
|
38
|
+
"rcssmin==1.2.1",
|
|
39
|
+
"rjsmin==1.2.4",
|
|
40
40
|
"social-auth-core==4.5.4",
|
|
41
41
|
"social-auth-app-django==5.4.2",
|
|
42
42
|
]
|
|
@@ -44,25 +44,25 @@ dependencies = [
|
|
|
44
44
|
[project.optional-dependencies]
|
|
45
45
|
dev = [
|
|
46
46
|
"hatch==1.14.0",
|
|
47
|
-
"ruff==0.9.
|
|
47
|
+
"ruff==0.9.9",
|
|
48
48
|
"djlint==1.36.4",
|
|
49
49
|
"mkdocs==1.6.1",
|
|
50
|
-
"mkdocs-material==9.
|
|
51
|
-
"mkdocs-static-i18n==1.
|
|
50
|
+
"mkdocs-material==9.6.4",
|
|
51
|
+
"mkdocs-static-i18n==1.3.0",
|
|
52
52
|
"vermin==1.6.0",
|
|
53
|
-
"pymdown-extensions==10.14.
|
|
54
|
-
"isort==
|
|
53
|
+
"pymdown-extensions==10.14.3",
|
|
54
|
+
"isort==6.0.1",
|
|
55
55
|
]
|
|
56
56
|
test = [
|
|
57
57
|
"daphne==4.1.2",
|
|
58
|
-
"factory-boy==3.3.
|
|
58
|
+
"factory-boy==3.3.3",
|
|
59
59
|
"playwright>=1.39",
|
|
60
60
|
"pytest==8.3.4",
|
|
61
|
-
"pytest-django==4.
|
|
62
|
-
"pytest-playwright==0.
|
|
61
|
+
"pytest-django==4.10.0",
|
|
62
|
+
"pytest-playwright==0.7.0",
|
|
63
63
|
"pytest-rerunfailures==15.0",
|
|
64
64
|
"pytest-xdist>=3.5.0,<4",
|
|
65
|
-
"moto[s3]==5.0.
|
|
65
|
+
"moto[s3]==5.0.28"
|
|
66
66
|
]
|
|
67
67
|
docker = [
|
|
68
68
|
"uwsgi==2.0.28",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = "2.9.1"
|
|
@@ -69,9 +69,18 @@ class PictogramAdmin(admin.ModelAdmin):
|
|
|
69
69
|
list_filter = ("category",)
|
|
70
70
|
|
|
71
71
|
|
|
72
|
-
class TeamAdmin(admin.ModelAdmin):
|
|
72
|
+
class TeamAdmin(CSVExportMixin, admin.ModelAdmin):
|
|
73
|
+
csv_fields = [
|
|
74
|
+
"pk",
|
|
75
|
+
"name",
|
|
76
|
+
"users_count",
|
|
77
|
+
]
|
|
78
|
+
list_display = list(admin.ModelAdmin.list_display) + ["users_count"]
|
|
73
79
|
filter_horizontal = ("users",)
|
|
74
80
|
|
|
81
|
+
def users_count(self, obj):
|
|
82
|
+
return obj.users.count()
|
|
83
|
+
|
|
75
84
|
|
|
76
85
|
class UserAdmin(CSVExportMixin, UserAdminBase):
|
|
77
86
|
csv_fields = [
|
|
@@ -83,13 +92,17 @@ class UserAdmin(CSVExportMixin, UserAdminBase):
|
|
|
83
92
|
"last_login",
|
|
84
93
|
"date_joined",
|
|
85
94
|
"maps_count",
|
|
95
|
+
"user_teams",
|
|
86
96
|
]
|
|
87
|
-
list_display = list(UserAdminBase.list_display) + ["maps_count"]
|
|
97
|
+
list_display = list(UserAdminBase.list_display) + ["maps_count", "user_teams"]
|
|
88
98
|
|
|
89
99
|
def maps_count(self, obj):
|
|
90
100
|
# owner maps + maps as editor
|
|
91
101
|
return obj.owned_maps.count() + obj.map_set.count()
|
|
92
102
|
|
|
103
|
+
def user_teams(self, obj):
|
|
104
|
+
return " ; ".join(obj.teams.values_list("name", flat=True))
|
|
105
|
+
|
|
93
106
|
|
|
94
107
|
admin.site.register(Map, MapAdmin)
|
|
95
108
|
admin.site.register(DataLayer)
|
|
Binary file
|
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
# This file is distributed under the same license as the PACKAGE package.
|
|
4
4
|
#
|
|
5
5
|
# Translators:
|
|
6
|
-
# Dren ar Frankig <hadrienlouque@gmail.com>, 2023-
|
|
6
|
+
# Dren ar Frankig <hadrienlouque@gmail.com>, 2023-2025
|
|
7
7
|
# Dren ar Frankig <hadrienlouque@gmail.com>, 2023
|
|
8
8
|
# Dren ar Frankig <hadrienlouque@gmail.com>, 2023
|
|
9
9
|
msgid ""
|
|
10
10
|
msgstr ""
|
|
11
11
|
"Project-Id-Version: uMap\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date:
|
|
13
|
+
"POT-Creation-Date: 2025-03-03 14:11+0000\n"
|
|
14
14
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
15
|
-
"Last-Translator: Dren ar Frankig <hadrienlouque@gmail.com>, 2023-
|
|
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"
|
|
17
17
|
"MIME-Version: 1.0\n"
|
|
18
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -26,7 +26,7 @@ msgstr "Ezporzhiadur CSV"
|
|
|
26
26
|
|
|
27
27
|
#: decorators.py:60
|
|
28
28
|
msgid "This map is not publicly available"
|
|
29
|
-
msgstr ""
|
|
29
|
+
msgstr "Ar gartenn-mañ n'eo ket publik"
|
|
30
30
|
|
|
31
31
|
#: middleware.py:13
|
|
32
32
|
msgid "Site is readonly for maintenance"
|
|
@@ -36,7 +36,7 @@ msgstr "Al lec'hienn zo da lenn hepken rak emeur ouzh he c'hempenn"
|
|
|
36
36
|
msgid "name"
|
|
37
37
|
msgstr "anv"
|
|
38
38
|
|
|
39
|
-
#: models.py:62 models.py:
|
|
39
|
+
#: models.py:62 models.py:485
|
|
40
40
|
msgid "description"
|
|
41
41
|
msgstr "deskrivadur"
|
|
42
42
|
|
|
@@ -56,23 +56,23 @@ msgstr "Patrom URL a implij furmad teol OSM"
|
|
|
56
56
|
msgid "Order of the tilelayers in the edit box"
|
|
57
57
|
msgstr ""
|
|
58
58
|
|
|
59
|
-
#: models.py:175 models.py:
|
|
59
|
+
#: models.py:175 models.py:479
|
|
60
60
|
msgid "Only editable with secret edit link"
|
|
61
61
|
msgstr "N'haller he c'hemmañ nemet gant ul liamm aozañ kuzh"
|
|
62
62
|
|
|
63
|
-
#: models.py:176 models.py:
|
|
63
|
+
#: models.py:176 models.py:480
|
|
64
64
|
msgid "Everyone can edit"
|
|
65
65
|
msgstr "An holl a c'hall kemmañ"
|
|
66
66
|
|
|
67
|
-
#: models.py:179 models.py:
|
|
67
|
+
#: models.py:179 models.py:473
|
|
68
68
|
msgid "Everyone"
|
|
69
69
|
msgstr "An holl"
|
|
70
70
|
|
|
71
|
-
#: models.py:180 models.py:189 models.py:
|
|
71
|
+
#: models.py:180 models.py:189 models.py:474
|
|
72
72
|
msgid "Editors and team only"
|
|
73
|
-
msgstr ""
|
|
73
|
+
msgstr "An aozerien hag ar skipailh hepken"
|
|
74
74
|
|
|
75
|
-
#: models.py:181 models.py:
|
|
75
|
+
#: models.py:181 models.py:475
|
|
76
76
|
msgid "Owner only"
|
|
77
77
|
msgstr "Ar perc'henner hepken"
|
|
78
78
|
|
|
@@ -92,7 +92,7 @@ msgstr "Piv bennak en deus ul liamm"
|
|
|
92
92
|
msgid "Blocked"
|
|
93
93
|
msgstr "Stanket"
|
|
94
94
|
|
|
95
|
-
#: models.py:191
|
|
95
|
+
#: models.py:191 models.py:469
|
|
96
96
|
msgid "Deleted"
|
|
97
97
|
msgstr "Dilemel"
|
|
98
98
|
|
|
@@ -132,31 +132,31 @@ msgstr "aozerien"
|
|
|
132
132
|
msgid "team"
|
|
133
133
|
msgstr "skipailh"
|
|
134
134
|
|
|
135
|
-
#: models.py:229 models.py:
|
|
135
|
+
#: models.py:229 models.py:501
|
|
136
136
|
msgid "edit status"
|
|
137
137
|
msgstr "statud aozañ"
|
|
138
138
|
|
|
139
|
-
#: models.py:234
|
|
139
|
+
#: models.py:234 models.py:506
|
|
140
140
|
msgid "share status"
|
|
141
141
|
msgstr "digor da biv?"
|
|
142
142
|
|
|
143
|
-
#: models.py:237 models.py:
|
|
143
|
+
#: models.py:237 models.py:496
|
|
144
144
|
msgid "settings"
|
|
145
145
|
msgstr "arventennoù"
|
|
146
146
|
|
|
147
|
-
#: models.py:
|
|
147
|
+
#: models.py:407
|
|
148
148
|
msgid "Clone of"
|
|
149
149
|
msgstr "Eilenn eus"
|
|
150
150
|
|
|
151
|
-
#: models.py:
|
|
151
|
+
#: models.py:468 models.py:472 models.py:478
|
|
152
152
|
msgid "Inherit"
|
|
153
153
|
msgstr "Dre ziouer"
|
|
154
154
|
|
|
155
|
-
#: models.py:
|
|
155
|
+
#: models.py:491
|
|
156
156
|
msgid "display on load"
|
|
157
157
|
msgstr "diskwel pa vez karget"
|
|
158
158
|
|
|
159
|
-
#: models.py:
|
|
159
|
+
#: models.py:492
|
|
160
160
|
msgid "Display this layer on load."
|
|
161
161
|
msgstr "Diskwel ar gwiskad-mañ pa vez karget"
|
|
162
162
|
|
|
@@ -169,46 +169,60 @@ msgstr ""
|
|
|
169
169
|
|
|
170
170
|
#: templates/403.html:10 templates/404.html:8
|
|
171
171
|
msgid "← Go to the homepage"
|
|
172
|
-
msgstr ""
|
|
172
|
+
msgstr "← Distreiñ d'ar bajenn degemer"
|
|
173
173
|
|
|
174
174
|
#: templates/404.html:7
|
|
175
175
|
msgid "404 Page Not Found"
|
|
176
|
-
msgstr ""
|
|
176
|
+
msgstr "404 N'eo ket bet kavet ar bajenn"
|
|
177
177
|
|
|
178
|
-
#: templates/auth/user_detail.html:
|
|
178
|
+
#: templates/auth/user_detail.html:6
|
|
179
|
+
#, python-format
|
|
180
|
+
msgid "%(current_user)s’s maps"
|
|
181
|
+
msgstr "Kartennoù eus %(current_user)s"
|
|
182
|
+
|
|
183
|
+
#: templates/auth/user_detail.html:12
|
|
179
184
|
#, python-format
|
|
180
185
|
msgid "Browse %(current_user)s's maps"
|
|
181
186
|
msgstr "Merdeiñ e kartennoù %(current_user)s"
|
|
182
187
|
|
|
183
|
-
#: templates/auth/user_detail.html:
|
|
188
|
+
#: templates/auth/user_detail.html:21
|
|
184
189
|
#, python-format
|
|
185
190
|
msgid "%(current_user)s has no maps."
|
|
186
191
|
msgstr "%(current_user)s n'en/he deus kartenn ebet."
|
|
187
192
|
|
|
188
|
-
#: templates/auth/user_form.html:
|
|
193
|
+
#: templates/auth/user_form.html:6
|
|
194
|
+
msgid "My Profile"
|
|
195
|
+
msgstr "Ma frofil"
|
|
196
|
+
|
|
197
|
+
#: templates/auth/user_form.html:24 templates/umap/team_form.html:25
|
|
189
198
|
msgid "Save"
|
|
190
199
|
msgstr "Enrollañ"
|
|
191
200
|
|
|
192
|
-
#: templates/auth/user_form.html:
|
|
201
|
+
#: templates/auth/user_form.html:30
|
|
193
202
|
msgid "Your current providers"
|
|
194
203
|
msgstr "Ho pourchaserien a-vremañ"
|
|
195
204
|
|
|
196
|
-
#: templates/auth/user_form.html:
|
|
205
|
+
#: templates/auth/user_form.html:44
|
|
197
206
|
msgid "Connect to another provider"
|
|
198
207
|
msgstr "Kennaskañ ouzh ur pourchaser all"
|
|
199
208
|
|
|
200
|
-
#: templates/auth/user_form.html:
|
|
209
|
+
#: templates/auth/user_form.html:47
|
|
201
210
|
msgid ""
|
|
202
211
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
203
212
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
204
213
|
msgstr ""
|
|
205
214
|
|
|
206
|
-
#: templates/auth/user_stars.html:
|
|
215
|
+
#: templates/auth/user_stars.html:6
|
|
216
|
+
#, python-format
|
|
217
|
+
msgid "%(current_user)s’s starred maps"
|
|
218
|
+
msgstr "Kartennoù muiañ karet eus %(current_user)s"
|
|
219
|
+
|
|
220
|
+
#: templates/auth/user_stars.html:12
|
|
207
221
|
#, python-format
|
|
208
222
|
msgid "Browse %(current_user)s's starred maps"
|
|
209
223
|
msgstr "Merdeiñ e kartennoù spilhennet %(current_user)s"
|
|
210
224
|
|
|
211
|
-
#: templates/auth/user_stars.html:
|
|
225
|
+
#: templates/auth/user_stars.html:21
|
|
212
226
|
#, python-format
|
|
213
227
|
msgid "%(current_user)s has no starred maps yet."
|
|
214
228
|
msgstr "%(current_user)s n'en/he deus kartenn spilhennet ebet."
|
|
@@ -225,7 +239,7 @@ msgstr "Kevreañ"
|
|
|
225
239
|
|
|
226
240
|
#: templates/registration/login.html:22
|
|
227
241
|
msgid "To save and easily find your maps, identify yourself."
|
|
228
|
-
msgstr ""
|
|
242
|
+
msgstr "Evit enrollañ ha kavout ho kartennoù en doare aes, kennaskit mar plij."
|
|
229
243
|
|
|
230
244
|
#: templates/registration/login.html:25
|
|
231
245
|
msgid "Please log in with your account:"
|
|
@@ -243,6 +257,10 @@ msgstr "Ger-tremen"
|
|
|
243
257
|
msgid "Please choose a provider:"
|
|
244
258
|
msgstr "Dibabit ur pourchaser mar plij:"
|
|
245
259
|
|
|
260
|
+
#: templates/umap/about.html:5 templates/umap/navigation.html:22
|
|
261
|
+
msgid "About"
|
|
262
|
+
msgstr "Diwar-benn"
|
|
263
|
+
|
|
246
264
|
#: templates/umap/about_summary.html:12
|
|
247
265
|
#, python-format
|
|
248
266
|
msgid ""
|
|
@@ -410,7 +428,7 @@ msgstr "gant"
|
|
|
410
428
|
msgid "More"
|
|
411
429
|
msgstr "Muioc'h"
|
|
412
430
|
|
|
413
|
-
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:
|
|
431
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
|
|
414
432
|
msgid "Name"
|
|
415
433
|
msgstr "Anv"
|
|
416
434
|
|
|
@@ -434,7 +452,7 @@ msgstr "Enrollet da ziwezhañ"
|
|
|
434
452
|
msgid "Owner"
|
|
435
453
|
msgstr "Perc'henner"
|
|
436
454
|
|
|
437
|
-
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:
|
|
455
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
|
|
438
456
|
msgid "Actions"
|
|
439
457
|
msgstr "Oberoù"
|
|
440
458
|
|
|
@@ -447,7 +465,7 @@ msgid "Share"
|
|
|
447
465
|
msgstr "Rannañ"
|
|
448
466
|
|
|
449
467
|
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
450
|
-
#: templates/umap/user_teams.html:
|
|
468
|
+
#: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
|
|
451
469
|
msgid "Edit"
|
|
452
470
|
msgstr "Aozañ"
|
|
453
471
|
|
|
@@ -510,10 +528,6 @@ msgstr "Kevreañ"
|
|
|
510
528
|
msgid "Sign in"
|
|
511
529
|
msgstr "Krouiñ ur gont"
|
|
512
530
|
|
|
513
|
-
#: templates/umap/navigation.html:22
|
|
514
|
-
msgid "About"
|
|
515
|
-
msgstr "Diwar-benn"
|
|
516
|
-
|
|
517
531
|
#: templates/umap/navigation.html:30
|
|
518
532
|
msgid "Change password"
|
|
519
533
|
msgstr "Cheñch ar ger-tremen"
|
|
@@ -522,41 +536,47 @@ msgstr "Cheñch ar ger-tremen"
|
|
|
522
536
|
msgid "Log out"
|
|
523
537
|
msgstr "Digevreañ"
|
|
524
538
|
|
|
525
|
-
#: templates/umap/password_change.html:
|
|
539
|
+
#: templates/umap/password_change.html:6
|
|
540
|
+
#: templates/umap/password_change.html:11
|
|
526
541
|
msgid "Password change"
|
|
527
542
|
msgstr "Cheñch ar ger-tremen"
|
|
528
543
|
|
|
529
|
-
#: templates/umap/password_change.html:
|
|
544
|
+
#: templates/umap/password_change.html:14
|
|
530
545
|
msgid ""
|
|
531
546
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
532
547
|
" password twice so we can verify you typed it in correctly."
|
|
533
548
|
msgstr "Enankit ho ker-tremen kozh ha div wezh ho ker-tremen nevez war-lerc'h mar plij."
|
|
534
549
|
|
|
535
|
-
#: templates/umap/password_change.html:
|
|
550
|
+
#: templates/umap/password_change.html:21
|
|
536
551
|
msgid "Old password"
|
|
537
552
|
msgstr "Ger-tremen kozh"
|
|
538
553
|
|
|
539
|
-
#: templates/umap/password_change.html:
|
|
554
|
+
#: templates/umap/password_change.html:26
|
|
540
555
|
msgid "New password"
|
|
541
556
|
msgstr "Ger-tremen nevez"
|
|
542
557
|
|
|
543
|
-
#: templates/umap/password_change.html:
|
|
558
|
+
#: templates/umap/password_change.html:30
|
|
544
559
|
msgid "New password confirmation"
|
|
545
560
|
msgstr "Kadarnaat ar ger-tremen nevez"
|
|
546
561
|
|
|
547
|
-
#: templates/umap/password_change.html:
|
|
562
|
+
#: templates/umap/password_change.html:31
|
|
548
563
|
msgid "Change my password"
|
|
549
564
|
msgstr "Cheñch ar ger-tremen"
|
|
550
565
|
|
|
551
|
-
#: templates/umap/password_change_done.html:
|
|
566
|
+
#: templates/umap/password_change_done.html:6
|
|
567
|
+
#: templates/umap/password_change_done.html:11
|
|
552
568
|
msgid "Password change successful"
|
|
553
569
|
msgstr "Cheñchet eo bet ar ger-tremen gant berzh"
|
|
554
570
|
|
|
555
|
-
#: templates/umap/password_change_done.html:
|
|
571
|
+
#: templates/umap/password_change_done.html:14
|
|
556
572
|
msgid "Your password was changed."
|
|
557
573
|
msgstr "Cheñchet eo bet ho ker-tremen."
|
|
558
574
|
|
|
559
|
-
#: templates/umap/search.html:
|
|
575
|
+
#: templates/umap/search.html:6
|
|
576
|
+
msgid "Explore maps"
|
|
577
|
+
msgstr "Ergerzhout ar gartennoù"
|
|
578
|
+
|
|
579
|
+
#: templates/umap/search.html:19
|
|
560
580
|
#, python-format
|
|
561
581
|
msgid "%(count)s map found:"
|
|
562
582
|
msgid_plural "%(count)s maps found:"
|
|
@@ -566,11 +586,11 @@ msgstr[2] "%(count)s c'hartenn kavet :"
|
|
|
566
586
|
msgstr[3] "%(count)s kartenn kavet :"
|
|
567
587
|
msgstr[4] "%(count)s kartenn kavet :"
|
|
568
588
|
|
|
569
|
-
#: templates/umap/search.html:
|
|
589
|
+
#: templates/umap/search.html:28
|
|
570
590
|
msgid "No map found."
|
|
571
591
|
msgstr "Kartenn ebet kavet."
|
|
572
592
|
|
|
573
|
-
#: templates/umap/search.html:
|
|
593
|
+
#: templates/umap/search.html:33
|
|
574
594
|
msgid "Latest created maps"
|
|
575
595
|
msgstr "Kartennoù krouet da ziwezhañ"
|
|
576
596
|
|
|
@@ -578,25 +598,38 @@ msgstr "Kartennoù krouet da ziwezhañ"
|
|
|
578
598
|
msgid "Search maps"
|
|
579
599
|
msgstr "Klask kartennoù"
|
|
580
600
|
|
|
581
|
-
#: templates/umap/search_bar.html:
|
|
601
|
+
#: templates/umap/search_bar.html:16
|
|
582
602
|
msgid "Search"
|
|
583
603
|
msgstr "Klask"
|
|
584
604
|
|
|
585
|
-
#: templates/umap/
|
|
605
|
+
#: templates/umap/team_confirm_delete.html:6
|
|
606
|
+
msgid "Team deletion"
|
|
607
|
+
msgstr "O tilemel ar gartenn"
|
|
608
|
+
|
|
609
|
+
#: templates/umap/team_detail.html:6
|
|
610
|
+
#, python-format
|
|
611
|
+
msgid "%(current_team)s’s maps"
|
|
612
|
+
msgstr "Kartennoù eus %(current_team)s"
|
|
613
|
+
|
|
614
|
+
#: templates/umap/team_detail.html:14
|
|
586
615
|
#, python-format
|
|
587
616
|
msgid "Browse %(current_team)s's maps"
|
|
588
617
|
msgstr "Merdeiñ e kartennoù %(current_team)s"
|
|
589
618
|
|
|
590
|
-
#: templates/umap/team_detail.html:
|
|
619
|
+
#: templates/umap/team_detail.html:26
|
|
591
620
|
#, python-format
|
|
592
621
|
msgid "%(current_team)s has no public maps."
|
|
593
622
|
msgstr "%(current_team)s n'en deus kartenn publik ebet."
|
|
594
623
|
|
|
595
|
-
#: templates/umap/team_form.html:
|
|
624
|
+
#: templates/umap/team_form.html:6
|
|
625
|
+
msgid "Create or edit a team"
|
|
626
|
+
msgstr "Krouiñ pe kemmañ ur skipailh"
|
|
627
|
+
|
|
628
|
+
#: templates/umap/team_form.html:28
|
|
596
629
|
msgid "Delete this team"
|
|
597
630
|
msgstr "Dilemel ar skipailh-mañ"
|
|
598
631
|
|
|
599
|
-
#: templates/umap/team_form.html:
|
|
632
|
+
#: templates/umap/team_form.html:51
|
|
600
633
|
msgid "Add user"
|
|
601
634
|
msgstr "Ouzhpennañ un implijer"
|
|
602
635
|
|
|
@@ -617,11 +650,15 @@ msgstr "Pellgargañ %(count)s a gartennoù"
|
|
|
617
650
|
msgid "You have no map yet."
|
|
618
651
|
msgstr "N'ho peus kartenn ebet c'hoazh."
|
|
619
652
|
|
|
620
|
-
#: templates/umap/user_teams.html:
|
|
653
|
+
#: templates/umap/user_teams.html:6
|
|
654
|
+
msgid "My Teams"
|
|
655
|
+
msgstr "Ma skipailhoù"
|
|
656
|
+
|
|
657
|
+
#: templates/umap/user_teams.html:21
|
|
621
658
|
msgid "Users"
|
|
622
659
|
msgstr "Implijerien"
|
|
623
660
|
|
|
624
|
-
#: templates/umap/user_teams.html:
|
|
661
|
+
#: templates/umap/user_teams.html:52
|
|
625
662
|
msgid "New team"
|
|
626
663
|
msgstr "Skipailh nevez"
|
|
627
664
|
|
|
@@ -638,57 +675,64 @@ msgstr "Dilamet eo bet ar skipailh “%(name)s”"
|
|
|
638
675
|
msgid "View the map"
|
|
639
676
|
msgstr "Diskouez ar gartenn"
|
|
640
677
|
|
|
641
|
-
#: views.py:
|
|
678
|
+
#: views.py:838
|
|
642
679
|
msgid "See full screen"
|
|
643
680
|
msgstr "Gwelet er mod skramm a-bezh"
|
|
644
681
|
|
|
645
|
-
#: views.py:
|
|
682
|
+
#: views.py:981
|
|
646
683
|
msgid "Map editors updated with success!"
|
|
647
684
|
msgstr "Aozerien ar gartenn bet hizivaet gant berzh!"
|
|
648
685
|
|
|
649
|
-
#: views.py:
|
|
686
|
+
#: views.py:1017
|
|
650
687
|
#, python-format
|
|
651
688
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
652
689
|
msgstr "Al liamm uMap evit aozañ ho kartenn: %(map_name)s"
|
|
653
690
|
|
|
654
|
-
#: views.py:
|
|
691
|
+
#: views.py:1020
|
|
655
692
|
#, python-format
|
|
656
693
|
msgid "Here is your secret edit link: %(link)s"
|
|
657
694
|
msgstr "Setu ho liamm aozañ kuzh: %(link)s"
|
|
658
695
|
|
|
659
|
-
#: views.py:
|
|
696
|
+
#: views.py:1027
|
|
660
697
|
#, python-format
|
|
661
698
|
msgid "Can't send email to %(email)s"
|
|
662
699
|
msgstr "N'haller ket kas ur postel da %(email)s"
|
|
663
700
|
|
|
664
|
-
#: views.py:
|
|
701
|
+
#: views.py:1030
|
|
665
702
|
#, python-format
|
|
666
703
|
msgid "Email sent to %(email)s"
|
|
667
704
|
msgstr "Postel kaset da %(email)s"
|
|
668
705
|
|
|
669
|
-
#: views.py:
|
|
706
|
+
#: views.py:1041
|
|
670
707
|
msgid "Only its owner can delete the map."
|
|
671
708
|
msgstr "N'eus nemet perc'henner ar gartenn a c'hall he dilemel."
|
|
672
709
|
|
|
673
|
-
#: views.py:
|
|
710
|
+
#: views.py:1044
|
|
674
711
|
msgid "Map successfully deleted."
|
|
675
712
|
msgstr "Kartenn dilamet gant berzh."
|
|
676
713
|
|
|
677
|
-
#: views.py:
|
|
714
|
+
#: views.py:1070
|
|
678
715
|
#, python-format
|
|
679
716
|
msgid ""
|
|
680
717
|
"Your map has been cloned! If you want to edit this map from another "
|
|
681
718
|
"computer, please use this link: %(anonymous_url)s"
|
|
682
719
|
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"
|
|
683
720
|
|
|
684
|
-
#: views.py:
|
|
721
|
+
#: views.py:1075
|
|
685
722
|
msgid "Congratulations, your map has been cloned!"
|
|
686
723
|
msgstr "Doublet eo bet ho kartenn gant berzh!"
|
|
687
724
|
|
|
688
|
-
#: views.py:
|
|
725
|
+
#: views.py:1329
|
|
689
726
|
msgid "Layer successfully deleted."
|
|
690
727
|
msgstr "Gwiskad dilamet gant berzh."
|
|
691
728
|
|
|
692
|
-
#: views.py:
|
|
729
|
+
#: views.py:1351
|
|
693
730
|
msgid "Permissions updated with success!"
|
|
694
731
|
msgstr "Aotreoù hizivaet gant berzh!"
|
|
732
|
+
|
|
733
|
+
#: views.py:1430
|
|
734
|
+
#, python-format
|
|
735
|
+
msgid ""
|
|
736
|
+
"Using “%(name)s” to authenticate is deprecated. Please configure another "
|
|
737
|
+
"provider in your profile page."
|
|
738
|
+
msgstr ""
|
|
Binary file
|