invenio-app-rdm 13.0.0b2.dev0__py2.py3-none-any.whl → 13.0.0b2.dev1__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.
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  #
3
- # Copyright (C) 2019-2024 CERN.
3
+ # Copyright (C) 2019-2025 CERN.
4
4
  # Copyright (C) 2019-2022 Northwestern University.
5
5
  # Copyright (C) 2024 Graz University of Technology.
6
6
  #
@@ -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__ = "13.0.0b2.dev0"
20
+ __version__ = "13.0.0b2.dev1"
21
21
 
22
22
  __all__ = ("__version__",)
invenio_app_rdm/config.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  #
3
- # Copyright (C) 2019-2024 CERN.
3
+ # Copyright (C) 2019-2025 CERN.
4
4
  # Copyright (C) 2019-2020 Northwestern University.
5
5
  # Copyright (C) 2021-2024 Graz University of Technology.
6
6
  # Copyright (C) 2022-2024 KTH Royal Institute of Technology.
@@ -1,5 +1,5 @@
1
1
  {#
2
- Copyright (C) 2020 CERN.
2
+ Copyright (C) 2020-2025 CERN.
3
3
  Copyright (C) 2020 Northwestern University.
4
4
  Copyright (C) 2021 New York University.
5
5
 
@@ -15,7 +15,7 @@
15
15
  <h2 id="description-heading" class="sr-only">{{ _('Description') }}</h2>
16
16
  {# description data is being sanitized by marshmallow in the backend #}
17
17
  <div style="word-wrap: break-word;">
18
- <p>{{ description | safe }}</p>
18
+ {{ description | safe }}
19
19
  </div>
20
20
  </section>
21
21
  {% endif %}
@@ -1,5 +1,5 @@
1
1
  {#
2
- Copyright (C) 2020-2024 CERN.
2
+ Copyright (C) 2020-2025 CERN.
3
3
  Copyright (C) 2024 Northwestern University.
4
4
 
5
5
  Invenio RDM Records is free software; you can redistribute it and/or modify
@@ -96,40 +96,37 @@
96
96
 
97
97
 
98
98
  {% macro _show_funding_item(item, index) %}
99
+ <dt class="ui tiny header">{{ item.funder.name if item.funder }}</dt>
99
100
  {%- if item.award -%}
100
- {%- if item.award.title_l10n -%}
101
- <dt class="ui tiny header">
102
- <span class="mr-5">
103
- {% if item.award.acronym %}
104
- {{ item.award.acronym }} –
105
- {% endif %}
106
-
107
- {{ item.award.title_l10n }}
108
- </span>
101
+ <dt class="ui tiny header">
102
+ <span class="mr-0 text-muted">
103
+ {% if item.award.acronym %}
104
+ {{ item.award.acronym }} –
105
+ {% endif %}
106
+
107
+ {%- if item.award.title_l10n -%}
108
+ {{ item.award.title_l10n }}
109
+ {%- endif -%}
110
+ </span>
109
111
 
110
- {%- if item.award.number -%}
111
- <span class="ui mini basic label ml-0 mr-5" id="number-label-{{ index }}">
112
- {{ item.award.number }}
113
- </span>
114
- {%- endif -%}
112
+ {%- if item.award.number -%}
113
+ <span class="ui mini basic label {% if not item.award.title_l10n %}ml-0{% endif %}" id="number-label-{{ index }}">
114
+ {{ item.award.number }}
115
+ </span>
116
+ {%- endif -%}
115
117
 
116
- {%- if item.award.identifiers -%}
117
- {% for identifier in item.award.identifiers if 'url' == identifier.scheme %}
118
- <a href="{{ identifier.identifier }}" target="_blank"
119
- rel="noopener noreferrer" aria-label="{{ _('Open external link') }}">
120
- <i class="external alternate icon"></i>
121
- </a>
122
- {%- endfor -%}
123
- {%- endif -%}
124
- </dt>
118
+ {%- if item.award.identifiers -%}
119
+ {% for identifier in item.award.identifiers if 'url' == identifier.scheme %}
120
+ <a href="{{ identifier.identifier }}" target="_blank"
121
+ rel="noopener noreferrer" aria-label="{{ _('Open external link') }}">
122
+ <i class="external alternate icon"></i>
123
+ </a>
124
+ {%- endfor -%}
125
125
  {%- endif -%}
126
- <dd class="text-muted">{{ item.funder.name if item.funder }}</dd>
127
- {%- else -%}
128
- <dt class="ui tiny header">{{ item.funder.name if item.funder }}</dt>
129
- {%- endif -%}
126
+ </dt>
127
+ {%- endif -%}
130
128
  {% endmacro %}
131
129
 
132
-
133
130
  {% macro show_references(references) %}
134
131
  <ul class="ui bulleted list details-list">
135
132
  {% for reference in references %}
@@ -403,3 +403,24 @@ def secret_link_or_login_required():
403
403
  return view
404
404
 
405
405
  return decorator
406
+
407
+
408
+ def no_cache_response(f):
409
+ """Add appropriate response headers to force no caching.
410
+
411
+ This decorator is used to prevent caching of the response in the browser. This is needed
412
+ in the deposit form as we initialize the form with the record metadata included in the html page
413
+ and we don't want the browser to cache this page so that the user always gets the latest version of the record.
414
+ """
415
+
416
+ @wraps(f)
417
+ def view(*args, **kwargs):
418
+ response = make_response(f(*args, **kwargs))
419
+
420
+ response.cache_control.no_cache = True
421
+ response.cache_control.no_store = True
422
+ response.cache_control.must_revalidate = True
423
+
424
+ return response
425
+
426
+ return view
@@ -23,6 +23,7 @@ from invenio_i18n.ext import current_i18n
23
23
  from invenio_rdm_records.proxies import current_rdm_records
24
24
  from invenio_rdm_records.records.api import get_files_quota
25
25
  from invenio_rdm_records.resources.serializers import UIJSONSerializer
26
+ from invenio_rdm_records.services.components.pids import _get_optional_doi_transitions
26
27
  from invenio_rdm_records.services.schemas import RDMRecordSchema
27
28
  from invenio_rdm_records.services.schemas.utils import dump_empty
28
29
  from invenio_records_resources.services.errors import PermissionDeniedError
@@ -34,6 +35,7 @@ from sqlalchemy.orm import load_only
34
35
 
35
36
  from ..utils import set_default_value
36
37
  from .decorators import (
38
+ no_cache_response,
37
39
  pass_draft,
38
40
  pass_draft_community,
39
41
  pass_draft_files,
@@ -45,7 +47,7 @@ from .filters import get_scheme_label
45
47
  #
46
48
  # Helpers
47
49
  #
48
- def get_form_pids_config():
50
+ def get_form_pids_config(record=None):
49
51
  """Prepare configuration for the pids field.
50
52
 
51
53
  Currently supporting only doi.
@@ -55,17 +57,45 @@ def get_form_pids_config():
55
57
  # FIXME: User provider.is_managed() requires tiny fix in config
56
58
  can_be_managed = True
57
59
  can_be_unmanaged = True
60
+ # We initialize the optional doi to empty to indicate that there is no restriction on the transitions
61
+ # This is valid for new uploads and when the DOI is required in an instance
62
+ optional_doi_transitions = []
58
63
  for scheme in service.config.pids_providers.keys():
59
64
  if not scheme == "doi":
60
65
  continue
66
+
61
67
  record_pid_config = current_app.config["RDM_PERSISTENT_IDENTIFIERS"]
62
68
  scheme_label = record_pid_config.get(scheme, {}).get("label", scheme)
63
69
  is_doi_required = record_pid_config.get(scheme, {}).get("required")
64
70
  default_selected = (
65
71
  record_pid_config.get(scheme, {}).get("ui", {}).get("default_selected")
66
72
  )
73
+ if record is not None and not is_doi_required:
74
+ sitename = current_app.config.get("THEME_SITENAME", "this repository")
75
+ previous_published_record = (
76
+ service.record_cls.get_latest_published_by_parent(record.parent)
77
+ )
78
+ optional_doi_transitions = _get_optional_doi_transitions(
79
+ previous_published_record
80
+ )
81
+ if optional_doi_transitions:
82
+ optional_doi_transitions["message"] = optional_doi_transitions.get(
83
+ "message"
84
+ ).format(sitename=sitename)
85
+ if set(optional_doi_transitions.get("allowed_providers", [])) - set(
86
+ ["external", "not_needed"]
87
+ ):
88
+ # In case we have locally managed provider as an allowed one, we need to
89
+ # select it by default. That is relevant for the case when the
90
+ # user creates a new version of the record and the previous version
91
+ # had a datacite DOI.
92
+ default_selected = "no"
93
+
94
+ # if the DOI is required but the default selected is not_needed then we set it to yes
95
+ # to force the user to mint a DOI
67
96
  if is_doi_required and default_selected == "not_needed":
68
97
  default_selected = "yes"
98
+
69
99
  pids_provider = {
70
100
  "scheme": scheme,
71
101
  "field_label": "Digital Object Identifier",
@@ -89,6 +119,7 @@ def get_form_pids_config():
89
119
  "unambiguously cited. Example: 10.1234/foo.bar"
90
120
  ).format(scheme_label=scheme_label),
91
121
  "default_selected": default_selected,
122
+ "optional_doi_transitions": optional_doi_transitions,
92
123
  }
93
124
  pids_providers.append(pids_provider)
94
125
 
@@ -332,6 +363,8 @@ def get_form_config(**kwargs):
332
363
  if record_quota:
333
364
  quota["maxStorage"] = record_quota["quota_size"]
334
365
 
366
+ record = kwargs.pop("record", None)
367
+
335
368
  return dict(
336
369
  vocabularies=VocabulariesOptions().dump(),
337
370
  autocomplete_names=conf.get(
@@ -339,7 +372,7 @@ def get_form_config(**kwargs):
339
372
  ),
340
373
  current_locale=str(current_i18n.locale),
341
374
  default_locale=conf.get("BABEL_DEFAULT_LOCALE", "en"),
342
- pids=get_form_pids_config(),
375
+ pids=get_form_pids_config(record=record),
343
376
  quota=quota,
344
377
  decimal_size_display=conf.get("APP_RDM_DISPLAY_DECIMAL_FILE_SIZES", True),
345
378
  links=dict(
@@ -390,6 +423,7 @@ def new_record():
390
423
  # Views
391
424
  #
392
425
  @login_required
426
+ @no_cache_response
393
427
  @pass_draft_community
394
428
  def deposit_create(community=None):
395
429
  """Create a new deposit."""
@@ -441,6 +475,7 @@ def deposit_create(community=None):
441
475
  @secret_link_or_login_required()
442
476
  @pass_draft(expand=True)
443
477
  @pass_draft_files
478
+ @no_cache_response
444
479
  def deposit_edit(pid_value, draft=None, draft_files=None, files_locked=True):
445
480
  """Edit an existing deposit."""
446
481
  # don't show draft's deposit form if the user can't edit it
@@ -490,6 +525,7 @@ def deposit_edit(pid_value, draft=None, draft_files=None, files_locked=True):
490
525
  # hide react community component
491
526
  hide_community_selection=community_use_jinja_header,
492
527
  is_doi_required=is_doi_required,
528
+ record=draft._record,
493
529
  )
494
530
 
495
531
  if is_doi_required and not record.get("pids", {}).get("doi"):
@@ -178,7 +178,7 @@ def record_detail(
178
178
  )
179
179
  except ValidationError:
180
180
  abort(404)
181
- # inject parent doi format for new drafts so we can show in preview
181
+ # inject parent doi format for new drafts so we can show in preview if parent doi is required
182
182
  if current_app.config["DATACITE_ENABLED"]:
183
183
  service = current_rdm_records.records_service
184
184
  datacite_provider = [
@@ -187,11 +187,27 @@ def record_detail(
187
187
  if p == "doi" and "datacite" in v
188
188
  ]
189
189
  if datacite_provider:
190
- datacite_provider = datacite_provider[0]
191
- parent_doi = datacite_provider.client.generate_doi(
192
- record._record.parent
190
+ should_mint_parent_doi = True
191
+ is_doi_required = (
192
+ current_app.config.get("RDM_PARENT_PERSISTENT_IDENTIFIERS", {})
193
+ .get("doi", {})
194
+ .get("required")
193
195
  )
194
- record_ui["ui"]["new_draft_parent_doi"] = parent_doi
196
+ if not is_doi_required:
197
+ # check if the draft has a reserved doi and mint parent doi only in that case
198
+ record_doi = record._record.pids.get("doi", {})
199
+ is_doi_reserved = record_doi.get(
200
+ "provider", ""
201
+ ) == "datacite" and record_doi.get("identifier")
202
+ if not is_doi_reserved:
203
+ should_mint_parent_doi = False
204
+
205
+ if should_mint_parent_doi:
206
+ datacite_provider = datacite_provider[0]
207
+ parent_doi = datacite_provider.client.generate_doi(
208
+ record._record.parent
209
+ )
210
+ record_ui["ui"]["new_draft_parent_doi"] = parent_doi
195
211
 
196
212
  # emit a record view stats event
197
213
  emitter = current_stats.get_event_emitter("record-view")
@@ -211,6 +211,7 @@ export class RDMDepositForm extends Component {
211
211
  btnLabelGetPID={pid.btn_label_get_pid}
212
212
  canBeManaged={pid.can_be_managed}
213
213
  canBeUnmanaged={pid.can_be_unmanaged}
214
+ optionalDOItransitions={pid.optional_doi_transitions}
214
215
  fieldPath={`pids.${pid.scheme}`}
215
216
  fieldLabel={pid.field_label}
216
217
  isEditingPublishedRecord={
@@ -1,6 +1,6 @@
1
1
  {#
2
2
  -*- coding: utf-8 -*-
3
- Copyright (C) 2019-2020 CERN.
3
+ Copyright (C) 2019-2025 CERN.
4
4
  Copyright (C) 2019-2020 Northwestern University.
5
5
  Copyright (C) 2021 New York University.
6
6
 
@@ -126,6 +126,7 @@
126
126
  {%- endblock navbar_right %}
127
127
  </nav>
128
128
  </nav>
129
+ </div>
129
130
  {%- endblock navbar %}
130
131
  </div>
131
132
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: invenio-app-rdm
3
- Version: 13.0.0b2.dev0
3
+ Version: 13.0.0b2.dev1
4
4
  Summary: Invenio Research Data Management.
5
5
  Home-page: https://github.com/inveniosoftware/invenio-app-rdm
6
6
  Author: CERN
@@ -40,8 +40,8 @@ Requires-Dist: invenio-search-ui<5.0.0,>=4.0.0
40
40
  Requires-Dist: invenio-files-rest<4.0.0,>=3.0.0
41
41
  Requires-Dist: invenio-previewer<4.0.0,>=3.0.0
42
42
  Requires-Dist: invenio-records-files<2.0.0,>=1.2.1
43
- Requires-Dist: invenio-communities<19.0.0,>=18.0.0.dev1
44
- Requires-Dist: invenio-rdm-records<18.0.0,>=17.0.0.dev1
43
+ Requires-Dist: invenio-communities<19.0.0,>=18.0.0.dev2
44
+ Requires-Dist: invenio-rdm-records<18.0.0,>=17.0.0.dev2
45
45
  Requires-Dist: CairoSVG<3.0.0,>=2.5.2
46
46
  Requires-Dist: invenio-banners<5.0.0,>=4.0.0
47
47
  Requires-Dist: invenio-pages<6.0.0,>=5.0.0
@@ -96,12 +96,37 @@ https://inveniordm.docs.cern.ch
96
96
  Changes
97
97
  =======
98
98
 
99
- Version 13.0.0b2.dev0 (released 2024-12-16)
99
+ Version v13.0.0b2.dev1 (released 2025-01-23)
100
+
101
+ Version v13.0.0b2.dev0 (released 2024-12-16)
100
102
 
101
103
  - setup: remove flask pin
102
104
  - setup: change to reusable workflows
103
105
  - setup: bump major dependencies
104
106
 
107
+ Version v13.0.0b1.dev29 (released 2025-01-23)
108
+
109
+ - preview: do not mint parent doi if doi is not reserved and doi is optional
110
+
111
+ Version v13.0.0b1.dev28 (released 2025-01-21)
112
+
113
+ - pids: pass optional DOI transitions in the upload form
114
+ - deposit: force no caching in the response headers
115
+
116
+ Version v13.0.0b1.dev27 (released 2025-01-16)
117
+
118
+ - Revert "config: add record and membership comment notifications"
119
+ * This is actually a breaking change since it introduces a new
120
+ set of notification templates that will potentialy not be
121
+ styled if overridden in an instance's overlay.
122
+
123
+ Version v13.0.0b1.dev26 (released 2025-01-16)
124
+
125
+ - config: add record and membership comment notifications
126
+ - records/macros/detail.html: Allow funding entry with award number only (#2912)
127
+ - records-ui: remove unnecessary p tag in record details
128
+ - ui: close unclosed div in header navbar
129
+
105
130
  Version v13.0.0b1.dev24 (released 2024-12-10)
106
131
 
107
132
  - fix: meta: add missing HighWire authors
@@ -1,6 +1,6 @@
1
- invenio_app_rdm/__init__.py,sha256=XGKeb77y4TOdS5IluPGqpHJLKgtTiFjG5VQhVTgcDdo,699
1
+ invenio_app_rdm/__init__.py,sha256=2I9EH-QSGqp5d52brpwumTCuAJPcKk-Xc0iXRvrBs4o,699
2
2
  invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
3
- invenio_app_rdm/config.py,sha256=DtcOCtpKsMZPOwnSPswZ4NW8Uc33H3o9VkxCMsr7GXM,50265
3
+ invenio_app_rdm/config.py,sha256=huHWP7FzjvRb7r_VOL33A9LQWKdmkUVJyEJaibKp3d4,50265
4
4
  invenio_app_rdm/ext.py,sha256=PkZhATGJDgYqBJQh41NdvBZWR83mgI3Eej6rj10UVJE,5278
5
5
  invenio_app_rdm/tasks.py,sha256=XAbl8KeAWaJ5lC_4OUWUPstvCT7lYs5tRR1zSVBDfRk,1275
6
6
  invenio_app_rdm/urls.py,sha256=VRbpuN3kQ2fcmKvEIGQ5O1EnaSsEE2kyhLwUmONwZO8,2192
@@ -53,7 +53,7 @@ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details
53
53
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html,sha256=zQO0X5Fdk9MG_ODPoe2w4RMGUp35eF7KD_6u4rf332A,561
54
54
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html,sha256=svvc6qCwyMQIRnFFcIzaRTkwcnmyTOz6THRgBnl-h_o,336
55
55
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html,sha256=vOC6Tnlkn3wrYUfLQDVWRTRFmy3jgv1E9vIMwRV13XI,2090
56
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html,sha256=JEkhz_H14fGHMuYs3uyIEu_3hJqTSEPhLCtHtyKFY6E,914
56
+ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html,sha256=wqLb_Z6cJ026KEDedJMSsQhQnKWpe7TnMuMVwFAMDX0,912
57
57
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html,sha256=jdXr5U6YS8UllEuJjjSzusJJ1XkdE75V2q97h43D0NA,12095
58
58
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html,sha256=bveXC9JvZVjPKQrtZ8FFUV-fIHEN4nB1VSyomR_obxA,473
59
59
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html,sha256=V_-DVNjwPDPTnHSprcdbO8MZWiwWyDWjzQofU26b4bk,1616
@@ -73,17 +73,17 @@ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details
73
73
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html,sha256=N5VUwCygKG-zXvyu0YeFJb7A0eHIcKWuMAVm9Kbrb_M,658
74
74
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html,sha256=sPYG81XFcU1ND6roeYmN4SY419iyvQj9ozCv9Pctw5E,932
75
75
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html,sha256=TY4SwihdciZOp4G0SLd8FC54jRbonmx0TwxbsygageY,4173
76
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html,sha256=8jx7zA7g8waCW3-9tmRH7_4JiFttjv2kr4i2w0BDYlw,9879
76
+ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html,sha256=UZ1TUcWe6keYSIOOb7CdVAUdvvE5RV0psQEvBHDqqkI,9767
77
77
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html,sha256=NZUtJSCwQScJsmz7vxglslEVqPwG7Ldul_wl7yce0fg,1489
78
78
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html,sha256=Xsq_HiM_cTGKgmoE1HAXje8iYe3d0wIJoesk22Xn7vU,8761
79
79
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html,sha256=27-KyPqb05pu-yRXHvxCgZWRSi5bFP6xf7XBn91sbeA,1741
80
80
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html,sha256=5SVzfIS15Aro2Itd2BiaLbMXm0cvvwk6ZCdYjuSwhBw,625
81
81
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html,sha256=JpE4e6RpbSR2pQD1rOsfvzD2ur584aRfBWUUap2IMBA,688
82
82
  invenio_app_rdm/records_ui/views/__init__.py,sha256=4NxQNADuvMsblEsGd3zkKXSNR5_4eLMcFEFYvc6NxVc,5718
83
- invenio_app_rdm/records_ui/views/decorators.py,sha256=eEBxGr0QPDNTXMumqymkoV_MLG0B3UhHgjOvR4e5eok,12673
84
- invenio_app_rdm/records_ui/views/deposits.py,sha256=4qEffCx0CL-qcWZ5nxV487IbSMDUwD05ILe4NXEozQs,19568
83
+ invenio_app_rdm/records_ui/views/decorators.py,sha256=_TYUGedQAHvEugusIG8xk8xPWHxfw9v4HZR_0dL-tH0,13371
84
+ invenio_app_rdm/records_ui/views/deposits.py,sha256=ZQSlYugqZX1jnS0GFNtJQVq2_KyDS_ECzp1S26qDGAs,21337
85
85
  invenio_app_rdm/records_ui/views/filters.py,sha256=Rm55fXJv97cqq8B_6KCe-3PxxHUH4VRu-jd9fTea6r4,6994
86
- invenio_app_rdm/records_ui/views/records.py,sha256=60pWASXnJS6t6yisq3QqnsNGCOaMDFPgCgErxXPUKuE,15455
86
+ invenio_app_rdm/records_ui/views/records.py,sha256=2TDbBW2GdX7HuO0KQu116GqGhXIXLqcGqvrFP-Pyn0w,16269
87
87
  invenio_app_rdm/redirector/__init__.py,sha256=AYCTGmfbmkHW3YJXMqXlWBXcBrUsta-QmL9ULX2bjwA,243
88
88
  invenio_app_rdm/redirector/resource.py,sha256=XuH6ZK0HVE5LdXoorlm8aI3deizvnZ5gFa9d1ihYosk,3312
89
89
  invenio_app_rdm/redirector/views.py,sha256=CTJ3EGEFKfc0lFwNb9pwH7MbMLiqaWnF8LA3xGIwahc,563
@@ -156,7 +156,7 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButto
156
156
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js,sha256=bSmhuwSWk4CW80mqa4ZZbjfa-_NsiJ1IxQ9veDy6sAM,2751
157
157
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVerifiedCommunity.js,sha256=m3rT8jJ3440ZX22zZog8bHatWltYXwvmw_tu6tJUM9k,1506
158
158
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js,sha256=H_3OJBlknDGsk4zJXUv1Ow9ZYpcL_yQZHsX4WM4yuCY,6344
159
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js,sha256=UlfRF935tRVAf2rfcEidBv_BOrnCz2M8tOdYRz9_Eb4,29057
159
+ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js,sha256=7Sotq28SBmJE6j59Z7K786LRQxld-dVSmebaFKwhaok,29139
160
160
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js,sha256=ICMV4Ixe-nTe6q7COZ0oyAQf2nVp2cez_-iUZobwUD0,1998
161
161
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js,sha256=gA0BaUFpaJr9nkmHSWoxuwKDfSD3JUTPcadj2TKHN24,1587
162
162
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js,sha256=PkLpiCl7sNSlQoCo7xxZ_H6QvWqK_TydoseIiKvtuMw,4176
@@ -381,7 +381,7 @@ invenio_app_rdm/theme/static/images/ror-icon.svg,sha256=aIth5_-aYB7yx1nswjM6XgHA
381
381
  invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/default_static_page.html,sha256=Un6KtaKmNlM-R7Qu1eeh0FFckgym3mq1zHV-AOew5pY,1178
382
382
  invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/footer.html,sha256=rZ5XGaoYNIOCii6W7ClPv6sgjeU5HPLR6TeEqTWzDZ0,2975
383
383
  invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/frontpage.html,sha256=l-u25QOE2OkkPt-f7Cce469u4W2TnBdB_HVXpSZx3DE,1605
384
- invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html,sha256=6YZgEAb39g6dl1HCkD2tkkeSzV1OxenhY9kOFo0eEos,5674
384
+ invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html,sha256=wACxdZA3i_iudBzYj3QfMSFMdTVGOBjBFtd04QCIK4c,5687
385
385
  invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_frontpage.html,sha256=SQqgYKN0GrzieSydu0fd0eveup_R_J4zzG8bR8QlUGw,1820
386
386
  invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header_login.html,sha256=eZMJSypWlQ2CNbiyS8lSc4s6kHX31I-wuAYLaPAmxGk,5803
387
387
  invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/intro_section.html,sha256=Z3do1vmM06-pj0uJhCtBDjwvfZuc6XpYGFsqFtdPpf8,3056
@@ -519,9 +519,9 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
519
519
  invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
520
520
  invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
521
521
  invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
522
- invenio_app_rdm-13.0.0b2.dev0.dist-info/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
523
- invenio_app_rdm-13.0.0b2.dev0.dist-info/METADATA,sha256=Vr0worPQ5PnRnNDwQTmK4HbfB_xnv_6mRPjhgrP3y6o,8811
524
- invenio_app_rdm-13.0.0b2.dev0.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
525
- invenio_app_rdm-13.0.0b2.dev0.dist-info/entry_points.txt,sha256=r1vTqYNABeWqRMWitzyR9FnBsAy-KYZKZCp95IziyLY,2070
526
- invenio_app_rdm-13.0.0b2.dev0.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
527
- invenio_app_rdm-13.0.0b2.dev0.dist-info/RECORD,,
522
+ invenio_app_rdm-13.0.0b2.dev1.dist-info/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
523
+ invenio_app_rdm-13.0.0b2.dev1.dist-info/METADATA,sha256=6b7qhVtUx5qhc5k6NlIADxKZnNsX7f8U1mnskIlHkDg,9725
524
+ invenio_app_rdm-13.0.0b2.dev1.dist-info/WHEEL,sha256=9Hm2OB-j1QcCUq9Jguht7ayGIIZBRTdOXD1qg9cCgPM,109
525
+ invenio_app_rdm-13.0.0b2.dev1.dist-info/entry_points.txt,sha256=r1vTqYNABeWqRMWitzyR9FnBsAy-KYZKZCp95IziyLY,2070
526
+ invenio_app_rdm-13.0.0b2.dev1.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
527
+ invenio_app_rdm-13.0.0b2.dev1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any