invenio-app-rdm 13.0.0b3.dev2__py2.py3-none-any.whl → 13.0.0b3.dev4__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.
@@ -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.0b3.dev2"
20
+ __version__ = "13.0.0b3.dev4"
21
21
 
22
22
  __all__ = ("__version__",)
@@ -9,18 +9,13 @@
9
9
  # under the terms of the MIT License; see LICENSE file for more details.
10
10
  """Communities UI blueprints module."""
11
11
 
12
- from flask import Blueprint, current_app, render_template, request
13
- from flask_login import current_user
14
- from invenio_communities.communities.resources.serializer import (
15
- UICommunityJSONSerializer,
16
- )
12
+ from flask import Blueprint, current_app, request
17
13
  from invenio_communities.errors import CommunityDeletedError
18
14
  from invenio_communities.views.ui import (
19
15
  not_found_error,
20
16
  record_permission_denied_error,
21
17
  record_tombstone_error,
22
18
  )
23
- from invenio_i18n import lazy_gettext as _
24
19
  from invenio_pidstore.errors import PIDDeletedError, PIDDoesNotExistError
25
20
  from invenio_rdm_records.collections import search_app_context as c_search_app_context
26
21
  from invenio_records_resources.services.errors import (
@@ -28,6 +23,8 @@ from invenio_records_resources.services.errors import (
28
23
  RecordPermissionDeniedError,
29
24
  )
30
25
 
26
+ from invenio_app_rdm.views import create_url_rule
27
+
31
28
  from ..searchapp import search_app_context
32
29
  from .communities import (
33
30
  communities_browse,
@@ -58,29 +55,24 @@ def create_ui_blueprint(app):
58
55
  )
59
56
 
60
57
  blueprint.add_url_rule(
61
- routes["community-detail"],
62
- view_func=communities_detail,
58
+ **create_url_rule(routes["community-detail"], communities_detail),
63
59
  strict_slashes=False,
64
60
  )
65
61
 
66
62
  blueprint.add_url_rule(
67
- routes["community-home"],
68
- view_func=communities_home,
63
+ **create_url_rule(routes["community-home"], communities_home)
69
64
  )
70
65
 
71
66
  blueprint.add_url_rule(
72
- routes["community-browse"],
73
- view_func=communities_browse,
67
+ **create_url_rule(routes["community-browse"], communities_browse)
74
68
  )
75
69
 
76
70
  blueprint.add_url_rule(
77
- routes["community-static-page"],
78
- view_func=community_static_page,
71
+ **create_url_rule(routes["community-static-page"], community_static_page)
79
72
  )
80
73
 
81
74
  blueprint.add_url_rule(
82
- routes["community-collection"],
83
- view_func=community_collection,
75
+ **create_url_rule(routes["community-collection"], community_collection)
84
76
  )
85
77
  # Register error handlers
86
78
  blueprint.register_error_handler(
@@ -3,6 +3,7 @@
3
3
  Copyright (C) 2020 Northwestern University.
4
4
  Copyright (C) 2021 Graz University of Technology.
5
5
  Copyright (C) 2021-2022 New York University.
6
+ Copyright (C) 2025 KTH Royal Institute of Technology.
6
7
 
7
8
  Invenio RDM Records is free software; you can redistribute it and/or modify
8
9
  it under the terms of the MIT License; see LICENSE file for more details.
@@ -15,11 +16,11 @@
15
16
  {% for scheme, details in config.APP_RDM_IDENTIFIER_SCHEMES_UI.items() %}
16
17
  {% for identifier in creatibutor.person_or_org.identifiers|selectattr("scheme", "equalto", scheme) %}
17
18
  {% set identifier_found.value = True %}
18
- <a href="{{ identifier.identifier|pid_url(scheme) }}"
19
- aria-label="{{ creatibutor.person_or_org.name }}'s {{ details.label }} {{ _('profile') }}"
19
+ <a href="{{ identifier.identifier|pid_url(scheme) }}"
20
+ aria-label="{{ creatibutor.person_or_org.name }}'s {{ details.label }} {{ _('profile') }}"
20
21
  title="{{ creatibutor.person_or_org.name }}'s {{ details.label }} {{ _('profile') }}">
21
- <img class="ml-5 inline-id-icon"
22
- src="{{ url_for('static', filename=details.icon) }}"
22
+ <img class="ml-5 inline-id-icon"
23
+ src="{{ url_for('static', filename=details.icon) }}"
23
24
  alt="{{ details.label }} icon"/>
24
25
  </a>
25
26
  {% endfor %}
@@ -39,7 +40,7 @@
39
40
 
40
41
 
41
42
  {% macro show_creatibutors(creatibutors, show_affiliations=False, type="creators", show_role=False) %}
42
- {% for creatibutor in creatibutors %}
43
+ {% for creatibutor in creatibutors if creatibutor.person_or_org and creatibutor.person_or_org.name %}
43
44
  <li class="creatibutor-wrap separated">
44
45
  <a class="ui creatibutor-link"
45
46
  {% if show_affiliations and creatibutor.affiliations %}
@@ -85,11 +86,11 @@
85
86
  {% for affiliation in affiliations %}
86
87
  <li>
87
88
  {{ affiliation[0] }}.
88
-
89
+
89
90
  {% if affiliation[2] %}
90
91
  {% set scheme, identifier = (affiliation[2].split(':', 1) if ':' in affiliation[2] else ('ror', affiliation[2])) %}
91
92
  {% set scheme_config = config.APP_RDM_IDENTIFIER_SCHEMES_UI.get(scheme) %}
92
-
93
+
93
94
  {% if scheme_config %}
94
95
  <a class="no-text-decoration"
95
96
  href="{{ scheme_config.url_prefix + identifier }}"
@@ -103,11 +104,11 @@
103
104
  </a>
104
105
  {% endif %}
105
106
  {% endif %}
106
-
107
+
107
108
  {{ affiliation[1] }}
108
109
  </li>
109
110
  {% endfor %}
110
-
111
+
111
112
  </ul>
112
113
  </section>
113
114
  {% endmacro %}
@@ -1,6 +1,7 @@
1
1
  {#
2
2
  Copyright (C) 2020-2025 CERN.
3
3
  Copyright (C) 2024 Northwestern University.
4
+ Copyright (C) 2024-2025 KTH Royal Institute of Technology.
4
5
 
5
6
  Invenio RDM Records is free software; you can redistribute it and/or modify
6
7
  it under the terms of the MIT License; see LICENSE file for more details.
@@ -59,18 +60,25 @@
59
60
 
60
61
  {% macro show_add_descriptions(add_descriptions) %}
61
62
  {% for add_description in add_descriptions %}
62
- <section id="additional-description-{{ loop.index }}" class="rel-mt-2 rich-input-content"
63
- aria-label="{{ _( add_description.type.title_l10n ) }}">
64
- <h2>{{ add_description.type.title_l10n }} <span
65
- class="text-muted language">{{ '(' + add_description.lang.title_l10n + ')' if add_description.lang }}</span>
63
+ {% set desc_type_defined = add_description.type is defined %}
64
+ {% set desc_text = add_description.description|default('') %}
65
+ <section
66
+ id="additional-description-{{ loop.index }}"
67
+ class="rel-mt-2 rich-input-content"
68
+ aria-label="{{ (add_description.type.title_l10n if desc_type_defined else _('Missing description type!')) }}"
69
+ >
70
+ <h2>
71
+ {{ add_description.type.title_l10n if desc_type_defined else _('Missing description type!') }}
72
+ <span class="text-muted language">
73
+ {{ '(' ~ add_description.lang.title_l10n ~ ')' if add_description.lang is defined else '' }}
74
+ </span>
66
75
  </h2>
67
-
68
- {% if add_description.type.id == "notes" %}
76
+ {% if desc_type_defined and add_description.type.id == "notes" %}
69
77
  <div class="ui message warning">
70
- {{ add_description.description | sanitize_html() | safe }}
78
+ {{ desc_text | sanitize_html() | safe }}
71
79
  </div>
72
80
  {% else %}
73
- {{ add_description.description | sanitize_html() | safe }}
81
+ {{ desc_text | sanitize_html() | safe }}
74
82
  {% endif %}
75
83
  </section>
76
84
  {% endfor %}
@@ -79,10 +87,11 @@
79
87
 
80
88
  {% macro show_dates(dates) %}
81
89
  {% for date in dates %}
82
- <dt class="ui tiny header">{{ date.type.title_l10n }}</dt>
90
+ {% set date_type_title = date.get('type', {}).get('title_l10n', _('Unknown date type')) %}
91
+ <dt class="ui tiny header">{{ date_type_title }}</dt>
83
92
  <dd>
84
- <div>{{ date.date }}</div>
85
- <div class="text-muted">{{ date.description }}</div>
93
+ <div>{{ date.date|default('') }}</div>
94
+ <div class="text-muted">{{ date.description|default('') }}</div>
86
95
  </dd>
87
96
  {% endfor %}
88
97
  {% endmacro %}
@@ -103,7 +112,7 @@
103
112
  {% if item.award.acronym %}
104
113
  {{ item.award.acronym }} –
105
114
  {% endif %}
106
-
115
+
107
116
  {%- if item.award.title_l10n -%}
108
117
  {{ item.award.title_l10n }}
109
118
  {%- endif -%}
@@ -130,15 +139,13 @@
130
139
  {% macro show_references(references) %}
131
140
  <ul class="ui bulleted list details-list">
132
141
  {% for reference in references %}
133
- {% set reference_string = reference.reference %}
134
- {% if 'identifier' in reference %}
135
- {% if 'scheme' in reference %}
142
+ {% set reference_string = reference.reference|default('') %}
143
+ {% if reference.get('identifier') %}
144
+ {% if reference.scheme is defined and reference.scheme %}
136
145
  {% set reference_scheme = reference.scheme | get_scheme_label %}
137
- {% set reference_string = reference_string + ' ( ' + reference_scheme +
138
- ' - ' + reference.identifier + ' )' %}
146
+ {% set reference_string = reference_string ~ ' (' ~ reference_scheme ~ ' - ' ~ reference.identifier ~ ')' %}
139
147
  {% else %}
140
- {% set reference_string = reference_string + ' ( ' + reference.identifier +
141
- ' )' %}
148
+ {% set reference_string = reference_string ~ ' (' ~ reference.identifier ~ ')' %}
142
149
  {% endif %}
143
150
  {% endif %}
144
151
  <li class="item">{{ reference_string | urlize }}</li>
@@ -150,20 +157,23 @@
150
157
  {% macro _identifiers_for_group(related_identifiers) %}
151
158
  {% for identifier in related_identifiers %}
152
159
  <dd>
153
- {% if identifier.resource_type is defined %}
160
+ {% if identifier.resource_type is defined and identifier.resource_type.title_l10n is defined %}
154
161
  {{ identifier.resource_type.title_l10n }}:
155
162
  {% endif %}
156
163
 
157
- {% set url = identifier.identifier|pid_url %}
164
+ {% set ident_val = identifier.identifier|default('') %}
165
+ {% set url = ident_val|pid_url %}
158
166
  {% if url %}
159
167
  <a href="{{ url }}" target="_blank" title="{{ _('Opens in new tab') }}">
160
- {{ identifier.identifier }}
168
+ {{ ident_val }}
161
169
  </a>
162
170
  {% else %}
163
- {{ identifier.identifier }}
171
+ {{ ident_val }}
164
172
  {% endif %}
165
173
 
166
- {{ ' (' + identifier.scheme | get_scheme_label + ')' }}
174
+ {% if identifier.scheme is defined and identifier.scheme %}
175
+ {{ ' (' ~ (identifier.scheme|get_scheme_label) ~ ')' }}
176
+ {% endif %}
167
177
  </dd>
168
178
  {% endfor %}
169
179
  {% endmacro %}
@@ -171,7 +181,7 @@
171
181
 
172
182
  {% macro show_related_identifiers(related_identifiers) %}
173
183
  <dl class="details-list">
174
- {%- for group in related_identifiers | groupby('relation_type.title_l10n') %}
184
+ {%- for group in (related_identifiers|selectattr("relation_type","defined")|list) | groupby('relation_type.title_l10n') %}
175
185
  <dt class="ui tiny header">{{ group.grouper }}</dt>
176
186
  {{ _identifiers_for_group(group.list) }}
177
187
  {%- endfor %}
@@ -23,7 +23,8 @@ from invenio_records_resources.services.errors import (
23
23
  RecordPermissionDeniedError,
24
24
  )
25
25
 
26
- from ...theme.views import create_url_rule
26
+ from invenio_app_rdm.views import create_url_rule
27
+
27
28
  from ..searchapp import search_app_context
28
29
  from .deposits import community_upload, deposit_create, deposit_edit
29
30
  from .filters import (
@@ -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
@@ -75,14 +74,15 @@ def get_form_pids_config(record=None):
75
74
  previous_published_record = (
76
75
  service.record_cls.get_latest_published_by_parent(record.parent)
77
76
  )
78
- optional_doi_transitions = _get_optional_doi_transitions(
79
- previous_published_record
77
+ validate_optional_doi = current_app.config["RDM_OPTIONAL_DOI_VALIDATOR"]
78
+ optional_doi_transitions = validate_optional_doi(
79
+ record, previous_published_record, errors=[]
80
80
  )
81
81
  if optional_doi_transitions:
82
82
  optional_doi_transitions["message"] = optional_doi_transitions.get(
83
83
  "message"
84
84
  ).format(sitename=sitename)
85
- if set(optional_doi_transitions.get("allowed_providers", [])) - set(
85
+ if set(optional_doi_transitions["allowed_providers"]) - set(
86
86
  ["external", "not_needed"]
87
87
  ):
88
88
  # In case we have locally managed provider as an allowed one, we need to
@@ -19,15 +19,7 @@ from invenio_i18n import lazy_gettext as _
19
19
  from invenio_pages.views import create_page_view
20
20
  from invenio_users_resources.forms import NotificationsForm
21
21
 
22
-
23
- def create_url_rule(rule, default_view_func):
24
- """Generate rule from string or tuple."""
25
- if isinstance(rule, tuple):
26
- path, view_func = rule
27
-
28
- return {"rule": path, "view_func": view_func}
29
- else:
30
- return {"rule": rule, "view_func": default_view_func}
22
+ from invenio_app_rdm.views import create_url_rule
31
23
 
32
24
 
33
25
  #
@@ -0,0 +1,21 @@
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Copyright (C) 2019-2025 CERN.
4
+ #
5
+ # Invenio App RDM is free software; you can redistribute it and/or modify it
6
+ # under the terms of the MIT License; see LICENSE file for more details.
7
+
8
+ """General views and view utilities."""
9
+
10
+
11
+ def create_url_rule(rule, default_view_func):
12
+ """Generate rule from string or tuple."""
13
+ # TODO: We want to deprecate the use of this kind of "string or 2-tuple" config
14
+ # values, and directly use dictionaries that map exactly to the parameters
15
+ # that `Blueprint.add_url_rule(...)` accepts, with some sane defaults.
16
+ if isinstance(rule, tuple):
17
+ path, view_func = rule
18
+
19
+ return {"rule": path, "view_func": view_func}
20
+ else:
21
+ return {"rule": rule, "view_func": default_view_func}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: invenio-app-rdm
3
- Version: 13.0.0b3.dev2
3
+ Version: 13.0.0b3.dev4
4
4
  Summary: Invenio Research Data Management.
5
5
  Home-page: https://github.com/inveniosoftware/invenio-app-rdm
6
6
  Author: CERN
@@ -97,6 +97,17 @@ https://inveniordm.docs.cern.ch
97
97
  Changes
98
98
  =======
99
99
 
100
+ Version v13.0.0b3.dev4 (released 2025-04-10)
101
+
102
+ - deposits: use optional doi validator method
103
+
104
+ Version v13.0.0b3.dev3 (released 2025-04-04)
105
+
106
+ - fix: Handle undefined record attributes in templates to avoid rendering errors (#2932)
107
+ - communities_ui: make routes + views configurable
108
+ - views: extract create_url_rule utility and plan for deprecation
109
+
110
+
100
111
  Version v13.0.0b3.dev2 (released 2025-03-29)
101
112
 
102
113
  - fix: restore messages index.js and remove unused imports
@@ -1,9 +1,10 @@
1
- invenio_app_rdm/__init__.py,sha256=RVHM8qmoe5D1-TMj4FV1rYRoxzmd720cAweiN0HmlFM,699
1
+ invenio_app_rdm/__init__.py,sha256=thlWzdrC3YcR9NNgPa8dKY16F6keY30swQLNnUFlkoY,699
2
2
  invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
3
3
  invenio_app_rdm/config.py,sha256=Sv6Q8VEP-KYNuvC6kASLOYC-gYRByYN-hwPmbCxQWKc,50624
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/urls.py,sha256=8S95QSs4yS0rtORsd4veo--rF3LSLwZenoowJ5ubbmM,2496
7
+ invenio_app_rdm/views.py,sha256=SDr9NwZEWQcgT_3GFRYdDf6eUaK9DfnoafIkhUf9nSI,785
7
8
  invenio_app_rdm/administration/__init__.py,sha256=8r9LeoE9fNHZSVS5QsCfVhRU7MAiEOWJk9MA3Y--4F8,251
8
9
  invenio_app_rdm/administration/domains/__init__.py,sha256=Qob5kqjRPxpuSE5yDV2tesN6tmaKp5JcxCxGA8Mrcak,487
9
10
  invenio_app_rdm/administration/domains/domains.py,sha256=vafLa-mqkg_tQLjx328E64P_4mksB5kjBlsfunvdatg,5599
@@ -29,7 +30,7 @@ invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/details
29
30
  invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html,sha256=5Ub4uyVsjjTHzbhNe8Y-AAZG5oI28wZs2jQXvSPofXw,700
30
31
  invenio_app_rdm/communities_ui/views/__init__.py,sha256=HsbOWjDobxXGx6WFlTn45JYr0V9yqjCpDXOR_i2wmtw,401
31
32
  invenio_app_rdm/communities_ui/views/communities.py,sha256=t7qDZ8CiEwT9lB9B9_nS7IJn3V80t1i-yN48CU9rAyc,6706
32
- invenio_app_rdm/communities_ui/views/ui.py,sha256=QBf1QyaXZ46OqUZXU5CDdg10e2HqCaVnggIpJIdVwok,3154
33
+ invenio_app_rdm/communities_ui/views/ui.py,sha256=CiwVuk6dqx4sJaT-3nwpo9y-XNLUnO589x9Ln4hXoV8,3009
33
34
  invenio_app_rdm/fixtures/__init__.py,sha256=XwWy4U66FkpWOEBFfn5EnXfuTKlXnh3HWZNBMDX4Rgk,1512
34
35
  invenio_app_rdm/fixtures/oai_sets.py,sha256=ZoS94FNkIsdEJWHihZRYvFAstp3GBrZ0viDml9mQXOI,621
35
36
  invenio_app_rdm/fixtures/pages.py,sha256=R2DaRV__iXQ8Zh-fGcs9g16rUKEDp0xV47iZUfoLIx0,1887
@@ -72,16 +73,16 @@ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details
72
73
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html,sha256=3OptZ6iQYaQ3GjNw5O-h9FloISUzFE0nSNTmazjTQgQ,520
73
74
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html,sha256=N5VUwCygKG-zXvyu0YeFJb7A0eHIcKWuMAVm9Kbrb_M,658
74
75
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html,sha256=sPYG81XFcU1ND6roeYmN4SY419iyvQj9ozCv9Pctw5E,932
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/creatibutors.html,sha256=N53nwtlEZjxweCx70qFJa1s6uL1pPSzWZgk8p1vodE4,4277
77
+ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html,sha256=1XF9DgxLADlpKY7vAcdXhtaOAyrCCupgi5p0AmnqDiQ,10447
77
78
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html,sha256=NZUtJSCwQScJsmz7vxglslEVqPwG7Ldul_wl7yce0fg,1489
78
79
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html,sha256=Xsq_HiM_cTGKgmoE1HAXje8iYe3d0wIJoesk22Xn7vU,8761
79
80
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html,sha256=27-KyPqb05pu-yRXHvxCgZWRSi5bFP6xf7XBn91sbeA,1741
80
81
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html,sha256=5SVzfIS15Aro2Itd2BiaLbMXm0cvvwk6ZCdYjuSwhBw,625
81
82
  invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html,sha256=eA8-n81XUezkwPXvcG5v2sgLPQNTgr7hB36-_Gr-tVI,758
82
- invenio_app_rdm/records_ui/views/__init__.py,sha256=4NxQNADuvMsblEsGd3zkKXSNR5_4eLMcFEFYvc6NxVc,5718
83
+ invenio_app_rdm/records_ui/views/__init__.py,sha256=fzRrhYImQg13KnHfxJgzDlJPe-DzE02GifP2j_Wt480,5726
83
84
  invenio_app_rdm/records_ui/views/decorators.py,sha256=XUSPpstYyh72IdNaIO4wz3sw1fjI_2DNGsKdUu3ueL4,15769
84
- invenio_app_rdm/records_ui/views/deposits.py,sha256=BZfkL9dIEtkab5FJ36UunGRS__YHfb7TMcDnRi8U5cA,21560
85
+ invenio_app_rdm/records_ui/views/deposits.py,sha256=KRR_fpl98EhNZie0Q-_uZtgG2QKsQAW2fhb-kvnQ4s4,21561
85
86
  invenio_app_rdm/records_ui/views/filters.py,sha256=Rm55fXJv97cqq8B_6KCe-3PxxHUH4VRu-jd9fTea6r4,6994
86
87
  invenio_app_rdm/records_ui/views/records.py,sha256=GdxG3JnXrV1QT0KxOqeYWoDGIiZRZ9w5poihPPd-wTo,16428
87
88
  invenio_app_rdm/redirector/__init__.py,sha256=AYCTGmfbmkHW3YJXMqXlWBXcBrUsta-QmL9ULX2bjwA,243
@@ -101,7 +102,7 @@ invenio_app_rdm/requests_ui/views/__init__.py,sha256=7QiAyRq8Eu84IXwjzxK63vNeTZn
101
102
  invenio_app_rdm/requests_ui/views/requests.py,sha256=grC2bQWF36xzeftdOSjy_vBWAGSUbupOliPervenF6s,16048
102
103
  invenio_app_rdm/requests_ui/views/ui.py,sha256=DBysYQa__gOCg-pikO6HmoVLmRmMAVWeTBiYhPa7PmA,2359
103
104
  invenio_app_rdm/theme/__init__.py,sha256=QbkxNjjOmGKRlie96HfTXgnFeVQjOX0GdiZnHP7pIhs,277
104
- invenio_app_rdm/theme/views.py,sha256=UJs2_C28BWsXY1JqbRK4_ML1JRtGo1yM2S0_W37JJo4,4545
105
+ invenio_app_rdm/theme/views.py,sha256=Ucn6o7mF8qR7gtOeliKC73gIBhy5LgY65rvteC1Uiog,4312
105
106
  invenio_app_rdm/theme/webpack.py,sha256=5ucwIJQgM1y9EFdRcsxv_ThPs7hXRzdmipVBxoU1McI,5090
106
107
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/theme.js,sha256=LSswk1IkVgUxTT3Arw_QF-mNQ16vVYDf2B90h6FZfFw,4431
107
108
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/utils.js,sha256=oTCQkmr7j6FwVsOfM6hsKrPHfadW7m9IurrqYVDgxDw,3628
@@ -468,7 +469,7 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
468
469
  invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
469
470
  invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
470
471
  invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
471
- invenio_app_rdm-13.0.0b3.dev2.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
472
+ invenio_app_rdm-13.0.0b3.dev4.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
472
473
  tests/__init__.py,sha256=yKVf0yYRuxmXvyAtLjmfpHGVCsEkZOhs_FojAAM_w-8,244
473
474
  tests/conftest.py,sha256=6iR-l-DIpQDxN2LLMu6kbHnLsmAW1m8Lq-j8rNNucf8,8956
474
475
  tests/test_tasks.py,sha256=6l25lcMjL3ZuQr4hsxbAEjSTu_J1aKkOB3ZXqOZZIy0,3712
@@ -501,8 +502,8 @@ tests/ui/test_filters.py,sha256=Q90wsJffjMVir7wNX8taGf2KZleLtPbXZXHLTkBpzLA,284
501
502
  tests/ui/test_signposting_ui.py,sha256=KCSjQlMD2VKlwQCyZYDwYjtVNL35x3u-ZC4ceD5y21w,3847
502
503
  tests/ui/test_static.py,sha256=vO3OQAOhrQESJifnQfM1pw7JYz3J874O8BAb7Cc_PPA,868
503
504
  tests/ui/test_stats_ui.py,sha256=LHa_0hjvpYvliSk_jknWy-90CO82jVElUfK5Ua_ZmfA,3554
504
- invenio_app_rdm-13.0.0b3.dev2.dist-info/METADATA,sha256=JieFLy0silZDVRizy9hUGRXdzIHIqpd0_-13S4Y56g4,12231
505
- invenio_app_rdm-13.0.0b3.dev2.dist-info/WHEEL,sha256=MAQBAzGbXNI3bUmkDsiV_duv8i-gcdnLzw7cfUFwqhU,109
506
- invenio_app_rdm-13.0.0b3.dev2.dist-info/entry_points.txt,sha256=r1vTqYNABeWqRMWitzyR9FnBsAy-KYZKZCp95IziyLY,2070
507
- invenio_app_rdm-13.0.0b3.dev2.dist-info/top_level.txt,sha256=NqTqrntInEAci7EXcNBvouXFMqwyjVQhEI0b7izYRBY,22
508
- invenio_app_rdm-13.0.0b3.dev2.dist-info/RECORD,,
505
+ invenio_app_rdm-13.0.0b3.dev4.dist-info/METADATA,sha256=vhxrTA79CScM1kPJVbakn9zGiiOnAD6i_dAcJgQUVqQ,12578
506
+ invenio_app_rdm-13.0.0b3.dev4.dist-info/WHEEL,sha256=MAQBAzGbXNI3bUmkDsiV_duv8i-gcdnLzw7cfUFwqhU,109
507
+ invenio_app_rdm-13.0.0b3.dev4.dist-info/entry_points.txt,sha256=r1vTqYNABeWqRMWitzyR9FnBsAy-KYZKZCp95IziyLY,2070
508
+ invenio_app_rdm-13.0.0b3.dev4.dist-info/top_level.txt,sha256=NqTqrntInEAci7EXcNBvouXFMqwyjVQhEI0b7izYRBY,22
509
+ invenio_app_rdm-13.0.0b3.dev4.dist-info/RECORD,,