invenio-app-rdm 13.0.0b3.dev6__py2.py3-none-any.whl → 13.0.0b3.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/requests_ui/views/requests.py +6 -3
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js +4 -2
- {invenio_app_rdm-13.0.0b3.dev6.dist-info → invenio_app_rdm-13.0.0b3.dev8.dist-info}/METADATA +9 -1
- {invenio_app_rdm-13.0.0b3.dev6.dist-info → invenio_app_rdm-13.0.0b3.dev8.dist-info}/RECORD +9 -9
- {invenio_app_rdm-13.0.0b3.dev6.dist-info → invenio_app_rdm-13.0.0b3.dev8.dist-info}/WHEEL +1 -1
- {invenio_app_rdm-13.0.0b3.dev6.dist-info → invenio_app_rdm-13.0.0b3.dev8.dist-info}/entry_points.txt +0 -0
- {invenio_app_rdm-13.0.0b3.dev6.dist-info → invenio_app_rdm-13.0.0b3.dev8.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-13.0.0b3.dev6.dist-info → invenio_app_rdm-13.0.0b3.dev8.dist-info}/top_level.txt +0 -0
invenio_app_rdm/__init__.py
CHANGED
|
@@ -352,7 +352,8 @@ def community_dashboard_request_view(request, community, community_ui, **kwargs)
|
|
|
352
352
|
base_template="invenio_communities/details/base.html",
|
|
353
353
|
invenio_request=request.to_dict(),
|
|
354
354
|
record=record_ui,
|
|
355
|
-
community=
|
|
355
|
+
community=community,
|
|
356
|
+
community_ui=community_ui,
|
|
356
357
|
checks=checks,
|
|
357
358
|
permissions=permissions,
|
|
358
359
|
is_preview=is_draft, # preview only when draft
|
|
@@ -376,7 +377,8 @@ def community_dashboard_request_view(request, community, community_ui, **kwargs)
|
|
|
376
377
|
theme=community.to_dict().get("theme", {}),
|
|
377
378
|
base_template="invenio_communities/details/members/base.html",
|
|
378
379
|
invenio_request=request.to_dict(),
|
|
379
|
-
community=community
|
|
380
|
+
community=community,
|
|
381
|
+
community_ui=community_ui,
|
|
380
382
|
permissions=permissions,
|
|
381
383
|
request_is_accepted=request_is_accepted,
|
|
382
384
|
user_avatar=avatar,
|
|
@@ -389,7 +391,8 @@ def community_dashboard_request_view(request, community, community_ui, **kwargs)
|
|
|
389
391
|
theme=community.to_dict().get("theme", {}),
|
|
390
392
|
base_template="invenio_communities/details/base.html",
|
|
391
393
|
invenio_request=request.to_dict(),
|
|
392
|
-
community=
|
|
394
|
+
community=community,
|
|
395
|
+
community_ui=community_ui,
|
|
393
396
|
permissions=permissions,
|
|
394
397
|
request_is_accepted=request_is_accepted,
|
|
395
398
|
user_avatar=avatar,
|
|
@@ -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.dev6.dist-info → invenio_app_rdm-13.0.0b3.dev8.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.dev8
|
|
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.dev8 (released 2025-05-15)
|
|
102
|
+
|
|
103
|
+
- MathJax: use async typesetting
|
|
104
|
+
|
|
105
|
+
Version v13.0.0b3.dev7 (released 2025-05-08)
|
|
106
|
+
|
|
107
|
+
- fix: community request page missing context variable
|
|
108
|
+
|
|
101
109
|
Version v13.0.0b3.dev6 (released 2025-05-07)
|
|
102
110
|
|
|
103
111
|
- records-ui: add error handler for NoResultFound exceptions
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=oYq3uTm7qCbZlO_kCK-Cs0WUOmQhaoEPs9YTVsqp1ig,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
|
|
@@ -101,12 +101,12 @@ invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/
|
|
|
101
101
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html,sha256=347Saf8Fv78uevCbK2nFiOtNFUT0QyZSZS7lgoNzHdQ,1448
|
|
102
102
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html,sha256=ltSP9sYPnpmCKMDYpZYU25Wxr3Dfqe2RNDxm6bVjX_I,1779
|
|
103
103
|
invenio_app_rdm/requests_ui/views/__init__.py,sha256=7QiAyRq8Eu84IXwjzxK63vNeTZnowZ5P85xtw7XgRjs,397
|
|
104
|
-
invenio_app_rdm/requests_ui/views/requests.py,sha256=
|
|
104
|
+
invenio_app_rdm/requests_ui/views/requests.py,sha256=Ww3ewDciAvcrheOwtirS6Qewj21FQ8R1b42Og0_r_3w,16149
|
|
105
105
|
invenio_app_rdm/requests_ui/views/ui.py,sha256=DBysYQa__gOCg-pikO6HmoVLmRmMAVWeTBiYhPa7PmA,2359
|
|
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
|
|
@@ -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.dev8.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.dev8.dist-info/METADATA,sha256=_O-3gCKtGGULvJMItFzN293QzbFKW6qJZe8n2RQlf60,13321
|
|
513
|
+
invenio_app_rdm-13.0.0b3.dev8.dist-info/WHEEL,sha256=_z0Kb-VmhLeNt2nZ-PsoQBjD25rP0tBwgAyRYD7oTKI,109
|
|
514
|
+
invenio_app_rdm-13.0.0b3.dev8.dist-info/entry_points.txt,sha256=rfzEeOEdtGy99NlpWzeW-32CoO5XrEpBvlZwLD2Th88,2158
|
|
515
|
+
invenio_app_rdm-13.0.0b3.dev8.dist-info/top_level.txt,sha256=NqTqrntInEAci7EXcNBvouXFMqwyjVQhEI0b7izYRBY,22
|
|
516
|
+
invenio_app_rdm-13.0.0b3.dev8.dist-info/RECORD,,
|
{invenio_app_rdm-13.0.0b3.dev6.dist-info → invenio_app_rdm-13.0.0b3.dev8.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{invenio_app_rdm-13.0.0b3.dev6.dist-info → invenio_app_rdm-13.0.0b3.dev8.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{invenio_app_rdm-13.0.0b3.dev6.dist-info → invenio_app_rdm-13.0.0b3.dev8.dist-info}/top_level.txt
RENAMED
|
File without changes
|