invenio-app-rdm 14.0.0b3.dev5__py2.py3-none-any.whl → 14.0.0b3.dev6__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/audit_logs/audit_logs.py +2 -1
- invenio_app_rdm/records_ui/utils.py +3 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js +1 -6
- invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py +2 -1
- {invenio_app_rdm-14.0.0b3.dev5.dist-info → invenio_app_rdm-14.0.0b3.dev6.dist-info}/METADATA +5 -1
- {invenio_app_rdm-14.0.0b3.dev5.dist-info → invenio_app_rdm-14.0.0b3.dev6.dist-info}/RECORD +11 -11
- {invenio_app_rdm-14.0.0b3.dev5.dist-info → invenio_app_rdm-14.0.0b3.dev6.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-14.0.0b3.dev5.dist-info → invenio_app_rdm-14.0.0b3.dev6.dist-info}/entry_points.txt +0 -0
- {invenio_app_rdm-14.0.0b3.dev5.dist-info → invenio_app_rdm-14.0.0b3.dev6.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-14.0.0b3.dev5.dist-info → invenio_app_rdm-14.0.0b3.dev6.dist-info}/top_level.txt +0 -0
invenio_app_rdm/__init__.py
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2025 CERN.
|
|
3
|
+
# Copyright (C) 2025-2026 CERN.
|
|
4
4
|
#
|
|
5
5
|
# Invenio App RDM is free software; you can redistribute it and/or modify it
|
|
6
6
|
# under the terms of the MIT License; see LICENSE file for more details.
|
|
7
7
|
|
|
8
8
|
"""Invenio administration view module for audit logs."""
|
|
9
|
+
|
|
9
10
|
from flask import current_app
|
|
10
11
|
from invenio_administration.views.base import AdminResourceListView
|
|
11
12
|
from invenio_i18n import lazy_gettext as _
|
|
@@ -150,7 +150,9 @@ def evaluate_record_deletion(record: RDMRecord, identity):
|
|
|
150
150
|
}
|
|
151
151
|
record_deletion["existing_request"] = (
|
|
152
152
|
# We show existing requests to valid users (even if they are not allowed to delete a record anymore).
|
|
153
|
-
get_existing_deletion_request(record.pid.pid_value)
|
|
153
|
+
get_existing_deletion_request(record.pid.pid_value)
|
|
154
|
+
if rd_valid_user
|
|
155
|
+
else None
|
|
154
156
|
)
|
|
155
157
|
|
|
156
158
|
return record_deletion
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js
CHANGED
|
@@ -21,12 +21,7 @@ export class FileModificationUntil extends Component {
|
|
|
21
21
|
const daysUntil = fileModification.context?.days_until;
|
|
22
22
|
if (isPublished && filesUnlocked && daysUntil !== undefined) {
|
|
23
23
|
if (daysUntil <= 0) {
|
|
24
|
-
return (
|
|
25
|
-
<>
|
|
26
|
-
{" "}
|
|
27
|
-
{i18next.t("– You are past the allowed period to edit files.")}
|
|
28
|
-
</>
|
|
29
|
-
);
|
|
24
|
+
return <> {i18next.t("– You are past the allowed period to edit files.")}</>;
|
|
30
25
|
}
|
|
31
26
|
return (
|
|
32
27
|
<>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2023-
|
|
3
|
+
# Copyright (C) 2023-2026 CERN.
|
|
4
4
|
# Copyright (C) 2024 Graz University of Technology.
|
|
5
5
|
#
|
|
6
6
|
# Invenio-App-RDM is free software; you can redistribute it and/or modify
|
|
@@ -38,6 +38,7 @@ This script has been tested with following data:
|
|
|
38
38
|
- drafts visible
|
|
39
39
|
- records visible
|
|
40
40
|
"""
|
|
41
|
+
|
|
41
42
|
import sys
|
|
42
43
|
|
|
43
44
|
from click import secho
|
{invenio_app_rdm-14.0.0b3.dev5.dist-info → invenio_app_rdm-14.0.0b3.dev6.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-app-rdm
|
|
3
|
-
Version: 14.0.0b3.
|
|
3
|
+
Version: 14.0.0b3.dev6
|
|
4
4
|
Summary: Invenio Research Data Management.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-app-rdm
|
|
6
6
|
Author: CERN
|
|
@@ -101,6 +101,10 @@ https://inveniordm.docs.cern.ch
|
|
|
101
101
|
Changes
|
|
102
102
|
=======
|
|
103
103
|
|
|
104
|
+
Version v14.0.0b3.dev6 (released 2026-01-29)
|
|
105
|
+
|
|
106
|
+
- fix: formatting black+eslint
|
|
107
|
+
|
|
104
108
|
Version v14.0.0b3.dev5 (released 2026-01-29)
|
|
105
109
|
|
|
106
110
|
- fix(deposit-ui): add explicit `data-label` for files section
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=fZ2Ql91Y9MSg3S7Kx4HBqf1mqT0cQhzRL18kr0mlEP8,704
|
|
2
2
|
invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
|
|
3
3
|
invenio_app_rdm/config.py,sha256=pigyCXGUMru2krv-ZJ15iosbm3UBk9dmiAQauYvzWbk,53632
|
|
4
4
|
invenio_app_rdm/ext.py,sha256=K7syn5CU5If7yOclFeNOCZX_u5q6VB7NJEQVm41mlng,5286
|
|
@@ -6,7 +6,7 @@ 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
|
|
8
8
|
invenio_app_rdm/administration/audit_logs/__init__.py,sha256=jsBXeKSY5YNn1juF9sFyHPYo_XYpwdP3Dye-de7cMK0,318
|
|
9
|
-
invenio_app_rdm/administration/audit_logs/audit_logs.py,sha256=
|
|
9
|
+
invenio_app_rdm/administration/audit_logs/audit_logs.py,sha256=TIm1Bz2fkrJrSm8_wBJGcFE1wfmItqJmfWMO5cC2ryg,2172
|
|
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
12
|
invenio_app_rdm/administration/moderation/__init__.py,sha256=5Jr_Kicz0xsybdyRr48amQDkLlalVbRz9Pq0zGrTqMg,404
|
|
@@ -47,7 +47,7 @@ invenio_app_rdm/fixtures/pages/.gitkeep,sha256=1HVs32jZTGcMkk-dV9RHGPZm5FdydwFIZ
|
|
|
47
47
|
invenio_app_rdm/records_ui/__init__.py,sha256=c4_HH3R7fTOp7AnNQSF4P9h_mwOvL0SE9tkpo6SBnT8,327
|
|
48
48
|
invenio_app_rdm/records_ui/searchapp.py,sha256=QD5fTdimVUC5K4ERVBjgXHZdbC3ZkgcR8LSIxFTPBQY,2697
|
|
49
49
|
invenio_app_rdm/records_ui/sitemap.py,sha256=erWpwi8lx17ATicBo3dTwMiEEwHTilL8xTAkNCC3J4U,1619
|
|
50
|
-
invenio_app_rdm/records_ui/utils.py,sha256=
|
|
50
|
+
invenio_app_rdm/records_ui/utils.py,sha256=ws_B5jQFBV6JauwTavBVQj4xCQUIgYoDsNZYHUE-INk,6101
|
|
51
51
|
invenio_app_rdm/records_ui/previewer/__init__.py,sha256=T32i_ssGKONDpNB3gECpn20ubHvGYYVrNuIgCADioOM,267
|
|
52
52
|
invenio_app_rdm/records_ui/previewer/iiif_simple.py,sha256=lGxB3g0hNVJDWnq5jV_KrKPwC-LR1C51DMjas1-UpBM,1589
|
|
53
53
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html,sha256=aBdqSLQMi2nKKoC0dt3c7B8xluy3eE6l9j-M-rAa5Zc,3121
|
|
@@ -178,7 +178,7 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactSt
|
|
|
178
178
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js,sha256=tIWybsEB9V4qCwX0Yra8PDFIj-bEYvUistR_dcZR7IU,3554
|
|
179
179
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js,sha256=bSmhuwSWk4CW80mqa4ZZbjfa-_NsiJ1IxQ9veDy6sAM,2751
|
|
180
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=
|
|
181
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/FileModificationUntil.js,sha256=1GcjRBfRbfvEzkwxd4KUZ8kcLA9iyjjKoMiT2JreuRI,1397
|
|
182
182
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js,sha256=AZOgoxAfI19_KXfGGaKP8rtyJDbYjnYzu43hspAIKCk,2272
|
|
183
183
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js,sha256=RTSQBlGQY7ww7fVGHDvDfWQNyJ07mnEoyboTGIcCgD4,6694
|
|
184
184
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js,sha256=u5ta6jcMl_s0Wj52ExgHlfviW6bsnNmUrYXgIUi6URs,12033
|
|
@@ -475,7 +475,7 @@ invenio_app_rdm/upgrade_scripts/__init__.py,sha256=AlBBeGDr7RmylFE1ynJhFylaAlINQ
|
|
|
475
475
|
invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_1_0_to_2_0.py,sha256=SCUdvuQYGnjWLfm6Kd-f3swlOrxSNN3kO36OVEOkN7g,1760
|
|
476
476
|
invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py,sha256=p6qTNjUMAJ-0tnrSwar7jtDX_sg6V9kFj7fzH-wrbkY,2769
|
|
477
477
|
invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py,sha256=TX6FCWXY4qM4z7IYzDO5qaMTheo3zAjFrmR1sXaEf4U,1333
|
|
478
|
-
invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py,sha256=
|
|
478
|
+
invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py,sha256=Bnb8GIzvpsqPrvBQfxxcNAnX6l9G4IqKwkH9PSp7l28,6942
|
|
479
479
|
invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py,sha256=pyO68jyGyKXVTcja8tpi2XgNx_FxXk7JhgDTV-wx3xM,8205
|
|
480
480
|
invenio_app_rdm/upgrade_scripts/migrate_13_0_to_14_0.py,sha256=vSixZ-Md5esqabBNbWwN8mjEWSsMv0IroHA2gqy_GJ8,11247
|
|
481
481
|
invenio_app_rdm/upgrade_scripts/migrate_1_0_records_to_2_0.py,sha256=mRDv_Ao5zMgA6X0aogMfvhspO1CIApKtDW_ziJp5fjI,3325
|
|
@@ -498,9 +498,9 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
|
|
|
498
498
|
invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
|
|
499
499
|
invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
|
|
500
500
|
invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
|
|
501
|
-
invenio_app_rdm-14.0.0b3.
|
|
502
|
-
invenio_app_rdm-14.0.0b3.
|
|
503
|
-
invenio_app_rdm-14.0.0b3.
|
|
504
|
-
invenio_app_rdm-14.0.0b3.
|
|
505
|
-
invenio_app_rdm-14.0.0b3.
|
|
506
|
-
invenio_app_rdm-14.0.0b3.
|
|
501
|
+
invenio_app_rdm-14.0.0b3.dev6.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
502
|
+
invenio_app_rdm-14.0.0b3.dev6.dist-info/METADATA,sha256=S4HnDxjZPsEzmMEGVzhwiMH6nseo6Hre2Za8Z2Fs2YM,22066
|
|
503
|
+
invenio_app_rdm-14.0.0b3.dev6.dist-info/WHEEL,sha256=Mk1ST5gDzEO5il5kYREiBnzzM469m5sI8ESPl7TRhJY,110
|
|
504
|
+
invenio_app_rdm-14.0.0b3.dev6.dist-info/entry_points.txt,sha256=MwtT1SN5saWOgTYhNb5y0YGA9VGAi0kXN0cykIfsb4U,2405
|
|
505
|
+
invenio_app_rdm-14.0.0b3.dev6.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
|
|
506
|
+
invenio_app_rdm-14.0.0b3.dev6.dist-info/RECORD,,
|
|
File without changes
|
{invenio_app_rdm-14.0.0b3.dev5.dist-info → invenio_app_rdm-14.0.0b3.dev6.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{invenio_app_rdm-14.0.0b3.dev5.dist-info → invenio_app_rdm-14.0.0b3.dev6.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{invenio_app_rdm-14.0.0b3.dev5.dist-info → invenio_app_rdm-14.0.0b3.dev6.dist-info}/top_level.txt
RENAMED
|
File without changes
|