├── .gitignore ├── .gitmodules ├── .travis.yml ├── .tx └── config ├── CHANGELOG.md ├── LICENCE ├── MANIFEST.in ├── Makefile ├── README.md ├── leaflet_storage ├── __init__.py ├── admin.py ├── decorators.py ├── fields.py ├── forms.py ├── locale │ ├── am_ET │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bg │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cs_CZ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── da │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sk_SK │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── uk_UA │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── vi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_TW │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── anonymous_edit_url.py │ │ └── storagei18n.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160520_1114.py │ ├── 0003_auto_20160910_0624.py │ ├── 0004_tilelayer_tms.py │ └── __init__.py ├── models.py ├── templates │ ├── base.html │ ├── leaflet_storage │ │ ├── css.html │ │ ├── js.html │ │ ├── locale.js │ │ ├── login_popup_end.html │ │ ├── map_detail.html │ │ ├── map_fragment.html │ │ ├── map_init.html │ │ ├── map_messages.html │ │ ├── map_update_permissions.html │ │ └── success.html │ └── registration │ │ └── login.html ├── templatetags │ ├── __init__.py │ └── leaflet_storage_tags.py ├── urls.py ├── utils.py └── views.py ├── pytest.ini ├── requirements-dev.txt ├── setup.py └── tests ├── __init__.py ├── base.py ├── conftest.py ├── fixtures ├── test_upload_data.csv ├── test_upload_data.gpx ├── test_upload_data.json ├── test_upload_data.kml ├── test_upload_empty_coordinates.json ├── test_upload_missing_name.json └── test_upload_non_linear_ring.json ├── settings.py ├── test_datalayer.py ├── test_datalayer_views.py ├── test_fields.py ├── test_licence.py ├── test_map.py ├── test_map_views.py └── test_tilelayer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/LICENCE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/README.md -------------------------------------------------------------------------------- /leaflet_storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/__init__.py -------------------------------------------------------------------------------- /leaflet_storage/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/admin.py -------------------------------------------------------------------------------- /leaflet_storage/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/decorators.py -------------------------------------------------------------------------------- /leaflet_storage/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/fields.py -------------------------------------------------------------------------------- /leaflet_storage/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/forms.py -------------------------------------------------------------------------------- /leaflet_storage/locale/am_ET/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/am_ET/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/am_ET/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/am_ET/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/bg/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/bg/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/ca/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/ca/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/cs_CZ/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/cs_CZ/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/cs_CZ/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/cs_CZ/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/fi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/fi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/lt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/lt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/pt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/pt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/sk_SK/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/sk_SK/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/sk_SK/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/sk_SK/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/uk_UA/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/uk_UA/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/uk_UA/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/uk_UA/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/vi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/vi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/locale/zh_TW/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/zh_TW/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /leaflet_storage/locale/zh_TW/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/locale/zh_TW/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /leaflet_storage/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /leaflet_storage/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /leaflet_storage/management/commands/anonymous_edit_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/management/commands/anonymous_edit_url.py -------------------------------------------------------------------------------- /leaflet_storage/management/commands/storagei18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/management/commands/storagei18n.py -------------------------------------------------------------------------------- /leaflet_storage/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/managers.py -------------------------------------------------------------------------------- /leaflet_storage/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/migrations/0001_initial.py -------------------------------------------------------------------------------- /leaflet_storage/migrations/0002_auto_20160520_1114.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/migrations/0002_auto_20160520_1114.py -------------------------------------------------------------------------------- /leaflet_storage/migrations/0003_auto_20160910_0624.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/migrations/0003_auto_20160910_0624.py -------------------------------------------------------------------------------- /leaflet_storage/migrations/0004_tilelayer_tms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/migrations/0004_tilelayer_tms.py -------------------------------------------------------------------------------- /leaflet_storage/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /leaflet_storage/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/models.py -------------------------------------------------------------------------------- /leaflet_storage/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/templates/base.html -------------------------------------------------------------------------------- /leaflet_storage/templates/leaflet_storage/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/templates/leaflet_storage/css.html -------------------------------------------------------------------------------- /leaflet_storage/templates/leaflet_storage/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/templates/leaflet_storage/js.html -------------------------------------------------------------------------------- /leaflet_storage/templates/leaflet_storage/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/templates/leaflet_storage/locale.js -------------------------------------------------------------------------------- /leaflet_storage/templates/leaflet_storage/login_popup_end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/templates/leaflet_storage/login_popup_end.html -------------------------------------------------------------------------------- /leaflet_storage/templates/leaflet_storage/map_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/templates/leaflet_storage/map_detail.html -------------------------------------------------------------------------------- /leaflet_storage/templates/leaflet_storage/map_fragment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/templates/leaflet_storage/map_fragment.html -------------------------------------------------------------------------------- /leaflet_storage/templates/leaflet_storage/map_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/templates/leaflet_storage/map_init.html -------------------------------------------------------------------------------- /leaflet_storage/templates/leaflet_storage/map_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/templates/leaflet_storage/map_messages.html -------------------------------------------------------------------------------- /leaflet_storage/templates/leaflet_storage/map_update_permissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/templates/leaflet_storage/map_update_permissions.html -------------------------------------------------------------------------------- /leaflet_storage/templates/leaflet_storage/success.html: -------------------------------------------------------------------------------- 1 | ok -------------------------------------------------------------------------------- /leaflet_storage/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/templates/registration/login.html -------------------------------------------------------------------------------- /leaflet_storage/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /leaflet_storage/templatetags/leaflet_storage_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/templatetags/leaflet_storage_tags.py -------------------------------------------------------------------------------- /leaflet_storage/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/urls.py -------------------------------------------------------------------------------- /leaflet_storage/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/utils.py -------------------------------------------------------------------------------- /leaflet_storage/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/leaflet_storage/views.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | DJANGO_SETTINGS_MODULE=tests.settings 3 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/base.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixtures/test_upload_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/fixtures/test_upload_data.csv -------------------------------------------------------------------------------- /tests/fixtures/test_upload_data.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/fixtures/test_upload_data.gpx -------------------------------------------------------------------------------- /tests/fixtures/test_upload_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/fixtures/test_upload_data.json -------------------------------------------------------------------------------- /tests/fixtures/test_upload_data.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/fixtures/test_upload_data.kml -------------------------------------------------------------------------------- /tests/fixtures/test_upload_empty_coordinates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/fixtures/test_upload_empty_coordinates.json -------------------------------------------------------------------------------- /tests/fixtures/test_upload_missing_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/fixtures/test_upload_missing_name.json -------------------------------------------------------------------------------- /tests/fixtures/test_upload_non_linear_ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/fixtures/test_upload_non_linear_ring.json -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_datalayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/test_datalayer.py -------------------------------------------------------------------------------- /tests/test_datalayer_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/test_datalayer_views.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_licence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/test_licence.py -------------------------------------------------------------------------------- /tests/test_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/test_map.py -------------------------------------------------------------------------------- /tests/test_map_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/test_map_views.py -------------------------------------------------------------------------------- /tests/test_tilelayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umap-project/django-leaflet-storage/HEAD/tests/test_tilelayer.py --------------------------------------------------------------------------------