invenio-app-rdm 13.0.0b3.dev11__py2.py3-none-any.whl → 13.0.0b3.dev12__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 +8 -0
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +3 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +4 -1
- {invenio_app_rdm-13.0.0b3.dev11.dist-info → invenio_app_rdm-13.0.0b3.dev12.dist-info}/METADATA +6 -1
- {invenio_app_rdm-13.0.0b3.dev11.dist-info → invenio_app_rdm-13.0.0b3.dev12.dist-info}/RECORD +10 -10
- {invenio_app_rdm-13.0.0b3.dev11.dist-info → invenio_app_rdm-13.0.0b3.dev12.dist-info}/WHEEL +1 -1
- {invenio_app_rdm-13.0.0b3.dev11.dist-info → invenio_app_rdm-13.0.0b3.dev12.dist-info}/entry_points.txt +0 -0
- {invenio_app_rdm-13.0.0b3.dev11.dist-info → invenio_app_rdm-13.0.0b3.dev12.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-13.0.0b3.dev11.dist-info → invenio_app_rdm-13.0.0b3.dev12.dist-info}/top_level.txt +0 -0
invenio_app_rdm/__init__.py
CHANGED
invenio_app_rdm/config.py
CHANGED
|
@@ -481,6 +481,10 @@ CELERY_BEAT_SCHEDULE = {
|
|
|
481
481
|
"task": "invenio_rdm_records.requests.access.tasks.clean_expired_request_access_tokens",
|
|
482
482
|
"schedule": crontab(minute=4, hour=0),
|
|
483
483
|
},
|
|
484
|
+
"delete-job-logs": {
|
|
485
|
+
"task": "invenio_jobs.logging.tasks.delete_logs",
|
|
486
|
+
"schedule": crontab(minute=5, hour=0),
|
|
487
|
+
},
|
|
484
488
|
}
|
|
485
489
|
"""Scheduled tasks configuration (aka cronjobs)."""
|
|
486
490
|
|
|
@@ -1471,3 +1475,7 @@ ADMINISTRATION_THEME_BASE_TEMPLATE = "invenio_app_rdm/administration_page.html"
|
|
|
1471
1475
|
|
|
1472
1476
|
APP_RDM_SUBCOMMUNITIES_LABEL = "Subcommunities"
|
|
1473
1477
|
"""Label for the subcommunities in the community browse page."""
|
|
1478
|
+
|
|
1479
|
+
|
|
1480
|
+
RDM_DETAIL_SIDE_BAR_MANAGE_ATTRIBUTES_EXTENSION_TEMPLATE = None
|
|
1481
|
+
"""Side bar manage attributes extension template."""
|
|
@@ -201,13 +201,15 @@
|
|
|
201
201
|
<i class="cog icon"></i> {{ _('Manage record') }}
|
|
202
202
|
</button>
|
|
203
203
|
</div>
|
|
204
|
-
|
|
205
204
|
<div id="recordManagementMobile"
|
|
206
205
|
role="dialog"
|
|
207
206
|
class="ui flowing popup transition hidden"
|
|
208
207
|
data-record='{{ record | tojson }}'
|
|
209
208
|
data-permissions='{{ permissions | tojson }}'
|
|
210
209
|
data-is-draft="{{ is_draft | tojson }}"
|
|
210
|
+
{% if config.RDM_DETAIL_SIDE_BAR_MANAGE_ATTRIBUTES_EXTENSION_TEMPLATE %}
|
|
211
|
+
{% include config.RDM_DETAIL_SIDE_BAR_MANAGE_ATTRIBUTES_EXTENSION_TEMPLATE %}
|
|
212
|
+
{% endif %}
|
|
211
213
|
>
|
|
212
214
|
</div>
|
|
213
215
|
</section>
|
|
@@ -19,7 +19,10 @@ it under the terms of the MIT License; see LICENSE file for more details.
|
|
|
19
19
|
data-current-user-id="{{ current_user.id }}"
|
|
20
20
|
data-record-owner-id='{{ record_owner_id }}'
|
|
21
21
|
data-groups-enabled='{{ config.USERS_RESOURCES_GROUPS_ENABLED | tojson }}'
|
|
22
|
-
|
|
22
|
+
{% if config.RDM_DETAIL_SIDE_BAR_MANAGE_ATTRIBUTES_EXTENSION_TEMPLATE %}
|
|
23
|
+
{% include config.RDM_DETAIL_SIDE_BAR_MANAGE_ATTRIBUTES_EXTENSION_TEMPLATE %}
|
|
24
|
+
{% endif %}
|
|
25
|
+
>
|
|
23
26
|
<div class="ui placeholder">
|
|
24
27
|
<div class="header">
|
|
25
28
|
<div class="full line"></div>
|
{invenio_app_rdm-13.0.0b3.dev11.dist-info → invenio_app_rdm-13.0.0b3.dev12.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-app-rdm
|
|
3
|
-
Version: 13.0.0b3.
|
|
3
|
+
Version: 13.0.0b3.dev12
|
|
4
4
|
Summary: Invenio Research Data Management.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-app-rdm
|
|
6
6
|
Author: CERN
|
|
@@ -98,6 +98,11 @@ https://inveniordm.docs.cern.ch
|
|
|
98
98
|
Changes
|
|
99
99
|
=======
|
|
100
100
|
|
|
101
|
+
Version v13.0.0b3.dev12 (released 2025-05-16)
|
|
102
|
+
|
|
103
|
+
- jinja: add config attributes to record detail
|
|
104
|
+
- beat: add delete job logs recurrent task
|
|
105
|
+
|
|
101
106
|
Version v13.0.0b3.dev11 (released 2025-05-16)
|
|
102
107
|
|
|
103
108
|
- deposit-ui: add "files.entries" to files section
|
{invenio_app_rdm-13.0.0b3.dev11.dist-info → invenio_app_rdm-13.0.0b3.dev12.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=bdOmzSuY3WBs45li1HaEunSMootHvEgK4G2tTIP_GcQ,700
|
|
2
2
|
invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
|
|
3
|
-
invenio_app_rdm/config.py,sha256=
|
|
3
|
+
invenio_app_rdm/config.py,sha256=xfA5wbNl9L1U-LZXdMCHz509LlvyHinPXAa_YPxDxQM,50880
|
|
4
4
|
invenio_app_rdm/ext.py,sha256=PkZhATGJDgYqBJQh41NdvBZWR83mgI3Eej6rj10UVJE,5278
|
|
5
5
|
invenio_app_rdm/tasks.py,sha256=FyrIQXVuPjms-dNEnLrVmmdwrX_IykJ87gcSNgOR6O0,1373
|
|
6
6
|
invenio_app_rdm/views.py,sha256=SDr9NwZEWQcgT_3GFRYdDf6eUaK9DfnoafIkhUf9nSI,785
|
|
@@ -45,7 +45,7 @@ invenio_app_rdm/records_ui/utils.py,sha256=0ljPFPC1dAEY_ySZSIT_LRYka2bfsUyvFk_QQ
|
|
|
45
45
|
invenio_app_rdm/records_ui/previewer/__init__.py,sha256=T32i_ssGKONDpNB3gECpn20ubHvGYYVrNuIgCADioOM,267
|
|
46
46
|
invenio_app_rdm/records_ui/previewer/iiif_simple.py,sha256=lGxB3g0hNVJDWnq5jV_KrKPwC-LR1C51DMjas1-UpBM,1589
|
|
47
47
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html,sha256=x1JF-cRmkbSSeroh2SWgKHIwGc34FaPJiaYQlwiUkQw,2413
|
|
48
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html,sha256=
|
|
48
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html,sha256=0a6IafQL0I9Vo_TErRkn4voZAirWSSrNZSgMY_Lgegw,20349
|
|
49
49
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html,sha256=_FPflgqVZ556Xw349mHPSFb0FOhxYkIHfmUUTX53_LU,624
|
|
50
50
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html,sha256=Vtg02WXJU0CpCNci7CXWYN7EGwT-IrBTrg_4tfzIbCs,1160
|
|
51
51
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html,sha256=RningdsVBXsJ8qnQjzurf0Ty8R5Tq08eS31s53c3DNE,444
|
|
@@ -71,7 +71,7 @@ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details
|
|
|
71
71
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html,sha256=LvsA6JiosfwSSwUUg6--3xx1OZepvN7mxQdIWyl9caE,708
|
|
72
72
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html,sha256=ktAwgEUpB6X8uMk9-ThNEg0_CkyTqfBurTudXNd6mFo,3131
|
|
73
73
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html,sha256=i1EnmQrnmSAYfocoMYtneAB7JyUI309whyu3bZJTR6M,715
|
|
74
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html,sha256=
|
|
74
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html,sha256=RdX32DFR0Skau0sBmNCfY51u7gkBvJbokGCWHeic5Qc,1493
|
|
75
75
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html,sha256=3OptZ6iQYaQ3GjNw5O-h9FloISUzFE0nSNTmazjTQgQ,520
|
|
76
76
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html,sha256=N5VUwCygKG-zXvyu0YeFJb7A0eHIcKWuMAVm9Kbrb_M,658
|
|
77
77
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html,sha256=sPYG81XFcU1ND6roeYmN4SY419iyvQj9ozCv9Pctw5E,932
|
|
@@ -475,7 +475,7 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
|
|
|
475
475
|
invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
|
|
476
476
|
invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
|
|
477
477
|
invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
|
|
478
|
-
invenio_app_rdm-13.0.0b3.
|
|
478
|
+
invenio_app_rdm-13.0.0b3.dev12.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
479
479
|
tests/__init__.py,sha256=yKVf0yYRuxmXvyAtLjmfpHGVCsEkZOhs_FojAAM_w-8,244
|
|
480
480
|
tests/conftest.py,sha256=FQ_aSBxGo0gNfV64RJ117GcmgjVbZKwpxF9_3VNdNJY,7931
|
|
481
481
|
tests/test_tasks.py,sha256=YAf2mryFK6Vfzk2053XLBA2e92vbNCTWqJ6ThWhGOuQ,6645
|
|
@@ -509,8 +509,8 @@ tests/ui/test_filters.py,sha256=Q90wsJffjMVir7wNX8taGf2KZleLtPbXZXHLTkBpzLA,284
|
|
|
509
509
|
tests/ui/test_signposting_ui.py,sha256=KCSjQlMD2VKlwQCyZYDwYjtVNL35x3u-ZC4ceD5y21w,3847
|
|
510
510
|
tests/ui/test_static.py,sha256=vO3OQAOhrQESJifnQfM1pw7JYz3J874O8BAb7Cc_PPA,868
|
|
511
511
|
tests/ui/test_stats_ui.py,sha256=LHa_0hjvpYvliSk_jknWy-90CO82jVElUfK5Ua_ZmfA,3554
|
|
512
|
-
invenio_app_rdm-13.0.0b3.
|
|
513
|
-
invenio_app_rdm-13.0.0b3.
|
|
514
|
-
invenio_app_rdm-13.0.0b3.
|
|
515
|
-
invenio_app_rdm-13.0.0b3.
|
|
516
|
-
invenio_app_rdm-13.0.0b3.
|
|
512
|
+
invenio_app_rdm-13.0.0b3.dev12.dist-info/METADATA,sha256=XBn4FOEf_Yx9HY7cQKBksg_ruA1S8BxczuzSk7iGUL0,13802
|
|
513
|
+
invenio_app_rdm-13.0.0b3.dev12.dist-info/WHEEL,sha256=egKm5cKfE6OqlHwodY8Jjp4yqZDBXgsj09UsV5ojd_U,109
|
|
514
|
+
invenio_app_rdm-13.0.0b3.dev12.dist-info/entry_points.txt,sha256=rfzEeOEdtGy99NlpWzeW-32CoO5XrEpBvlZwLD2Th88,2158
|
|
515
|
+
invenio_app_rdm-13.0.0b3.dev12.dist-info/top_level.txt,sha256=NqTqrntInEAci7EXcNBvouXFMqwyjVQhEI0b7izYRBY,22
|
|
516
|
+
invenio_app_rdm-13.0.0b3.dev12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{invenio_app_rdm-13.0.0b3.dev11.dist-info → invenio_app_rdm-13.0.0b3.dev12.dist-info}/top_level.txt
RENAMED
|
File without changes
|