invenio-app-rdm 12.0.0.dev8__py2.py3-none-any.whl → 14.0.0b1.dev8__py2.py3-none-any.whl
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.
- invenio_app_rdm/__init__.py +3 -2
- invenio_app_rdm/{stats/templates/events/record_view/v7 → administration}/__init__.py +1 -3
- invenio_app_rdm/{stats/templates/events/record_view → administration/audit_logs}/__init__.py +6 -4
- invenio_app_rdm/administration/audit_logs/audit_logs.py +81 -0
- invenio_app_rdm/administration/domains/__init__.py +22 -0
- invenio_app_rdm/administration/domains/domains.py +159 -0
- invenio_app_rdm/administration/moderation/__init__.py +11 -0
- invenio_app_rdm/administration/moderation/requests.py +175 -0
- invenio_app_rdm/administration/records/__init__.py +15 -0
- invenio_app_rdm/administration/records/records.py +163 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/audit_logs.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/domains_search.html +13 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/drafts.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/records.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html +91 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation_details.html +14 -0
- invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/users_search.html +14 -0
- invenio_app_rdm/{stats/templates/aggregations/aggr_record_view/v7 → administration/user_moderation}/__init__.py +4 -3
- invenio_app_rdm/administration/user_moderation/user_moderation.py +175 -0
- invenio_app_rdm/administration/users/__init__.py +12 -0
- invenio_app_rdm/administration/users/users.py +130 -0
- invenio_app_rdm/{stats/templates/events/file_download/v7 → administration/views}/__init__.py +4 -3
- invenio_app_rdm/administration/views/ui.py +21 -0
- invenio_app_rdm/cli.py +37 -14
- invenio_app_rdm/communities_ui/searchapp.py +1 -0
- invenio_app_rdm/communities_ui/sitemap.py +63 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/collection.html +60 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collections/macros.html +43 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/details/browse/index.html +59 -0
- invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/{details → records}/index.html +1 -1
- invenio_app_rdm/communities_ui/views/communities.py +183 -8
- invenio_app_rdm/communities_ui/views/ui.py +52 -42
- invenio_app_rdm/config.py +586 -90
- invenio_app_rdm/ext.py +157 -0
- invenio_app_rdm/fixtures/__init__.py +2 -2
- invenio_app_rdm/fixtures/pages.py +34 -12
- invenio_app_rdm/records_ui/searchapp.py +43 -0
- invenio_app_rdm/records_ui/sitemap.py +44 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +59 -16
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +236 -141
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html +64 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +4 -3
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html +2 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html +22 -20
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html +7 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +290 -230
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html +3 -24
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html +36 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html +6 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +30 -22
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html +20 -19
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html +19 -16
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +55 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html +9 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +62 -49
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html +23 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +24 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html +21 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html +15 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +93 -79
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html +17 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html +2 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html +54 -39
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +182 -93
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +36 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +152 -79
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html +62 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html +3 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html +33 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +55 -12
- invenio_app_rdm/records_ui/utils.py +126 -1
- invenio_app_rdm/records_ui/views/__init__.py +75 -17
- invenio_app_rdm/records_ui/views/decorators.py +309 -38
- invenio_app_rdm/records_ui/views/deposits.py +302 -51
- invenio_app_rdm/records_ui/views/filters.py +74 -7
- invenio_app_rdm/records_ui/views/records.py +256 -90
- invenio_app_rdm/redirector/resource.py +1 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html +34 -8
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html +88 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html +66 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html +5 -3
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/index.html +49 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html +49 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html +59 -0
- invenio_app_rdm/requests_ui/views/requests.py +221 -42
- invenio_app_rdm/requests_ui/views/ui.py +17 -4
- invenio_app_rdm/tasks.py +6 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/AuditLogActions.js +136 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewJson.js +35 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +119 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/index.js +31 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/SearchResultItemLayout.js +87 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/CompareRevisionsDropdown.js +89 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUser.js +92 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +199 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +80 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +109 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaForm.js +196 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/index.js +27 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/SearchResultItemLayout.js +185 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/search/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/drafts/index.js +32 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/CompareRevisions.js +129 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordActions.js +75 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RecordResourceActions.js +185 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RemovalReasonsSelect.js +85 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/RestoreConfirmation.js +108 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/TombstoneForm.js +212 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/api.js +38 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +30 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/index.js +40 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/AdministrationSearchLayout.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/RecordSearchLayout.js +84 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/SearchResultItemLayout.js +171 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/DeletionStatusFilter.js +121 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/index.js +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/index.js +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js +48 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js +22 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/ModerationActions.js +103 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/index.js +29 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/SearchResultItemLayout.js +151 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationSearchLayout.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/index.js +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/UserActions.js +263 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/api.js +42 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/index.js +8 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/api/routes.js +38 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/index.js +30 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/SearchResultItemLayout.js +202 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/UserSearchLayout.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/UserStatusFilterComponent.js +114 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/index.js +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/index.js +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/collectionRecordsSearch/index.js +61 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchBarElement.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSingleSearchBarElement.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/index.js +8 -3
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactStats.js +51 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +38 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js +78 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVerifiedCommunity.js +54 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +45 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js +354 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js +44 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js +81 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js +61 -31
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +680 -486
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js +65 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/config.js +48 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +14 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js +61 -21
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/AccessRequestForm.js +254 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +171 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagementDropdown.js +186 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/EditButton.js +10 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +7 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +140 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageDefaultBrandingAction/ManageDefaultBrandingAction.js +129 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesModal.js +63 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesSearch.js +89 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunityRequestItem.js +33 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +55 -51
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js +87 -89
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +44 -30
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearch.js +39 -20
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearchItem.js +44 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +171 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +111 -62
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +99 -61
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +188 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/AccessDropdown.js +93 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/CreateAccessLink.js +98 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchItem.js +170 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksSearchResultContainer.js +216 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksTab.js +104 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessRequests/AccessRequestsTab.js +230 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AccessUsersGroups.js +178 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/AddUserGroupAccessModal.js +172 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/GroupsTab.js +88 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/PeopleTab.js +88 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessUsersGroups/UserGroupAccessSearchResultItem.js +158 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/{ShareButton.js → ShareOptions/ShareButton.js} +13 -4
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareModal.js +238 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/api/api.js +39 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/access.js +24 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +72 -25
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +10 -6
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/mapping.js +6 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/AccessRequestExpiration.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/index.js +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +177 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +50 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/overrides/TimelineFeedHeader.js +34 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +15 -13
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/index.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/subcommunity/browse.js +28 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +77 -9
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/base.js +122 -74
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/communities.js +1 -11
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests.js +27 -412
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads.js +15 -14
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/ComputerTabletUploadsItem.js +47 -27
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/MobileUploadsItem.js +43 -27
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js +32 -7
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less +37 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/creatibutors.less +15 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.overrides +15 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.overrides +24 -33
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.overrides +18 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.overrides +19 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.variables +2 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.overrides +78 -6
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides +21 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.overrides +30 -7
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.overrides +17 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.overrides +2 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.overrides +34 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.overrides +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.overrides +48 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.overrides +10 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.overrides +16 -13
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +156 -97
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.variables +7 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +35 -9
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.overrides +28 -6
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.variables +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.overrides +40 -11
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.variables +5 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides +7 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.overrides +8 -8
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/theme.less +2 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.overrides +4 -2
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.overrides +20 -33
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js +66 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po +805 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +306 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +690 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +700 -81
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +822 -139
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +692 -67
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +819 -139
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +699 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po +1000 -5
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json +315 -2
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +811 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +747 -134
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +810 -127
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +696 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +288 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +804 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +17 -66
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +715 -88
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +684 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +276 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +690 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po +703 -72
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +690 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +705 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +695 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +718 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +288 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +807 -125
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +714 -83
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +809 -142
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +800 -129
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +282 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +717 -83
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +294 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +737 -124
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +276 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +684 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +276 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +5 -38
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +863 -127
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/administration_page.html +15 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/default_static_page.html +8 -8
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html +12 -12
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html +33 -75
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html +42 -27
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html +4 -2
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html +144 -113
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +2 -2
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +11 -6
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +254 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html +196 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html +149 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html +143 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +15 -16
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +33 -3
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page.html +36 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page_cover.html +13 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/robots.txt +15 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html +43 -15
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/settings/notifications.html +17 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html +29 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
- invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html +147 -0
- invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html +42 -0
- invenio_app_rdm/theme/views.py +80 -28
- invenio_app_rdm/theme/webpack.py +38 -7
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +975 -378
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +913 -284
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1070 -406
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +909 -274
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1018 -407
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +916 -287
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +964 -372
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +939 -363
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1033 -376
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +989 -372
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +970 -337
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +910 -281
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po +911 -282
- invenio_app_rdm/translations/messages.pot +982 -289
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1041 -382
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1023 -371
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +917 -288
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +1007 -398
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +993 -342
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +984 -353
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +940 -348
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +908 -279
- invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py +2 -2
- invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py +1 -1
- invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py +205 -0
- invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +235 -0
- invenio_app_rdm/upgrade_scripts/migrate_2_0_to_3_0.py +1 -1
- invenio_app_rdm/upgrade_scripts/migrate_4_0_to_6_0.py +2 -3
- invenio_app_rdm/upgrade_scripts/migrate_6_0_to_7_0.py +0 -2
- invenio_app_rdm/upgrade_scripts/migrate_8_0_to_9_0.py +2 -2
- invenio_app_rdm/upgrade_scripts/migrate_9_0_to_10_0.py +1 -1
- invenio_app_rdm/users/schemas.py +27 -0
- invenio_app_rdm/users_ui/searchapp.py +9 -1
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html +1 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html +23 -9
- invenio_app_rdm/users_ui/views/__init__.py +1 -1
- invenio_app_rdm/users_ui/views/dashboard.py +6 -1
- invenio_app_rdm/users_ui/views/ui.py +5 -28
- invenio_app_rdm/utils/files.py +1 -1
- invenio_app_rdm/views.py +21 -0
- invenio_app_rdm-14.0.0b1.dev8.dist-info/METADATA +552 -0
- invenio_app_rdm-14.0.0b1.dev8.dist-info/RECORD +505 -0
- {invenio_app_rdm-12.0.0.dev8.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/WHEEL +1 -1
- invenio_app_rdm-14.0.0b1.dev8.dist-info/entry_points.txt +44 -0
- invenio_app_rdm/admin.py +0 -36
- invenio_app_rdm/stats/__init__.py +0 -24
- invenio_app_rdm/stats/event_builders.py +0 -112
- invenio_app_rdm/stats/permissions.py +0 -33
- invenio_app_rdm/stats/templates/aggregations/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v1/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v1/aggr-file-download-v1.0.0.json +0 -69
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v2/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/os-v2/aggr-file-download-v1.0.0.json +0 -69
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/v7/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_file_download/v7/aggr-file-download-v1.0.0.json +0 -69
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v1/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v1/aggr-record-view-v1.0.0.json +0 -46
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v2/__init__.py +0 -10
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/os-v2/aggr-record-view-v1.0.0.json +0 -46
- invenio_app_rdm/stats/templates/aggregations/aggr_record_view/v7/aggr-record-view-v1.0.0.json +0 -46
- invenio_app_rdm/stats/templates/events/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/file_download/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/file_download/os-v1/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/file_download/os-v1/file-download-v1.0.0.json +0 -93
- invenio_app_rdm/stats/templates/events/file_download/os-v2/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/file_download/os-v2/file-download-v1.0.0.json +0 -93
- invenio_app_rdm/stats/templates/events/file_download/v7/file-download-v1.0.0.json +0 -93
- invenio_app_rdm/stats/templates/events/record_view/os-v1/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/record_view/os-v1/record-view-v1.0.0.json +0 -70
- invenio_app_rdm/stats/templates/events/record_view/os-v2/__init__.py +0 -10
- invenio_app_rdm/stats/templates/events/record_view/os-v2/record-view-v1.0.0.json +0 -70
- invenio_app_rdm/stats/templates/events/record_view/v7/record-view-v1.0.0.json +0 -70
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareModal.js +0 -262
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests_items/ComputerTabletRequestsItem.js +0 -74
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests_items/MobileRequestsItem.js +0 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -64
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/af/messages.po +0 -272
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/af/translations.json +0 -87
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et_EE/messages.po +0 -272
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et_EE/translations.json +0 -87
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/gl/messages.po +0 -272
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/gl/translations.json +0 -87
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/rw/messages.po +0 -272
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/rw/translations.json +0 -87
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json +0 -1512
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/compileCatalog.js +0 -40
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
- invenio_app_rdm/theme/static/robots.txt +0 -5
- invenio_app_rdm/translations/af/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/af/LC_MESSAGES/messages.po +0 -728
- invenio_app_rdm/translations/et_EE/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et_EE/LC_MESSAGES/messages.po +0 -728
- invenio_app_rdm/translations/gl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/gl/LC_MESSAGES/messages.po +0 -728
- invenio_app_rdm/translations/rw/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/rw/LC_MESSAGES/messages.po +0 -728
- invenio_app_rdm-12.0.0.dev8.dist-info/AUTHORS.rst +0 -11
- invenio_app_rdm-12.0.0.dev8.dist-info/METADATA +0 -103
- invenio_app_rdm-12.0.0.dev8.dist-info/RECORD +0 -402
- invenio_app_rdm-12.0.0.dev8.dist-info/entry_points.txt +0 -26
- /invenio_app_rdm/{translations/.gitkeep → theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/UserModerationBulkActions.js} +0 -0
- {invenio_app_rdm-12.0.0.dev8.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info/licenses}/LICENSE +0 -0
- {invenio_app_rdm-12.0.0.dev8.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/top_level.txt +0 -0
|
@@ -156,13 +156,13 @@
|
|
|
156
156
|
<h3>Fehlende Werte</h3>
|
|
157
157
|
<p>
|
|
158
158
|
Es ist möglich, mit den Feldnamen <code>_exists_</code> und
|
|
159
|
-
<code>
|
|
159
|
+
<code>NOT _exists_</code> nach Datensätzen zu suchen,
|
|
160
160
|
in denen entweder ein Wert fehlt oder die einen Wert in einem bestimmten Feld haben.
|
|
161
161
|
</p>
|
|
162
162
|
<p>
|
|
163
163
|
<strong>Beispiel:</strong>
|
|
164
164
|
<a
|
|
165
|
-
href="/search?page=1&size=20&q=
|
|
165
|
+
href="/search?page=1&size=20&q=NOT%20_exists_:metadata.additional_titles"><code>NOT _exists_:metadata.additional_titles</code></a>
|
|
166
166
|
(alle Datensätze ohne metadata.additional_titles)
|
|
167
167
|
</p>
|
|
168
168
|
<p>
|
|
@@ -87,7 +87,9 @@
|
|
|
87
87
|
>
|
|
88
88
|
</p>
|
|
89
89
|
<p>
|
|
90
|
-
See
|
|
90
|
+
See <a href="https://inveniordm.docs.cern.ch/reference/metadata/#metadata"
|
|
91
|
+
> the InvenioRDM documentation </a
|
|
92
|
+
> for the full list of fields you can search.
|
|
91
93
|
</p>
|
|
92
94
|
<h3>Combined simple, phrase or field search</h3>
|
|
93
95
|
<p>
|
|
@@ -152,6 +154,9 @@
|
|
|
152
154
|
<ul>
|
|
153
155
|
<li>Most recent</li>
|
|
154
156
|
<li>Best match</li>
|
|
157
|
+
<li>Oldest</li>
|
|
158
|
+
<li>Most viewed</li>
|
|
159
|
+
<li>Most downloaded</li>
|
|
155
160
|
</ul>
|
|
156
161
|
<h3>Regular expressions</h3>
|
|
157
162
|
<p>
|
|
@@ -179,13 +184,13 @@
|
|
|
179
184
|
<p>
|
|
180
185
|
It is possible to search for records that either are missing a value or have
|
|
181
186
|
a value in a specific field using the <code>_exists_</code> and
|
|
182
|
-
<code>
|
|
187
|
+
<code>NOT _exists_</code> field names.
|
|
183
188
|
</p>
|
|
184
189
|
<p>
|
|
185
190
|
<strong>Example:</strong>
|
|
186
|
-
<a href="/search?page=1&size=20&q=
|
|
187
|
-
|
|
188
|
-
>
|
|
191
|
+
<a href="/search?page=1&size=20&q=NOT%20_exists_:metadata.additional_titles">
|
|
192
|
+
<code>NOT _exists_:metadata.additional_titles</code>
|
|
193
|
+
</a>
|
|
189
194
|
(all records without metadata.additional_titles)
|
|
190
195
|
</p>
|
|
191
196
|
<p>
|
|
@@ -230,7 +235,7 @@
|
|
|
230
235
|
in exactly the same order, and thus for instance would not match a record
|
|
231
236
|
containing the phrase <em>"open access and science"</em>. A proximity search
|
|
232
237
|
allows that the terms are not in the exact order and may include other terms
|
|
233
|
-
|
|
238
|
+
in between. The degree of flexibility is specified by an integer afterwards:
|
|
234
239
|
</p>
|
|
235
240
|
<p>
|
|
236
241
|
<strong>Example:</strong>
|
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
{#
|
|
2
|
+
Copyright (C) 2021 CERN.
|
|
3
|
+
Copyright (C) 2024 KTH Royal Institute of Technology.
|
|
4
|
+
|
|
5
|
+
Invenio App RDM is free software; you can redistribute it and/or modify it
|
|
6
|
+
under the terms of the MIT License; see LICENSE file for more details.
|
|
7
|
+
#}
|
|
8
|
+
{%- set title = _("Search guide") %}
|
|
9
|
+
{%- extends config.BASE_TEMPLATE %}
|
|
10
|
+
|
|
11
|
+
{%- block page_body %}
|
|
12
|
+
<div class="ui container mt-25">
|
|
13
|
+
<h1>Sökguide</h1>
|
|
14
|
+
<p>
|
|
15
|
+
Denna guide förklarar hur man skriver avancerade sökfrågor med hjälp av lättförståeliga exempel.
|
|
16
|
+
</p>
|
|
17
|
+
<h3>Enkel sökning (en eller flera termer)</h3>
|
|
18
|
+
<p>
|
|
19
|
+
<strong>Exempel:</strong>
|
|
20
|
+
<a href="/search?page=1&size=20&q=open%20science"
|
|
21
|
+
><code>open science</code></a
|
|
22
|
+
>
|
|
23
|
+
</p>
|
|
24
|
+
<p>
|
|
25
|
+
Resultaten kommer att matcha poster som innehåller <em>termerna</em> <code>open</code>
|
|
26
|
+
<em>eller</em> <code>science</code> i <em>något fält</em>. Observera att grundord används, så exempelvis kommer <code>science</code> även att matcha
|
|
27
|
+
<code>sciences</code>. Sökresultaten rankas enligt en algoritm som tar hänsyn till dina söktermer.
|
|
28
|
+
</p>
|
|
29
|
+
<p>
|
|
30
|
+
Du kan kräva att <em>båda termerna är med</em> med hjälp av antingen
|
|
31
|
+
<code>+</code> eller <code>AND</code> operatorn:
|
|
32
|
+
</p>
|
|
33
|
+
<p>
|
|
34
|
+
<strong>Exempel:</strong>
|
|
35
|
+
<a href="/search?page=1&size=20&q=%2Bopen%20%2Bscience"
|
|
36
|
+
><code>+open +science</code></a
|
|
37
|
+
>
|
|
38
|
+
eller
|
|
39
|
+
<a href="/search?page=1&size=20&q=open%20AND%20science"
|
|
40
|
+
><code>open AND science</code></a
|
|
41
|
+
>
|
|
42
|
+
</p>
|
|
43
|
+
<p>
|
|
44
|
+
Du kan kräva att en eller flera termer <em>inte är med</em> med hjälp av antingen
|
|
45
|
+
<code>-</code> eller <code>NOT</code> operatorn:
|
|
46
|
+
</p>
|
|
47
|
+
<p>
|
|
48
|
+
<strong>Exempel:</strong>
|
|
49
|
+
<a href="/search?page=1&size=20&q=-open%20%2Bscience"
|
|
50
|
+
><code>-open +science</code></a
|
|
51
|
+
>
|
|
52
|
+
eller
|
|
53
|
+
<a href="/search?page=1&size=20&q=NOT%20open%20AND%20science"
|
|
54
|
+
><code>NOT open AND science</code></a
|
|
55
|
+
>
|
|
56
|
+
</p>
|
|
57
|
+
<h3>Frassökning</h3>
|
|
58
|
+
<p>
|
|
59
|
+
<strong>Exempel:</strong>
|
|
60
|
+
<a href="/search?page=1&size=20&q=%22open%20science%22"
|
|
61
|
+
><code>"open science"</code></a
|
|
62
|
+
>
|
|
63
|
+
</p>
|
|
64
|
+
<p>
|
|
65
|
+
Resultaten kommer att matcha poster som innehåller <em>frasen</em>
|
|
66
|
+
<code>open science</code> i <em>något fält</em>.
|
|
67
|
+
</p>
|
|
68
|
+
<h3>Fältsökning</h3>
|
|
69
|
+
<p>
|
|
70
|
+
<strong>Exempel:</strong>
|
|
71
|
+
<a href="/search?page=1&size=20&q=metadata.title:open"
|
|
72
|
+
><code>metadata.title:open</code></a
|
|
73
|
+
>
|
|
74
|
+
</p>
|
|
75
|
+
<p>
|
|
76
|
+
Resultaten kommer att matcha poster som innehåller <em>termen</em> <code>open</code> i
|
|
77
|
+
<em>fältet</em> <code>metadata.title</code>. Om du vill söka efter flera termer
|
|
78
|
+
i titeln måste du <strong>gruppera termerna</strong> med parentes:
|
|
79
|
+
</p>
|
|
80
|
+
<p>
|
|
81
|
+
<strong>Exempel:</strong>
|
|
82
|
+
<a href="/search?page=1&size=20&q=metadata.title:(open%20science%29"
|
|
83
|
+
><code>metadata.title:(open science)</code></a
|
|
84
|
+
>
|
|
85
|
+
</p>
|
|
86
|
+
<p>
|
|
87
|
+
Se <a href="https://inveniordm.docs.cern.ch/reference/metadata/#metadata"
|
|
88
|
+
>InvenioRDM-dokumentationen</a
|
|
89
|
+
> för en fullständig lista över fält du kan söka i.
|
|
90
|
+
</p>
|
|
91
|
+
<h3>Kombinerad enkel-, fras- eller fältsökning</h3>
|
|
92
|
+
<p>
|
|
93
|
+
<strong>Exempel:</strong>
|
|
94
|
+
<a
|
|
95
|
+
href="/search?page=1&size=20&q=%2Bmetadata.title:%22open%20science%22%20-metadata.title:policy"
|
|
96
|
+
><code>+metadata.title:"open science" -metadata.title:policy</code></a
|
|
97
|
+
>
|
|
98
|
+
eller t.ex.
|
|
99
|
+
<a href="/search?page=1&size=20&q=metadata.title:(-open%20%2Bscience%29"
|
|
100
|
+
><code>metadata.title:(-open +science)</code></a
|
|
101
|
+
>
|
|
102
|
+
</p>
|
|
103
|
+
<p>
|
|
104
|
+
Du kan kombinera enkel-, fras- och fältsökning för att konstruera avancerade sökfrågor.
|
|
105
|
+
</p>
|
|
106
|
+
<h3>Intervallsökning</h3>
|
|
107
|
+
<p>
|
|
108
|
+
<strong>Exempel:</strong>
|
|
109
|
+
<a
|
|
110
|
+
href="/search?page=1&size=20&q=metadata.publication_date:%5B2017%20TO%202018%5D"
|
|
111
|
+
><code>metadata.publication_date:[2017 TO 2018]</code></a
|
|
112
|
+
>
|
|
113
|
+
(notera att du måste skriva <code>TO</code> med versaler).
|
|
114
|
+
</p>
|
|
115
|
+
<p>
|
|
116
|
+
Resultaten kommer att matcha alla poster med ett publiceringsdatum mellan 2017-01-01 och
|
|
117
|
+
2018-01-01 (båda datumen inkluderade).
|
|
118
|
+
</p>
|
|
119
|
+
<p>Observera att partiella datum utökas till fullständiga datum, t.ex.:</p>
|
|
120
|
+
<ul>
|
|
121
|
+
<li>2017 utökas till 2017-01-01</li>
|
|
122
|
+
<li>2017-06 utökas till 2017-06-01</li>
|
|
123
|
+
</ul>
|
|
124
|
+
<p>
|
|
125
|
+
Använd hakparenteser (<code>[]</code>) för <em>inkluderande</em> intervall och
|
|
126
|
+
måsvingar (<code>{}</code>) för <em>exkluderande</em> intervall, t.ex.:
|
|
127
|
+
</p>
|
|
128
|
+
<ul>
|
|
129
|
+
<li>
|
|
130
|
+
<code>[2017 TO 2018}</code> är ekvivalent med
|
|
131
|
+
<code>[2017-01-01 TO 2017-12-31]</code> på grund av datumutökning och exklusivt övre gräns.
|
|
132
|
+
</li>
|
|
133
|
+
</ul>
|
|
134
|
+
<p>Exempel på andra intervall:</p>
|
|
135
|
+
<ul>
|
|
136
|
+
<li>
|
|
137
|
+
<code>metadata.publication_date:{* TO 2017-01-01}</code>: Alla dagar fram till 2017.
|
|
138
|
+
</li>
|
|
139
|
+
<li>
|
|
140
|
+
<code>metadata.publication_date:[2017-01-01 TO *]</code>: Alla dagar från 2017.
|
|
141
|
+
</li>
|
|
142
|
+
</ul>
|
|
143
|
+
<h3>Rankning/Sortering</h3>
|
|
144
|
+
<p>
|
|
145
|
+
Som standard sorteras alla sökningar enligt en intern rankningsalgoritm som poängsätter varje matchning mot din sökfråga. Både i användargränssnittet och REST API är det möjligt att sortera resultaten efter:
|
|
146
|
+
</p>
|
|
147
|
+
<ul>
|
|
148
|
+
<li>Senaste</li>
|
|
149
|
+
<li>Bästa matchning</li>
|
|
150
|
+
<li>Äldsta</li>
|
|
151
|
+
<li>Mest visade</li>
|
|
152
|
+
<li>Mest nedladdade</li>
|
|
153
|
+
</ul>
|
|
154
|
+
<h3>Reguljära uttryck</h3>
|
|
155
|
+
<p>
|
|
156
|
+
Reguljära uttryck är ett kraftfullt mönsterigenkänningsspråk som tillåter dig att
|
|
157
|
+
söka efter specifika mönster i ett fält. Till exempel, om vi vill hitta
|
|
158
|
+
alla poster med DOI-prefixet 10.5281 kan vi använda en sökning med reguljärt uttryck:
|
|
159
|
+
</p>
|
|
160
|
+
<p>
|
|
161
|
+
<strong>Exempel:</strong>
|
|
162
|
+
<a href="/search?page=1&size=20&q=metadata.subjects.identifier:%2F03yrm5c2%5B1%2C6%5D%2F"
|
|
163
|
+
><code>metadata.subjects.identifier:/03yrm5c2[1,6]/</code></a
|
|
164
|
+
>
|
|
165
|
+
</p>
|
|
166
|
+
<p>
|
|
167
|
+
Var försiktig, det reguljära uttrycket måste matcha <em>hela</em> fältvärdet.
|
|
168
|
+
Se
|
|
169
|
+
<a
|
|
170
|
+
href="https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-regexp-query.html#regexp-syntax"
|
|
171
|
+
>syntax för reguljära uttryck</a
|
|
172
|
+
>
|
|
173
|
+
för ytterligare detaljer.
|
|
174
|
+
</p>
|
|
175
|
+
<h3>Fält som saknar värden</h3>
|
|
176
|
+
<p>
|
|
177
|
+
Det är möjligt att söka efter poster som antingen saknar ett värde eller har
|
|
178
|
+
ett värde i ett specifikt fält med hjälp av <code>_exists_</code> och
|
|
179
|
+
<code>NOT _exists_</code> i kombination med fältnamn.
|
|
180
|
+
</p>
|
|
181
|
+
<p>
|
|
182
|
+
<strong>Exempel:</strong>
|
|
183
|
+
<a href="/search?page=1&size=20&q=NOT%20_exists_:metadata.additional_titles">
|
|
184
|
+
<code>NOT _exists_:metadata.additional_titles</code>
|
|
185
|
+
</a>
|
|
186
|
+
(alla poster utan metadata.additional_titles)
|
|
187
|
+
</p>
|
|
188
|
+
<p>
|
|
189
|
+
<strong>Exempel:</strong>
|
|
190
|
+
<a href="/search?page=1&size=20&q=_exists_:metadata.creators"
|
|
191
|
+
><code>_exists_:metadata.creators</code></a
|
|
192
|
+
>
|
|
193
|
+
(alla poster med metadata.creators)
|
|
194
|
+
</p>
|
|
195
|
+
<h3>Avancerade söktekniker</h3>
|
|
196
|
+
<h4>Boosting</h4>
|
|
197
|
+
<p>
|
|
198
|
+
Du kan använda boost-operatorn <code>^</code> när en term är mer relevant
|
|
199
|
+
än en annan. Till exempel kan du söka efter alla poster med frasen
|
|
200
|
+
<em>open science</em> i antingen <em>titel-</em> eller
|
|
201
|
+
<em>beskrivnings-</em> fältet, men ranka poster med frasen i
|
|
202
|
+
<em>titel</em> fältet högre:
|
|
203
|
+
</p>
|
|
204
|
+
<p>
|
|
205
|
+
<strong>Exempel:</strong>
|
|
206
|
+
<a
|
|
207
|
+
href="/search?page=1&size=20&q=metadata.title:%22open%20science%22%5E5%20metadata.description:%22open%20science%22"
|
|
208
|
+
><code>metadata.title:"open science"^5 metadata.description:"open science"</code></a
|
|
209
|
+
>
|
|
210
|
+
</p>
|
|
211
|
+
<h4>Fuzzy-sök</h4>
|
|
212
|
+
<p>
|
|
213
|
+
Du kan söka efter termer som är liknande men inte exakt samma som din sökterm
|
|
214
|
+
med hjälp av fuzzy-operatorn <code>~</code>.
|
|
215
|
+
</p>
|
|
216
|
+
<p>
|
|
217
|
+
<strong>Exempel:</strong>
|
|
218
|
+
<a href="/search?page=1&size=20&q=oepn~"><code>oepn~</code></a>
|
|
219
|
+
</p>
|
|
220
|
+
<p>
|
|
221
|
+
Resultaten kommer att matcha poster med termer liknande <code>oepn</code> vilket
|
|
222
|
+
till exempel även skulle matcha <code>open</code>.
|
|
223
|
+
</p>
|
|
224
|
+
<h4>Närhetssökningar</h4>
|
|
225
|
+
<p>
|
|
226
|
+
En frassökning med <code>"open science"</code> förväntar sig som standard att alla termer
|
|
227
|
+
är i exakt samma ordning, och skulle därmed till exempel inte matcha en post
|
|
228
|
+
som innehåller frasen <em>"open access and science"</em>. En närhetssökning
|
|
229
|
+
tillåter att termerna inte är i exakt följd och kan inkludera andra termer
|
|
230
|
+
emellan. Graden av flexibilitet specificeras av ett efterföljande heltal:
|
|
231
|
+
</p>
|
|
232
|
+
<p>
|
|
233
|
+
<strong>Exempel:</strong>
|
|
234
|
+
<a href="/search?page=1&size=20&q=%22open%20science%22~5"
|
|
235
|
+
><code>"open science"~5</code></a
|
|
236
|
+
>
|
|
237
|
+
</p>
|
|
238
|
+
<h4>Wildcard-tecken</h4>
|
|
239
|
+
<p>
|
|
240
|
+
Du kan använda wildcard-tecken i söktermer för att ersätta ett enda tecken (med
|
|
241
|
+
<code>?</code> operatorn) eller noll eller fler tecken (med
|
|
242
|
+
<code>*</code> operatorn).
|
|
243
|
+
</p>
|
|
244
|
+
<p>
|
|
245
|
+
<strong>Exempel:</strong>
|
|
246
|
+
<a href="/search?page=1&size=20&q=ope%3F%20scien*"
|
|
247
|
+
><code>ope? scien*</code></a
|
|
248
|
+
>
|
|
249
|
+
</p>
|
|
250
|
+
<p>
|
|
251
|
+
Wildcard-sökningar kan vara långsamma och bör normalt undvikas om möjligt.
|
|
252
|
+
</p>
|
|
253
|
+
</div>
|
|
254
|
+
{%- endblock page_body%}
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
{#
|
|
2
|
+
Copyright (C) 2021-2023 CERN.
|
|
3
|
+
Copyright (C) 2024 KTH Royal Institute of Technology.
|
|
4
|
+
|
|
5
|
+
Invenio App RDM är fri programvara; du kan återdistribuera och/eller modifiera den
|
|
6
|
+
enligt villkoren i MIT-licensen; se LICENSE-filen för mer information.
|
|
7
|
+
#}
|
|
8
|
+
{%- set title = _("FAQ statistics") %}
|
|
9
|
+
{%- extends config.BASE_TEMPLATE %}
|
|
10
|
+
|
|
11
|
+
{%- block page_body %}
|
|
12
|
+
<div class="ui two column grid container rel-mt-2">
|
|
13
|
+
<div class="ui row">
|
|
14
|
+
<div class="ui sixteen wide column">
|
|
15
|
+
<h2 id="statistics">Statistik</h2>
|
|
16
|
+
<p></p>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="ui eight wide column">
|
|
19
|
+
<h3>
|
|
20
|
+
<p>Vad spårar ni?</p>
|
|
21
|
+
</h3>
|
|
22
|
+
<p>Vi spårar två typer av händelser:</p>
|
|
23
|
+
<ol>
|
|
24
|
+
<li>Besök på en post-sida.</li>
|
|
25
|
+
<li>Nedladdningar av en fil.</li>
|
|
26
|
+
</ol>
|
|
27
|
+
<p>För båda typer av händelser spårar vi:</p>
|
|
28
|
+
<ol>
|
|
29
|
+
<li>
|
|
30
|
+
<strong>Besökare:</strong>
|
|
31
|
+
Ett anonymiserat besökar-ID.
|
|
32
|
+
</li>
|
|
33
|
+
<li>
|
|
34
|
+
<strong>Besökarkategori:</strong>
|
|
35
|
+
Om förfrågan gjordes av a) människa, b) maskin eller c) robot.
|
|
36
|
+
</li>
|
|
37
|
+
<li>
|
|
38
|
+
<strong>Land:</strong>
|
|
39
|
+
Ursprungsland för förfrågan (baserat på IP-adress).
|
|
40
|
+
</li>
|
|
41
|
+
<li>
|
|
42
|
+
<strong>Referens:</strong>
|
|
43
|
+
Domän från vilken besökaren kom.
|
|
44
|
+
</li>
|
|
45
|
+
</ol>
|
|
46
|
+
<h3>
|
|
47
|
+
<p>
|
|
48
|
+
Vad är en
|
|
49
|
+
<em>visning</em>
|
|
50
|
+
?
|
|
51
|
+
</p>
|
|
52
|
+
</h3>
|
|
53
|
+
<p>En användare (människa eller maskin) som besöker en post, exklusive dubbelklick och robotar.</p>
|
|
54
|
+
<h3>
|
|
55
|
+
<p>
|
|
56
|
+
Vad är en
|
|
57
|
+
<em>unik visning</em>
|
|
58
|
+
?
|
|
59
|
+
</p>
|
|
60
|
+
</h3>
|
|
61
|
+
<p>
|
|
62
|
+
En
|
|
63
|
+
<em>unik visning</em>
|
|
64
|
+
definieras som ett eller flera besök av en användare inom ett tidsfönster på 1 timme. Detta innebär att om samma
|
|
65
|
+
post besöks flera gånger av samma användare inom samma tidsfönster räknas det som en unik visning.
|
|
66
|
+
</p>
|
|
67
|
+
<h3>
|
|
68
|
+
<p>
|
|
69
|
+
Vad är en
|
|
70
|
+
<em>nedladdning</em>
|
|
71
|
+
?
|
|
72
|
+
</p>
|
|
73
|
+
</h3>
|
|
74
|
+
<p>En användare (människa eller maskin) som laddar ner en fil från en post, exklusive dubbelklick och robotar. Om en
|
|
75
|
+
post har flera filer och du laddar ner alla filer, räknas varje fil som en nedladdning.</p>
|
|
76
|
+
<h3>
|
|
77
|
+
<p>
|
|
78
|
+
Vad är en
|
|
79
|
+
<em>unik nedladdning</em>
|
|
80
|
+
?
|
|
81
|
+
</p>
|
|
82
|
+
</h3>
|
|
83
|
+
<p>
|
|
84
|
+
En
|
|
85
|
+
<em>unik nedladdning</em>
|
|
86
|
+
definieras som en eller flera nedladdningar från filer i en post av en användare inom ett tidsfönster på 1 timme.
|
|
87
|
+
Detta innebär att om en eller flera filer från samma post laddas ner flera gånger av samma användare inom samma
|
|
88
|
+
tidsfönster räknas det som en unik nedladdning.
|
|
89
|
+
</p>
|
|
90
|
+
<h3>
|
|
91
|
+
<p>
|
|
92
|
+
Vad är
|
|
93
|
+
<em>nedladdad datavolym</em>
|
|
94
|
+
?
|
|
95
|
+
</p>
|
|
96
|
+
</h3>
|
|
97
|
+
<p>Den totala datavolym som har laddats ner för alla filer i en post av en användare (människa eller maskin),
|
|
98
|
+
exklusive dubbelklick och robotar. Om en användare avbryter en nedladdning mitt i, räknar vi ändå hela filstorleken
|
|
99
|
+
som fullt nedladdad.</p><h3>
|
|
100
|
+
<p>Hur hanterar ni versioner?</p>
|
|
101
|
+
</h3>
|
|
102
|
+
<p>Som standard visar vi de sammanlagda räkningarna av visningar, nedladdningar och datavolymer för alla versioner av
|
|
103
|
+
en post. Du kan även expandera användningsstatistikrutan på en postsida för att se informationen för den specifika
|
|
104
|
+
versionen.</p>
|
|
105
|
+
<h3>
|
|
106
|
+
<p>Hur hanterar ni robotar?</p>
|
|
107
|
+
</h3>
|
|
108
|
+
<p>
|
|
109
|
+
Förfrågningar från robotar (även kallade crawlers, spindlar, bots) filtreras bort från användningsstatistiken. Vi
|
|
110
|
+
identifierar robotar baserat på en standardiserad lista från projekten
|
|
111
|
+
<a href="https://www.projectcounter.org/">COUNTER</a>
|
|
112
|
+
och
|
|
113
|
+
<a href="https://makedatacount.org/">Making Data Count</a>.
|
|
114
|
+
</p>
|
|
115
|
+
<h3>
|
|
116
|
+
<p>Hur ofta uppdateras användningsstatistiken?</p>
|
|
117
|
+
</h3>
|
|
118
|
+
<p>En gång om dagen.</p>
|
|
119
|
+
<h3>
|
|
120
|
+
<p>Hur kan jag se de mest visade posterna?</p>
|
|
121
|
+
</h3>
|
|
122
|
+
<p>
|
|
123
|
+
Vid sökningar på {{ config.THEME_SITENAME }} kan du sortera sökresultaten efter "
|
|
124
|
+
<a href="https://zenodo.org/search?sort=mostviewed">mest visade</a>
|
|
125
|
+
".
|
|
126
|
+
</p>
|
|
127
|
+
<h3>
|
|
128
|
+
<p>Hur spårar ni?</p>
|
|
129
|
+
</h3>
|
|
130
|
+
<p>
|
|
131
|
+
Vi följer
|
|
132
|
+
<a href="https://www.projectcounter.org/">COUNTER Code of Practice</a>
|
|
133
|
+
samt
|
|
134
|
+
<a href="https://peerj.com/preprints/26505/">Code of Practice for Research Data Usage Metrics</a>
|
|
135
|
+
i vår spårning. Detta innebär att vår användningsstatistik kan jämföras med andra COUNTER-kompatibla arkiv.
|
|
136
|
+
</p>
|
|
137
|
+
</div>
|
|
138
|
+
<div class="ui eight wide column">
|
|
139
|
+
<h3>
|
|
140
|
+
<p>Vad är skillnaden mellan en maskin och en robot?</p>
|
|
141
|
+
</h3>
|
|
142
|
+
<p>
|
|
143
|
+
En
|
|
144
|
+
<em>maskinförfrågan</em>
|
|
145
|
+
är en automatiserad förfrågan initierad av en mänsklig användare, t.ex. ett skript som laddar ner data från {{
|
|
146
|
+
config.THEME_SITENAME }} och kör en analys på datan. En
|
|
147
|
+
<em>robotförfrågan</em>
|
|
148
|
+
är en automatiserad förfrågan gjord av t.ex. en sökmotorcrawler.
|
|
149
|
+
</p>
|
|
150
|
+
<h3>
|
|
151
|
+
<p>Hur anonymiserar ni användare?</p>
|
|
152
|
+
</h3>
|
|
153
|
+
<p>För varje visnings-/nedladdningshändelse spårar vi ett anonymiserat besökar-ID. Detta anonymiserade besökar-ID
|
|
154
|
+
ändras för en användare var 24:e timme, så en användare som besöker samma post två olika dagar får två olika
|
|
155
|
+
anonymiserade besökar-ID. Syftet med att spåra ett anonymiserat besökar-ID är att kunna räkna unika visningar och
|
|
156
|
+
nedladdningar.</p>
|
|
157
|
+
<p>
|
|
158
|
+
Av säkerhetsskäl behåller vi även en webbserverlogg som inkluderar din
|
|
159
|
+
<a href="https://en.wikipedia.org/wiki/IP_address">IP-adress</a>
|
|
160
|
+
och din webbläsares
|
|
161
|
+
<a href="https://en.wikipedia.org/wiki/User_agent">user agent</a>
|
|
162
|
+
-sträng. Denna logg raderas automatiskt efter högst ett år och är strikt separerad från insamlingen av användningsstatistik.
|
|
163
|
+
</p>
|
|
164
|
+
<p>Det anonymiserade besökar-ID:et genereras från en personlig identifierare, exempelvis:</p>
|
|
165
|
+
<ol>
|
|
166
|
+
<li>ett användar-ID (t.ex. om du är inloggad på zenodo.org),</li>
|
|
167
|
+
<li>ett sessions-ID,</li>
|
|
168
|
+
<li>eller en IP-adress och din webbläsares user agent-sträng.</li>
|
|
169
|
+
</ol>
|
|
170
|
+
<p>
|
|
171
|
+
Vi kombinerar den personliga identifieraren med ett slumpmässigt textvärde (ett salt) och tillämpar en envägs-
|
|
172
|
+
<a href="https://en.wikipedia.org/wiki/Cryptographic_hash_function">kryptografisk hash-funktion</a>
|
|
173
|
+
för att kryptera datan. Saltet (slumpvärdet) kastas bort och genereras om var 24:e timme. Genom att använda och
|
|
174
|
+
sedan kasta bort det slumpmässiga saltet säkerställs att det anonymiserade besökar-ID:et är helt slumpmässigt.
|
|
175
|
+
</p>
|
|
176
|
+
<h3>
|
|
177
|
+
<p>Kan jag välja bort att bli spårad i användningsstatistiken?</p>
|
|
178
|
+
</h3>
|
|
179
|
+
<p>Nej, det är inte möjligt att välja bort. Spårningen för användningsstatistik är fullt anonymiserad och sker på
|
|
180
|
+
serversidan.</p>
|
|
181
|
+
<h3>
|
|
182
|
+
<p>Stödjer ni användningsstatistik för en community?</p>
|
|
183
|
+
</h3>
|
|
184
|
+
<p>Inte än, men vi kommer att lägga till aggregerad användningsstatistik för communities.</p>
|
|
185
|
+
<h3>
|
|
186
|
+
<p>Spårar ni mina sökningar?</p>
|
|
187
|
+
</h3>
|
|
188
|
+
<p>Nej.</p>
|
|
189
|
+
<h3>
|
|
190
|
+
<p>Gör ni någon manuell eller automatisk profilering av användare?</p>
|
|
191
|
+
</h3>
|
|
192
|
+
<p>Nej.</p>
|
|
193
|
+
</div>
|
|
194
|
+
</div>
|
|
195
|
+
</div>
|
|
196
|
+
{% endblock page_body %}
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
{#
|
|
2
|
+
Copyright (C) 2021-2023 CERN.
|
|
3
|
+
Copyright (C) 2021 Northwestern University.
|
|
4
|
+
|
|
5
|
+
Invenio App RDM is free software; you can redistribute it and/or modify it
|
|
6
|
+
under the terms of the MIT License; see LICENSE file for more details.
|
|
7
|
+
#}
|
|
8
|
+
{%- set title = _("FAQ versioning") %}
|
|
9
|
+
{%- extends config.BASE_TEMPLATE %}
|
|
10
|
+
|
|
11
|
+
{%- block page_body %}
|
|
12
|
+
<div class="ui two column grid container rel-mt-2">
|
|
13
|
+
<div class="ui row">
|
|
14
|
+
<div class="ui sixteen wide column">
|
|
15
|
+
<h2 id="versioning">DOI versioning</h2>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="ui eight wide column">
|
|
18
|
+
<h5>
|
|
19
|
+
<p>What is DOI versioning?</p>
|
|
20
|
+
</h5>
|
|
21
|
+
<p>DOI versioning allows you to:</p>
|
|
22
|
+
<ul>
|
|
23
|
+
<li>edit/update the record’s files after they have been published.</li>
|
|
24
|
+
<li>cite a specific version of a record.</li>
|
|
25
|
+
<li>cite all of versions of a record.</li>
|
|
26
|
+
</ul>
|
|
27
|
+
<h5>
|
|
28
|
+
<p>How does DOI versioning work?</p>
|
|
29
|
+
</h5>
|
|
30
|
+
<p>
|
|
31
|
+
When you publish an upload for the first time, we register two DOIs:
|
|
32
|
+
</p>
|
|
33
|
+
<ul>
|
|
34
|
+
<li>
|
|
35
|
+
a DOI representing the <strong>specific version</strong> of your record.
|
|
36
|
+
</li>
|
|
37
|
+
<li>
|
|
38
|
+
a DOI representing <strong>all of the versions</strong> of your record.
|
|
39
|
+
</li>
|
|
40
|
+
</ul>
|
|
41
|
+
<p>Afterwards, we register a DOI for every new version of your upload.</p>
|
|
42
|
+
<p>
|
|
43
|
+
This is best illustrated by an example of a software package. If the
|
|
44
|
+
software has been released in two versions (v1.0 and v1.1), then
|
|
45
|
+
the following DOIs would have been registered:
|
|
46
|
+
</p>
|
|
47
|
+
<ul>
|
|
48
|
+
<li><strong>v1.0 (specific version):</strong> 10.1234/7s0da-05p39</li>
|
|
49
|
+
<li><strong>v1.1 (specific version):</strong> 10.1234/chc5z-w0r30</li>
|
|
50
|
+
<li><strong>Concept (all versions):</strong> 10.1234/3s67k-pd636</li>
|
|
51
|
+
</ul>
|
|
52
|
+
<p>
|
|
53
|
+
The first two DOIs for versions <strong>v1.0</strong> and
|
|
54
|
+
<strong>v.1.1</strong> represent the specific versions of the software.
|
|
55
|
+
The last DOI represents all the versions of the given software package,
|
|
56
|
+
i.e. the concept of the software package and the ensemble of versions. We
|
|
57
|
+
therefore also call the them <strong>Version DOIs</strong> and
|
|
58
|
+
<strong>Concept DOIs</strong> (note, technically both are just normal
|
|
59
|
+
DOIs).
|
|
60
|
+
</p>
|
|
61
|
+
<p>
|
|
62
|
+
You may notice that the version DOIs do not include a “.v1”-suffix. Read
|
|
63
|
+
below to find out why.
|
|
64
|
+
</p>
|
|
65
|
+
<h5>
|
|
66
|
+
<p>Which DOI should I use in citations?</p>
|
|
67
|
+
</h5>
|
|
68
|
+
<p>
|
|
69
|
+
You should normally always use the DOI for the
|
|
70
|
+
<strong>specific version</strong> of your record in citations. This is to
|
|
71
|
+
ensure that other researchers can access the
|
|
72
|
+
<strong>exact</strong> research artefact you used for reproducibility. By
|
|
73
|
+
default, we use the specific version to generate citations.
|
|
74
|
+
</p>
|
|
75
|
+
<p>
|
|
76
|
+
You can use the Concept DOI representing all versions in citations when it
|
|
77
|
+
is desirable to cite an evolving research artifact, without being specific
|
|
78
|
+
about the version.
|
|
79
|
+
</p>
|
|
80
|
+
<h5>
|
|
81
|
+
<p>Where does the Concept DOI resolve to?</p>
|
|
82
|
+
</h5>
|
|
83
|
+
<p>
|
|
84
|
+
The Concept DOI resolves to the landing page of the latest
|
|
85
|
+
version of your record.
|
|
86
|
+
</p>
|
|
87
|
+
</div>
|
|
88
|
+
<div class="ui eight wide column">
|
|
89
|
+
<h5>
|
|
90
|
+
<p>
|
|
91
|
+
I only want to change the title of my upload, do I still get a new DOI?
|
|
92
|
+
</p>
|
|
93
|
+
</h5>
|
|
94
|
+
<p>
|
|
95
|
+
No, you can continue to edit the metadata of your upload without
|
|
96
|
+
creating a new version of a record. You should only create a new version
|
|
97
|
+
if you want to update the files of your record.
|
|
98
|
+
</p>
|
|
99
|
+
|
|
100
|
+
<h5>
|
|
101
|
+
<p>Why don’t the DOIs have a version number suffix like “.v1”?</p>
|
|
102
|
+
</h5>
|
|
103
|
+
<p>
|
|
104
|
+
Including semantic information such as the version number in a DOI is bad
|
|
105
|
+
practice, because this information may change over time, while DOIs must
|
|
106
|
+
remain persistent and should not change.
|
|
107
|
+
</p>
|
|
108
|
+
<p>
|
|
109
|
+
Moreover, DOI versioning is linear, which means that the version number may
|
|
110
|
+
in fact not be the real version number of the resource.
|
|
111
|
+
Take for instance software, where it is common practice to have dot
|
|
112
|
+
versions and make new releases in a non-linear order (e.g. first v1.0,
|
|
113
|
+
then v1.1, then v2.0, then v1.2).
|
|
114
|
+
</p>
|
|
115
|
+
<p>
|
|
116
|
+
The versioning suffix is also not a functionality of the DOI system, i.e.
|
|
117
|
+
adding .v2 to a DOI will not resolve to version 2 of a resource for any DOI
|
|
118
|
+
from any provider. Different providers also use different patterns such as
|
|
119
|
+
e.g. .v2, .2, /2.
|
|
120
|
+
</p>
|
|
121
|
+
<p>
|
|
122
|
+
Most importantly, version suffixes are not machine readable. A discovery
|
|
123
|
+
system that understands DOIs, will not know that .v1 and .v2 of a DOI are
|
|
124
|
+
in fact two versions of the same resource.
|
|
125
|
+
</p>
|
|
126
|
+
<p>
|
|
127
|
+
A better solution to this problem is to semantically link two DOIs in the
|
|
128
|
+
metadata of a DOI. This ensures that discovery systems have a
|
|
129
|
+
machine-readable way to discover that two DOIs are versions of the same
|
|
130
|
+
resource.
|
|
131
|
+
</p>
|
|
132
|
+
<p>
|
|
133
|
+
See also <a href="https://doi.org/10.5438/55E5-T5C0">Cool DOIs</a> for
|
|
134
|
+
further information.
|
|
135
|
+
</p>
|
|
136
|
+
|
|
137
|
+
<h5>
|
|
138
|
+
<p>Do you duplicate all the files for every new version of a record?</p>
|
|
139
|
+
</h5>
|
|
140
|
+
<p>
|
|
141
|
+
No, if you change a 10kb README file in 50GB dataset we do not duplicate
|
|
142
|
+
the entire 50GB dataset. InvenioRDM, the underlying technical software
|
|
143
|
+
platform, efficiently handles the file storage so we only store the new
|
|
144
|
+
extra 10kb.
|
|
145
|
+
</p>
|
|
146
|
+
</div>
|
|
147
|
+
</div>
|
|
148
|
+
</div>
|
|
149
|
+
{% endblock page_body %}
|