invenio-app-rdm 14.0.0b4.dev0__py2.py3-none-any.whl → 14.0.0b4.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/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +2 -2
- invenio_app_rdm/requests_ui/views/requests.py +2 -2
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides +28 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.variables +1 -0
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.overrides +208 -6
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.variables +1 -0
- {invenio_app_rdm-14.0.0b4.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev2.dist-info}/METADATA +11 -1
- {invenio_app_rdm-14.0.0b4.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev2.dist-info}/RECORD +13 -13
- {invenio_app_rdm-14.0.0b4.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev2.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-14.0.0b4.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev2.dist-info}/entry_points.txt +0 -0
- {invenio_app_rdm-14.0.0b4.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev2.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-14.0.0b4.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev2.dist-info}/top_level.txt +0 -0
invenio_app_rdm/__init__.py
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
Copyright (C) 2021-2023 TU Wien.
|
|
5
5
|
Copyright (C) 2021 Graz University of Technology.
|
|
6
6
|
Copyright (C) 2021 New York University.
|
|
7
|
-
Copyright (C) 2024 KTH Royal Institute of Technology.
|
|
7
|
+
Copyright (C) 2024-2025 KTH Royal Institute of Technology.
|
|
8
8
|
|
|
9
9
|
Invenio RDM Records is free software; you can redistribute it and/or modify
|
|
10
10
|
it under the terms of the MIT License; see LICENSE file for more details.
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
|
|
108
108
|
<!-- PREVIEW HEADER -->
|
|
109
109
|
{% if is_preview %}
|
|
110
|
-
<div class="ui info
|
|
110
|
+
<div class="ui info bottom attached manage message">
|
|
111
111
|
<div class="ui container">
|
|
112
112
|
<div class="header">
|
|
113
113
|
<i class="eye icon"></i>
|
|
@@ -187,7 +187,7 @@ def user_dashboard_request_view(request, **kwargs):
|
|
|
187
187
|
has_community_topic = has_topic and "community" in request["topic"]
|
|
188
188
|
is_record_inclusion = request_type == CommunityInclusion.type_id
|
|
189
189
|
request_permissions = request.has_permissions_to(
|
|
190
|
-
["action_accept", "lock_request", "create_comment"]
|
|
190
|
+
["action_accept", "lock_request", "create_comment", "reply_comment"]
|
|
191
191
|
)
|
|
192
192
|
|
|
193
193
|
if has_record_topic:
|
|
@@ -293,7 +293,7 @@ def community_dashboard_request_view(request, community, community_ui, **kwargs)
|
|
|
293
293
|
["update", "read", "search_requests", "search_invites", "submit_record"]
|
|
294
294
|
)
|
|
295
295
|
request_permissions = request.has_permissions_to(
|
|
296
|
-
["action_accept", "lock_request", "create_comment"]
|
|
296
|
+
["action_accept", "lock_request", "create_comment", "reply_comment"]
|
|
297
297
|
)
|
|
298
298
|
# Add request specific permissions so that reviewers can be selected from community curators
|
|
299
299
|
permissions.update(request_permissions)
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides
CHANGED
|
@@ -83,3 +83,31 @@
|
|
|
83
83
|
background-color: transparent;
|
|
84
84
|
padding-left: 0;
|
|
85
85
|
}
|
|
86
|
+
|
|
87
|
+
.ui.button.text-only {
|
|
88
|
+
padding: @verticalPadding @textOnlyHorizontalPadding;
|
|
89
|
+
border: none !important;
|
|
90
|
+
transform: translateX(-@textOnlyHorizontalPadding);
|
|
91
|
+
|
|
92
|
+
&.basic {
|
|
93
|
+
box-shadow: none !important;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
&:not(:hover):not(:active):not(:focus) {
|
|
97
|
+
background: none !important;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
&:hover:not(:active), &:focus:not(:active) {
|
|
101
|
+
background-color: @backgroundColor !important;
|
|
102
|
+
box-shadow: none !important;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
&:active, &:active:focus {
|
|
106
|
+
background-color: @hoverBackgroundColor !important;
|
|
107
|
+
box-shadow: none !important;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
&.centered {
|
|
111
|
+
transform: none;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
.requests-event-item {
|
|
4
4
|
box-sizing: border-box;
|
|
5
5
|
|
|
6
|
-
&.selected
|
|
7
|
-
|
|
6
|
+
&.selected, &:target {
|
|
7
|
+
& > .requests-event-container > .requests-event-inner-container > .event {
|
|
8
|
+
outline: 2px solid @primaryColor;
|
|
9
|
+
}
|
|
8
10
|
}
|
|
9
11
|
}
|
|
10
12
|
|
|
@@ -12,7 +14,7 @@
|
|
|
12
14
|
position: relative;
|
|
13
15
|
padding: @defaultPadding 0;
|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
&:not(.reply)::before {
|
|
16
18
|
position: absolute;
|
|
17
19
|
top: 0;
|
|
18
20
|
bottom: 0;
|
|
@@ -31,11 +33,36 @@
|
|
|
31
33
|
padding-top: 0;
|
|
32
34
|
}
|
|
33
35
|
|
|
36
|
+
&.reply {
|
|
37
|
+
padding: (@eventPadding / 2) @eventPadding;
|
|
38
|
+
|
|
39
|
+
&:hover {
|
|
40
|
+
background-color: @whiteHover;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.requests-avatar-container {
|
|
44
|
+
margin-top: 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.content {
|
|
48
|
+
margin: 0;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.event {
|
|
52
|
+
background: none;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.timeline-comment-editor-container {
|
|
57
|
+
padding: @eventPadding;
|
|
58
|
+
padding-top: 0;
|
|
59
|
+
}
|
|
34
60
|
}
|
|
35
61
|
|
|
36
62
|
.requests-avatar-container {
|
|
37
63
|
padding-right: 0.5em;
|
|
38
64
|
margin-top: 1rem;
|
|
65
|
+
position: relative;
|
|
39
66
|
|
|
40
67
|
@media screen and (max-width: @largestMobileScreen) {
|
|
41
68
|
margin-top: 0;
|
|
@@ -45,6 +72,56 @@
|
|
|
45
72
|
max-height: 40px;
|
|
46
73
|
width: auto;
|
|
47
74
|
}
|
|
75
|
+
|
|
76
|
+
&.has-line::before {
|
|
77
|
+
content: "";
|
|
78
|
+
position: absolute;
|
|
79
|
+
display: block;
|
|
80
|
+
top: 0;
|
|
81
|
+
bottom: 0;
|
|
82
|
+
// Half the width of the avatar minus the width of the line
|
|
83
|
+
left: calc(1em - 2px);
|
|
84
|
+
width: 2px;
|
|
85
|
+
background-color: @borderColor;
|
|
86
|
+
// Full height of the comment + the margin of the next comment
|
|
87
|
+
height: calc(100% + 1rem);
|
|
88
|
+
|
|
89
|
+
@media screen and (max-width: @largestMobileScreen) {
|
|
90
|
+
& {
|
|
91
|
+
display: none;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.requests-reply-top-divider {
|
|
98
|
+
margin-bottom: 0;
|
|
99
|
+
border-bottom: none !important;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.requests-reply-container {
|
|
103
|
+
padding-top: 0.5rem;
|
|
104
|
+
background-color: #f9f9f9;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.requests-comment-fake-reply {
|
|
108
|
+
display: flex;
|
|
109
|
+
align-items: center;
|
|
110
|
+
padding: @eventPadding;
|
|
111
|
+
padding-top: 0;
|
|
112
|
+
|
|
113
|
+
.requests-avatar-container {
|
|
114
|
+
margin-top: 0;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.requests-comment-fake-reply-input {
|
|
118
|
+
width: 100%;
|
|
119
|
+
|
|
120
|
+
&:disabled {
|
|
121
|
+
// This is overriden to `opacity: 1 !important` in the Invenio Theme so we need a clearer visual effect
|
|
122
|
+
opacity: 0.45 !important;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
48
125
|
}
|
|
49
126
|
|
|
50
127
|
.requests-event-inner-container {
|
|
@@ -72,7 +149,6 @@
|
|
|
72
149
|
flex: 1;
|
|
73
150
|
border: @defaultBorder;
|
|
74
151
|
border-radius: @defaultBorderRadius;
|
|
75
|
-
padding: 0.5 * @defaultPadding;
|
|
76
152
|
background-color: @white;
|
|
77
153
|
position: relative;
|
|
78
154
|
|
|
@@ -94,6 +170,10 @@
|
|
|
94
170
|
}
|
|
95
171
|
}
|
|
96
172
|
|
|
173
|
+
.button.requests-reply-expand {
|
|
174
|
+
margin-left: @eventPadding;
|
|
175
|
+
}
|
|
176
|
+
|
|
97
177
|
&.requests-action-event {
|
|
98
178
|
border: 0;
|
|
99
179
|
display: flex;
|
|
@@ -103,6 +183,21 @@
|
|
|
103
183
|
margin-right: 0.5 * @defaultMargin;
|
|
104
184
|
}
|
|
105
185
|
}
|
|
186
|
+
|
|
187
|
+
&.requests-reply-event {
|
|
188
|
+
border: none;
|
|
189
|
+
padding: 0;
|
|
190
|
+
margin-left: 0.5rem;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
p.requests-event-body-deleted {
|
|
194
|
+
font-style: italic;
|
|
195
|
+
color: @mutedTextColor;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
& > .placeholder {
|
|
199
|
+
margin: 1rem;
|
|
200
|
+
}
|
|
106
201
|
}
|
|
107
202
|
|
|
108
203
|
.requests-action-event-icon {
|
|
@@ -113,9 +208,86 @@
|
|
|
113
208
|
background-color: @white;
|
|
114
209
|
}
|
|
115
210
|
}
|
|
211
|
+
|
|
212
|
+
.requests-comment-fake-reply {
|
|
213
|
+
display: flex;
|
|
214
|
+
align-items: center;
|
|
215
|
+
|
|
216
|
+
.requests-avatar-container {
|
|
217
|
+
margin-top: 0;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.requests-reply-count {
|
|
222
|
+
background-color: @primaryColor;
|
|
223
|
+
color: white;
|
|
224
|
+
padding: 2px 4px;
|
|
225
|
+
border-radius: @defaultBorderRadius;
|
|
226
|
+
font-weight: normal;
|
|
227
|
+
// Default font Helvetica has non-standard metrics so doesn't look middle-aligned on Firefox
|
|
228
|
+
font-family: sans-serif;
|
|
229
|
+
font-size: 0.75rem;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.requests-reply-caret {
|
|
233
|
+
margin-left: 2px !important;
|
|
234
|
+
// The button styles add a right margin when the `right` class is added, despite that just being
|
|
235
|
+
// part of the icon name.
|
|
236
|
+
margin-right: 0 !important;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.requests-reply-load-more {
|
|
240
|
+
// Padding + width of avatar + padding on right-side of avatar + margin on left-side of main content
|
|
241
|
+
margin-left: calc(@eventPadding + 28px + 1em + 0.5rem);
|
|
242
|
+
margin-top: 0.5rem;
|
|
243
|
+
margin-bottom: 0.5rem;
|
|
244
|
+
position: relative;
|
|
245
|
+
color: @linkColor;
|
|
246
|
+
font-weight: normal;
|
|
247
|
+
|
|
248
|
+
&::before {
|
|
249
|
+
content: "";
|
|
250
|
+
position: absolute;
|
|
251
|
+
display: block;
|
|
252
|
+
top: 0;
|
|
253
|
+
bottom: 0;
|
|
254
|
+
// Margin on left-side of main content, padding on right-side of avatar, half width of line
|
|
255
|
+
left: calc(-1rem - 1em);
|
|
256
|
+
width: 2px;
|
|
257
|
+
background: linear-gradient(to bottom, white, @borderColor);
|
|
258
|
+
// Full height of the comment + the margin of the next comment
|
|
259
|
+
height: calc(100% + 1rem);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
@media screen and (max-width: @largestMobileScreen) {
|
|
263
|
+
& {
|
|
264
|
+
margin: 0.5rem @eventPadding;
|
|
265
|
+
&::before {
|
|
266
|
+
display: none;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
116
271
|
}
|
|
117
|
-
|
|
118
|
-
|
|
272
|
+
|
|
273
|
+
/* First element after LoadMore component */
|
|
274
|
+
.ui.feed.stretched-feed .requests-event-item:first-child .requests-event-container:not(.reply) {
|
|
275
|
+
padding-top: 3em;
|
|
276
|
+
&::before {
|
|
277
|
+
background: linear-gradient(180deg, transparent 0, @borderColor 75%) !important;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/* Last element before LoadMore component */
|
|
282
|
+
.ui.feed.gradient-feed .requests-event-item:last-child .requests-event-container:not(.reply) {
|
|
283
|
+
padding-bottom: 3em;
|
|
284
|
+
&::before {
|
|
285
|
+
background: linear-gradient(0deg, transparent 0, @borderColor 75%) !important;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.requests-pagination-load-more {
|
|
290
|
+
cursor: pointer;
|
|
119
291
|
}
|
|
120
292
|
|
|
121
293
|
.ui.feed {
|
|
@@ -134,6 +306,10 @@
|
|
|
134
306
|
vertical-align: @userImageVerticalAlign;
|
|
135
307
|
}
|
|
136
308
|
|
|
309
|
+
.event > .content {
|
|
310
|
+
margin: @eventPadding;
|
|
311
|
+
}
|
|
312
|
+
|
|
137
313
|
/*--------------
|
|
138
314
|
Inline Date
|
|
139
315
|
---------------*/
|
|
@@ -259,3 +435,29 @@
|
|
|
259
435
|
margin: 0;
|
|
260
436
|
}
|
|
261
437
|
}
|
|
438
|
+
|
|
439
|
+
.requests-placeholder-avatar {
|
|
440
|
+
width: 28px;
|
|
441
|
+
height: 28px;
|
|
442
|
+
border-radius: 50%;
|
|
443
|
+
margin-right: 0.75rem;
|
|
444
|
+
position: relative;
|
|
445
|
+
z-index: 9999;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.requests-placeholder-event-icon {
|
|
449
|
+
width: 24px;
|
|
450
|
+
height: 21px;
|
|
451
|
+
z-index: 9999;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.requests-placeholder-avatar-icon {
|
|
455
|
+
width: 20px;
|
|
456
|
+
height: 20px;
|
|
457
|
+
border-radius: 50%;
|
|
458
|
+
margin-right: 5px;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.requests-placeholder-summary-line {
|
|
462
|
+
width: 150px;
|
|
463
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@eventPadding: 0.5 * @defaultPadding;
|
{invenio_app_rdm-14.0.0b4.dev0.dist-info → invenio_app_rdm-14.0.0b4.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.0b4.
|
|
3
|
+
Version: 14.0.0b4.dev2
|
|
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,16 @@ https://inveniordm.docs.cern.ch
|
|
|
101
101
|
Changes
|
|
102
102
|
=======
|
|
103
103
|
|
|
104
|
+
Version v14.0.0b4.dev2 (released 2025-12-16)
|
|
105
|
+
|
|
106
|
+
- semantic-ui: feed.overrides: Add placeholder css
|
|
107
|
+
- fix: css padding for preview msg
|
|
108
|
+
|
|
109
|
+
Version v14.0.0b4.dev1 (released 2025-12-13)
|
|
110
|
+
|
|
111
|
+
- feat(css): styles for threaded replies
|
|
112
|
+
- feat(views-request): include `can_reply_comment` in template permissions dict
|
|
113
|
+
|
|
104
114
|
Version v14.0.0b4.dev0 (released 2025-12-12)
|
|
105
115
|
|
|
106
116
|
- chore(setup): bump major versions
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=u8VeAx8RFcatUNs7h0tGDd5F8ChY-4KX4tEz_wPCr7Q,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
|
|
@@ -51,7 +51,7 @@ invenio_app_rdm/records_ui/utils.py,sha256=MGB4YAWrrE5Wu4RhbT2F5SAfVkm3PLe-jzD1B
|
|
|
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
|
|
54
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html,sha256=
|
|
54
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html,sha256=Bi2LGkcXb9ftgJWterPeA8GtzZs8HhMipJlj4qA4g68,20849
|
|
55
55
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html,sha256=_FPflgqVZ556Xw349mHPSFb0FOhxYkIHfmUUTX53_LU,624
|
|
56
56
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html,sha256=2h-FGJvNKS9ASZ0mErL2vz5jXQYiLL8u8rTO2_D3FVQ,1166
|
|
57
57
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html,sha256=RningdsVBXsJ8qnQjzurf0Ty8R5Tq08eS31s53c3DNE,444
|
|
@@ -109,7 +109,7 @@ invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/
|
|
|
109
109
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html,sha256=347Saf8Fv78uevCbK2nFiOtNFUT0QyZSZS7lgoNzHdQ,1448
|
|
110
110
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html,sha256=ltSP9sYPnpmCKMDYpZYU25Wxr3Dfqe2RNDxm6bVjX_I,1779
|
|
111
111
|
invenio_app_rdm/requests_ui/views/__init__.py,sha256=7QiAyRq8Eu84IXwjzxK63vNeTZnowZ5P85xtw7XgRjs,397
|
|
112
|
-
invenio_app_rdm/requests_ui/views/requests.py,sha256=
|
|
112
|
+
invenio_app_rdm/requests_ui/views/requests.py,sha256=beMGMiKhg6YXwV6V3GQ0_SA0FG8nUjUrbeHVRG0LJT4,15403
|
|
113
113
|
invenio_app_rdm/requests_ui/views/ui.py,sha256=DBysYQa__gOCg-pikO6HmoVLmRmMAVWeTBiYhPa7PmA,2359
|
|
114
114
|
invenio_app_rdm/theme/__init__.py,sha256=QbkxNjjOmGKRlie96HfTXgnFeVQjOX0GdiZnHP7pIhs,277
|
|
115
115
|
invenio_app_rdm/theme/views.py,sha256=mrcxejY9PlYwEqh8f0ojKX4CtmD9jz4f9rU-5aLZszU,4457
|
|
@@ -257,8 +257,8 @@ invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/
|
|
|
257
257
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/message.variables,sha256=mDRGjqL2avCh326NEin4h0z7bTP9QiE0nQxV_c9X40k,224
|
|
258
258
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.overrides,sha256=x26vg15BUVB4OjSbIol0EGY2XF9NlPDMvfRIsYl-ots,4104
|
|
259
259
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/collections/table.variables,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
260
|
-
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides,sha256=
|
|
261
|
-
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.variables,sha256=
|
|
260
|
+
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.overrides,sha256=XgtKuOBTgUJQX7WNZSfEAgrf-lQP_2DWkdzznsiMyxA,2109
|
|
261
|
+
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/button.variables,sha256=D7XmhqrO4orM91k0iMdyCcEqW2JywOdMZdSzR9tcyI8,206
|
|
262
262
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.overrides,sha256=KYUGvQqDLcgUUCiUreJ2eVXN85B800H3pZV3O2sXVpI,2826
|
|
263
263
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/container.variables,sha256=pq_DrgmlkubeyqvRYhhv7LXbWYJ8q_hbTOWVpDxG6A8,237
|
|
264
264
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/elements/header.overrides,sha256=je1hCE7T7phcEwItTMqkOqJo6vcflQfiGctRDy3bdMs,854
|
|
@@ -295,8 +295,8 @@ invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/tran
|
|
|
295
295
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/transition.variables,sha256=LxC404-t4GRykg6qSUf4KDoDX9OgRvVlOp9LhVtTj3o,139
|
|
296
296
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.overrides,sha256=QKS9FOgRu0wFAcRzSq_HTt1lxiEBsXuq5xBwJB2nr7M,3348
|
|
297
297
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/card.variables,sha256=3KceqH6Y0rQsbWgH3IPuXHE9ThE6cEygSrOsW5XcWto,83
|
|
298
|
-
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.overrides,sha256=
|
|
299
|
-
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.variables,sha256=
|
|
298
|
+
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.overrides,sha256=iUCx2gQHnJltJo8Zm-TsETrWGHBG6evu0rH8VC9BI-s,9616
|
|
299
|
+
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/feed.variables,sha256=2cPZcPQO6ULJygE_BkFgo29lAq-aBMRyyEgQna2rL24,38
|
|
300
300
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.overrides,sha256=m8gkMU_yKP9YIbVQ-A9eZIAj7dTmz0R25aZ5nWOYuCE,3059
|
|
301
301
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/views/item.variables,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
302
302
|
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js,sha256=un5pmzpJeMu6UeZygWGnsIIuNu8RTVQhZXMINj2mXk8,1065
|
|
@@ -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.0b4.
|
|
502
|
-
invenio_app_rdm-14.0.0b4.
|
|
503
|
-
invenio_app_rdm-14.0.0b4.
|
|
504
|
-
invenio_app_rdm-14.0.0b4.
|
|
505
|
-
invenio_app_rdm-14.0.0b4.
|
|
506
|
-
invenio_app_rdm-14.0.0b4.
|
|
501
|
+
invenio_app_rdm-14.0.0b4.dev2.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
502
|
+
invenio_app_rdm-14.0.0b4.dev2.dist-info/METADATA,sha256=v6SKfFDBqEImy1bOCpUIpJ3G2j4d7fjmeswwsmmZfGU,21929
|
|
503
|
+
invenio_app_rdm-14.0.0b4.dev2.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
504
|
+
invenio_app_rdm-14.0.0b4.dev2.dist-info/entry_points.txt,sha256=MwtT1SN5saWOgTYhNb5y0YGA9VGAi0kXN0cykIfsb4U,2405
|
|
505
|
+
invenio_app_rdm-14.0.0b4.dev2.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
|
|
506
|
+
invenio_app_rdm-14.0.0b4.dev2.dist-info/RECORD,,
|
|
File without changes
|
{invenio_app_rdm-14.0.0b4.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{invenio_app_rdm-14.0.0b4.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{invenio_app_rdm-14.0.0b4.dev0.dist-info → invenio_app_rdm-14.0.0b4.dev2.dist-info}/top_level.txt
RENAMED
|
File without changes
|