invenio-app-rdm 13.0.0rc3__py2.py3-none-any.whl → 13.0.0rc4__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/config.py +7 -0
- invenio_app_rdm/ext.py +2 -2
- invenio_app_rdm/records_ui/views/deposits.py +4 -4
- invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides +9 -0
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html +7 -6
- {invenio_app_rdm-13.0.0rc3.dist-info → invenio_app_rdm-13.0.0rc4.dist-info}/METADATA +12 -1
- {invenio_app_rdm-13.0.0rc3.dist-info → invenio_app_rdm-13.0.0rc4.dist-info}/RECORD +12 -12
- {invenio_app_rdm-13.0.0rc3.dist-info → invenio_app_rdm-13.0.0rc4.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-13.0.0rc3.dist-info → invenio_app_rdm-13.0.0rc4.dist-info}/entry_points.txt +0 -0
- {invenio_app_rdm-13.0.0rc3.dist-info → invenio_app_rdm-13.0.0rc4.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-13.0.0rc3.dist-info → invenio_app_rdm-13.0.0rc4.dist-info}/top_level.txt +0 -0
invenio_app_rdm/__init__.py
CHANGED
invenio_app_rdm/config.py
CHANGED
|
@@ -903,6 +903,13 @@ APP_RDM_RECORD_EXPORTERS = {
|
|
|
903
903
|
"content-type": "application/x-yaml",
|
|
904
904
|
"filename": "{id}.yaml",
|
|
905
905
|
},
|
|
906
|
+
"datapackage": {
|
|
907
|
+
"name": _("Data Package JSON"),
|
|
908
|
+
"serializer": "invenio_rdm_records.resources.serializers:DataPackageSerializer",
|
|
909
|
+
"params": {},
|
|
910
|
+
"content-type": "application/ld+json",
|
|
911
|
+
"filename": "{id}.json",
|
|
912
|
+
},
|
|
906
913
|
}
|
|
907
914
|
|
|
908
915
|
APP_RDM_RECORD_LANDING_PAGE_EXTERNAL_LINKS = []
|
invenio_app_rdm/ext.py
CHANGED
|
@@ -33,10 +33,10 @@ def finalize_app(app):
|
|
|
33
33
|
|
|
34
34
|
def init_config(app):
|
|
35
35
|
"""Initialize configuration."""
|
|
36
|
-
record_doi_required = (
|
|
36
|
+
record_doi_required = bool(
|
|
37
37
|
app.config["RDM_PERSISTENT_IDENTIFIERS"].get("doi", {}).get("required")
|
|
38
38
|
)
|
|
39
|
-
parent_doi_required = (
|
|
39
|
+
parent_doi_required = bool(
|
|
40
40
|
app.config["RDM_PARENT_PERSISTENT_IDENTIFIERS"].get("doi", {}).get("required")
|
|
41
41
|
)
|
|
42
42
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# Copyright (C) 2019-2025 CERN.
|
|
4
4
|
# Copyright (C) 2019-2021 Northwestern University.
|
|
5
5
|
# Copyright (C) 2021 TU Wien.
|
|
6
|
-
# Copyright (C) 2022-
|
|
6
|
+
# Copyright (C) 2022-2025 KTH Royal Institute of Technology
|
|
7
7
|
# Copyright (C) 2023-2024 Graz University of Technology.
|
|
8
8
|
#
|
|
9
9
|
# Invenio App RDM is free software; you can redistribute it and/or modify it
|
|
@@ -100,9 +100,9 @@ def get_form_pids_config(record=None):
|
|
|
100
100
|
|
|
101
101
|
pids_provider = {
|
|
102
102
|
"scheme": scheme,
|
|
103
|
-
"field_label": "Digital Object Identifier",
|
|
104
|
-
"pid_label": "DOI",
|
|
105
|
-
"pid_placeholder": "Copy/paste your existing DOI here...",
|
|
103
|
+
"field_label": _("Digital Object Identifier"),
|
|
104
|
+
"pid_label": _("DOI"),
|
|
105
|
+
"pid_placeholder": _("Copy/paste your existing DOI here..."),
|
|
106
106
|
"can_be_managed": can_be_managed,
|
|
107
107
|
"can_be_unmanaged": can_be_unmanaged,
|
|
108
108
|
"btn_label_discard_pid": _(
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
&.tab-menu-accordion {
|
|
4
4
|
transform: none;
|
|
5
5
|
}
|
|
6
|
+
|
|
7
|
+
transform: @activeIconTransform;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.ui.accordion .title .icon,
|
|
11
|
+
.ui.accordion .accordion .title .icon {
|
|
12
|
+
transition: @iconTransition;
|
|
13
|
+
width: auto;
|
|
14
|
+
height: auto;
|
|
6
15
|
}
|
|
7
16
|
|
|
8
17
|
/* use these classes to change accordion title when up/down */
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{#
|
|
2
2
|
Copyright (C) 2019-2022 CERN.
|
|
3
3
|
Copyright (C) 2014 KTH Royal Institute of Technology.
|
|
4
|
+
Copyright (C) 2025 Northwestern University.
|
|
4
5
|
|
|
5
6
|
Invenio App RDM is free software; you can redistribute it and/or modify it
|
|
6
7
|
under the terms of the MIT License; see LICENSE file for more details.
|
|
@@ -25,7 +26,7 @@
|
|
|
25
26
|
</div>
|
|
26
27
|
<div class="description">
|
|
27
28
|
{{ _("Configure the datamodel, resource types, permissions and much more to make it suit your needs! For more information on how to do it visit the") }}
|
|
28
|
-
<a href="https://inveniordm.docs.cern.ch/
|
|
29
|
+
<a href="https://inveniordm.docs.cern.ch/operate/customize/configuration/" target="_blank">
|
|
29
30
|
{{ _("configuration section in the docs") }}
|
|
30
31
|
</a>.
|
|
31
32
|
</div>
|
|
@@ -42,7 +43,7 @@
|
|
|
42
43
|
</div>
|
|
43
44
|
<div class="description">
|
|
44
45
|
{{ _("Customize the layout and adapt the styling to match your institution's. See how to do so") }}
|
|
45
|
-
<a href="https://inveniordm.docs.cern.ch/customize/" target="_blank">
|
|
46
|
+
<a href="https://inveniordm.docs.cern.ch/operate/customize/look-and-feel/" target="_blank">
|
|
46
47
|
{{ _("here") }}
|
|
47
48
|
</a>.
|
|
48
49
|
</div>
|
|
@@ -54,11 +55,11 @@
|
|
|
54
55
|
<div class="intro-step-list-image">3</div>
|
|
55
56
|
</div>
|
|
56
57
|
<div class="content">
|
|
57
|
-
<div class="header">{{ _("
|
|
58
|
+
<div class="header">{{ _("Use it!") }}</div>
|
|
58
59
|
<div class="description">
|
|
59
|
-
{{ _("
|
|
60
|
-
<a href="https://inveniordm.docs.cern.ch/
|
|
61
|
-
{{ _("
|
|
60
|
+
{{ _("Use and explore your InvenioRDM instance.") }}
|
|
61
|
+
<a href="https://inveniordm.docs.cern.ch/use/" target="_blank">
|
|
62
|
+
{{ _("Use") }}
|
|
62
63
|
</a>.
|
|
63
64
|
</div>
|
|
64
65
|
</div>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-app-rdm
|
|
3
|
-
Version: 13.0.
|
|
3
|
+
Version: 13.0.0rc4
|
|
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.0rc4 (released 2025-07-10)
|
|
105
|
+
|
|
106
|
+
- pid-config: cast to bool RDM_(PARENT)_PERSISTENT_IDENTIFIERS required check
|
|
107
|
+
- fix: default parent_doi_required to False
|
|
108
|
+
- links: update doc links to updated ones
|
|
109
|
+
- i18n: localize DOI labels
|
|
110
|
+
- css: remove .invenio-accordion-field qualifier
|
|
111
|
+
- css: use SemanticUI variables and fix class names
|
|
112
|
+
- ui: ensure accordion caret icons rotate when opened/closed
|
|
113
|
+
- config: add Data Package export format
|
|
114
|
+
|
|
104
115
|
Version v13.0.0rc3 (released 2025-07-02)
|
|
105
116
|
|
|
106
117
|
- deposit-ui: uppy uploader ui feature
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=LRnftZvJ-SG201XFooEF9VJMbzxZM5KFuheRVMC4200,700
|
|
2
2
|
invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
|
|
3
|
-
invenio_app_rdm/config.py,sha256=
|
|
4
|
-
invenio_app_rdm/ext.py,sha256=
|
|
3
|
+
invenio_app_rdm/config.py,sha256=MQYHg0C5p5xAphuGOh3lqxp7k9Dboi27uxn7WHkv2JU,52040
|
|
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
|
|
7
7
|
invenio_app_rdm/administration/__init__.py,sha256=8r9LeoE9fNHZSVS5QsCfVhRU7MAiEOWJk9MA3Y--4F8,251
|
|
@@ -86,7 +86,7 @@ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
|
86
86
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html,sha256=eA8-n81XUezkwPXvcG5v2sgLPQNTgr7hB36-_Gr-tVI,758
|
|
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
|
-
invenio_app_rdm/records_ui/views/deposits.py,sha256=
|
|
89
|
+
invenio_app_rdm/records_ui/views/deposits.py,sha256=2yUaZIeaGzogztpg0cXInK_twU2n6oP6J60ZA2cz2nA,22394
|
|
90
90
|
invenio_app_rdm/records_ui/views/filters.py,sha256=Rm55fXJv97cqq8B_6KCe-3PxxHUH4VRu-jd9fTea6r4,6994
|
|
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
|
|
@@ -266,7 +266,7 @@ invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/rese
|
|
|
266
266
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/reset.variables,sha256=Luyh-V1w5wDFv2j77bYmTxfn22Cp7h1vLjRsqhf207Y,139
|
|
267
267
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.overrides,sha256=Okd5gBx3clt63UUmvSOb1PlHwDEB7-Th9DUJ4LNAXmw,9010
|
|
268
268
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/globals/site.variables,sha256=IQZqcNQ1AwmrpiPwkWZ6Zk67kyCMf8DJBqNgC1porDY,3043
|
|
269
|
-
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides,sha256=
|
|
269
|
+
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.overrides,sha256=DSPOm3I4dFfRrO73IYCBkj3A_T_wKW9J-Y1BlKb2Vg4,3508
|
|
270
270
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/accordion.variables,sha256=JFUnfiL_Xve48EwxRjYq0T-QJA8jboC606L08IjrBXg,322
|
|
271
271
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.overrides,sha256=VV-V1ez1AT-2ULq8kh9akUZncGOx6ESGnEUqDlvRihY,137
|
|
272
272
|
invenio_app_rdm/theme/assets/semantic-ui/less/invenio_app_rdm/theme/modules/checkbox.variables,sha256=fknu9A-l5L6-tH7KOYKK6cHhxx8cKMlig7EGYI7zIU0,137
|
|
@@ -383,7 +383,7 @@ invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html,sha25
|
|
|
383
383
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html,sha256=HiQEP1os90mVj_MlYTEHyTGP5VfkaLQrfLZ7vR1vv-8,5767
|
|
384
384
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html,sha256=SQqgYKN0GrzieSydu0fd0eveup_R_J4zzG8bR8QlUGw,1820
|
|
385
385
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html,sha256=eZMJSypWlQ2CNbiyS8lSc4s6kHX31I-wuAYLaPAmxGk,5803
|
|
386
|
-
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html,sha256=
|
|
386
|
+
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html,sha256=3jdt5-AAZyQtiAOoPpdagKK56daYhk35oTG6YkiyzTU,2973
|
|
387
387
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/javascript.html,sha256=20O9okaOd_bqpBbuq9K0zqY0UUNXaFVKIslgPArs67U,364
|
|
388
388
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page.html,sha256=zwIZmRWIJpz9UQpEqM3oTaSzlmek6tdP8VDR1Mugka0,951
|
|
389
389
|
invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/page_cover.html,sha256=D-NNfCX38wRjHOq1kzPPncKKUd0b9U1al-NMy48dKvU,357
|
|
@@ -487,7 +487,7 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
|
|
|
487
487
|
invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
|
|
488
488
|
invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
|
|
489
489
|
invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
|
|
490
|
-
invenio_app_rdm-13.0.
|
|
490
|
+
invenio_app_rdm-13.0.0rc4.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
491
491
|
tests/__init__.py,sha256=yKVf0yYRuxmXvyAtLjmfpHGVCsEkZOhs_FojAAM_w-8,244
|
|
492
492
|
tests/conftest.py,sha256=kxOf2CiULBuE9m-ncNv4AtofUVx7iSnvVljlsdI_iCE,11507
|
|
493
493
|
tests/test_tasks.py,sha256=YAf2mryFK6Vfzk2053XLBA2e92vbNCTWqJ6ThWhGOuQ,6645
|
|
@@ -522,8 +522,8 @@ tests/ui/test_robotstxt.py,sha256=Gn0bVPJTDRQH6DO5GGZyD6iMel1UxWRHP5MnGQZ0j18,11
|
|
|
522
522
|
tests/ui/test_signposting_ui.py,sha256=KCSjQlMD2VKlwQCyZYDwYjtVNL35x3u-ZC4ceD5y21w,3847
|
|
523
523
|
tests/ui/test_sitemaps.py,sha256=hPeGbo9v5Q55swr-ZyudAVYm7aJ6lCKV51Vtupk450Q,3180
|
|
524
524
|
tests/ui/test_stats_ui.py,sha256=LHa_0hjvpYvliSk_jknWy-90CO82jVElUfK5Ua_ZmfA,3554
|
|
525
|
-
invenio_app_rdm-13.0.
|
|
526
|
-
invenio_app_rdm-13.0.
|
|
527
|
-
invenio_app_rdm-13.0.
|
|
528
|
-
invenio_app_rdm-13.0.
|
|
529
|
-
invenio_app_rdm-13.0.
|
|
525
|
+
invenio_app_rdm-13.0.0rc4.dist-info/METADATA,sha256=yxeUyyX6NLAL02RaTCUvQQkJQVv3l1VCQn-zsQlgS_4,17548
|
|
526
|
+
invenio_app_rdm-13.0.0rc4.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
527
|
+
invenio_app_rdm-13.0.0rc4.dist-info/entry_points.txt,sha256=rfzEeOEdtGy99NlpWzeW-32CoO5XrEpBvlZwLD2Th88,2158
|
|
528
|
+
invenio_app_rdm-13.0.0rc4.dist-info/top_level.txt,sha256=NqTqrntInEAci7EXcNBvouXFMqwyjVQhEI0b7izYRBY,22
|
|
529
|
+
invenio_app_rdm-13.0.0rc4.dist-info/RECORD,,
|
|
File without changes
|
{invenio_app_rdm-13.0.0rc3.dist-info → invenio_app_rdm-13.0.0rc4.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{invenio_app_rdm-13.0.0rc3.dist-info → invenio_app_rdm-13.0.0rc4.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|