localcosmos-app-kit 0.2.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.
- localcosmos_app_kit-0.2.1/LICENCE +9 -0
- localcosmos_app_kit-0.2.1/MANIFEST.in +24 -0
- localcosmos_app_kit-0.2.1/PKG-INFO +34 -0
- localcosmos_app_kit-0.2.1/README.md +3 -0
- localcosmos_app_kit-0.2.1/app_kit/__init__.py +1 -0
- localcosmos_app_kit-0.2.1/app_kit/admin.py +8 -0
- localcosmos_app_kit-0.2.1/app_kit/admin_urls.py +110 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/__init__.py +1 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/admin.py +14 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/apps.py +5 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/migrations/0001_initial.py +48 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/migrations/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/models.py +80 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/permissions.py +14 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/serializers.py +109 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/tests/mixins.py +39 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/tests/test_serializers.py +249 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/tests/test_views.py +141 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/urls.py +19 -0
- localcosmos_app_kit-0.2.1/app_kit/app_kit_api/views.py +236 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/AppBuilderBase.py +752 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/AppPreviewBuilder.py +149 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/AppReleaseBuilder.py +2724 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/ContentImageBuilder.py +224 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/GBIFlib.py +42 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/BackboneTaxonomyJSONBuilder.py +236 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/ButtonMatrixJSONBuilder.py +85 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/FrontendJSONBuilder.py +77 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/GenericFormJSONBuilder.py +182 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/GlossaryJSONBuilder.py +421 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/JSONBuilder.py +205 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/MapJSONBuilder.py +90 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/NatureGuideJSONBuilder.py +684 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/TaxonProfilesJSONBuilder.py +722 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/TemplateContentJSONBuilder.py +138 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/JSONBuilders/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/__init__.py +3 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/precompile_fulltree.py +64 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/tests/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/tests/test_ContentImageBuilder.py +366 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/tests/test_builder.py +86 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/tests/test_builder_base.py +459 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/tests/test_preview_builder.py +101 -0
- localcosmos_app_kit-0.2.1/app_kit/appbuilder/tests/test_release_builder.py +853 -0
- localcosmos_app_kit-0.2.1/app_kit/apps.py +5 -0
- localcosmos_app_kit-0.2.1/app_kit/context_processors.py +12 -0
- localcosmos_app_kit-0.2.1/app_kit/definitions.py +5 -0
- localcosmos_app_kit-0.2.1/app_kit/features/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/admin.py +3 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/apps.py +5 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/forms.py +51 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/migrations/0001_initial.py +54 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/migrations/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/models.py +147 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/add_taxon_form.html +45 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/manage_backbone_taxa_form.html +54 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/manage_backbonetaxonomy.html +125 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/manage_fulltree_form.html +20 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/remove_backbone_taxon.html +31 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/taxonlist.html +73 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/widgets/backbone_taxon_autocomplete_widget.html +51 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/templates/backbonetaxonomy/widgets/backbone_taxon_autocomplete_widget_search_only.html +30 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/tests/test_forms.py +55 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/tests/test_models.py +208 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/tests/test_views.py +365 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/urls.py +17 -0
- localcosmos_app_kit-0.2.1/app_kit/features/backbonetaxonomy/views.py +318 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/admin.py +3 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/apps.py +5 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/forms.py +225 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/models.py +259 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templates/buttonmatrix/ajax/generic_form_exposed_field_options.html +3 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templates/buttonmatrix/buttonmatrix_button.html +27 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templates/buttonmatrix/delete_buttonmatrix_element.html +36 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templates/buttonmatrix/manage_button.html +33 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templates/buttonmatrix/manage_buttonmatrix.html +88 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templatetags/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/templatetags/buttonmatrix_tags.py +38 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/tests.py +3 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/urls.py +15 -0
- localcosmos_app_kit-0.2.1/app_kit/features/buttonmatrix/views.py +233 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/PrivateFrontendImporter.py +228 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/admin.py +3 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/apps.py +5 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/forms.py +188 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/migrations/0001_initial.py +53 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/migrations/0002_frontend_configuration.py +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/migrations/0003_alter_frontendtext_unique_together.py +17 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/migrations/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/models.py +139 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/templates/frontend/ajax/change_frontend.html +29 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/templates/frontend/ajax/install_private_frontend.html +31 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/templates/frontend/ajax/manage_frontend_settings.html +47 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/templates/frontend/ajax/upload_private_frontend.html +39 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/templates/frontend/manage_frontend.html +51 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/tests/mixins.py +43 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/tests/test_PrivateFrontendImporter.py +447 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/tests/test_forms.py +57 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/tests/test_models.py +78 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/tests/test_views.py +574 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/urls.py +15 -0
- localcosmos_app_kit-0.2.1/app_kit/features/frontend/views.py +296 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/admin.py +3 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/apps.py +5 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/definitions.py +9 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/fields.py +6 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/forms.py +382 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/migrations/0001_initial.py +88 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/migrations/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/models.py +387 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/static/generic_forms/datePicker.js +468 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/static/generic_forms/genericforms.css +25 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/static/generic_forms/genericforms.css~ +13 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/ajax/delete_generic_field.html +33 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/ajax/delete_generic_value.html +38 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/ajax/manage_generic_field.html +123 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/ajax/manage_generic_field_choices.html +99 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/generic_field.html +16 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/generic_field_modify.html +28 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templates/generic_forms/manage_generic_form.html +185 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templatetags/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/templatetags/genericforms.py +45 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/tests/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/tests/test_forms.py +473 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/tests/test_models.py +516 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/tests/test_templatetags_old.py +302 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/tests/test_views.py +1260 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/urls.py +25 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/views.py +395 -0
- localcosmos_app_kit-0.2.1/app_kit/features/generic_forms/widgets.py +2 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/admin.py +3 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/apps.py +5 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/forms.py +54 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/migrations/0001_initial.py +58 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/migrations/0002_auto_20201207_1328.py +27 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/migrations/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/models.py +104 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/ajax/add_glossary_entry.html +45 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/ajax/add_glossary_entry_form.html +22 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/ajax/delete_glossary_entry.html +8 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/ajax/glossary_entries.html +28 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/ajax/glossary_entry.html +28 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/ajax/manage_glossary_entry.html +37 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/templates/glossary/manage_glossary.html +22 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/tests/test_forms.py +29 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/tests/test_models.py +126 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/tests/test_views.py +338 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/urls.py +17 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/views.py +201 -0
- localcosmos_app_kit-0.2.1/app_kit/features/glossary/zip_import.py +236 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/admin.py +3 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/apps.py +5 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/forms.py +79 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/migrations/0001_initial.py +47 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/migrations/0002_maptaxonomicfilter_filtertaxon.py +42 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/migrations/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/models.py +91 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/templates/maps/ajax/delete_filter_taxon.html +12 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/templates/maps/ajax/manage_project_area.html +308 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/templates/maps/ajax/manage_taxonomic_filter.html +52 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/templates/maps/ajax/taxonomic_filters.html +45 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/templates/maps/manage_maps.html +248 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/tests/mixins.py +49 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/tests/test_forms.py +192 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/tests/test_models.py +165 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/tests/test_views.py +585 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/urls.py +19 -0
- localcosmos_app_kit-0.2.1/app_kit/features/maps/views.py +256 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/admin.py +3 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/apps.py +5 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/definitions.py +28 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/fields.py +84 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/forms.py +385 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/matrix_filter_forms.py +188 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/matrix_filter_space_forms.py +83 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/matrix_filters.py +1533 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0001_initial.py +204 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0002_auto_20201013_0901.py +24 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0003_matrixfilterrestriction.py +24 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0004_auto_20210616_1315.py +17 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0005_metanode_settings.py +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0006_auto_20220503_0747.py +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0007_auto_20221110_0613.py +23 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0008_meta_node_description.py +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0009_meta_node_morphotype.py +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/0010_matrix_filter_additional_data.py +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/migrations/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/models.py +1584 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/add_existing_nodes.html +153 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/add_existing_nodes_page.html +19 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/add_keynodes_menu.html +19 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/copy_tree_branch.html +87 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/delete_additional_matrix_filter_space_image.html +6 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/delete_matrix_filter_value.html +9 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/delete_nodelink.html +9 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/delete_overview_image.html +13 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_additional_matrix_filter_space_image.html +11 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_color_filter_space.html +130 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_matrix_filter.html +36 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_matrix_filter_restrictions.html +52 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_matrix_filter_space.html +157 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_nodelink_form.html +97 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/manage_overview_image.html +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/matrix_filters.html +264 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/move_natureguide_node.html +52 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/natureguide_node.html +44 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/natureguide_node_small.html +38 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/node_loader.html +25 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/node_management_menu.html +21 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/nodelist.html +16 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/ajax/reload_matrix_filters.html +6 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/manage_nature_guide.html +199 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/manage_node.html +17 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/node_analysis.html +61 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/nodemenu_loader.html +22 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/define_colors_widget.html +25 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/define_description_widget.html +20 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/define_numbers_widget.html +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/define_range_widget.html +25 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/define_text_description_widget.html +17 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/grid_choices.html +98 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/horizontal_choices.html +91 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/range.html +68 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/select_multiple_colors.html +15 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/select_multiple_numbers.html +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/select_multiple_patterns.html +21 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/select_multiple_taxonfilters.html +13 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/select_multiple_texts.html +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/slider_select_multiple_colors.html +15 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/slider_select_multiple_numbers.html +12 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/slider_select_multiple_patterns.html +1 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/slider_select_multiple_taxonfilters.html +7 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/templates/nature_guides/widgets/slider_select_multiple_texts.html +12 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/tests/common.py +225 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/tests/test_forms.py +610 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/tests/test_matrix_filters.py +2664 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/tests/test_models.py +2406 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/tests/test_views.py +4040 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/urls.py +80 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/views.py +1640 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/widgets.py +239 -0
- localcosmos_app_kit-0.2.1/app_kit/features/nature_guides/zip_import.py +1157 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/admin.py +3 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/apps.py +5 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/forms.py +191 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0001_initial.py +80 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0002_taxontext_long_text.py +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0003_auto_20221021_0746.py +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0004_alter_taxontexttype_options.py +17 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0005_taxonprofile_tags.py +20 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0006_taxonprofile_publication_status.py +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/0007_alter_taxonprofile_unique_together.py +17 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/migrations/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/models.py +211 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/batch_change_taxon_profiles_publication_status.html +26 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/change_taxon_profile_publication_status.html +26 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/collected_taxon_images.html +66 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/collected_taxon_traits.html +57 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/create_taxon_profile.html +38 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/delete_taxon_profile.html +16 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/delete_taxon_profile_image.html +12 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/delete_taxon_text_type.html +10 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/manage_taxon_profile_form.html +76 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/manage_taxon_profile_image.html +34 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/manage_text_type.html +36 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/manage_text_types_order.html +81 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/nature_guide_taxonlist.html +46 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/non_nature_guide_taxonlist.html +18 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/ajax/taxonlist.html +24 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/manage_taxon_profile.html +160 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/manage_taxon_profiles.html +156 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templates/taxon_profiles/manage_taxon_texts.html +59 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templatetags/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/templatetags/taxon_profile_tags.py +24 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/tests/test_forms.py +162 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/tests/test_models.py +291 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/tests/test_views.py +1203 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/urls.py +47 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/views.py +744 -0
- localcosmos_app_kit-0.2.1/app_kit/features/taxon_profiles/zip_import.py +225 -0
- localcosmos_app_kit-0.2.1/app_kit/forms.py +427 -0
- localcosmos_app_kit-0.2.1/app_kit/generic.py +191 -0
- localcosmos_app_kit-0.2.1/app_kit/generic_content_validation.py +37 -0
- localcosmos_app_kit-0.2.1/app_kit/generic_content_zip_import.py +468 -0
- localcosmos_app_kit-0.2.1/app_kit/global_urls.py +41 -0
- localcosmos_app_kit-0.2.1/app_kit/locale/de/LC_MESSAGES/django.mo +0 -0
- localcosmos_app_kit-0.2.1/app_kit/locale/de/LC_MESSAGES/django.po +3623 -0
- localcosmos_app_kit-0.2.1/app_kit/locale/en/LC_MESSAGES/django.mo +0 -0
- localcosmos_app_kit-0.2.1/app_kit/locale/en/LC_MESSAGES/django.po +3007 -0
- localcosmos_app_kit-0.2.1/app_kit/management/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/middleware.py +39 -0
- localcosmos_app_kit-0.2.1/app_kit/migrations/0001_initial.py +123 -0
- localcosmos_app_kit-0.2.1/app_kit/migrations/0002_contentimage_features.py +18 -0
- localcosmos_app_kit-0.2.1/app_kit/migrations/0003_auto_20220520_0640.py +26 -0
- localcosmos_app_kit-0.2.1/app_kit/migrations/0004_auto_20220608_0717.py +33 -0
- localcosmos_app_kit-0.2.1/app_kit/migrations/0005_metaappgenericcontent_position.py +18 -0
- localcosmos_app_kit-0.2.1/app_kit/migrations/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/models.py +1124 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/admin.py +8 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/apps.py +5 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/forms.py +30 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/management/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/management/commands/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/management/commands/fix_staging_domains.py +60 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/middleware.py +77 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/migrations/0001_initial.py +57 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/migrations/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/models.py +110 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/public_schema_urls.py +45 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/setup_forms.py +18 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/setup_urls.py +11 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/setup_views.py +131 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/templates/localcosmos/contact_us.html +31 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/templates/localcosmos/delete_account.html +34 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/templates/localcosmos/edit_account.html +31 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/templates/localcosmos/my_account.html +50 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/templates/localcosmos/setup/setup_initial_appkit.html +63 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/templates/multi_tenancy/list_app_kits.html +191 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/tenant_schema_urls.py +24 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/tests.py +3 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/utils.py +42 -0
- localcosmos_app_kit-0.2.1/app_kit/multi_tenancy/views.py +98 -0
- localcosmos_app_kit-0.2.1/app_kit/permission_rules.py +24 -0
- localcosmos_app_kit-0.2.1/app_kit/server_side_cursors.py +67 -0
- localcosmos_app_kit-0.2.1/app_kit/settings.py +3 -0
- localcosmos_app_kit-0.2.1/app_kit/static/anycluster/openlayers/anycluster-openlayers.js +20502 -0
- localcosmos_app_kit-0.2.1/app_kit/static/anycluster/openlayers/anycluster-openlayers.js.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ButtonMatrix.js +143 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-grid.css +3719 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-grid.css.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-grid.min.css +7 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-grid.min.css.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-reboot.css +331 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-reboot.css.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-reboot.min.css +8 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap-reboot.min.css.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap.css +10038 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap.css.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap.min.css +7 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/css/bootstrap.min.css.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.bundle.js +7013 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.bundle.js.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.bundle.min.js +7 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.bundle.min.js.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.js +4435 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.js.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.min.js +7 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/bootstrap-4.3.1-dist/js/bootstrap.min.js.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/Alphabetfilter.svg +67 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/album.svg +102 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/camera.svg +79 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/observation.svg +98 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/occurrence.svg +139 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxon_detail.svg +227 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Amphibia.svg +90 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Animalia.svg +134 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Anura.svg +76 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Arachnida.svg +368 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Arthropoda.svg +585 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Aves.svg +76 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Chordata.svg +153 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Coleoptera.svg +252 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Customfilter.svg +67 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Fungi.svg +89 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Holocephali,Elasmobranchii,Sarcopterygii,Actinopterygii.svg +76 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Insecta.svg +366 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Lepidoptera.svg +99 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Mammalia.svg +90 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Mollusca.svg +87 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Odonata.svg +83 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/Plantae.svg +76 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/taxonfilters/no_filter.svg +108 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/buttons/wikipedia_button.svg +73 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/LICENSE.md +49 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/README.md +68 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/ckeditor.js +6 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/ckeditor.js.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/af.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ar.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ast.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/az.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/bg.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ca.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/cs.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/da.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/de-ch.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/de.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/el.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/en-au.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/en-gb.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/eo.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/es.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/et.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/eu.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/fa.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/fi.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/fr.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/gl.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/gu.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/he.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/hi.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/hr.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/hu.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/id.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/it.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ja.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/km.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/kn.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ko.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ku.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/lt.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/lv.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/nb.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ne.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/nl.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/no.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/oc.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/pl.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/pt-br.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/pt.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ro.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ru.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/si.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/sk.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/sl.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/sq.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/sr-latn.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/sr.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/sv.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/th.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/tk.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/tr.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/tt.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/ug.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/uk.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/vi.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/zh-cn.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/build/translations/zh.js +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/package.json +30 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/sample/index.html +116 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/sample/styles.css +456 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/src/ckeditor.js +27 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/ckeditor5/webpack.config.js +96 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/css/app.css +33 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/css/app_kit.css +1008 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/handlebars-v4.0.10.js +4840 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/horizontal-slide/horizontal-slide.css +157 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/horizontal-slide/horizontal-slide.js +50 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/add_element.png +0 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/auditory.svg +109 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/burger.png +0 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/checkbox-off.svg +66 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/checkbox-on.svg +67 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/close.png +0 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/BackboneTaxonomy.svg +153 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/FactSheets.svg +175 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/Frontend.svg +261 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/GenericForm.svg +98 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/Glossary.svg +144 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/Map.svg +139 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/NatureGuide.svg +108 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/TaxonProfiles.svg +227 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/features/template_content.svg +81 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/forward-arrow.svg +159 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/gear.gif +0 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/gustatory.svg +108 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/lclogo32.png +0 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/microscope.svg +88 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/olfactory.svg +94 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/scalpel.svg +134 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/spinner.gif +0 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/spinner_huge.gif +0 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/spinner_old.gif +0 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/tactile.svg +94 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/images/visual.svg +104 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/js/hammer.js +2643 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/js/jquery-3.3.1.min.js +2 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/js/observatory_admin.js +346 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/js/polyfills.js +15 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/js/popper.min.js +5 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/Control.Draw.js +118 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/Leaflet.Draw.Event.js +177 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/Leaflet.draw.js +189 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/Toolbar.js +334 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/Tooltip.js +118 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/copyright.js +7 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/DrawToolbar.js +110 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.Circle.js +83 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.CircleMarker.js +42 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.Feature.js +104 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.Marker.js +127 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.Polygon.js +129 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.Polyline.js +592 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.Rectangle.js +98 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/draw/handler/Draw.SimpleShape.js +119 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/EditToolbar.js +194 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/Edit.Circle.js +57 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/Edit.CircleMarker.js +53 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/Edit.Marker.js +84 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/Edit.Poly.js +520 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/Edit.Rectangle.js +125 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/Edit.SimpleShape.js +229 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/EditToolbar.Delete.js +161 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/edit/handler/EditToolbar.Edit.js +290 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/ext/GeometryUtil.js +165 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/ext/LatLngUtil.js +28 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/ext/LineUtil.Intersect.js +22 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/ext/Polygon.Intersect.js +33 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/ext/Polyline.Intersect.js +106 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/ext/TouchEvents.js +272 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/images/spritesheet-2x.png +0 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/images/spritesheet.png +0 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/images/spritesheet.svg +155 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/maps/Leaflet.draw/src/leaflet.draw.css +325 -0
- localcosmos_app_kit-0.2.1/app_kit/static/app_kit/sortable/Sortable.min.js +2 -0
- localcosmos_app_kit-0.2.1/app_kit/static/nature_guides/IdentificationMatrix.js +1920 -0
- localcosmos_app_kit-0.2.1/app_kit/static/nature_guides/IdentificationMatrix_beta.js +1599 -0
- localcosmos_app_kit-0.2.1/app_kit/static/nature_guides/crosslink.svg +209 -0
- localcosmos_app_kit-0.2.1/app_kit/static/nature_guides/jquery-searchfornode-autocomplete.js +59 -0
- localcosmos_app_kit-0.2.1/app_kit/static/noimage.png +0 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/AssertionError.d.ts +23 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/AssertionError.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/AssertionError.js +101 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Collection.d.ts +194 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Collection.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Collection.js +329 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/CollectionEventType.d.ts +6 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/CollectionEventType.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/CollectionEventType.js +21 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/DataTile.d.ts +114 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/DataTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/DataTile.js +191 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Disposable.d.ts +26 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Disposable.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Disposable.js +36 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Feature.d.ts +225 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Feature.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Feature.js +334 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Geolocation.d.ts +254 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Geolocation.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Geolocation.js +417 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Image.d.ts +103 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Image.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Image.js +225 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageBase.d.ts +65 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageBase.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageBase.js +98 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageCanvas.d.ts +60 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageCanvas.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageCanvas.js +92 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageState.d.ts +9 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageState.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageState.js +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageTile.d.ts +70 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ImageTile.js +188 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Kinetic.d.ts +71 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Kinetic.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Kinetic.js +126 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/LICENSE.md +25 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Map.d.ts +852 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Map.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Map.js +1840 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEvent.d.ts +64 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEvent.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEvent.js +115 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEventHandler.d.ts +140 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEventHandler.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEventHandler.js +414 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEventType.d.ts +20 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEventType.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapBrowserEventType.js +59 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapEvent.d.ts +28 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapEvent.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapEvent.js +36 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapEventType.d.ts +13 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapEventType.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapEventType.js +47 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapProperty.d.ts +8 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapProperty.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/MapProperty.js +13 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Object.d.ts +178 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Object.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Object.js +265 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ObjectEventType.d.ts +6 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ObjectEventType.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ObjectEventType.js +19 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Observable.d.ts +96 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Observable.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Observable.js +191 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Overlay.d.ts +339 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Overlay.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Overlay.js +582 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/README.md +118 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Tile.d.ts +243 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Tile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/Tile.js +322 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileCache.d.ts +16 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileCache.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileCache.js +48 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileQueue.d.ts +59 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileQueue.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileQueue.js +164 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileRange.d.ts +85 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileRange.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileRange.js +153 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileState.d.ts +9 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileState.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/TileState.js +18 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/VectorRenderTile.d.ts +121 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/VectorRenderTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/VectorRenderTile.js +166 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/VectorTile.d.ts +89 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/VectorTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/VectorTile.js +138 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/View.d.ts +1070 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/View.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/View.js +2153 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ViewHint.d.ts +6 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ViewHint.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ViewHint.js +11 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ViewProperty.d.ts +7 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ViewProperty.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ViewProperty.js +12 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/array.d.ts +97 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/array.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/array.js +213 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/asserts.d.ts +6 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/asserts.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/asserts.js +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/centerconstraint.d.ts +18 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/centerconstraint.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/centerconstraint.js +79 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/color.d.ts +44 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/color.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/color.js +226 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/colorlike.d.ts +27 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/colorlike.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/colorlike.js +28 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/console.d.ts +13 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/console.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/console.js +54 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Attribution.d.ts +198 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Attribution.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Attribution.js +335 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Control.d.ts +114 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Control.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Control.js +161 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/FullScreen.d.ts +191 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/FullScreen.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/FullScreen.js +396 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/MousePosition.d.ts +183 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/MousePosition.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/MousePosition.js +308 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/OverviewMap.d.ts +253 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/OverviewMap.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/OverviewMap.js +679 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Rotate.d.ts +105 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Rotate.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Rotate.js +182 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ScaleLine.d.ts +235 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ScaleLine.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ScaleLine.js +482 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Zoom.d.ts +94 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Zoom.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/Zoom.js +160 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ZoomSlider.d.ts +174 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ZoomSlider.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ZoomSlider.js +388 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ZoomToExtent.d.ts +66 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ZoomToExtent.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/ZoomToExtent.js +94 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/defaults.d.ts +60 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/defaults.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control/defaults.js +60 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control.d.ts +12 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/control.js +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/coordinate.d.ts +265 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/coordinate.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/coordinate.js +438 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/css.d.ts +88 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/css.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/css.js +116 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/dist/ol.js +4 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/dist/ol.js.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/dom.d.ts +58 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/dom.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/dom.js +149 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/easing.d.ts +41 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/easing.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/easing.js +58 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/Event.d.ts +60 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/Event.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/Event.js +77 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/EventType.d.ts +21 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/EventType.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/EventType.js +39 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/KeyCode.d.ts +8 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/KeyCode.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/KeyCode.js +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/Target.d.ts +83 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/Target.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/Target.js +188 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/condition.d.ts +53 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/condition.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events/condition.js +328 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events.d.ts +99 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/events.js +105 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/extent/Relationship.d.ts +10 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/extent/Relationship.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/extent/Relationship.js +16 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/extent.d.ts +387 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/extent.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/extent.js +918 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/featureloader.d.ts +90 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/featureloader.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/featureloader.js +178 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/EsriJSON.d.ts +92 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/EsriJSON.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/EsriJSON.js +571 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/Feature.d.ts +230 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/Feature.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/Feature.js +299 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML.d.ts +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML.js +40 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML2.d.ts +238 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML2.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML2.js +784 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML3.d.ts +425 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML3.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML3.js +1283 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML32.d.ts +10 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML32.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GML32.js +356 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GMLBase.d.ts +350 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GMLBase.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GMLBase.js +685 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GPX.d.ts +75 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GPX.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GPX.js +939 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GeoJSON.d.ts +126 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GeoJSON.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/GeoJSON.js +564 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/IGC.d.ts +44 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/IGC.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/IGC.js +174 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/IIIFInfo.d.ts +132 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/IIIFInfo.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/IIIFInfo.js +484 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/JSONFeature.d.ts +120 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/JSONFeature.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/JSONFeature.js +209 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/KML.d.ts +257 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/KML.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/KML.js +3352 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/MVT.d.ts +125 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/MVT.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/MVT.js +433 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/OSMXML.d.ts +16 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/OSMXML.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/OSMXML.js +196 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/OWS.d.ts +5 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/OWS.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/OWS.js +325 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/Polyline.d.ts +162 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/Polyline.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/Polyline.js +351 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/TextFeature.d.ts +112 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/TextFeature.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/TextFeature.js +206 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/TopoJSON.d.ts +103 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/TopoJSON.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/TopoJSON.js +446 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WFS.d.ts +314 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WFS.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WFS.js +1369 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WKB.d.ts +105 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WKB.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WKB.js +924 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WKT.d.ts +51 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WKT.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WKT.js +868 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMSCapabilities.d.ts +15 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMSCapabilities.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMSCapabilities.js +625 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMSGetFeatureInfo.d.ts +52 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMSGetFeatureInfo.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMSGetFeatureInfo.js +165 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMTSCapabilities.d.ts +16 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMTSCapabilities.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/WMTSCapabilities.js +380 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/XML.d.ts +29 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/XML.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/XML.js +53 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/XMLFeature.d.ts +141 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/XMLFeature.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/XMLFeature.js +279 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/And.d.ts +15 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/And.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/And.js +21 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Bbox.d.ts +31 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Bbox.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Bbox.js +45 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Comparison.d.ts +21 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Comparison.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Comparison.js +28 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/ComparisonBinary.d.ts +27 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/ComparisonBinary.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/ComparisonBinary.js +35 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Contains.d.ts +18 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Contains.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Contains.js +24 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/DWithin.d.ts +30 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/DWithin.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/DWithin.js +38 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Disjoint.d.ts +18 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Disjoint.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Disjoint.js +24 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/During.d.ts +24 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/During.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/During.js +32 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/EqualTo.d.ts +16 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/EqualTo.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/EqualTo.js +22 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Filter.d.ts +28 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Filter.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Filter.js +33 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/GreaterThan.d.ts +15 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/GreaterThan.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/GreaterThan.js +21 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/GreaterThanOrEqualTo.d.ts +15 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/GreaterThanOrEqualTo.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/GreaterThanOrEqualTo.js +21 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Intersects.d.ts +18 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Intersects.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Intersects.js +24 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsBetween.d.ts +24 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsBetween.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsBetween.js +32 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsLike.d.ts +43 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsLike.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsLike.js +61 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsNull.d.ts +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsNull.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/IsNull.js +20 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LessThan.d.ts +15 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LessThan.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LessThan.js +21 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LessThanOrEqualTo.d.ts +15 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LessThanOrEqualTo.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LessThanOrEqualTo.js +21 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LogicalNary.d.ts +21 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LogicalNary.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/LogicalNary.js +30 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Not.d.ts +18 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Not.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Not.js +25 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/NotEqualTo.d.ts +16 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/NotEqualTo.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/NotEqualTo.js +22 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Or.d.ts +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Or.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Or.js +20 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/ResourceId.d.ts +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/ResourceId.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/ResourceId.js +25 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Spatial.d.ts +33 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Spatial.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Spatial.js +42 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Within.d.ts +18 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Within.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter/Within.js +24 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter.d.ts +223 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/filter.js +301 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/readme.md +133 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/xlink.d.ts +6 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/xlink.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/xlink.js +17 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/xsd.d.ts +71 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/xsd.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format/xsd.js +151 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format.d.ts +18 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/format.js +21 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/functions.d.ts +33 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/functions.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/functions.js +81 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Circle.d.ts +65 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Circle.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Circle.js +281 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Geometry.d.ts +205 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Geometry.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Geometry.js +347 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/GeometryCollection.d.ts +72 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/GeometryCollection.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/GeometryCollection.js +343 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/LineString.d.ts +116 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/LineString.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/LineString.js +311 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/LinearRing.d.ts +59 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/LinearRing.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/LinearRing.js +188 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiLineString.d.ts +110 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiLineString.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiLineString.js +350 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiPoint.d.ts +56 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiPoint.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiPoint.js +203 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiPolygon.d.ts +132 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiPolygon.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/MultiPolygon.js +471 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Point.d.ts +28 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Point.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Point.js +119 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Polygon.d.ts +188 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Polygon.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/Polygon.js +509 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/SimpleGeometry.d.ts +101 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/SimpleGeometry.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/SimpleGeometry.js +349 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/area.d.ts +28 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/area.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/area.js +58 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/center.d.ts +9 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/center.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/center.js +28 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/closest.d.ts +75 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/closest.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/closest.js +336 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/contains.d.ts +40 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/contains.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/contains.js +145 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/deflate.d.ts +38 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/deflate.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/deflate.js +105 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/flip.d.ts +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/flip.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/flip.js +33 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/geodesic.d.ts +32 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/geodesic.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/geodesic.js +184 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/inflate.d.ts +32 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/inflate.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/inflate.js +95 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/interiorpoint.d.ts +25 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/interiorpoint.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/interiorpoint.js +110 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/interpolate.d.ts +33 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/interpolate.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/interpolate.js +206 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/intersectsextent.d.ts +46 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/intersectsextent.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/intersectsextent.js +232 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/length.d.ts +20 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/length.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/length.js +39 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/linechunk.d.ts +11 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/linechunk.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/linechunk.js +57 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/orient.d.ts +76 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/orient.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/orient.js +206 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/reverse.d.ts +11 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/reverse.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/reverse.js +21 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/segments.d.ts +18 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/segments.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/segments.js +31 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/simplify.d.ts +115 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/simplify.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/simplify.js +476 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/straightchunk.d.ts +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/straightchunk.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/straightchunk.js +50 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/textpath.d.ts +22 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/textpath.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/textpath.js +154 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/topology.d.ts +10 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/topology.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/topology.js +24 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/transform.d.ts +49 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/transform.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom/flat/transform.js +149 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom.d.ts +12 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/geom.js +15 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/has.d.ts +49 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/has.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/has.js +88 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/index.d.ts +27 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/index.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/index.js +31 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DoubleClickZoom.d.ts +39 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DoubleClickZoom.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DoubleClickZoom.js +64 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragAndDrop.d.ts +169 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragAndDrop.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragAndDrop.js +324 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragBox.d.ts +153 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragBox.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragBox.js +274 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragPan.d.ts +67 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragPan.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragPan.js +188 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragRotate.d.ts +54 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragRotate.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragRotate.js +124 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragRotateAndZoom.d.ts +66 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragRotateAndZoom.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragRotateAndZoom.js +136 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragZoom.d.ts +69 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragZoom.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/DragZoom.js +84 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Draw.d.ts +635 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Draw.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Draw.js +1962 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Extent.d.ts +201 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Extent.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Extent.js +549 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Interaction.d.ts +121 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Interaction.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Interaction.js +170 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/KeyboardPan.d.ts +73 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/KeyboardPan.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/KeyboardPan.js +124 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/KeyboardZoom.d.ts +63 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/KeyboardZoom.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/KeyboardZoom.js +89 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Link.d.ts +128 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Link.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Link.js +389 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Modify.d.ts +523 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Modify.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Modify.js +1657 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/MouseWheelZoom.d.ts +166 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/MouseWheelZoom.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/MouseWheelZoom.js +296 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/PinchRotate.d.ts +62 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/PinchRotate.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/PinchRotate.js +159 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/PinchZoom.d.ts +45 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/PinchZoom.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/PinchZoom.js +135 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Pointer.d.ts +146 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Pointer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Pointer.js +206 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Property.d.ts +5 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Property.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Property.js +10 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Select.d.ts +361 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Select.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Select.js +590 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Snap.d.ts +240 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Snap.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Snap.js +648 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Translate.d.ts +243 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Translate.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/Translate.js +419 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/defaults.d.ts +101 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/defaults.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction/defaults.js +148 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction.d.ts +23 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/interaction.js +25 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Base.d.ts +312 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Base.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Base.js +397 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseImage.d.ts +112 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseImage.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseImage.js +57 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseTile.d.ts +177 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseTile.js +160 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseVector.d.ts +226 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseVector.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/BaseVector.js +304 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Graticule.d.ts +592 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Graticule.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Graticule.js +1258 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Group.d.ts +169 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Group.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Group.js +348 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Heatmap.d.ts +150 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Heatmap.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Heatmap.js +334 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Image.d.ts +23 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Image.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Image.js +51 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Layer.d.ts +359 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Layer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Layer.js +504 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/MapboxVector.d.ts +272 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/MapboxVector.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/MapboxVector.js +199 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Property.d.ts +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Property.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Property.js +19 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Tile.d.ts +23 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Tile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Tile.js +32 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/TileProperty.d.ts +6 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/TileProperty.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/TileProperty.js +11 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Vector.d.ts +25 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Vector.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/Vector.js +35 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/VectorImage.d.ts +168 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/VectorImage.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/VectorImage.js +95 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/VectorTile.d.ts +284 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/VectorTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/VectorTile.js +236 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/WebGLPoints.d.ts +163 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/WebGLPoints.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/WebGLPoints.js +127 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/WebGLTile.d.ts +242 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/WebGLTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer/WebGLTile.js +528 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer.d.ts +13 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/layer.js +16 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/loadingstrategy.d.ts +25 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/loadingstrategy.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/loadingstrategy.js +74 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/math.d.ts +104 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/math.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/math.js +199 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/net.d.ts +46 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/net.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/net.js +150 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/obj.d.ts +15 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/obj.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/obj.js +26 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/ol.css +345 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/package.json +41 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/pixel.d.ts +16 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/pixel.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/pixel.js +12 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/pointer/EventType.d.ts +12 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/pointer/EventType.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/pointer/EventType.js +18 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/Projection.d.ts +245 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/Projection.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/Projection.js +271 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/Units.d.ts +47 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/Units.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/Units.js +52 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/epsg3857.d.ts +54 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/epsg3857.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/epsg3857.js +133 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/epsg4326.d.ts +27 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/epsg4326.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/epsg4326.js +68 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/proj4.d.ts +53 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/proj4.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/proj4.js +158 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/projections.d.ts +17 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/projections.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/projections.js +37 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/transforms.d.ts +31 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/transforms.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj/transforms.js +68 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj.d.ts +321 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/proj.js +750 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Box.d.ts +55 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Box.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Box.js +132 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Event.d.ts +34 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Event.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Event.js +44 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/EventType.d.ts +11 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/EventType.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/EventType.js +57 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Feature.d.ts +187 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Feature.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/Feature.js +398 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/VectorContext.d.ts +103 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/VectorContext.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/VectorContext.js +115 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Builder.d.ts +162 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Builder.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Builder.js +651 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/BuilderGroup.d.ts +48 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/BuilderGroup.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/BuilderGroup.js +105 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Executor.d.ts +271 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Executor.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Executor.js +1256 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/ExecutorGroup.d.ts +114 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/ExecutorGroup.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/ExecutorGroup.js +424 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/ImageBuilder.d.ts +86 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/ImageBuilder.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/ImageBuilder.js +271 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Immediate.d.ts +331 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Immediate.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Immediate.js +1170 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Instruction.d.ts +34 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Instruction.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/Instruction.js +44 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/LineStringBuilder.d.ts +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/LineStringBuilder.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/LineStringBuilder.js +163 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/PolygonBuilder.d.ts +18 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/PolygonBuilder.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/PolygonBuilder.js +257 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/TextBuilder.d.ts +118 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/TextBuilder.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/TextBuilder.js +653 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/hitdetect.d.ts +28 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/hitdetect.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas/hitdetect.js +196 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas.d.ts +399 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/canvas.js +503 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/BatchRenderer.d.ts +92 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/BatchRenderer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/BatchRenderer.js +200 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/LineStringBatchRenderer.d.ts +27 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/LineStringBatchRenderer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/LineStringBatchRenderer.js +114 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/MixedGeometryBatch.d.ts +306 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/MixedGeometryBatch.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/MixedGeometryBatch.js +364 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/PointBatchRenderer.d.ts +26 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/PointBatchRenderer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/PointBatchRenderer.js +95 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/PolygonBatchRenderer.d.ts +25 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/PolygonBatchRenderer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/PolygonBatchRenderer.js +115 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/constants.d.ts +43 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/constants.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/constants.js +27 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/utils.d.ts +76 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/utils.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render/webgl/utils.js +351 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render.d.ts +119 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/render.js +141 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Composite.d.ts +29 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Composite.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Composite.js +154 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Layer.d.ts +118 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Layer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Layer.js +198 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Map.d.ts +104 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Map.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/Map.js +243 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/ImageLayer.d.ts +28 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/ImageLayer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/ImageLayer.js +266 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/Layer.d.ts +121 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/Layer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/Layer.js +325 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/TileLayer.d.ts +138 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/TileLayer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/TileLayer.js +770 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorImageLayer.d.ts +49 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorImageLayer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorImageLayer.js +226 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorLayer.d.ts +131 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorLayer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorLayer.js +794 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorTileLayer.d.ts +95 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorTileLayer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/canvas/VectorTileLayer.js +855 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/vector.d.ts +38 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/vector.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/vector.js +484 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/Layer.d.ts +140 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/Layer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/Layer.js +262 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/PointsLayer.d.ts +327 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/PointsLayer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/PointsLayer.js +766 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/TileLayer.d.ts +198 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/TileLayer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/TileLayer.js +911 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/VectorLayer.d.ts +142 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/VectorLayer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/VectorLayer.js +409 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/shaders.d.ts +43 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/shaders.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/renderer/webgl/shaders.js +198 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/DataTile.d.ts +156 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/DataTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/DataTile.js +496 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Image.d.ts +91 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Image.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Image.js +244 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Tile.d.ts +99 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Tile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Tile.js +364 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Triangulation.d.ts +121 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Triangulation.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/Triangulation.js +502 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/common.d.ts +10 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/common.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj/common.js +10 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj.d.ts +64 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/reproj.js +441 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/resolutionconstraint.d.ts +29 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/resolutionconstraint.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/resolutionconstraint.js +241 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/rotationconstraint.d.ts +25 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/rotationconstraint.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/rotationconstraint.js +84 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/size.d.ts +45 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/size.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/size.js +72 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/BingMaps.d.ts +256 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/BingMaps.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/BingMaps.js +318 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/CartoDB.d.ts +184 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/CartoDB.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/CartoDB.js +203 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Cluster.d.ts +215 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Cluster.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Cluster.js +327 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/DataTile.d.ts +218 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/DataTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/DataTile.js +406 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/GeoTIFF.d.ts +333 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/GeoTIFF.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/GeoTIFF.js +990 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/IIIF.d.ts +113 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/IIIF.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/IIIF.js +354 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Image.d.ts +163 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Image.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Image.js +269 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageArcGISRest.d.ts +213 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageArcGISRest.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageArcGISRest.js +320 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageCanvas.d.ts +126 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageCanvas.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageCanvas.js +139 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageMapGuide.d.ts +197 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageMapGuide.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageMapGuide.js +288 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageStatic.d.ts +109 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageStatic.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageStatic.js +174 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageWMS.d.ts +251 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageWMS.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ImageWMS.js +498 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OGCMapTile.d.ts +119 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OGCMapTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OGCMapTile.js +95 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OGCVectorTile.d.ts +123 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OGCVectorTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OGCVectorTile.js +101 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OSM.d.ts +112 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OSM.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/OSM.js +93 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Raster.d.ts +416 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Raster.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Raster.js +1026 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Source.d.ts +203 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Source.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Source.js +245 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Stamen.d.ts +94 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Stamen.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Stamen.js +157 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Tile.d.ts +288 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Tile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Tile.js +398 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileArcGISRest.d.ts +199 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileArcGISRest.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileArcGISRest.js +254 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileDebug.d.ts +53 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileDebug.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileDebug.js +71 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileEventType.d.ts +8 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileEventType.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileEventType.js +36 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileImage.d.ts +252 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileImage.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileImage.js +443 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileJSON.d.ts +217 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileJSON.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileJSON.js +212 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileWMS.d.ts +277 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileWMS.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/TileWMS.js +470 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/UTFGrid.d.ts +248 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/UTFGrid.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/UTFGrid.js +513 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/UrlTile.d.ts +192 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/UrlTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/UrlTile.js +231 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Vector.d.ts +635 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Vector.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Vector.js +1124 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/VectorEventType.d.ts +12 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/VectorEventType.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/VectorEventType.js +62 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/VectorTile.d.ts +277 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/VectorTile.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/VectorTile.js +514 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/WMTS.d.ts +303 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/WMTS.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/WMTS.js +590 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/XYZ.d.ts +189 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/XYZ.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/XYZ.js +129 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Zoomify.d.ts +157 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Zoomify.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/Zoomify.js +284 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/common.d.ts +9 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/common.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/common.js +9 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ogcTileUtil.d.ts +177 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ogcTileUtil.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/ogcTileUtil.js +405 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/wms.d.ts +17 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/wms.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source/wms.js +19 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source.d.ts +43 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/source.js +70 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/sphere.d.ts +81 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/sphere.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/sphere.js +263 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/string.d.ts +18 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/string.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/string.js +44 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/LRUCache.d.ts +158 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/LRUCache.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/LRUCache.js +286 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/LinkedList.d.ts +130 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/LinkedList.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/LinkedList.js +259 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/PriorityQueue.d.ts +124 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/PriorityQueue.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/PriorityQueue.js +262 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/RBush.d.ts +130 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/RBush.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/structs/RBush.js +220 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Circle.d.ts +78 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Circle.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Circle.js +82 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Fill.d.ts +54 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Fill.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Fill.js +63 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Icon.d.ts +308 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Icon.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Icon.js +571 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/IconImage.d.ts +133 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/IconImage.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/IconImage.js +305 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/IconImageCache.d.ts +63 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/IconImageCache.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/IconImageCache.js +116 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Image.d.ts +229 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Image.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Image.js +298 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/RegularShape.d.ts +292 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/RegularShape.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/RegularShape.js +624 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Stroke.d.ts +195 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Stroke.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Stroke.js +228 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Style.d.ts +392 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Style.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Style.js +566 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Text.d.ts +513 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Text.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/Text.js +613 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/expressions.d.ts +247 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/expressions.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/expressions.js +1039 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/flat.d.ts +604 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/flat.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/flat.js +344 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/literal.d.ts +69 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/literal.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style/literal.js +42 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style.d.ts +10 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/style.js +13 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilecoord.d.ts +59 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilecoord.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilecoord.js +96 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/TileGrid.d.ts +357 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/TileGrid.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/TileGrid.js +682 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/WMTS.d.ts +128 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/WMTS.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/WMTS.js +188 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/common.d.ts +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/common.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid/common.js +15 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid.d.ts +85 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tilegrid.js +169 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tileurlfunction.d.ts +30 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tileurlfunction.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/tileurlfunction.js +122 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/transform.d.ts +141 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/transform.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/transform.js +289 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/uri.d.ts +13 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/uri.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/uri.js +27 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/util.d.ts +23 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/util.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/util.js +36 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/vec/mat4.d.ts +14 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/vec/mat4.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/vec/mat4.js +25 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/Buffer.d.ts +94 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/Buffer.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/Buffer.js +140 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/ContextEventType.d.ts +6 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/ContextEventType.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/ContextEventType.js +11 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/Helper.d.ts +553 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/Helper.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/Helper.js +1107 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/PaletteTexture.d.ts +24 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/PaletteTexture.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/PaletteTexture.js +50 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/PostProcessingPass.d.ts +163 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/PostProcessingPass.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/PostProcessingPass.js +404 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/RenderTarget.d.ts +94 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/RenderTarget.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/RenderTarget.js +187 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/ShaderBuilder.d.ts +257 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/ShaderBuilder.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/ShaderBuilder.js +592 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/TileTexture.d.ts +103 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/TileTexture.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl/TileTexture.js +457 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl.d.ts +73 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/webgl.js +132 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/worker/webgl.d.ts +2 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/worker/webgl.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/worker/webgl.js +8 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/xml.d.ts +304 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/xml.d.ts.map +1 -0
- localcosmos_app_kit-0.2.1/app_kit/static/openlayers/v7.3.0/xml.js +572 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/add_existing_generic_content.html +38 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/add_feature_content.html +5 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/app_card.html +71 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/app_limit_reached.html +17 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/build_errors.html +8 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/build_warnings.html +8 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/change_generic_content_status.html +31 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/component_card.html +42 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/content_image_form.html +5 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/content_image_with_text_form.html +3 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/create_generic_content.html +95 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/delete_app_language.html +12 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/delete_content_image.html +1 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/delete_localized_content_image.html +22 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/edit_generic_content_name.html +29 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/form_extended_with_content_image.html +18 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/get_content_image_suggestions.html +28 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/get_translation.html +16 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/localized_content_image_form.html +41 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/manage_app_languages.html +37 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/manage_feature.html +50 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/mockbutton.html +20 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/options_form.html +21 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/reload_appbar.html +7 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/remove_app_generic_content.html +7 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/tag_any_element.html +33 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/tags.html +5 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/translate_app_pagination.html +21 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/upload_theme_image.html +4 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/ajax/zip_import.html +149 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/base.html +393 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/build_app.html +341 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/content_images.html +8 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/home.html +12 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/legal/legal_notice.html +22 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/legal/privacy_statement.html +192 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/list_manage_apps.html +35 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/list_manage_generic_content.html +30 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/manage_app.html +86 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/manage_app_design.html +25 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/manage_generic_content.html +120 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/snippets/ckeditor_js_snippet.html +43 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/start_new_app.html +32 -0
- localcosmos_app_kit-0.2.1/app_kit/templates/app_kit/translate_app.html +211 -0
- localcosmos_app_kit-0.2.1/app_kit/templatetags/__init__.py +0 -0
- localcosmos_app_kit-0.2.1/app_kit/templatetags/app_tags.py +269 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/frontends_for_testing/InvalidMountain/settings.json +24 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/frontends_for_testing/InvalidMountain.zip +0 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/frontends_for_testing/Mountain/settings.json +24 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/frontends_for_testing/Mountain.zip +0 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/images/Leaf-large.jpg +0 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/images/Leaf.jpg +0 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/images/app-background.jpg +0 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/images/localcosmos-logo.svg +1162 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/images/test-image-2560-1440.jpg +0 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/ipa_for_tests/TestApp.ipa +0 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/TESTS_ROOT/templates/neobiota.html +4 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/cases.py +87 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/common.py +169 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/mixins.py +618 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/test_forms.py +730 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/test_models.py +1465 -0
- localcosmos_app_kit-0.2.1/app_kit/tests/test_views.py +2622 -0
- localcosmos_app_kit-0.2.1/app_kit/urls.py +17 -0
- localcosmos_app_kit-0.2.1/app_kit/utils.py +76 -0
- localcosmos_app_kit-0.2.1/app_kit/validators.py +20 -0
- localcosmos_app_kit-0.2.1/app_kit/view_mixins.py +51 -0
- localcosmos_app_kit-0.2.1/app_kit/views.py +1564 -0
- localcosmos_app_kit-0.2.1/localcosmos_app_kit.egg-info/PKG-INFO +34 -0
- localcosmos_app_kit-0.2.1/localcosmos_app_kit.egg-info/SOURCES.txt +1632 -0
- localcosmos_app_kit-0.2.1/localcosmos_app_kit.egg-info/dependency_links.txt +1 -0
- localcosmos_app_kit-0.2.1/localcosmos_app_kit.egg-info/requires.txt +14 -0
- localcosmos_app_kit-0.2.1/localcosmos_app_kit.egg-info/top_level.txt +1 -0
- localcosmos_app_kit-0.2.1/setup.cfg +4 -0
- localcosmos_app_kit-0.2.1/setup.py +44 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright © 2024 <Thomas Uher>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
recursive-include app_kit/tests *
|
|
2
|
+
recursive-include app_kit/static *
|
|
3
|
+
recursive-include app_kit/templates *
|
|
4
|
+
recursive-include app_kit/locale *
|
|
5
|
+
recursive-include app_kit/features/backbonetaxonomy/templates *
|
|
6
|
+
recursive-include app_kit/features/backbonetaxonomy/tests *
|
|
7
|
+
recursive-include app_kit/features/buttonmatrix/templates *
|
|
8
|
+
recursive-include app_kit/features/frontend/templates *
|
|
9
|
+
recursive-include app_kit/features/frontend/tests *
|
|
10
|
+
recursive-include app_kit/features/generic_forms/templates *
|
|
11
|
+
recursive-include app_kit/features/generic_forms/tests *
|
|
12
|
+
recursive-include app_kit/features/generic_forms/static *
|
|
13
|
+
recursive-include app_kit/features/glossary/templates *
|
|
14
|
+
recursive-include app_kit/features/glossary/tests *
|
|
15
|
+
recursive-include app_kit/features/maps/templates *
|
|
16
|
+
recursive-include app_kit/features/maps/tests *
|
|
17
|
+
recursive-include app_kit/features/nature_guides/templates *
|
|
18
|
+
recursive-include app_kit/features/nature_guides/tests *
|
|
19
|
+
recursive-include app_kit/features/taxon_profiles/templates *
|
|
20
|
+
recursive-include app_kit/features/taxon_profiles/tests *
|
|
21
|
+
recursive-include app_kit/app_kit_api/tests *
|
|
22
|
+
recursive-include app_kit/multi_tenancy/templates *
|
|
23
|
+
|
|
24
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: localcosmos_app_kit
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: LocalCosmos App Kit. Web Portal to build Android and iOS apps
|
|
5
|
+
Home-page: https://github.com/localcosmos/app-kit
|
|
6
|
+
Author: Thomas Uher
|
|
7
|
+
Author-email: thomas.uher@sisol-systems.com
|
|
8
|
+
License: The MIT License
|
|
9
|
+
Keywords: django,localcosmos,localcosmos server,biodiversity
|
|
10
|
+
Platform: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENCE
|
|
17
|
+
Requires-Dist: localcosmos-server
|
|
18
|
+
Requires-Dist: localcosmos-cordova-builder
|
|
19
|
+
Requires-Dist: localcosmos-app-kit-taxonomy
|
|
20
|
+
Requires-Dist: django-tenants==3.4.7
|
|
21
|
+
Requires-Dist: django-cleanup==6.0.0
|
|
22
|
+
Requires-Dist: django-ipware==4.0.2
|
|
23
|
+
Requires-Dist: django-filter==22.1
|
|
24
|
+
Requires-Dist: lxml
|
|
25
|
+
Requires-Dist: xlrd==2.0.1
|
|
26
|
+
Requires-Dist: openpyxl==3.0.10
|
|
27
|
+
Requires-Dist: deepl
|
|
28
|
+
Requires-Dist: opencv-python
|
|
29
|
+
Requires-Dist: opencv-python-headless
|
|
30
|
+
Requires-Dist: unidecode
|
|
31
|
+
|
|
32
|
+
# App Kit
|
|
33
|
+
|
|
34
|
+
Build apps for web, Android and iOS. Supports identification keys, observation forms, maps, taxonomy and more
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.0'
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
from django.conf import settings
|
|
2
|
+
from django.urls import include, path
|
|
3
|
+
from . import views
|
|
4
|
+
|
|
5
|
+
from localcosmos_server import generic_views
|
|
6
|
+
|
|
7
|
+
urlpatterns = [
|
|
8
|
+
# features
|
|
9
|
+
#path('', include('app_kit.features.buttonmatrix.urls')),
|
|
10
|
+
path('', include('app_kit.features.backbonetaxonomy.urls')),
|
|
11
|
+
path('', include('taxonomy.urls')),
|
|
12
|
+
path('template-content/', include('localcosmos_server.template_content.urls')),
|
|
13
|
+
path('observation-forms/', include('app_kit.features.generic_forms.urls')),
|
|
14
|
+
path('taxon-profiles/', include('app_kit.features.taxon_profiles.urls')),
|
|
15
|
+
path('nature-guides/', include('app_kit.features.nature_guides.urls')),
|
|
16
|
+
path('custom-taxonomy/', include('taxonomy.sources.custom.urls')),
|
|
17
|
+
path('glossary/', include('app_kit.features.glossary.urls')),
|
|
18
|
+
path('maps/', include('app_kit.features.maps.urls')),
|
|
19
|
+
path('frontend/', include('app_kit.features.frontend.urls')),
|
|
20
|
+
# apps
|
|
21
|
+
# create apps
|
|
22
|
+
path('create-app/', views.CreateApp.as_view(), name='create_app'), # generic forms etc need app_to_feature
|
|
23
|
+
path('get-app-card/<int:meta_app_id>/', views.GetAppCard.as_view(), name='get_app_card'),
|
|
24
|
+
path('app-limit-reached/', views.AppLimitReached.as_view(), name='app_limit_reached'),
|
|
25
|
+
# delete app
|
|
26
|
+
path('delete-app/<int:pk>/', views.DeleteApp.as_view(), name='delete_app'),
|
|
27
|
+
# manage app
|
|
28
|
+
path('manage-app/<int:meta_app_id>/<int:content_type_id>/<int:object_id>/', views.ManageApp.as_view(),
|
|
29
|
+
name='manage_metaapp'),
|
|
30
|
+
# TRANSLATE APP
|
|
31
|
+
path('translate-app/<int:meta_app_id>/', views.TranslateApp.as_view(), name='translate_app'),
|
|
32
|
+
# BUILD APP
|
|
33
|
+
path('build-app/<int:meta_app_id>/', views.BuildApp.as_view(), name='build_app'),
|
|
34
|
+
path('build-app/<int:meta_app_id>/<str:action>/', views.BuildApp.as_view(), name='build_app'),
|
|
35
|
+
# NEW APP VERSION
|
|
36
|
+
path('start-new-app-version/<int:meta_app_id>/', views.StartNewAppVersion.as_view(),
|
|
37
|
+
name='start_new_app_version'),
|
|
38
|
+
# create generic app content
|
|
39
|
+
path('create-appcontent/<int:meta_app_id>/<int:content_type_id>/',
|
|
40
|
+
views.CreateGenericAppContent.as_view(), name='create_generic_appcontent'), # generic forms etc need app_to_feature
|
|
41
|
+
# generic content
|
|
42
|
+
path('add-existing-generic-content/<int:meta_app_id>/<int:content_type_id>/',
|
|
43
|
+
views.AddExistingGenericContent.as_view(), name='add_existing_generic_content'),
|
|
44
|
+
path('remove-app-generic-content/<int:pk>/', views.RemoveAppGenericContent.as_view(),
|
|
45
|
+
name='remove_app_generic_content'),
|
|
46
|
+
path('edit-generic-content-name/<int:content_type_id>/<int:generic_content_id>/',
|
|
47
|
+
views.EditGenericContentName.as_view(), name='edit_generic_content_name'),
|
|
48
|
+
path('generic-content-card/<int:meta_app_id>/<int:generic_content_link_id>/',
|
|
49
|
+
views.GetGenericContentCard.as_view(), name='generic_content_card'),
|
|
50
|
+
path('change_generic_content_status/<int:meta_app_id>/<int:generic_content_link_id>/',
|
|
51
|
+
views.ChangeGenericContentPublicationStatus.as_view(), name='change_generic_content_status'),
|
|
52
|
+
# app languages
|
|
53
|
+
path('manage-app-languages/<int:meta_app_id>/', views.ManageAppLanguages.as_view(),
|
|
54
|
+
name='manage_app_languages'),
|
|
55
|
+
path('manage-app-languages/<int:meta_app_id>/<str:action>/', views.ManageAppLanguages.as_view(),
|
|
56
|
+
name='add_app_languages'),
|
|
57
|
+
path('manage-app-languages/<int:meta_app_id>/<str:action>/<str:language>/',
|
|
58
|
+
views.ManageAppLanguages.as_view(), name='manage_app_languages'),
|
|
59
|
+
path('delete-app-language/<int:pk>/', views.DeleteAppLanguage.as_view(),
|
|
60
|
+
name='delete_app_language'), # POST
|
|
61
|
+
path('delete-app-language/<int:meta_app_id>/<str:language>/', views.DeleteAppLanguage.as_view(),
|
|
62
|
+
name='delete_app_language'), # GET
|
|
63
|
+
# taxonomic restriction
|
|
64
|
+
path('add_taxonomic_restriction/<int:content_type_id>/<int:object_id>/',
|
|
65
|
+
views.AddTaxonomicRestriction.as_view(), name='add_taxonomic_restriction'),
|
|
66
|
+
path('add_taxonomic_restriction/<int:content_type_id>/<int:object_id>/<str:typed>/',
|
|
67
|
+
views.AddTaxonomicRestriction.as_view(), name='add_taxonomic_restriction'),
|
|
68
|
+
path('remove_taxonomic_restriction/<int:pk>/',
|
|
69
|
+
views.RemoveTaxonomicRestriction.as_view(), name='remove_taxonomic_restriction'),
|
|
70
|
+
# app and content images
|
|
71
|
+
path('manage-content-image/<int:meta_app_id>/<int:content_type_id>/<int:object_id>/',
|
|
72
|
+
views.ManageContentImage.as_view(), name='manage_content_image'),
|
|
73
|
+
path('manage-content-image/<int:meta_app_id>/<int:content_type_id>/<int:object_id>/<str:image_type>/',
|
|
74
|
+
views.ManageContentImage.as_view(), name='manage_content_image'),
|
|
75
|
+
path('manage-content-image/<int:meta_app_id>/<int:content_image_id>/',
|
|
76
|
+
views.ManageContentImage.as_view(), name='manage_content_image'),
|
|
77
|
+
path('delete-content-image/<int:meta_app_id>/<int:pk>/',
|
|
78
|
+
views.DeleteContentImage.as_view(), name='delete_content_image'),
|
|
79
|
+
# content image with text
|
|
80
|
+
path('manage-content-image-with-text/<int:meta_app_id>/<int:content_type_id>/<int:object_id>/',
|
|
81
|
+
views.ManageContentImageWithText.as_view(), name='manage_content_image_with_text'),
|
|
82
|
+
path('manage-content-image-with-text/<int:meta_app_id>/<int:content_type_id>/<int:object_id>/<str:image_type>/',
|
|
83
|
+
views.ManageContentImageWithText.as_view(), name='manage_content_image_with_text'),
|
|
84
|
+
path('manage-content-image-with-text/<int:meta_app_id>/<int:content_image_id>/',
|
|
85
|
+
views.ManageContentImageWithText.as_view(), name='manage_content_image_with_text'),
|
|
86
|
+
# localized content image
|
|
87
|
+
path('manage-localized-content-image/<int:content_image_id>/<str:language_code>/',
|
|
88
|
+
views.ManageLocalizedContentImage.as_view(), name='manage_localized_content_image'),
|
|
89
|
+
path('delete-localized-content-image/<int:pk>/',
|
|
90
|
+
views.DeleteLocalizedContentImage.as_view(), name='delete_localized_content_image'),
|
|
91
|
+
# content image suggestions
|
|
92
|
+
path('manage-content-image-suggestions/<int:content_type_id>/<int:object_id>/',
|
|
93
|
+
views.ManageContentImageSuggestions.as_view(), name='manage_content_image_suggestions'),
|
|
94
|
+
path('manage-content-image-suggestions/<int:content_type_id>/',
|
|
95
|
+
views.ManageContentImageSuggestions.as_view(), name='manage_content_image_suggestions'),
|
|
96
|
+
# button placeholder
|
|
97
|
+
path('mockbutton/',
|
|
98
|
+
views.MockButton.as_view(), name='mockbutton'),
|
|
99
|
+
# anycluster, prefixed with app-kit to distinguish it from the API anycluster
|
|
100
|
+
#path('anycluster/', include('localcosmos_server.anycluster_schema_urls')),
|
|
101
|
+
# spreadsheet import
|
|
102
|
+
path('import-from-zip/<int:meta_app_id>/<int:content_type_id>/<int:generic_content_id>/',
|
|
103
|
+
views.ImportFromZip.as_view(), name='import_from_zip'),
|
|
104
|
+
# TAGS
|
|
105
|
+
path('tag-any-element/<int:content_type_id>/<int:object_id>/', views.TagAnyElement.as_view(), name='tag_any_element'),
|
|
106
|
+
path('reload-tags/<int:content_type_id>/<int:object_id>/', views.ReloadTags.as_view(), name='reload_tags'),
|
|
107
|
+
# object order
|
|
108
|
+
path('store-object-order/<int:content_type_id>/',
|
|
109
|
+
generic_views.StoreObjectOrder.as_view(), name='store_app_kit_object_order'),
|
|
110
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
default_app_config = 'app_kit.app_kit_api.apps.AppKitApiConfig'
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from django.contrib import admin
|
|
2
|
+
|
|
3
|
+
from .models import AppKitStatus, AppKitJobs
|
|
4
|
+
|
|
5
|
+
class AppKitStatusAdmin(admin.ModelAdmin):
|
|
6
|
+
pass
|
|
7
|
+
|
|
8
|
+
admin.site.register(AppKitStatus, AppKitStatusAdmin)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class AppKitJobsAdmin(admin.ModelAdmin):
|
|
12
|
+
pass
|
|
13
|
+
|
|
14
|
+
admin.site.register(AppKitJobs, AppKitJobsAdmin)
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Generated by Django 3.1 on 2020-08-27 12:24
|
|
2
|
+
|
|
3
|
+
from django.db import migrations, models
|
|
4
|
+
import django.db.models.deletion
|
|
5
|
+
import uuid
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class Migration(migrations.Migration):
|
|
9
|
+
|
|
10
|
+
initial = True
|
|
11
|
+
|
|
12
|
+
dependencies = [
|
|
13
|
+
('sites', '0002_alter_domain_unique'),
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
operations = [
|
|
17
|
+
migrations.CreateModel(
|
|
18
|
+
name='AppKitStatus',
|
|
19
|
+
fields=[
|
|
20
|
+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
21
|
+
('status', models.CharField(choices=[('live', 'live'), ('maintenance', 'maintenance')], default='live', max_length=50)),
|
|
22
|
+
('site', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to='sites.site')),
|
|
23
|
+
],
|
|
24
|
+
),
|
|
25
|
+
migrations.CreateModel(
|
|
26
|
+
name='AppKitJobs',
|
|
27
|
+
fields=[
|
|
28
|
+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
29
|
+
('uuid', models.UUIDField(default=uuid.uuid4, editable=False, unique=True)),
|
|
30
|
+
('meta_app_uuid', models.UUIDField()),
|
|
31
|
+
('meta_app_definition', models.JSONField()),
|
|
32
|
+
('app_version', models.IntegerField()),
|
|
33
|
+
('platform', models.CharField(choices=[('ios', 'iOS'), ('android', 'Android')], max_length=255)),
|
|
34
|
+
('job_type', models.CharField(choices=[('build', 'Build'), ('release', 'Release')], max_length=50)),
|
|
35
|
+
('parameters', models.JSONField(null=True)),
|
|
36
|
+
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
37
|
+
('last_modified', models.DateTimeField(auto_now=True)),
|
|
38
|
+
('assigned_to', models.CharField(max_length=100, null=True)),
|
|
39
|
+
('assigned_at', models.DateTimeField(null=True)),
|
|
40
|
+
('finished_at', models.DateTimeField(null=True)),
|
|
41
|
+
('job_status', models.CharField(choices=[('waiting_for_assignment', 'Waiting for assignment'), ('assigned', 'Assigned'), ('in_progress', 'Job in progress'), ('success', 'Success'), ('failed', 'Failed')], default='waiting_for_assignment', max_length=50)),
|
|
42
|
+
('job_result', models.JSONField(null=True)),
|
|
43
|
+
],
|
|
44
|
+
options={
|
|
45
|
+
'unique_together': {('meta_app_uuid', 'app_version', 'platform', 'job_type')},
|
|
46
|
+
},
|
|
47
|
+
),
|
|
48
|
+
]
|
|
File without changes
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
from django.db import models
|
|
2
|
+
from django.utils.translation import gettext_lazy as _
|
|
3
|
+
|
|
4
|
+
from django.contrib.sites.models import Site
|
|
5
|
+
|
|
6
|
+
import uuid
|
|
7
|
+
|
|
8
|
+
APP_KIT_STATUS = (
|
|
9
|
+
('live', _('live')),
|
|
10
|
+
('maintenance', _('maintenance')),
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
class AppKitStatus(models.Model):
|
|
14
|
+
site = models.OneToOneField(Site, on_delete=models.CASCADE)
|
|
15
|
+
status = models.CharField(max_length=50, choices=APP_KIT_STATUS, default='live')
|
|
16
|
+
|
|
17
|
+
def __str__(self):
|
|
18
|
+
return '{0}: {1}'.format(self.site, self.status)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
'''--------------------------------------------------------------------------------------------------------------
|
|
23
|
+
APP KIT JOBS
|
|
24
|
+
- builds that need specialized hardware, lice Apple
|
|
25
|
+
--------------------------------------------------------------------------------------------------------------'''
|
|
26
|
+
PLATFORM_CHOICES = (
|
|
27
|
+
('ios', 'iOS'),
|
|
28
|
+
('android', 'Android'),
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
JOB_TYPES = (
|
|
33
|
+
('build', 'Build'),
|
|
34
|
+
('release', 'Release'),
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
JOB_STATUS = (
|
|
39
|
+
('waiting_for_assignment', _('Waiting for assignment')),
|
|
40
|
+
('assigned', _('Assigned')),
|
|
41
|
+
('in_progress', _('Job in progress')),
|
|
42
|
+
('success', _('Success')),
|
|
43
|
+
('failed', _('Failed')),
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
class AppKitJobs(models.Model):
|
|
47
|
+
|
|
48
|
+
uuid = models.UUIDField(default=uuid.uuid4, unique=True, editable=False)
|
|
49
|
+
|
|
50
|
+
meta_app_uuid = models.UUIDField()
|
|
51
|
+
meta_app_definition = models.JSONField()
|
|
52
|
+
app_version = models.IntegerField()
|
|
53
|
+
platform = models.CharField(max_length=255, choices=PLATFORM_CHOICES)
|
|
54
|
+
|
|
55
|
+
job_type = models.CharField(max_length=50, choices=JOB_TYPES)
|
|
56
|
+
|
|
57
|
+
parameters = models.JSONField(null=True)
|
|
58
|
+
|
|
59
|
+
created_at = models.DateTimeField(auto_now_add=True)
|
|
60
|
+
last_modified = models.DateTimeField(auto_now=True)
|
|
61
|
+
|
|
62
|
+
# the physical machine that is doing this job
|
|
63
|
+
assigned_to = models.CharField(max_length=100, null=True)
|
|
64
|
+
|
|
65
|
+
assigned_at = models.DateTimeField(null=True)
|
|
66
|
+
finished_at = models.DateTimeField(null=True)
|
|
67
|
+
|
|
68
|
+
# job_status is used eg to give the user a feedback in the frontend
|
|
69
|
+
job_status = models.CharField(max_length=50, choices=JOB_STATUS, default='waiting_for_assignment')
|
|
70
|
+
job_result = models.JSONField(null=True)
|
|
71
|
+
|
|
72
|
+
def __str__(self):
|
|
73
|
+
name = self.meta_app_definition.get('name', str(self.uuid))
|
|
74
|
+
return '{0} - {1}'.format(name, self.job_type)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
class Meta:
|
|
78
|
+
unique_together = ('meta_app_uuid', 'app_version', 'platform', 'job_type')
|
|
79
|
+
|
|
80
|
+
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
from rest_framework import serializers
|
|
2
|
+
|
|
3
|
+
from django.utils import timezone
|
|
4
|
+
|
|
5
|
+
from .models import AppKitJobs
|
|
6
|
+
from rest_framework import exceptions
|
|
7
|
+
from rest_framework_simplejwt.serializers import TokenObtainPairSerializer
|
|
8
|
+
|
|
9
|
+
import json
|
|
10
|
+
|
|
11
|
+
class ApiTokenSerializer(TokenObtainPairSerializer):
|
|
12
|
+
|
|
13
|
+
def validate(self, attrs):
|
|
14
|
+
username = attrs[self.username_field]
|
|
15
|
+
|
|
16
|
+
if username != 'APPKITAPIUSER':
|
|
17
|
+
|
|
18
|
+
error_message = 'No valid account given'
|
|
19
|
+
|
|
20
|
+
raise exceptions.AuthenticationFailed(
|
|
21
|
+
error_message,
|
|
22
|
+
"invalid_account",
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
return super().validate(attrs)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class AppKitJobSerializer(serializers.ModelSerializer):
|
|
30
|
+
|
|
31
|
+
class Meta:
|
|
32
|
+
model = AppKitJobs
|
|
33
|
+
fields = '__all__'
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# assigned_to has to be set by the machine doing the job
|
|
37
|
+
class AppKitJobAssignSerializer(serializers.ModelSerializer):
|
|
38
|
+
|
|
39
|
+
def update(self, instance, validated_data):
|
|
40
|
+
instance.assigned_at = timezone.now()
|
|
41
|
+
instance = super().update(instance, validated_data)
|
|
42
|
+
return instance
|
|
43
|
+
|
|
44
|
+
class Meta:
|
|
45
|
+
model = AppKitJobs
|
|
46
|
+
fields = ('pk','assigned_to', 'job_status')
|
|
47
|
+
extra_kwargs = {
|
|
48
|
+
'assigned_to' : {
|
|
49
|
+
'required' : True,
|
|
50
|
+
'trim_whitespace' : True,
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
class AppKitJobStatusSerializer(serializers.ModelSerializer):
|
|
56
|
+
|
|
57
|
+
class Meta:
|
|
58
|
+
model = AppKitJobs
|
|
59
|
+
fields = ('pk','job_status')
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
class AppKitJobCompletedSerializer(serializers.ModelSerializer):
|
|
64
|
+
|
|
65
|
+
ipa_file = serializers.FileField(required=False)
|
|
66
|
+
|
|
67
|
+
def update(self, instance, validated_data):
|
|
68
|
+
instance.finished_at = timezone.now()
|
|
69
|
+
instance = super().update(instance, validated_data)
|
|
70
|
+
return instance
|
|
71
|
+
|
|
72
|
+
def validate_job_result(self, value):
|
|
73
|
+
|
|
74
|
+
if type(value) == str:
|
|
75
|
+
value = json.loads(value)
|
|
76
|
+
|
|
77
|
+
if 'errors' not in value:
|
|
78
|
+
raise serializers.ValidationError('Incomplete JSON: key "errors" not in job_result. If there were no errors, add an empty list.')
|
|
79
|
+
|
|
80
|
+
if 'warnings' not in value:
|
|
81
|
+
raise serializers.ValidationError('Incomplete JSON: key "warnings" not in job_result. If there were no warnings, add an empty list.')
|
|
82
|
+
|
|
83
|
+
if 'success' not in value:
|
|
84
|
+
raise serializers.ValidationError('Incomplete JSON: key "success" not in job_result.')
|
|
85
|
+
|
|
86
|
+
elif type(value['success']) != bool:
|
|
87
|
+
raise serializers.ValidationError('Invalid JSON: key "success" has to be of type bool.')
|
|
88
|
+
|
|
89
|
+
return value
|
|
90
|
+
|
|
91
|
+
def validate(self, data):
|
|
92
|
+
"""
|
|
93
|
+
if the job type was "build" and the platform "ios" a ipa file is required
|
|
94
|
+
"""
|
|
95
|
+
|
|
96
|
+
if self.instance and self.instance.platform == 'ios' and self.instance.job_type == 'build':
|
|
97
|
+
if data.get('job_result', None) and data['job_result'].get('success', False) == True:
|
|
98
|
+
if not data.get('ipa_file', None):
|
|
99
|
+
raise serializers.ValidationError({'ipa_file': ['You need to upload an .ipa file for successful ios build jobs']})
|
|
100
|
+
return data
|
|
101
|
+
|
|
102
|
+
class Meta:
|
|
103
|
+
model = AppKitJobs
|
|
104
|
+
fields = ('pk', 'job_result', 'ipa_file')
|
|
105
|
+
extra_kwargs = {
|
|
106
|
+
'job_result' : {
|
|
107
|
+
'required' : True,
|
|
108
|
+
}
|
|
109
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
from django.conf import settings
|
|
2
|
+
|
|
3
|
+
from localcosmos_server.models import LocalcosmosUser
|
|
4
|
+
|
|
5
|
+
from app_kit.app_kit_api.models import AppKitJobs
|
|
6
|
+
|
|
7
|
+
from localcosmos_cordova_builder.MetaAppDefinition import MetaAppDefinition
|
|
8
|
+
|
|
9
|
+
class WithAppKitApiUser:
|
|
10
|
+
|
|
11
|
+
def setUp(self):
|
|
12
|
+
super().setUp()
|
|
13
|
+
|
|
14
|
+
# create the app kit api user
|
|
15
|
+
self.username = settings.APP_KIT_APIUSER_USERNAME
|
|
16
|
+
self.password = settings.APP_KIT_APIUSER_PASSWORD
|
|
17
|
+
self.email = settings.APP_KIT_APIUSER_EMAIL = 'api@localcosmos.org'
|
|
18
|
+
|
|
19
|
+
self.app_kit_api_user = LocalcosmosUser.objects.create_user(self.username, self.email, self.password)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class WithAppKitJob:
|
|
24
|
+
|
|
25
|
+
def create_job(self, meta_app, platform, job_type):
|
|
26
|
+
|
|
27
|
+
meta_app_definition = MetaAppDefinition.meta_app_to_dict(meta_app)
|
|
28
|
+
|
|
29
|
+
job = AppKitJobs(
|
|
30
|
+
meta_app_uuid=meta_app.uuid,
|
|
31
|
+
meta_app_definition=meta_app_definition,
|
|
32
|
+
app_version=meta_app.current_version,
|
|
33
|
+
platform=platform,
|
|
34
|
+
job_type=job_type,
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
job.save()
|
|
38
|
+
|
|
39
|
+
return job
|