invenio-app-rdm 13.0.0rc6__py2.py3-none-any.whl → 13.0.0rc8__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/upgrade_scripts/migrate_12_0_to_13_0.py +6 -4
- {invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc8.dist-info}/METADATA +12 -1
- {invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc8.dist-info}/RECORD +11 -10
- {invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc8.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc8.dist-info}/entry_points.txt +0 -0
- {invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc8.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc8.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 %}
|
|
@@ -83,11 +83,13 @@ def run_upgrade(has, migrate):
|
|
|
83
83
|
elif draft_success_counter > 0 or record_success_counter > 0:
|
|
84
84
|
db.session.commit()
|
|
85
85
|
secho(
|
|
86
|
-
f"{record_success_counter} records have been updated and {draft_error_counter} drafts have been updated",
|
|
86
|
+
f"Migration completed: {record_success_counter} records have been updated and {draft_error_counter} drafts have been updated",
|
|
87
87
|
fg="green",
|
|
88
88
|
)
|
|
89
89
|
else:
|
|
90
|
-
secho(
|
|
90
|
+
secho(
|
|
91
|
+
"Migration completed: no records or drafts required updating.", fg="green"
|
|
92
|
+
)
|
|
91
93
|
|
|
92
94
|
|
|
93
95
|
def run_upgrade_for_thesis():
|
|
@@ -104,11 +106,11 @@ def run_upgrade_for_thesis():
|
|
|
104
106
|
# Common query filter
|
|
105
107
|
has_thesis = dsl.Q("exists", field="custom_fields.thesis:university")
|
|
106
108
|
|
|
107
|
-
secho("
|
|
109
|
+
secho("Thesis upgrade has started.", fg="green")
|
|
108
110
|
|
|
109
111
|
run_upgrade(has_thesis, migrate_thesis_university)
|
|
110
112
|
|
|
111
|
-
secho("
|
|
113
|
+
secho("Thesis upgrade has finished.", fg="green")
|
|
112
114
|
|
|
113
115
|
|
|
114
116
|
def execute_upgrade():
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-app-rdm
|
|
3
|
-
Version: 13.0.
|
|
3
|
+
Version: 13.0.0rc8
|
|
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,17 @@ https://inveniordm.docs.cern.ch
|
|
|
101
101
|
Changes
|
|
102
102
|
=======
|
|
103
103
|
|
|
104
|
+
Version v13.0.0rc8 (released 2025-07-23)
|
|
105
|
+
|
|
106
|
+
- migration: improve text in v13 upgrade script
|
|
107
|
+
|
|
108
|
+
Version v13.0.0rc7 (released 2025-07-22)
|
|
109
|
+
|
|
110
|
+
- fix: license due to copy pasting
|
|
111
|
+
- fix: import `overridable-registry.js` in `records_list` macro
|
|
112
|
+
- templates: added default_static_page for communties
|
|
113
|
+
- ui: log serialization exceptions
|
|
114
|
+
|
|
104
115
|
Version v13.0.0rc6 (released 2025-07-21)
|
|
105
116
|
|
|
106
117
|
- 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=bjmxRWRrRWsmr4nTkdClzO7KZBR60b9TtcA-oQvPvko,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
|
|
@@ -460,7 +461,7 @@ invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_1_0_to_2_0.py,sha256=S
|
|
|
460
461
|
invenio_app_rdm/upgrade_scripts/fix_migrated_records_from_8_0_to_9_0.py,sha256=p6qTNjUMAJ-0tnrSwar7jtDX_sg6V9kFj7fzH-wrbkY,2769
|
|
461
462
|
invenio_app_rdm/upgrade_scripts/migrate_10_0_to_11_0.py,sha256=TX6FCWXY4qM4z7IYzDO5qaMTheo3zAjFrmR1sXaEf4U,1333
|
|
462
463
|
invenio_app_rdm/upgrade_scripts/migrate_11_0_to_12_0.py,sha256=Tp7jfT2JHrYCFzF2qIYqG7yr7k-GhX2zkw61CWJGA78,6941
|
|
463
|
-
invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py,sha256=
|
|
464
|
+
invenio_app_rdm/upgrade_scripts/migrate_12_0_to_13_0.py,sha256=ZIFz0fFu0LQK4Ts8yS9YvZdnvWiO3-piFunLHJ0rrRA,4544
|
|
464
465
|
invenio_app_rdm/upgrade_scripts/migrate_1_0_records_to_2_0.py,sha256=mRDv_Ao5zMgA6X0aogMfvhspO1CIApKtDW_ziJp5fjI,3325
|
|
465
466
|
invenio_app_rdm/upgrade_scripts/migrate_2_0_to_3_0.py,sha256=jL_2I61Q9qt3fjBzYYueeT4EMQ9FlNPxYE4nzDQbLEY,2698
|
|
466
467
|
invenio_app_rdm/upgrade_scripts/migrate_3_0_to_4_0.py,sha256=BNjGufwLBvLHnu0gz5b_Are-FuxYjXlCtkLgNQckV3U,4768
|
|
@@ -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.0rc8.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
486
|
+
invenio_app_rdm-13.0.0rc8.dist-info/METADATA,sha256=ko-V8DgpIWF5rzORsfBm9WtZA0GXIjkpkblfGZjUOo0,18442
|
|
487
|
+
invenio_app_rdm-13.0.0rc8.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
488
|
+
invenio_app_rdm-13.0.0rc8.dist-info/entry_points.txt,sha256=rfzEeOEdtGy99NlpWzeW-32CoO5XrEpBvlZwLD2Th88,2158
|
|
489
|
+
invenio_app_rdm-13.0.0rc8.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
|
|
490
|
+
invenio_app_rdm-13.0.0rc8.dist-info/RECORD,,
|
|
File without changes
|
{invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc8.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{invenio_app_rdm-13.0.0rc6.dist-info → invenio_app_rdm-13.0.0rc8.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|