invenio-app-rdm 8.0.0.dev9__py2.py3-none-any.whl → 14.0.0b4.dev4__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 +13 -4
- invenio_app_rdm/administration/__init__.py +8 -0
- invenio_app_rdm/administration/audit_logs/__init__.py +12 -0
- 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 +93 -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/administration/user_moderation/__init__.py +11 -0
- 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/administration/views/__init__.py +11 -0
- invenio_app_rdm/administration/views/ui.py +21 -0
- invenio_app_rdm/cli.py +95 -0
- invenio_app_rdm/communities_ui/__init__.py +9 -0
- invenio_app_rdm/communities_ui/searchapp.py +27 -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/records/index.html +24 -0
- invenio_app_rdm/communities_ui/views/__init__.py +13 -0
- invenio_app_rdm/communities_ui/views/communities.py +206 -0
- invenio_app_rdm/communities_ui/views/ui.py +93 -0
- invenio_app_rdm/config.py +1072 -182
- invenio_app_rdm/ext.py +157 -0
- invenio_app_rdm/fixtures/__init__.py +56 -0
- invenio_app_rdm/fixtures/data/oai_sets.yaml +6 -0
- invenio_app_rdm/fixtures/oai_sets.py +20 -0
- invenio_app_rdm/fixtures/pages/.gitkeep +1 -0
- invenio_app_rdm/fixtures/pages.py +76 -0
- invenio_app_rdm/records_ui/previewer/__init__.py +9 -0
- invenio_app_rdm/records_ui/previewer/iiif_simple.py +51 -0
- invenio_app_rdm/records_ui/searchapp.py +46 -232
- invenio_app_rdm/records_ui/sitemap.py +44 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +63 -18
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +316 -169
- 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 +299 -167
- 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 +34 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html +20 -15
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html +18 -41
- 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 +33 -6
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html +5 -9
- 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 +112 -90
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html +21 -19
- 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 +3 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html +3 -7
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html +69 -48
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +234 -49
- 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 +170 -71
- 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/stats_popup.html +21 -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/search.html +3 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +55 -12
- invenio_app_rdm/records_ui/utils.py +127 -2
- invenio_app_rdm/records_ui/views/__init__.py +114 -38
- invenio_app_rdm/records_ui/views/decorators.py +395 -117
- invenio_app_rdm/records_ui/views/deposits.py +414 -104
- invenio_app_rdm/records_ui/views/filters.py +118 -11
- invenio_app_rdm/records_ui/views/records.py +395 -66
- invenio_app_rdm/redirector/__init__.py +8 -0
- invenio_app_rdm/redirector/resource.py +106 -0
- invenio_app_rdm/redirector/views.py +18 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-inclusion/index.html +14 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html +38 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html +26 -0
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html +129 -0
- 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 +78 -0
- 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/__init__.py +1 -3
- invenio_app_rdm/requests_ui/views/requests.py +345 -53
- invenio_app_rdm/requests_ui/views/ui.py +38 -9
- invenio_app_rdm/tasks.py +45 -0
- 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 +79 -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/UserModerationBulkActions.js +0 -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 +84 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchBarElement.js +44 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSingleSearchBarElement.js +46 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/components.js +3 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/index.js +66 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactStats.js +52 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js +61 -39
- 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 +189 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +788 -307
- 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 +27 -13
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js +165 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/index.js +23 -0
- 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 +179 -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 +30 -16
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js +68 -0
- 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 +68 -73
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js +150 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +90 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearch.js +109 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearchItem.js +58 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/index.js +3 -0
- 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 +123 -43
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +143 -79
- 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 +111 -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 +236 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/LinksTab.js +106 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessRequests/AccessRequestsTab.js +239 -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} +23 -6
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareModal.js +252 -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 +92 -124
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +131 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/index.js +13 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/mapping.js +12 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/AccessRequestExpiration.js +61 -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 +165 -299
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/index.js +48 -20
- 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 +164 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/base.js +210 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/communities.js +56 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/requests.js +78 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads.js +210 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/ComputerTabletUploadsItem.js +155 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/MobileUploadsItem.js +154 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js +85 -74
- 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 +26 -70
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/previewer/iiif_simple.less +16 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.overrides +170 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.overrides +110 -17
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/grid.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.overrides +395 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/menu.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.overrides +34 -8
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.variables +6 -9
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.overrides +185 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.variables +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides +103 -15
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.variables +5 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.overrides +121 -13
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.variables +6 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.overrides +61 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.overrides +29 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/icon.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.overrides +115 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/image.variables +4 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.overrides +50 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/input.variables +5 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.overrides +116 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/label.variables +0 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.overrides +68 -37
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/list.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.overrides +80 -7
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.overrides +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +557 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.variables +142 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +161 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.variables +9 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.overrides +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.overrides +116 -12
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.variables +4 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.overrides +151 -0
- 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/tab.overrides +3 -23
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.variables +3 -5
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.overrides +67 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.variables +3 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/theme.less +71 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.overrides +168 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.variables +2 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.overrides +463 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.variables +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.overrides +164 -10
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.variables +0 -0
- 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 +951 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +307 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +895 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +896 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +961 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +897 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +830 -160
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +282 -88
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +883 -4
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +259 -65
- 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 +290 -63
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +960 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +896 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +895 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +960 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +901 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +289 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +952 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +17 -6
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +905 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +895 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +283 -0
- 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 +907 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +895 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +910 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +901 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +908 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +289 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +958 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +908 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +951 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +952 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +283 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +910 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +295 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +891 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +889 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +277 -0
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +5 -8
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +872 -142
- invenio_app_rdm/theme/static/images/gnd-icon.svg +27 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/administration_page.html +19 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/default_static_page.html +33 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html +31 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html +32 -79
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html +40 -57
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html +114 -76
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html +16 -13
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html +151 -61
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html +3 -3
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html +12 -7
- 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.en.html +197 -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 +98 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/javascript.html +12 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +50 -0
- 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 +63 -0
- 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/semantic-ui/invenio_previewer/latest_record.html +18 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_previewer/rdm_abstract_previewer.html +30 -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 +106 -37
- invenio_app_rdm/theme/webpack.py +72 -36
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +1389 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +1362 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1398 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +1363 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1085 -372
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +987 -367
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +1389 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +1364 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1390 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +1402 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +1366 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +1361 -0
- 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 +1361 -0
- invenio_app_rdm/translations/messages.pot +1046 -271
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1391 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1384 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +1362 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +1400 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +1340 -63
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +1363 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +1363 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +1361 -0
- invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_1_0_to_2_0.py +1 -0
- invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py +90 -0
- invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py +47 -0
- 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_13_0_to_14_0.py +268 -0
- invenio_app_rdm/upgrade_scripts/migrate_2_0_to_3_0.py +7 -3
- invenio_app_rdm/upgrade_scripts/migrate_3_0_to_4_0.py +4 -6
- invenio_app_rdm/upgrade_scripts/migrate_4_0_to_6_0.py +30 -43
- invenio_app_rdm/upgrade_scripts/migrate_6_0_to_7_0.py +1 -5
- invenio_app_rdm/upgrade_scripts/migrate_7_0_to_8_0.py +7 -11
- invenio_app_rdm/upgrade_scripts/migrate_8_0_to_9_0.py +98 -0
- invenio_app_rdm/upgrade_scripts/migrate_9_0_to_10_0.py +43 -0
- invenio_app_rdm/users/schemas.py +27 -0
- invenio_app_rdm/users_ui/__init__.py +9 -0
- invenio_app_rdm/users_ui/searchapp.py +53 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/base.html +21 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/communities.html +25 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/header.html +46 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/requests.html +24 -0
- invenio_app_rdm/users_ui/templates/semantic-ui/invenio_app_rdm/users/uploads.html +25 -0
- invenio_app_rdm/users_ui/views/__init__.py +14 -0
- invenio_app_rdm/users_ui/views/dashboard.py +59 -0
- invenio_app_rdm/users_ui/views/ui.py +68 -0
- invenio_app_rdm/utils/files.py +120 -0
- invenio_app_rdm/views.py +21 -0
- invenio_app_rdm-14.0.0b4.dev4.dist-info/METADATA +627 -0
- invenio_app_rdm-14.0.0b4.dev4.dist-info/RECORD +508 -0
- {invenio_app_rdm-8.0.0.dev9.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/WHEEL +1 -1
- invenio_app_rdm-14.0.0b4.dev4.dist-info/entry_points.txt +44 -0
- invenio_app_rdm/admin.py +0 -36
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/dashboard.html +0 -47
- invenio_app_rdm/records_ui/views/utils.py +0 -27
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/Image.js +0 -36
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareModal.js +0 -257
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/base.js +0 -140
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/communities.js +0 -200
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/requests.js +0 -394
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/components/uploads.js +0 -287
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/index.js +0 -155
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm_requests/menuTabInit.js +0 -24
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/deposit.less +0 -158
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/export_page.less +0 -20
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/footer.less +0 -88
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/frontpage.less +0 -97
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/details.less +0 -53
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/sidebar.less +0 -47
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page.less +0 -423
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/navbar.less +0 -305
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/search.less +0 -52
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme.less +0 -492
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/variables.less +0 -60
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm_requests/theme.less +0 -22
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next-scanner.config.js +0 -63
- 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 -39
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js +0 -20
- invenio_app_rdm/theme/templates/semantic-ui/invenio_requests/community-submission/index.html +0 -67
- invenio_app_rdm/version.py +0 -23
- invenio_app_rdm-8.0.0.dev9.dist-info/AUTHORS.rst +0 -11
- invenio_app_rdm-8.0.0.dev9.dist-info/METADATA +0 -74
- invenio_app_rdm-8.0.0.dev9.dist-info/RECORD +0 -179
- invenio_app_rdm-8.0.0.dev9.dist-info/entry_points.txt +0 -14
- /invenio_app_rdm/{translations/.gitkeep → fixtures/data/pages.yaml} +0 -0
- {invenio_app_rdm-8.0.0.dev9.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info/licenses}/LICENSE +0 -0
- {invenio_app_rdm-8.0.0.dev9.dist-info → invenio_app_rdm-14.0.0b4.dev4.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,197 @@
|
|
|
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 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">Statistics</h2>
|
|
16
|
+
<p></p>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="ui eight wide column">
|
|
19
|
+
<h3>
|
|
20
|
+
<p>What do you track?</p>
|
|
21
|
+
</h3>
|
|
22
|
+
<p>We track two types of events:</p>
|
|
23
|
+
<ol>
|
|
24
|
+
<li>Visits to a record page.</li>
|
|
25
|
+
<li>Downloads of a file.</li>
|
|
26
|
+
</ol>
|
|
27
|
+
<p>For both types of events, we track:</p>
|
|
28
|
+
<ol>
|
|
29
|
+
<li>
|
|
30
|
+
<strong>Visitor:</strong>
|
|
31
|
+
An anonymized visitor ID.
|
|
32
|
+
</li>
|
|
33
|
+
<li>
|
|
34
|
+
<strong>Visitor type:</strong>
|
|
35
|
+
If the request was made by a) human, b) machine or c) robot.
|
|
36
|
+
</li>
|
|
37
|
+
<li>
|
|
38
|
+
<strong>Country:</strong>
|
|
39
|
+
The country of origin of the request (based on the IP address).
|
|
40
|
+
</li>
|
|
41
|
+
<li>
|
|
42
|
+
<strong>Referrer:</strong>
|
|
43
|
+
The referrer domain.
|
|
44
|
+
</li>
|
|
45
|
+
</ol>
|
|
46
|
+
<h3>
|
|
47
|
+
<p>
|
|
48
|
+
What is a
|
|
49
|
+
<em>view</em>
|
|
50
|
+
?
|
|
51
|
+
</p>
|
|
52
|
+
</h3>
|
|
53
|
+
<p>A user (human or machine) visiting a record, excluding double-clicks and robots.</p>
|
|
54
|
+
<h3>
|
|
55
|
+
<p>
|
|
56
|
+
What is a
|
|
57
|
+
<em>unique view</em>
|
|
58
|
+
?
|
|
59
|
+
</p>
|
|
60
|
+
</h3>
|
|
61
|
+
<p>
|
|
62
|
+
A
|
|
63
|
+
<em>unique view</em>
|
|
64
|
+
is defined as one or more visits by a user within a 1-hour time-window. This means that if the same record was
|
|
65
|
+
accessed multiple times by the same user within the same time-window, we consider it as one unique view.
|
|
66
|
+
</p>
|
|
67
|
+
<h3>
|
|
68
|
+
<p>
|
|
69
|
+
What is a
|
|
70
|
+
<em>download</em>
|
|
71
|
+
?
|
|
72
|
+
</p>
|
|
73
|
+
</h3>
|
|
74
|
+
<p>A user (human or machine) downloading a file from a record, excluding double-clicks and robots. If a record has
|
|
75
|
+
multiple files and you download all files, each file counts as one download.</p>
|
|
76
|
+
<h3>
|
|
77
|
+
<p>
|
|
78
|
+
What is a
|
|
79
|
+
<em>unique download</em>
|
|
80
|
+
?
|
|
81
|
+
</p>
|
|
82
|
+
</h3>
|
|
83
|
+
<p>
|
|
84
|
+
A
|
|
85
|
+
<em>unique download</em>
|
|
86
|
+
is defined as one or more file downloads from files of a single record by a user within a 1-hour time-window. This
|
|
87
|
+
means that if one or more files of the same record were downloaded multiple times by the same user within the same
|
|
88
|
+
time-window, we consider it as one unique download.
|
|
89
|
+
</p>
|
|
90
|
+
<h3>
|
|
91
|
+
<p>
|
|
92
|
+
What is
|
|
93
|
+
<em>downloaded data volume</em>
|
|
94
|
+
?
|
|
95
|
+
</p>
|
|
96
|
+
</h3>
|
|
97
|
+
<p>The total data volume that has been downloaded for all files in a record by a user (human or machine), excluding
|
|
98
|
+
double-clicks and robots. In case a user cancels a file download mid-way, we still count the total file size as
|
|
99
|
+
fully downloaded.</p><h3>
|
|
100
|
+
<p>How do you deal with versions?</p>
|
|
101
|
+
</h3>
|
|
102
|
+
<p>By default, for a record, we display the aggregated counts of views, downloads and data volume for all versions
|
|
103
|
+
of a record. You can further expand the usage statistics box on a record page to see the counts for the specific
|
|
104
|
+
version.</p>
|
|
105
|
+
<h3>
|
|
106
|
+
<p>How do you deal with robots?</p>
|
|
107
|
+
</h3>
|
|
108
|
+
<p>
|
|
109
|
+
Requests made by robots (aka crawlers, spiders, bots) are filtered out from the usage statistics. We detect robots
|
|
110
|
+
based on a standardized list of robots provided by the
|
|
111
|
+
<a href="https://www.projectcounter.org/">COUNTER</a>
|
|
112
|
+
and
|
|
113
|
+
<a href="https://makedatacount.org/">Making Data Count</a>
|
|
114
|
+
projects.
|
|
115
|
+
</p>
|
|
116
|
+
<h3>
|
|
117
|
+
<p>How often do you update usage statistics?</p>
|
|
118
|
+
</h3>
|
|
119
|
+
<p>Once a day.</p>
|
|
120
|
+
<h3>
|
|
121
|
+
<p>How can I see the most viewed records?</p>
|
|
122
|
+
</h3>
|
|
123
|
+
<p>
|
|
124
|
+
Any search on {{ config.THEME_SITENAME }} allows you to sort the search results by "
|
|
125
|
+
<a href="https://zenodo.org/search?sort=mostviewed">most viewed</a>
|
|
126
|
+
".
|
|
127
|
+
</p>
|
|
128
|
+
<h3>
|
|
129
|
+
<p>How do you track?</p>
|
|
130
|
+
</h3>
|
|
131
|
+
<p>
|
|
132
|
+
We comply with the
|
|
133
|
+
<a href="https://www.projectcounter.org/">COUNTER Code of Practice</a>
|
|
134
|
+
as well as the
|
|
135
|
+
<a href="https://peerj.com/preprints/26505/">Code of Practice for Research Data Usage Metrics</a>
|
|
136
|
+
in our tracking. This means that our usage statistics can be compared with other COUNTER-compliant repositories.
|
|
137
|
+
</p>
|
|
138
|
+
</div>
|
|
139
|
+
<div class="ui eight wide column">
|
|
140
|
+
<h3>
|
|
141
|
+
<p>What is the difference between a machine and a robot?</p>
|
|
142
|
+
</h3>
|
|
143
|
+
<p>
|
|
144
|
+
A
|
|
145
|
+
<em>machine request</em>
|
|
146
|
+
is an automated request initiated by a human user, e.g. a script downloading data from {{ config.THEME_SITENAME }} and running an
|
|
147
|
+
analysis on the data. A
|
|
148
|
+
<em>robot request</em>
|
|
149
|
+
is an automated request made by e.g. a search engine crawler.
|
|
150
|
+
</p>
|
|
151
|
+
<h3>
|
|
152
|
+
<p>How do you anonymize users?</p>
|
|
153
|
+
</h3>
|
|
154
|
+
<p>For each view/download event, we track an anonymized visitor ID. This anonymized visitor ID changes for a user
|
|
155
|
+
every 24 hours, hence a user viewing the same record on two different days will have two different anonymized
|
|
156
|
+
visitor IDs. The reason we track an anonymized visitor ID is in order to count unique views and downloads.</p>
|
|
157
|
+
<p>
|
|
158
|
+
For security purposes, we also keep a web server access log which includes your
|
|
159
|
+
<a href="https://en.wikipedia.org/wiki/IP_address">IP address</a>
|
|
160
|
+
and your browser’s
|
|
161
|
+
<a href="https://en.wikipedia.org/wiki/User_agent">user agent</a>
|
|
162
|
+
string. This web server access log is automatically deleted after maximum 1 year and is also strictly separated
|
|
163
|
+
from the usage statistics collection.
|
|
164
|
+
</p>
|
|
165
|
+
<p>The anonymized visitor ID is generated from a personal identifier such as:</p>
|
|
166
|
+
<ol>
|
|
167
|
+
<li>a user ID (e.g. if you are logged in on zenodo.org),</li>
|
|
168
|
+
<li>a session ID,</li>
|
|
169
|
+
<li>or an IP address and your browser’s user-agent string.</li>
|
|
170
|
+
</ol>
|
|
171
|
+
<p>
|
|
172
|
+
We combine the personal identifier with a random text value (a salt) and apply a one-way
|
|
173
|
+
<a href="https://en.wikipedia.org/wiki/Cryptographic_hash_function">cryptographic hash function</a>
|
|
174
|
+
to scramble the data. The salt (random text value) is thrown away and regenerated every 24 hours. Using and
|
|
175
|
+
afterwards throwing away the random salt, ensures that the anonymized visitor ID is fully random.
|
|
176
|
+
</p>
|
|
177
|
+
<h3>
|
|
178
|
+
<p>Can I opt-out of the usage statistics tracking?</p>
|
|
179
|
+
</h3>
|
|
180
|
+
<p>No, it is not possible to opt-out. The usage statistics tracking is fully anonymized and is done on the
|
|
181
|
+
server-side.</p>
|
|
182
|
+
<h3>
|
|
183
|
+
<p>Do you support usage statistics for a community?</p>
|
|
184
|
+
</h3>
|
|
185
|
+
<p>Not yet, but we will be adding aggregated usage statistics for your communities.</p>
|
|
186
|
+
<h3>
|
|
187
|
+
<p>Do you track my search queries?</p>
|
|
188
|
+
</h3>
|
|
189
|
+
<p>No.</p>
|
|
190
|
+
<h3>
|
|
191
|
+
<p>Do you do any manual or automatic profiling of users?</p>
|
|
192
|
+
</h3>
|
|
193
|
+
<p>No.</p>
|
|
194
|
+
</div>
|
|
195
|
+
</div>
|
|
196
|
+
</div>
|
|
197
|
+
{% 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 %}
|