invenio-app-rdm 14.0.0b1.dev8__py2.py3-none-any.whl → 14.0.0b1.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.
@@ -17,6 +17,6 @@
17
17
  #
18
18
  # See PEP 0440 for details - https://www.python.org/dev/peps/pep-0440
19
19
 
20
- __version__ = "14.0.0b1.dev8"
20
+ __version__ = "14.0.0b1.dev9"
21
21
 
22
22
  __all__ = ("__version__",)
@@ -51,7 +51,7 @@ class ModerationRequestListView(AdminResourceListView):
51
51
  search_sort_config_name = "APP_RDM_MODERATION_REQUEST_SORT_OPTIONS"
52
52
 
53
53
  item_field_list = {
54
- "type": {"text": _("Type"), "order": 1, "width": 3},
54
+ "title": {"text": _("Title"), "order": 1, "width": 3},
55
55
  "created": {"text": _("Created"), "order": 2, "width": 3},
56
56
  "last_reply": {"text": _("Last reply"), "order": 3, "width": 3},
57
57
  }
@@ -73,12 +73,13 @@
73
73
  {{ '(' ~ add_description.lang.title_l10n ~ ')' if add_description.lang is defined else '' }}
74
74
  </span>
75
75
  </h2>
76
+ {# additional description data is being sanitized by marshmallow in the backend #}
76
77
  {% if desc_type_defined and add_description.type.id == "notes" %}
77
78
  <div class="ui message warning">
78
- {{ desc_text | sanitize_html() | safe }}
79
+ {{ desc_text | safe }}
79
80
  </div>
80
81
  {% else %}
81
- {{ desc_text | sanitize_html() | safe }}
82
+ {{ desc_text | safe }}
82
83
  {% endif %}
83
84
  </section>
84
85
  {% endfor %}
@@ -30,9 +30,7 @@ class SearchResultItemComponent extends Component {
30
30
  className="word-break-all"
31
31
  >
32
32
  <a href={AdminUIRoutes.detailsView(listUIEndpoint, result, idKeyPath)}>
33
- {/* TODO we need a better way to get the (translatable) label of a request type
34
- https://github.com/inveniosoftware/invenio-requests/issues/414 */}
35
- {result.type === "record-deletion" && "Record deletion"}
33
+ {result.title}
36
34
  </a>
37
35
  </Table.Cell>
38
36
  <Table.Cell
@@ -43,7 +41,7 @@ class SearchResultItemComponent extends Component {
43
41
  <UserListItemCompact
44
42
  user={result.expanded.created_by}
45
43
  id={result.created_by.user}
46
- // TODO linkToDetailView= filter by user?
44
+ linkToDetailView={`/administration/requests?q=created_by.user:${result.created_by.user}`}
47
45
  />
48
46
  {toRelativeTime(result.created)}
49
47
  </Table.Cell>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: invenio-app-rdm
3
- Version: 14.0.0b1.dev8
3
+ Version: 14.0.0b1.dev9
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,13 @@ https://inveniordm.docs.cern.ch
101
101
  Changes
102
102
  =======
103
103
 
104
+ Version v14.0.0b1.dev9 (released 2025-11-24)
105
+
106
+ - details: fix: do not sanitize additional description in template
107
+ - admin: requests details view improvements
108
+ - Replace `Record deletion` by `Deletion request for "Record name"`
109
+ - Link showing all requests for a given user
110
+
104
111
  Version v14.0.0b1.dev8 (released 2025-11-21)
105
112
 
106
113
  - UI: add info message about remaining days to publish changes
@@ -1,4 +1,4 @@
1
- invenio_app_rdm/__init__.py,sha256=1LRYoFA2qiXX6ZNzaS6EHiIutaic-GcKHOt9D_IIfQ8,704
1
+ invenio_app_rdm/__init__.py,sha256=CwbqPhyoYGLmuqQniccolazqDxOp9cbMbv_NmLZ5xzg,704
2
2
  invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
3
3
  invenio_app_rdm/config.py,sha256=kxAliLtzXLRysO8qxWxoSt1FhOjuDfzUi8xr40BBIYE,53632
4
4
  invenio_app_rdm/ext.py,sha256=K7syn5CU5If7yOclFeNOCZX_u5q6VB7NJEQVm41mlng,5286
@@ -10,7 +10,7 @@ invenio_app_rdm/administration/audit_logs/audit_logs.py,sha256=6tZvqPKt54Hc8gL3L
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
13
- invenio_app_rdm/administration/moderation/requests.py,sha256=xzmhgGkWMMvKVaRzkDhQtwKCnjCzWMJjfCPtiiE81Rs,6262
13
+ invenio_app_rdm/administration/moderation/requests.py,sha256=tFa26P9hue2NIHw1HevWt_lm_8tD71X_yaAkPYt0TL4,6264
14
14
  invenio_app_rdm/administration/records/__init__.py,sha256=WpNHBm_Mk9FF8GzvrXWjL79URMSgBhpqgxvrLXNooqg,434
15
15
  invenio_app_rdm/administration/records/records.py,sha256=6nVyDwYLdipIDSnlXMRe6JuiIIo5CaVojeNJCOlTPjI,5371
16
16
  invenio_app_rdm/administration/templates/semantic-ui/invenio_app_rdm/administration/audit_logs.html,sha256=kLP3lfZiwLB8N-78_xINymnD8TIjGMzeJIO1a1zO130,346
@@ -82,7 +82,7 @@ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details
82
82
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html,sha256=ptS8h6orgDhFFGXeZBCNBltELy_g9fUtS1bMTzieCPk,676
83
83
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html,sha256=fIa8R0blN2rWkrP0K43qvSTye4Gt6-5yo3HN5FLdLTA,935
84
84
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html,sha256=N53nwtlEZjxweCx70qFJa1s6uL1pPSzWZgk8p1vodE4,4277
85
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html,sha256=2H6A4YzS8-4LRcPwyU04HsvnvieseVrrf_kndZl92zI,10622
85
+ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html,sha256=uh_pujCV3Yly2hg966yzr88CzJjDHVQBttuTy8kI8Xc,10675
86
86
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html,sha256=32Yknq5PgvJpYg9Z3Brod9wui9yrpDNE11_esG-20jw,1656
87
87
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html,sha256=6OIavFXP1BeV1Xozkv-2SOea9M5RUwjRI6gEGzBUle4,9564
88
88
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html,sha256=27-KyPqb05pu-yRXHvxCgZWRSi5bFP6xf7XBn91sbeA,1741
@@ -149,7 +149,7 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/recor
149
149
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/index.js,sha256=Aax3344oX3S_M4_KDwBsfr2Z8x01vHrNGGvEDmE08wY,342
150
150
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/DeletionStatusFilter.js,sha256=xv0kXgAQUjBmSfBND-qjdXSXMqMQV9O7ntNkXTQGFSk,3291
151
151
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/records/search/filters/index.js,sha256=wNAQbt_8N5_jhPzCWazdb0wufYoUGH2wfTvbLL7JM50,309
152
- 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/RequestsSearchResultItem.js,sha256=XF8KZI48xwr2LrMju7uHffK7wqB92PhN9ROXh9toe4U,2695
153
153
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/RequestsSearchbarLayout.js,sha256=w-u6zyo4yTeoqBu4uYeUwHulUjmK2X2kCP2Iw1aLuUQ,1587
154
154
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/requests/index.js,sha256=nzN98yzW92VnPwxdovrySsVkZSZ3qm0El4_hBD6nvYQ,899
155
155
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/administration/userModeration/ModerationActions.js,sha256=Il9iTiHv8HQHoCHH1aBEWv_KiBcrJVkqhb4WkIf6jtQ,3193
@@ -497,9 +497,9 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
497
497
  invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
498
498
  invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
499
499
  invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
500
- invenio_app_rdm-14.0.0b1.dev8.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
501
- invenio_app_rdm-14.0.0b1.dev8.dist-info/METADATA,sha256=Z6CLI5_d8yEquBlvr7V6R_kpXeYo_RRxXW9AoeIuxXE,19775
502
- invenio_app_rdm-14.0.0b1.dev8.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
503
- invenio_app_rdm-14.0.0b1.dev8.dist-info/entry_points.txt,sha256=MwtT1SN5saWOgTYhNb5y0YGA9VGAi0kXN0cykIfsb4U,2405
504
- invenio_app_rdm-14.0.0b1.dev8.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
505
- invenio_app_rdm-14.0.0b1.dev8.dist-info/RECORD,,
500
+ invenio_app_rdm-14.0.0b1.dev9.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
501
+ invenio_app_rdm-14.0.0b1.dev9.dist-info/METADATA,sha256=Ejxd9NZkn892a-_8WnKuFfLF_s2bWT_fyg7PEH5t3C0,20054
502
+ invenio_app_rdm-14.0.0b1.dev9.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
503
+ invenio_app_rdm-14.0.0b1.dev9.dist-info/entry_points.txt,sha256=MwtT1SN5saWOgTYhNb5y0YGA9VGAi0kXN0cykIfsb4U,2405
504
+ invenio_app_rdm-14.0.0b1.dev9.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
505
+ invenio_app_rdm-14.0.0b1.dev9.dist-info/RECORD,,