@kalisio/kdk 2.2.2 → 2.3.1
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.
- package/.eslintignore +1 -0
- package/.github/workflows/main.yaml +67 -0
- package/.gitmodules +3 -0
- package/README.md +1 -2
- package/core/api/hooks/hooks.query.js +15 -2
- package/core/api/marshall.js +35 -4
- package/core/client/api.js +1 -1
- package/core/client/components/KActivity.vue +73 -0
- package/core/client/components/KContent.vue +1 -1
- package/core/client/components/KSponsor.vue +2 -13
- package/core/client/components/account/KDeleteAccountManager.vue +1 -1
- package/core/client/components/account/KPasswordManager.vue +1 -1
- package/core/client/components/action/KAction.vue +294 -0
- package/core/client/components/action/KBugReportAction.vue +37 -0
- package/core/client/components/action/index.js +7 -0
- package/core/client/components/app/KAbout.vue +16 -63
- package/core/client/components/app/KPlatform.vue +1 -1
- package/core/client/components/app/KSettings.vue +14 -14
- package/core/client/components/app/KTour.vue +6 -8
- package/core/client/components/app/KWelcome.vue +1 -1
- package/core/client/components/app/index.js +4 -0
- package/core/client/components/chart/KDataTable.vue +40 -25
- package/core/client/components/chart/KTimeSeriesChart.vue +20 -12
- package/core/client/components/collection/KCard.vue +1 -1
- package/core/client/components/collection/KCardSection.vue +3 -2
- package/core/client/components/collection/KColumn.vue +1 -1
- package/core/client/components/collection/KFilter.vue +6 -1
- package/core/client/components/document/KDocument.vue +83 -0
- package/core/client/components/document/KHtml.vue +23 -0
- package/core/client/components/document/KMarkdown.vue +37 -0
- package/core/client/components/document/index.js +9 -0
- package/core/client/components/form/KForm.vue +6 -2
- package/core/client/components/form/KSelectField.vue +1 -1
- package/core/client/components/index.js +1 -4
- package/core/client/components/input/KOptionsChooser.vue +1 -1
- package/core/client/components/layout/KFab.vue +1 -1
- package/core/client/components/layout/KPage.vue +3 -2
- package/core/client/components/layout/KWindow.vue +1 -1
- package/core/client/components/media/KColorScale.vue +16 -6
- package/core/client/components/screen/KLoginScreen.vue +1 -1
- package/core/client/components/screen/KRegisterScreen.vue +1 -1
- package/core/client/components/team/KAddMember.vue +7 -7
- package/core/client/components/team/KGroupCard.vue +1 -1
- package/core/client/components/team/KMemberFilter.vue +1 -1
- package/core/client/components/team/KTagCard.vue +1 -1
- package/core/client/components/time/KRelativeTimeRanges.vue +16 -1
- package/core/client/components/time/KTimeControl.vue +1 -0
- package/core/client/components/tool/KExportTool.vue +1 -1
- package/core/client/composables/collection.js +1 -1
- package/core/client/composables/index.js +1 -0
- package/core/client/composables/layout.js +50 -0
- package/core/client/composables/session.js +6 -0
- package/core/client/filter.js +9 -6
- package/core/client/guards.js +29 -6
- package/core/client/i18n/core_en.json +4 -1
- package/core/client/i18n/core_fr.json +8 -5
- package/core/client/i18n.js +14 -0
- package/core/client/layout.js +25 -14
- package/core/client/mixins/mixin.base-activity.js +16 -0
- package/core/client/services/index.js +27 -26
- package/core/client/services/local-settings.service.js +2 -3
- package/core/client/units.js +6 -1
- package/core/client/utils/index.js +3 -0
- package/core/client/utils/utils.actions.js +93 -0
- package/core/client/utils/utils.colors.js +1 -1
- package/core/client/utils/utils.data.js +22 -0
- package/core/client/utils/utils.shapes.js +16 -6
- package/coverage/base.css +224 -0
- package/coverage/block-navigation.js +87 -0
- package/coverage/core/api/application.js.html +1870 -0
- package/coverage/core/api/authentication.js.html +742 -0
- package/coverage/core/api/db.js.html +778 -0
- package/coverage/core/api/hooks/hooks.authentication.js.html +313 -0
- package/coverage/core/api/hooks/hooks.authorisations.js.html +1243 -0
- package/coverage/core/api/hooks/hooks.groups.js.html +229 -0
- package/coverage/core/api/hooks/hooks.logger.js.html +163 -0
- package/coverage/core/api/hooks/hooks.model.js.html +955 -0
- package/coverage/core/api/hooks/hooks.organisations.js.html +541 -0
- package/coverage/core/api/hooks/hooks.push.js.html +253 -0
- package/coverage/core/api/hooks/hooks.query.js.html +862 -0
- package/coverage/core/api/hooks/hooks.schemas.js.html +304 -0
- package/coverage/core/api/hooks/hooks.service.js.html +319 -0
- package/coverage/core/api/hooks/hooks.storage.js.html +193 -0
- package/coverage/core/api/hooks/hooks.users.js.html +868 -0
- package/coverage/core/api/hooks/index.html +296 -0
- package/coverage/core/api/hooks/index.js.html +121 -0
- package/coverage/core/api/index.html +191 -0
- package/coverage/core/api/index.js.html +148 -0
- package/coverage/core/api/marshall.js.html +448 -0
- package/coverage/core/api/models/groups.model.mongodb.js.html +109 -0
- package/coverage/core/api/models/index.html +161 -0
- package/coverage/core/api/models/organisations.model.mongodb.js.html +94 -0
- package/coverage/core/api/models/tags.model.mongodb.js.html +115 -0
- package/coverage/core/api/models/users.model.mongodb.js.html +115 -0
- package/coverage/core/api/services/account/account.hooks.js.html +208 -0
- package/coverage/core/api/services/account/account.service.js.html +436 -0
- package/coverage/core/api/services/account/index.html +131 -0
- package/coverage/core/api/services/authorisations/authorisations.hooks.js.html +184 -0
- package/coverage/core/api/services/authorisations/authorisations.service.js.html +502 -0
- package/coverage/core/api/services/authorisations/index.html +131 -0
- package/coverage/core/api/services/databases/databases.hooks.js.html +193 -0
- package/coverage/core/api/services/databases/databases.service.js.html +100 -0
- package/coverage/core/api/services/databases/index.html +131 -0
- package/coverage/core/api/services/groups/groups.hooks.js.html +178 -0
- package/coverage/core/api/services/groups/index.html +116 -0
- package/coverage/core/api/services/import-export/import-export.hooks.js.html +184 -0
- package/coverage/core/api/services/import-export/import-export.service.js.html +118 -0
- package/coverage/core/api/services/import-export/index.html +131 -0
- package/coverage/core/api/services/index.html +116 -0
- package/coverage/core/api/services/index.js.html +499 -0
- package/coverage/core/api/services/mailer/index.html +131 -0
- package/coverage/core/api/services/mailer/mailer.hooks.js.html +190 -0
- package/coverage/core/api/services/mailer/mailer.service.js.html +118 -0
- package/coverage/core/api/services/organisations/index.html +131 -0
- package/coverage/core/api/services/organisations/organisations.hooks.js.html +178 -0
- package/coverage/core/api/services/organisations/organisations.service.js.html +343 -0
- package/coverage/core/api/services/push/index.html +131 -0
- package/coverage/core/api/services/push/push.hooks.js.html +190 -0
- package/coverage/core/api/services/push/push.service.js.html +121 -0
- package/coverage/core/api/services/storage/index.html +131 -0
- package/coverage/core/api/services/storage/storage.hooks.js.html +190 -0
- package/coverage/core/api/services/storage/storage.service.js.html +172 -0
- package/coverage/core/api/services/tags/index.html +116 -0
- package/coverage/core/api/services/tags/tags.hooks.js.html +178 -0
- package/coverage/core/api/services/users/index.html +116 -0
- package/coverage/core/api/services/users/users.hooks.js.html +307 -0
- package/coverage/core/api/utils.js.html +118 -0
- package/coverage/core/common/errors.js.html +88 -0
- package/coverage/core/common/index.html +176 -0
- package/coverage/core/common/index.js.html +115 -0
- package/coverage/core/common/permissions.js.html +1048 -0
- package/coverage/core/common/schema.js.html +190 -0
- package/coverage/core/common/utils.js.html +220 -0
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +491 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/core/api/application.js.html +1870 -0
- package/coverage/lcov-report/core/api/authentication.js.html +742 -0
- package/coverage/lcov-report/core/api/db.js.html +778 -0
- package/coverage/lcov-report/core/api/hooks/hooks.authentication.js.html +313 -0
- package/coverage/lcov-report/core/api/hooks/hooks.authorisations.js.html +1243 -0
- package/coverage/lcov-report/core/api/hooks/hooks.groups.js.html +229 -0
- package/coverage/lcov-report/core/api/hooks/hooks.logger.js.html +163 -0
- package/coverage/lcov-report/core/api/hooks/hooks.model.js.html +955 -0
- package/coverage/lcov-report/core/api/hooks/hooks.organisations.js.html +541 -0
- package/coverage/lcov-report/core/api/hooks/hooks.push.js.html +253 -0
- package/coverage/lcov-report/core/api/hooks/hooks.query.js.html +862 -0
- package/coverage/lcov-report/core/api/hooks/hooks.schemas.js.html +304 -0
- package/coverage/lcov-report/core/api/hooks/hooks.service.js.html +319 -0
- package/coverage/lcov-report/core/api/hooks/hooks.storage.js.html +193 -0
- package/coverage/lcov-report/core/api/hooks/hooks.users.js.html +868 -0
- package/coverage/lcov-report/core/api/hooks/index.html +296 -0
- package/coverage/lcov-report/core/api/hooks/index.js.html +121 -0
- package/coverage/lcov-report/core/api/index.html +191 -0
- package/coverage/lcov-report/core/api/index.js.html +148 -0
- package/coverage/lcov-report/core/api/marshall.js.html +448 -0
- package/coverage/lcov-report/core/api/models/groups.model.mongodb.js.html +109 -0
- package/coverage/lcov-report/core/api/models/index.html +161 -0
- package/coverage/lcov-report/core/api/models/organisations.model.mongodb.js.html +94 -0
- package/coverage/lcov-report/core/api/models/tags.model.mongodb.js.html +115 -0
- package/coverage/lcov-report/core/api/models/users.model.mongodb.js.html +115 -0
- package/coverage/lcov-report/core/api/services/account/account.hooks.js.html +208 -0
- package/coverage/lcov-report/core/api/services/account/account.service.js.html +436 -0
- package/coverage/lcov-report/core/api/services/account/index.html +131 -0
- package/coverage/lcov-report/core/api/services/authorisations/authorisations.hooks.js.html +184 -0
- package/coverage/lcov-report/core/api/services/authorisations/authorisations.service.js.html +502 -0
- package/coverage/lcov-report/core/api/services/authorisations/index.html +131 -0
- package/coverage/lcov-report/core/api/services/databases/databases.hooks.js.html +193 -0
- package/coverage/lcov-report/core/api/services/databases/databases.service.js.html +100 -0
- package/coverage/lcov-report/core/api/services/databases/index.html +131 -0
- package/coverage/lcov-report/core/api/services/groups/groups.hooks.js.html +178 -0
- package/coverage/lcov-report/core/api/services/groups/index.html +116 -0
- package/coverage/lcov-report/core/api/services/import-export/import-export.hooks.js.html +184 -0
- package/coverage/lcov-report/core/api/services/import-export/import-export.service.js.html +118 -0
- package/coverage/lcov-report/core/api/services/import-export/index.html +131 -0
- package/coverage/lcov-report/core/api/services/index.html +116 -0
- package/coverage/lcov-report/core/api/services/index.js.html +499 -0
- package/coverage/lcov-report/core/api/services/mailer/index.html +131 -0
- package/coverage/lcov-report/core/api/services/mailer/mailer.hooks.js.html +190 -0
- package/coverage/lcov-report/core/api/services/mailer/mailer.service.js.html +118 -0
- package/coverage/lcov-report/core/api/services/organisations/index.html +131 -0
- package/coverage/lcov-report/core/api/services/organisations/organisations.hooks.js.html +178 -0
- package/coverage/lcov-report/core/api/services/organisations/organisations.service.js.html +343 -0
- package/coverage/lcov-report/core/api/services/push/index.html +131 -0
- package/coverage/lcov-report/core/api/services/push/push.hooks.js.html +190 -0
- package/coverage/lcov-report/core/api/services/push/push.service.js.html +121 -0
- package/coverage/lcov-report/core/api/services/storage/index.html +131 -0
- package/coverage/lcov-report/core/api/services/storage/storage.hooks.js.html +190 -0
- package/coverage/lcov-report/core/api/services/storage/storage.service.js.html +172 -0
- package/coverage/lcov-report/core/api/services/tags/index.html +116 -0
- package/coverage/lcov-report/core/api/services/tags/tags.hooks.js.html +178 -0
- package/coverage/lcov-report/core/api/services/users/index.html +116 -0
- package/coverage/lcov-report/core/api/services/users/users.hooks.js.html +307 -0
- package/coverage/lcov-report/core/api/utils.js.html +118 -0
- package/coverage/lcov-report/core/common/errors.js.html +88 -0
- package/coverage/lcov-report/core/common/index.html +176 -0
- package/coverage/lcov-report/core/common/index.js.html +115 -0
- package/coverage/lcov-report/core/common/permissions.js.html +1048 -0
- package/coverage/lcov-report/core/common/schema.js.html +190 -0
- package/coverage/lcov-report/core/common/utils.js.html +220 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +491 -0
- package/coverage/lcov-report/map/api/hooks/hooks.catalog.js.html +457 -0
- package/coverage/lcov-report/map/api/hooks/hooks.features.js.html +397 -0
- package/coverage/lcov-report/map/api/hooks/hooks.query.js.html +1309 -0
- package/coverage/lcov-report/map/api/hooks/index.html +161 -0
- package/coverage/lcov-report/map/api/hooks/index.js.html +94 -0
- package/coverage/lcov-report/map/api/index.html +131 -0
- package/coverage/lcov-report/map/api/index.js.html +139 -0
- package/coverage/lcov-report/map/api/marshall.js.html +178 -0
- package/coverage/lcov-report/map/api/models/alerts.model.mongodb.js.html +106 -0
- package/coverage/lcov-report/map/api/models/catalog.model.mongodb.js.html +127 -0
- package/coverage/lcov-report/map/api/models/features.model.mongodb.js.html +196 -0
- package/coverage/lcov-report/map/api/models/index.html +161 -0
- package/coverage/lcov-report/map/api/models/projects.model.mongodb.js.html +109 -0
- package/coverage/lcov-report/map/api/services/alerts/alerts.hooks.js.html +274 -0
- package/coverage/lcov-report/map/api/services/alerts/alerts.service.js.html +610 -0
- package/coverage/lcov-report/map/api/services/alerts/index.html +131 -0
- package/coverage/lcov-report/map/api/services/catalog/catalog.hooks.js.html +316 -0
- package/coverage/lcov-report/map/api/services/catalog/index.html +116 -0
- package/coverage/lcov-report/map/api/services/daptiles/daptiles.service.js.html +1510 -0
- package/coverage/lcov-report/map/api/services/daptiles/index.html +116 -0
- package/coverage/lcov-report/map/api/services/features/features.hooks.js.html +241 -0
- package/coverage/lcov-report/map/api/services/features/features.service.js.html +241 -0
- package/coverage/lcov-report/map/api/services/features/index.html +131 -0
- package/coverage/lcov-report/map/api/services/index.html +116 -0
- package/coverage/lcov-report/map/api/services/index.js.html +817 -0
- package/coverage/lcov-report/map/api/services/projects/index.html +116 -0
- package/coverage/lcov-report/map/api/services/projects/projects.hooks.js.html +439 -0
- package/coverage/lcov-report/map/common/dynamic-grid-source.js.html +466 -0
- package/coverage/lcov-report/map/common/errors.js.html +94 -0
- package/coverage/lcov-report/map/common/geotiff-grid-source.js.html +541 -0
- package/coverage/lcov-report/map/common/grid.js.html +1612 -0
- package/coverage/lcov-report/map/common/index.html +371 -0
- package/coverage/lcov-report/map/common/index.js.html +172 -0
- package/coverage/lcov-report/map/common/meteo-model-grid-source.js.html +556 -0
- package/coverage/lcov-report/map/common/moment-utils.js.html +157 -0
- package/coverage/lcov-report/map/common/opendap-grid-source.js.html +868 -0
- package/coverage/lcov-report/map/common/opendap-utils.js.html +826 -0
- package/coverage/lcov-report/map/common/permissions.js.html +124 -0
- package/coverage/lcov-report/map/common/time-based-grid-source.js.html +418 -0
- package/coverage/lcov-report/map/common/tms-utils.js.html +274 -0
- package/coverage/lcov-report/map/common/wcs-grid-source.js.html +364 -0
- package/coverage/lcov-report/map/common/wcs-utils.js.html +586 -0
- package/coverage/lcov-report/map/common/weacast-grid-source.js.html +1033 -0
- package/coverage/lcov-report/map/common/wfs-utils.js.html +574 -0
- package/coverage/lcov-report/map/common/wms-utils.js.html +451 -0
- package/coverage/lcov-report/map/common/wmts-utils.js.html +547 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +196 -0
- package/coverage/lcov.info +11128 -0
- package/coverage/map/api/hooks/hooks.catalog.js.html +457 -0
- package/coverage/map/api/hooks/hooks.features.js.html +397 -0
- package/coverage/map/api/hooks/hooks.query.js.html +1309 -0
- package/coverage/map/api/hooks/index.html +161 -0
- package/coverage/map/api/hooks/index.js.html +94 -0
- package/coverage/map/api/index.html +131 -0
- package/coverage/map/api/index.js.html +139 -0
- package/coverage/map/api/marshall.js.html +178 -0
- package/coverage/map/api/models/alerts.model.mongodb.js.html +106 -0
- package/coverage/map/api/models/catalog.model.mongodb.js.html +127 -0
- package/coverage/map/api/models/features.model.mongodb.js.html +196 -0
- package/coverage/map/api/models/index.html +161 -0
- package/coverage/map/api/models/projects.model.mongodb.js.html +109 -0
- package/coverage/map/api/services/alerts/alerts.hooks.js.html +274 -0
- package/coverage/map/api/services/alerts/alerts.service.js.html +610 -0
- package/coverage/map/api/services/alerts/index.html +131 -0
- package/coverage/map/api/services/catalog/catalog.hooks.js.html +316 -0
- package/coverage/map/api/services/catalog/index.html +116 -0
- package/coverage/map/api/services/daptiles/daptiles.service.js.html +1510 -0
- package/coverage/map/api/services/daptiles/index.html +116 -0
- package/coverage/map/api/services/features/features.hooks.js.html +241 -0
- package/coverage/map/api/services/features/features.service.js.html +241 -0
- package/coverage/map/api/services/features/index.html +131 -0
- package/coverage/map/api/services/index.html +116 -0
- package/coverage/map/api/services/index.js.html +817 -0
- package/coverage/map/api/services/projects/index.html +116 -0
- package/coverage/map/api/services/projects/projects.hooks.js.html +439 -0
- package/coverage/map/common/dynamic-grid-source.js.html +466 -0
- package/coverage/map/common/errors.js.html +94 -0
- package/coverage/map/common/geotiff-grid-source.js.html +541 -0
- package/coverage/map/common/grid.js.html +1612 -0
- package/coverage/map/common/index.html +371 -0
- package/coverage/map/common/index.js.html +172 -0
- package/coverage/map/common/meteo-model-grid-source.js.html +556 -0
- package/coverage/map/common/moment-utils.js.html +157 -0
- package/coverage/map/common/opendap-grid-source.js.html +868 -0
- package/coverage/map/common/opendap-utils.js.html +826 -0
- package/coverage/map/common/permissions.js.html +124 -0
- package/coverage/map/common/time-based-grid-source.js.html +418 -0
- package/coverage/map/common/tms-utils.js.html +274 -0
- package/coverage/map/common/wcs-grid-source.js.html +364 -0
- package/coverage/map/common/wcs-utils.js.html +586 -0
- package/coverage/map/common/weacast-grid-source.js.html +1033 -0
- package/coverage/map/common/wfs-utils.js.html +574 -0
- package/coverage/map/common/wms-utils.js.html +451 -0
- package/coverage/map/common/wmts-utils.js.html +547 -0
- package/coverage/prettify.css +1 -0
- package/coverage/prettify.js +2 -0
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +196 -0
- package/coverage/tmp/coverage-137435-1719398750767-0.json +1 -0
- package/coverage/tmp/coverage-137447-1719398750752-0.json +1 -0
- package/coverage/tmp/coverage-137458-1719398750740-0.json +1 -0
- package/coverage/tmp/coverage-137470-1719398750728-0.json +1 -0
- package/coverage/tmp/coverage-137477-1719398750691-0.json +1 -0
- package/map/api/hooks/hooks.query.js +5 -2
- package/map/api/services/catalog/catalog.hooks.js +4 -5
- package/map/client/cesium/utils/index.js +2 -1
- package/map/client/cesium/utils/utils.cesium.js +8 -0
- package/map/client/cesium/utils/utils.features.js +2 -2
- package/map/client/cesium/utils/utils.style.js +19 -17
- package/map/client/components/KCompass.vue +25 -3
- package/map/client/components/KEditLayerData.vue +1 -1
- package/map/client/components/KPositionIndicator.vue +1 -1
- package/map/client/components/catalog/KConnectLayer.vue +2 -2
- package/map/client/components/catalog/KCreateView.vue +2 -2
- package/map/client/components/form/KDirectionField.vue +4 -0
- package/map/client/components/form/KOwsLayerField.vue +4 -4
- package/map/client/components/form/KOwsServiceField.vue +3 -4
- package/map/client/components/legend/KLegend.vue +13 -15
- package/map/client/components/tools/KGeolocateTool.vue +1 -1
- package/map/client/components/widget/KStackableTimeSeries.vue +3 -0
- package/map/client/composables/highlight.js +4 -1
- package/map/client/elevation-utils.js +2 -2
- package/map/client/i18n/map_en.json +3 -1
- package/map/client/i18n/map_fr.json +3 -1
- package/map/client/mixins/globe/mixin.base-globe.js +121 -80
- package/map/client/mixins/globe/mixin.file-layers.js +2 -2
- package/map/client/mixins/globe/mixin.geojson-layers.js +24 -19
- package/map/client/mixins/globe/mixin.globe-activity.js +3 -3
- package/map/client/mixins/globe/mixin.opendap-layers.js +3 -3
- package/map/client/mixins/globe/mixin.style.js +5 -5
- package/map/client/mixins/globe/mixin.tooltip.js +5 -3
- package/map/client/mixins/map/mixin.base-map.js +42 -4
- package/map/client/mixins/map/mixin.canvas-layers.js +0 -1
- package/map/client/mixins/map/mixin.geojson-layers.js +10 -5
- package/map/client/mixins/mixin.activity.js +2 -2
- package/map/client/mixins/mixin.feature-selection.js +7 -5
- package/map/client/mixins/mixin.levels.js +1 -1
- package/map/client/utils/utils.catalog.js +15 -0
- package/map/client/utils/utils.location.js +2 -1
- package/map/client/utils/utils.style.js +1 -1
- package/map/common/geotiff-grid-source.js +5 -3
- package/map/common/grid.js +2 -2
- package/map/common/meteo-model-grid-source.js +1 -1
- package/map/common/time-based-grid-source.js +1 -1
- package/map/common/wmts-utils.js +11 -11
- package/package.json +12 -8
- package/scripts/build_docs.sh +37 -0
- package/scripts/init_runner.sh +30 -0
- package/scripts/kash/.github/workflows/run_tests.yaml +33 -0
- package/scripts/kash/README.md +2 -0
- package/scripts/kash/kash.sh +1657 -0
- package/scripts/kash/scripts/run_tests.sh +151 -0
- package/scripts/run_tests.sh +48 -0
- package/scripts/setup_workspace.sh +42 -0
- package/test/api/core/hooks.test.js +31 -0
- package/test/api/core/test-log-2023-12-19.log +7 -0
- package/test/api/core/test-log-2024-01-04.log +14 -0
- package/test/api/core/test-log-2024-05-14.log +6 -0
- package/test/api/core/test-log-2024-06-06.log +23 -0
- package/test/api/core/test-log-2024-06-26.log +25 -0
- package/test/api/core/test-log-2024-06-28.log +2 -0
- package/test/api/map/grid-sources.test.js +3 -1
- package/test/api/map/hooks.test.js +58 -12
- package/test/api/map/test-log-2023-11-24.log +121 -0
- package/test/api/map/test-log-2023-12-12.log +29 -0
- package/test/api/map/test-log-2023-12-13.log +5 -0
- package/test/api/map/test-log-2024-01-04.log +2 -0
- package/test/api/map/test-log-2024-01-11.log +1 -0
- package/test/api/map/test-log-2024-01-25.log +19 -0
- package/test/api/map/test-log-2024-06-06.log +39 -0
- package/test/client/core/collection.js +2 -2
- package/test/client/core/dialogs.js +13 -0
- package/test/client/core/index.js +6 -5
- package/test/client/core/layout.js +1 -13
- package/test/client/core/runner.js +41 -20
- package/test/client/core/screens.js +6 -0
- package/test/client/core/utils.js +23 -19
- package/.travis.doc.sh +0 -8
- package/.travis.test.sh +0 -72
- package/core/client/components/KAction.vue +0 -393
- package/core/client/components/KBlock.vue +0 -67
- package/core/client/components/app/KTerms.vue +0 -41
|
@@ -0,0 +1,491 @@
|
|
|
1
|
+
|
|
2
|
+
<!doctype html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
|
|
5
|
+
<head>
|
|
6
|
+
<title>Code coverage report for All files</title>
|
|
7
|
+
<meta charset="utf-8" />
|
|
8
|
+
<link rel="stylesheet" href="prettify.css" />
|
|
9
|
+
<link rel="stylesheet" href="base.css" />
|
|
10
|
+
<link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
|
|
11
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
12
|
+
<style type='text/css'>
|
|
13
|
+
.coverage-summary .sorter {
|
|
14
|
+
background-image: url(sort-arrow-sprite.png);
|
|
15
|
+
}
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<div class='wrapper'>
|
|
21
|
+
<div class='pad1'>
|
|
22
|
+
<h1>All files</h1>
|
|
23
|
+
<div class='clearfix'>
|
|
24
|
+
|
|
25
|
+
<div class='fl pad1y space-right2'>
|
|
26
|
+
<span class="strong">39.08% </span>
|
|
27
|
+
<span class="quiet">Statements</span>
|
|
28
|
+
<span class='fraction'>3548/9078</span>
|
|
29
|
+
</div>
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
<div class='fl pad1y space-right2'>
|
|
33
|
+
<span class="strong">68.1% </span>
|
|
34
|
+
<span class="quiet">Branches</span>
|
|
35
|
+
<span class='fraction'>538/790</span>
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
<div class='fl pad1y space-right2'>
|
|
40
|
+
<span class="strong">59.92% </span>
|
|
41
|
+
<span class="quiet">Functions</span>
|
|
42
|
+
<span class='fraction'>151/252</span>
|
|
43
|
+
</div>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
<div class='fl pad1y space-right2'>
|
|
47
|
+
<span class="strong">39.08% </span>
|
|
48
|
+
<span class="quiet">Lines</span>
|
|
49
|
+
<span class='fraction'>3548/9078</span>
|
|
50
|
+
</div>
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
<p class="quiet">
|
|
55
|
+
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
|
|
56
|
+
</p>
|
|
57
|
+
<template id="filterTemplate">
|
|
58
|
+
<div class="quiet">
|
|
59
|
+
Filter:
|
|
60
|
+
<input oninput="onInput()" type="search" id="fileSearch">
|
|
61
|
+
</div>
|
|
62
|
+
</template>
|
|
63
|
+
</div>
|
|
64
|
+
<div class='status-line low'></div>
|
|
65
|
+
<div class="pad1">
|
|
66
|
+
<table class="coverage-summary">
|
|
67
|
+
<thead>
|
|
68
|
+
<tr>
|
|
69
|
+
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
|
|
70
|
+
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
|
|
71
|
+
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
|
|
72
|
+
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
73
|
+
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
|
|
74
|
+
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
75
|
+
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
|
|
76
|
+
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
77
|
+
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
|
|
78
|
+
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
|
|
79
|
+
</tr>
|
|
80
|
+
</thead>
|
|
81
|
+
<tbody><tr>
|
|
82
|
+
<td class="file medium" data-value="core/api"><a href="core/api/index.html">core/api</a></td>
|
|
83
|
+
<td data-value="73.2" class="pic medium">
|
|
84
|
+
<div class="chart"><div class="cover-fill" style="width: 73%"></div><div class="cover-empty" style="width: 27%"></div></div>
|
|
85
|
+
</td>
|
|
86
|
+
<td data-value="73.2" class="pct medium">73.2%</td>
|
|
87
|
+
<td data-value="1198" class="abs medium">877/1198</td>
|
|
88
|
+
<td data-value="66.99" class="pct medium">66.99%</td>
|
|
89
|
+
<td data-value="206" class="abs medium">138/206</td>
|
|
90
|
+
<td data-value="71.62" class="pct medium">71.62%</td>
|
|
91
|
+
<td data-value="74" class="abs medium">53/74</td>
|
|
92
|
+
<td data-value="73.2" class="pct medium">73.2%</td>
|
|
93
|
+
<td data-value="1198" class="abs medium">877/1198</td>
|
|
94
|
+
</tr>
|
|
95
|
+
|
|
96
|
+
<tr>
|
|
97
|
+
<td class="file medium" data-value="core/api/hooks"><a href="core/api/hooks/index.html">core/api/hooks</a></td>
|
|
98
|
+
<td data-value="78.37" class="pic medium">
|
|
99
|
+
<div class="chart"><div class="cover-fill" style="width: 78%"></div><div class="cover-empty" style="width: 22%"></div></div>
|
|
100
|
+
</td>
|
|
101
|
+
<td data-value="78.37" class="pct medium">78.37%</td>
|
|
102
|
+
<td data-value="1753" class="abs medium">1374/1753</td>
|
|
103
|
+
<td data-value="67.2" class="pct medium">67.2%</td>
|
|
104
|
+
<td data-value="369" class="abs medium">248/369</td>
|
|
105
|
+
<td data-value="73.23" class="pct medium">73.23%</td>
|
|
106
|
+
<td data-value="71" class="abs medium">52/71</td>
|
|
107
|
+
<td data-value="78.37" class="pct medium">78.37%</td>
|
|
108
|
+
<td data-value="1753" class="abs medium">1374/1753</td>
|
|
109
|
+
</tr>
|
|
110
|
+
|
|
111
|
+
<tr>
|
|
112
|
+
<td class="file high" data-value="core/api/models"><a href="core/api/models/index.html">core/api/models</a></td>
|
|
113
|
+
<td data-value="100" class="pic high">
|
|
114
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
115
|
+
</td>
|
|
116
|
+
<td data-value="100" class="pct high">100%</td>
|
|
117
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
118
|
+
<td data-value="90" class="pct high">90%</td>
|
|
119
|
+
<td data-value="10" class="abs high">9/10</td>
|
|
120
|
+
<td data-value="100" class="pct high">100%</td>
|
|
121
|
+
<td data-value="4" class="abs high">4/4</td>
|
|
122
|
+
<td data-value="100" class="pct high">100%</td>
|
|
123
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
124
|
+
</tr>
|
|
125
|
+
|
|
126
|
+
<tr>
|
|
127
|
+
<td class="file high" data-value="core/api/services"><a href="core/api/services/index.html">core/api/services</a></td>
|
|
128
|
+
<td data-value="94.2" class="pic high">
|
|
129
|
+
<div class="chart"><div class="cover-fill" style="width: 94%"></div><div class="cover-empty" style="width: 6%"></div></div>
|
|
130
|
+
</td>
|
|
131
|
+
<td data-value="94.2" class="pct high">94.2%</td>
|
|
132
|
+
<td data-value="138" class="abs high">130/138</td>
|
|
133
|
+
<td data-value="86.66" class="pct high">86.66%</td>
|
|
134
|
+
<td data-value="15" class="abs high">13/15</td>
|
|
135
|
+
<td data-value="87.5" class="pct high">87.5%</td>
|
|
136
|
+
<td data-value="8" class="abs high">7/8</td>
|
|
137
|
+
<td data-value="94.2" class="pct high">94.2%</td>
|
|
138
|
+
<td data-value="138" class="abs high">130/138</td>
|
|
139
|
+
</tr>
|
|
140
|
+
|
|
141
|
+
<tr>
|
|
142
|
+
<td class="file high" data-value="core/api/services/account"><a href="core/api/services/account/index.html">core/api/services/account</a></td>
|
|
143
|
+
<td data-value="86.07" class="pic high">
|
|
144
|
+
<div class="chart"><div class="cover-fill" style="width: 86%"></div><div class="cover-empty" style="width: 14%"></div></div>
|
|
145
|
+
</td>
|
|
146
|
+
<td data-value="86.07" class="pct high">86.07%</td>
|
|
147
|
+
<td data-value="158" class="abs high">136/158</td>
|
|
148
|
+
<td data-value="77.27" class="pct medium">77.27%</td>
|
|
149
|
+
<td data-value="22" class="abs medium">17/22</td>
|
|
150
|
+
<td data-value="100" class="pct high">100%</td>
|
|
151
|
+
<td data-value="4" class="abs high">4/4</td>
|
|
152
|
+
<td data-value="86.07" class="pct high">86.07%</td>
|
|
153
|
+
<td data-value="158" class="abs high">136/158</td>
|
|
154
|
+
</tr>
|
|
155
|
+
|
|
156
|
+
<tr>
|
|
157
|
+
<td class="file high" data-value="core/api/services/authorisations"><a href="core/api/services/authorisations/index.html">core/api/services/authorisations</a></td>
|
|
158
|
+
<td data-value="98.83" class="pic high">
|
|
159
|
+
<div class="chart"><div class="cover-fill" style="width: 98%"></div><div class="cover-empty" style="width: 2%"></div></div>
|
|
160
|
+
</td>
|
|
161
|
+
<td data-value="98.83" class="pct high">98.83%</td>
|
|
162
|
+
<td data-value="172" class="abs high">170/172</td>
|
|
163
|
+
<td data-value="86.48" class="pct high">86.48%</td>
|
|
164
|
+
<td data-value="37" class="abs high">32/37</td>
|
|
165
|
+
<td data-value="100" class="pct high">100%</td>
|
|
166
|
+
<td data-value="5" class="abs high">5/5</td>
|
|
167
|
+
<td data-value="98.83" class="pct high">98.83%</td>
|
|
168
|
+
<td data-value="172" class="abs high">170/172</td>
|
|
169
|
+
</tr>
|
|
170
|
+
|
|
171
|
+
<tr>
|
|
172
|
+
<td class="file high" data-value="core/api/services/databases"><a href="core/api/services/databases/index.html">core/api/services/databases</a></td>
|
|
173
|
+
<td data-value="100" class="pic high">
|
|
174
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
175
|
+
</td>
|
|
176
|
+
<td data-value="100" class="pct high">100%</td>
|
|
177
|
+
<td data-value="41" class="abs high">41/41</td>
|
|
178
|
+
<td data-value="100" class="pct high">100%</td>
|
|
179
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
180
|
+
<td data-value="100" class="pct high">100%</td>
|
|
181
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
182
|
+
<td data-value="100" class="pct high">100%</td>
|
|
183
|
+
<td data-value="41" class="abs high">41/41</td>
|
|
184
|
+
</tr>
|
|
185
|
+
|
|
186
|
+
<tr>
|
|
187
|
+
<td class="file high" data-value="core/api/services/groups"><a href="core/api/services/groups/index.html">core/api/services/groups</a></td>
|
|
188
|
+
<td data-value="100" class="pic high">
|
|
189
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
190
|
+
</td>
|
|
191
|
+
<td data-value="100" class="pct high">100%</td>
|
|
192
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
193
|
+
<td data-value="100" class="pct high">100%</td>
|
|
194
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
195
|
+
<td data-value="100" class="pct high">100%</td>
|
|
196
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
197
|
+
<td data-value="100" class="pct high">100%</td>
|
|
198
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
199
|
+
</tr>
|
|
200
|
+
|
|
201
|
+
<tr>
|
|
202
|
+
<td class="file high" data-value="core/api/services/import-export"><a href="core/api/services/import-export/index.html">core/api/services/import-export</a></td>
|
|
203
|
+
<td data-value="100" class="pic high">
|
|
204
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
205
|
+
</td>
|
|
206
|
+
<td data-value="100" class="pct high">100%</td>
|
|
207
|
+
<td data-value="44" class="abs high">44/44</td>
|
|
208
|
+
<td data-value="100" class="pct high">100%</td>
|
|
209
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
210
|
+
<td data-value="100" class="pct high">100%</td>
|
|
211
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
212
|
+
<td data-value="100" class="pct high">100%</td>
|
|
213
|
+
<td data-value="44" class="abs high">44/44</td>
|
|
214
|
+
</tr>
|
|
215
|
+
|
|
216
|
+
<tr>
|
|
217
|
+
<td class="file high" data-value="core/api/services/mailer"><a href="core/api/services/mailer/index.html">core/api/services/mailer</a></td>
|
|
218
|
+
<td data-value="100" class="pic high">
|
|
219
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
220
|
+
</td>
|
|
221
|
+
<td data-value="100" class="pct high">100%</td>
|
|
222
|
+
<td data-value="46" class="abs high">46/46</td>
|
|
223
|
+
<td data-value="100" class="pct high">100%</td>
|
|
224
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
225
|
+
<td data-value="100" class="pct high">100%</td>
|
|
226
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
227
|
+
<td data-value="100" class="pct high">100%</td>
|
|
228
|
+
<td data-value="46" class="abs high">46/46</td>
|
|
229
|
+
</tr>
|
|
230
|
+
|
|
231
|
+
<tr>
|
|
232
|
+
<td class="file high" data-value="core/api/services/organisations"><a href="core/api/services/organisations/index.html">core/api/services/organisations</a></td>
|
|
233
|
+
<td data-value="83.76" class="pic high">
|
|
234
|
+
<div class="chart"><div class="cover-fill" style="width: 83%"></div><div class="cover-empty" style="width: 17%"></div></div>
|
|
235
|
+
</td>
|
|
236
|
+
<td data-value="83.76" class="pct high">83.76%</td>
|
|
237
|
+
<td data-value="117" class="abs high">98/117</td>
|
|
238
|
+
<td data-value="71.42" class="pct medium">71.42%</td>
|
|
239
|
+
<td data-value="7" class="abs medium">5/7</td>
|
|
240
|
+
<td data-value="50" class="pct medium">50%</td>
|
|
241
|
+
<td data-value="6" class="abs medium">3/6</td>
|
|
242
|
+
<td data-value="83.76" class="pct high">83.76%</td>
|
|
243
|
+
<td data-value="117" class="abs high">98/117</td>
|
|
244
|
+
</tr>
|
|
245
|
+
|
|
246
|
+
<tr>
|
|
247
|
+
<td class="file high" data-value="core/api/services/push"><a href="core/api/services/push/index.html">core/api/services/push</a></td>
|
|
248
|
+
<td data-value="100" class="pic high">
|
|
249
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
250
|
+
</td>
|
|
251
|
+
<td data-value="100" class="pct high">100%</td>
|
|
252
|
+
<td data-value="47" class="abs high">47/47</td>
|
|
253
|
+
<td data-value="100" class="pct high">100%</td>
|
|
254
|
+
<td data-value="3" class="abs high">3/3</td>
|
|
255
|
+
<td data-value="100" class="pct high">100%</td>
|
|
256
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
257
|
+
<td data-value="100" class="pct high">100%</td>
|
|
258
|
+
<td data-value="47" class="abs high">47/47</td>
|
|
259
|
+
</tr>
|
|
260
|
+
|
|
261
|
+
<tr>
|
|
262
|
+
<td class="file high" data-value="core/api/services/storage"><a href="core/api/services/storage/index.html">core/api/services/storage</a></td>
|
|
263
|
+
<td data-value="100" class="pic high">
|
|
264
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
265
|
+
</td>
|
|
266
|
+
<td data-value="100" class="pct high">100%</td>
|
|
267
|
+
<td data-value="64" class="abs high">64/64</td>
|
|
268
|
+
<td data-value="75" class="pct medium">75%</td>
|
|
269
|
+
<td data-value="8" class="abs medium">6/8</td>
|
|
270
|
+
<td data-value="100" class="pct high">100%</td>
|
|
271
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
272
|
+
<td data-value="100" class="pct high">100%</td>
|
|
273
|
+
<td data-value="64" class="abs high">64/64</td>
|
|
274
|
+
</tr>
|
|
275
|
+
|
|
276
|
+
<tr>
|
|
277
|
+
<td class="file high" data-value="core/api/services/tags"><a href="core/api/services/tags/index.html">core/api/services/tags</a></td>
|
|
278
|
+
<td data-value="100" class="pic high">
|
|
279
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
280
|
+
</td>
|
|
281
|
+
<td data-value="100" class="pct high">100%</td>
|
|
282
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
283
|
+
<td data-value="100" class="pct high">100%</td>
|
|
284
|
+
<td data-value="1" class="abs high">1/1</td>
|
|
285
|
+
<td data-value="100" class="pct high">100%</td>
|
|
286
|
+
<td data-value="0" class="abs high">0/0</td>
|
|
287
|
+
<td data-value="100" class="pct high">100%</td>
|
|
288
|
+
<td data-value="31" class="abs high">31/31</td>
|
|
289
|
+
</tr>
|
|
290
|
+
|
|
291
|
+
<tr>
|
|
292
|
+
<td class="file high" data-value="core/api/services/users"><a href="core/api/services/users/index.html">core/api/services/users</a></td>
|
|
293
|
+
<td data-value="100" class="pic high">
|
|
294
|
+
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
|
|
295
|
+
</td>
|
|
296
|
+
<td data-value="100" class="pct high">100%</td>
|
|
297
|
+
<td data-value="74" class="abs high">74/74</td>
|
|
298
|
+
<td data-value="100" class="pct high">100%</td>
|
|
299
|
+
<td data-value="4" class="abs high">4/4</td>
|
|
300
|
+
<td data-value="50" class="pct medium">50%</td>
|
|
301
|
+
<td data-value="2" class="abs medium">1/2</td>
|
|
302
|
+
<td data-value="100" class="pct high">100%</td>
|
|
303
|
+
<td data-value="74" class="abs high">74/74</td>
|
|
304
|
+
</tr>
|
|
305
|
+
|
|
306
|
+
<tr>
|
|
307
|
+
<td class="file high" data-value="core/common"><a href="core/common/index.html">core/common</a></td>
|
|
308
|
+
<td data-value="85.92" class="pic high">
|
|
309
|
+
<div class="chart"><div class="cover-fill" style="width: 85%"></div><div class="cover-empty" style="width: 15%"></div></div>
|
|
310
|
+
</td>
|
|
311
|
+
<td data-value="85.92" class="pct high">85.92%</td>
|
|
312
|
+
<td data-value="412" class="abs high">354/412</td>
|
|
313
|
+
<td data-value="83.87" class="pct high">83.87%</td>
|
|
314
|
+
<td data-value="62" class="abs high">52/62</td>
|
|
315
|
+
<td data-value="45.94" class="pct low">45.94%</td>
|
|
316
|
+
<td data-value="37" class="abs low">17/37</td>
|
|
317
|
+
<td data-value="85.92" class="pct high">85.92%</td>
|
|
318
|
+
<td data-value="412" class="abs high">354/412</td>
|
|
319
|
+
</tr>
|
|
320
|
+
|
|
321
|
+
<tr>
|
|
322
|
+
<td class="file low" data-value="map/api"><a href="map/api/index.html">map/api</a></td>
|
|
323
|
+
<td data-value="0" class="pic low">
|
|
324
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
325
|
+
</td>
|
|
326
|
+
<td data-value="0" class="pct low">0%</td>
|
|
327
|
+
<td data-value="49" class="abs low">0/49</td>
|
|
328
|
+
<td data-value="0" class="pct low">0%</td>
|
|
329
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
330
|
+
<td data-value="0" class="pct low">0%</td>
|
|
331
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
332
|
+
<td data-value="0" class="pct low">0%</td>
|
|
333
|
+
<td data-value="49" class="abs low">0/49</td>
|
|
334
|
+
</tr>
|
|
335
|
+
|
|
336
|
+
<tr>
|
|
337
|
+
<td class="file low" data-value="map/api/hooks"><a href="map/api/hooks/index.html">map/api/hooks</a></td>
|
|
338
|
+
<td data-value="0" class="pic low">
|
|
339
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
340
|
+
</td>
|
|
341
|
+
<td data-value="0" class="pct low">0%</td>
|
|
342
|
+
<td data-value="639" class="abs low">0/639</td>
|
|
343
|
+
<td data-value="0" class="pct low">0%</td>
|
|
344
|
+
<td data-value="4" class="abs low">0/4</td>
|
|
345
|
+
<td data-value="0" class="pct low">0%</td>
|
|
346
|
+
<td data-value="4" class="abs low">0/4</td>
|
|
347
|
+
<td data-value="0" class="pct low">0%</td>
|
|
348
|
+
<td data-value="639" class="abs low">0/639</td>
|
|
349
|
+
</tr>
|
|
350
|
+
|
|
351
|
+
<tr>
|
|
352
|
+
<td class="file low" data-value="map/api/models"><a href="map/api/models/index.html">map/api/models</a></td>
|
|
353
|
+
<td data-value="0" class="pic low">
|
|
354
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
355
|
+
</td>
|
|
356
|
+
<td data-value="0" class="pct low">0%</td>
|
|
357
|
+
<td data-value="66" class="abs low">0/66</td>
|
|
358
|
+
<td data-value="0" class="pct low">0%</td>
|
|
359
|
+
<td data-value="4" class="abs low">0/4</td>
|
|
360
|
+
<td data-value="0" class="pct low">0%</td>
|
|
361
|
+
<td data-value="4" class="abs low">0/4</td>
|
|
362
|
+
<td data-value="0" class="pct low">0%</td>
|
|
363
|
+
<td data-value="66" class="abs low">0/66</td>
|
|
364
|
+
</tr>
|
|
365
|
+
|
|
366
|
+
<tr>
|
|
367
|
+
<td class="file low" data-value="map/api/services"><a href="map/api/services/index.html">map/api/services</a></td>
|
|
368
|
+
<td data-value="0" class="pic low">
|
|
369
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
370
|
+
</td>
|
|
371
|
+
<td data-value="0" class="pct low">0%</td>
|
|
372
|
+
<td data-value="244" class="abs low">0/244</td>
|
|
373
|
+
<td data-value="0" class="pct low">0%</td>
|
|
374
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
375
|
+
<td data-value="0" class="pct low">0%</td>
|
|
376
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
377
|
+
<td data-value="0" class="pct low">0%</td>
|
|
378
|
+
<td data-value="244" class="abs low">0/244</td>
|
|
379
|
+
</tr>
|
|
380
|
+
|
|
381
|
+
<tr>
|
|
382
|
+
<td class="file low" data-value="map/api/services/alerts"><a href="map/api/services/alerts/index.html">map/api/services/alerts</a></td>
|
|
383
|
+
<td data-value="0" class="pic low">
|
|
384
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
385
|
+
</td>
|
|
386
|
+
<td data-value="0" class="pct low">0%</td>
|
|
387
|
+
<td data-value="238" class="abs low">0/238</td>
|
|
388
|
+
<td data-value="0" class="pct low">0%</td>
|
|
389
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
390
|
+
<td data-value="0" class="pct low">0%</td>
|
|
391
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
392
|
+
<td data-value="0" class="pct low">0%</td>
|
|
393
|
+
<td data-value="238" class="abs low">0/238</td>
|
|
394
|
+
</tr>
|
|
395
|
+
|
|
396
|
+
<tr>
|
|
397
|
+
<td class="file low" data-value="map/api/services/catalog"><a href="map/api/services/catalog/index.html">map/api/services/catalog</a></td>
|
|
398
|
+
<td data-value="0" class="pic low">
|
|
399
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
400
|
+
</td>
|
|
401
|
+
<td data-value="0" class="pct low">0%</td>
|
|
402
|
+
<td data-value="77" class="abs low">0/77</td>
|
|
403
|
+
<td data-value="0" class="pct low">0%</td>
|
|
404
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
405
|
+
<td data-value="0" class="pct low">0%</td>
|
|
406
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
407
|
+
<td data-value="0" class="pct low">0%</td>
|
|
408
|
+
<td data-value="77" class="abs low">0/77</td>
|
|
409
|
+
</tr>
|
|
410
|
+
|
|
411
|
+
<tr>
|
|
412
|
+
<td class="file low" data-value="map/api/services/daptiles"><a href="map/api/services/daptiles/index.html">map/api/services/daptiles</a></td>
|
|
413
|
+
<td data-value="0" class="pic low">
|
|
414
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
415
|
+
</td>
|
|
416
|
+
<td data-value="0" class="pct low">0%</td>
|
|
417
|
+
<td data-value="475" class="abs low">0/475</td>
|
|
418
|
+
<td data-value="0" class="pct low">0%</td>
|
|
419
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
420
|
+
<td data-value="0" class="pct low">0%</td>
|
|
421
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
422
|
+
<td data-value="0" class="pct low">0%</td>
|
|
423
|
+
<td data-value="475" class="abs low">0/475</td>
|
|
424
|
+
</tr>
|
|
425
|
+
|
|
426
|
+
<tr>
|
|
427
|
+
<td class="file low" data-value="map/api/services/features"><a href="map/api/services/features/index.html">map/api/services/features</a></td>
|
|
428
|
+
<td data-value="0" class="pic low">
|
|
429
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
430
|
+
</td>
|
|
431
|
+
<td data-value="0" class="pct low">0%</td>
|
|
432
|
+
<td data-value="104" class="abs low">0/104</td>
|
|
433
|
+
<td data-value="0" class="pct low">0%</td>
|
|
434
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
435
|
+
<td data-value="0" class="pct low">0%</td>
|
|
436
|
+
<td data-value="2" class="abs low">0/2</td>
|
|
437
|
+
<td data-value="0" class="pct low">0%</td>
|
|
438
|
+
<td data-value="104" class="abs low">0/104</td>
|
|
439
|
+
</tr>
|
|
440
|
+
|
|
441
|
+
<tr>
|
|
442
|
+
<td class="file low" data-value="map/api/services/projects"><a href="map/api/services/projects/index.html">map/api/services/projects</a></td>
|
|
443
|
+
<td data-value="0" class="pic low">
|
|
444
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
445
|
+
</td>
|
|
446
|
+
<td data-value="0" class="pct low">0%</td>
|
|
447
|
+
<td data-value="118" class="abs low">0/118</td>
|
|
448
|
+
<td data-value="0" class="pct low">0%</td>
|
|
449
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
450
|
+
<td data-value="0" class="pct low">0%</td>
|
|
451
|
+
<td data-value="1" class="abs low">0/1</td>
|
|
452
|
+
<td data-value="0" class="pct low">0%</td>
|
|
453
|
+
<td data-value="118" class="abs low">0/118</td>
|
|
454
|
+
</tr>
|
|
455
|
+
|
|
456
|
+
<tr>
|
|
457
|
+
<td class="file low" data-value="map/common"><a href="map/common/index.html">map/common</a></td>
|
|
458
|
+
<td data-value="0" class="pic low">
|
|
459
|
+
<div class="chart"><div class="cover-fill" style="width: 0%"></div><div class="cover-empty" style="width: 100%"></div></div>
|
|
460
|
+
</td>
|
|
461
|
+
<td data-value="0" class="pct low">0%</td>
|
|
462
|
+
<td data-value="2711" class="abs low">0/2711</td>
|
|
463
|
+
<td data-value="0" class="pct low">0%</td>
|
|
464
|
+
<td data-value="18" class="abs low">0/18</td>
|
|
465
|
+
<td data-value="0" class="pct low">0%</td>
|
|
466
|
+
<td data-value="18" class="abs low">0/18</td>
|
|
467
|
+
<td data-value="0" class="pct low">0%</td>
|
|
468
|
+
<td data-value="2711" class="abs low">0/2711</td>
|
|
469
|
+
</tr>
|
|
470
|
+
|
|
471
|
+
</tbody>
|
|
472
|
+
</table>
|
|
473
|
+
</div>
|
|
474
|
+
<div class='push'></div><!-- for sticky footer -->
|
|
475
|
+
</div><!-- /wrapper -->
|
|
476
|
+
<div class='footer quiet pad2 space-top1 center small'>
|
|
477
|
+
Code coverage generated by
|
|
478
|
+
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
479
|
+
at 2024-06-26T10:45:51.176Z
|
|
480
|
+
</div>
|
|
481
|
+
<script src="prettify.js"></script>
|
|
482
|
+
<script>
|
|
483
|
+
window.onload = function () {
|
|
484
|
+
prettyPrint();
|
|
485
|
+
};
|
|
486
|
+
</script>
|
|
487
|
+
<script src="sorter.js"></script>
|
|
488
|
+
<script src="block-navigation.js"></script>
|
|
489
|
+
</body>
|
|
490
|
+
</html>
|
|
491
|
+
|