umap-project 2.7.0b2__tar.gz → 2.7.0b3__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.7.0b2 → umap_project-2.7.0b3}/PKG-INFO +8 -7
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/pyproject.toml +7 -6
- umap_project-2.7.0b3/umap/__init__.py +1 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/browser.js +47 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/rendering/layers/classified.js +1 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/rendering/ui.js +27 -2
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/ui/contextmenu.js +5 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/umap.controls.js +4 -10
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/umap.js +18 -9
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/en.js +4 -1
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/en.json +4 -1
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/fr.js +4 -1
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/fr.json +4 -1
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/map.css +10 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/unittests/hlc.js +8 -3
- umap_project-2.7.0b3/umap/static/umap/vendors/colorbrewer/colorbrewer.js +310 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/dompurify/purify.es.js +15 -16
- umap_project-2.7.0b3/umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +2 -2
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +1 -1
- umap_project-2.7.0b3/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +2 -0
- umap_project-2.7.0b3/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +1 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/js.html +0 -1
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/map_detail.html +2 -2
- umap_project-2.7.0b3/umap/tests/fixtures/test_upload_data.csv +3 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_browser.py +69 -7
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_datalayer.py +1 -5
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_edit_datalayer.py +1 -2
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_edit_marker.py +1 -1
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_facets_browser.py +3 -3
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_import.py +0 -4
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_map.py +0 -4
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_view_marker.py +63 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_map_views.py +19 -0
- umap_project-2.7.0b2/umap/__init__.py +0 -1
- umap_project-2.7.0b2/umap/static/umap/vendors/colorbrewer/colorbrewer.js +0 -318
- umap_project-2.7.0b2/umap/static/umap/vendors/dompurify/purify.es.mjs.map +0 -1
- umap_project-2.7.0b2/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +0 -2
- umap_project-2.7.0b2/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +0 -1
- umap_project-2.7.0b2/umap/tests/fixtures/test_upload_data.csv +0 -3
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/.gitignore +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/LICENSE +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/README.md +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/admin.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/apps.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/autocomplete.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/bin/__init__.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/context_processors.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/decorators.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/fields.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/forms.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/am_ET/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/am_ET/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ar/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ar/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ast/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ast/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/bg/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/bg/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/br/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/br/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ca/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/cs_CZ/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/da/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/da/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/de/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/de/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/el/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/el/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/en/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/en/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/es/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/es/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/et/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/et/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/eu/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/fa_IR/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/fi/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/fi/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/fr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/gl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/he/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/he/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/hr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/hr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/hu/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/id/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/id/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/is/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/is/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/it/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/it/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ja/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ja/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ko/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ko/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/lt/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/lt/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ms/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/nl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/no/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/no/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/pl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/pt/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/pt_BR/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/pt_PT/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ro/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ro/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ru/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/ru/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/si/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/si/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/sk_SK/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/sk_SK/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/sl/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/sl/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/sr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/sr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/sv/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/th_TH/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/tr/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/tr/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/uk_UA/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/uk_UA/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/vi/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/vi/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/zh/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/zh/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/locale/zh_TW/LC_MESSAGES/django.po +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/management/__init__.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/management/commands/__init__.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/management/commands/anonymous_edit_url.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/management/commands/clean_tilelayer.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/management/commands/generate_js_locale.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/management/commands/import_pictograms.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/management/commands/purge_purgatory.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/management/commands/run_websocket_server.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/managers.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/middleware.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0001_initial.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0002_tilelayer_tms.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0003_add_tilelayer.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0004_add_licence.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0005_remove_map_tilelayer.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0006_auto_20190407_0719.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0007_auto_20190416_1757.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0008_alter_map_settings.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0009_star.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0012_datalayer_settings.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0013_datalayer_edit_status.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0014_map_created_at.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0015_alter_pictogram_pictogram.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0016_pictogram_category.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0017_migrate_to_openstreetmap_oauth2.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0018_datalayer_uuid.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0019_migrate_internal_remote_datalayers.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0020_alter_tilelayer_url_template.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0021_remove_map_description.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/0022_add_team.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/migrations/__init__.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/models.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/settings/__init__.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/settings/base.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/settings/dev.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/settings/local.py.sample +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/.gitignore +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/base.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/bitbucket.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/content.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/css/contextmenu.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/css/dialog.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/css/icon.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/css/importers.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/css/panel.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/css/slideshow.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/css/tableeditor.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/css/tooltip.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/css/window.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/favicons/apple-touch-icon.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/favicons/favicon.ico +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/favicons/icon-192.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/favicons/icon-512.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/favicons/icon.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/font/FiraSans-Light.woff +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/font.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/github.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/16-white.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/16.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/24-white.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/24.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/alert-icon-error.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/alert-icon-info.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/alert-icon-success.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/edit.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/icon-bg.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/icon-delete.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/icon-download.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/icon-duplicate.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/icon-edit.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/icon-external-link.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/icon-share.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/icon-view.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/importers/communesfr.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/importers/datasets.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/importers/geodatamine.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/importers/overpass.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/importers/random.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/importers/random1.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/importers/random2.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/logo.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/logo_filigree.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/logo_small.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/marker.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/marker.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/opensource.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/osm.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/search.gif +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/source/16-white.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/source/16.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/source/24-white.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/img/source/24.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/components/alerts/alert.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/components/alerts/alert.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/components/base.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/components/fragment.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/autocomplete.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/caption.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/data/features.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/data/layer.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/dompurify.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/facets.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/formatter.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/global.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/help.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/i18n.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/importer.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/importers/communesfr.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/importers/datasets.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/importers/geodatamine.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/importers/overpass.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/leaflet-configure.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/orderable.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/permissions.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/rendering/icon.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/rendering/layers/base.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/rendering/layers/cluster.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/rendering/layers/heat.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/rendering/popup.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/rendering/template.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/request.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/rules.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/schema.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/share.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/slideshow.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/sync/engine.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/sync/hlc.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/sync/updaters.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/sync/websocket.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/tableeditor.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/ui/base.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/ui/dialog.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/ui/panel.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/ui/tooltip.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/urls.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/modules/utils.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/umap.core.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/js/umap.forms.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/am_ET.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/am_ET.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ar.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ar.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ast.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ast.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/bg.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/bg.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/br.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/br.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ca.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ca.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/cs_CZ.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/cs_CZ.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/da.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/da.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/de.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/de.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/el.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/el.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/en_US.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/es.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/es.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/et.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/et.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/eu.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/eu.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/fa_IR.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/fa_IR.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/fi.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/fi.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/gl.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/gl.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/he.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/he.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/hr.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/hr.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/hu.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/hu.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/id.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/id.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/is.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/is.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/it.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/it.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ja.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ja.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ko.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ko.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/lt.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/lt.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ms.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ms.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/nl.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/nl.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/no.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/no.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/pl.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/pl.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/pl_PL.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/pt.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/pt.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/pt_BR.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/pt_BR.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/pt_PT.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/pt_PT.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ro.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ro.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ru.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/ru.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/si.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/si.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/sk_SK.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/sk_SK.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/sl.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/sl.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/sr.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/sr.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/sv.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/sv.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/th_TH.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/th_TH.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/tr.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/tr.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/uk_UA.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/uk_UA.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/vi.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/vi.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/vi_VN.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/zh.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/zh.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/zh_CN.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/zh_TW.Big5.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/zh_TW.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/locale/zh_TW.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/nav.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/openstreetmap.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/test/.eslintrc +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/test/DataLayer.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/test/Feature.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/test/Map.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/test/Marker.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/test/Polygon.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/test/Polyline.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/test/Util.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/test/_pre.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/test/index.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/theme.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/twitter.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/unittests/URLs.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/unittests/sync.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/unittests/utils.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vars.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/csv2geojson/csv2geojson.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/editable/Leaflet.Editable.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/editable/Path.Drag.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/fullscreen/fullscreen.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/fullscreen/fullscreen@2x.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/geojson-to-gpx/index.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/hash/leaflet-hash.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/heat/leaflet-heat.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/i18n/Leaflet.i18n.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/iconlayers/check.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/iconlayers/iconLayers.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/iconlayers/iconLayers.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/iconlayers/transparent-pixel.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/leaflet/images/layers-2x.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/leaflet/images/layers.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/leaflet/images/marker-icon-2x.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/leaflet/images/marker-icon.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/leaflet/images/marker-shadow.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/leaflet/leaflet.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/loading/Control.Loading.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/loading/Control.Loading.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.css.map +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/markercluster/MarkerCluster.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/measurable/Leaflet.Measurable.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/measurable/Leaflet.Measurable.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/minimap/Control.MiniMap.min.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/minimap/Control.MiniMap.min.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/minimap/images/toggle.png +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/minimap/images/toggle.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/photon/leaflet.photon.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/togeojson/togeojson.es.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/togeojson/togeojson.es.mjs.map +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/tokml/tokml.es.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/tokml/tokml.es.mjs.map +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/storage.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/404.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/500.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/auth/user_detail.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/auth/user_form.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/auth/user_stars.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/base.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/registration/login.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/about.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/about_summary.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/branding.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/components/alerts/alert.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/content.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/content_footer.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/css.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/dashboard_menu.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/footer.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/header.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/home.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/locale.js +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/login_popup_end.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/map_fragment.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/map_init.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/map_list.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/map_table.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/messages.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/navigation.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/password_change.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/password_change_done.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/search.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/search_bar.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/success.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/team_confirm_delete.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/team_detail.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/team_form.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/user_dashboard.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templates/umap/user_teams.html +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templatetags/__init__.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/templatetags/umap_tags.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/__init__.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/base.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/conftest.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/categorized_highway.geojson +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/choropleth_region_chomage.geojson +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/circle.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/display_on_load.umap +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/star.svg +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/test_circles_layer.geojson +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/test_import_osm_relation.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/test_upload_data.gpx +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/test_upload_data.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/test_upload_data.kml +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/test_upload_data.umap +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/test_upload_data_osm.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/test_upload_empty_coordinates.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/test_upload_georss.xml +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/test_upload_missing_name.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/fixtures/test_upload_non_linear_ring.json +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/__init__.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/conftest.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/helpers.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_anonymous_owned_map.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_basics.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_caption.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_categorized_layer.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_choropleth.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_circles_layer.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_cluster.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_conditional_rules.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_dashboard.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_draw_polygon.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_draw_polyline.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_edit_map.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_edit_polygon.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_export_map.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_features_id_generation.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_map_list.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_map_preview.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_optimistic_merge.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_owned_map.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_picto.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_querystring.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_share.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_slideshow.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_star.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_tableeditor.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_team.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_tilelayer.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_view_polygon.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_view_polyline.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/integration/test_websocket_sync.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/settings.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_clean_tilelayer.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_datalayer.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_datalayer_views.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_licence.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_map.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_merge_features.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_purge_purgatory.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_statics.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_team_views.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_tilelayer.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_utils.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_views.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/tests/test_websocket_server.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/urls.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/utils.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/views.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/websocket_server.py +0 -0
- {umap_project-2.7.0b2 → umap_project-2.7.0b3}/umap/wsgi.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 2.7.
|
|
3
|
+
Version: 2.7.0b3
|
|
4
4
|
Summary: Create maps with OpenStreetMap layers in a minute and embed them in your site.
|
|
5
5
|
Author-email: Yohan Boniface <yb@enix.org>
|
|
6
6
|
Maintainer-email: David Larlet <david@larlet.fr>
|
|
@@ -19,25 +19,25 @@ Requires-Python: >=3.10
|
|
|
19
19
|
Requires-Dist: django-agnocomplete==2.2.0
|
|
20
20
|
Requires-Dist: django-environ==0.11.2
|
|
21
21
|
Requires-Dist: django-probes==1.7.0
|
|
22
|
-
Requires-Dist: django==5.1.
|
|
22
|
+
Requires-Dist: django==5.1.2
|
|
23
23
|
Requires-Dist: pillow==10.4.0
|
|
24
24
|
Requires-Dist: psycopg==3.2.3
|
|
25
25
|
Requires-Dist: pydantic==2.9.2
|
|
26
|
-
Requires-Dist: rcssmin==1.1.
|
|
26
|
+
Requires-Dist: rcssmin==1.1.3
|
|
27
27
|
Requires-Dist: requests==2.32.3
|
|
28
|
-
Requires-Dist: rjsmin==1.2.
|
|
28
|
+
Requires-Dist: rjsmin==1.2.3
|
|
29
29
|
Requires-Dist: social-auth-app-django==5.4.2
|
|
30
30
|
Requires-Dist: social-auth-core==4.5.4
|
|
31
31
|
Requires-Dist: websockets==13.1
|
|
32
32
|
Provides-Extra: dev
|
|
33
33
|
Requires-Dist: djlint==1.35.2; extra == 'dev'
|
|
34
|
-
Requires-Dist: hatch==1.
|
|
34
|
+
Requires-Dist: hatch==1.13.0; extra == 'dev'
|
|
35
35
|
Requires-Dist: isort==5.13.2; extra == 'dev'
|
|
36
|
-
Requires-Dist: mkdocs-material==9.5.
|
|
36
|
+
Requires-Dist: mkdocs-material==9.5.40; extra == 'dev'
|
|
37
37
|
Requires-Dist: mkdocs-static-i18n==1.2.3; extra == 'dev'
|
|
38
38
|
Requires-Dist: mkdocs==1.6.1; extra == 'dev'
|
|
39
39
|
Requires-Dist: pymdown-extensions==10.11.2; extra == 'dev'
|
|
40
|
-
Requires-Dist: ruff==0.6.
|
|
40
|
+
Requires-Dist: ruff==0.6.9; extra == 'dev'
|
|
41
41
|
Requires-Dist: vermin==1.6.0; extra == 'dev'
|
|
42
42
|
Provides-Extra: docker
|
|
43
43
|
Requires-Dist: uwsgi==2.0.27; extra == 'docker'
|
|
@@ -46,6 +46,7 @@ Requires-Dist: factory-boy==3.3.1; extra == 'test'
|
|
|
46
46
|
Requires-Dist: playwright>=1.39; extra == 'test'
|
|
47
47
|
Requires-Dist: pytest-django==4.9.0; extra == 'test'
|
|
48
48
|
Requires-Dist: pytest-playwright==0.5.2; extra == 'test'
|
|
49
|
+
Requires-Dist: pytest-rerunfailures==14.0; extra == 'test'
|
|
49
50
|
Requires-Dist: pytest-xdist<4,>=3.5.0; extra == 'test'
|
|
50
51
|
Requires-Dist: pytest==8.3.3; extra == 'test'
|
|
51
52
|
Description-Content-Type: text/markdown
|
|
@@ -28,7 +28,7 @@ classifiers = [
|
|
|
28
28
|
"Programming Language :: Python :: 3.12",
|
|
29
29
|
]
|
|
30
30
|
dependencies = [
|
|
31
|
-
"Django==5.1.
|
|
31
|
+
"Django==5.1.2",
|
|
32
32
|
"django-agnocomplete==2.2.0",
|
|
33
33
|
"django-environ==0.11.2",
|
|
34
34
|
"django-probes==1.7.0",
|
|
@@ -36,8 +36,8 @@ dependencies = [
|
|
|
36
36
|
"psycopg==3.2.3",
|
|
37
37
|
"pydantic==2.9.2",
|
|
38
38
|
"requests==2.32.3",
|
|
39
|
-
"rcssmin==1.1.
|
|
40
|
-
"rjsmin==1.2.
|
|
39
|
+
"rcssmin==1.1.3",
|
|
40
|
+
"rjsmin==1.2.3",
|
|
41
41
|
"social-auth-core==4.5.4",
|
|
42
42
|
"social-auth-app-django==5.4.2",
|
|
43
43
|
"websockets==13.1",
|
|
@@ -45,11 +45,11 @@ dependencies = [
|
|
|
45
45
|
|
|
46
46
|
[project.optional-dependencies]
|
|
47
47
|
dev = [
|
|
48
|
-
"hatch==1.
|
|
49
|
-
"ruff==0.6.
|
|
48
|
+
"hatch==1.13.0",
|
|
49
|
+
"ruff==0.6.9",
|
|
50
50
|
"djlint==1.35.2",
|
|
51
51
|
"mkdocs==1.6.1",
|
|
52
|
-
"mkdocs-material==9.5.
|
|
52
|
+
"mkdocs-material==9.5.40",
|
|
53
53
|
"mkdocs-static-i18n==1.2.3",
|
|
54
54
|
"vermin==1.6.0",
|
|
55
55
|
"pymdown-extensions==10.11.2",
|
|
@@ -61,6 +61,7 @@ test = [
|
|
|
61
61
|
"pytest==8.3.3",
|
|
62
62
|
"pytest-django==4.9.0",
|
|
63
63
|
"pytest-playwright==0.5.2",
|
|
64
|
+
"pytest-rerunfailures==14.0",
|
|
64
65
|
"pytest-xdist>=3.5.0,<4",
|
|
65
66
|
]
|
|
66
67
|
docker = [
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = "2.7.0b3"
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { DomEvent, DomUtil, stamp } from '../../vendors/leaflet/leaflet-src.esm.js'
|
|
2
2
|
import { translate } from './i18n.js'
|
|
3
3
|
import * as Icon from './rendering/icon.js'
|
|
4
|
+
import * as Utils from './utils.js'
|
|
5
|
+
import { EXPORT_FORMATS } from './formatter.js'
|
|
6
|
+
import ContextMenu from './ui/contextmenu.js'
|
|
4
7
|
|
|
5
8
|
export default class Browser {
|
|
6
9
|
constructor(map) {
|
|
@@ -98,6 +101,7 @@ export default class Browser {
|
|
|
98
101
|
datalayer.eachFeature((feature) => this.addFeature(feature, container))
|
|
99
102
|
|
|
100
103
|
const total = datalayer.count()
|
|
104
|
+
if (!total) return
|
|
101
105
|
const current = container.querySelectorAll('li').length
|
|
102
106
|
const count = total === current ? total : `${current}/${total}`
|
|
103
107
|
const counter = DomUtil.create('span', 'datalayer-counter', headline)
|
|
@@ -164,6 +168,7 @@ export default class Browser {
|
|
|
164
168
|
})
|
|
165
169
|
this.filtersTitle = container.querySelector('summary')
|
|
166
170
|
this.toggleBadge()
|
|
171
|
+
this.addMainToolbox(container)
|
|
167
172
|
this.dataContainer = DomUtil.create('div', '', container)
|
|
168
173
|
|
|
169
174
|
let fields = [
|
|
@@ -215,6 +220,48 @@ export default class Browser {
|
|
|
215
220
|
}
|
|
216
221
|
}
|
|
217
222
|
|
|
223
|
+
addMainToolbox(container) {
|
|
224
|
+
const [toolbox, { toggle, fitBounds, download }] = Utils.loadTemplateWithRefs(`
|
|
225
|
+
<div class="main-toolbox">
|
|
226
|
+
<i class="icon icon-16 icon-eye" title="${translate('show/hide all layers')}" data-ref="toggle"></i>
|
|
227
|
+
<i class="icon icon-16 icon-zoom" title="${translate('zoom to data extent')}" data-ref="fitBounds"></i>
|
|
228
|
+
<i class="icon icon-16 icon-download" title="${translate('download visible data')}" data-ref="download"></i>
|
|
229
|
+
</div>
|
|
230
|
+
`)
|
|
231
|
+
container.appendChild(toolbox)
|
|
232
|
+
toggle.addEventListener('click', () => this.toggleLayers())
|
|
233
|
+
fitBounds.addEventListener('click', () => this.map.fitDataBounds())
|
|
234
|
+
download.addEventListener('click', () => this.downloadVisible(download))
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
downloadVisible(element) {
|
|
238
|
+
const menu = new ContextMenu({ fixed: true })
|
|
239
|
+
const items = []
|
|
240
|
+
for (const format of Object.keys(EXPORT_FORMATS)) {
|
|
241
|
+
items.push({
|
|
242
|
+
label: format,
|
|
243
|
+
action: () => this.map.share.download(format),
|
|
244
|
+
})
|
|
245
|
+
}
|
|
246
|
+
menu.openBelow(element, items)
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
toggleLayers() {
|
|
250
|
+
// If at least one layer is shown, hide it
|
|
251
|
+
// otherwise show all
|
|
252
|
+
let allHidden = true
|
|
253
|
+
this.map.eachBrowsableDataLayer((datalayer) => {
|
|
254
|
+
if (datalayer.isVisible()) allHidden = false
|
|
255
|
+
})
|
|
256
|
+
this.map.eachBrowsableDataLayer((datalayer) => {
|
|
257
|
+
if (allHidden) {
|
|
258
|
+
datalayer.show()
|
|
259
|
+
} else {
|
|
260
|
+
if (datalayer.isVisible()) datalayer.hide()
|
|
261
|
+
}
|
|
262
|
+
})
|
|
263
|
+
}
|
|
264
|
+
|
|
218
265
|
static backButton(map) {
|
|
219
266
|
const button = DomUtil.createButtonIcon(
|
|
220
267
|
DomUtil.create('li', '', undefined),
|
|
@@ -3,6 +3,7 @@ import { translate } from '../../i18n.js'
|
|
|
3
3
|
import { LayerMixin } from './base.js'
|
|
4
4
|
import * as Utils from '../../utils.js'
|
|
5
5
|
import { CircleMarker } from '../ui.js'
|
|
6
|
+
import colorbrewer from '../../../../vendors/colorbrewer/colorbrewer.js'
|
|
6
7
|
|
|
7
8
|
// Layer where each feature color is relative to the others,
|
|
8
9
|
// so we need all features before behing able to set one
|
|
@@ -36,6 +36,12 @@ const FeatureMixin = {
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
|
|
39
|
+
_removeIcon: function () {
|
|
40
|
+
// It may not be in the DOM, and Leaflet does not deal with this
|
|
41
|
+
// situation
|
|
42
|
+
if (this._icon) Marker.prototype._removeIcon.call(this)
|
|
43
|
+
},
|
|
44
|
+
|
|
39
45
|
addInteractions: function () {
|
|
40
46
|
this.on('contextmenu editable:vertex:contextmenu', this.onContextMenu)
|
|
41
47
|
this.on('click', this.onClick)
|
|
@@ -86,8 +92,9 @@ const FeatureMixin = {
|
|
|
86
92
|
|
|
87
93
|
onContextMenu: function (event) {
|
|
88
94
|
DomEvent.stop(event)
|
|
89
|
-
const items = this.
|
|
90
|
-
|
|
95
|
+
const items = this.feature
|
|
96
|
+
.getContextMenuItems(event)
|
|
97
|
+
.concat(this._map.getContextMenuItems(event))
|
|
91
98
|
this._map.contextmenu.open(event.originalEvent, items)
|
|
92
99
|
},
|
|
93
100
|
|
|
@@ -160,6 +167,12 @@ export const LeafletMarker = Marker.extend({
|
|
|
160
167
|
return this.setLatLng(latlng)
|
|
161
168
|
},
|
|
162
169
|
|
|
170
|
+
getEvents: function () {
|
|
171
|
+
const events = Marker.prototype.getEvents.call(this)
|
|
172
|
+
events.moveend = this.onMoveEnd
|
|
173
|
+
return events
|
|
174
|
+
},
|
|
175
|
+
|
|
163
176
|
addInteractions() {
|
|
164
177
|
PointMixin.addInteractions.call(this)
|
|
165
178
|
this._popupHandlersAdded = true // prevent Leaflet from binding event on bindPopup
|
|
@@ -167,7 +180,19 @@ export const LeafletMarker = Marker.extend({
|
|
|
167
180
|
this.on('popupclose', this.resetHighlight)
|
|
168
181
|
},
|
|
169
182
|
|
|
183
|
+
onMoveEnd: function () {
|
|
184
|
+
this._initIcon()
|
|
185
|
+
this.update()
|
|
186
|
+
},
|
|
187
|
+
|
|
170
188
|
_initIcon: function () {
|
|
189
|
+
if (!this._map.getBounds().contains(this.getCenter())) {
|
|
190
|
+
if (this._icon) this._removeIcon()
|
|
191
|
+
if (this._tooltip && this.isTooltipOpen()) {
|
|
192
|
+
this.unbindTooltip()
|
|
193
|
+
}
|
|
194
|
+
return
|
|
195
|
+
}
|
|
171
196
|
this.options.icon = this.getIcon()
|
|
172
197
|
Marker.prototype._initIcon.call(this)
|
|
173
198
|
// Allow to run code when icon is actually part of the DOM
|
|
@@ -21,6 +21,11 @@ export default class ContextMenu extends Positioned {
|
|
|
21
21
|
this.openAt([left, top], items)
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
openBelow(element, items) {
|
|
25
|
+
const coords = this.getPosition(element)
|
|
26
|
+
this.openAt([coords.left, coords.bottom], items)
|
|
27
|
+
}
|
|
28
|
+
|
|
24
29
|
openAt([left, top], items) {
|
|
25
30
|
this.container.innerHTML = ''
|
|
26
31
|
for (const item of items) {
|
|
@@ -453,17 +453,13 @@ U.PermanentCreditsControl = L.Control.extend({
|
|
|
453
453
|
},
|
|
454
454
|
|
|
455
455
|
onAdd: function () {
|
|
456
|
-
|
|
456
|
+
this.paragraphContainer = L.DomUtil.create(
|
|
457
457
|
'div',
|
|
458
|
-
'umap-permanent-credits-container'
|
|
458
|
+
'umap-permanent-credits-container text'
|
|
459
459
|
)
|
|
460
|
-
const creditsParagraph = L.DomUtil.create('p', '', paragraphContainer)
|
|
461
|
-
|
|
462
|
-
this.paragraphContainer = paragraphContainer
|
|
463
460
|
this.setCredits()
|
|
464
461
|
this.setBackground()
|
|
465
|
-
|
|
466
|
-
return paragraphContainer
|
|
462
|
+
return this.paragraphContainer
|
|
467
463
|
},
|
|
468
464
|
|
|
469
465
|
setCredits: function () {
|
|
@@ -661,9 +657,7 @@ const ControlsMixin = {
|
|
|
661
657
|
})
|
|
662
658
|
}
|
|
663
659
|
button.addEventListener('click', () => {
|
|
664
|
-
|
|
665
|
-
const y = button.offsetTop + button.offsetHeight
|
|
666
|
-
menu.openAt([x, y], actions)
|
|
660
|
+
menu.openBelow(button, actions)
|
|
667
661
|
})
|
|
668
662
|
}
|
|
669
663
|
this.help.getStartedLink(rightContainer)
|
|
@@ -191,15 +191,17 @@ U.Map = L.Map.extend({
|
|
|
191
191
|
this.renderEditToolbar()
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
-
this.
|
|
195
|
-
|
|
196
|
-
|
|
194
|
+
if (!this.options.noControl) {
|
|
195
|
+
this.initShortcuts()
|
|
196
|
+
this.initCaptionBar()
|
|
197
|
+
this.on('contextmenu', this.onContextMenu)
|
|
198
|
+
this.onceDataLoaded(this.setViewFromQueryString)
|
|
199
|
+
this.on('click', this.closeInplaceToolbar)
|
|
200
|
+
this.propagate()
|
|
201
|
+
}
|
|
197
202
|
|
|
198
203
|
window.onbeforeunload = () => (this.editEnabled && this.isDirty) || null
|
|
199
204
|
this.backup()
|
|
200
|
-
this.on('click', this.closeInplaceToolbar)
|
|
201
|
-
this.on('contextmenu', this.onContextMenu)
|
|
202
|
-
this.propagate()
|
|
203
205
|
},
|
|
204
206
|
|
|
205
207
|
initSyncEngine: async function () {
|
|
@@ -1686,7 +1688,7 @@ U.Map = L.Map.extend({
|
|
|
1686
1688
|
this.loader.onAdd(this)
|
|
1687
1689
|
},
|
|
1688
1690
|
|
|
1689
|
-
|
|
1691
|
+
getOwnContextMenuItems: function (event) {
|
|
1690
1692
|
const items = []
|
|
1691
1693
|
if (this.hasEditMode()) {
|
|
1692
1694
|
if (this.editEnabled) {
|
|
@@ -1752,9 +1754,14 @@ U.Map = L.Map.extend({
|
|
|
1752
1754
|
},
|
|
1753
1755
|
{
|
|
1754
1756
|
label: this.help.displayLabel('SEARCH'),
|
|
1755
|
-
action: () => this.search(
|
|
1757
|
+
action: () => this.search(),
|
|
1756
1758
|
}
|
|
1757
1759
|
)
|
|
1760
|
+
return items
|
|
1761
|
+
},
|
|
1762
|
+
|
|
1763
|
+
getContextMenuItems: function (event) {
|
|
1764
|
+
const items = []
|
|
1758
1765
|
if (this.options.urls.routing) {
|
|
1759
1766
|
items.push('-', {
|
|
1760
1767
|
label: L._('Directions from here'),
|
|
@@ -1771,7 +1778,9 @@ U.Map = L.Map.extend({
|
|
|
1771
1778
|
},
|
|
1772
1779
|
|
|
1773
1780
|
onContextMenu: function (event) {
|
|
1774
|
-
const items = this.
|
|
1781
|
+
const items = this.getOwnContextMenuItems(event).concat(
|
|
1782
|
+
this.getContextMenuItems(event)
|
|
1783
|
+
)
|
|
1775
1784
|
this.contextmenu.open(event.originalEvent, items)
|
|
1776
1785
|
},
|
|
1777
1786
|
|
|
@@ -513,7 +513,10 @@ const locale = {
|
|
|
513
513
|
"Type new owner's username": "Type new owner's username",
|
|
514
514
|
"Type editor's username": "Type editor's username",
|
|
515
515
|
"Map": "Map",
|
|
516
|
-
"Manage collaborators": "Manage collaborators"
|
|
516
|
+
"Manage collaborators": "Manage collaborators",
|
|
517
|
+
"show/hide all layers": "show/hide all layers",
|
|
518
|
+
"zoom to data extent": "zoom to data extent",
|
|
519
|
+
"download visible data": "download visible data"
|
|
517
520
|
}
|
|
518
521
|
L.registerLocale("en", locale)
|
|
519
522
|
L.setLocale("en")
|
|
@@ -513,5 +513,8 @@
|
|
|
513
513
|
"Type new owner's username": "Type new owner's username",
|
|
514
514
|
"Type editor's username": "Type editor's username",
|
|
515
515
|
"Map": "Map",
|
|
516
|
-
"Manage collaborators": "Manage collaborators"
|
|
516
|
+
"Manage collaborators": "Manage collaborators",
|
|
517
|
+
"show/hide all layers": "show/hide all layers",
|
|
518
|
+
"zoom to data extent": "zoom to data extent",
|
|
519
|
+
"download visible data": "download visible data"
|
|
517
520
|
}
|
|
@@ -513,7 +513,10 @@ const locale = {
|
|
|
513
513
|
"Type new owner's username": "Nom d'utilisateur du nouveau propriétaire",
|
|
514
514
|
"Type editor's username": "Nom d'utilisateur de l'éditeur",
|
|
515
515
|
"Map": "Carte",
|
|
516
|
-
"Manage collaborators": "Gérer les collaborateurs"
|
|
516
|
+
"Manage collaborators": "Gérer les collaborateurs",
|
|
517
|
+
"show/hide all layers": "montrer/masquer les calques",
|
|
518
|
+
"zoom to data extent": "zoomer sur les données",
|
|
519
|
+
"download visible data": "télécharger les données affichées"
|
|
517
520
|
}
|
|
518
521
|
L.registerLocale("fr", locale)
|
|
519
522
|
L.setLocale("fr")
|
|
@@ -513,5 +513,8 @@
|
|
|
513
513
|
"Type new owner's username": "Nom d'utilisateur du nouveau propriétaire",
|
|
514
514
|
"Type editor's username": "Nom d'utilisateur de l'éditeur",
|
|
515
515
|
"Map": "Carte",
|
|
516
|
-
"Manage collaborators": "Gérer les collaborateurs"
|
|
516
|
+
"Manage collaborators": "Gérer les collaborateurs",
|
|
517
|
+
"show/hide all layers": "montrer/masquer les calques",
|
|
518
|
+
"zoom to data extent": "zoomer sur les données",
|
|
519
|
+
"download visible data": "télécharger les données affichées"
|
|
517
520
|
}
|
|
@@ -913,6 +913,16 @@ a.umap-control-caption,
|
|
|
913
913
|
.umap-caption .umap-map-author {
|
|
914
914
|
padding-inline-start: 31px;
|
|
915
915
|
}
|
|
916
|
+
.umap-browser .main-toolbox {
|
|
917
|
+
padding-left: 4px; /* Align with toolbox below */
|
|
918
|
+
border-top: 1px solid var(--color-mediumGray);
|
|
919
|
+
margin-top: var(--box-margin);
|
|
920
|
+
padding-top: 3px;
|
|
921
|
+
padding-bottom: 3px;
|
|
922
|
+
}
|
|
923
|
+
.umap-browser .main-toolbox i {
|
|
924
|
+
cursor: pointer;
|
|
925
|
+
}
|
|
916
926
|
|
|
917
927
|
|
|
918
928
|
/* ********************************* */
|
|
@@ -81,7 +81,7 @@ describe('HybridLogicalClock', () => {
|
|
|
81
81
|
const now = Date.now()
|
|
82
82
|
clock = new HybridLogicalClock(now, 5, 'local')
|
|
83
83
|
const result = clock.receive(`${now}:7:remote`)
|
|
84
|
-
expect(result.walltime).to.
|
|
84
|
+
expect(result.walltime).to.be.at.least(now)
|
|
85
85
|
expect(result.nn).to.equal(8)
|
|
86
86
|
expect(result.id).to.equal('local')
|
|
87
87
|
})
|
|
@@ -100,7 +100,12 @@ describe('HybridLogicalClock', () => {
|
|
|
100
100
|
clock = new HybridLogicalClock(now, 5, 'local')
|
|
101
101
|
const result = clock.receive(`${now - 1000}:7:remote`)
|
|
102
102
|
expect(result.walltime).to.be.least(now)
|
|
103
|
-
|
|
103
|
+
if (result.walltime > now) {
|
|
104
|
+
expect(result.nn).to.equal(5)
|
|
105
|
+
}
|
|
106
|
+
else {
|
|
107
|
+
expect(result.nn).to.equal(6)
|
|
108
|
+
}
|
|
104
109
|
expect(result.id).to.equal('local')
|
|
105
110
|
})
|
|
106
111
|
})
|
|
@@ -117,7 +122,7 @@ describe('HybridLogicalClock', () => {
|
|
|
117
122
|
const event2 = hlc.tick()
|
|
118
123
|
|
|
119
124
|
// Simulate receiving a message from another node
|
|
120
|
-
|
|
125
|
+
hlc.receive(`${Date.now() - 50}:5:remote-id`)
|
|
121
126
|
|
|
122
127
|
const event3 = hlc.tick()
|
|
123
128
|
|