invenio-app-rdm 13.0.0b3.dev7__py2.py3-none-any.whl → 13.0.0b3.dev9__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/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +4 -2
- {invenio_app_rdm-13.0.0b3.dev7.dist-info → invenio_app_rdm-13.0.0b3.dev9.dist-info}/METADATA +9 -1
- {invenio_app_rdm-13.0.0b3.dev7.dist-info → invenio_app_rdm-13.0.0b3.dev9.dist-info}/RECORD +9 -9
- {invenio_app_rdm-13.0.0b3.dev7.dist-info → invenio_app_rdm-13.0.0b3.dev9.dist-info}/WHEEL +1 -1
- {invenio_app_rdm-13.0.0b3.dev7.dist-info → invenio_app_rdm-13.0.0b3.dev9.dist-info}/entry_points.txt +0 -0
- {invenio_app_rdm-13.0.0b3.dev7.dist-info → invenio_app_rdm-13.0.0b3.dev9.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-13.0.0b3.dev7.dist-info → invenio_app_rdm-13.0.0b3.dev9.dist-info}/top_level.txt +0 -0
invenio_app_rdm/__init__.py
CHANGED
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js
CHANGED
|
@@ -98,6 +98,7 @@ export class RecordManagement extends Component {
|
|
|
98
98
|
isPreviewSubmissionRequest={isPreviewSubmissionRequest}
|
|
99
99
|
record={record}
|
|
100
100
|
currentUserId={currentUserId}
|
|
101
|
+
permissions={permissions}
|
|
101
102
|
/>
|
|
102
103
|
{error && (
|
|
103
104
|
<Grid.Row className="record-management">
|
|
@@ -144,10 +144,12 @@ $authButton.on({ click: handleAuthButtonClick });
|
|
|
144
144
|
const invenioConfig = JSON.parse(document.body.dataset.invenioConfig);
|
|
145
145
|
const isMathJaxEnabled = invenioConfig?.isMathJaxEnabled;
|
|
146
146
|
if (window.invenio) {
|
|
147
|
-
window.invenio.onSearchResultsRendered = () => {
|
|
147
|
+
window.invenio.onSearchResultsRendered = async () => {
|
|
148
148
|
if (isMathJaxEnabled) {
|
|
149
149
|
// Re-render mathematical content on the page using MathJax.
|
|
150
|
-
|
|
150
|
+
// The promise is required to make sure that MathJax is fully loaded before
|
|
151
|
+
// typesetting, and potentially autoloading extra extensions.
|
|
152
|
+
await window.MathJax.typesetPromise();
|
|
151
153
|
}
|
|
152
154
|
};
|
|
153
155
|
}
|
{invenio_app_rdm-13.0.0b3.dev7.dist-info → invenio_app_rdm-13.0.0b3.dev9.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-app-rdm
|
|
3
|
-
Version: 13.0.0b3.
|
|
3
|
+
Version: 13.0.0b3.dev9
|
|
4
4
|
Summary: Invenio Research Data Management.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-app-rdm
|
|
6
6
|
Author: CERN
|
|
@@ -98,6 +98,14 @@ https://inveniordm.docs.cern.ch
|
|
|
98
98
|
Changes
|
|
99
99
|
=======
|
|
100
100
|
|
|
101
|
+
Version v13.0.0b3.dev9 (released 2025-05-15)
|
|
102
|
+
|
|
103
|
+
- recordManagment: pass permissiosn down to overridable
|
|
104
|
+
|
|
105
|
+
Version v13.0.0b3.dev8 (released 2025-05-15)
|
|
106
|
+
|
|
107
|
+
- MathJax: use async typesetting
|
|
108
|
+
|
|
101
109
|
Version v13.0.0b3.dev7 (released 2025-05-08)
|
|
102
110
|
|
|
103
111
|
- fix: community request page missing context variable
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=tXfOHd4X0YNApbkMV1rp2t8nEd6YOFvaNONw_1akTPk,699
|
|
2
2
|
invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
|
|
3
3
|
invenio_app_rdm/config.py,sha256=Sv6Q8VEP-KYNuvC6kASLOYC-gYRByYN-hwPmbCxQWKc,50624
|
|
4
4
|
invenio_app_rdm/ext.py,sha256=PkZhATGJDgYqBJQh41NdvBZWR83mgI3Eej6rj10UVJE,5278
|
|
@@ -106,7 +106,7 @@ invenio_app_rdm/requests_ui/views/ui.py,sha256=DBysYQa__gOCg-pikO6HmoVLmRmMAVWeT
|
|
|
106
106
|
invenio_app_rdm/theme/__init__.py,sha256=QbkxNjjOmGKRlie96HfTXgnFeVQjOX0GdiZnHP7pIhs,277
|
|
107
107
|
invenio_app_rdm/theme/views.py,sha256=Ucn6o7mF8qR7gtOeliKC73gIBhy5LgY65rvteC1Uiog,4312
|
|
108
108
|
invenio_app_rdm/theme/webpack.py,sha256=5oi0YBD84y8246JYGtSNmNbRUH-bz_G8WrSRRDEyplw,5201
|
|
109
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js,sha256=
|
|
109
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js,sha256=EBda1oklPz8u6cDz5fHU8EeDjUqyNMzOL8Quik-lCks,4592
|
|
110
110
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js,sha256=oTCQkmr7j6FwVsOfM6hsKrPHfadW7m9IurrqYVDgxDw,3628
|
|
111
111
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/ViewAction.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
112
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/index.js,sha256=7glSWacd986Zu6l_Ob7IXp4uNWA0f51FBfRv4HZxjYU,965
|
|
@@ -180,7 +180,7 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportD
|
|
|
180
180
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js,sha256=79DO4JKJDU0AI1uaLzE2AAQRxTPx2rFKNj-CJ_UKP54,2934
|
|
181
181
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js,sha256=ELqXIMG-IPyTMpu25WzHZR2-anroGhFwkoaWyCl6eHM,4620
|
|
182
182
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js,sha256=wORVCOjlyX2mIsDU9J0MwWFE4Zw9CCL5inWpV7m8lsM,4004
|
|
183
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js,sha256=
|
|
183
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js,sha256=p49VyNWrYQw88xOxLdemHpBu0ty_4kVG_Bf69EZcl14,3875
|
|
184
184
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js,sha256=vECGyt1XnoYRXNU7qGk9GMyZWATIXEFH2xV6ibeRcSc,7071
|
|
185
185
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/access.js,sha256=FVcpKl22zMi1GssbLZAj1pO98c6Em_wg_yBIdfBJor0,938
|
|
186
186
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js,sha256=FkCbK5FrXlSaD_TDO1eUMDORULhBJccf7FEvhmto-GM,5029
|
|
@@ -475,7 +475,7 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
|
|
|
475
475
|
invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
|
|
476
476
|
invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
|
|
477
477
|
invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
|
|
478
|
-
invenio_app_rdm-13.0.0b3.
|
|
478
|
+
invenio_app_rdm-13.0.0b3.dev9.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
479
479
|
tests/__init__.py,sha256=yKVf0yYRuxmXvyAtLjmfpHGVCsEkZOhs_FojAAM_w-8,244
|
|
480
480
|
tests/conftest.py,sha256=FQ_aSBxGo0gNfV64RJ117GcmgjVbZKwpxF9_3VNdNJY,7931
|
|
481
481
|
tests/test_tasks.py,sha256=YAf2mryFK6Vfzk2053XLBA2e92vbNCTWqJ6ThWhGOuQ,6645
|
|
@@ -509,8 +509,8 @@ tests/ui/test_filters.py,sha256=Q90wsJffjMVir7wNX8taGf2KZleLtPbXZXHLTkBpzLA,284
|
|
|
509
509
|
tests/ui/test_signposting_ui.py,sha256=KCSjQlMD2VKlwQCyZYDwYjtVNL35x3u-ZC4ceD5y21w,3847
|
|
510
510
|
tests/ui/test_static.py,sha256=vO3OQAOhrQESJifnQfM1pw7JYz3J874O8BAb7Cc_PPA,868
|
|
511
511
|
tests/ui/test_stats_ui.py,sha256=LHa_0hjvpYvliSk_jknWy-90CO82jVElUfK5Ua_ZmfA,3554
|
|
512
|
-
invenio_app_rdm-13.0.0b3.
|
|
513
|
-
invenio_app_rdm-13.0.0b3.
|
|
514
|
-
invenio_app_rdm-13.0.0b3.
|
|
515
|
-
invenio_app_rdm-13.0.0b3.
|
|
516
|
-
invenio_app_rdm-13.0.0b3.
|
|
512
|
+
invenio_app_rdm-13.0.0b3.dev9.dist-info/METADATA,sha256=mo7i7BGcqcrhugO6pGRt04IEHCxlgChso5YUVXQFM08,13424
|
|
513
|
+
invenio_app_rdm-13.0.0b3.dev9.dist-info/WHEEL,sha256=_z0Kb-VmhLeNt2nZ-PsoQBjD25rP0tBwgAyRYD7oTKI,109
|
|
514
|
+
invenio_app_rdm-13.0.0b3.dev9.dist-info/entry_points.txt,sha256=rfzEeOEdtGy99NlpWzeW-32CoO5XrEpBvlZwLD2Th88,2158
|
|
515
|
+
invenio_app_rdm-13.0.0b3.dev9.dist-info/top_level.txt,sha256=NqTqrntInEAci7EXcNBvouXFMqwyjVQhEI0b7izYRBY,22
|
|
516
|
+
invenio_app_rdm-13.0.0b3.dev9.dist-info/RECORD,,
|
{invenio_app_rdm-13.0.0b3.dev7.dist-info → invenio_app_rdm-13.0.0b3.dev9.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{invenio_app_rdm-13.0.0b3.dev7.dist-info → invenio_app_rdm-13.0.0b3.dev9.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{invenio_app_rdm-13.0.0b3.dev7.dist-info → invenio_app_rdm-13.0.0b3.dev9.dist-info}/top_level.txt
RENAMED
|
File without changes
|