invenio-app-rdm 13.0.0rc6__py2.py3-none-any.whl → 13.0.0rc7__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/views/filters.py +1 -1
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html +2 -1
- invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html +26 -0
- {invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc7.dist-info}/METADATA +8 -1
- {invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc7.dist-info}/RECORD +10 -9
- {invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc7.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc7.dist-info}/entry_points.txt +0 -0
- {invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc7.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc7.dist-info}/top_level.txt +0 -0
invenio_app_rdm/__init__.py
CHANGED
|
@@ -207,6 +207,6 @@ def transform_record(record, serializer, module=None, throws=True, **kwargs):
|
|
|
207
207
|
if throws:
|
|
208
208
|
raise Exception("No serializer found.")
|
|
209
209
|
except Exception:
|
|
210
|
-
current_app.logger.
|
|
210
|
+
current_app.logger.exception("Record transformation failed.")
|
|
211
211
|
if throws:
|
|
212
212
|
raise
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{# -*- coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
This file is part of Invenio.
|
|
4
|
+
Copyright (C) 2025 CERN.
|
|
5
|
+
|
|
6
|
+
Invenio is free software; you can redistribute it and/or modify it
|
|
7
|
+
under the terms of the MIT License; see LICENSE file for more details.
|
|
8
|
+
#}
|
|
9
|
+
|
|
10
|
+
{% extends "invenio_communities/base.html" %}
|
|
11
|
+
|
|
12
|
+
{% set title = page.title %}
|
|
13
|
+
{% set community_menu_active = True %}
|
|
14
|
+
|
|
15
|
+
{% block page_body %}
|
|
16
|
+
{% include "invenio_communities/details/header.html" %}
|
|
17
|
+
<div class="ui container rel-mt-2">
|
|
18
|
+
<div class="row">
|
|
19
|
+
<div class="col-xs-12 rich-input-content">
|
|
20
|
+
{% block content %}
|
|
21
|
+
{{ page.content|safe }}
|
|
22
|
+
{% endblock %}
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
{% endblock %}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-app-rdm
|
|
3
|
-
Version: 13.0.
|
|
3
|
+
Version: 13.0.0rc7
|
|
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 v13.0.0rc7 (released 2025-07-22)
|
|
105
|
+
|
|
106
|
+
- fix: license due to copy pasting
|
|
107
|
+
- fix: import `overridable-registry.js` in `records_list` macro
|
|
108
|
+
- templates: added default_static_page for communties
|
|
109
|
+
- ui: log serialization exceptions
|
|
110
|
+
|
|
104
111
|
Version v13.0.0rc6 (released 2025-07-21)
|
|
105
112
|
|
|
106
113
|
- fix: package.json and package-lock mismatch
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=K5DP7r1Z7IrOP_0aUUsGuuNdoB6YAsMniUUEodjNu5c,700
|
|
2
2
|
invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
|
|
3
3
|
invenio_app_rdm/config.py,sha256=MQYHg0C5p5xAphuGOh3lqxp7k9Dboi27uxn7WHkv2JU,52040
|
|
4
4
|
invenio_app_rdm/ext.py,sha256=K7syn5CU5If7yOclFeNOCZX_u5q6VB7NJEQVm41mlng,5286
|
|
@@ -87,7 +87,7 @@ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
|
87
87
|
invenio_app_rdm/records_ui/views/__init__.py,sha256=9DaDls04IQv7fYttDjLofIWGsRRjk-FwUYnIfxV3OWk,5840
|
|
88
88
|
invenio_app_rdm/records_ui/views/decorators.py,sha256=MUUmgGuigmFMigcpyJbNvM0yPKUyeAw5LE6MJ69BoFA,15883
|
|
89
89
|
invenio_app_rdm/records_ui/views/deposits.py,sha256=2yUaZIeaGzogztpg0cXInK_twU2n6oP6J60ZA2cz2nA,22394
|
|
90
|
-
invenio_app_rdm/records_ui/views/filters.py,sha256=
|
|
90
|
+
invenio_app_rdm/records_ui/views/filters.py,sha256=zKuqjM_Yb9MmBmloStjasASYCwVG7mUe0eolI2MtPXg,6998
|
|
91
91
|
invenio_app_rdm/records_ui/views/records.py,sha256=u3zvyMk5ADvzC6WhUlxFqjdJMIcuBAwh7PdV_TPg2KE,16454
|
|
92
92
|
invenio_app_rdm/redirector/__init__.py,sha256=AYCTGmfbmkHW3YJXMqXlWBXcBrUsta-QmL9ULX2bjwA,243
|
|
93
93
|
invenio_app_rdm/redirector/resource.py,sha256=XuH6ZK0HVE5LdXoorlm8aI3deizvnZ5gFa9d1ihYosk,3312
|
|
@@ -392,8 +392,9 @@ invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.en.h
|
|
|
392
392
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/statistics.sv.html,sha256=YauDJm4zKxaSUmAIStlODMKS7eM68SbImJfk8vJj1C0,8081
|
|
393
393
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.en.html,sha256=Rfd4-1vpU92VxppMTLGlS7uzqXWZUtGBARJTalUFuxg,6066
|
|
394
394
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/help/versioning.sv.html,sha256=jd-EEV80N5612Xsct4RhWBXB1u7gdL88WRiIfhBz7gs,6155
|
|
395
|
-
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html,sha256=
|
|
395
|
+
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/macros/records_list.html,sha256=46so8aObvJUSCTiEx1TXV53pIjONqIK2DcCI_3HbyXA,1183
|
|
396
396
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/settings/notifications.html,sha256=7KfuuIbYtZT7DtxkBhP9U02JxEOgrAKO9AC1SDVY3uo,515
|
|
397
|
+
invenio_app_rdm/theme/templates/semantic-ui/invenio_communities/default_static_page.html,sha256=X27Jhk2Z3h1JJY61a6WXhu8AtEDIYavUNprhG5t8Oy8,722
|
|
397
398
|
invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/header.html,sha256=pPNIT9J_C4omwWuZWrAdq8rQANLaQmXeeKBmpAMxFtg,5910
|
|
398
399
|
invenio_app_rdm/theme/templates/themes/default/invenio_app_rdm/site_footer.html,sha256=D8rFpAzWZ05hUj7kbBqvi-PqLRnEJhtL7UPYy5u0jHA,1644
|
|
399
400
|
invenio_app_rdm/translations/messages.pot,sha256=6Zr8VhWZxAw55EJtmiET3GRkE-9jsQ6X9iuXaasxI3A,48847
|
|
@@ -481,9 +482,9 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
|
|
|
481
482
|
invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
|
|
482
483
|
invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
|
|
483
484
|
invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
|
|
484
|
-
invenio_app_rdm-13.0.
|
|
485
|
-
invenio_app_rdm-13.0.
|
|
486
|
-
invenio_app_rdm-13.0.
|
|
487
|
-
invenio_app_rdm-13.0.
|
|
488
|
-
invenio_app_rdm-13.0.
|
|
489
|
-
invenio_app_rdm-13.0.
|
|
485
|
+
invenio_app_rdm-13.0.0rc7.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
486
|
+
invenio_app_rdm-13.0.0rc7.dist-info/METADATA,sha256=2a3tkPr6cpMZcPaeEXXXeqWtEciFHB1adz_Pp35s5Lw,18351
|
|
487
|
+
invenio_app_rdm-13.0.0rc7.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
488
|
+
invenio_app_rdm-13.0.0rc7.dist-info/entry_points.txt,sha256=rfzEeOEdtGy99NlpWzeW-32CoO5XrEpBvlZwLD2Th88,2158
|
|
489
|
+
invenio_app_rdm-13.0.0rc7.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
|
|
490
|
+
invenio_app_rdm-13.0.0rc7.dist-info/RECORD,,
|
|
File without changes
|
{invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc7.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc7.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|