umap-project 2.8.2__tar.gz → 2.9.0b0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {umap_project-2.8.2 → umap_project-2.9.0b0}/PKG-INFO +15 -15
- {umap_project-2.8.2 → umap_project-2.9.0b0}/pyproject.toml +15 -13
- umap_project-2.9.0b0/umap/__init__.py +1 -0
- umap_project-2.9.0b0/umap/asgi.py +20 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/context_processors.py +1 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/en/LC_MESSAGES/django.po +102 -59
- umap_project-2.9.0b0/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/fr/LC_MESSAGES/django.po +105 -61
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/management/commands/empty_trash.py +12 -1
- umap_project-2.9.0b0/umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/models.py +23 -3
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/settings/base.py +4 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/base.css +1 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/content.css +2 -22
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/css/bar.css +7 -10
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/css/form.css +28 -29
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/css/icon.css +8 -2
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/css/panel.css +2 -1
- umap_project-2.9.0b0/umap/static/umap/css/tooltip.css +61 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/16-white.svg +2 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/16.svg +1 -1
- umap_project-2.9.0b0/umap/static/umap/img/providers/bitbucket.png +0 -0
- umap_project-2.9.0b0/umap/static/umap/img/providers/github.png +0 -0
- umap_project-2.9.0b0/umap/static/umap/img/providers/keycloak.png +0 -0
- umap_project-2.9.0b0/umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
- umap_project-2.9.0b0/umap/static/umap/img/providers/twitter-oauth2.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/source/16-white.svg +3 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/source/16.svg +1 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/components/alerts/alert.js +4 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/browser.js +6 -6
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/caption.js +30 -7
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/data/features.js +21 -24
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/data/layer.js +71 -33
- umap_project-2.9.0b0/umap/static/umap/js/modules/form/builder.js +241 -0
- umap_project-2.9.0b0/umap/static/umap/js/modules/form/fields.js +1338 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/formatter.js +5 -8
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/help.js +3 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/importer.js +1 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/permissions.js +5 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/rendering/icon.js +5 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/rendering/layers/classified.js +11 -7
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/rendering/map.js +0 -2
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/rules.js +2 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/schema.js +5 -6
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/share.js +3 -3
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/sync/engine.js +18 -13
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/sync/updaters.js +8 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/sync/websocket.js +10 -5
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/tableeditor.js +3 -2
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/ui/bar.js +17 -9
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/ui/base.js +7 -24
- umap_project-2.9.0b0/umap/static/umap/js/modules/ui/tooltip.js +54 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/umap.js +36 -24
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/utils.js +196 -12
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/umap.controls.js +0 -12
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/br.js +21 -13
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/br.json +21 -13
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ca.js +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ca.json +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/cs_CZ.js +10 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/cs_CZ.json +10 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/de.js +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/de.json +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/el.js +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/el.json +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/en.js +9 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/en.json +9 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/es.js +20 -12
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/es.json +20 -12
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/eu.js +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/eu.json +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/fa_IR.js +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/fa_IR.json +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/fr.js +10 -5
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/fr.json +10 -5
- umap_project-2.9.0b0/umap/static/umap/locale/gl.js +534 -0
- umap_project-2.9.0b0/umap/static/umap/locale/gl.json +532 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/hu.js +9 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/hu.json +9 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/it.js +100 -92
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/it.json +100 -92
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ms.js +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ms.json +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/nl.js +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/nl.json +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/pl.js +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/pl.json +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/pt.js +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/pt.json +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/pt_PT.js +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/pt_PT.json +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/th_TH.js +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/th_TH.json +12 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/zh_TW.js +10 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/zh_TW.json +10 -4
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/map.css +12 -8
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/nav.css +2 -3
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/unittests/utils.js +14 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vars.css +2 -0
- umap_project-2.9.0b0/umap/sync/app.py +181 -0
- umap_project-2.9.0b0/umap/sync/payloads.py +49 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/auth/user_detail.html +4 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/auth/user_form.html +9 -6
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/auth/user_stars.html +4 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/base.html +1 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/registration/login.html +2 -5
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/about.html +5 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/about_summary.html +2 -2
- umap_project-2.9.0b0/umap/templates/umap/components/provider.html +8 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/js.html +0 -3
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/map_detail.html +1 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/password_change.html +4 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/password_change_done.html +4 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/search.html +4 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/team_confirm_delete.html +4 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/team_detail.html +4 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/team_form.html +4 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/user_dashboard.html +1 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/user_teams.html +4 -0
- umap_project-2.9.0b0/umap/tests/__init__.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/base.py +3 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/conftest.py +16 -23
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_basics.py +2 -2
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_caption.py +1 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_draw_polygon.py +3 -3
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_edit_datalayer.py +1 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_edit_map.py +3 -3
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_edit_polygon.py +1 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_import.py +23 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_optimistic_merge.py +1 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_picto.py +8 -8
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_save.py +1 -0
- umap_project-2.9.0b0/umap/tests/integration/test_star.py +31 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_tableeditor.py +1 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_websocket_sync.py +112 -33
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/settings.py +2 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_datalayer.py +2 -3
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_datalayer_views.py +20 -1
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_empty_trash.py +10 -3
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_map_views.py +11 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/utils.py +24 -11
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/views.py +37 -6
- umap_project-2.8.2/umap/__init__.py +0 -1
- umap_project-2.8.2/umap/asgi.py +0 -15
- umap_project-2.8.2/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap_project-2.8.2/umap/management/commands/run_websocket_server.py +0 -23
- umap_project-2.8.2/umap/settings/local_s3.py +0 -45
- umap_project-2.8.2/umap/static/umap/bitbucket.png +0 -0
- umap_project-2.8.2/umap/static/umap/css/tooltip.css +0 -59
- umap_project-2.8.2/umap/static/umap/github.png +0 -0
- umap_project-2.8.2/umap/static/umap/js/modules/ui/tooltip.js +0 -46
- umap_project-2.8.2/umap/static/umap/js/umap.forms.js +0 -1242
- umap_project-2.8.2/umap/static/umap/keycloak.png +0 -0
- umap_project-2.8.2/umap/static/umap/locale/gl.js +0 -526
- umap_project-2.8.2/umap/static/umap/locale/gl.json +0 -524
- umap_project-2.8.2/umap/static/umap/openstreetmap.png +0 -0
- umap_project-2.8.2/umap/static/umap/twitter.png +0 -0
- umap_project-2.8.2/umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
- umap_project-2.8.2/umap/tests/integration/test_star.py +0 -27
- umap_project-2.8.2/umap/tests/test_websocket_server.py +0 -22
- umap_project-2.8.2/umap/websocket_server.py +0 -202
- {umap_project-2.8.2 → umap_project-2.9.0b0}/.gitignore +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/LICENSE +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/README.md +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/admin.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/apps.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/autocomplete.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/bin/__init__.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/decorators.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/fields.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/forms.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/am_ET/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/am_ET/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ar/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ar/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ast/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ast/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/bg/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/bg/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/br/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/br/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ca/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/cs_CZ/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/da/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/da/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/de/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/de/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/el/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/el/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/en/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/es/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/es/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/et/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/et/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/eu/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/fa_IR/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/fi/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/fi/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/gl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/he/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/he/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/hr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/hr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/hu/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/id/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/id/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/is/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/is/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/it/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/it/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ja/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ja/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ko/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ko/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/lt/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/lt/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ms/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/nl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/no/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/no/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/pl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/pt/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/pt_BR/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/pt_PT/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ro/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ro/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ru/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/ru/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/si/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/si/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/sk_SK/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/sk_SK/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/sl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/sl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/sr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/sr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/sv/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/th_TH/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/tr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/tr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/uk_UA/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/uk_UA/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/vi/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/vi/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/zh/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/zh/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/locale/zh_TW/LC_MESSAGES/django.po +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/management/__init__.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/management/commands/__init__.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/management/commands/anonymous_edit_url.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/management/commands/clean_tilelayer.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/management/commands/generate_js_locale.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/management/commands/import_pictograms.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/management/commands/migrate_to_S3.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/managers.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/middleware.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0001_initial.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0002_tilelayer_tms.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0003_add_tilelayer.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0004_add_licence.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0005_remove_map_tilelayer.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0006_auto_20190407_0719.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0007_auto_20190416_1757.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0008_alter_map_settings.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0009_star.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0012_datalayer_settings.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0013_datalayer_edit_status.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0014_map_created_at.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0015_alter_pictogram_pictogram.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0016_pictogram_category.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0017_migrate_to_openstreetmap_oauth2.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0018_datalayer_uuid.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0019_migrate_internal_remote_datalayers.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0020_alter_tilelayer_url_template.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0021_remove_map_description.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0022_add_team.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0023_alter_datalayer_uuid.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0024_alter_map_share_status.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/0025_alter_datalayer_geojson.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/migrations/__init__.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/settings/__init__.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/settings/dev.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/settings/local.py.sample +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/.gitignore +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/css/contextmenu.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/css/dialog.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/css/importers.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/css/popup.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/css/slideshow.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/css/tableeditor.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/css/window.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/favicons/apple-touch-icon.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/favicons/favicon.ico +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/favicons/icon-192.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/favicons/icon-512.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/favicons/icon.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/font/FiraSans-Light.woff +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/font.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/24-white.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/24.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/alert-icon-error.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/alert-icon-info.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/alert-icon-success.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/edit.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/icon-bg.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/icon-delete.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/icon-download.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/icon-duplicate.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/icon-edit.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/icon-external-link.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/icon-share.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/icon-view.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/importers/cadastrefr.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/importers/communesfr.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/importers/datasets.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/importers/geodatamine.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/importers/overpass.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/importers/random.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/importers/random1.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/importers/random2.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/logo.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/logo_filigree.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/logo_lightcyan.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/logo_small.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/marker.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/marker.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/opensource.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/osm.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/search.gif +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/source/24-white.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/img/source/24.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/components/alerts/alert.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/components/base.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/components/fragment.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/autocomplete.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/dompurify.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/drop.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/facets.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/global.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/i18n.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/importers/cadastrefr.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/importers/communesfr.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/importers/datasets.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/importers/geodatamine.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/importers/overpass.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/leaflet-configure.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/orderable.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/rendering/layers/base.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/rendering/layers/heat.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/rendering/popup.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/rendering/template.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/rendering/ui.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/request.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/saving.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/slideshow.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/sync/hlc.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/ui/contextmenu.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/ui/dialog.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/ui/panel.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/modules/urls.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/js/umap.core.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/am_ET.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/am_ET.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ar.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ar.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ast.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ast.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/bg.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/bg.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/da.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/da.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/en_US.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/et.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/et.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/fi.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/fi.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/he.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/he.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/hr.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/hr.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/id.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/id.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/is.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/is.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ja.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ja.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ko.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ko.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/lt.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/lt.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/no.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/no.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/pl_PL.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/pt_BR.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/pt_BR.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ro.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ro.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ru.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/ru.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/si.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/si.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/sk_SK.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/sk_SK.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/sl.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/sl.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/sr.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/sr.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/sv.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/sv.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/tr.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/tr.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/uk_UA.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/uk_UA.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/vi.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/vi.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/vi_VN.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/zh.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/zh.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/zh_CN.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/locale/zh_TW.Big5.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/test/.eslintrc +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/test/DataLayer.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/test/Feature.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/test/Map.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/test/Marker.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/test/Polygon.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/test/Polyline.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/test/Util.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/test/_pre.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/test/index.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/theme.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/unittests/URLs.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/unittests/hlc.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/unittests/sync.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/colorbrewer/colorbrewer.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/csv2geojson/csv2geojson.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/dompurify/purify.es.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/dompurify/purify.es.mjs.map +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/editable/Leaflet.Editable.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/editable/Path.Drag.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/fullscreen/fullscreen.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/fullscreen/fullscreen@2x.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/geojson-to-gpx/index.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/hash/leaflet-hash.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/heat/leaflet-heat.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/i18n/Leaflet.i18n.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/iconlayers/check.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/iconlayers/iconLayers.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/iconlayers/iconLayers.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/iconlayers/transparent-pixel.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/leaflet/images/layers-2x.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/leaflet/images/layers.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/leaflet/images/marker-icon-2x.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/leaflet/images/marker-icon.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/leaflet/images/marker-shadow.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/leaflet/leaflet.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/loading/Control.Loading.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/loading/Control.Loading.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/markercluster/MarkerCluster.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/measurable/Leaflet.Measurable.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/measurable/Leaflet.Measurable.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/minimap/Control.MiniMap.min.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/minimap/Control.MiniMap.min.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/minimap/images/toggle.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/minimap/images/toggle.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/photon/leaflet.photon.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/togeojson/togeojson.es.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/togeojson/togeojson.es.mjs.map +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/tokml/tokml.es.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/tokml/tokml.es.mjs.map +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/storage/__init__.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/storage/fs.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/storage/s3.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/storage/staticfiles.py +0 -0
- {umap_project-2.8.2/umap/templatetags → umap_project-2.9.0b0/umap/sync}/__init__.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/403.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/404.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/40x.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/500.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/branding.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/components/alerts/alert.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/content.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/content_footer.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/css.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/dashboard_menu.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/footer.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/header.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/home.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/locale.js +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/login_popup_end.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/map_fragment.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/map_init.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/map_list.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/map_table.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/messages.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/navigation.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/search_bar.html +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templates/umap/success.html +0 -0
- {umap_project-2.8.2/umap/tests → umap_project-2.9.0b0/umap/templatetags}/__init__.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/templatetags/umap_tags.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/conftest.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/categorized_highway.geojson +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/choropleth_region_chomage.geojson +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/circle.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/display_on_load.umap +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/empty_tile.png +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/star.svg +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_circles_layer.geojson +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_import_osm_relation.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_upload_data.csv +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_upload_data.gpx +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_upload_data.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_upload_data.kml +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_upload_data.umap +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_upload_data_osm.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_upload_empty_coordinates.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_upload_georss.xml +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_upload_missing_name.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_upload_non_linear_ring.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/fixtures/test_upload_simple_marker.json +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/__init__.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/helpers.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_anonymous_owned_map.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_browser.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_categorized_layer.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_choropleth.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_circles_layer.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_cluster.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_conditional_rules.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_dashboard.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_datalayer.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_draw_polyline.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_edit_marker.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_export_map.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_facets_browser.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_features_id_generation.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_map.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_map_list.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_map_preview.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_owned_map.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_popup.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_querystring.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_share.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_slideshow.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_team.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_tilelayer.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_view_marker.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_view_polygon.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/integration/test_view_polyline.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_clean_tilelayer.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_dashboard.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_datalayer_s3.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_licence.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_map.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_merge_features.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_statics.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_team_views.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_tilelayer.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_utils.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/tests/test_views.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/urls.py +0 -0
- {umap_project-2.8.2 → umap_project-2.9.0b0}/umap/wsgi.py +0 -0
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.9.0b0
|
|
4
4
|
Summary: Create maps with OpenStreetMap layers in a minute and embed them in your site.
|
|
5
5
|
Author-email: Yohan Boniface <yb@enix.org>
|
|
6
6
|
Maintainer-email: David Larlet <david@larlet.fr>
|
|
7
|
+
License-File: LICENSE
|
|
7
8
|
Keywords: django,geodjango,leaflet,map,openstreetmap
|
|
8
9
|
Classifier: Development Status :: 4 - Beta
|
|
9
10
|
Classifier: Intended Audience :: Developers
|
|
@@ -16,38 +17,37 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
16
17
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
17
18
|
Requires-Python: >=3.10
|
|
18
19
|
Requires-Dist: django-agnocomplete==2.2.0
|
|
19
|
-
Requires-Dist: django-environ==0.
|
|
20
|
+
Requires-Dist: django-environ==0.12.0
|
|
20
21
|
Requires-Dist: django-probes==1.7.0
|
|
21
|
-
Requires-Dist: django==5.1.
|
|
22
|
-
Requires-Dist: pillow==11.
|
|
23
|
-
Requires-Dist: psycopg==3.2.
|
|
22
|
+
Requires-Dist: django==5.1.5
|
|
23
|
+
Requires-Dist: pillow==11.1.0
|
|
24
|
+
Requires-Dist: psycopg==3.2.4
|
|
24
25
|
Requires-Dist: rcssmin==1.2.0
|
|
25
26
|
Requires-Dist: requests==2.32.3
|
|
26
27
|
Requires-Dist: rjsmin==1.2.3
|
|
27
28
|
Requires-Dist: social-auth-app-django==5.4.2
|
|
28
29
|
Requires-Dist: social-auth-core==4.5.4
|
|
29
30
|
Provides-Extra: dev
|
|
30
|
-
Requires-Dist: djlint==1.36.
|
|
31
|
+
Requires-Dist: djlint==1.36.4; extra == 'dev'
|
|
31
32
|
Requires-Dist: hatch==1.14.0; extra == 'dev'
|
|
32
33
|
Requires-Dist: isort==5.13.2; extra == 'dev'
|
|
33
|
-
Requires-Dist: mkdocs-material==9.5.
|
|
34
|
+
Requires-Dist: mkdocs-material==9.5.50; extra == 'dev'
|
|
34
35
|
Requires-Dist: mkdocs-static-i18n==1.2.3; extra == 'dev'
|
|
35
36
|
Requires-Dist: mkdocs==1.6.1; extra == 'dev'
|
|
36
|
-
Requires-Dist: pymdown-extensions==10.
|
|
37
|
-
Requires-Dist: ruff==0.
|
|
37
|
+
Requires-Dist: pymdown-extensions==10.14.1; extra == 'dev'
|
|
38
|
+
Requires-Dist: ruff==0.9.3; extra == 'dev'
|
|
38
39
|
Requires-Dist: vermin==1.6.0; extra == 'dev'
|
|
39
40
|
Provides-Extra: docker
|
|
40
41
|
Requires-Dist: uwsgi==2.0.28; extra == 'docker'
|
|
41
42
|
Provides-Extra: s3
|
|
42
43
|
Requires-Dist: django-storages[s3]==1.14.4; extra == 's3'
|
|
43
44
|
Provides-Extra: sync
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist:
|
|
46
|
-
Requires-Dist: pydantic==2.10.3; extra == 'sync'
|
|
47
|
-
Requires-Dist: websockets==13.1; extra == 'sync'
|
|
45
|
+
Requires-Dist: pydantic==2.10.6; extra == 'sync'
|
|
46
|
+
Requires-Dist: redis==5.2.1; extra == 'sync'
|
|
48
47
|
Provides-Extra: test
|
|
48
|
+
Requires-Dist: daphne==4.1.2; extra == 'test'
|
|
49
49
|
Requires-Dist: factory-boy==3.3.1; extra == 'test'
|
|
50
|
-
Requires-Dist: moto[s3]==5.0.
|
|
50
|
+
Requires-Dist: moto[s3]==5.0.27; extra == 'test'
|
|
51
51
|
Requires-Dist: playwright>=1.39; extra == 'test'
|
|
52
52
|
Requires-Dist: pytest-django==4.9.0; extra == 'test'
|
|
53
53
|
Requires-Dist: pytest-playwright==0.6.2; extra == 'test'
|
|
@@ -28,12 +28,12 @@ classifiers = [
|
|
|
28
28
|
"Programming Language :: Python :: 3.12",
|
|
29
29
|
]
|
|
30
30
|
dependencies = [
|
|
31
|
-
"Django==5.1.
|
|
31
|
+
"Django==5.1.5",
|
|
32
32
|
"django-agnocomplete==2.2.0",
|
|
33
|
-
"django-environ==0.
|
|
33
|
+
"django-environ==0.12.0",
|
|
34
34
|
"django-probes==1.7.0",
|
|
35
|
-
"Pillow==11.
|
|
36
|
-
"psycopg==3.2.
|
|
35
|
+
"Pillow==11.1.0",
|
|
36
|
+
"psycopg==3.2.4",
|
|
37
37
|
"requests==2.32.3",
|
|
38
38
|
"rcssmin==1.2.0",
|
|
39
39
|
"rjsmin==1.2.3",
|
|
@@ -44,16 +44,17 @@ dependencies = [
|
|
|
44
44
|
[project.optional-dependencies]
|
|
45
45
|
dev = [
|
|
46
46
|
"hatch==1.14.0",
|
|
47
|
-
"ruff==0.
|
|
48
|
-
"djlint==1.36.
|
|
47
|
+
"ruff==0.9.3",
|
|
48
|
+
"djlint==1.36.4",
|
|
49
49
|
"mkdocs==1.6.1",
|
|
50
|
-
"mkdocs-material==9.5.
|
|
50
|
+
"mkdocs-material==9.5.50",
|
|
51
51
|
"mkdocs-static-i18n==1.2.3",
|
|
52
52
|
"vermin==1.6.0",
|
|
53
|
-
"pymdown-extensions==10.
|
|
53
|
+
"pymdown-extensions==10.14.1",
|
|
54
54
|
"isort==5.13.2",
|
|
55
55
|
]
|
|
56
56
|
test = [
|
|
57
|
+
"daphne==4.1.2",
|
|
57
58
|
"factory-boy==3.3.1",
|
|
58
59
|
"playwright>=1.39",
|
|
59
60
|
"pytest==8.3.4",
|
|
@@ -61,7 +62,7 @@ test = [
|
|
|
61
62
|
"pytest-playwright==0.6.2",
|
|
62
63
|
"pytest-rerunfailures==15.0",
|
|
63
64
|
"pytest-xdist>=3.5.0,<4",
|
|
64
|
-
"moto[s3]==5.0.
|
|
65
|
+
"moto[s3]==5.0.27"
|
|
65
66
|
]
|
|
66
67
|
docker = [
|
|
67
68
|
"uwsgi==2.0.28",
|
|
@@ -70,10 +71,8 @@ s3 = [
|
|
|
70
71
|
"django-storages[s3]==1.14.4",
|
|
71
72
|
]
|
|
72
73
|
sync = [
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"pydantic==2.10.3",
|
|
76
|
-
"websockets==13.1",
|
|
74
|
+
"pydantic==2.10.6",
|
|
75
|
+
"redis==5.2.1",
|
|
77
76
|
]
|
|
78
77
|
|
|
79
78
|
[project.scripts]
|
|
@@ -104,3 +103,6 @@ format_css=true
|
|
|
104
103
|
blank_line_after_tag="load,extends"
|
|
105
104
|
line_break_after_multiline_tag=true
|
|
106
105
|
|
|
106
|
+
[lint]
|
|
107
|
+
# Disable autoremove of unused import.
|
|
108
|
+
unfixable = ["F401"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = "2.9.0b0"
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import os
|
|
2
|
+
|
|
3
|
+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "umap.settings")
|
|
4
|
+
|
|
5
|
+
from django.core.asgi import get_asgi_application
|
|
6
|
+
|
|
7
|
+
from .sync.app import application as ws_application
|
|
8
|
+
|
|
9
|
+
# Initialize Django ASGI application early to ensure the AppRegistry
|
|
10
|
+
# is populated before importing code that may import ORM models.
|
|
11
|
+
django_asgi_app = get_asgi_application()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
async def application(scope, receive, send):
|
|
15
|
+
if scope["type"] == "http":
|
|
16
|
+
await django_asgi_app(scope, receive, send)
|
|
17
|
+
elif scope["type"] == "websocket":
|
|
18
|
+
await ws_application(scope, receive, send)
|
|
19
|
+
else:
|
|
20
|
+
raise NotImplementedError(f"Unknown scope type {scope['type']}")
|
|
@@ -7,6 +7,7 @@ def settings(request):
|
|
|
7
7
|
return {
|
|
8
8
|
"UMAP_HELP_URL": djsettings.UMAP_HELP_URL,
|
|
9
9
|
"SITE_NAME": djsettings.SITE_NAME,
|
|
10
|
+
"SITE_DESCRIPTION": djsettings.SITE_DESCRIPTION,
|
|
10
11
|
"SITE_URL": djsettings.SITE_URL,
|
|
11
12
|
"ENABLE_ACCOUNT_LOGIN": djsettings.ENABLE_ACCOUNT_LOGIN,
|
|
12
13
|
"UMAP_READONLY": djsettings.UMAP_READONLY,
|
|
@@ -8,7 +8,7 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date:
|
|
11
|
+
"POT-Creation-Date: 2025-01-31 17:29+0000\n"
|
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -33,7 +33,7 @@ msgstr ""
|
|
|
33
33
|
msgid "name"
|
|
34
34
|
msgstr ""
|
|
35
35
|
|
|
36
|
-
#: models.py:62 models.py:
|
|
36
|
+
#: models.py:62 models.py:485
|
|
37
37
|
msgid "description"
|
|
38
38
|
msgstr ""
|
|
39
39
|
|
|
@@ -53,23 +53,23 @@ msgstr ""
|
|
|
53
53
|
msgid "Order of the tilelayers in the edit box"
|
|
54
54
|
msgstr ""
|
|
55
55
|
|
|
56
|
-
#: models.py:175 models.py:
|
|
56
|
+
#: models.py:175 models.py:479
|
|
57
57
|
msgid "Only editable with secret edit link"
|
|
58
58
|
msgstr ""
|
|
59
59
|
|
|
60
|
-
#: models.py:176 models.py:
|
|
60
|
+
#: models.py:176 models.py:480
|
|
61
61
|
msgid "Everyone can edit"
|
|
62
62
|
msgstr ""
|
|
63
63
|
|
|
64
|
-
#: models.py:179 models.py:
|
|
64
|
+
#: models.py:179 models.py:473
|
|
65
65
|
msgid "Everyone"
|
|
66
66
|
msgstr ""
|
|
67
67
|
|
|
68
|
-
#: models.py:180 models.py:189 models.py:
|
|
68
|
+
#: models.py:180 models.py:189 models.py:474
|
|
69
69
|
msgid "Editors and team only"
|
|
70
70
|
msgstr ""
|
|
71
71
|
|
|
72
|
-
#: models.py:181 models.py:
|
|
72
|
+
#: models.py:181 models.py:475
|
|
73
73
|
msgid "Owner only"
|
|
74
74
|
msgstr ""
|
|
75
75
|
|
|
@@ -89,7 +89,7 @@ msgstr ""
|
|
|
89
89
|
msgid "Blocked"
|
|
90
90
|
msgstr ""
|
|
91
91
|
|
|
92
|
-
#: models.py:191
|
|
92
|
+
#: models.py:191 models.py:469
|
|
93
93
|
msgid "Deleted"
|
|
94
94
|
msgstr ""
|
|
95
95
|
|
|
@@ -129,31 +129,31 @@ msgstr ""
|
|
|
129
129
|
msgid "team"
|
|
130
130
|
msgstr ""
|
|
131
131
|
|
|
132
|
-
#: models.py:229 models.py:
|
|
132
|
+
#: models.py:229 models.py:501
|
|
133
133
|
msgid "edit status"
|
|
134
134
|
msgstr ""
|
|
135
135
|
|
|
136
|
-
#: models.py:234
|
|
136
|
+
#: models.py:234 models.py:506
|
|
137
137
|
msgid "share status"
|
|
138
138
|
msgstr ""
|
|
139
139
|
|
|
140
|
-
#: models.py:237 models.py:
|
|
140
|
+
#: models.py:237 models.py:496
|
|
141
141
|
msgid "settings"
|
|
142
142
|
msgstr ""
|
|
143
143
|
|
|
144
|
-
#: models.py:
|
|
144
|
+
#: models.py:407
|
|
145
145
|
msgid "Clone of"
|
|
146
146
|
msgstr ""
|
|
147
147
|
|
|
148
|
-
#: models.py:
|
|
148
|
+
#: models.py:468 models.py:472 models.py:478
|
|
149
149
|
msgid "Inherit"
|
|
150
150
|
msgstr ""
|
|
151
151
|
|
|
152
|
-
#: models.py:
|
|
152
|
+
#: models.py:491
|
|
153
153
|
msgid "display on load"
|
|
154
154
|
msgstr ""
|
|
155
155
|
|
|
156
|
-
#: models.py:
|
|
156
|
+
#: models.py:492
|
|
157
157
|
msgid "Display this layer on load."
|
|
158
158
|
msgstr ""
|
|
159
159
|
|
|
@@ -172,40 +172,54 @@ msgstr ""
|
|
|
172
172
|
msgid "404 Page Not Found"
|
|
173
173
|
msgstr ""
|
|
174
174
|
|
|
175
|
-
#: templates/auth/user_detail.html:
|
|
175
|
+
#: templates/auth/user_detail.html:6
|
|
176
|
+
#, python-format
|
|
177
|
+
msgid "%(current_user)s’s maps"
|
|
178
|
+
msgstr ""
|
|
179
|
+
|
|
180
|
+
#: templates/auth/user_detail.html:12
|
|
176
181
|
#, python-format
|
|
177
182
|
msgid "Browse %(current_user)s's maps"
|
|
178
183
|
msgstr ""
|
|
179
184
|
|
|
180
|
-
#: templates/auth/user_detail.html:
|
|
185
|
+
#: templates/auth/user_detail.html:21
|
|
181
186
|
#, python-format
|
|
182
187
|
msgid "%(current_user)s has no maps."
|
|
183
188
|
msgstr ""
|
|
184
189
|
|
|
185
|
-
#: templates/auth/user_form.html:
|
|
190
|
+
#: templates/auth/user_form.html:6
|
|
191
|
+
msgid "My Profile"
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
194
|
+
#: templates/auth/user_form.html:24 templates/umap/team_form.html:25
|
|
186
195
|
msgid "Save"
|
|
187
196
|
msgstr ""
|
|
188
197
|
|
|
189
|
-
#: templates/auth/user_form.html:
|
|
198
|
+
#: templates/auth/user_form.html:30
|
|
190
199
|
msgid "Your current providers"
|
|
191
200
|
msgstr ""
|
|
192
201
|
|
|
193
|
-
#: templates/auth/user_form.html:
|
|
202
|
+
#: templates/auth/user_form.html:44
|
|
194
203
|
msgid "Connect to another provider"
|
|
195
204
|
msgstr ""
|
|
196
205
|
|
|
197
|
-
#: templates/auth/user_form.html:
|
|
206
|
+
#: templates/auth/user_form.html:47
|
|
198
207
|
msgid ""
|
|
199
208
|
"It's a good habit to connect your account to more than one provider, in case "
|
|
200
209
|
"one provider becomes unavailable, temporarily or even permanently."
|
|
201
210
|
msgstr ""
|
|
202
211
|
|
|
203
|
-
#: templates/auth/user_stars.html:
|
|
212
|
+
#: templates/auth/user_stars.html:6
|
|
213
|
+
#, python-format
|
|
214
|
+
msgid "%(current_user)s’s starred maps"
|
|
215
|
+
msgstr ""
|
|
216
|
+
|
|
217
|
+
#: templates/auth/user_stars.html:12
|
|
204
218
|
#, python-format
|
|
205
219
|
msgid "Browse %(current_user)s's starred maps"
|
|
206
220
|
msgstr ""
|
|
207
221
|
|
|
208
|
-
#: templates/auth/user_stars.html:
|
|
222
|
+
#: templates/auth/user_stars.html:21
|
|
209
223
|
#, python-format
|
|
210
224
|
msgid "%(current_user)s has no starred maps yet."
|
|
211
225
|
msgstr ""
|
|
@@ -240,6 +254,10 @@ msgstr ""
|
|
|
240
254
|
msgid "Please choose a provider:"
|
|
241
255
|
msgstr ""
|
|
242
256
|
|
|
257
|
+
#: templates/umap/about.html:5 templates/umap/navigation.html:22
|
|
258
|
+
msgid "About"
|
|
259
|
+
msgstr ""
|
|
260
|
+
|
|
243
261
|
#: templates/umap/about_summary.html:12
|
|
244
262
|
#, python-format
|
|
245
263
|
msgid ""
|
|
@@ -407,7 +425,7 @@ msgstr ""
|
|
|
407
425
|
msgid "More"
|
|
408
426
|
msgstr ""
|
|
409
427
|
|
|
410
|
-
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:
|
|
428
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
|
|
411
429
|
msgid "Name"
|
|
412
430
|
msgstr ""
|
|
413
431
|
|
|
@@ -431,7 +449,7 @@ msgstr ""
|
|
|
431
449
|
msgid "Owner"
|
|
432
450
|
msgstr ""
|
|
433
451
|
|
|
434
|
-
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:
|
|
452
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
|
|
435
453
|
msgid "Actions"
|
|
436
454
|
msgstr ""
|
|
437
455
|
|
|
@@ -444,7 +462,7 @@ msgid "Share"
|
|
|
444
462
|
msgstr ""
|
|
445
463
|
|
|
446
464
|
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
447
|
-
#: templates/umap/user_teams.html:
|
|
465
|
+
#: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
|
|
448
466
|
msgid "Edit"
|
|
449
467
|
msgstr ""
|
|
450
468
|
|
|
@@ -507,10 +525,6 @@ msgstr ""
|
|
|
507
525
|
msgid "Sign in"
|
|
508
526
|
msgstr ""
|
|
509
527
|
|
|
510
|
-
#: templates/umap/navigation.html:22
|
|
511
|
-
msgid "About"
|
|
512
|
-
msgstr ""
|
|
513
|
-
|
|
514
528
|
#: templates/umap/navigation.html:30
|
|
515
529
|
msgid "Change password"
|
|
516
530
|
msgstr ""
|
|
@@ -519,52 +533,57 @@ msgstr ""
|
|
|
519
533
|
msgid "Log out"
|
|
520
534
|
msgstr ""
|
|
521
535
|
|
|
522
|
-
#: templates/umap/password_change.html:
|
|
536
|
+
#: templates/umap/password_change.html:6 templates/umap/password_change.html:11
|
|
523
537
|
msgid "Password change"
|
|
524
538
|
msgstr ""
|
|
525
539
|
|
|
526
|
-
#: templates/umap/password_change.html:
|
|
540
|
+
#: templates/umap/password_change.html:14
|
|
527
541
|
msgid ""
|
|
528
542
|
"Please enter your old password, for security's sake, and then enter your new "
|
|
529
543
|
"password twice so we can verify you typed it in correctly."
|
|
530
544
|
msgstr ""
|
|
531
545
|
|
|
532
|
-
#: templates/umap/password_change.html:
|
|
546
|
+
#: templates/umap/password_change.html:21
|
|
533
547
|
msgid "Old password"
|
|
534
548
|
msgstr ""
|
|
535
549
|
|
|
536
|
-
#: templates/umap/password_change.html:
|
|
550
|
+
#: templates/umap/password_change.html:26
|
|
537
551
|
msgid "New password"
|
|
538
552
|
msgstr ""
|
|
539
553
|
|
|
540
|
-
#: templates/umap/password_change.html:
|
|
554
|
+
#: templates/umap/password_change.html:30
|
|
541
555
|
msgid "New password confirmation"
|
|
542
556
|
msgstr ""
|
|
543
557
|
|
|
544
|
-
#: templates/umap/password_change.html:
|
|
558
|
+
#: templates/umap/password_change.html:31
|
|
545
559
|
msgid "Change my password"
|
|
546
560
|
msgstr ""
|
|
547
561
|
|
|
548
|
-
#: templates/umap/password_change_done.html:
|
|
562
|
+
#: templates/umap/password_change_done.html:6
|
|
563
|
+
#: templates/umap/password_change_done.html:11
|
|
549
564
|
msgid "Password change successful"
|
|
550
565
|
msgstr ""
|
|
551
566
|
|
|
552
|
-
#: templates/umap/password_change_done.html:
|
|
567
|
+
#: templates/umap/password_change_done.html:14
|
|
553
568
|
msgid "Your password was changed."
|
|
554
569
|
msgstr ""
|
|
555
570
|
|
|
556
|
-
#: templates/umap/search.html:
|
|
571
|
+
#: templates/umap/search.html:6
|
|
572
|
+
msgid "Explore maps"
|
|
573
|
+
msgstr ""
|
|
574
|
+
|
|
575
|
+
#: templates/umap/search.html:19
|
|
557
576
|
#, python-format
|
|
558
577
|
msgid "%(count)s map found:"
|
|
559
578
|
msgid_plural "%(count)s maps found:"
|
|
560
579
|
msgstr[0] ""
|
|
561
580
|
msgstr[1] ""
|
|
562
581
|
|
|
563
|
-
#: templates/umap/search.html:
|
|
582
|
+
#: templates/umap/search.html:28
|
|
564
583
|
msgid "No map found."
|
|
565
584
|
msgstr ""
|
|
566
585
|
|
|
567
|
-
#: templates/umap/search.html:
|
|
586
|
+
#: templates/umap/search.html:33
|
|
568
587
|
msgid "Latest created maps"
|
|
569
588
|
msgstr ""
|
|
570
589
|
|
|
@@ -576,21 +595,34 @@ msgstr ""
|
|
|
576
595
|
msgid "Search"
|
|
577
596
|
msgstr ""
|
|
578
597
|
|
|
579
|
-
#: templates/umap/
|
|
598
|
+
#: templates/umap/team_confirm_delete.html:6
|
|
599
|
+
msgid "Team deletion"
|
|
600
|
+
msgstr ""
|
|
601
|
+
|
|
602
|
+
#: templates/umap/team_detail.html:6
|
|
603
|
+
#, python-format
|
|
604
|
+
msgid "%(current_team)s’s maps"
|
|
605
|
+
msgstr ""
|
|
606
|
+
|
|
607
|
+
#: templates/umap/team_detail.html:14
|
|
580
608
|
#, python-format
|
|
581
609
|
msgid "Browse %(current_team)s's maps"
|
|
582
610
|
msgstr ""
|
|
583
611
|
|
|
584
|
-
#: templates/umap/team_detail.html:
|
|
612
|
+
#: templates/umap/team_detail.html:26
|
|
585
613
|
#, python-format
|
|
586
614
|
msgid "%(current_team)s has no public maps."
|
|
587
615
|
msgstr ""
|
|
588
616
|
|
|
589
|
-
#: templates/umap/team_form.html:
|
|
617
|
+
#: templates/umap/team_form.html:6
|
|
618
|
+
msgid "Create or edit a team"
|
|
619
|
+
msgstr ""
|
|
620
|
+
|
|
621
|
+
#: templates/umap/team_form.html:28
|
|
590
622
|
msgid "Delete this team"
|
|
591
623
|
msgstr ""
|
|
592
624
|
|
|
593
|
-
#: templates/umap/team_form.html:
|
|
625
|
+
#: templates/umap/team_form.html:51
|
|
594
626
|
msgid "Add user"
|
|
595
627
|
msgstr ""
|
|
596
628
|
|
|
@@ -611,11 +643,15 @@ msgstr ""
|
|
|
611
643
|
msgid "You have no map yet."
|
|
612
644
|
msgstr ""
|
|
613
645
|
|
|
614
|
-
#: templates/umap/user_teams.html:
|
|
646
|
+
#: templates/umap/user_teams.html:6
|
|
647
|
+
msgid "My Teams"
|
|
648
|
+
msgstr ""
|
|
649
|
+
|
|
650
|
+
#: templates/umap/user_teams.html:21
|
|
615
651
|
msgid "Users"
|
|
616
652
|
msgstr ""
|
|
617
653
|
|
|
618
|
-
#: templates/umap/user_teams.html:
|
|
654
|
+
#: templates/umap/user_teams.html:52
|
|
619
655
|
msgid "New team"
|
|
620
656
|
msgstr ""
|
|
621
657
|
|
|
@@ -632,57 +668,64 @@ msgstr ""
|
|
|
632
668
|
msgid "View the map"
|
|
633
669
|
msgstr ""
|
|
634
670
|
|
|
635
|
-
#: views.py:
|
|
671
|
+
#: views.py:838
|
|
636
672
|
msgid "See full screen"
|
|
637
673
|
msgstr ""
|
|
638
674
|
|
|
639
|
-
#: views.py:
|
|
675
|
+
#: views.py:981
|
|
640
676
|
msgid "Map editors updated with success!"
|
|
641
677
|
msgstr ""
|
|
642
678
|
|
|
643
|
-
#: views.py:
|
|
679
|
+
#: views.py:1017
|
|
644
680
|
#, python-format
|
|
645
681
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
646
682
|
msgstr ""
|
|
647
683
|
|
|
648
|
-
#: views.py:
|
|
684
|
+
#: views.py:1020
|
|
649
685
|
#, python-format
|
|
650
686
|
msgid "Here is your secret edit link: %(link)s"
|
|
651
687
|
msgstr ""
|
|
652
688
|
|
|
653
|
-
#: views.py:
|
|
689
|
+
#: views.py:1027
|
|
654
690
|
#, python-format
|
|
655
691
|
msgid "Can't send email to %(email)s"
|
|
656
692
|
msgstr ""
|
|
657
693
|
|
|
658
|
-
#: views.py:
|
|
694
|
+
#: views.py:1030
|
|
659
695
|
#, python-format
|
|
660
696
|
msgid "Email sent to %(email)s"
|
|
661
697
|
msgstr ""
|
|
662
698
|
|
|
663
|
-
#: views.py:
|
|
699
|
+
#: views.py:1041
|
|
664
700
|
msgid "Only its owner can delete the map."
|
|
665
701
|
msgstr ""
|
|
666
702
|
|
|
667
|
-
#: views.py:
|
|
703
|
+
#: views.py:1044
|
|
668
704
|
msgid "Map successfully deleted."
|
|
669
705
|
msgstr ""
|
|
670
706
|
|
|
671
|
-
#: views.py:
|
|
707
|
+
#: views.py:1070
|
|
672
708
|
#, python-format
|
|
673
709
|
msgid ""
|
|
674
710
|
"Your map has been cloned! If you want to edit this map from another "
|
|
675
711
|
"computer, please use this link: %(anonymous_url)s"
|
|
676
712
|
msgstr ""
|
|
677
713
|
|
|
678
|
-
#: views.py:
|
|
714
|
+
#: views.py:1075
|
|
679
715
|
msgid "Congratulations, your map has been cloned!"
|
|
680
716
|
msgstr ""
|
|
681
717
|
|
|
682
|
-
#: views.py:
|
|
718
|
+
#: views.py:1329
|
|
683
719
|
msgid "Layer successfully deleted."
|
|
684
720
|
msgstr ""
|
|
685
721
|
|
|
686
|
-
#: views.py:
|
|
722
|
+
#: views.py:1351
|
|
687
723
|
msgid "Permissions updated with success!"
|
|
688
724
|
msgstr ""
|
|
725
|
+
|
|
726
|
+
#: views.py:1430
|
|
727
|
+
#, python-format
|
|
728
|
+
msgid ""
|
|
729
|
+
"Using “%(name)s” to authenticate is deprecated. Please configure another "
|
|
730
|
+
"provider in your profile page."
|
|
731
|
+
msgstr ""
|
|
Binary file
|