invenio-app-rdm 14.0.0b0.dev4__py2.py3-none-any.whl → 14.0.0b1.dev2__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/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 +89 -0
- invenio_app_rdm/administration/user_moderation/user_moderation.py +4 -4
- invenio_app_rdm/config.py +47 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html +3 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +3 -3
- invenio_app_rdm/records_ui/utils.py +22 -1
- invenio_app_rdm/records_ui/views/deposits.py +59 -7
- invenio_app_rdm/records_ui/views/records.py +43 -1
- 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 +93 -0
- invenio_app_rdm/requests_ui/views/requests.py +17 -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/components/RecordDeletion/DeletionModal.js +356 -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 +22 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js +2 -1
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js +72 -20
- 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 +10 -3
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js +1 -0
- invenio_app_rdm/theme/webpack.py +2 -1
- {invenio_app_rdm-14.0.0b0.dev4.dist-info → invenio_app_rdm-14.0.0b1.dev2.dist-info}/METADATA +20 -5
- {invenio_app_rdm-14.0.0b0.dev4.dist-info → invenio_app_rdm-14.0.0b1.dev2.dist-info}/RECORD +34 -23
- {invenio_app_rdm-14.0.0b0.dev4.dist-info → invenio_app_rdm-14.0.0b1.dev2.dist-info}/entry_points.txt +2 -0
- {invenio_app_rdm-14.0.0b0.dev4.dist-info → invenio_app_rdm-14.0.0b1.dev2.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-14.0.0b0.dev4.dist-info → invenio_app_rdm-14.0.0b1.dev2.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-14.0.0b0.dev4.dist-info → invenio_app_rdm-14.0.0b1.dev2.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
// This file is part of InvenioRDM
|
|
2
|
+
// Copyright (C) 2025 CERN
|
|
3
|
+
//
|
|
4
|
+
// Invenio-app-rdm is free software; you can redistribute it and/or modify it
|
|
5
|
+
// under the terms of the MIT License; see LICENSE file for more details.
|
|
6
|
+
|
|
7
|
+
import React from "react";
|
|
8
|
+
import PropTypes from "prop-types";
|
|
9
|
+
import { Radio, FormField, TableRow, TableCell } from "semantic-ui-react";
|
|
10
|
+
|
|
11
|
+
const DeletionRadioGroup = ({ index, row, state, onStateChange }) => {
|
|
12
|
+
return (
|
|
13
|
+
<TableRow key={row.name}>
|
|
14
|
+
<TableCell>{row.label}</TableCell>
|
|
15
|
+
<TableCell>
|
|
16
|
+
<FormField>
|
|
17
|
+
<Radio
|
|
18
|
+
value="Yes"
|
|
19
|
+
checked={state[index] === true}
|
|
20
|
+
onChange={() => onStateChange(index, true)}
|
|
21
|
+
/>
|
|
22
|
+
</FormField>
|
|
23
|
+
</TableCell>
|
|
24
|
+
<TableCell>
|
|
25
|
+
<FormField>
|
|
26
|
+
<Radio
|
|
27
|
+
value="No"
|
|
28
|
+
checked={state[index] === false}
|
|
29
|
+
onChange={() => onStateChange(index, false)}
|
|
30
|
+
/>
|
|
31
|
+
</FormField>
|
|
32
|
+
</TableCell>
|
|
33
|
+
</TableRow>
|
|
34
|
+
);
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
DeletionRadioGroup.propTypes = {
|
|
38
|
+
index: PropTypes.number.isRequired,
|
|
39
|
+
row: PropTypes.object.isRequired,
|
|
40
|
+
state: PropTypes.array.isRequired,
|
|
41
|
+
onStateChange: PropTypes.func.isRequired,
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export default DeletionRadioGroup;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
// This file is part of InvenioRDM
|
|
2
|
+
// Copyright (C) 2025.
|
|
3
|
+
//
|
|
4
|
+
// Invenio RDM Records is free software; you can redistribute it and/or modify it
|
|
5
|
+
// under the terms of the MIT License; see LICENSE file for more details.
|
|
6
|
+
|
|
7
|
+
import React, { useState } from "react";
|
|
8
|
+
import { Button, Popup } from "semantic-ui-react";
|
|
9
|
+
import { i18next } from "@translations/invenio_app_rdm/i18next";
|
|
10
|
+
import PropTypes from "prop-types";
|
|
11
|
+
import { DeletionModal } from "./RecordDeletion/DeletionModal";
|
|
12
|
+
|
|
13
|
+
export const RecordDeletion = ({
|
|
14
|
+
disabled,
|
|
15
|
+
record,
|
|
16
|
+
permissions,
|
|
17
|
+
recordDeletion,
|
|
18
|
+
options,
|
|
19
|
+
}) => {
|
|
20
|
+
const [modalOpen, setModalOpen] = useState(false);
|
|
21
|
+
const handleOpen = () => setModalOpen(true);
|
|
22
|
+
const handleClose = () => setModalOpen(false);
|
|
23
|
+
|
|
24
|
+
return (
|
|
25
|
+
<>
|
|
26
|
+
<Popup
|
|
27
|
+
content={i18next.t("It is not possible to delete this record.")}
|
|
28
|
+
disabled={!disabled}
|
|
29
|
+
trigger={
|
|
30
|
+
<span>
|
|
31
|
+
{recordDeletion.existing_request ? (
|
|
32
|
+
<Button
|
|
33
|
+
fluid
|
|
34
|
+
as="a"
|
|
35
|
+
href={recordDeletion.existing_request}
|
|
36
|
+
disabled={disabled}
|
|
37
|
+
className="basic"
|
|
38
|
+
color="red"
|
|
39
|
+
aria-haspopup="dialog"
|
|
40
|
+
icon="external alternate"
|
|
41
|
+
labelPosition="left"
|
|
42
|
+
content={i18next.t("View deletion request")}
|
|
43
|
+
/>
|
|
44
|
+
) : (
|
|
45
|
+
<Button
|
|
46
|
+
fluid
|
|
47
|
+
onClick={handleOpen}
|
|
48
|
+
disabled={disabled}
|
|
49
|
+
className="negative"
|
|
50
|
+
aria-haspopup="dialog"
|
|
51
|
+
icon="trash outline alternate"
|
|
52
|
+
labelPosition="left"
|
|
53
|
+
content={i18next.t("Delete record")}
|
|
54
|
+
/>
|
|
55
|
+
)}
|
|
56
|
+
</span>
|
|
57
|
+
}
|
|
58
|
+
/>
|
|
59
|
+
<DeletionModal
|
|
60
|
+
record={record}
|
|
61
|
+
open={modalOpen}
|
|
62
|
+
handleClose={handleClose}
|
|
63
|
+
permissions={permissions}
|
|
64
|
+
recordDeletion={recordDeletion}
|
|
65
|
+
options={options}
|
|
66
|
+
/>
|
|
67
|
+
</>
|
|
68
|
+
);
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
RecordDeletion.propTypes = {
|
|
72
|
+
disabled: PropTypes.bool,
|
|
73
|
+
record: PropTypes.object.isRequired,
|
|
74
|
+
permissions: PropTypes.object.isRequired,
|
|
75
|
+
recordDeletion: PropTypes.object.isRequired,
|
|
76
|
+
options: PropTypes.array.isRequired,
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
RecordDeletion.defaultProps = {
|
|
80
|
+
disabled: false,
|
|
81
|
+
};
|
|
@@ -47,6 +47,7 @@ import Overridable from "react-overridable";
|
|
|
47
47
|
import { CopyrightsField } from "@js/invenio_rdm_records/src/deposit/fields/CopyrightsField/CopyrightsField";
|
|
48
48
|
import { ShareDraftButton } from "./ShareDraftButton";
|
|
49
49
|
import { depositFormSectionsConfig, severityChecksConfig } from "./config";
|
|
50
|
+
import { RecordDeletion } from "../components/RecordDeletion";
|
|
50
51
|
|
|
51
52
|
export class RDMDepositForm extends Component {
|
|
52
53
|
constructor(props) {
|
|
@@ -112,6 +113,7 @@ export class RDMDepositForm extends Component {
|
|
|
112
113
|
filesLocked,
|
|
113
114
|
recordRestrictionGracePeriod,
|
|
114
115
|
allowRecordRestriction,
|
|
116
|
+
recordDeletion,
|
|
115
117
|
groupsEnabled,
|
|
116
118
|
allowEmptyFiles,
|
|
117
119
|
useUppy,
|
|
@@ -135,6 +137,7 @@ export class RDMDepositForm extends Component {
|
|
|
135
137
|
filesLocked={filesLocked}
|
|
136
138
|
recordRestrictionGracePeriod={recordRestrictionGracePeriod}
|
|
137
139
|
allowRecordRestriction={allowRecordRestriction}
|
|
140
|
+
recordDeletion={recordDeletion}
|
|
138
141
|
groupsEnabled={groupsEnabled}
|
|
139
142
|
allowEmptyFiles={allowEmptyFiles}
|
|
140
143
|
customFieldsUI={customFieldsUI}
|
|
@@ -760,7 +763,23 @@ export class RDMDepositForm extends Component {
|
|
|
760
763
|
>
|
|
761
764
|
<Card>
|
|
762
765
|
<Card.Content>
|
|
763
|
-
<
|
|
766
|
+
<Grid relaxed>
|
|
767
|
+
<Grid.Column width={16}>
|
|
768
|
+
<DeleteButton fluid />
|
|
769
|
+
</Grid.Column>
|
|
770
|
+
|
|
771
|
+
{record.is_published && recordDeletion["enabled"] && (
|
|
772
|
+
<Grid.Column width={16} className="pt-0">
|
|
773
|
+
<RecordDeletion
|
|
774
|
+
record={record}
|
|
775
|
+
permissions={permissions}
|
|
776
|
+
recordDeletion={recordDeletion}
|
|
777
|
+
options={this.vocabularies.metadata.removal_reasons}
|
|
778
|
+
disabled={!recordDeletion["allowed"]}
|
|
779
|
+
/>
|
|
780
|
+
</Grid.Column>
|
|
781
|
+
)}
|
|
782
|
+
</Grid>
|
|
764
783
|
</Card.Content>
|
|
765
784
|
</Card>
|
|
766
785
|
</Overridable>
|
|
@@ -781,6 +800,7 @@ RDMDepositForm.propTypes = {
|
|
|
781
800
|
config: PropTypes.object.isRequired,
|
|
782
801
|
recordRestrictionGracePeriod: PropTypes.number.isRequired,
|
|
783
802
|
allowRecordRestriction: PropTypes.bool.isRequired,
|
|
803
|
+
recordDeletion: PropTypes.object.isRequired,
|
|
784
804
|
record: PropTypes.object.isRequired,
|
|
785
805
|
preselectedCommunity: PropTypes.object,
|
|
786
806
|
files: PropTypes.object,
|
|
@@ -792,8 +812,8 @@ RDMDepositForm.propTypes = {
|
|
|
792
812
|
|
|
793
813
|
RDMDepositForm.defaultProps = {
|
|
794
814
|
preselectedCommunity: undefined,
|
|
795
|
-
permissions: null,
|
|
796
815
|
files: null,
|
|
816
|
+
permissions: null,
|
|
797
817
|
filesLocked: false,
|
|
798
818
|
allowEmptyFiles: true,
|
|
799
819
|
useUppy: false,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// This file is part of InvenioRDM
|
|
2
|
-
// Copyright (C) 2020-
|
|
2
|
+
// Copyright (C) 2020-2025 CERN.
|
|
3
3
|
// Copyright (C) 2020-2022 Northwestern University.
|
|
4
4
|
// Copyright (C) 2022-2024 KTH Royal Institute of Technology.
|
|
5
5
|
//
|
|
@@ -28,6 +28,7 @@ ReactDOM.render(
|
|
|
28
28
|
"deposits-record-restriction-grace-period"
|
|
29
29
|
)}
|
|
30
30
|
allowRecordRestriction={getInputFromDOM("deposits-allow-record-restriction")}
|
|
31
|
+
recordDeletion={getInputFromDOM("deposits-record-deletion")}
|
|
31
32
|
groupsEnabled={getInputFromDOM("config-groups-enabled")}
|
|
32
33
|
allowEmptyFiles={getInputFromDOM("records-resources-allow-empty-files")}
|
|
33
34
|
isDoiRequired={getInputFromDOM("deposits-is-doi-required")}
|
|
@@ -1,17 +1,48 @@
|
|
|
1
1
|
// This file is part of InvenioRDM
|
|
2
|
-
// Copyright (C) 2023-
|
|
2
|
+
// Copyright (C) 2023-2025 CERN.
|
|
3
3
|
//
|
|
4
4
|
// Invenio RDM Records is free software; you can redistribute it and/or modify it
|
|
5
5
|
// under the terms of the MIT License; see LICENSE file for more details.
|
|
6
6
|
|
|
7
|
-
import React from "react";
|
|
7
|
+
import React, { useEffect, useState } from "react";
|
|
8
8
|
import { Dropdown, Modal, Button, Message } from "semantic-ui-react";
|
|
9
9
|
import { i18next } from "@translations/invenio_app_rdm/i18next";
|
|
10
10
|
import PropTypes from "prop-types";
|
|
11
11
|
import { http } from "react-invenio-forms";
|
|
12
12
|
import { APIRoutes } from "../administration/users/api/routes";
|
|
13
|
+
import { RecordDeletion } from "../components/RecordDeletion";
|
|
14
|
+
|
|
15
|
+
const fetchOptions = async () => {
|
|
16
|
+
const url = "/api/vocabularies/removalreasons?q=tags:deletion-request";
|
|
17
|
+
const req = http.get(url);
|
|
18
|
+
try {
|
|
19
|
+
const response = await req;
|
|
20
|
+
const data = response.data.hits.hits;
|
|
21
|
+
|
|
22
|
+
const options = data.map((x) => {
|
|
23
|
+
return {
|
|
24
|
+
text: x["title_l10n"],
|
|
25
|
+
value: x["id"],
|
|
26
|
+
};
|
|
27
|
+
});
|
|
28
|
+
return options;
|
|
29
|
+
} catch (e) {
|
|
30
|
+
console.error(e);
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export const ManageButton = ({
|
|
35
|
+
record,
|
|
36
|
+
recordOwnerID,
|
|
37
|
+
permissions,
|
|
38
|
+
recordDeletion,
|
|
39
|
+
}) => {
|
|
40
|
+
const [options, setOptions] = useState([]);
|
|
41
|
+
|
|
42
|
+
useEffect(() => {
|
|
43
|
+
fetchOptions().then(setOptions);
|
|
44
|
+
}, []);
|
|
13
45
|
|
|
14
|
-
export const ManageButton = ({ recid, recordOwnerID }) => {
|
|
15
46
|
return (
|
|
16
47
|
<Dropdown
|
|
17
48
|
fluid
|
|
@@ -23,30 +54,51 @@ export const ManageButton = ({ recid, recordOwnerID }) => {
|
|
|
23
54
|
className="icon text-align-center"
|
|
24
55
|
>
|
|
25
56
|
<Dropdown.Menu>
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
{
|
|
57
|
+
{recordDeletion["valid_user"] && (
|
|
58
|
+
<>
|
|
59
|
+
<Dropdown.Item>
|
|
60
|
+
<RecordDeletion
|
|
61
|
+
record={record}
|
|
62
|
+
permissions={permissions}
|
|
63
|
+
recordDeletion={recordDeletion}
|
|
64
|
+
options={options}
|
|
65
|
+
disabled={!recordDeletion["allowed"]}
|
|
66
|
+
/>
|
|
67
|
+
</Dropdown.Item>
|
|
68
|
+
|
|
69
|
+
{permissions.can_moderate && <Dropdown.Divider />}
|
|
70
|
+
</>
|
|
71
|
+
)}
|
|
72
|
+
{permissions.can_moderate && (
|
|
73
|
+
<>
|
|
74
|
+
<Dropdown.Item
|
|
75
|
+
as="a"
|
|
76
|
+
href={`/administration/records?q=id:${record["id"]}`}
|
|
77
|
+
target="_blank"
|
|
78
|
+
key="manage_record"
|
|
79
|
+
text={i18next.t("Manage record")}
|
|
80
|
+
/>
|
|
81
|
+
<Dropdown.Item
|
|
82
|
+
as="a"
|
|
83
|
+
href={`/administration/users?q=id:${recordOwnerID}`}
|
|
84
|
+
target="_blank"
|
|
85
|
+
key="manage_user"
|
|
86
|
+
text={i18next.t("Manage user")}
|
|
87
|
+
/>
|
|
88
|
+
<Dropdown.Divider />
|
|
89
|
+
{recordOwnerID && <BlockUserItem recordOwnerID={recordOwnerID} />}
|
|
90
|
+
</>
|
|
91
|
+
)}
|
|
42
92
|
</Dropdown.Menu>
|
|
43
93
|
</Dropdown>
|
|
44
94
|
);
|
|
45
95
|
};
|
|
46
96
|
|
|
47
97
|
ManageButton.propTypes = {
|
|
48
|
-
|
|
98
|
+
record: PropTypes.object.isRequired,
|
|
49
99
|
recordOwnerID: PropTypes.string.isRequired,
|
|
100
|
+
permissions: PropTypes.object.isRequired,
|
|
101
|
+
recordDeletion: PropTypes.object.isRequired,
|
|
50
102
|
};
|
|
51
103
|
|
|
52
104
|
const BlockUserItem = ({ recordOwnerID }) => {
|
|
@@ -91,7 +91,7 @@ export class RecordCommunitySubmissionModal extends Component {
|
|
|
91
91
|
} catch (error) {
|
|
92
92
|
console.error(error);
|
|
93
93
|
this.setState({
|
|
94
|
-
error: error
|
|
94
|
+
error: error["message"],
|
|
95
95
|
});
|
|
96
96
|
} finally {
|
|
97
97
|
this.setState({ loading: false });
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// This file is part of InvenioRDM
|
|
2
|
-
// Copyright (C) 2020-
|
|
2
|
+
// Copyright (C) 2020-2025 CERN.
|
|
3
3
|
// Copyright (C) 2020-2021 Northwestern University.
|
|
4
4
|
// Copyright (C) 2021 Graz University of Technology.
|
|
5
5
|
//
|
|
@@ -34,6 +34,7 @@ export class RecordManagement extends Component {
|
|
|
34
34
|
currentUserId,
|
|
35
35
|
recordOwnerID,
|
|
36
36
|
groupsEnabled,
|
|
37
|
+
recordDeletion,
|
|
37
38
|
} = this.props;
|
|
38
39
|
const { error } = this.state;
|
|
39
40
|
const { id: recid } = record;
|
|
@@ -44,9 +45,14 @@ export class RecordManagement extends Component {
|
|
|
44
45
|
|
|
45
46
|
return (
|
|
46
47
|
<Grid columns={1} className="record-management">
|
|
47
|
-
{permissions.can_moderate && (
|
|
48
|
+
{(recordDeletion["valid_user"] || permissions.can_moderate) && (
|
|
48
49
|
<Grid.Column className="pb-5">
|
|
49
|
-
<ManageButton
|
|
50
|
+
<ManageButton
|
|
51
|
+
record={record}
|
|
52
|
+
recordOwnerID={recordOwnerID}
|
|
53
|
+
permissions={permissions}
|
|
54
|
+
recordDeletion={recordDeletion}
|
|
55
|
+
/>
|
|
50
56
|
</Grid.Column>
|
|
51
57
|
)}
|
|
52
58
|
{permissions.can_edit && !isDraft && (
|
|
@@ -120,4 +126,5 @@ RecordManagement.propTypes = {
|
|
|
120
126
|
isPreviewSubmissionRequest: PropTypes.bool.isRequired,
|
|
121
127
|
currentUserId: PropTypes.string.isRequired,
|
|
122
128
|
recordOwnerID: PropTypes.string.isRequired,
|
|
129
|
+
recordDeletion: PropTypes.object.isRequired,
|
|
123
130
|
};
|
|
@@ -39,6 +39,7 @@ function renderRecordManagement(element) {
|
|
|
39
39
|
currentUserId={recordManagementAppDiv.dataset.currentUserId}
|
|
40
40
|
recordOwnerID={record.parent.access.owned_by.user}
|
|
41
41
|
groupsEnabled={JSON.parse(recordManagementAppDiv.dataset.groupsEnabled)}
|
|
42
|
+
recordDeletion={JSON.parse(recordManagementAppDiv.dataset.recordDeletion)}
|
|
42
43
|
/>
|
|
43
44
|
</OverridableContext.Provider>,
|
|
44
45
|
element
|
invenio_app_rdm/theme/webpack.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2019-
|
|
3
|
+
# Copyright (C) 2019-2025 CERN.
|
|
4
4
|
# Copyright (C) 2019-2022 Northwestern University.
|
|
5
5
|
# Copyright (C) 2022 TU Wien.
|
|
6
6
|
# Copyright (C) 2022 Graz University of Technology.
|
|
@@ -34,6 +34,7 @@ theme = WebpackThemeBundle(
|
|
|
34
34
|
"invenio-app-rdm-frontpage": "./js/invenio_app_rdm/frontpage/index.js",
|
|
35
35
|
"overridable-registry": "./js/invenio_app_rdm/overridableRegistry/index.js",
|
|
36
36
|
"invenio-users-moderation-administration": "./js/invenio_app_rdm/administration/userModeration/index.js",
|
|
37
|
+
"invenio-requests-administration": "./js/invenio_app_rdm/administration/requests/index.js",
|
|
37
38
|
"invenio-users-administration": "./js/invenio_app_rdm/administration/users/index.js",
|
|
38
39
|
"invenio-records-administration": "./js/invenio_app_rdm/administration/records/index.js",
|
|
39
40
|
"invenio-drafts-administration": "./js/invenio_app_rdm/administration/drafts/index.js",
|
{invenio_app_rdm-14.0.0b0.dev4.dist-info → invenio_app_rdm-14.0.0b1.dev2.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-app-rdm
|
|
3
|
-
Version: 14.0.
|
|
3
|
+
Version: 14.0.0b1.dev2
|
|
4
4
|
Summary: Invenio Research Data Management.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-app-rdm
|
|
6
6
|
Author: CERN
|
|
@@ -40,9 +40,9 @@ Requires-Dist: invenio-search-ui<5.0.0,>=4.0.0
|
|
|
40
40
|
Requires-Dist: invenio-files-rest<4.0.0,>=3.0.0
|
|
41
41
|
Requires-Dist: invenio-previewer<4.0.0,>=3.0.0
|
|
42
42
|
Requires-Dist: invenio-records-files<2.0.0,>=1.2.1
|
|
43
|
-
Requires-Dist: invenio-collections<
|
|
44
|
-
Requires-Dist: invenio-communities<
|
|
45
|
-
Requires-Dist: invenio-rdm-records<
|
|
43
|
+
Requires-Dist: invenio-collections<3.0.0,>=2.0.0
|
|
44
|
+
Requires-Dist: invenio-communities<22.0.0,>=21.0.0
|
|
45
|
+
Requires-Dist: invenio-rdm-records<22.0.0,>=21.0.0
|
|
46
46
|
Requires-Dist: CairoSVG<3.0.0,>=2.5.2
|
|
47
47
|
Requires-Dist: invenio-banners<6.0.0,>=5.0.0
|
|
48
48
|
Requires-Dist: invenio-pages<8.0.0,>=7.0.0
|
|
@@ -90,7 +90,7 @@ https://inveniordm.docs.cern.ch
|
|
|
90
90
|
|
|
91
91
|
|
|
92
92
|
..
|
|
93
|
-
Copyright (C) 2019-
|
|
93
|
+
Copyright (C) 2019-2025 CERN.
|
|
94
94
|
Copyright (C) 2019-2024 Northwestern University.
|
|
95
95
|
Copyright (C) 2021-2024 TU Wien.
|
|
96
96
|
Copyright (C) 2021-2025 Graz University of Technology.
|
|
@@ -101,6 +101,21 @@ https://inveniordm.docs.cern.ch
|
|
|
101
101
|
Changes
|
|
102
102
|
=======
|
|
103
103
|
|
|
104
|
+
Version v14.0.0b1.dev2 (released 2025-09-29)
|
|
105
|
+
|
|
106
|
+
- fix(deposit-ui): use API record for evaluating deletion policy
|
|
107
|
+
|
|
108
|
+
Version v14.0.0b1.dev1 (released 2025-09-24)
|
|
109
|
+
|
|
110
|
+
- Fixed CHANGES.rst formatting
|
|
111
|
+
|
|
112
|
+
Version v14.0.0b1.dev0 (released 2025-09-24)
|
|
113
|
+
|
|
114
|
+
- feat(administration): add Requests view
|
|
115
|
+
- feat: add record deletion requests
|
|
116
|
+
* Allows to configure record deletion policies for immediate deletion
|
|
117
|
+
or going through a request flow on the record landing page.
|
|
118
|
+
|
|
104
119
|
Version v14.0.0b0.dev4 (released 2025-09-01)
|
|
105
120
|
|
|
106
121
|
- views(deposit): pass to the form config the published record if we edit one
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=WBZO-gxlwzSZLsfhBSsxFQnBujNKoXal2-E9fCkv-8c,704
|
|
2
2
|
invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
|
|
3
|
-
invenio_app_rdm/config.py,sha256=
|
|
3
|
+
invenio_app_rdm/config.py,sha256=yyCMk3yr7apE9qNcBUvQbAsk0-I-_U8Aoe3bS5fOOHs,53464
|
|
4
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
|
|
@@ -9,17 +9,21 @@ 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
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=0eTICmdnDZEW6JeftRkiUV2N3v-Dha5RMh804c0DeQs,3102
|
|
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
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
|
|
@@ -43,10 +47,10 @@ invenio_app_rdm/fixtures/pages/.gitkeep,sha256=1HVs32jZTGcMkk-dV9RHGPZm5FdydwFIZ
|
|
|
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=04Q_mI3SvfuNlmSziIJldr94UI2EKXZIdHAm4qHrEN0,3469
|
|
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=
|
|
53
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html,sha256=jdtme926G943raYhGa-evTK9NfWdyDOWEoONLtb-o2Q,2791
|
|
50
54
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html,sha256=RXUfOAKKEcljINo1b6irPgHqmnNDt0BNWpTk6lTs_nY,20865
|
|
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
|
|
@@ -73,7 +77,7 @@ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details
|
|
|
73
77
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html,sha256=8FTUt6MVRvEsj89qDxP6eK2feyv2UI0fgICoT99cUIU,717
|
|
74
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=6esAQuLKJ4sCRZQbRI1QFlN96XtzE-j8litvI7p3rgU,1443
|
|
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
|
|
@@ -86,9 +90,9 @@ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
|
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
92
|
invenio_app_rdm/records_ui/views/decorators.py,sha256=-GdyPh2qIxV_wacAv5uChNx-HW2LiKjHQiRujiu42B4,16510
|
|
89
|
-
invenio_app_rdm/records_ui/views/deposits.py,sha256=
|
|
93
|
+
invenio_app_rdm/records_ui/views/deposits.py,sha256=G_sZKGo37eKIZx9kU-p2_ImQSZVlBIMQXNIZ3fdOjw4,25213
|
|
90
94
|
invenio_app_rdm/records_ui/views/filters.py,sha256=zKuqjM_Yb9MmBmloStjasASYCwVG7mUe0eolI2MtPXg,6998
|
|
91
|
-
invenio_app_rdm/records_ui/views/records.py,sha256=
|
|
95
|
+
invenio_app_rdm/records_ui/views/records.py,sha256=vLuenTEoTV9ZB9suUGI4ct1ml2iModZqhdlVfK5dIRc,17811
|
|
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,17 +101,18 @@ 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/guest-access-request/index.html,sha256=
|
|
104
|
+
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html,sha256=RXtoMrLFvEGHuy2YgoyCkpjEJmUVehFbmXvX1_7qGtY,1978
|
|
101
105
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html,sha256=Iado6BmcFFswmvQ9IrdtgSyAzJr5AIT2BP2IDg-B-8U,2695
|
|
106
|
+
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/record-deletion/index.html,sha256=av7g0h7A1V7KBpdP9ogkHIjhBhZzhRTJwv9fCEsOJYo,2745
|
|
102
107
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/index.html,sha256=eEYjTnVL-L30Dm_1LvSNKSx3QEHRoxMGHLupvu_1nMM,1453
|
|
103
108
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html,sha256=347Saf8Fv78uevCbK2nFiOtNFUT0QyZSZS7lgoNzHdQ,1448
|
|
104
109
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html,sha256=ltSP9sYPnpmCKMDYpZYU25Wxr3Dfqe2RNDxm6bVjX_I,1779
|
|
105
110
|
invenio_app_rdm/requests_ui/views/__init__.py,sha256=7QiAyRq8Eu84IXwjzxK63vNeTZnowZ5P85xtw7XgRjs,397
|
|
106
|
-
invenio_app_rdm/requests_ui/views/requests.py,sha256=
|
|
111
|
+
invenio_app_rdm/requests_ui/views/requests.py,sha256=V38eXliWOVXbAzbDTvOuvifk6iyURXn1OxMgCcEN6uE,15273
|
|
107
112
|
invenio_app_rdm/requests_ui/views/ui.py,sha256=DBysYQa__gOCg-pikO6HmoVLmRmMAVWeTBiYhPa7PmA,2359
|
|
108
113
|
invenio_app_rdm/theme/__init__.py,sha256=QbkxNjjOmGKRlie96HfTXgnFeVQjOX0GdiZnHP7pIhs,277
|
|
109
114
|
invenio_app_rdm/theme/views.py,sha256=mrcxejY9PlYwEqh8f0ojKX4CtmD9jz4f9rU-5aLZszU,4457
|
|
110
|
-
invenio_app_rdm/theme/webpack.py,sha256=
|
|
115
|
+
invenio_app_rdm/theme/webpack.py,sha256=s1JafSwXmAc5fRMsdFZflfhkqQplYhjnr5BmJHaf1B0,5390
|
|
111
116
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js,sha256=LIgneJY0lNGB4ePpEvGL1KFcUKVsOjNctP45uWVc3wE,4875
|
|
112
117
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js,sha256=oTCQkmr7j6FwVsOfM6hsKrPHfadW7m9IurrqYVDgxDw,3628
|
|
113
118
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/auditLogs/AuditLogActions.js,sha256=ugQ-0b_6_O5rDeP7JUlNJ5SLGGlip_tP3OoTT4hRcak,3984
|
|
@@ -143,6 +148,9 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/recor
|
|
|
143
148
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/index.js,sha256=Aax3344oX3S_M4_KDwBsfr2Z8x01vHrNGGvEDmE08wY,342
|
|
144
149
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/DeletionStatusFilter.js,sha256=xv0kXgAQUjBmSfBND-qjdXSXMqMQV9O7ntNkXTQGFSk,3291
|
|
145
150
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/index.js,sha256=wNAQbt_8N5_jhPzCWazdb0wufYoUGH2wfTvbLL7JM50,309
|
|
151
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchResultItem.js,sha256=Oc-7VG0XPVQWAmqz3o5yfF7lYJ83UEQzuEBcXL1o1Lc,2860
|
|
152
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js,sha256=w-u6zyo4yTeoqBu4uYeUwHulUjmK2X2kCP2Iw1aLuUQ,1587
|
|
153
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js,sha256=nzN98yzW92VnPwxdovrySsVkZSZ3qm0El4_hBD6nvYQ,899
|
|
146
154
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/ModerationActions.js,sha256=Il9iTiHv8HQHoCHH1aBEWv_KiBcrJVkqhb4WkIf6jtQ,3193
|
|
147
155
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/index.js,sha256=G4mWwMI07lix4_BWUJjzaOOsRyEL6tWdJeeyJoze1lE,975
|
|
148
156
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/search/SearchResultItemLayout.js,sha256=LIiT4ZB-tfOIV4xC6_eSFwn1jgssipKzbT9WwwSujOM,4731
|
|
@@ -169,11 +177,14 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CompactSt
|
|
|
169
177
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButton.js,sha256=uBcEXzGJYZ7dPIdQBxPqxLvwP6Z5QVg1x-YRncRDW3k,3550
|
|
170
178
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js,sha256=bSmhuwSWk4CW80mqa4ZZbjfa-_NsiJ1IxQ9veDy6sAM,2751
|
|
171
179
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVerifiedCommunity.js,sha256=m3rT8jJ3440ZX22zZog8bHatWltYXwvmw_tu6tJUM9k,1506
|
|
180
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion.js,sha256=0rAS8mGVKNqJtBdWoGa1G1FMnY3QaKAs1Gd--91JqIA,2297
|
|
172
181
|
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/
|
|
182
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionModal.js,sha256=kXME7Lr51ygS6PdA355Q2gh7bVcHLOBBW1ZClI_R4_E,12131
|
|
183
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordDeletion/DeletionRadioGroup.js,sha256=qMFdPQkVQQsaS0P9KdPyFcuunZmGlEALjfABPueuoVU,1227
|
|
184
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js,sha256=rAgh5BvzsBBCUJPZWYfOAHm628Irg-CnD9_qlPE7yZM,34472
|
|
174
185
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js,sha256=ICMV4Ixe-nTe6q7COZ0oyAQf2nVp2cez_-iUZobwUD0,1998
|
|
175
186
|
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=
|
|
187
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js,sha256=r9MvsucIXEyW7Bbb8vuEP2ZTRMzA-GJCn7GEpvqO0tY,1710
|
|
177
188
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js,sha256=PkLpiCl7sNSlQoCo7xxZ_H6QvWqK_TydoseIiKvtuMw,4176
|
|
178
189
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/index.js,sha256=X0tsSvLwGPzSFQEf4J1zPZbFRCiYeJq5CnEXr_J5LsU,900
|
|
179
190
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/AccessRequestForm.js,sha256=5GRlVkJQpwrY9wk4KI5Tmqmll2d3cEls8isJZjvoA9Q,8798
|
|
@@ -181,13 +192,13 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/Communi
|
|
|
181
192
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/CommunitiesManagementDropdown.js,sha256=qocsinvtbWEqAi8kgqNqx7c0X-_evRmCz2bPTaMQlcI,5953
|
|
182
193
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/EditButton.js,sha256=WJ5lNpbPcd_Kymn_TYklSTfkCJRPhpFeT6cWcR48mSQ,1452
|
|
183
194
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js,sha256=fDqs5sel6Zo1oPkJT1XbR3dtHXvvgVuDhe_sg_-D690,1969
|
|
184
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js,sha256=
|
|
195
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js,sha256=Lx9zHYxuqNKLPdOsPM019HgO_hqo2p3auqSpaPyRveg,4287
|
|
185
196
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js,sha256=XYfXsQejNeC1R0spndn0qDrqvz6w3bj5UlPEIgT4U24,4757
|
|
186
197
|
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=
|
|
198
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js,sha256=N4_pyfqVY698DmVv2oJMMgzvgNvVNm4ptoSSONfAR64,4106
|
|
188
199
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js,sha256=ZJaD4fW2z00tcektXVz0eLXu6oGLLW-NUjV86neuDjM,7141
|
|
189
200
|
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=
|
|
201
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/index.js,sha256=2gwIJGItno7I0U_avhYQ6wNzMZ9w5zqWnWam_EvX50I,5060
|
|
191
202
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/theme.js,sha256=TieqbbmJrxVKlkD5Kvsw6F-sbpucxSV9dv30Y6pXKjI,3144
|
|
192
203
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageDefaultBrandingAction/ManageDefaultBrandingAction.js,sha256=qNWpe3KyZ8NDHKocG6XKJzb6w3fIQk3muWN126pUo9w,3529
|
|
193
204
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/PendingCommunitiesModal/PendingCommunitiesModal.js,sha256=G9OwLxKqX73w_7D1k7BHOzMeLmokowMfJQg5Km7J8RA,1797
|
|
@@ -197,7 +208,7 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordC
|
|
|
197
208
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearch.js,sha256=bNkexo7L1fz5rzaxoZCM4R9GRdnZcdTRr-djR4k2t5o,3079
|
|
198
209
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesListModal/RecordCommunitiesSearchItem.js,sha256=7Mvz7C1_S_MfsJoN8-iyAaw9Y7aBPwBa6MH6O0gWhuw,1667
|
|
199
210
|
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=
|
|
211
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitySubmission/RecordCommunitySubmissionModal.js,sha256=LM1RACmC3PS_o4txek-czaLvWD8OgjOM76aVK5jk8oE,5117
|
|
201
212
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RemoveFromCommunity/RemoveFromCommunityAction.js,sha256=O5aHzH-oQsagurnU0e4pFc4B_4BRTbPuk0Ifk_T_WFw,5859
|
|
202
213
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareButton.js,sha256=TKa1b_NUGD-DUqrqvQE2SwDI6Gr-HP246ymhDvQtj3A,1785
|
|
203
214
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ShareOptions/ShareModal.js,sha256=5Gq2TGsOlkvrwg2fURyv7wOaO2QH22_ZWzrjE2nCDiY,6627
|
|
@@ -484,9 +495,9 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
|
|
|
484
495
|
invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
|
|
485
496
|
invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
|
|
486
497
|
invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
|
|
487
|
-
invenio_app_rdm-14.0.
|
|
488
|
-
invenio_app_rdm-14.0.
|
|
489
|
-
invenio_app_rdm-14.0.
|
|
490
|
-
invenio_app_rdm-14.0.
|
|
491
|
-
invenio_app_rdm-14.0.
|
|
492
|
-
invenio_app_rdm-14.0.
|
|
498
|
+
invenio_app_rdm-14.0.0b1.dev2.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
499
|
+
invenio_app_rdm-14.0.0b1.dev2.dist-info/METADATA,sha256=jnNfU7xmuNhwhpY7jpin12YapqHwVKhkqrv-yQy8zoI,17738
|
|
500
|
+
invenio_app_rdm-14.0.0b1.dev2.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
501
|
+
invenio_app_rdm-14.0.0b1.dev2.dist-info/entry_points.txt,sha256=MwtT1SN5saWOgTYhNb5y0YGA9VGAi0kXN0cykIfsb4U,2405
|
|
502
|
+
invenio_app_rdm-14.0.0b1.dev2.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
|
|
503
|
+
invenio_app_rdm-14.0.0b1.dev2.dist-info/RECORD,,
|
{invenio_app_rdm-14.0.0b0.dev4.dist-info → invenio_app_rdm-14.0.0b1.dev2.dist-info}/entry_points.txt
RENAMED
|
@@ -5,6 +5,8 @@ rdm = invenio_app_rdm.cli:rdm
|
|
|
5
5
|
invenio_app_rdm_audit_logs = invenio_app_rdm.administration.audit_logs:AuditLogListView
|
|
6
6
|
invenio_app_rdm_drafts_list = invenio_app_rdm.administration.records:DraftAdminListView
|
|
7
7
|
invenio_app_rdm_records_list = invenio_app_rdm.administration.records:RecordAdminListView
|
|
8
|
+
invenio_requests_moderation_requests_details = invenio_app_rdm.administration.moderation.requests:ModerationRequestDetailView
|
|
9
|
+
invenio_requests_moderation_requests_list = invenio_app_rdm.administration.moderation.requests:ModerationRequestListView
|
|
8
10
|
invenio_requests_user_moderation_detail = invenio_app_rdm.administration.user_moderation:UserModerationRequestDetailView
|
|
9
11
|
invenio_requests_user_moderation_list = invenio_app_rdm.administration.user_moderation:UserModerationListView
|
|
10
12
|
invenio_users_resources_domains_create = invenio_app_rdm.administration.domains:DomainsCreateView
|
|
File without changes
|
{invenio_app_rdm-14.0.0b0.dev4.dist-info → invenio_app_rdm-14.0.0b1.dev2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{invenio_app_rdm-14.0.0b0.dev4.dist-info → invenio_app_rdm-14.0.0b1.dev2.dist-info}/top_level.txt
RENAMED
|
File without changes
|