invenio-app-rdm 13.0.0b4.dev1__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 +1 -1
- invenio_app_rdm/administration/moderation/__init__.py +11 -0
- invenio_app_rdm/administration/moderation/requests.py +175 -0
- invenio_app_rdm/administration/records/records.py +9 -7
- 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/user_moderation/user_moderation.py +4 -4
- invenio_app_rdm/administration/users/users.py +0 -5
- invenio_app_rdm/communities_ui/views/communities.py +9 -5
- invenio_app_rdm/config.py +73 -4
- invenio_app_rdm/ext.py +2 -2
- invenio_app_rdm/fixtures/pages.py +5 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +11 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +2 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +8 -7
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html +5 -6
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +9 -13
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +8 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +2 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +7 -5
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html +21 -4
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html +6 -1
- invenio_app_rdm/records_ui/utils.py +93 -1
- invenio_app_rdm/records_ui/views/decorators.py +24 -14
- invenio_app_rdm/records_ui/views/deposits.py +100 -27
- invenio_app_rdm/records_ui/views/filters.py +11 -4
- invenio_app_rdm/records_ui/views/records.py +23 -13
- 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 +5 -5
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html +95 -0
- invenio_app_rdm/requests_ui/views/requests.py +54 -87
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js +8 -8
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js +12 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js +14 -16
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js +1 -2
- 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/communityRecordsSearch/CommunityRecordsSearchAppLayout.js +3 -4
- 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/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/deposit/RDMDepositForm.js +55 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +4 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js +2 -2
- 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 +52 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js +15 -14
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js +4 -4
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +17 -3
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js +16 -17
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +42 -40
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js +9 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js +5 -5
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js +14 -19
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +9 -0
- 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/licenses.less +5 -3
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides +6 -1
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +10 -1
- 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/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 +804 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json +277 -249
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json +102 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po +699 -80
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json +112 -92
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po +821 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json +290 -262
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po +691 -66
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json +91 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po +818 -138
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json +260 -240
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po +698 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json +108 -88
- 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 +81 -28
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po +810 -137
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json +253 -233
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po +746 -133
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json +130 -110
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po +688 -69
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json +103 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po +809 -126
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json +277 -257
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po +695 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json +101 -79
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po +801 -135
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json +254 -234
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +16 -65
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po +712 -86
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json +116 -96
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po +683 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json +96 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json +109 -85
- 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 +702 -71
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json +113 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po +689 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json +102 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po +704 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json +119 -91
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po +694 -69
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json +93 -73
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po +717 -85
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json +155 -133
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po +806 -124
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json +288 -260
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po +713 -82
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json +119 -91
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po +807 -141
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json +260 -240
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po +799 -128
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json +259 -239
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po +756 -131
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json +124 -96
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po +736 -123
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json +130 -108
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po +683 -70
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json +100 -78
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json +3 -37
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot +243 -94
- 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 +4 -4
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html +4 -4
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +7 -6
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +2 -1
- invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
- invenio_app_rdm/theme/webpack.py +3 -2
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po +972 -376
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po +912 -283
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po +1069 -405
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/da/LC_MESSAGES/messages.po +908 -273
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/de/LC_MESSAGES/messages.po +1017 -406
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/el/LC_MESSAGES/messages.po +915 -286
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/es/LC_MESSAGES/messages.po +963 -371
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/et/LC_MESSAGES/messages.po +938 -362
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po +906 -277
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po +1032 -375
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po +985 -369
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/it/LC_MESSAGES/messages.po +928 -298
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po +909 -280
- 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 +910 -281
- invenio_app_rdm/translations/messages.pot +486 -303
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/no/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po +906 -277
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po +1042 -384
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po +1022 -370
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po +916 -287
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po +989 -380
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po +992 -341
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po +935 -356
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po +939 -347
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po +907 -278
- invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py +190 -62
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/METADATA +118 -7
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/RECORD +209 -225
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/entry_points.txt +2 -0
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/top_level.txt +0 -1
- 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/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
- tests/__init__.py +0 -8
- tests/api/__init__.py +0 -8
- tests/api/conftest.py +0 -24
- tests/api/test_protect_files_rest.py +0 -73
- tests/api/test_record_api.py +0 -175
- tests/api/test_stats_api.py +0 -26
- tests/conftest.py +0 -390
- tests/fixtures/__init__.py +0 -8
- tests/fixtures/app_data/oai_sets.yaml +0 -3
- tests/fixtures/app_data/pages/about.html +0 -1
- tests/fixtures/app_data/pages.yaml +0 -4
- tests/fixtures/conftest.py +0 -27
- tests/fixtures/test_cli.py +0 -25
- tests/fixtures/test_fixtures.py +0 -46
- tests/mock_module/__init__.py +0 -7
- tests/mock_module/templates/mock_mail.html +0 -27
- tests/mock_module/views.py +0 -32
- tests/redirector/__init__.py +0 -8
- tests/redirector/conftest.py +0 -54
- tests/redirector/test_redirector.py +0 -28
- tests/test_tasks.py +0 -209
- tests/test_utils.py +0 -67
- tests/test_version.py +0 -16
- tests/test_views.py +0 -43
- tests/ui/__init__.py +0 -8
- tests/ui/conftest.py +0 -115
- tests/ui/test_deposits.py +0 -115
- tests/ui/test_export_formats.py +0 -37
- tests/ui/test_file_download.py +0 -73
- tests/ui/test_filters.py +0 -10
- tests/ui/test_robotstxt.py +0 -35
- tests/ui/test_signposting_ui.py +0 -95
- tests/ui/test_sitemaps.py +0 -85
- tests/ui/test_stats_ui.py +0 -92
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-13.0.0b4.dev1.dist-info → invenio_app_rdm-14.0.0b1.dev8.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=1LRYoFA2qiXX6ZNzaS6EHiIutaic-GcKHOt9D_IIfQ8,704
|
|
2
2
|
invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
|
|
3
|
-
invenio_app_rdm/config.py,sha256=
|
|
4
|
-
invenio_app_rdm/ext.py,sha256=
|
|
3
|
+
invenio_app_rdm/config.py,sha256=kxAliLtzXLRysO8qxWxoSt1FhOjuDfzUi8xr40BBIYE,53632
|
|
4
|
+
invenio_app_rdm/ext.py,sha256=K7syn5CU5If7yOclFeNOCZX_u5q6VB7NJEQVm41mlng,5286
|
|
5
5
|
invenio_app_rdm/tasks.py,sha256=FyrIQXVuPjms-dNEnLrVmmdwrX_IykJ87gcSNgOR6O0,1373
|
|
6
6
|
invenio_app_rdm/views.py,sha256=SDr9NwZEWQcgT_3GFRYdDf6eUaK9DfnoafIkhUf9nSI,785
|
|
7
7
|
invenio_app_rdm/administration/__init__.py,sha256=8r9LeoE9fNHZSVS5QsCfVhRU7MAiEOWJk9MA3Y--4F8,251
|
|
@@ -9,19 +9,23 @@ invenio_app_rdm/administration/audit_logs/__init__.py,sha256=jsBXeKSY5YNn1juF9sF
|
|
|
9
9
|
invenio_app_rdm/administration/audit_logs/audit_logs.py,sha256=6tZvqPKt54Hc8gL3Lz5LLwwKHABU3fWWhU5t0DHhgPk,2166
|
|
10
10
|
invenio_app_rdm/administration/domains/__init__.py,sha256=Qob5kqjRPxpuSE5yDV2tesN6tmaKp5JcxCxGA8Mrcak,487
|
|
11
11
|
invenio_app_rdm/administration/domains/domains.py,sha256=vafLa-mqkg_tQLjx328E64P_4mksB5kjBlsfunvdatg,5599
|
|
12
|
+
invenio_app_rdm/administration/moderation/__init__.py,sha256=5Jr_Kicz0xsybdyRr48amQDkLlalVbRz9Pq0zGrTqMg,404
|
|
13
|
+
invenio_app_rdm/administration/moderation/requests.py,sha256=xzmhgGkWMMvKVaRzkDhQtwKCnjCzWMJjfCPtiiE81Rs,6262
|
|
12
14
|
invenio_app_rdm/administration/records/__init__.py,sha256=WpNHBm_Mk9FF8GzvrXWjL79URMSgBhpqgxvrLXNooqg,434
|
|
13
|
-
invenio_app_rdm/administration/records/records.py,sha256=
|
|
15
|
+
invenio_app_rdm/administration/records/records.py,sha256=6nVyDwYLdipIDSnlXMRe6JuiIIo5CaVojeNJCOlTPjI,5371
|
|
14
16
|
invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/audit_logs.html,sha256=kLP3lfZiwLB8N-78_xINymnD8TIjGMzeJIO1a1zO130,346
|
|
15
17
|
invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/domains_search.html,sha256=NP8HPfOQPIR9psNDMFRXJH8fjok2AbXCentD_3Q1wWw,338
|
|
18
|
+
invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests.html,sha256=kvM8b3m8p_yVJ0i1aCuNNj1-9KHJk4EsEI-Zxd8B2zo,340
|
|
19
|
+
invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/requests_details.html,sha256=PMUVAHU3Pqqlfz9YepNJXPn-6IGRmUfirkWeybKCplA,3185
|
|
16
20
|
invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation.html,sha256=koXd8lV_KBgAl1Wll7aM3xR0NgYcOl2PiFqD2Xkcp2w,348
|
|
17
21
|
invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/user_moderation_details.html,sha256=g6YZh9yWqDfzd5kMgIrO4c5k4iKa61y04RsuT_ZbMJI,350
|
|
18
22
|
invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/users_search.html,sha256=BtuBmQ3RqRZ-bzYWRsToC3m7ULd-T2vMCLSwrTLwWF8,337
|
|
19
23
|
invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/drafts.html,sha256=GKvQ-69Mwk0UF61-6zVXHczZ1ANV_eNdcj32-5doipc,338
|
|
20
24
|
invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/records/records.html,sha256=5WUXFb_GJA33lq78Em8xgeK3aF7L0hu89fIITFXBy7I,339
|
|
21
25
|
invenio_app_rdm/administration/user_moderation/__init__.py,sha256=Sjr8wWgMZvdoB_dLgK6DhdR5AbDD8pFerICahK28gIw,409
|
|
22
|
-
invenio_app_rdm/administration/user_moderation/user_moderation.py,sha256=
|
|
26
|
+
invenio_app_rdm/administration/user_moderation/user_moderation.py,sha256=KC9AMkXy0vnNVIOumadsQsrcixhlDWia4GMjB-RZ9nE,5519
|
|
23
27
|
invenio_app_rdm/administration/users/__init__.py,sha256=9VKzlnspXihxn193FlqBxbFRlxARCQCQ20x2CD24vyc,366
|
|
24
|
-
invenio_app_rdm/administration/users/users.py,sha256=
|
|
28
|
+
invenio_app_rdm/administration/users/users.py,sha256=zhISrXpmg78Aumf-lfQanTeuGJno47D_xt-nKY1R7Cc,4374
|
|
25
29
|
invenio_app_rdm/administration/views/__init__.py,sha256=2z29bPLUgK4jR_ztgNk4LunTfH4pheiZVM0kLvMf1RE,313
|
|
26
30
|
invenio_app_rdm/administration/views/ui.py,sha256=IInmlFgWv6mUfKTHEUfe_czwY6u01j4SYyGMDS2hBsI,543
|
|
27
31
|
invenio_app_rdm/communities_ui/__init__.py,sha256=7hAwfcQHeSbqIYHyuHqLhJgYXg6NxId4U9NueCQR3uo,325
|
|
@@ -32,63 +36,63 @@ invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collect
|
|
|
32
36
|
invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/details/browse/index.html,sha256=3cp9pSf1ItKA-PHm2hnmc_x7pIryTFxpxk_yfrgFz3o,2125
|
|
33
37
|
invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html,sha256=5Ub4uyVsjjTHzbhNe8Y-AAZG5oI28wZs2jQXvSPofXw,700
|
|
34
38
|
invenio_app_rdm/communities_ui/views/__init__.py,sha256=HsbOWjDobxXGx6WFlTn45JYr0V9yqjCpDXOR_i2wmtw,401
|
|
35
|
-
invenio_app_rdm/communities_ui/views/communities.py,sha256=
|
|
39
|
+
invenio_app_rdm/communities_ui/views/communities.py,sha256=LPSe4ixyJvmO3auHJK3Y6ukQZ4zu3SQyT_PLL6fU1A0,6966
|
|
36
40
|
invenio_app_rdm/communities_ui/views/ui.py,sha256=YZ9yiZazEutwkpR4xEolLe6mUtiTJrxVdCOtQGAILOw,3007
|
|
37
41
|
invenio_app_rdm/fixtures/__init__.py,sha256=XwWy4U66FkpWOEBFfn5EnXfuTKlXnh3HWZNBMDX4Rgk,1512
|
|
38
42
|
invenio_app_rdm/fixtures/oai_sets.py,sha256=ZoS94FNkIsdEJWHihZRYvFAstp3GBrZ0viDml9mQXOI,621
|
|
39
|
-
invenio_app_rdm/fixtures/pages.py,sha256=
|
|
43
|
+
invenio_app_rdm/fixtures/pages.py,sha256=DF8DGQ_TPLHxr8PVb2ZVmnMDAc5m20pcVF2OjnTnNu4,2630
|
|
40
44
|
invenio_app_rdm/fixtures/data/oai_sets.yaml,sha256=NlkL0Y4AH_HxmO0mfwzOlF7ZYAT0D7EV6aOs-_OLl7Q,256
|
|
41
45
|
invenio_app_rdm/fixtures/data/pages.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
46
|
invenio_app_rdm/fixtures/pages/.gitkeep,sha256=1HVs32jZTGcMkk-dV9RHGPZm5FdydwFIZDW1epflLF8,68
|
|
43
47
|
invenio_app_rdm/records_ui/__init__.py,sha256=c4_HH3R7fTOp7AnNQSF4P9h_mwOvL0SE9tkpo6SBnT8,327
|
|
44
48
|
invenio_app_rdm/records_ui/searchapp.py,sha256=QD5fTdimVUC5K4ERVBjgXHZdbC3ZkgcR8LSIxFTPBQY,2697
|
|
45
49
|
invenio_app_rdm/records_ui/sitemap.py,sha256=erWpwi8lx17ATicBo3dTwMiEEwHTilL8xTAkNCC3J4U,1619
|
|
46
|
-
invenio_app_rdm/records_ui/utils.py,sha256=
|
|
50
|
+
invenio_app_rdm/records_ui/utils.py,sha256=MGB4YAWrrE5Wu4RhbT2F5SAfVkm3PLe-jzD1BDWBpdo,6101
|
|
47
51
|
invenio_app_rdm/records_ui/previewer/__init__.py,sha256=T32i_ssGKONDpNB3gECpn20ubHvGYYVrNuIgCADioOM,267
|
|
48
52
|
invenio_app_rdm/records_ui/previewer/iiif_simple.py,sha256=lGxB3g0hNVJDWnq5jV_KrKPwC-LR1C51DMjas1-UpBM,1589
|
|
49
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html,sha256=
|
|
50
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html,sha256=
|
|
53
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html,sha256=20oCd4uYgvOeFNtG8QL-kXpAf4i3Q_qqAtIo4NbbGQo,2935
|
|
54
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html,sha256=_Wvz_sgOckoj--cQRPWUypVIwrwnxMLxKangM-VyXW8,20671
|
|
51
55
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html,sha256=_FPflgqVZ556Xw349mHPSFb0FOhxYkIHfmUUTX53_LU,624
|
|
52
56
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html,sha256=2h-FGJvNKS9ASZ0mErL2vz5jXQYiLL8u8rTO2_D3FVQ,1166
|
|
53
57
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html,sha256=RningdsVBXsJ8qnQjzurf0Ty8R5Tq08eS31s53c3DNE,444
|
|
54
58
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html,sha256=d2_LrLbWG_vQuR-Gz8P2nrgGuBZONk36kGBMT6iW3uE,987
|
|
55
59
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html,sha256=MdDMzWNIqvZRH-7Blvb9lBdJCA-TK0MXdPpyVWjjBo8,606
|
|
56
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html,sha256=
|
|
60
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html,sha256=QyFJ1q9NsECLpktZxPtR4X62uJ6X8-gymq0g2CKsFwI,2094
|
|
57
61
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html,sha256=rLkoNmouAMV8S6fAU3_PtGuqDjFTACniyiosGAKjcN0,2317
|
|
58
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html,sha256=
|
|
62
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html,sha256=QBbRNCBBdE7JJirLrIdCWlhcmR37qh_2QXg7AnTtwdw,576
|
|
59
63
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html,sha256=czuC-Ec5zJaKzFOaqhz7JqhWiCS3U3NKaQmPw9-rzks,403
|
|
60
64
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html,sha256=43fnhdtCdec6d3s9B__7biS4vp0opvcMYh-1_jncYbA,2231
|
|
61
65
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html,sha256=UGUy-EOWggvBRCZT-H418yMW4PzYgn-5QFcmgZx1P8U,930
|
|
62
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html,sha256=
|
|
66
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html,sha256=6hWOr-iRzGnIqlVUC_ZZd7JHbp5e4LNHYNXhK-rPoeg,12289
|
|
63
67
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html,sha256=bveXC9JvZVjPKQrtZ8FFUV-fIHEN4nB1VSyomR_obxA,473
|
|
64
68
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html,sha256=CbojPWKp0PpXetywwbKW0a7jM_83t8LSbVmYiSEm-L8,1819
|
|
65
69
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar.html,sha256=PjmX-aH2YVZl67Q9ydFDOTLlrEwV2hgz64dRfftFF0A,426
|
|
66
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html,sha256=
|
|
70
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html,sha256=T-J48dh0mtIZf1LmaEKjS4ki5sv5kxv38lSkU45Xz1g,4373
|
|
67
71
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html,sha256=bYER2zAbf7XtM5sMXNzO1GwaLHpZQbdhhMZiMP5yRwU,1518
|
|
68
72
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html,sha256=5Sdg_gwGOgm0qLRv4-CUmDNx7PYlOsa5XPGjDdx7k20,258
|
|
69
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html,sha256=
|
|
73
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html,sha256=VsAa3NxRPHVOD-5hyMhIcIhK0P9Y2f0X1k4mr4Ghb0c,1644
|
|
70
74
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html,sha256=J5z4zxhSZDcKE2ZEdyhcRMIKKVCyKGE6DTeGysijwRU,2123
|
|
71
75
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html,sha256=RfPvs17eTUkWfWA6o9jRWqjUeDyTKL0XyreGR0UXLt4,1404
|
|
72
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html,sha256=
|
|
76
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html,sha256=bE1wqTkQdJkBHpO_9Rr2TZcf7CrRChdCjzcr0dK9UdE,1944
|
|
73
77
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html,sha256=8FTUt6MVRvEsj89qDxP6eK2feyv2UI0fgICoT99cUIU,717
|
|
74
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html,sha256=
|
|
78
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html,sha256=8VfF1BJCvjc3MPPGDg5cm2M6_zbkz2HybJuRU5a2gXc,3172
|
|
75
79
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html,sha256=6o5nQyXP0V158KMBsOpKMeuLGcw_lAhnZIyGpaogbMk,721
|
|
76
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html,sha256=
|
|
80
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html,sha256=t7Ux3nZpaMMQkGfT7IWZKXzKyJVzs_vBTv1ctGFz7TA,1659
|
|
77
81
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html,sha256=6aS28YC8U7VDWn2vI2ckYtzm9wVWacGZ4a7Pu5D3BBI,526
|
|
78
82
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html,sha256=ptS8h6orgDhFFGXeZBCNBltELy_g9fUtS1bMTzieCPk,676
|
|
79
83
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html,sha256=fIa8R0blN2rWkrP0K43qvSTye4Gt6-5yo3HN5FLdLTA,935
|
|
80
84
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html,sha256=N53nwtlEZjxweCx70qFJa1s6uL1pPSzWZgk8p1vodE4,4277
|
|
81
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html,sha256=
|
|
82
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html,sha256=
|
|
83
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html,sha256=
|
|
85
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html,sha256=2H6A4YzS8-4LRcPwyU04HsvnvieseVrrf_kndZl92zI,10622
|
|
86
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html,sha256=32Yknq5PgvJpYg9Z3Brod9wui9yrpDNE11_esG-20jw,1656
|
|
87
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html,sha256=6OIavFXP1BeV1Xozkv-2SOea9M5RUwjRI6gEGzBUle4,9564
|
|
84
88
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html,sha256=27-KyPqb05pu-yRXHvxCgZWRSi5bFP6xf7XBn91sbeA,1741
|
|
85
89
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html,sha256=5SVzfIS15Aro2Itd2BiaLbMXm0cvvwk6ZCdYjuSwhBw,625
|
|
86
90
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html,sha256=eA8-n81XUezkwPXvcG5v2sgLPQNTgr7hB36-_Gr-tVI,758
|
|
87
91
|
invenio_app_rdm/records_ui/views/__init__.py,sha256=9DaDls04IQv7fYttDjLofIWGsRRjk-FwUYnIfxV3OWk,5840
|
|
88
|
-
invenio_app_rdm/records_ui/views/decorators.py,sha256=
|
|
89
|
-
invenio_app_rdm/records_ui/views/deposits.py,sha256=
|
|
90
|
-
invenio_app_rdm/records_ui/views/filters.py,sha256=
|
|
91
|
-
invenio_app_rdm/records_ui/views/records.py,sha256=
|
|
92
|
+
invenio_app_rdm/records_ui/views/decorators.py,sha256=t4Mt7bkidwq3tKE-3sMUSLIR7GxaOewwAng3s9bAMz0,16347
|
|
93
|
+
invenio_app_rdm/records_ui/views/deposits.py,sha256=vckL56fcyOFcrQ0YSxPtx-jk7AAwzKQrxjIrXcIVSyQ,24636
|
|
94
|
+
invenio_app_rdm/records_ui/views/filters.py,sha256=hyQ1gsYi3ux5vH4-K85uTk0Se-91BQ5B1uXAI7rcajw,7143
|
|
95
|
+
invenio_app_rdm/records_ui/views/records.py,sha256=H1lZaKzr1QdX8QKvlm_-p4lPXMy6nQqHcB4NIlSYyAQ,16785
|
|
92
96
|
invenio_app_rdm/redirector/__init__.py,sha256=AYCTGmfbmkHW3YJXMqXlWBXcBrUsta-QmL9ULX2bjwA,243
|
|
93
97
|
invenio_app_rdm/redirector/resource.py,sha256=XuH6ZK0HVE5LdXoorlm8aI3deizvnZ5gFa9d1ihYosk,3312
|
|
94
98
|
invenio_app_rdm/redirector/views.py,sha256=CTJ3EGEFKfc0lFwNb9pwH7MbMLiqaWnF8LA3xGIwahc,563
|
|
@@ -97,30 +101,32 @@ invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-inc
|
|
|
97
101
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html,sha256=3soWIke5l4eRAmZw2UeW6wu-AcT6ms4K_9U6DIYxMmw,1153
|
|
98
102
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html,sha256=ppUbbIROa_zED4WFTB6qqRbbJxewzjc6wKDzKhVglak,778
|
|
99
103
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html,sha256=nJIHevyCGQua_H67IV0mnFiQjNjcQYsZTieQgvP48JY,3452
|
|
100
|
-
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/
|
|
104
|
+
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/file-modification/index.html,sha256=4TruFY1vSFz5bJAdsRHhEe4xTS4sgb_fq_HOBKUYz_o,2492
|
|
105
|
+
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html,sha256=RXtoMrLFvEGHuy2YgoyCkpjEJmUVehFbmXvX1_7qGtY,1978
|
|
101
106
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html,sha256=Iado6BmcFFswmvQ9IrdtgSyAzJr5AIT2BP2IDg-B-8U,2695
|
|
107
|
+
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html,sha256=JzLATsMOLpHMfxlXeBPXgC2VMydCYa9TDjPHAuLPbU4,2820
|
|
102
108
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/index.html,sha256=eEYjTnVL-L30Dm_1LvSNKSx3QEHRoxMGHLupvu_1nMM,1453
|
|
103
109
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html,sha256=347Saf8Fv78uevCbK2nFiOtNFUT0QyZSZS7lgoNzHdQ,1448
|
|
104
110
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html,sha256=ltSP9sYPnpmCKMDYpZYU25Wxr3Dfqe2RNDxm6bVjX_I,1779
|
|
105
111
|
invenio_app_rdm/requests_ui/views/__init__.py,sha256=7QiAyRq8Eu84IXwjzxK63vNeTZnowZ5P85xtw7XgRjs,397
|
|
106
|
-
invenio_app_rdm/requests_ui/views/requests.py,sha256=
|
|
112
|
+
invenio_app_rdm/requests_ui/views/requests.py,sha256=V38eXliWOVXbAzbDTvOuvifk6iyURXn1OxMgCcEN6uE,15273
|
|
107
113
|
invenio_app_rdm/requests_ui/views/ui.py,sha256=DBysYQa__gOCg-pikO6HmoVLmRmMAVWeTBiYhPa7PmA,2359
|
|
108
114
|
invenio_app_rdm/theme/__init__.py,sha256=QbkxNjjOmGKRlie96HfTXgnFeVQjOX0GdiZnHP7pIhs,277
|
|
109
115
|
invenio_app_rdm/theme/views.py,sha256=mrcxejY9PlYwEqh8f0ojKX4CtmD9jz4f9rU-5aLZszU,4457
|
|
110
|
-
invenio_app_rdm/theme/webpack.py,sha256=
|
|
111
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js,sha256=
|
|
116
|
+
invenio_app_rdm/theme/webpack.py,sha256=s1JafSwXmAc5fRMsdFZflfhkqQplYhjnr5BmJHaf1B0,5390
|
|
117
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js,sha256=LIgneJY0lNGB4ePpEvGL1KFcUKVsOjNctP45uWVc3wE,4875
|
|
112
118
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js,sha256=oTCQkmr7j6FwVsOfM6hsKrPHfadW7m9IurrqYVDgxDw,3628
|
|
113
119
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/AuditLogActions.js,sha256=ugQ-0b_6_O5rDeP7JUlNJ5SLGGlip_tP3OoTT4hRcak,3984
|
|
114
120
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewJson.js,sha256=UX4-c4gtXOih4T7GQ1c_9zvlAEa0ljTiz22GU8A05Ps,955
|
|
115
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js,sha256=
|
|
121
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewRecentChanges.js,sha256=M-vgjjroSGlo7TTTIW9UqCxRkMalCVmGBDTzOP2ZPSE,3279
|
|
116
122
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/index.js,sha256=Ruks4rwRBgtKrFop72ZoGNr4-BXoqqv7I-qiflZWzKg,1078
|
|
117
123
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/SearchResultItemLayout.js,sha256=CvH3a5Ws57x_FqZjK6vIz1AO4s6WmI0T-BkHNd8kOo0,3077
|
|
118
124
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/search/index.js,sha256=q1WaQ-kNNMvNdnsONMw2c4GWobizoPWsmIdWL2fRCPc,283
|
|
119
125
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/CompareRevisionsDropdown.js,sha256=BNdMxfFYPhlrGKPg47oc4X8ILllfCngN61L1b7Yt_8Q,2483
|
|
120
126
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUser.js,sha256=1tnHc9PaCQvVS1PVsDWtfpWzVxJJ5_eltn9WJEYygiY,2366
|
|
121
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js,sha256=
|
|
122
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js,sha256=
|
|
123
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js,sha256=
|
|
127
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/ImpersonateUserForm.js,sha256=YWPZeI-vBr7GixhhzwYVS-epnbIw5frr8StsD81a5J8,6578
|
|
128
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/RevisionsDiffViewer.js,sha256=dcRsIbD8k-l-139qXGk0y9s-eMQjA6GglhzkI5-H4io,1897
|
|
129
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaAction.js,sha256=SzJIoK64pt5h1B9bHH28MFcd29dLl_EXA74BNv9Bfbk,3036
|
|
124
130
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/SetQuotaForm.js,sha256=Ltr03KlCogkg2NjqWc1GkxJlYPWB2LDLHL04w6eJiRU,5749
|
|
125
131
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/components/index.js,sha256=soELMxc1jf_rL62CJ9wtWGVG13yk1PRY7JqseqnKkqU,297
|
|
126
132
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/domains/index.js,sha256=dr3xt9jgVIl6o1cBhK6LjEpRodsB_qaSN6mXXeD5hik,870
|
|
@@ -136,13 +142,16 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/recor
|
|
|
136
142
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/index.js,sha256=kWIIp7kzH3oe4xbByiUC3SpgEjAt4R3mWH8vneGWhiU,1460
|
|
137
143
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/api.js,sha256=NxrBwrejTwqBq0LMVAuQeyFLIlwDAVHGbJi009TiLEQ,1181
|
|
138
144
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/index.js,sha256=8D199izj4qOxNVS1XrS3JutmuBYIjHkvshUdv1aU92U,261
|
|
139
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js,sha256=
|
|
145
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/api/routes.js,sha256=yodLKUXGnyq3XcO4-6cGQsa7PbXD74mzGe-otU8iNjc,894
|
|
140
146
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/AdministrationSearchLayout.js,sha256=3pRQVkFOnyqRFWmbE3vXMB75Vnrvf-Y5pzZF79iT9q0,1854
|
|
141
147
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/RecordSearchLayout.js,sha256=F3Ht0kMf6-cSmbTSRo-PnJLneCqoqh7d0ea1A2Lj2i8,2544
|
|
142
148
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/SearchResultItemLayout.js,sha256=CsbdG5fVx2hw1SenJ5wHVd468-n5qp2yhB5x3ceGCuE,5611
|
|
143
149
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/index.js,sha256=Aax3344oX3S_M4_KDwBsfr2Z8x01vHrNGGvEDmE08wY,342
|
|
144
150
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/DeletionStatusFilter.js,sha256=xv0kXgAQUjBmSfBND-qjdXSXMqMQV9O7ntNkXTQGFSk,3291
|
|
145
151
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/index.js,sha256=wNAQbt_8N5_jhPzCWazdb0wufYoUGH2wfTvbLL7JM50,309
|
|
152
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js,sha256=Oc-7VG0XPVQWAmqz3o5yfF7lYJ83UEQzuEBcXL1o1Lc,2860
|
|
153
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js,sha256=w-u6zyo4yTeoqBu4uYeUwHulUjmK2X2kCP2Iw1aLuUQ,1587
|
|
154
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js,sha256=nzN98yzW92VnPwxdovrySsVkZSZ3qm0El4_hBD6nvYQ,899
|
|
146
155
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/ModerationActions.js,sha256=Il9iTiHv8HQHoCHH1aBEWv_KiBcrJVkqhb4WkIf6jtQ,3193
|
|
147
156
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/index.js,sha256=G4mWwMI07lix4_BWUJjzaOOsRyEL6tWdJeeyJoze1lE,975
|
|
148
157
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/SearchResultItemLayout.js,sha256=LIiT4ZB-tfOIV4xC6_eSFwn1jgssipKzbT9WwwSujOM,4731
|
|
@@ -160,45 +169,49 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users
|
|
|
160
169
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/UserStatusFilterComponent.js,sha256=BPYMnz_NOicMbstQojs4Q44aIr0oO8qXLNbMg9k505s,3240
|
|
161
170
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/users/search/filters/index.js,sha256=QU4_jXA6POeWtDIvMOFXl3d5esrgSWiL8sC_qQglj_o,64
|
|
162
171
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/collectionRecordsSearch/index.js,sha256=cxxk7tzx5nt03-PuFyDVMYMueDkTn4xdq8Fee6V8Pjc,2052
|
|
163
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js,sha256=
|
|
172
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchAppLayout.js,sha256=FYqvkO-oPq5vIp5Hfjzl-ho5q1AJkkn7keVQSA5dQKA,2594
|
|
164
173
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSearchBarElement.js,sha256=9Gw8q0p48s_68RmLBMgIMRAdN5Iyzmd0uAXSwhKwwWU,1482
|
|
165
174
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/CommunityRecordsSingleSearchBarElement.js,sha256=_CJ_zmhrHJRqZ0SP0rOGCP5YHzwV8ifbzLvQP2D6oGQ,1285
|
|
166
175
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/components.js,sha256=k26jDWt0BWIrhnuGF-t0iNmudXdniO8YPkquF8VK7gk,271
|
|
167
176
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/communityRecordsSearch/index.js,sha256=8Ev-tdRIWl2HhB7Y8YR30dXK-A4ePyShOsb9A9X-GhQ,2193
|
|
168
177
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactStats.js,sha256=lYsI7O5Z8ZMwzImx_VZ25PKx2SyRgFezAOdEeTOM4as,1278
|
|
169
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js,sha256=
|
|
178
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js,sha256=uBcEXzGJYZ7dPIdQBxPqxLvwP6Z5QVg1x-YRncRDW3k,3550
|
|
170
179
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js,sha256=bSmhuwSWk4CW80mqa4ZZbjfa-_NsiJ1IxQ9veDy6sAM,2751
|
|
171
180
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVerifiedCommunity.js,sha256=m3rT8jJ3440ZX22zZog8bHatWltYXwvmw_tu6tJUM9k,1506
|
|
181
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js,sha256=3GtEW_IaP6TBKzMBBX1eYD-DuJbM31ps-dbjdgpLfc8,1254
|
|
182
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js,sha256=AZOgoxAfI19_KXfGGaKP8rtyJDbYjnYzu43hspAIKCk,2272
|
|
172
183
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js,sha256=RTSQBlGQY7ww7fVGHDvDfWQNyJ07mnEoyboTGIcCgD4,6694
|
|
173
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/
|
|
184
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js,sha256=u5ta6jcMl_s0Wj52ExgHlfviW6bsnNmUrYXgIUi6URs,12033
|
|
185
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js,sha256=qMFdPQkVQQsaS0P9KdPyFcuunZmGlEALjfABPueuoVU,1227
|
|
186
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js,sha256=jqpmjIYKf3DlEBpLlkKQbj-tEBkgtdpb64LDWCmfoMU,35398
|
|
174
187
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js,sha256=ICMV4Ixe-nTe6q7COZ0oyAQf2nVp2cez_-iUZobwUD0,1998
|
|
175
188
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/config.js,sha256=rd2wqiwmYOkh4kWe8AiGWJar2kA8R8TkGMnX5XZvihs,1473
|
|
176
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js,sha256=
|
|
189
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js,sha256=hvgwIw_mCDL6tWmXVYehdHJaZ2W44Kp3mzWdDOpCng4,1781
|
|
177
190
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js,sha256=PkLpiCl7sNSlQoCo7xxZ_H6QvWqK_TydoseIiKvtuMw,4176
|
|
178
191
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/index.js,sha256=X0tsSvLwGPzSFQEf4J1zPZbFRCiYeJq5CnEXr_J5LsU,900
|
|
179
192
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/AccessRequestForm.js,sha256=5GRlVkJQpwrY9wk4KI5Tmqmll2d3cEls8isJZjvoA9Q,8798
|
|
180
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js,sha256=
|
|
193
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagement.js,sha256=dG0-R9Ddb-RK8mxnfUYFifyx5R2Pzgqj0mvPq_8Zwwo,5712
|
|
181
194
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagementDropdown.js,sha256=qocsinvtbWEqAi8kgqNqx7c0X-_evRmCz2bPTaMQlcI,5953
|
|
182
195
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/EditButton.js,sha256=WJ5lNpbPcd_Kymn_TYklSTfkCJRPhpFeT6cWcR48mSQ,1452
|
|
183
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js,sha256=
|
|
184
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js,sha256=
|
|
185
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js,sha256=
|
|
196
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js,sha256=fDqs5sel6Zo1oPkJT1XbR3dtHXvvgVuDhe_sg_-D690,1969
|
|
197
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js,sha256=Sf5mBYLq3ydpb10cwBFbqUGqn0hsQ3aap3ujkdMTB9g,3872
|
|
198
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js,sha256=XYfXsQejNeC1R0spndn0qDrqvz6w3bj5UlPEIgT4U24,4757
|
|
186
199
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js,sha256=wORVCOjlyX2mIsDU9J0MwWFE4Zw9CCL5inWpV7m8lsM,4004
|
|
187
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js,sha256=
|
|
188
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js,sha256=
|
|
200
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js,sha256=cViV1fQ_1xvd_JUV3toffX-nuWgkKiy7WGtZcg5tV5Y,4297
|
|
201
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js,sha256=ZJaD4fW2z00tcektXVz0eLXu6oGLLW-NUjV86neuDjM,7141
|
|
189
202
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/access.js,sha256=FVcpKl22zMi1GssbLZAj1pO98c6Em_wg_yBIdfBJor0,938
|
|
190
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js,sha256=
|
|
191
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js,sha256=
|
|
203
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js,sha256=ETWFzdM61Uy94bUwT2uzjM11aIk6Lt2MOzxmPswrjoA,5177
|
|
204
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js,sha256=TieqbbmJrxVKlkD5Kvsw6F-sbpucxSV9dv30Y6pXKjI,3144
|
|
192
205
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageDefaultBrandingAction/ManageDefaultBrandingAction.js,sha256=qNWpe3KyZ8NDHKocG6XKJzb6w3fIQk3muWN126pUo9w,3529
|
|
193
206
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesModal.js,sha256=G9OwLxKqX73w_7D1k7BHOzMeLmokowMfJQg5Km7J8RA,1797
|
|
194
207
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesSearch.js,sha256=8kiiICVaJ0m2K_5cPbiHo8tN8Q_AweSmlBIkx-aJ-dA,2753
|
|
195
208
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunityRequestItem.js,sha256=dQH-Ec5btlFoXPf110IoswM_RYy19ia2onJr_iC5P78,1080
|
|
196
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js,sha256=
|
|
209
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesListModal.js,sha256=2YsFRDs2eyLtm46jz91x17jVU2Y72i7e7OFas-2WsSo,2465
|
|
197
210
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearch.js,sha256=bNkexo7L1fz5rzaxoZCM4R9GRdnZcdTRr-djR4k2t5o,3079
|
|
198
211
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearchItem.js,sha256=7Mvz7C1_S_MfsJoN8-iyAaw9Y7aBPwBa6MH6O0gWhuw,1667
|
|
199
212
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/index.js,sha256=lf_UCmT3y3IPc47X6KESV4RGhTbjdXX8bQrn8ngJbqc,221
|
|
200
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js,sha256=
|
|
201
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js,sha256=
|
|
213
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js,sha256=LM1RACmC3PS_o4txek-czaLvWD8OgjOM76aVK5jk8oE,5117
|
|
214
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js,sha256=O5aHzH-oQsagurnU0e4pFc4B_4BRTbPuk0Ifk_T_WFw,5859
|
|
202
215
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareButton.js,sha256=TKa1b_NUGD-DUqrqvQE2SwDI6Gr-HP246ymhDvQtj3A,1785
|
|
203
216
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareModal.js,sha256=5Gq2TGsOlkvrwg2fURyv7wOaO2QH22_ZWzrjE2nCDiY,6627
|
|
204
217
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/AccessLinks/AccessDropdown.js,sha256=0-Fune91rH-7B57kYvZxNlIemg-xLgxZ5LIbHGJY2PE,3068
|
|
@@ -217,10 +230,10 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/
|
|
|
217
230
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/overridableRegistry/mapping.js,sha256=kRIVYx1pkzq6kNry3M6Cn5hykDkNJAaG7sQ0BdwGSj8,434
|
|
218
231
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/AccessRequestExpiration.js,sha256=rakfZqfulHvuW60i3oTF0ptQvFChDoacPEw5iJkMq9U,1721
|
|
219
232
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/index.js,sha256=FZ_XVB-5V7k_wOYeiI06RXQn3aIeh7beyBhcK5AIvCg,75
|
|
220
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js,sha256=
|
|
221
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js,sha256=
|
|
233
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.js,sha256=xd0uVbKLC23Y3RHlHDs0NdQ2vq9PNhimPwANkEtLSJ8,5727
|
|
234
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.js,sha256=CN_IIXwIeMDFxBxsal070uPVrpDH1_Rh7DSJi4hSjXA,1404
|
|
222
235
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/overrides/TimelineFeedHeader.js,sha256=vU_D4F5jabAghjfPtpC3JvErrBVy39Je-PARgqwMD4w,1164
|
|
223
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js,sha256=
|
|
236
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/components.js,sha256=HfGLz_FZYePPEnS4fJ9-CVa8BzHPOgRi1_d21FgVrFg,7234
|
|
224
237
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/search/index.js,sha256=xvc8dtcPsTABiSpbt8azBVuZJuhXi39Nj4N8mPiFd40,2190
|
|
225
238
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/subcommunity/browse.js,sha256=N6tCJ4_NBlfQSRaiYfp4K-keHCC6xgFWmh1UCgBTyXA,921
|
|
226
239
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/base.js,sha256=OoSdV2v5hdXFxqL7rLB7un6X2kxiXWh1V-bVu6RhmUc,6879
|
|
@@ -229,8 +242,9 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/reque
|
|
|
229
242
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads.js,sha256=GxU9acySMQCPmI1dDgUEhkxAECucEoyzvbuWMl7I87Q,6877
|
|
230
243
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/ComputerTabletUploadsItem.js,sha256=XXiBPOtCVz6htS4ita8GlNAePEoKyHQcmEs0yLL5B8A,4914
|
|
231
244
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/user_dashboard/uploads_items/MobileUploadsItem.js,sha256=7rwJz0nVwBk4bXOEcWymAZrPyL0pmekBcMeBwNt8OJc,5060
|
|
245
|
+
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/file_uploader/uppy.less,sha256=HwHovPrcrhWjcFKglnhbre7UbKBuhJlPPgu_Bdjpntg,723
|
|
232
246
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/creatibutors.less,sha256=X47WXPv66x2-T2XghG_ibq5vkX_3gxelK9O0mPxzFO8,1113
|
|
233
|
-
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less,sha256=
|
|
247
|
+
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/landing_page/licenses.less,sha256=I-sVY6xvkMIh-cew5zjqp7QAD_ZGhB3vkpoBneEEd-M,1385
|
|
234
248
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/previewer/iiif_simple.less,sha256=EH1nrWuEFjfcrXrsbC82pTQqWQ2xAELSTtIkpRpar8I,326
|
|
235
249
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/theme.less,sha256=Qf4srjQoY4uAw___JDsrMhLRHTY39e5DEFyE5QlfBTg,1959
|
|
236
250
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/form.overrides,sha256=KQ4zXjP5z9-WAq4vn_lSQ6QunZf0jApC5GqU6-Mi2tY,3291
|
|
@@ -263,9 +277,9 @@ invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/seg
|
|
|
263
277
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/segment.variables,sha256=HwtfX97PrCMjVYBHj323pUmrjBuUl41yVthXQL_8YHs,141
|
|
264
278
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.overrides,sha256=ms-coZLC-kFoWoZ4UNyJq0FRQ0bSLRziXzbyP7tnmNA,139
|
|
265
279
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.variables,sha256=Luyh-V1w5wDFv2j77bYmTxfn22Cp7h1vLjRsqhf207Y,139
|
|
266
|
-
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides,sha256=
|
|
280
|
+
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides,sha256=EBhnYyEUy057UPvqLBBov-tORBgUEOio-cWHUVUevNs,9127
|
|
267
281
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.variables,sha256=IQZqcNQ1AwmrpiPwkWZ6Zk67kyCMf8DJBqNgC1porDY,3043
|
|
268
|
-
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides,sha256=
|
|
282
|
+
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides,sha256=Hh05CyqHwtZLzSX8bg1LFZKo7364JV-h52HJfAddLqc,3517
|
|
269
283
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.variables,sha256=JFUnfiL_Xve48EwxRjYq0T-QJA8jboC606L08IjrBXg,322
|
|
270
284
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.overrides,sha256=VV-V1ez1AT-2ULq8kh9akUZncGOx6ESGnEUqDlvRihY,137
|
|
271
285
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.variables,sha256=fknu9A-l5L6-tH7KOYKK6cHhxx8cKMlig7EGYI7zIU0,137
|
|
@@ -273,6 +287,8 @@ invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/drop
|
|
|
273
287
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/dropdown.variables,sha256=UdGmzpRQpkwwKMbQx3ATB8_ePVuhcNBzqPEP6nPNYuo,408
|
|
274
288
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.overrides,sha256=niU1Aq42r9mhjJp5OjdJNPg5TiJPyydd1UdqdxkRuTY,2725
|
|
275
289
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/modal.variables,sha256=KbMF2le7VpZbTAVIZVo30uCx_5OxU8Wn5WflRJ18qxE,152
|
|
290
|
+
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.overrides,sha256=Cs--0FAOHxX1Z_YdMjHUUV3E2E37b2IcQFQc-bjFoVs,143
|
|
291
|
+
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/search.variables,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
276
292
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.overrides,sha256=Mix1n_g7kGaW_6auq8wxK0JFwy9KoP3d8VFRrm6hA0Q,132
|
|
277
293
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tab.variables,sha256=OeAvcl-VsP87cqg-r7d9z6624O_sqNcBooccNi2mydI,198
|
|
278
294
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.overrides,sha256=ddMSC9hBAS4vwjUHhD8RoPo3cZDcezhCRHH6DKZXFps,1250
|
|
@@ -283,72 +299,71 @@ invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.o
|
|
|
283
299
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.variables,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
284
300
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.overrides,sha256=m8gkMU_yKP9YIbVQ-A9eZIAj7dTmz0R25aZ5nWOYuCE,3059
|
|
285
301
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.variables,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
286
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next
|
|
287
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/
|
|
288
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/
|
|
289
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/
|
|
290
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/
|
|
291
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
292
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/
|
|
293
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
294
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/
|
|
295
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
296
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/
|
|
297
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
298
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/
|
|
299
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
300
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/
|
|
301
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
302
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/
|
|
303
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
304
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/
|
|
305
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
306
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/
|
|
307
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
308
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/
|
|
309
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
310
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/
|
|
311
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
312
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/
|
|
313
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
314
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/
|
|
315
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
316
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/
|
|
317
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
318
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/
|
|
319
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
320
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/
|
|
321
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
322
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/
|
|
323
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
324
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/
|
|
325
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
326
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
327
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/
|
|
328
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
329
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/
|
|
330
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
331
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/
|
|
332
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
333
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/
|
|
334
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
335
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/
|
|
336
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
337
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/
|
|
338
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
339
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/
|
|
340
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
341
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/
|
|
342
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
343
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/
|
|
344
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
345
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/
|
|
346
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
347
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/
|
|
348
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/
|
|
349
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/
|
|
350
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/
|
|
351
|
-
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/scripts/initCatalog.js,sha256=PKt4RTa29L53rjB_hZnEHahZA4YprWDtWq4nlO7Z0p0,728
|
|
302
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js,sha256=un5pmzpJeMu6UeZygWGnsIIuNu8RTVQhZXMINj2mXk8,1065
|
|
303
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json,sha256=j-ncE2nITQInJ8B5RKihnpSRRWbp8PtY2wIuqKqA7sg,567
|
|
304
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot,sha256=OmYY8Smb_kBuIVb_wI5LpAP3XCaWtrSNgHnm0Mo7XuY,20996
|
|
305
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/_generatedTranslations.js,sha256=8Oo9iRj292_YsEWJRxMJqV9ABdPUOn1H77S31lx3Rdc,2805
|
|
306
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js,sha256=Id8vOmdcp2I3LMQTO2o54pCFMVepuHPpxx0-aYz4KQ4,748
|
|
307
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po,sha256=DuVf6zhxbPmWj3mPgNYms5_r-SKFAOoDYccv4fIIU90,26256
|
|
308
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json,sha256=1O4DBEvwNg2Z4bcFkseckmnb935Y1qUCeU9YZX80KrU,23045
|
|
309
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po,sha256=3GXtUQRlh_pK-AU9rhmHuPRp2GBZhV2WcqTg0gYVpW4,13488
|
|
310
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/translations.json,sha256=0gve-ppz9Yjw_8K_F1JGTKRfDsWd3jRsryj-VeYsW8E,9991
|
|
311
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/messages.po,sha256=SmsRD5512HpSMuLW3bhQa_tgPmfrbdio-bZkgheZsdA,13503
|
|
312
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ca/translations.json,sha256=dVeeO7yif9B76Bx0oW-alCMiIIr7se2Usddvyka0jI0,9962
|
|
313
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/messages.po,sha256=3OTI_OyGz5WfJWNTIzrKZQBs_DcdX8by9Kyk_hMIDf8,22168
|
|
314
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/cs/translations.json,sha256=tnaHhnPiMDrFT-_Xg1IUHQd9iO49-GJcYdJZnL1o0nM,18578
|
|
315
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/messages.po,sha256=PuJssGcJjlRMvx-3JsjhW72-nae7ph-wc4pcgyPblYw,13323
|
|
316
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/da/translations.json,sha256=b9NrW8J1WMqIE5aG_x3ezYYY_vVAETJ8ThR_5FPB8fc,9721
|
|
317
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/messages.po,sha256=JyBrOnmpCstXmgGVjRghceHbSZ4uBO18PVVSQRu6jBw,22633
|
|
318
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/de/translations.json,sha256=FqxD6vbx1vPLQi9oV7MiMK2PeKP4ZwcKd4GIqylcVtc,18485
|
|
319
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/messages.po,sha256=yQrUBSoXraww2k14phoWURNJl0OGNYWgf3L1wdtDlEs,13874
|
|
320
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/el/translations.json,sha256=zFLHHR0f61P7H0bMVCDULd4vQVhhquFcAH-oeFkOjqY,10242
|
|
321
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/messages.po,sha256=qmUzHrmSEtAibAHC4Nha2ln5JHXCm0A-5RMu1gFItHI,20996
|
|
322
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/en/translations.json,sha256=fIJ9uQ6akpXq-tk0f418Hax4hpk3RxqM_hzb8JMMcDM,17332
|
|
323
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/messages.po,sha256=aV08GepkbnRa7q4IwXmVLZhU5jD3GwMfBlP61epaok0,21760
|
|
324
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/es/translations.json,sha256=3v8IREjFrQqIl9dKbmyJM6L1BnDJm0WeORO-lsTG51k,17657
|
|
325
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/messages.po,sha256=uVrAQBDCBsTI-GLGyKpGtDORn0TtM8ekegRBjX4VwWc,14542
|
|
326
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/et/translations.json,sha256=HENA5VfETykZ0FveveTMoGATxLteH0KSLSfKmsFHlho,11007
|
|
327
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/messages.po,sha256=l-Hx9Ru36iCDUor8V_iyd0kF4nNwoYsNKpGIgV4agR8,13384
|
|
328
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fa/translations.json,sha256=bZuqzYqVbwU2FtFJ1qWxukGYNRCqZ1qC6K9Sv1r5N78,9872
|
|
329
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/messages.po,sha256=cbwWp2wqPna8YW9Qn0F5uUGtE_QY52bEb67hzFOIcj8,22012
|
|
330
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/fr/translations.json,sha256=W0yhWjXFnN1EjkhZxocYkuAsCb-DldLuJ5l2QhP9Vc8,18021
|
|
331
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/messages.po,sha256=7SYTRFhL7IdFxshVk_9P1F9jXsYAX09y315T3ejnho0,13442
|
|
332
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hr/translations.json,sha256=Ql8Plen_hlD3VVJ9IoEugbE4zF5iqdqrO4Ov7290D8w,10005
|
|
333
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/messages.po,sha256=0mfbZqLAoaiVNXxeTYvnziWt_RiNWZ7GISMgTLeaibU,22258
|
|
334
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/hu/translations.json,sha256=z2NRf48eYneuyl_ExQWX0SUq1AVjImTgUncMIKLj0wM,18485
|
|
335
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/messages.po,sha256=FYV2pCsUafgcniPdUgO3McaCJc2rORNxaPTW1_Su8PE,13869
|
|
336
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/it/translations.json,sha256=nAMjayyj3ZaenSrT_AXOvnixYHivDpmKaV9PauuZjYU,10074
|
|
337
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/messages.po,sha256=BlTBkUHl6gFjB5j_L72nt9Dlddh939vR1x2G7mmqNsk,13259
|
|
338
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ja/translations.json,sha256=mN9lYcHR3bnhvNud72hAnnAWKWeFHnMtwVh4pCN3grg,9603
|
|
339
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/messages.po,sha256=1soccdalg5UhZOTqiz2V5U3c9m8vDZxwNS1HH-Dxcsw,13887
|
|
340
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ka/translations.json,sha256=-zA22YVbNZn7rQontJ6_Iu1nLm7w1KgeTVxNyPhRKx4,10375
|
|
341
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/messages.po,sha256=XrPTnPHUgjbFH0h669BtnEQrH2mLfEvpkYh59g_i1tQ,13072
|
|
342
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ko/translations.json,sha256=lD54cf1BLn-SY09cH3RWEeryg1VZIlezqF_4KfQxrY4,9462
|
|
343
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/messages.po,sha256=VFQDoUUrvW8tVLgX0hX2Nsc8Jid1vwIVnvzrdg-sbpk,13689
|
|
344
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/lt/translations.json,sha256=R5mVNw_UDmPb08AVcgE5sXnhu68dJXe6nuQ0Sq5lkBY,10340
|
|
345
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/messages.po,sha256=yK-rBYV7quCIrwtXT3XcIFBqrmiyD_anFafGUamG5a8,13308
|
|
346
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/no/translations.json,sha256=tRnssnL5Dh2De3fGMAnrWzLiSDvEo_aeHLYFB7Mx4tQ,9811
|
|
347
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/messages.po,sha256=I4J09CquhoLib5Ime76KkMcCqhVxn2-H3eLUVs17sco,13928
|
|
348
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pl/translations.json,sha256=vVB1C3KG8FqZiPRyxxyxxGJoSAmBw3seJ_wdhQHTEz4,10570
|
|
349
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/messages.po,sha256=4XuhLT2dqwf8yl36c31slJXAtLD_vF9KKppwlESp9Fw,13372
|
|
350
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/pt/translations.json,sha256=E6TkPLTUgJNfJzmUnwKCnfG7BWh1BsyDb1w9Duk_jl4,9745
|
|
351
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/messages.po,sha256=AOjzlcA4JqokK2Vqh74DMV3_F2F4yJbZY4pY0rVBQdc,15521
|
|
352
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ro/translations.json,sha256=VFwQh5p1eB6BPg-HDip45BV8Uh2lO8e5lkeZiMar4Nk,12036
|
|
353
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/messages.po,sha256=DItetjB-rma_NUR5g4eNk2bH6kMHKO-hHf4a4s_WGiQ,27716
|
|
354
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ru/translations.json,sha256=REdO7HN16Rf7GJzedPNtj3DzqgYnZw5nyxopAcipmR4,24213
|
|
355
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/messages.po,sha256=efkxG7xifqVlqYLiAafKjfLjaDv-b7dywNGWAH51ZGs,13776
|
|
356
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sk/translations.json,sha256=itEHPsXhyVT-kfTBdtiQs43Re--mohkhSAgAyvBMD48,10447
|
|
357
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/messages.po,sha256=XXpc6iCOy7i2OIRkCP1oOv-dDzwxXE1lS9pSZz0FAoo,21306
|
|
358
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/sv/translations.json,sha256=z4CY-A9AmRcxrHud0dAUHBZVM6ClwN3F5ESTIitdUkE,17600
|
|
359
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/messages.po,sha256=ayJZ6ckXx0LdtVuxUkGLVBXNV77pR2i9AmmJhaCY6Ck,21671
|
|
360
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/tr/translations.json,sha256=7UA__nXX_mUM0mSf4mbttA663oUL0va6-F4x6olV-wQ,17893
|
|
361
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/messages.po,sha256=nGZJZFF9Zc0TtEuTPhihwwpZLOX6fhJwBccLlKi3lF4,16176
|
|
362
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/uk/translations.json,sha256=rSxmJk3XTx_hu4UKEVQQ0w7jghbhruEnIKzyoTm6O9k,12682
|
|
363
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/messages.po,sha256=D9NXEcXYrvCdU7Xl8yy_FbG_fWRfg_D7sbR1CBs3nJ8,14185
|
|
364
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_CN/translations.json,sha256=_wziGsFEV4BhaUdw2UElPeUyXBYHGQQ8nNJJsOP1GZY,10494
|
|
365
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/messages.po,sha256=BeF2P9_Oj7k_pZxfPJme538Kue5ylONyCtsZo611Vc4,13195
|
|
366
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/zh_TW/translations.json,sha256=1pO6eTP6UZgZXneHwRCBAM3QRKAOGYzH-OzemZ2nqUM,9525
|
|
352
367
|
invenio_app_rdm/theme/static/icons/licenses/cc-by-icon.svg,sha256=Aogts2TDR_M090vHNBA2UhEDu79cdTPyjnoNmeDxFII,9719
|
|
353
368
|
invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-eu-icon.svg,sha256=rJQn1RpDLLHUjVXs3nsxfduzOta1HZ1hBAhtNsvLtcU,15478
|
|
354
369
|
invenio_app_rdm/theme/static/icons/licenses/cc-by-nc-icon.svg,sha256=65P9CKCvlT-AL8a1mkf1ugPBnQqyBVpDBgiSg20fa8w,15083
|
|
@@ -377,7 +392,7 @@ invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html,sha25
|
|
|
377
392
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html,sha256=HiQEP1os90mVj_MlYTEHyTGP5VfkaLQrfLZ7vR1vv-8,5767
|
|
378
393
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html,sha256=SQqgYKN0GrzieSydu0fd0eveup_R_J4zzG8bR8QlUGw,1820
|
|
379
394
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html,sha256=eZMJSypWlQ2CNbiyS8lSc4s6kHX31I-wuAYLaPAmxGk,5803
|
|
380
|
-
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html,sha256=
|
|
395
|
+
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html,sha256=3jdt5-AAZyQtiAOoPpdagKK56daYhk35oTG6YkiyzTU,2973
|
|
381
396
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/javascript.html,sha256=20O9okaOd_bqpBbuq9K0zqY0UUNXaFVKIslgPArs67U,364
|
|
382
397
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page.html,sha256=zwIZmRWIJpz9UQpEqM3oTaSzlmek6tdP8VDR1Mugka0,951
|
|
383
398
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page_cover.html,sha256=D-NNfCX38wRjHOq1kzPPncKKUd0b9U1al-NMy48dKvU,357
|
|
@@ -385,80 +400,83 @@ invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/robots.txt,sha256=Kl
|
|
|
385
400
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/searchbar.html,sha256=tvzez_2CE86wl_lipD44MD1swZcZw5uYqXEvvPMkBIo,2222
|
|
386
401
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/site_footer.html,sha256=C0xluZe7KCkvRKeeMIt6P8v_EfWyuMCQ_JQvlI0M9Xw,1037
|
|
387
402
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/files_integrity_report/email/files_integrity_report.html,sha256=mwbLrf2xabxq0dLQzUNWGHeYVoySo9GaaydT-FKC9g8,1237
|
|
388
|
-
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html,sha256=
|
|
389
|
-
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html,sha256
|
|
390
|
-
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html,sha256=
|
|
403
|
+
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.de.html,sha256=2T90KVwy4ldNrkFuMUQ21TkQMPRO52--RslxBGDWA4Q,9321
|
|
404
|
+
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.en.html,sha256=n6fa9WSuiS4sNaGJ3Thw9E9ZqWBA1QTh-DkvhMnAx4Q,8796
|
|
405
|
+
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/search.sv.html,sha256=wbUp8gs4TFEjGuE8d-2A-qywOppntd8tu1ExNut7T3M,9128
|
|
391
406
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.html,sha256=gQSJsmsXaLLA8KqEjkyxn7j299Kc0hnjA0sXq0oXeuI,7780
|
|
392
407
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html,sha256=YauDJm4zKxaSUmAIStlODMKS7eM68SbImJfk8vJj1C0,8081
|
|
393
408
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html,sha256=Rfd4-1vpU92VxppMTLGlS7uzqXWZUtGBARJTalUFuxg,6066
|
|
394
409
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html,sha256=jd-EEV80N5612Xsct4RhWBXB1u7gdL88WRiIfhBz7gs,6155
|
|
395
|
-
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html,sha256=
|
|
410
|
+
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html,sha256=46so8aObvJUSCTiEx1TXV53pIjONqIK2DcCI_3HbyXA,1183
|
|
396
411
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/settings/notifications.html,sha256=7KfuuIbYtZT7DtxkBhP9U02JxEOgrAKO9AC1SDVY3uo,515
|
|
412
|
+
invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html,sha256=X27Jhk2Z3h1JJY61a6WXhu8AtEDIYavUNprhG5t8Oy8,722
|
|
397
413
|
invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html,sha256=pPNIT9J_C4omwWuZWrAdq8rQANLaQmXeeKBmpAMxFtg,5910
|
|
398
414
|
invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html,sha256=D8rFpAzWZ05hUj7kbBqvi-PqLRnEJhtL7UPYy5u0jHA,1644
|
|
399
|
-
invenio_app_rdm/translations/messages.pot,sha256=
|
|
400
|
-
invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo,sha256=
|
|
401
|
-
invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po,sha256=
|
|
402
|
-
invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo,sha256=
|
|
403
|
-
invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po,sha256=
|
|
404
|
-
invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo,sha256=
|
|
405
|
-
invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po,sha256=
|
|
406
|
-
invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo,sha256=
|
|
407
|
-
invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po,sha256=
|
|
408
|
-
invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo,sha256=
|
|
409
|
-
invenio_app_rdm/translations/da/LC_MESSAGES/messages.po,sha256=
|
|
410
|
-
invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo,sha256=
|
|
411
|
-
invenio_app_rdm/translations/de/LC_MESSAGES/messages.po,sha256
|
|
412
|
-
invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo,sha256=
|
|
413
|
-
invenio_app_rdm/translations/el/LC_MESSAGES/messages.po,sha256=
|
|
414
|
-
invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo,sha256=
|
|
415
|
-
invenio_app_rdm/translations/es/LC_MESSAGES/messages.po,sha256=
|
|
416
|
-
invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo,sha256=
|
|
417
|
-
invenio_app_rdm/translations/et/LC_MESSAGES/messages.po,sha256=
|
|
418
|
-
invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo,sha256=
|
|
419
|
-
invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po,sha256=
|
|
420
|
-
invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo,sha256=
|
|
421
|
-
invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po,sha256=
|
|
422
|
-
invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo,sha256=
|
|
423
|
-
invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po,sha256=
|
|
424
|
-
invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo,sha256=
|
|
425
|
-
invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po,sha256=
|
|
426
|
-
invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo,sha256=
|
|
427
|
-
invenio_app_rdm/translations/it/LC_MESSAGES/messages.po,sha256=
|
|
428
|
-
invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo,sha256=
|
|
429
|
-
invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po,sha256=
|
|
430
|
-
invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo,sha256=
|
|
431
|
-
invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po,sha256=
|
|
432
|
-
invenio_app_rdm/translations/
|
|
433
|
-
invenio_app_rdm/translations/
|
|
434
|
-
invenio_app_rdm/translations/
|
|
435
|
-
invenio_app_rdm/translations/
|
|
436
|
-
invenio_app_rdm/translations/
|
|
437
|
-
invenio_app_rdm/translations/
|
|
438
|
-
invenio_app_rdm/translations/
|
|
439
|
-
invenio_app_rdm/translations/
|
|
440
|
-
invenio_app_rdm/translations/
|
|
441
|
-
invenio_app_rdm/translations/
|
|
442
|
-
invenio_app_rdm/translations/
|
|
443
|
-
invenio_app_rdm/translations/
|
|
444
|
-
invenio_app_rdm/translations/
|
|
445
|
-
invenio_app_rdm/translations/
|
|
446
|
-
invenio_app_rdm/translations/
|
|
447
|
-
invenio_app_rdm/translations/
|
|
448
|
-
invenio_app_rdm/translations/
|
|
449
|
-
invenio_app_rdm/translations/
|
|
450
|
-
invenio_app_rdm/translations/
|
|
451
|
-
invenio_app_rdm/translations/
|
|
452
|
-
invenio_app_rdm/translations/
|
|
453
|
-
invenio_app_rdm/translations/
|
|
454
|
-
invenio_app_rdm/translations/
|
|
455
|
-
invenio_app_rdm/translations/
|
|
415
|
+
invenio_app_rdm/translations/messages.pot,sha256=6Zr8VhWZxAw55EJtmiET3GRkE-9jsQ6X9iuXaasxI3A,48847
|
|
416
|
+
invenio_app_rdm/translations/ar/LC_MESSAGES/messages.mo,sha256=Q0748tC1z4LOOE2N3Q-pNIaBlgDsV-6wPwqOAKIdq9g,20556
|
|
417
|
+
invenio_app_rdm/translations/ar/LC_MESSAGES/messages.po,sha256=mAxD925ZY9p49KXcgWMu_Lxp3TWoES-Xy93omWoA-jo,55936
|
|
418
|
+
invenio_app_rdm/translations/bg/LC_MESSAGES/messages.mo,sha256=Eetjue-yYauSIpnNeVDlUsHR_POK_fb_t4PqVXGwOHo,1264
|
|
419
|
+
invenio_app_rdm/translations/bg/LC_MESSAGES/messages.po,sha256=5NKKnalWUpCBnEXuYDSC5ioYW35EmN4Ct7qbWPzsXh0,46655
|
|
420
|
+
invenio_app_rdm/translations/ca/LC_MESSAGES/messages.mo,sha256=J6CrqrevvMWeUFnXsTWzBB7sDq23mYIS7yOKBHGL4Pw,1905
|
|
421
|
+
invenio_app_rdm/translations/ca/LC_MESSAGES/messages.po,sha256=TqLEKUDnkm9rD1s7PIqLNKNyZA88LgvV-yAg346sW4g,46774
|
|
422
|
+
invenio_app_rdm/translations/cs/LC_MESSAGES/messages.mo,sha256=pxJx-sL8BJasqLbdeFu66KE8Ce7Oi3Bivlf3fjyD1RQ,17591
|
|
423
|
+
invenio_app_rdm/translations/cs/LC_MESSAGES/messages.po,sha256=K0Q52F4QoH-ZJUv22GtKrYInO2xXZmcCdWgE0CNf6n0,53045
|
|
424
|
+
invenio_app_rdm/translations/da/LC_MESSAGES/messages.mo,sha256=KAtqPtBFgsiWh4OohhM9w4-g8GojrQHbm-RSd1-xBw8,701
|
|
425
|
+
invenio_app_rdm/translations/da/LC_MESSAGES/messages.po,sha256=2HwSE-aCBouFyoU8CkprETSWbtjCg_7RtbTTaTh6U7w,46519
|
|
426
|
+
invenio_app_rdm/translations/de/LC_MESSAGES/messages.mo,sha256=mQ4k_tUESv1T5QD1Yr_efy1UGGawgsrp-b_x8_9wayU,17985
|
|
427
|
+
invenio_app_rdm/translations/de/LC_MESSAGES/messages.po,sha256=d2ycI3kQliFQL7XyFXKuXjudy75DU9IwuvwB0Rzys4g,53778
|
|
428
|
+
invenio_app_rdm/translations/el/LC_MESSAGES/messages.mo,sha256=KzFvuNxhv6HIEdo5fMbID43XVlk2rF9-sJGzn8wtJ_8,2367
|
|
429
|
+
invenio_app_rdm/translations/el/LC_MESSAGES/messages.po,sha256=dYEyiYwspfnmrTqF9f0WsLGsY0OPn6anelDOk8yHYTM,47290
|
|
430
|
+
invenio_app_rdm/translations/es/LC_MESSAGES/messages.mo,sha256=bxbt8e1WNV5ficWblX23susW1GwU5MpywgyvsDLjBeU,14291
|
|
431
|
+
invenio_app_rdm/translations/es/LC_MESSAGES/messages.po,sha256=v4_pt-kdE00PEBR5NdFc_DzscjxoAMUVgtH80e0F2z8,51743
|
|
432
|
+
invenio_app_rdm/translations/et/LC_MESSAGES/messages.mo,sha256=9kSjX1baDkmORDu_hWZxskvoxZi3LTJKlc_sop8holE,7394
|
|
433
|
+
invenio_app_rdm/translations/et/LC_MESSAGES/messages.po,sha256=ev4g9rMfOgTdVlMTwmfolEr-NbUyi0o0nkIT31N8s88,48537
|
|
434
|
+
invenio_app_rdm/translations/fa/LC_MESSAGES/messages.mo,sha256=noZYCRv3J5P3LaYoKIliZSWM7pRbUKaw-TN2YIhxtYw,1111
|
|
435
|
+
invenio_app_rdm/translations/fa/LC_MESSAGES/messages.po,sha256=gwIm_rq1-ynWVHEdhn4nJ60dKJcqc-BZCd-BKY59xzw,46573
|
|
436
|
+
invenio_app_rdm/translations/fr/LC_MESSAGES/messages.mo,sha256=cPTC9S0PXbEgVXwF4-r9eaNMEDSjgUfV0M3tNtE5GIA,14375
|
|
437
|
+
invenio_app_rdm/translations/fr/LC_MESSAGES/messages.po,sha256=Sw2bXZd9kZtiDkWUmxjnWOzUX_GvZ4MNPt5h4xUTLkg,51781
|
|
438
|
+
invenio_app_rdm/translations/hr/LC_MESSAGES/messages.mo,sha256=wJNN8pqpMqKJbUWsc7fIWBrkwodOHMMoNR0GXfLfYkQ,1108
|
|
439
|
+
invenio_app_rdm/translations/hr/LC_MESSAGES/messages.po,sha256=Ygl8TXel9jBoqKWHgdTY31NvIa_n_ipy9zDZD5u7oko,46574
|
|
440
|
+
invenio_app_rdm/translations/hu/LC_MESSAGES/messages.mo,sha256=0A6_CRDl3PqWrlVrRcqlBlBUwvGg0LRsHEquApo7OdA,18084
|
|
441
|
+
invenio_app_rdm/translations/hu/LC_MESSAGES/messages.po,sha256=OyeUY_vhr7ziIrpXa-ka7SB4ngJfLBeaput-nS9SJ3Q,53523
|
|
442
|
+
invenio_app_rdm/translations/it/LC_MESSAGES/messages.mo,sha256=mLRYI6V9c7ttY1B9FwjBFcLAjgB5SBYUPU73NvRm-zE,5350
|
|
443
|
+
invenio_app_rdm/translations/it/LC_MESSAGES/messages.po,sha256=7kzXz8nVBrW4XKRTtD3RsXpbAcxNBpd-Ayv1RGgpd8s,48021
|
|
444
|
+
invenio_app_rdm/translations/ja/LC_MESSAGES/messages.mo,sha256=17l0pLdjEviA2ckrXDzGGhmEKMIZeUy8nPMyCqpslsE,1078
|
|
445
|
+
invenio_app_rdm/translations/ja/LC_MESSAGES/messages.po,sha256=PYMBdoQbwIzrtXcOsAODwGUHKGRK6Ko3ei95xxwcq54,46544
|
|
446
|
+
invenio_app_rdm/translations/ka/LC_MESSAGES/messages.mo,sha256=qdPsP7ynM6ZE0xOiYIbC8UoKSvAz1QKZwXFruKQ8B48,2160
|
|
447
|
+
invenio_app_rdm/translations/ka/LC_MESSAGES/messages.po,sha256=V5R_nS2CntusbzfhoNYMEk5FiyV2sBta0YXWSLvYgmg,47269
|
|
448
|
+
invenio_app_rdm/translations/ko/LC_MESSAGES/messages.mo,sha256=lErbxf3w-xql8k7cNrEtKxII66vLPU8sYQkE33Y40Hg,685
|
|
449
|
+
invenio_app_rdm/translations/ko/LC_MESSAGES/messages.po,sha256=DgPB8KHnvesr9jBy1vyJubce3kPLYZc-W0Ch7IWPrFY,46371
|
|
450
|
+
invenio_app_rdm/translations/lt/LC_MESSAGES/messages.mo,sha256=lKp6Nb95iNLVrG5fTMOcBdQinG8bUpff_bbR12aCPmM,1729
|
|
451
|
+
invenio_app_rdm/translations/lt/LC_MESSAGES/messages.po,sha256=mETUo1aGbQC8TdoD4MLa7aNjeUIFlUBwnzRwDhCaAUo,46815
|
|
452
|
+
invenio_app_rdm/translations/no/LC_MESSAGES/messages.mo,sha256=0iHp1b_sUySR63g5Nv9FwmGdTyIaKq1z0OOakGSbnq0,1128
|
|
453
|
+
invenio_app_rdm/translations/no/LC_MESSAGES/messages.po,sha256=cLnZgsZ9vBOlS36wMTSm6XchOsA1al2Jp3l3c_sA380,46519
|
|
454
|
+
invenio_app_rdm/translations/pl/LC_MESSAGES/messages.mo,sha256=e45sVNoTDprq51LN81f6xMrVhyqV15V6qxI2Dsp9xIk,1284
|
|
455
|
+
invenio_app_rdm/translations/pl/LC_MESSAGES/messages.po,sha256=n3lUIWbz_V4P90ePXrbUUlkiX_XCopvaTUZGWRtmpV0,46675
|
|
456
|
+
invenio_app_rdm/translations/pt/LC_MESSAGES/messages.mo,sha256=9HbkMoFIUhyYiM0NfDJRIzWQwaKYIuJVjyji6VtU1tg,961
|
|
457
|
+
invenio_app_rdm/translations/pt/LC_MESSAGES/messages.po,sha256=VFHurLfWABnGOplKbs8PnMtCjFQHg-qhsD-oAbKpk9E,46530
|
|
458
|
+
invenio_app_rdm/translations/ro/LC_MESSAGES/messages.mo,sha256=e2dJsYJeHhnsGQ0fe32o7OaehOEZRuRTBKSQl_ArNyU,14246
|
|
459
|
+
invenio_app_rdm/translations/ro/LC_MESSAGES/messages.po,sha256=vyyqZhOQipeSObTvw5CXZV0Gfi4zhy_8679gWfzOz1A,51801
|
|
460
|
+
invenio_app_rdm/translations/ru/LC_MESSAGES/messages.mo,sha256=Hlc_6rYkDF18NfQLS2aOQihdEGiWBWFB1q2ZCyYPkYg,16513
|
|
461
|
+
invenio_app_rdm/translations/ru/LC_MESSAGES/messages.po,sha256=XAIJfizcVu1P6UDSqN35Lln9hmxhcOOvov-b4fjpfGA,54616
|
|
462
|
+
invenio_app_rdm/translations/sk/LC_MESSAGES/messages.mo,sha256=_FnJddeJpBTs6dL3Cr-bH6N-7QSsxqdm4IbuYnMEalI,2168
|
|
463
|
+
invenio_app_rdm/translations/sk/LC_MESSAGES/messages.po,sha256=PoG5r52Ly0wnIT4amnDQx14eLckT2KSlINPRr4Ct8ls,46932
|
|
464
|
+
invenio_app_rdm/translations/sv/LC_MESSAGES/messages.mo,sha256=BhUWi0gzy4jaikDHl4pS9R0fYB_09bwaiyGKj7_Iu5s,17224
|
|
465
|
+
invenio_app_rdm/translations/sv/LC_MESSAGES/messages.po,sha256=TUNvf0HJ64NxkDozyBSUWpYfNODw-twSc-NCg2KG_AM,52590
|
|
466
|
+
invenio_app_rdm/translations/tr/LC_MESSAGES/messages.mo,sha256=rfFzsMvHUMO5s_onQPEoKcwFnaXp3BQ02VVvzjGp6pU,14342
|
|
467
|
+
invenio_app_rdm/translations/tr/LC_MESSAGES/messages.po,sha256=6ckELMzfGJPYeAuToyj6cH4J6EC49ooHInho_Srm0RA,51868
|
|
468
|
+
invenio_app_rdm/translations/uk/LC_MESSAGES/messages.mo,sha256=Dl3kihz_A4vx3RBwpjfwTbRUwEzPb_en8E_cT9zU1YA,8153
|
|
469
|
+
invenio_app_rdm/translations/uk/LC_MESSAGES/messages.po,sha256=liNrMpEX4csILTkKDu2t7JOp-9YCPnlNqZHXpSk1oHo,50107
|
|
470
|
+
invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=SQvu6w17a-iln1TL5VUw7YLB1z3yaSJ1o4yehGJrdCc,7000
|
|
471
|
+
invenio_app_rdm/translations/zh_CN/LC_MESSAGES/messages.po,sha256=1WQNNZsdiL1RU62OIgFklsC1oBvNiJ6RDlHpn-3a68A,48263
|
|
472
|
+
invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=3JqsHwV0PCmqka8dYQQrsKb3hMarQm4RTtTSVMMD3t4,1034
|
|
473
|
+
invenio_app_rdm/translations/zh_TW/LC_MESSAGES/messages.po,sha256=qmZP-wzsddIWQpOw3YoCw0vAAbdB6HjhUQk5GarXBpc,46500
|
|
456
474
|
invenio_app_rdm/upgrade_scripts/__init__.py,sha256=AlBBeGDr7RmylFE1ynJhFylaAlINQkLNyuS7ufCevEg,285
|
|
457
475
|
invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_1_0_to_2_0.py,sha256=SCUdvuQYGnjWLfm6Kd-f3swlOrxSNN3kO36OVEOkN7g,1760
|
|
458
476
|
invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py,sha256=p6qTNjUMAJ-0tnrSwar7jtDX_sg6V9kFj7fzH-wrbkY,2769
|
|
459
477
|
invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py,sha256=TX6FCWXY4qM4z7IYzDO5qaMTheo3zAjFrmR1sXaEf4U,1333
|
|
460
478
|
invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py,sha256=Tp7jfT2JHrYCFzF2qIYqG7yr7k-GhX2zkw61CWJGA78,6941
|
|
461
|
-
invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py,sha256=
|
|
479
|
+
invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py,sha256=pyO68jyGyKXVTcja8tpi2XgNx_FxXk7JhgDTV-wx3xM,8205
|
|
462
480
|
invenio_app_rdm/upgrade_scripts/migrate_1_0_records_to_2_0.py,sha256=mRDv_Ao5zMgA6X0aogMfvhspO1CIApKtDW_ziJp5fjI,3325
|
|
463
481
|
invenio_app_rdm/upgrade_scripts/migrate_2_0_to_3_0.py,sha256=jL_2I61Q9qt3fjBzYYueeT4EMQ9FlNPxYE4nzDQbLEY,2698
|
|
464
482
|
invenio_app_rdm/upgrade_scripts/migrate_3_0_to_4_0.py,sha256=BNjGufwLBvLHnu0gz5b_Are-FuxYjXlCtkLgNQckV3U,4768
|
|
@@ -479,43 +497,9 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
|
|
|
479
497
|
invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
|
|
480
498
|
invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
|
|
481
499
|
invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
|
|
482
|
-
invenio_app_rdm-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
tests/test_views.py,sha256=Q0mSOqd6xVrAxQMdc0MAdZRUnxv7gFAkKcBQY-gQtUI,1420
|
|
489
|
-
tests/api/__init__.py,sha256=yKVf0yYRuxmXvyAtLjmfpHGVCsEkZOhs_FojAAM_w-8,244
|
|
490
|
-
tests/api/conftest.py,sha256=0HkavUGeZLAF6aP5j8yFoyPFaEQj790x57L_otwvFTo,635
|
|
491
|
-
tests/api/test_protect_files_rest.py,sha256=wbe_PaUbWKnlq5nWDkfqTA2h0HxvI4we4PtxW_ma5tc,2423
|
|
492
|
-
tests/api/test_record_api.py,sha256=9fHo6tWSakVG1bj12JfY1xY2QnYmDAaX_b_QIDj5woM,6000
|
|
493
|
-
tests/api/test_stats_api.py,sha256=UePoplUtJPOZcW0ih22Uw7QFT4h5gPN4pfXGGlOe1W0,1052
|
|
494
|
-
tests/fixtures/__init__.py,sha256=yKVf0yYRuxmXvyAtLjmfpHGVCsEkZOhs_FojAAM_w-8,244
|
|
495
|
-
tests/fixtures/conftest.py,sha256=XeHBsck2uwtOM0d0fcKhu2gPMVq6-_Xp2WxT-2AgQNU,700
|
|
496
|
-
tests/fixtures/test_cli.py,sha256=HivtaI3dqdWZml-rBif_FfyFfi1iG-pAJOol0ckiGHc,751
|
|
497
|
-
tests/fixtures/test_fixtures.py,sha256=dOFejrkfK5LsJyvDem9wa5I03e-yH40TALlelEinre0,1319
|
|
498
|
-
tests/fixtures/app_data/oai_sets.yaml,sha256=nQt7ZNQCUOEJBR6txo5Cc845SbjEnvNfLR4lAeRMBA0,84
|
|
499
|
-
tests/fixtures/app_data/pages.yaml,sha256=t4pyjwMBVI6MxEkwCtg9urMXo5fh0mzWy-Zr8NvCXuQ,73
|
|
500
|
-
tests/fixtures/app_data/pages/about.html,sha256=obB_g3uL1ligwguh0a0-tRLRBB-eGXN1NE-3odp2j-E,11
|
|
501
|
-
tests/mock_module/__init__.py,sha256=gu6vRcXqYTKCXZjvAIHZRv2w1IvpGiDs7atQJbij5M0,236
|
|
502
|
-
tests/mock_module/views.py,sha256=TWJQfcql5XaBNtdR9phVl4tHB0YG6g5IG5n08VZTzXE,770
|
|
503
|
-
tests/mock_module/templates/mock_mail.html,sha256=w7eiZbbs1gErCXelGN7NeiTavcDM9yUM702Mygz0oAc,943
|
|
504
|
-
tests/redirector/__init__.py,sha256=yKVf0yYRuxmXvyAtLjmfpHGVCsEkZOhs_FojAAM_w-8,244
|
|
505
|
-
tests/redirector/conftest.py,sha256=KAbp0R8tgGoNvMr8mJ1G2AZX6PzLw-PChtbucrLn5_o,1676
|
|
506
|
-
tests/redirector/test_redirector.py,sha256=iATYglIw3QSoUKpspQCAM4SaG_WmzjL7r1Nmew_KlGY,1002
|
|
507
|
-
tests/ui/__init__.py,sha256=yKVf0yYRuxmXvyAtLjmfpHGVCsEkZOhs_FojAAM_w-8,244
|
|
508
|
-
tests/ui/conftest.py,sha256=Yx6_wQtAaPG3dll4UtxxN37nEr87Y_8kos8TzrijHbw,3380
|
|
509
|
-
tests/ui/test_deposits.py,sha256=BehQzo1r3_f4Uc9jcXRddd9bS5GfQ3jRRYOM0AMbi3w,3792
|
|
510
|
-
tests/ui/test_export_formats.py,sha256=pCXJCTp9ykEWb2oB-ynGjQDhFaVsOs31ym0stwfWCaQ,909
|
|
511
|
-
tests/ui/test_file_download.py,sha256=o4JHkFyJxZDaQ5NHRZR_PV98jS9UtklbOZPpduzwWKw,2436
|
|
512
|
-
tests/ui/test_filters.py,sha256=Q90wsJffjMVir7wNX8taGf2KZleLtPbXZXHLTkBpzLA,284
|
|
513
|
-
tests/ui/test_robotstxt.py,sha256=Gn0bVPJTDRQH6DO5GGZyD6iMel1UxWRHP5MnGQZ0j18,1138
|
|
514
|
-
tests/ui/test_signposting_ui.py,sha256=KCSjQlMD2VKlwQCyZYDwYjtVNL35x3u-ZC4ceD5y21w,3847
|
|
515
|
-
tests/ui/test_sitemaps.py,sha256=hPeGbo9v5Q55swr-ZyudAVYm7aJ6lCKV51Vtupk450Q,3180
|
|
516
|
-
tests/ui/test_stats_ui.py,sha256=LHa_0hjvpYvliSk_jknWy-90CO82jVElUfK5Ua_ZmfA,3554
|
|
517
|
-
invenio_app_rdm-13.0.0b4.dev1.dist-info/METADATA,sha256=XFMg0GPf-CtMXUGBwx3uFicc8ZNpQguoDlKZPwJolqM,14989
|
|
518
|
-
invenio_app_rdm-13.0.0b4.dev1.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
519
|
-
invenio_app_rdm-13.0.0b4.dev1.dist-info/entry_points.txt,sha256=rfzEeOEdtGy99NlpWzeW-32CoO5XrEpBvlZwLD2Th88,2158
|
|
520
|
-
invenio_app_rdm-13.0.0b4.dev1.dist-info/top_level.txt,sha256=NqTqrntInEAci7EXcNBvouXFMqwyjVQhEI0b7izYRBY,22
|
|
521
|
-
invenio_app_rdm-13.0.0b4.dev1.dist-info/RECORD,,
|
|
500
|
+
invenio_app_rdm-14.0.0b1.dev8.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
501
|
+
invenio_app_rdm-14.0.0b1.dev8.dist-info/METADATA,sha256=Z6CLI5_d8yEquBlvr7V6R_kpXeYo_RRxXW9AoeIuxXE,19775
|
|
502
|
+
invenio_app_rdm-14.0.0b1.dev8.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
503
|
+
invenio_app_rdm-14.0.0b1.dev8.dist-info/entry_points.txt,sha256=MwtT1SN5saWOgTYhNb5y0YGA9VGAi0kXN0cykIfsb4U,2405
|
|
504
|
+
invenio_app_rdm-14.0.0b1.dev8.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
|
|
505
|
+
invenio_app_rdm-14.0.0b1.dev8.dist-info/RECORD,,
|