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
|
@@ -10,9 +10,10 @@
|
|
|
10
10
|
|
|
11
11
|
from flask import g, render_template
|
|
12
12
|
from flask_login import current_user, login_required
|
|
13
|
+
from invenio_communities.proxies import current_communities
|
|
13
14
|
from invenio_users_resources.proxies import current_user_resources
|
|
14
15
|
|
|
15
|
-
from
|
|
16
|
+
from ...records_ui.views.deposits import get_search_url
|
|
16
17
|
|
|
17
18
|
|
|
18
19
|
@login_required
|
|
@@ -47,8 +48,12 @@ def communities():
|
|
|
47
48
|
url = current_user_resources.users_service.links_item_tpl.expand(
|
|
48
49
|
g.identity, current_user
|
|
49
50
|
)["avatar"]
|
|
51
|
+
can_create_community = current_communities.service.check_permission(
|
|
52
|
+
g.identity, "create"
|
|
53
|
+
)
|
|
50
54
|
return render_template(
|
|
51
55
|
"invenio_app_rdm/users/communities.html",
|
|
52
56
|
searchbar_config=dict(searchUrl=get_search_url()),
|
|
53
57
|
user_avatar=url,
|
|
58
|
+
can_create_community=can_create_community,
|
|
54
59
|
)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
#
|
|
3
3
|
# This file is part of Invenio.
|
|
4
4
|
# Copyright (C) 2016-2021 CERN.
|
|
5
|
-
# Copyright (C) 2023 Graz University of Technology.
|
|
5
|
+
# Copyright (C) 2023-2024 Graz University of Technology.
|
|
6
6
|
#
|
|
7
7
|
# Invenio is free software; you can redistribute it and/or modify it
|
|
8
8
|
# under the terms of the MIT License; see LICENSE file for more details.
|
|
@@ -11,17 +11,14 @@
|
|
|
11
11
|
|
|
12
12
|
from flask import Blueprint, current_app, render_template
|
|
13
13
|
from flask_login import current_user
|
|
14
|
-
from flask_menu import current_menu
|
|
15
|
-
from invenio_i18n import lazy_gettext as _
|
|
16
|
-
|
|
17
|
-
#
|
|
18
|
-
# Error handlers
|
|
19
|
-
#
|
|
20
|
-
from invenio_app_rdm.users_ui.views.dashboard import communities, requests, uploads
|
|
21
14
|
|
|
22
15
|
from ..searchapp import search_app_context
|
|
16
|
+
from .dashboard import communities, requests, uploads
|
|
23
17
|
|
|
24
18
|
|
|
19
|
+
#
|
|
20
|
+
# Error handlers
|
|
21
|
+
#
|
|
25
22
|
def not_found_error(error):
|
|
26
23
|
"""Handler for 'Not Found' errors."""
|
|
27
24
|
return render_template(current_app.config["THEME_404_TEMPLATE"]), 404
|
|
@@ -65,26 +62,6 @@ def create_ui_blueprint(app):
|
|
|
65
62
|
view_func=requests,
|
|
66
63
|
)
|
|
67
64
|
|
|
68
|
-
@blueprint.before_app_first_request
|
|
69
|
-
def register_menus():
|
|
70
|
-
"""Register community menu items."""
|
|
71
|
-
user_dashboard = current_menu.submenu("dashboard")
|
|
72
|
-
user_dashboard.submenu("uploads").register(
|
|
73
|
-
"invenio_app_rdm_users.uploads",
|
|
74
|
-
text=_("Uploads"),
|
|
75
|
-
order=1,
|
|
76
|
-
)
|
|
77
|
-
user_dashboard.submenu("communities").register(
|
|
78
|
-
"invenio_app_rdm_users.communities",
|
|
79
|
-
text=_("Communities"),
|
|
80
|
-
order=2,
|
|
81
|
-
)
|
|
82
|
-
user_dashboard.submenu("requests").register(
|
|
83
|
-
"invenio_app_rdm_users.requests",
|
|
84
|
-
text=_("Requests"),
|
|
85
|
-
order=3,
|
|
86
|
-
)
|
|
87
|
-
|
|
88
65
|
# Register context processor
|
|
89
66
|
blueprint.app_context_processor(search_app_context)
|
|
90
67
|
|
invenio_app_rdm/utils/files.py
CHANGED
|
@@ -111,7 +111,7 @@ def send_integrity_report_email(files):
|
|
|
111
111
|
sender = current_app.config["MAIL_DEFAULT_SENDER"]
|
|
112
112
|
admin_email = current_app.config["APP_RDM_ADMIN_EMAIL_RECIPIENT"]
|
|
113
113
|
recipients = admin_email
|
|
114
|
-
if not
|
|
114
|
+
if not isinstance(admin_email, list):
|
|
115
115
|
recipients = [admin_email]
|
|
116
116
|
mail_ext = current_app.extensions["mail"]
|
|
117
117
|
msg = Message(subject, sender=sender, recipients=recipients, body=body)
|
invenio_app_rdm/views.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2019-2025 CERN.
|
|
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
|
+
"""General views and view utilities."""
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def create_url_rule(rule, default_view_func):
|
|
12
|
+
"""Generate rule from string or tuple."""
|
|
13
|
+
# TODO: We want to deprecate the use of this kind of "string or 2-tuple" config
|
|
14
|
+
# values, and directly use dictionaries that map exactly to the parameters
|
|
15
|
+
# that `Blueprint.add_url_rule(...)` accepts, with some sane defaults.
|
|
16
|
+
if isinstance(rule, tuple):
|
|
17
|
+
path, view_func = rule
|
|
18
|
+
|
|
19
|
+
return {"rule": path, "view_func": view_func}
|
|
20
|
+
else:
|
|
21
|
+
return {"rule": rule, "view_func": default_view_func}
|
|
@@ -0,0 +1,552 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: invenio-app-rdm
|
|
3
|
+
Version: 14.0.0b1.dev8
|
|
4
|
+
Summary: Invenio Research Data Management.
|
|
5
|
+
Home-page: https://github.com/inveniosoftware/invenio-app-rdm
|
|
6
|
+
Author: CERN
|
|
7
|
+
Author-email: info@inveniosoftware.org
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: invenio-app-rdm Invenio
|
|
10
|
+
Platform: any
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Requires-Python: >=3.7
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: invenio-app<3.0.0,>=2.1.0
|
|
15
|
+
Requires-Dist: invenio-base<3.0.0,>=2.1.0
|
|
16
|
+
Requires-Dist: invenio-cache<3.0.0,>=2.0.0
|
|
17
|
+
Requires-Dist: invenio-celery<3.0.0,>=2.0.0
|
|
18
|
+
Requires-Dist: invenio-config<2.0.0,>=1.0.3
|
|
19
|
+
Requires-Dist: invenio-i18n<4.0.0,>=3.0.0
|
|
20
|
+
Requires-Dist: invenio-db[mysql,postgresql]<3.0.0,>=2.0.0
|
|
21
|
+
Requires-Dist: invenio-assets<5.0.0,>=4.0.0
|
|
22
|
+
Requires-Dist: invenio-formatter<4.0.0,>=3.0.0
|
|
23
|
+
Requires-Dist: invenio-logging<5.0.0,>=4.0.0
|
|
24
|
+
Requires-Dist: invenio-mail<3.0.0,>=2.0.0
|
|
25
|
+
Requires-Dist: invenio-rest<3.0.0,>=2.0.0
|
|
26
|
+
Requires-Dist: invenio-theme<5.0.0,>=4.0.0
|
|
27
|
+
Requires-Dist: invenio-access<5.0.0,>=4.0.0
|
|
28
|
+
Requires-Dist: invenio-accounts<7.0.0,>=6.0.0
|
|
29
|
+
Requires-Dist: invenio-oauth2server<4.0.0,>=3.0.0
|
|
30
|
+
Requires-Dist: invenio-oauthclient<6.0.0,>=5.0.0
|
|
31
|
+
Requires-Dist: invenio-userprofiles<5.0.0,>=4.0.0
|
|
32
|
+
Requires-Dist: invenio-indexer<4.0.0,>=3.0.0
|
|
33
|
+
Requires-Dist: invenio-jsonschemas<3.0.0,>=2.0.0
|
|
34
|
+
Requires-Dist: invenio-oaiserver<4.0.0,>=3.0.0
|
|
35
|
+
Requires-Dist: invenio-pidstore<3.0.0,>=2.0.0
|
|
36
|
+
Requires-Dist: invenio-records-rest<4.0.0,>=3.0.0
|
|
37
|
+
Requires-Dist: invenio-records-ui<3.0.0,>=2.0.0
|
|
38
|
+
Requires-Dist: invenio-records<4.0.0,>=3.0.0
|
|
39
|
+
Requires-Dist: invenio-search-ui<5.0.0,>=4.0.0
|
|
40
|
+
Requires-Dist: invenio-files-rest<4.0.0,>=3.0.0
|
|
41
|
+
Requires-Dist: invenio-previewer<4.0.0,>=3.0.0
|
|
42
|
+
Requires-Dist: invenio-records-files<2.0.0,>=1.2.1
|
|
43
|
+
Requires-Dist: invenio-collections<3.0.0,>=1.0.0
|
|
44
|
+
Requires-Dist: invenio-communities<22.0.0,>=21.0.0
|
|
45
|
+
Requires-Dist: invenio-rdm-records<22.0.0,>=21.0.0
|
|
46
|
+
Requires-Dist: CairoSVG<3.0.0,>=2.5.2
|
|
47
|
+
Requires-Dist: invenio-banners<6.0.0,>=5.0.0
|
|
48
|
+
Requires-Dist: invenio-pages<8.0.0,>=7.0.0
|
|
49
|
+
Requires-Dist: invenio-audit-logs<1.0.0,>=0.3.0
|
|
50
|
+
Requires-Dist: invenio-sitemap<2.0.0,>=0.1.0
|
|
51
|
+
Provides-Extra: tests
|
|
52
|
+
Requires-Dist: pytest-black-ng>=0.4.0; extra == "tests"
|
|
53
|
+
Requires-Dist: pytest-invenio<4.0.0,>=3.3.0; extra == "tests"
|
|
54
|
+
Requires-Dist: Sphinx>=4.5.0; extra == "tests"
|
|
55
|
+
Requires-Dist: time-machine<3.0.0,>=2.12.0; extra == "tests"
|
|
56
|
+
Provides-Extra: elasticsearch7
|
|
57
|
+
Requires-Dist: invenio-search[elasticsearch7]<4.0.0,>=3.0.0; extra == "elasticsearch7"
|
|
58
|
+
Provides-Extra: opensearch1
|
|
59
|
+
Requires-Dist: invenio-search[opensearch1]<4.0.0,>=3.0.0; extra == "opensearch1"
|
|
60
|
+
Provides-Extra: opensearch2
|
|
61
|
+
Requires-Dist: invenio-search[opensearch2]<4.0.0,>=3.0.0; extra == "opensearch2"
|
|
62
|
+
Provides-Extra: s3
|
|
63
|
+
Requires-Dist: invenio-s3<4.0.0,>=3.0.0; extra == "s3"
|
|
64
|
+
Dynamic: license-file
|
|
65
|
+
|
|
66
|
+
..
|
|
67
|
+
Copyright (C) 2019 CERN.
|
|
68
|
+
Copyright (C) 2019 Northwestern University.
|
|
69
|
+
|
|
70
|
+
Invenio App RDM is free software; you can redistribute it and/or modify
|
|
71
|
+
it under the terms of the MIT License; see LICENSE file for more details.
|
|
72
|
+
|
|
73
|
+
=================
|
|
74
|
+
Invenio App RDM
|
|
75
|
+
=================
|
|
76
|
+
|
|
77
|
+
.. image:: https://github.com/inveniosoftware/invenio-app-rdm/workflows/CI/badge.svg
|
|
78
|
+
:target: https://github.com/inveniosoftware/invenio-app-rdm/actions?query=workflow%3ACI
|
|
79
|
+
|
|
80
|
+
.. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-app-rdm.svg
|
|
81
|
+
:target: https://coveralls.io/r/inveniosoftware/invenio-app-rdm
|
|
82
|
+
|
|
83
|
+
.. image:: https://img.shields.io/github/license/inveniosoftware/invenio-app-rdm.svg
|
|
84
|
+
:target: https://github.com/inveniosoftware/invenio-app-rdm/blob/master/LICENSE
|
|
85
|
+
|
|
86
|
+
InvenioRDM Research Data Management
|
|
87
|
+
|
|
88
|
+
Further documentation is available on
|
|
89
|
+
https://inveniordm.docs.cern.ch
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
..
|
|
93
|
+
Copyright (C) 2019-2025 CERN.
|
|
94
|
+
Copyright (C) 2019-2024 Northwestern University.
|
|
95
|
+
Copyright (C) 2021-2024 TU Wien.
|
|
96
|
+
Copyright (C) 2021-2025 Graz University of Technology.
|
|
97
|
+
|
|
98
|
+
Invenio App RDM is free software; you can redistribute it and/or modify
|
|
99
|
+
it under the terms of the MIT License; see LICENSE file for more details.
|
|
100
|
+
|
|
101
|
+
Changes
|
|
102
|
+
=======
|
|
103
|
+
|
|
104
|
+
Version v14.0.0b1.dev8 (released 2025-11-21)
|
|
105
|
+
|
|
106
|
+
- UI: add info message about remaining days to publish changes
|
|
107
|
+
- request: add file mod request template
|
|
108
|
+
- fix: set files_locked to .locked rather than permission
|
|
109
|
+
- feat: pass file modification eval to deposit form
|
|
110
|
+
|
|
111
|
+
Version v14.0.0b1.dev7 (released 2025-11-14)
|
|
112
|
+
|
|
113
|
+
- fix(views): pass API record to evaluate record deletion
|
|
114
|
+
|
|
115
|
+
Version v14.0.0b1.dev6 (released 2025-11-13)
|
|
116
|
+
|
|
117
|
+
- tombstone: add deletion policy
|
|
118
|
+
- fix(deletion-request): never disable the existing deletion request link
|
|
119
|
+
- fix(deletion-request): fetch existing request only for valid users
|
|
120
|
+
- fix(deletion-request): removal reasons in landing page data attribute
|
|
121
|
+
- vocab: add deletion_request prefix to removal_reasons vocabulary
|
|
122
|
+
- ui: added related identifiers to vocabulary
|
|
123
|
+
- views: remove unused data attributes from recordManagementMobile
|
|
124
|
+
- requests: ui: only show justification if present
|
|
125
|
+
|
|
126
|
+
Version v14.0.0b1.dev5 (released 2025-10-14)
|
|
127
|
+
|
|
128
|
+
- fix(community-submission): add missing var in side bar template
|
|
129
|
+
- fix(guest-access-request): handle broken expiration date payload value
|
|
130
|
+
* this extra check prevents the request timeline UI from breaking when a
|
|
131
|
+
request payload has a broken value, to make recovery easier
|
|
132
|
+
* also, make eslint happy with a camel case variable name
|
|
133
|
+
- fix(guest-access-request): handle more possible expiration date values
|
|
134
|
+
* when the expiration date gets submitted, the value of the empty input
|
|
135
|
+
field is typically the empty string rather than `null`
|
|
136
|
+
* on the reading side, handle the case that the expiration date is set
|
|
137
|
+
as a string value (since request payloads are generally strings)
|
|
138
|
+
|
|
139
|
+
Version v14.0.0b1.dev4 (released 2025-10-03)
|
|
140
|
+
|
|
141
|
+
- installation: relax invenio-collections dependency requirements
|
|
142
|
+
* see https://github.com/inveniosoftware/invenio-app-rdm/issues/3194
|
|
143
|
+
|
|
144
|
+
Version v14.0.0b1.dev3 (released 2025-10-01)
|
|
145
|
+
|
|
146
|
+
- fix(deposit-ui): read expanded published record
|
|
147
|
+
* The UI serializer requires the expanded record service result.
|
|
148
|
+
- feat(config): add last activity sort option
|
|
149
|
+
|
|
150
|
+
Version v14.0.0b1.dev2 (released 2025-09-29)
|
|
151
|
+
|
|
152
|
+
- fix(deposit-ui): use API record for evaluating deletion policy
|
|
153
|
+
|
|
154
|
+
Version v14.0.0b1.dev1 (released 2025-09-24)
|
|
155
|
+
|
|
156
|
+
- Fixed CHANGES.rst formatting
|
|
157
|
+
|
|
158
|
+
Version v14.0.0b1.dev0 (released 2025-09-24)
|
|
159
|
+
|
|
160
|
+
- feat(administration): add Requests view
|
|
161
|
+
- feat: add record deletion requests
|
|
162
|
+
* Allows to configure record deletion policies for immediate deletion
|
|
163
|
+
or going through a request flow on the record landing page.
|
|
164
|
+
|
|
165
|
+
Version v14.0.0b0.dev4 (released 2025-09-01)
|
|
166
|
+
|
|
167
|
+
- views(deposit): pass to the form config the published record if we edit one
|
|
168
|
+
* The published record is used to compare published DOI but it can be
|
|
169
|
+
used also to compare with the published state of an editing draft.
|
|
170
|
+
- help: correct search instructions for missing fields
|
|
171
|
+
|
|
172
|
+
Version v14.0.0b0.dev3 (released 2025-08-26)
|
|
173
|
+
|
|
174
|
+
- fix(community-requests): request permissions were missing from UI
|
|
175
|
+
* The community requests page was not showing the request reviewers section
|
|
176
|
+
because the permissions were not passed to the template.
|
|
177
|
+
|
|
178
|
+
Version v14.0.0b0.dev2 (released 2025-08-08)
|
|
179
|
+
|
|
180
|
+
- fix(views): use correct community value
|
|
181
|
+
* After the change in 33f1b0d2, values passed to the UI or used for
|
|
182
|
+
accessing UI-related attributes (e.g. the "theme"), must come from
|
|
183
|
+
the community UI-serialized value instead of the service result item.
|
|
184
|
+
- fix(pages): add community base template as a valid option
|
|
185
|
+
- feat(fixtures): allow specifying `template_name` in page fixtures
|
|
186
|
+
- ui: refactor record injecting in JS components
|
|
187
|
+
- inject only record links in citations cmps
|
|
188
|
+
- remove dependency between citations and communities cmps which
|
|
189
|
+
they were sharing the same record injection
|
|
190
|
+
- fix(deposits): pass missing community_ui to community theme templates
|
|
191
|
+
* also introduce more explicit distinctions between community and
|
|
192
|
+
community_ui variables
|
|
193
|
+
- UI: set order of entries and rename category to deposits
|
|
194
|
+
- UI: make external resources section consistent with details
|
|
195
|
+
- UI: make rights section consistent with details
|
|
196
|
+
|
|
197
|
+
Version v14.0.0b0.dev1 (released 2025-08-01)
|
|
198
|
+
|
|
199
|
+
- setup: bump invenio-communities and invenio-rdm-records
|
|
200
|
+
- theme: add search overrides for reviewers search results
|
|
201
|
+
- requests: add request action_accept permissions to UI
|
|
202
|
+
- theme: update package-lock.json for compiling catalog for frontend tests
|
|
203
|
+
|
|
204
|
+
Version v13.0.0b4.dev2 (released 2025-06-13)
|
|
205
|
+
|
|
206
|
+
- checks: integrate into community requests flow
|
|
207
|
+
- deposit-ui: pass draft errors to form
|
|
208
|
+
- landing page: text-break references
|
|
209
|
+
- ui: fixed caret trigger in stats
|
|
210
|
+
|
|
211
|
+
- deposit: report actual file quota rather than configured values
|
|
212
|
+
* previously, the deposit form would show values from the configuration
|
|
213
|
+
that might be different from the actually effective quota
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
Version v13.0.0b4.dev1 (released 2025-06-10)
|
|
217
|
+
|
|
218
|
+
- communities-ui: pass locale language when rendering static pages
|
|
219
|
+
- deposit UI: add overridable hook for a separate section
|
|
220
|
+
|
|
221
|
+
Version v13.0.0b4.dev0 (released 2025-06-04)
|
|
222
|
+
|
|
223
|
+
- setup: bump major dependencies
|
|
224
|
+
- change: add internationalized page creation
|
|
225
|
+
- details: pass scheme on related identifiers url generator
|
|
226
|
+
|
|
227
|
+
Version v13.0.0b3.dev18 (released 2025-06-02)
|
|
228
|
+
|
|
229
|
+
- installation: add collections dependency
|
|
230
|
+
- views: rename record_ui correctly
|
|
231
|
+
|
|
232
|
+
Version v13.0.0b3.dev17 (released 2025-06-02)
|
|
233
|
+
|
|
234
|
+
- Move collections implementaiton to Invenio-Collections
|
|
235
|
+
- Integrate Invenio-Sitemap
|
|
236
|
+
|
|
237
|
+
Version v13.0.0b3.dev16 (released 2025-05-23)
|
|
238
|
+
|
|
239
|
+
- administration: audit_logs: Add View Changes and View Log button and modals
|
|
240
|
+
|
|
241
|
+
Version v13.0.0b3.dev15 (released 2025-05-23)
|
|
242
|
+
|
|
243
|
+
- Revert "views: pass record object to record details"
|
|
244
|
+
|
|
245
|
+
Version v13.0.0b3.dev14 (released 2025-05-23)
|
|
246
|
+
|
|
247
|
+
- views: pass record object to record details
|
|
248
|
+
|
|
249
|
+
Version v13.0.0b3.dev13 (released 2025-05-21)
|
|
250
|
+
|
|
251
|
+
- jinja: remove hardcoded template imports
|
|
252
|
+
|
|
253
|
+
Version v13.0.0b3.dev12 (released 2025-05-21)
|
|
254
|
+
|
|
255
|
+
- jinja: add config attributes to record detail
|
|
256
|
+
- beat: add delete job logs recurrent task
|
|
257
|
+
|
|
258
|
+
Version v13.0.0b3.dev11 (released 2025-05-16)
|
|
259
|
+
|
|
260
|
+
- deposit-ui: add "files.entries" to files section
|
|
261
|
+
|
|
262
|
+
Version v13.0.0b3.dev10 (released 2025-05-16)
|
|
263
|
+
|
|
264
|
+
- fixtures: make content template optional
|
|
265
|
+
- MathJax: add typesetting to the citations box
|
|
266
|
+
|
|
267
|
+
Version v13.0.0b3.dev9 (released 2025-05-15)
|
|
268
|
+
|
|
269
|
+
- recordManagment: pass permissiosn down to overridable
|
|
270
|
+
|
|
271
|
+
Version v13.0.0b3.dev8 (released 2025-05-15)
|
|
272
|
+
|
|
273
|
+
- MathJax: use async typesetting
|
|
274
|
+
|
|
275
|
+
Version v13.0.0b3.dev7 (released 2025-05-08)
|
|
276
|
+
|
|
277
|
+
- fix: community request page missing context variable
|
|
278
|
+
|
|
279
|
+
Version v13.0.0b3.dev6 (released 2025-05-07)
|
|
280
|
+
|
|
281
|
+
- records-ui: add error handler for NoResultFound exceptions
|
|
282
|
+
- tests: add tests for draft file download with and without preview flag
|
|
283
|
+
- i18n: mark string for translation
|
|
284
|
+
- urls: integrate link generation (invenio_url_for)
|
|
285
|
+
- templates: add thesis details display
|
|
286
|
+
- administration: Add Audit Logs Admin Panel UI (experimental feature, behind a flag)
|
|
287
|
+
|
|
288
|
+
Version v13.0.0b3.dev5 (released 2025-04-25)
|
|
289
|
+
|
|
290
|
+
- deposit: add copyright field
|
|
291
|
+
- landing page: bugfix for user avatars
|
|
292
|
+
|
|
293
|
+
Version v13.0.0b3.dev4 (released 2025-04-10)
|
|
294
|
+
|
|
295
|
+
- deposits: use optional doi validator method
|
|
296
|
+
|
|
297
|
+
Version v13.0.0b3.dev3 (released 2025-04-04)
|
|
298
|
+
|
|
299
|
+
- fix: Handle undefined record attributes in templates to avoid rendering errors (#2932)
|
|
300
|
+
- communities_ui: make routes + views configurable
|
|
301
|
+
- views: extract create_url_rule utility and plan for deprecation
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
Version v13.0.0b3.dev2 (released 2025-03-29)
|
|
305
|
+
|
|
306
|
+
- fix: restore messages index.js and remove unused imports
|
|
307
|
+
|
|
308
|
+
Version v13.0.0b3.dev1 (released 2025-03-27)
|
|
309
|
+
|
|
310
|
+
- deposit: align licenses modal with funders modal
|
|
311
|
+
|
|
312
|
+
Version v13.0.0b3.dev0 (released 2025-03-26)
|
|
313
|
+
|
|
314
|
+
- thesis: breaking change in thesis field (invenio-rdm-records)
|
|
315
|
+
- thesis: add university and type field
|
|
316
|
+
- imprint: add edition field
|
|
317
|
+
|
|
318
|
+
Version v13.0.0b2.dev11 (released 2025-03-26)
|
|
319
|
+
|
|
320
|
+
- checks: add checks tab to requests (fix template inclusion)
|
|
321
|
+
|
|
322
|
+
Version v13.0.0b2.dev10 (released 2025-03-26)
|
|
323
|
+
|
|
324
|
+
- checks: add checks tab to requests
|
|
325
|
+
- theme: fix responsive breakpoints for low resolution screens
|
|
326
|
+
|
|
327
|
+
Version v13.0.0b2.dev9 (released 2025-03-21)
|
|
328
|
+
|
|
329
|
+
- (Empty release to trigger fixed PyPI publish GitHub action)
|
|
330
|
+
|
|
331
|
+
Version v13.0.0b2.dev8 (released 2025-03-21)
|
|
332
|
+
|
|
333
|
+
- config: updated severity label text on deposit form
|
|
334
|
+
|
|
335
|
+
Version v13.0.0b2.dev7 (released 2025-03-18)
|
|
336
|
+
|
|
337
|
+
- deposit: refactor section config in RDMDepositForm
|
|
338
|
+
- added anchor ids, made form overridable
|
|
339
|
+
- added section path in config
|
|
340
|
+
- added styling for error messages
|
|
341
|
+
- added severity checks config
|
|
342
|
+
- added css for accordion labels
|
|
343
|
+
|
|
344
|
+
Version v13.0.0b2.dev6 (released 2025-03-12)
|
|
345
|
+
|
|
346
|
+
- dashboard: enable shared filters for requests
|
|
347
|
+
|
|
348
|
+
Version v13.0.0b2.dev5 (released 2025-03-11)
|
|
349
|
+
|
|
350
|
+
- dashboard: use always view button to redirect user to the upload
|
|
351
|
+
- If upload is published redirect user to published record
|
|
352
|
+
- If upload is draft redirect user to upload or preview depending on their permission
|
|
353
|
+
- deposit: use permissions.can_manage for record community management
|
|
354
|
+
- dashboard: split mine and shared with me uploads
|
|
355
|
+
|
|
356
|
+
Version v13.0.0b2.dev4 (released 2025-03-10)
|
|
357
|
+
|
|
358
|
+
- views: FAIR signposting level 1 support (config flag)
|
|
359
|
+
- tasks: skip health checks for files that don't have a uri
|
|
360
|
+
- views: signposting: files: fix filename encoding issues for downloads
|
|
361
|
+
|
|
362
|
+
Version v13.0.0b2.dev3 (released 2025-02-21)
|
|
363
|
+
|
|
364
|
+
- views: FAIR signposting level 1 support
|
|
365
|
+
- meta: FAIR signposting level 1 support (link rel item)
|
|
366
|
+
- globals: site.overrides: Increase pdf preview iframe height
|
|
367
|
+
- tests: fix mock module paths
|
|
368
|
+
- tests: add __init__.py in all directories
|
|
369
|
+
* This is necessary for pytest v8.x to be able to detect all unique
|
|
370
|
+
tests.
|
|
371
|
+
|
|
372
|
+
- tests: filter out excessive warnings
|
|
373
|
+
- fix: flask changed to TRUSTED_HOSTS
|
|
374
|
+
|
|
375
|
+
Version v13.0.0b2.dev2 (released 2025-02-13)
|
|
376
|
+
|
|
377
|
+
- Bump prerelease dependencies to stable.
|
|
378
|
+
|
|
379
|
+
Version v13.0.0b2.dev1 (released 2025-01-23)
|
|
380
|
+
|
|
381
|
+
Version v13.0.0b2.dev0 (released 2024-12-16)
|
|
382
|
+
|
|
383
|
+
- setup: remove flask pin
|
|
384
|
+
- setup: change to reusable workflows
|
|
385
|
+
- setup: bump major dependencies
|
|
386
|
+
|
|
387
|
+
Version v13.0.0b1.dev30 (released 2025-01-27)
|
|
388
|
+
|
|
389
|
+
- administration: add record revision comparison
|
|
390
|
+
|
|
391
|
+
Version v13.0.0b1.dev29 (released 2025-01-23)
|
|
392
|
+
|
|
393
|
+
- preview: do not mint parent doi if doi is not reserved and doi is optional
|
|
394
|
+
|
|
395
|
+
Version v13.0.0b1.dev28 (released 2025-01-21)
|
|
396
|
+
|
|
397
|
+
- pids: pass optional DOI transitions in the upload form
|
|
398
|
+
- deposit: force no caching in the response headers
|
|
399
|
+
|
|
400
|
+
Version v13.0.0b1.dev27 (released 2025-01-16)
|
|
401
|
+
|
|
402
|
+
- Revert "config: add record and membership comment notifications"
|
|
403
|
+
* This is actually a breaking change since it introduces a new
|
|
404
|
+
set of notification templates that will potentialy not be
|
|
405
|
+
styled if overridden in an instance's overlay.
|
|
406
|
+
|
|
407
|
+
Version v13.0.0b1.dev26 (released 2025-01-16)
|
|
408
|
+
|
|
409
|
+
- config: add record and membership comment notifications
|
|
410
|
+
- records/macros/detail.html: Allow funding entry with award number only (#2912)
|
|
411
|
+
- records-ui: remove unnecessary p tag in record details
|
|
412
|
+
- ui: close unclosed div in header navbar
|
|
413
|
+
|
|
414
|
+
Version v13.0.0b1.dev24 (released 2024-12-10)
|
|
415
|
+
|
|
416
|
+
- fix: meta: add missing HighWire authors
|
|
417
|
+
- config: add subcommunity comment notifications
|
|
418
|
+
|
|
419
|
+
Version v13.0.0b1.dev23 (released 2024-11-28)
|
|
420
|
+
|
|
421
|
+
- assets: use the new copy feature to copy needed TinyMCE static assets
|
|
422
|
+
|
|
423
|
+
Version v13.0.0b1.dev22 (released 2024-11-28)
|
|
424
|
+
|
|
425
|
+
- installation: bump invenio-access
|
|
426
|
+
* This removes the invenio-admin dependency.
|
|
427
|
+
|
|
428
|
+
Version v13.0.0b1.dev21 (released 2024-11-28)
|
|
429
|
+
|
|
430
|
+
- installation: remove "sentry_sdk" extra from invenio-logging
|
|
431
|
+
|
|
432
|
+
Version v13.0.0b1.dev20 (released 2024-11-28)
|
|
433
|
+
|
|
434
|
+
- config: add subcommunity invitation request notifications
|
|
435
|
+
- requests: add subcommunity invitation request details page
|
|
436
|
+
- creatibutors: added config for identifiers scheme
|
|
437
|
+
|
|
438
|
+
Version v13.0.0b1.dev15 (released 2024-10-18)
|
|
439
|
+
|
|
440
|
+
- communities-ui: verified icon display logic change and deterministic sorting
|
|
441
|
+
|
|
442
|
+
Version v13.0.0b1.dev14 (released 2024-10-18)
|
|
443
|
+
|
|
444
|
+
- communities-ui: make verified icon display depend on parent community
|
|
445
|
+
|
|
446
|
+
Version v13.0.0b1.dev13 (released 2024-10-17)
|
|
447
|
+
|
|
448
|
+
- ui: more space under breadcrumbs
|
|
449
|
+
- ui: fixed space between logo and title, number formatting
|
|
450
|
+
- ui: updated collection grid styling
|
|
451
|
+
- ui: passing collections to communities_home
|
|
452
|
+
- community: added verified icon and parent
|
|
453
|
+
- landing page: swap username by ID to manage user.
|
|
454
|
+
|
|
455
|
+
Version v13.0.0b1.dev12 (released 2024-10-16)
|
|
456
|
+
|
|
457
|
+
- collections: browse page improvements and collection records search pages
|
|
458
|
+
- search-ui: added community theme classes to record list items
|
|
459
|
+
|
|
460
|
+
Version v13.0.0b1.dev11 (released 2024-10-15)
|
|
461
|
+
|
|
462
|
+
- config: vocabularies Datastream common OpenAIRE
|
|
463
|
+
|
|
464
|
+
Version v13.0.0b1.dev10 (released 2024-10-10)
|
|
465
|
+
|
|
466
|
+
- webpack: bump react-searchkit due to axios major upgrade
|
|
467
|
+
- setup: bump invenio-search-ui due to axios major upgrade
|
|
468
|
+
- assets: fix item description overflow issue
|
|
469
|
+
* addresses mathjax formulas truncation
|
|
470
|
+
- browse: fix endpoint name.
|
|
471
|
+
|
|
472
|
+
Version v13.0.0b1.dev9 (released 2024-10-08)
|
|
473
|
+
|
|
474
|
+
- installation: bump invenio-communities & invenio-rdm-records
|
|
475
|
+
|
|
476
|
+
Version v13.0.0b1.dev8 (released 2024-10-04)
|
|
477
|
+
|
|
478
|
+
- installation: bump invenio-communities & invenio-rdm-records
|
|
479
|
+
|
|
480
|
+
Version v13.0.0b1.dev7 (released 2024-10-03)
|
|
481
|
+
|
|
482
|
+
- setup: bump invenio-rdm-records to >=13.0.0
|
|
483
|
+
- collections: added minimal UI page
|
|
484
|
+
- theme: read invenio config from document body
|
|
485
|
+
- search results: render Mathjax in the results list
|
|
486
|
+
- records-community: fix error message display when removing a community
|
|
487
|
+
|
|
488
|
+
Version v13.0.0b1.dev6 (released 2024-09-27)
|
|
489
|
+
|
|
490
|
+
- communities: create browse communities page
|
|
491
|
+
- header_login: Make auth UI accessible
|
|
492
|
+
- header_login: Add loader icon when logging in or out
|
|
493
|
+
- Revert "deposit: provide permissions to publish button"
|
|
494
|
+
- feat: display package version in administration panel
|
|
495
|
+
|
|
496
|
+
Version v13.0.0b1.dev5 (released 2024-09-25)
|
|
497
|
+
|
|
498
|
+
- deposit: Add allow-empty-files config available for deposit page
|
|
499
|
+
* Expose `RECORDS_RESOURCES_ALLOW_EMPTY_FILES` for UI control
|
|
500
|
+
* Related to: https://github.com/inveniosoftware/invenio-rdm-records/pull/1802
|
|
501
|
+
- deposit: provide permissions to publish button
|
|
502
|
+
- config: add group resolver for notifications
|
|
503
|
+
- admin-records: add reference to gh issue
|
|
504
|
+
- admin-records: account for system owned records
|
|
505
|
+
- migration: account for deleted communities and draft concept DOI
|
|
506
|
+
- user-dashboard: fixed broken menu padding
|
|
507
|
+
- theme: fix accordion rotation
|
|
508
|
+
- template: mathjax remove from javascript block
|
|
509
|
+
- templates: add mathjax only to parent template
|
|
510
|
+
- landing page: support different MathJax delimeters
|
|
511
|
+
* closes https://github.com/CERNDocumentServer/cds-rdm/issues/133
|
|
512
|
+
- search-result: namespace overridable id for community search results
|
|
513
|
+
- search-result: provide key to part of community array element
|
|
514
|
+
|
|
515
|
+
Version v13.0.0b1.dev4 (released 2024-09-11)
|
|
516
|
+
|
|
517
|
+
- deposit: fix adding a record to a community
|
|
518
|
+
- config: make OAI-PMH record index dynamic
|
|
519
|
+
|
|
520
|
+
Version v13.0.0b1.dev3 (released 2024-09-02)
|
|
521
|
+
|
|
522
|
+
- deposit: renamed get quota function
|
|
523
|
+
- config: filter out robots and flag machines
|
|
524
|
+
- migration: mint the new concept DOI for each upgraded record
|
|
525
|
+
* previously, the script would create a new concept DOI for each record
|
|
526
|
+
but never actually mint them on DataCite
|
|
527
|
+
|
|
528
|
+
Version v13.0.0b1.dev2 (released 2024-08-27)
|
|
529
|
+
|
|
530
|
+
- setup: bump invenio-communities
|
|
531
|
+
|
|
532
|
+
Version v13.0.0b1.dev1 (released 2024-08-27)
|
|
533
|
+
|
|
534
|
+
- ui: ccount for system created records in share modal
|
|
535
|
+
- config: add subjects datastream config
|
|
536
|
+
- tests: use opensearch2
|
|
537
|
+
|
|
538
|
+
Version v13.0.0b1.dev0 (released 2024-08-22)
|
|
539
|
+
|
|
540
|
+
- search: improve search results for records, users and affiliations
|
|
541
|
+
- ui: display creators roles in records landing page
|
|
542
|
+
|
|
543
|
+
Version v13.0.0b0.dev14 (released 2024-08-22)
|
|
544
|
+
|
|
545
|
+
- migrate to v12: emit non-zero exit code on error
|
|
546
|
+
- config: import affiliations vocabulary readers
|
|
547
|
+
- package: bump react-invenio-forms
|
|
548
|
+
- DepositForm: Add searchOnFocus prop to subjects RemoteSelectField
|
|
549
|
+
|
|
550
|
+
Version 10.0.0 (released 2022-10-10)
|
|
551
|
+
|
|
552
|
+
Version 7.0.0 (released 2021-12-06)
|