invenio-app-rdm 13.0.0b1.dev28__py2.py3-none-any.whl → 13.0.0b2.dev0__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-2025 CERN.
3
+ # Copyright (C) 2019-2024 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.0b1.dev28"
20
+ __version__ = "13.0.0b2.dev0"
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-2025 CERN.
3
+ # Copyright (C) 2019-2024 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-2025 CERN.
2
+ Copyright (C) 2020 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
- {{ description | safe }}
18
+ <p>{{ description | safe }}</p>
19
19
  </div>
20
20
  </section>
21
21
  {% endif %}
@@ -1,5 +1,5 @@
1
1
  {#
2
- Copyright (C) 2020-2025 CERN.
2
+ Copyright (C) 2020-2024 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,37 +96,40 @@
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>
100
99
  {%- if item.award -%}
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>
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 %}
111
106
 
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 -%}
107
+ {{ item.award.title_l10n }}
108
+ </span>
117
109
 
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 -%}
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 -%}
115
+
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>
125
125
  {%- endif -%}
126
- </dt>
127
- {%- 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 -%}
128
130
  {% endmacro %}
129
131
 
132
+
130
133
  {% macro show_references(references) %}
131
134
  <ul class="ui bulleted list details-list">
132
135
  {% for reference in references %}
@@ -403,24 +403,3 @@ 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,7 +23,6 @@ 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
27
26
  from invenio_rdm_records.services.schemas import RDMRecordSchema
28
27
  from invenio_rdm_records.services.schemas.utils import dump_empty
29
28
  from invenio_records_resources.services.errors import PermissionDeniedError
@@ -35,7 +34,6 @@ from sqlalchemy.orm import load_only
35
34
 
36
35
  from ..utils import set_default_value
37
36
  from .decorators import (
38
- no_cache_response,
39
37
  pass_draft,
40
38
  pass_draft_community,
41
39
  pass_draft_files,
@@ -47,7 +45,7 @@ from .filters import get_scheme_label
47
45
  #
48
46
  # Helpers
49
47
  #
50
- def get_form_pids_config(record=None):
48
+ def get_form_pids_config():
51
49
  """Prepare configuration for the pids field.
52
50
 
53
51
  Currently supporting only doi.
@@ -57,45 +55,17 @@ def get_form_pids_config(record=None):
57
55
  # FIXME: User provider.is_managed() requires tiny fix in config
58
56
  can_be_managed = True
59
57
  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 = []
63
58
  for scheme in service.config.pids_providers.keys():
64
59
  if not scheme == "doi":
65
60
  continue
66
-
67
61
  record_pid_config = current_app.config["RDM_PERSISTENT_IDENTIFIERS"]
68
62
  scheme_label = record_pid_config.get(scheme, {}).get("label", scheme)
69
63
  is_doi_required = record_pid_config.get(scheme, {}).get("required")
70
64
  default_selected = (
71
65
  record_pid_config.get(scheme, {}).get("ui", {}).get("default_selected")
72
66
  )
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
96
67
  if is_doi_required and default_selected == "not_needed":
97
68
  default_selected = "yes"
98
-
99
69
  pids_provider = {
100
70
  "scheme": scheme,
101
71
  "field_label": "Digital Object Identifier",
@@ -119,7 +89,6 @@ def get_form_pids_config(record=None):
119
89
  "unambiguously cited. Example: 10.1234/foo.bar"
120
90
  ).format(scheme_label=scheme_label),
121
91
  "default_selected": default_selected,
122
- "optional_doi_transitions": optional_doi_transitions,
123
92
  }
124
93
  pids_providers.append(pids_provider)
125
94
 
@@ -363,8 +332,6 @@ def get_form_config(**kwargs):
363
332
  if record_quota:
364
333
  quota["maxStorage"] = record_quota["quota_size"]
365
334
 
366
- record = kwargs.pop("record", None)
367
-
368
335
  return dict(
369
336
  vocabularies=VocabulariesOptions().dump(),
370
337
  autocomplete_names=conf.get(
@@ -372,7 +339,7 @@ def get_form_config(**kwargs):
372
339
  ),
373
340
  current_locale=str(current_i18n.locale),
374
341
  default_locale=conf.get("BABEL_DEFAULT_LOCALE", "en"),
375
- pids=get_form_pids_config(record=record),
342
+ pids=get_form_pids_config(),
376
343
  quota=quota,
377
344
  decimal_size_display=conf.get("APP_RDM_DISPLAY_DECIMAL_FILE_SIZES", True),
378
345
  links=dict(
@@ -423,7 +390,6 @@ def new_record():
423
390
  # Views
424
391
  #
425
392
  @login_required
426
- @no_cache_response
427
393
  @pass_draft_community
428
394
  def deposit_create(community=None):
429
395
  """Create a new deposit."""
@@ -475,7 +441,6 @@ def deposit_create(community=None):
475
441
  @secret_link_or_login_required()
476
442
  @pass_draft(expand=True)
477
443
  @pass_draft_files
478
- @no_cache_response
479
444
  def deposit_edit(pid_value, draft=None, draft_files=None, files_locked=True):
480
445
  """Edit an existing deposit."""
481
446
  # don't show draft's deposit form if the user can't edit it
@@ -525,7 +490,6 @@ def deposit_edit(pid_value, draft=None, draft_files=None, files_locked=True):
525
490
  # hide react community component
526
491
  hide_community_selection=community_use_jinja_header,
527
492
  is_doi_required=is_doi_required,
528
- record=draft._record,
529
493
  )
530
494
 
531
495
  if is_doi_required and not record.get("pids", {}).get("doi"):
@@ -211,7 +211,6 @@ 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}
215
214
  fieldPath={`pids.${pid.scheme}`}
216
215
  fieldLabel={pid.field_label}
217
216
  isEditingPublishedRecord={
@@ -1,6 +1,6 @@
1
1
  {#
2
2
  -*- coding: utf-8 -*-
3
- Copyright (C) 2019-2025 CERN.
3
+ Copyright (C) 2019-2020 CERN.
4
4
  Copyright (C) 2019-2020 Northwestern University.
5
5
  Copyright (C) 2021 New York University.
6
6
 
@@ -126,7 +126,6 @@
126
126
  {%- endblock navbar_right %}
127
127
  </nav>
128
128
  </nav>
129
- </div>
130
129
  {%- endblock navbar %}
131
130
  </div>
132
131
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.1
2
2
  Name: invenio-app-rdm
3
- Version: 13.0.0b1.dev28
3
+ Version: 13.0.0b2.dev0
4
4
  Summary: Invenio Research Data Management.
5
5
  Home-page: https://github.com/inveniosoftware/invenio-app-rdm
6
6
  Author: CERN
@@ -11,53 +11,52 @@ Platform: any
11
11
  Classifier: Development Status :: 5 - Production/Stable
12
12
  Requires-Python: >=3.7
13
13
  License-File: LICENSE
14
- Requires-Dist: invenio-app<2.0.0,>=1.4.0
15
- Requires-Dist: invenio-base<2.0.0,>=1.3.0
16
- Requires-Dist: invenio-cache<2.0.0,>=1.3.0
17
- Requires-Dist: invenio-celery<2.0.0,>=1.2.4
14
+ Requires-Dist: invenio-app<3.0.0,>=2.0.0
15
+ Requires-Dist: invenio-base<3.0.0,>=2.0.0
16
+ Requires-Dist: invenio-cache<3.0.0,>=2.0.0
17
+ Requires-Dist: invenio-celery<3.0.0,>=2.0.0
18
18
  Requires-Dist: invenio-config<2.0.0,>=1.0.3
19
- Requires-Dist: invenio-i18n<3.0.0,>=2.0.0
20
- Requires-Dist: invenio-db[mysql,postgresql]<2.0.0,>=1.1.0
21
- Requires-Dist: invenio-assets<4.0.0,>=3.1.0
22
- Requires-Dist: invenio-formatter<3.0.0,>=2.0.0
23
- Requires-Dist: invenio-logging<3.0.0,>=2.0.0
19
+ Requires-Dist: invenio-i18n<4.0.0,>=3.0.0
20
+ Requires-Dist: invenio-db[mysql,postgresql]<3.0.0,>=2.0.0
21
+ Requires-Dist: invenio-assets<5.0.0,>=4.0.0
22
+ Requires-Dist: invenio-formatter<4.0.0,>=3.0.0
23
+ Requires-Dist: invenio-logging<5.0.0,>=4.0.0
24
24
  Requires-Dist: invenio-mail<3.0.0,>=2.0.0
25
- Requires-Dist: invenio-rest<2.0.0,>=1.3.0
26
- Requires-Dist: invenio-theme<4.0.0,>=3.0.0
27
- Requires-Dist: invenio-access<4.0.0,>=3.0.0
28
- Requires-Dist: invenio-accounts<6.0.0,>=5.0.0
29
- Requires-Dist: invenio-oauth2server<3.0.0,>=2.0.0
30
- Requires-Dist: invenio-oauthclient<5.0.0,>=4.0.0
31
- Requires-Dist: invenio-userprofiles<4.0.0,>=3.0.0
32
- Requires-Dist: invenio-indexer<3.0.0,>=2.2.0
33
- Requires-Dist: invenio-jsonschemas<2.0.0,>=1.1.4
34
- Requires-Dist: invenio-oaiserver<3.0.0,>=2.2.0
35
- Requires-Dist: invenio-pidstore<2.0.0,>=1.3.0
36
- Requires-Dist: invenio-records-rest<3.0.0,>=2.2.0
37
- Requires-Dist: invenio-records-ui<2.0.0,>=1.2.0
38
- Requires-Dist: invenio-records<3.0.0,>=2.2.1
39
- Requires-Dist: invenio-search-ui<4.0.0,>=3.0.0
40
- Requires-Dist: invenio-files-rest<3.0.0,>=2.0.0
41
- Requires-Dist: invenio-previewer<3.0.0,>=2.2.0
25
+ Requires-Dist: invenio-rest<3.0.0,>=2.0.0
26
+ Requires-Dist: invenio-theme<5.0.0,>=4.0.0
27
+ Requires-Dist: invenio-access<5.0.0,>=4.0.0
28
+ Requires-Dist: invenio-accounts<7.0.0,>=6.0.0
29
+ Requires-Dist: invenio-oauth2server<4.0.0,>=3.0.0
30
+ Requires-Dist: invenio-oauthclient<6.0.0,>=5.0.0
31
+ Requires-Dist: invenio-userprofiles<5.0.0,>=4.0.0
32
+ Requires-Dist: invenio-indexer<4.0.0,>=3.0.0
33
+ Requires-Dist: invenio-jsonschemas<3.0.0,>=2.0.0
34
+ Requires-Dist: invenio-oaiserver<4.0.0,>=3.0.0
35
+ Requires-Dist: invenio-pidstore<3.0.0,>=2.0.0
36
+ Requires-Dist: invenio-records-rest<4.0.0,>=3.0.0
37
+ Requires-Dist: invenio-records-ui<3.0.0,>=2.0.0
38
+ Requires-Dist: invenio-records<4.0.0,>=3.0.0
39
+ Requires-Dist: invenio-search-ui<5.0.0,>=4.0.0
40
+ Requires-Dist: invenio-files-rest<4.0.0,>=3.0.0
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<18.0.0,>=17.0.0
44
- Requires-Dist: invenio-rdm-records<17.0.0,>=16.0.0
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
45
45
  Requires-Dist: CairoSVG<3.0.0,>=2.5.2
46
- Requires-Dist: invenio-banners<4.0.0,>=3.0.0
47
- Requires-Dist: invenio-pages<5.0.0,>=4.0.0
48
- Requires-Dist: Flask<2.3.0,>=2.2.0
46
+ Requires-Dist: invenio-banners<5.0.0,>=4.0.0
47
+ Requires-Dist: invenio-pages<6.0.0,>=5.0.0
49
48
  Provides-Extra: tests
50
49
  Requires-Dist: pytest-black-ng>=0.4.0; extra == "tests"
51
- Requires-Dist: pytest-invenio<3.0.0,>=2.1.0; extra == "tests"
50
+ Requires-Dist: pytest-invenio<4.0.0,>=3.0.0; extra == "tests"
52
51
  Requires-Dist: Sphinx>=4.5.0; extra == "tests"
53
52
  Provides-Extra: elasticsearch7
54
- Requires-Dist: invenio-search[elasticsearch7]<3.0.0,>=2.1.0; extra == "elasticsearch7"
53
+ Requires-Dist: invenio-search[elasticsearch7]<4.0.0,>=3.0.0; extra == "elasticsearch7"
55
54
  Provides-Extra: opensearch1
56
- Requires-Dist: invenio-search[opensearch1]<3.0.0,>=2.1.0; extra == "opensearch1"
55
+ Requires-Dist: invenio-search[opensearch1]<4.0.0,>=3.0.0; extra == "opensearch1"
57
56
  Provides-Extra: opensearch2
58
- Requires-Dist: invenio-search[opensearch2]<3.0.0,>=2.1.0; extra == "opensearch2"
57
+ Requires-Dist: invenio-search[opensearch2]<4.0.0,>=3.0.0; extra == "opensearch2"
59
58
  Provides-Extra: s3
60
- Requires-Dist: invenio-s3~=1.0.5; extra == "s3"
59
+ Requires-Dist: invenio-s3<3.0.0,>=2.0.0; extra == "s3"
61
60
 
62
61
  ..
63
62
  Copyright (C) 2019 CERN.
@@ -97,19 +96,11 @@ https://inveniordm.docs.cern.ch
97
96
  Changes
98
97
  =======
99
98
 
100
- Version v13.0.0b1.dev27 (released 2025-01-16)
99
+ Version 13.0.0b2.dev0 (released 2024-12-16)
101
100
 
102
- - Revert "config: add record and membership comment notifications"
103
- * This is actually a breaking change since it introduces a new
104
- set of notification templates that will potentialy not be
105
- styled if overridden in an instance's overlay.
106
-
107
- Version v13.0.0b1.dev26 (released 2025-01-16)
108
-
109
- - config: add record and membership comment notifications
110
- - records/macros/detail.html: Allow funding entry with award number only (#2912)
111
- - records-ui: remove unnecessary p tag in record details
112
- - ui: close unclosed div in header navbar
101
+ - setup: remove flask pin
102
+ - setup: change to reusable workflows
103
+ - setup: bump major dependencies
113
104
 
114
105
  Version v13.0.0b1.dev24 (released 2024-12-10)
115
106
 
@@ -1,6 +1,6 @@
1
- invenio_app_rdm/__init__.py,sha256=7HyqB4G_tTbpxQtOpkBwfja70Zk-A_5X9H2lYM8V5UE,700
1
+ invenio_app_rdm/__init__.py,sha256=XGKeb77y4TOdS5IluPGqpHJLKgtTiFjG5VQhVTgcDdo,699
2
2
  invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
3
- invenio_app_rdm/config.py,sha256=huHWP7FzjvRb7r_VOL33A9LQWKdmkUVJyEJaibKp3d4,50265
3
+ invenio_app_rdm/config.py,sha256=DtcOCtpKsMZPOwnSPswZ4NW8Uc33H3o9VkxCMsr7GXM,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=wqLb_Z6cJ026KEDedJMSsQhQnKWpe7TnMuMVwFAMDX0,912
56
+ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html,sha256=JEkhz_H14fGHMuYs3uyIEu_3hJqTSEPhLCtHtyKFY6E,914
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,15 +73,15 @@ 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=UZ1TUcWe6keYSIOOb7CdVAUdvvE5RV0psQEvBHDqqkI,9767
76
+ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html,sha256=8jx7zA7g8waCW3-9tmRH7_4JiFttjv2kr4i2w0BDYlw,9879
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=_TYUGedQAHvEugusIG8xk8xPWHxfw9v4HZR_0dL-tH0,13371
84
- invenio_app_rdm/records_ui/views/deposits.py,sha256=ZQSlYugqZX1jnS0GFNtJQVq2_KyDS_ECzp1S26qDGAs,21337
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
85
85
  invenio_app_rdm/records_ui/views/filters.py,sha256=Rm55fXJv97cqq8B_6KCe-3PxxHUH4VRu-jd9fTea6r4,6994
86
86
  invenio_app_rdm/records_ui/views/records.py,sha256=60pWASXnJS6t6yisq3QqnsNGCOaMDFPgCgErxXPUKuE,15455
87
87
  invenio_app_rdm/redirector/__init__.py,sha256=AYCTGmfbmkHW3YJXMqXlWBXcBrUsta-QmL9ULX2bjwA,243
@@ -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=7Sotq28SBmJE6j59Z7K786LRQxld-dVSmebaFKwhaok,29139
159
+ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js,sha256=UlfRF935tRVAf2rfcEidBv_BOrnCz2M8tOdYRz9_Eb4,29057
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=wACxdZA3i_iudBzYj3QfMSFMdTVGOBjBFtd04QCIK4c,5687
384
+ invenio_app_rdm/theme/templates/semantic-ui/invenio_app_rdm/header.html,sha256=6YZgEAb39g6dl1HCkD2tkkeSzV1OxenhY9kOFo0eEos,5674
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.0b1.dev28.dist-info/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
523
- invenio_app_rdm-13.0.0b1.dev28.dist-info/METADATA,sha256=ZeW18bcqUAiGhh73TMovpEsFGQLXuUrUrA2GtTpPSp8,9272
524
- invenio_app_rdm-13.0.0b1.dev28.dist-info/WHEEL,sha256=9Hm2OB-j1QcCUq9Jguht7ayGIIZBRTdOXD1qg9cCgPM,109
525
- invenio_app_rdm-13.0.0b1.dev28.dist-info/entry_points.txt,sha256=r1vTqYNABeWqRMWitzyR9FnBsAy-KYZKZCp95IziyLY,2070
526
- invenio_app_rdm-13.0.0b1.dev28.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
527
- invenio_app_rdm-13.0.0b1.dev28.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any