umap-project 1.11.0__tar.gz → 1.11.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- {umap_project-1.11.0 → umap_project-1.11.1}/.gitignore +3 -1
- {umap_project-1.11.0 → umap_project-1.11.1}/PKG-INFO +11 -9
- {umap_project-1.11.0 → umap_project-1.11.1}/pyproject.toml +10 -9
- umap_project-1.11.1/umap/__init__.py +1 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/admin.py +7 -3
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/autocomplete.py +3 -5
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/bin/__init__.py +2 -5
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/decorators.py +4 -5
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/forms.py +5 -5
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/en/LC_MESSAGES/django.po +14 -14
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/management/commands/generate_js_locale.py +9 -11
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/management/commands/import_pictograms.py +1 -1
- umap_project-1.11.1/umap/managers.py +10 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/middleware.py +2 -3
- umap_project-1.11.1/umap/migrations/0001_initial.py +255 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/migrations/0002_tilelayer_tms.py +3 -4
- umap_project-1.11.1/umap/migrations/0003_add_tilelayer.py +32 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/migrations/0004_add_licence.py +3 -6
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/migrations/0005_remove_map_tilelayer.py +3 -4
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/migrations/0006_auto_20190407_0719.py +6 -5
- umap_project-1.11.1/umap/migrations/0007_auto_20190416_1757.py +26 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/migrations/0008_alter_map_settings.py +0 -1
- umap_project-1.11.1/umap/migrations/0009_star.py +44 -0
- umap_project-1.11.1/umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +35 -0
- umap_project-1.11.1/umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +37 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/models.py +6 -6
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/settings/base.py +1 -4
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/base.css +2 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.core.js +2 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.features.js +2 -2
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.js +9 -5
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.layer.js +3 -2
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/map.css +21 -12
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +13 -1
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/auth/user_form.html +2 -2
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/base.html +9 -3
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/map_table.html +3 -3
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templatetags/umap_tags.py +32 -34
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/base.py +2 -1
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/conftest.py +0 -1
- umap_project-1.11.1/umap/tests/integration/test_slideshow.py +70 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/settings.py +7 -5
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/test_datalayer.py +7 -6
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/test_map.py +6 -5
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/test_map_views.py +4 -10
- umap_project-1.11.1/umap/tests/test_tilelayer.py +27 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/test_views.py +7 -6
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/utils.py +1 -2
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/views.py +11 -23
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/wsgi.py +2 -2
- umap_project-1.11.0/umap/__init__.py +0 -1
- umap_project-1.11.0/umap/managers.py +0 -8
- umap_project-1.11.0/umap/migrations/0001_initial.py +0 -107
- umap_project-1.11.0/umap/migrations/0003_add_tilelayer.py +0 -28
- umap_project-1.11.0/umap/migrations/0007_auto_20190416_1757.py +0 -18
- umap_project-1.11.0/umap/migrations/0009_star.py +0 -25
- umap_project-1.11.0/umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +0 -23
- umap_project-1.11.0/umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +0 -24
- umap_project-1.11.0/umap/tests/test_tilelayer.py +0 -21
- {umap_project-1.11.0 → umap_project-1.11.1}/LICENSE +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/README.md +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/apps.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/context_processors.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/fields.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/am_ET/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/am_ET/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ar/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ar/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ast/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ast/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/bg/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/bg/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/br/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/br/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ca/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/cs_CZ/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/da/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/da/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/de/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/de/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/el/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/el/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/en/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/es/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/es/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/et/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/et/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/eu/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/fa_IR/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/fi/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/fi/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/fr/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/gl/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/he/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/he/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/hr/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/hr/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/hu/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/id/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/id/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/is/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/is/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/it/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/it/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ja/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ja/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ko/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ko/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/lt/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/lt/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ms/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/nl/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/no/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/no/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/pl/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/pt/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/pt_BR/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/pt_PT/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ro/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ro/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ru/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/ru/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/si/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/si/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/sk_SK/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/sk_SK/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/sl/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/sl/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/sr/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/sr/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/sv/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/th_TH/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/tr/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/tr/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/uk_UA/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/uk_UA/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/vi/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/vi/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/zh/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/zh/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/locale/zh_TW/LC_MESSAGES/django.po +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/management/__init__.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/management/commands/__init__.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/management/commands/anonymous_edit_url.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/migrations/0012_datalayer_settings.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/migrations/0013_datalayer_edit_status.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/migrations/0014_map_created_at.py +1 -1
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/migrations/0015_alter_pictogram_pictogram.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/migrations/0016_pictogram_category.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/migrations/__init__.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/settings/__init__.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/settings/dev.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/settings/local.py.sample +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/.gitignore +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/bitbucket.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/content.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/favicons/apple-touch-icon.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/favicons/favicon.ico +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/favicons/icon-192.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/favicons/icon-512.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/favicons/icon.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/font/FiraSans-Light.woff +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/font/FiraSans-Light.woff2 +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/font.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/github.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/16-white.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/16.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/24-white.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/24.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/edit.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/icon-bg.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/logo.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/logo_filigree.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/logo_small.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/marker.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/opensource.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/osm.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/search.gif +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/source/16-white.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/source/16.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/source/24-white.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/img/source/24.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.autocomplete.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.browser.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.controls.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.datalayer.permissions.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.forms.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.icon.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.permissions.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.popup.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.slideshow.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.tableeditor.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.ui.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/js/umap.xhr.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/am_ET.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/am_ET.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ar.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ar.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ast.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ast.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/bg.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/bg.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/br.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/br.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ca.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ca.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/cs_CZ.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/cs_CZ.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/da.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/da.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/de.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/de.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/el.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/el.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/en.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/en.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/en_US.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/es.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/es.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/et.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/et.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/eu.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/eu.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/fa_IR.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/fa_IR.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/fi.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/fi.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/fr.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/fr.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/gl.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/gl.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/he.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/he.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/hr.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/hr.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/hu.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/hu.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/id.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/id.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/is.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/is.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/it.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/it.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ja.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ja.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ko.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ko.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/lt.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/lt.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ms.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ms.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/nl.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/nl.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/no.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/no.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/pl.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/pl.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/pl_PL.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/pt.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/pt.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/pt_BR.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/pt_BR.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/pt_PT.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/pt_PT.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ro.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ro.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ru.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/ru.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/si.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/si.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/sk_SK.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/sk_SK.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/sl.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/sl.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/sr.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/sr.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/sv.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/sv.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/th_TH.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/th_TH.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/tr.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/tr.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/uk_UA.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/uk_UA.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/vi.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/vi.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/vi_VN.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/zh.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/zh.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/zh_CN.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/zh_TW.Big5.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/zh_TW.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/locale/zh_TW.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/nav.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/openstreetmap.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/.eslintrc +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/Choropleth.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/Controls.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/DataLayer.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/Feature.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/Map.Export.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/Map.Init.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/Map.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/Marker.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/Permissions.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/Polygon.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/Polyline.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/TableEditor.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/Util.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/_pre.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/test/index.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/theme.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/twitter.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/choropleth/choropleth.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/chroma/chroma.min.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/colorbrewer/colorbrewer.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/colorbrewer/index.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/csv2geojson/csv2geojson.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/csv2geojson/index.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/dompurify/purify.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/editable/Leaflet.Editable.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/editable/Path.Drag.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/flat-drop-files/flatdropfiles.umd.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/fullscreen/fullscreen.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/fullscreen/fullscreen@2x.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/hash/leaflet-hash.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/heat/leaflet-heat.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/i18n/Leaflet.i18n.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/leaflet/images/layers-2x.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/leaflet/images/layers.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/leaflet/images/marker-icon-2x.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/leaflet/images/marker-icon.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/leaflet/images/marker-shadow.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/leaflet/leaflet-src.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/leaflet/leaflet.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/leaflet/leaflet.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/leaflet/leaflet.js.map +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/loading/Control.Loading.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/loading/Control.Loading.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/markercluster/MarkerCluster.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/measurable/Leaflet.Measurable.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/measurable/Leaflet.Measurable.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/minimap/Control.MiniMap.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/minimap/Control.MiniMap.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/minimap/images/toggle.png +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/minimap/images/toggle.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/photon/leaflet.photon.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/print/leaflet.browser.print.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/print/leaflet.browser.print.min.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/simple-statistics/simple-statistics.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/togeojson/togeojson.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/togpx/togpx.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/tokml/tokml.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/404.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/500.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/auth/user_detail.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/auth/user_stars.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/registration/login.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/about.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/about_summary.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/content.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/content_footer.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/css.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/footer.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/home.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/js.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/locale.js +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/login_popup_end.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/map_detail.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/map_fragment.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/map_init.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/map_list.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/map_messages.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/messages.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/navigation.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/password_change.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/password_change_done.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/search.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/search_bar.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/success.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templates/umap/user_dashboard.html +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/templatetags/__init__.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/__init__.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/fixtures/choropleth_region_chomage.geojson +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/fixtures/circle.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/fixtures/display_on_load.umap +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/fixtures/star.svg +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/fixtures/test_upload_data.csv +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/fixtures/test_upload_data.gpx +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/fixtures/test_upload_data.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/fixtures/test_upload_data.kml +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/fixtures/test_upload_empty_coordinates.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/fixtures/test_upload_missing_name.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/fixtures/test_upload_non_linear_ring.json +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/integration/__init__.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/integration/test_anonymous_owned_map.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/integration/test_basics.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/integration/test_browser.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/integration/test_export_map.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/integration/test_import.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/integration/test_map.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/integration/test_owned_map.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/integration/test_picto.py +1 -1
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/test_datalayer_views.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/test_licence.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/tests/test_utils.py +0 -0
- {umap_project-1.11.0 → umap_project-1.11.1}/umap/urls.py +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: umap-project
|
|
3
|
-
Version: 1.11.
|
|
3
|
+
Version: 1.11.1
|
|
4
4
|
Summary: Create maps with OpenStreetMap layers in a minute and embed them in your site.
|
|
5
5
|
Author-email: Yohan Boniface <yb@enix.org>
|
|
6
6
|
Maintainer-email: David Larlet <david@larlet.fr>
|
|
@@ -11,37 +11,39 @@ Classifier: Intended Audience :: Developers
|
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
12
12
|
Classifier: Programming Language :: Python
|
|
13
13
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.4
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.5
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
18
14
|
Classifier: Programming Language :: Python :: 3.8
|
|
19
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
20
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
19
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
20
|
Requires-Python: >=3.8
|
|
23
21
|
Requires-Dist: django-agnocomplete==2.2.0
|
|
24
22
|
Requires-Dist: django-compressor==4.3.1
|
|
25
23
|
Requires-Dist: django-environ==0.10.0
|
|
26
24
|
Requires-Dist: django-probes==1.7.0
|
|
27
|
-
Requires-Dist: django
|
|
25
|
+
Requires-Dist: django<5,>=4.2
|
|
28
26
|
Requires-Dist: pillow==10.0.1
|
|
29
27
|
Requires-Dist: psycopg2==2.9.6
|
|
30
28
|
Requires-Dist: requests==2.31.0
|
|
31
29
|
Requires-Dist: social-auth-app-django==5.2.0
|
|
32
30
|
Requires-Dist: social-auth-core==4.4.2
|
|
33
31
|
Provides-Extra: dev
|
|
34
|
-
Requires-Dist: black==23.3.0; extra == 'dev'
|
|
35
32
|
Requires-Dist: djlint==1.31.0; extra == 'dev'
|
|
36
33
|
Requires-Dist: hatch==1.7.0; extra == 'dev'
|
|
34
|
+
Requires-Dist: isort==5.12; extra == 'dev'
|
|
37
35
|
Requires-Dist: mkdocs==1.5.2; extra == 'dev'
|
|
36
|
+
Requires-Dist: pymdown-extensions==10.4; extra == 'dev'
|
|
37
|
+
Requires-Dist: ruff==0.1.6; extra == 'dev'
|
|
38
|
+
Requires-Dist: vermin==1.5.2; extra == 'dev'
|
|
38
39
|
Provides-Extra: docker
|
|
39
40
|
Requires-Dist: uwsgi==2.0.21; extra == 'docker'
|
|
40
41
|
Provides-Extra: test
|
|
41
42
|
Requires-Dist: factory-boy==3.2.1; extra == 'test'
|
|
42
|
-
Requires-Dist: playwright
|
|
43
|
+
Requires-Dist: playwright<2,>=1.39; extra == 'test'
|
|
43
44
|
Requires-Dist: pytest-django==4.5.2; extra == 'test'
|
|
44
|
-
Requires-Dist: pytest-playwright
|
|
45
|
+
Requires-Dist: pytest-playwright<1,>=0.4.3; extra == 'test'
|
|
46
|
+
Requires-Dist: pytest-xdist<4,>=3.5.0; extra == 'test'
|
|
45
47
|
Requires-Dist: pytest==6.2.5; extra == 'test'
|
|
46
48
|
Description-Content-Type: text/markdown
|
|
47
49
|
|
|
@@ -23,16 +23,14 @@ classifiers = [
|
|
|
23
23
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
24
24
|
"Programming Language :: Python",
|
|
25
25
|
"Programming Language :: Python :: 3 :: Only",
|
|
26
|
-
"Programming Language :: Python :: 3.4",
|
|
27
|
-
"Programming Language :: Python :: 3.5",
|
|
28
|
-
"Programming Language :: Python :: 3.6",
|
|
29
|
-
"Programming Language :: Python :: 3.7",
|
|
30
26
|
"Programming Language :: Python :: 3.8",
|
|
31
27
|
"Programming Language :: Python :: 3.9",
|
|
32
28
|
"Programming Language :: Python :: 3.10",
|
|
29
|
+
"Programming Language :: Python :: 3.11",
|
|
30
|
+
"Programming Language :: Python :: 3.12",
|
|
33
31
|
]
|
|
34
32
|
dependencies = [
|
|
35
|
-
"Django>=4.
|
|
33
|
+
"Django>=4.2,<5",
|
|
36
34
|
"django-agnocomplete==2.2.0",
|
|
37
35
|
"django-compressor==4.3.1",
|
|
38
36
|
"django-environ==0.10.0",
|
|
@@ -47,17 +45,20 @@ dependencies = [
|
|
|
47
45
|
[project.optional-dependencies]
|
|
48
46
|
dev = [
|
|
49
47
|
"hatch==1.7.0",
|
|
50
|
-
"
|
|
48
|
+
"ruff==0.1.6",
|
|
51
49
|
"djlint==1.31.0",
|
|
52
50
|
"mkdocs==1.5.2",
|
|
51
|
+
"vermin==1.5.2",
|
|
52
|
+
"pymdown-extensions==10.4",
|
|
53
|
+
"isort==5.12",
|
|
53
54
|
]
|
|
54
55
|
test = [
|
|
55
56
|
"factory-boy==3.2.1",
|
|
56
|
-
"playwright
|
|
57
|
+
"playwright>=1.39,<2",
|
|
57
58
|
"pytest==6.2.5",
|
|
58
59
|
"pytest-django==4.5.2",
|
|
59
|
-
"pytest-playwright
|
|
60
|
-
|
|
60
|
+
"pytest-playwright>=0.4.3,<1",
|
|
61
|
+
"pytest-xdist>=3.5.0,<4",
|
|
61
62
|
]
|
|
62
63
|
docker = [
|
|
63
64
|
"uwsgi==2.0.21",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = "1.11.1"
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
from django.contrib.gis import admin
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
from .models import DataLayer, Licence, Map, Pictogram, TileLayer
|
|
3
4
|
|
|
4
5
|
|
|
5
6
|
class TileLayerAdmin(admin.ModelAdmin):
|
|
6
|
-
list_display = (
|
|
7
|
-
|
|
7
|
+
list_display = (
|
|
8
|
+
"name",
|
|
9
|
+
"rank",
|
|
10
|
+
)
|
|
11
|
+
list_editable = ("rank",)
|
|
8
12
|
|
|
9
13
|
|
|
10
14
|
class MapAdmin(admin.GISModelAdmin):
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
+
from agnocomplete.core import AgnocompleteModel
|
|
2
|
+
from agnocomplete.register import register
|
|
1
3
|
from django.conf import settings
|
|
2
4
|
from django.contrib.auth import get_user_model
|
|
3
5
|
|
|
4
6
|
|
|
5
|
-
from agnocomplete.register import register
|
|
6
|
-
from agnocomplete.core import AgnocompleteModel
|
|
7
|
-
|
|
8
|
-
|
|
9
7
|
@register
|
|
10
8
|
class AutocompleteUser(AgnocompleteModel):
|
|
11
9
|
model = get_user_model()
|
|
@@ -13,5 +11,5 @@ class AutocompleteUser(AgnocompleteModel):
|
|
|
13
11
|
|
|
14
12
|
def item(self, current_item):
|
|
15
13
|
data = super().item(current_item)
|
|
16
|
-
data[
|
|
14
|
+
data["url"] = current_item.get_url()
|
|
17
15
|
return data
|
|
@@ -5,12 +5,9 @@ from django.core import management
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
def main():
|
|
8
|
-
os.environ.setdefault(
|
|
9
|
-
"DJANGO_SETTINGS_MODULE",
|
|
10
|
-
"umap.settings"
|
|
11
|
-
)
|
|
8
|
+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "umap.settings")
|
|
12
9
|
management.execute_from_command_line()
|
|
13
10
|
|
|
14
11
|
|
|
15
|
-
if __name__ ==
|
|
12
|
+
if __name__ == "__main__":
|
|
16
13
|
main()
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
from functools import wraps
|
|
2
2
|
|
|
3
|
-
from django.urls import reverse_lazy
|
|
4
|
-
from django.shortcuts import get_object_or_404
|
|
5
|
-
from django.http import HttpResponseForbidden
|
|
6
3
|
from django.conf import settings
|
|
4
|
+
from django.http import HttpResponseForbidden
|
|
5
|
+
from django.shortcuts import get_object_or_404
|
|
6
|
+
from django.urls import reverse_lazy
|
|
7
7
|
|
|
8
|
-
from .views import simple_json_response
|
|
9
8
|
from .models import Map
|
|
10
|
-
|
|
9
|
+
from .views import simple_json_response
|
|
11
10
|
|
|
12
11
|
LOGIN_URL = getattr(settings, "LOGIN_URL", "login")
|
|
13
12
|
LOGIN_URL = reverse_lazy(LOGIN_URL) if not LOGIN_URL.startswith("/") else LOGIN_URL
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
from django import forms
|
|
2
|
-
from django.contrib.gis.geos import Point
|
|
3
|
-
from django.contrib.auth import get_user_model
|
|
4
|
-
from django.utils.translation import gettext_lazy as _
|
|
5
|
-
from django.template.defaultfilters import slugify
|
|
6
2
|
from django.conf import settings
|
|
3
|
+
from django.contrib.auth import get_user_model
|
|
4
|
+
from django.contrib.gis.geos import Point
|
|
7
5
|
from django.forms.utils import ErrorList
|
|
6
|
+
from django.template.defaultfilters import slugify
|
|
7
|
+
from django.utils.translation import gettext_lazy as _
|
|
8
8
|
|
|
9
|
-
from .models import
|
|
9
|
+
from .models import DataLayer, Map
|
|
10
10
|
|
|
11
11
|
DEFAULT_LATITUDE = (
|
|
12
12
|
settings.LEAFLET_LATITUDE if hasattr(settings, "LEAFLET_LATITUDE") else 51
|
|
@@ -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: 2023-11-
|
|
11
|
+
"POT-Creation-Date: 2023-11-27 08:30+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"
|
|
@@ -29,7 +29,7 @@ msgstr ""
|
|
|
29
29
|
msgid "Inherit"
|
|
30
30
|
msgstr ""
|
|
31
31
|
|
|
32
|
-
#: middleware.py:
|
|
32
|
+
#: middleware.py:13
|
|
33
33
|
msgid "Site is readonly for maintenance"
|
|
34
34
|
msgstr ""
|
|
35
35
|
|
|
@@ -290,7 +290,7 @@ msgstr ""
|
|
|
290
290
|
msgid "You are logged in. Continuing..."
|
|
291
291
|
msgstr ""
|
|
292
292
|
|
|
293
|
-
#: templates/umap/map_list.html:9 views.py:
|
|
293
|
+
#: templates/umap/map_list.html:9 views.py:290
|
|
294
294
|
msgid "by"
|
|
295
295
|
msgstr ""
|
|
296
296
|
|
|
@@ -431,52 +431,52 @@ msgstr ""
|
|
|
431
431
|
msgid "You have no map yet."
|
|
432
432
|
msgstr ""
|
|
433
433
|
|
|
434
|
-
#: views.py:
|
|
434
|
+
#: views.py:295
|
|
435
435
|
msgid "View the map"
|
|
436
436
|
msgstr ""
|
|
437
437
|
|
|
438
|
-
#: views.py:
|
|
438
|
+
#: views.py:670
|
|
439
439
|
msgid "Map has been updated!"
|
|
440
440
|
msgstr ""
|
|
441
441
|
|
|
442
|
-
#: views.py:
|
|
442
|
+
#: views.py:695
|
|
443
443
|
msgid "Map editors updated with success!"
|
|
444
444
|
msgstr ""
|
|
445
445
|
|
|
446
|
-
#: views.py:
|
|
446
|
+
#: views.py:733
|
|
447
447
|
#, python-format
|
|
448
448
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
449
449
|
msgstr ""
|
|
450
450
|
|
|
451
|
-
#: views.py:
|
|
451
|
+
#: views.py:736
|
|
452
452
|
#, python-format
|
|
453
453
|
msgid "Here is your secret edit link: %(link)s"
|
|
454
454
|
msgstr ""
|
|
455
455
|
|
|
456
|
-
#: views.py:
|
|
456
|
+
#: views.py:742
|
|
457
457
|
#, python-format
|
|
458
458
|
msgid "Email sent to %(email)s"
|
|
459
459
|
msgstr ""
|
|
460
460
|
|
|
461
|
-
#: views.py:
|
|
461
|
+
#: views.py:753
|
|
462
462
|
msgid "Only its owner can delete the map."
|
|
463
463
|
msgstr ""
|
|
464
464
|
|
|
465
|
-
#: views.py:
|
|
465
|
+
#: views.py:776
|
|
466
466
|
#, python-format
|
|
467
467
|
msgid ""
|
|
468
468
|
"Your map has been cloned! If you want to edit this map from another "
|
|
469
469
|
"computer, please use this link: %(anonymous_url)s"
|
|
470
470
|
msgstr ""
|
|
471
471
|
|
|
472
|
-
#: views.py:
|
|
472
|
+
#: views.py:781
|
|
473
473
|
msgid "Congratulations, your map has been cloned!"
|
|
474
474
|
msgstr ""
|
|
475
475
|
|
|
476
|
-
#: views.py:
|
|
476
|
+
#: views.py:970
|
|
477
477
|
msgid "Layer successfully deleted."
|
|
478
478
|
msgstr ""
|
|
479
479
|
|
|
480
|
-
#: views.py:
|
|
480
|
+
#: views.py:992
|
|
481
481
|
msgid "Permissions updated with success!"
|
|
482
482
|
msgstr ""
|
|
@@ -1,24 +1,23 @@
|
|
|
1
1
|
from pathlib import Path
|
|
2
2
|
|
|
3
|
-
from django.core.management.base import BaseCommand
|
|
4
3
|
from django.conf import settings
|
|
4
|
+
from django.core.management.base import BaseCommand
|
|
5
5
|
from django.template.loader import render_to_string
|
|
6
6
|
from django.utils.translation import to_locale
|
|
7
7
|
|
|
8
|
-
ROOT = Path(settings.PROJECT_DIR) /
|
|
8
|
+
ROOT = Path(settings.PROJECT_DIR) / "static/umap/locale/"
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
class Command(BaseCommand):
|
|
12
|
-
|
|
13
12
|
def handle(self, *args, **options):
|
|
14
|
-
self.verbosity = options[
|
|
13
|
+
self.verbosity = options["verbosity"]
|
|
15
14
|
for code, name in settings.LANGUAGES:
|
|
16
15
|
code = to_locale(code)
|
|
17
16
|
if self.verbosity > 0:
|
|
18
17
|
print("Processing", name)
|
|
19
|
-
path = ROOT /
|
|
18
|
+
path = ROOT / "{code}.json".format(code=code)
|
|
20
19
|
if not path.exists():
|
|
21
|
-
print(path,
|
|
20
|
+
print(path, "does not exist.", "Skipping")
|
|
22
21
|
else:
|
|
23
22
|
with path.open(encoding="utf-8") as f:
|
|
24
23
|
if self.verbosity > 1:
|
|
@@ -26,12 +25,11 @@ class Command(BaseCommand):
|
|
|
26
25
|
self.render(code, f.read())
|
|
27
26
|
|
|
28
27
|
def render(self, code, json):
|
|
29
|
-
path = ROOT /
|
|
28
|
+
path = ROOT / "{code}.js".format(code=code)
|
|
30
29
|
with path.open("w", encoding="utf-8") as f:
|
|
31
|
-
content = render_to_string(
|
|
32
|
-
"locale": json,
|
|
33
|
-
|
|
34
|
-
})
|
|
30
|
+
content = render_to_string(
|
|
31
|
+
"umap/locale.js", {"locale": json, "locale_code": code}
|
|
32
|
+
)
|
|
35
33
|
if self.verbosity > 1:
|
|
36
34
|
print("Exporting to", path)
|
|
37
35
|
f.write(content)
|
|
@@ -59,7 +59,7 @@ class Command(BaseCommand):
|
|
|
59
59
|
else:
|
|
60
60
|
picto = Pictogram()
|
|
61
61
|
picto.name = name
|
|
62
|
-
if
|
|
62
|
+
if path.name != self.path.name: # Subfolders only
|
|
63
63
|
picto.category = path.name
|
|
64
64
|
picto.attribution = self.attribution
|
|
65
65
|
with (path / filename).open("rb") as f:
|
|
@@ -5,13 +5,12 @@ from django.utils.translation import gettext as _
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
def readonly_middleware(get_response):
|
|
8
|
-
|
|
9
8
|
if not settings.UMAP_READONLY:
|
|
10
9
|
raise MiddlewareNotUsed
|
|
11
10
|
|
|
12
11
|
def middleware(request):
|
|
13
|
-
if request.method not in [
|
|
14
|
-
return HttpResponseForbidden(_(
|
|
12
|
+
if request.method not in ["GET", "OPTIONS"]:
|
|
13
|
+
return HttpResponseForbidden(_("Site is readonly for maintenance"))
|
|
15
14
|
|
|
16
15
|
return get_response(request)
|
|
17
16
|
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
# Generated by Django 2.0.5 on 2018-05-19 09:27
|
|
2
|
+
|
|
3
|
+
import django.contrib.gis.db.models.fields
|
|
4
|
+
import django.db.models.deletion
|
|
5
|
+
from django.conf import settings
|
|
6
|
+
from django.db import migrations, models
|
|
7
|
+
|
|
8
|
+
import umap.fields
|
|
9
|
+
import umap.models
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class Migration(migrations.Migration):
|
|
13
|
+
initial = True
|
|
14
|
+
|
|
15
|
+
dependencies = [
|
|
16
|
+
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
operations = [
|
|
20
|
+
migrations.CreateModel(
|
|
21
|
+
name="DataLayer",
|
|
22
|
+
fields=[
|
|
23
|
+
(
|
|
24
|
+
"id",
|
|
25
|
+
models.AutoField(
|
|
26
|
+
auto_created=True,
|
|
27
|
+
primary_key=True,
|
|
28
|
+
serialize=False,
|
|
29
|
+
verbose_name="ID",
|
|
30
|
+
),
|
|
31
|
+
),
|
|
32
|
+
("name", models.CharField(max_length=200, verbose_name="name")),
|
|
33
|
+
(
|
|
34
|
+
"description",
|
|
35
|
+
models.TextField(blank=True, null=True, verbose_name="description"),
|
|
36
|
+
),
|
|
37
|
+
(
|
|
38
|
+
"geojson",
|
|
39
|
+
models.FileField(
|
|
40
|
+
blank=True, null=True, upload_to=umap.models.upload_to
|
|
41
|
+
),
|
|
42
|
+
),
|
|
43
|
+
(
|
|
44
|
+
"display_on_load",
|
|
45
|
+
models.BooleanField(
|
|
46
|
+
default=False,
|
|
47
|
+
help_text="Display this layer on load.",
|
|
48
|
+
verbose_name="display on load",
|
|
49
|
+
),
|
|
50
|
+
),
|
|
51
|
+
("rank", models.SmallIntegerField(default=0)),
|
|
52
|
+
],
|
|
53
|
+
options={
|
|
54
|
+
"ordering": ("rank",),
|
|
55
|
+
},
|
|
56
|
+
),
|
|
57
|
+
migrations.CreateModel(
|
|
58
|
+
name="Licence",
|
|
59
|
+
fields=[
|
|
60
|
+
(
|
|
61
|
+
"id",
|
|
62
|
+
models.AutoField(
|
|
63
|
+
auto_created=True,
|
|
64
|
+
primary_key=True,
|
|
65
|
+
serialize=False,
|
|
66
|
+
verbose_name="ID",
|
|
67
|
+
),
|
|
68
|
+
),
|
|
69
|
+
("name", models.CharField(max_length=200, verbose_name="name")),
|
|
70
|
+
(
|
|
71
|
+
"details",
|
|
72
|
+
models.URLField(
|
|
73
|
+
help_text="Link to a page where the licence is detailed.",
|
|
74
|
+
verbose_name="details",
|
|
75
|
+
),
|
|
76
|
+
),
|
|
77
|
+
],
|
|
78
|
+
options={
|
|
79
|
+
"ordering": ("name",),
|
|
80
|
+
"abstract": False,
|
|
81
|
+
},
|
|
82
|
+
),
|
|
83
|
+
migrations.CreateModel(
|
|
84
|
+
name="Map",
|
|
85
|
+
fields=[
|
|
86
|
+
(
|
|
87
|
+
"id",
|
|
88
|
+
models.AutoField(
|
|
89
|
+
auto_created=True,
|
|
90
|
+
primary_key=True,
|
|
91
|
+
serialize=False,
|
|
92
|
+
verbose_name="ID",
|
|
93
|
+
),
|
|
94
|
+
),
|
|
95
|
+
("name", models.CharField(max_length=200, verbose_name="name")),
|
|
96
|
+
("slug", models.SlugField()),
|
|
97
|
+
(
|
|
98
|
+
"description",
|
|
99
|
+
models.TextField(blank=True, null=True, verbose_name="description"),
|
|
100
|
+
),
|
|
101
|
+
(
|
|
102
|
+
"center",
|
|
103
|
+
django.contrib.gis.db.models.fields.PointField(
|
|
104
|
+
geography=True, srid=4326, verbose_name="center"
|
|
105
|
+
),
|
|
106
|
+
),
|
|
107
|
+
("zoom", models.IntegerField(default=7, verbose_name="zoom")),
|
|
108
|
+
(
|
|
109
|
+
"locate",
|
|
110
|
+
models.BooleanField(
|
|
111
|
+
default=False,
|
|
112
|
+
help_text="Locate user on load?",
|
|
113
|
+
verbose_name="locate",
|
|
114
|
+
),
|
|
115
|
+
),
|
|
116
|
+
("modified_at", models.DateTimeField(auto_now=True)),
|
|
117
|
+
(
|
|
118
|
+
"edit_status",
|
|
119
|
+
models.SmallIntegerField(
|
|
120
|
+
choices=[
|
|
121
|
+
(1, "Everyone can edit"),
|
|
122
|
+
(2, "Only editors can edit"),
|
|
123
|
+
(3, "Only owner can edit"),
|
|
124
|
+
],
|
|
125
|
+
default=3,
|
|
126
|
+
verbose_name="edit status",
|
|
127
|
+
),
|
|
128
|
+
),
|
|
129
|
+
(
|
|
130
|
+
"share_status",
|
|
131
|
+
models.SmallIntegerField(
|
|
132
|
+
choices=[
|
|
133
|
+
(1, "everyone (public)"),
|
|
134
|
+
(2, "anyone with link"),
|
|
135
|
+
(3, "editors only"),
|
|
136
|
+
],
|
|
137
|
+
default=1,
|
|
138
|
+
verbose_name="share status",
|
|
139
|
+
),
|
|
140
|
+
),
|
|
141
|
+
(
|
|
142
|
+
"settings",
|
|
143
|
+
umap.fields.DictField(
|
|
144
|
+
blank=True, null=True, verbose_name="settings"
|
|
145
|
+
),
|
|
146
|
+
),
|
|
147
|
+
(
|
|
148
|
+
"editors",
|
|
149
|
+
models.ManyToManyField(
|
|
150
|
+
blank=True, to=settings.AUTH_USER_MODEL, verbose_name="editors"
|
|
151
|
+
),
|
|
152
|
+
),
|
|
153
|
+
(
|
|
154
|
+
"licence",
|
|
155
|
+
models.ForeignKey(
|
|
156
|
+
default=umap.models.get_default_licence,
|
|
157
|
+
help_text="Choose the map licence.",
|
|
158
|
+
on_delete=django.db.models.deletion.SET_DEFAULT,
|
|
159
|
+
to="umap.Licence",
|
|
160
|
+
verbose_name="licence",
|
|
161
|
+
),
|
|
162
|
+
),
|
|
163
|
+
(
|
|
164
|
+
"owner",
|
|
165
|
+
models.ForeignKey(
|
|
166
|
+
blank=True,
|
|
167
|
+
null=True,
|
|
168
|
+
on_delete=django.db.models.deletion.PROTECT,
|
|
169
|
+
related_name="owned_maps",
|
|
170
|
+
to=settings.AUTH_USER_MODEL,
|
|
171
|
+
verbose_name="owner",
|
|
172
|
+
),
|
|
173
|
+
),
|
|
174
|
+
],
|
|
175
|
+
options={
|
|
176
|
+
"ordering": ("name",),
|
|
177
|
+
"abstract": False,
|
|
178
|
+
},
|
|
179
|
+
),
|
|
180
|
+
migrations.CreateModel(
|
|
181
|
+
name="Pictogram",
|
|
182
|
+
fields=[
|
|
183
|
+
(
|
|
184
|
+
"id",
|
|
185
|
+
models.AutoField(
|
|
186
|
+
auto_created=True,
|
|
187
|
+
primary_key=True,
|
|
188
|
+
serialize=False,
|
|
189
|
+
verbose_name="ID",
|
|
190
|
+
),
|
|
191
|
+
),
|
|
192
|
+
("name", models.CharField(max_length=200, verbose_name="name")),
|
|
193
|
+
("attribution", models.CharField(max_length=300)),
|
|
194
|
+
("pictogram", models.ImageField(upload_to="pictogram")),
|
|
195
|
+
],
|
|
196
|
+
options={
|
|
197
|
+
"ordering": ("name",),
|
|
198
|
+
"abstract": False,
|
|
199
|
+
},
|
|
200
|
+
),
|
|
201
|
+
migrations.CreateModel(
|
|
202
|
+
name="TileLayer",
|
|
203
|
+
fields=[
|
|
204
|
+
(
|
|
205
|
+
"id",
|
|
206
|
+
models.AutoField(
|
|
207
|
+
auto_created=True,
|
|
208
|
+
primary_key=True,
|
|
209
|
+
serialize=False,
|
|
210
|
+
verbose_name="ID",
|
|
211
|
+
),
|
|
212
|
+
),
|
|
213
|
+
("name", models.CharField(max_length=200, verbose_name="name")),
|
|
214
|
+
(
|
|
215
|
+
"url_template",
|
|
216
|
+
models.CharField(
|
|
217
|
+
help_text="URL template using OSM tile format", max_length=200
|
|
218
|
+
),
|
|
219
|
+
),
|
|
220
|
+
("minZoom", models.IntegerField(default=0)),
|
|
221
|
+
("maxZoom", models.IntegerField(default=18)),
|
|
222
|
+
("attribution", models.CharField(max_length=300)),
|
|
223
|
+
(
|
|
224
|
+
"rank",
|
|
225
|
+
models.SmallIntegerField(
|
|
226
|
+
blank=True,
|
|
227
|
+
help_text="Order of the tilelayers in the edit box",
|
|
228
|
+
null=True,
|
|
229
|
+
),
|
|
230
|
+
),
|
|
231
|
+
],
|
|
232
|
+
options={
|
|
233
|
+
"ordering": ("rank", "name"),
|
|
234
|
+
},
|
|
235
|
+
),
|
|
236
|
+
migrations.AddField(
|
|
237
|
+
model_name="map",
|
|
238
|
+
name="tilelayer",
|
|
239
|
+
field=models.ForeignKey(
|
|
240
|
+
blank=True,
|
|
241
|
+
null=True,
|
|
242
|
+
on_delete=django.db.models.deletion.PROTECT,
|
|
243
|
+
related_name="maps",
|
|
244
|
+
to="umap.TileLayer",
|
|
245
|
+
verbose_name="background",
|
|
246
|
+
),
|
|
247
|
+
),
|
|
248
|
+
migrations.AddField(
|
|
249
|
+
model_name="datalayer",
|
|
250
|
+
name="map",
|
|
251
|
+
field=models.ForeignKey(
|
|
252
|
+
on_delete=django.db.models.deletion.CASCADE, to="umap.Map"
|
|
253
|
+
),
|
|
254
|
+
),
|
|
255
|
+
]
|
|
@@ -4,15 +4,14 @@ from django.db import migrations, models
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
class Migration(migrations.Migration):
|
|
7
|
-
|
|
8
7
|
dependencies = [
|
|
9
|
-
(
|
|
8
|
+
("umap", "0001_initial"),
|
|
10
9
|
]
|
|
11
10
|
|
|
12
11
|
operations = [
|
|
13
12
|
migrations.AddField(
|
|
14
|
-
model_name=
|
|
15
|
-
name=
|
|
13
|
+
model_name="tilelayer",
|
|
14
|
+
name="tms",
|
|
16
15
|
field=models.BooleanField(default=False),
|
|
17
16
|
),
|
|
18
17
|
]
|