invenio-app-rdm 13.0.0b3.dev17__py2.py3-none-any.whl → 13.0.0b3.dev18__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/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html +46 -47
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html +9 -9
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html +22 -22
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html +8 -8
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html +6 -6
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html +8 -8
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html +2 -2
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html +1 -1
- invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html +2 -2
- invenio_app_rdm/records_ui/views/records.py +2 -1
- invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html +2 -2
- invenio_app_rdm/requests_ui/views/requests.py +6 -3
- {invenio_app_rdm-13.0.0b3.dev17.dist-info → invenio_app_rdm-13.0.0b3.dev18.dist-info}/METADATA +7 -1
- {invenio_app_rdm-13.0.0b3.dev17.dist-info → invenio_app_rdm-13.0.0b3.dev18.dist-info}/RECORD +30 -30
- {invenio_app_rdm-13.0.0b3.dev17.dist-info → invenio_app_rdm-13.0.0b3.dev18.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-13.0.0b3.dev17.dist-info → invenio_app_rdm-13.0.0b3.dev18.dist-info}/entry_points.txt +0 -0
- {invenio_app_rdm-13.0.0b3.dev17.dist-info → invenio_app_rdm-13.0.0b3.dev18.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-13.0.0b3.dev17.dist-info → invenio_app_rdm-13.0.0b3.dev18.dist-info}/top_level.txt +0 -0
invenio_app_rdm/__init__.py
CHANGED
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
|
|
24
24
|
{%- from "invenio_app_rdm/records/macros/files.html" import file_list_box, preview_file_box, media_file_list_box %}
|
|
25
25
|
|
|
26
|
-
{%- set title =
|
|
27
|
-
{%- set metadata =
|
|
26
|
+
{%- set title = record_ui["metadata"]["title"] %}
|
|
27
|
+
{%- set metadata = record_ui["metadata"] %}
|
|
28
28
|
|
|
29
29
|
{%- set can_curate_record = permissions is defined and (permissions.can_edit or permissions.can_review) %}
|
|
30
30
|
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
{%- set is_preview_submission_request = preview_submission_request or false %}
|
|
33
33
|
{%- set show_record_management_menu = can_curate_record and (not is_preview or is_preview_submission_request) %}
|
|
34
34
|
|
|
35
|
-
{%- if
|
|
36
|
-
{%- set allow_user_requests = not current_user.is_anonymous and
|
|
37
|
-
{%- set allow_guest_requests = current_user.is_anonymous and
|
|
35
|
+
{%- if record_ui["parent"]["access"]["settings"] %}
|
|
36
|
+
{%- set allow_user_requests = not current_user.is_anonymous and record_ui["parent"]["access"]["settings"]["allow_user_requests"] %}
|
|
37
|
+
{%- set allow_guest_requests = current_user.is_anonymous and record_ui["parent"]["access"]["settings"]["allow_guest_requests"] %}
|
|
38
38
|
{%- endif %}
|
|
39
39
|
|
|
40
40
|
{%- block head_meta %}
|
|
@@ -49,7 +49,6 @@
|
|
|
49
49
|
|
|
50
50
|
{%- block page_body %}
|
|
51
51
|
<section id="banners" class="banners" aria-label="{{ _('Information banner') }}">
|
|
52
|
-
|
|
53
52
|
<!-- COMMUNITY HEADER: hide it when displaying the submission request -->
|
|
54
53
|
{% if not is_preview_submission_request %}
|
|
55
54
|
{% if community %}
|
|
@@ -114,11 +113,11 @@
|
|
|
114
113
|
<p>
|
|
115
114
|
{% if not is_draft %}
|
|
116
115
|
{{ _("You are previewing a published record.") }}
|
|
117
|
-
{% elif
|
|
116
|
+
{% elif record_ui["is_published"] %}
|
|
118
117
|
{{ _("You are previewing changes that have not yet been published.") }}
|
|
119
|
-
{% elif not
|
|
118
|
+
{% elif not record_ui["is_published"] and record_ui["versions"]["index"] == 1 %}
|
|
120
119
|
{{ _("You are previewing a new record that has not yet been published.") }}
|
|
121
|
-
{% elif not
|
|
120
|
+
{% elif not record_ui["is_published"] and record_ui["versions"]["index"] > 1 %}
|
|
122
121
|
{{ _("You are previewing a new record version that has not yet been published.") }}
|
|
123
122
|
{% endif %}
|
|
124
123
|
</p>
|
|
@@ -127,14 +126,14 @@
|
|
|
127
126
|
{% endif %}
|
|
128
127
|
<!-- /PREVIEW HEADER -->
|
|
129
128
|
|
|
130
|
-
{% if
|
|
129
|
+
{% if record_ui["is_published"] and record_ui["links"]["latest_html"] and not record_ui["versions"]["is_latest"] %}
|
|
131
130
|
<div class="ui warning flashed bottom attached manage message">
|
|
132
131
|
<div class="ui container">
|
|
133
132
|
<div class="ui relaxed grid">
|
|
134
133
|
<div class="column">
|
|
135
134
|
<div class="row">
|
|
136
135
|
<p>
|
|
137
|
-
{% trans link_start=('<a href="' +
|
|
136
|
+
{% trans link_start=('<a href="' + record_ui["links"]["latest_html"] + '"><b>')|safe, link_end='</b></a>'|safe %}
|
|
138
137
|
There is a {{ link_start }}newer version{{ link_end }} of the record
|
|
139
138
|
available.
|
|
140
139
|
{% endtrans %}
|
|
@@ -155,17 +154,17 @@
|
|
|
155
154
|
{# Main content #}
|
|
156
155
|
<article
|
|
157
156
|
class="sixteen wide tablet eleven wide computer column main-record-content">
|
|
158
|
-
{% if
|
|
157
|
+
{% if record_ui["access"]["record"] == 'restricted' %}
|
|
159
158
|
<section id="record-access-status"
|
|
160
|
-
class="ui {{
|
|
159
|
+
class="ui {{ record_ui["ui"]["access_status"]["message_class"] }} message rel-mt-1"
|
|
161
160
|
aria-label="{{ _('Record access information') }}"
|
|
162
161
|
>
|
|
163
|
-
<i class="{{
|
|
164
|
-
<strong>{{
|
|
165
|
-
{{
|
|
162
|
+
<i class="{{ record_ui["ui"]["access_status"]["icon"] }} icon" aria-hidden="true"></i>
|
|
163
|
+
<strong>{{ record_ui["ui"]["access_status"]["title_l10n"] }}</strong>
|
|
164
|
+
{{ record_ui["ui"]["access_status"]["description_l10n"] }}
|
|
166
165
|
|
|
167
|
-
{% if
|
|
168
|
-
<p>{{ _("Reason") }}: {{
|
|
166
|
+
{% if record_ui["access"]["embargo"]["reason"] %}
|
|
167
|
+
<p>{{ _("Reason") }}: {{ record_ui["access"]["embargo"]["reason"] }}</p>
|
|
169
168
|
{% endif %}
|
|
170
169
|
</section>
|
|
171
170
|
{% endif %}
|
|
@@ -179,7 +178,7 @@
|
|
|
179
178
|
{% if is_preview and not is_preview_submission_request and can_curate_record and is_draft %}
|
|
180
179
|
<nav class="back-navigation rel-pb-2 pl-0"
|
|
181
180
|
aria-label="{{ _('Back-navigation') }}">
|
|
182
|
-
{%- set back_page = url_for('invenio_app_rdm_records.deposit_edit', pid_value=
|
|
181
|
+
{%- set back_page = url_for('invenio_app_rdm_records.deposit_edit', pid_value=record_ui.id) -%}
|
|
183
182
|
{%- set back_btn_label = _('Back to edit') -%}
|
|
184
183
|
<a class="ui button labeled icon small compact"
|
|
185
184
|
href="{{ back_page }}">
|
|
@@ -204,7 +203,7 @@
|
|
|
204
203
|
<div id="recordManagementMobile"
|
|
205
204
|
role="dialog"
|
|
206
205
|
class="ui flowing popup transition hidden"
|
|
207
|
-
data-record='{{
|
|
206
|
+
data-record='{{ record_ui | tojson }}'
|
|
208
207
|
data-permissions='{{ permissions | tojson }}'
|
|
209
208
|
data-is-draft="{{ is_draft | tojson }}"
|
|
210
209
|
{% if config.RDM_DETAIL_SIDE_BAR_MANAGE_ATTRIBUTES_EXTENSION_TEMPLATE %}
|
|
@@ -221,35 +220,35 @@
|
|
|
221
220
|
<div class="two column row">
|
|
222
221
|
<div class="left floated left aligned column">
|
|
223
222
|
<span class="ui" title="{{ _('Publication date') }}">
|
|
224
|
-
{{ _('Published') }} {{
|
|
223
|
+
{{ _('Published') }} {{ record_ui["ui"]["publication_date_l10n_long"] }}
|
|
225
224
|
</span>
|
|
226
225
|
<span
|
|
227
|
-
class="label text-muted"> | {{ _('Version {version_number}').format(version_number=
|
|
226
|
+
class="label text-muted"> | {{ _('Version {version_number}').format(version_number=record_ui["ui"]["version"]) }}</span>
|
|
228
227
|
</div>
|
|
229
228
|
<div class="right floated right aligned column">
|
|
230
229
|
|
|
231
|
-
{% if
|
|
230
|
+
{% if record_ui["ui"]["resource_type"] %}
|
|
232
231
|
<span role="note"
|
|
233
232
|
class="ui label horizontal small neutral mb-5"
|
|
234
233
|
aria-label="{{ _('Resource type') }}"
|
|
235
234
|
>
|
|
236
|
-
{{
|
|
235
|
+
{{ record_ui["ui"]["resource_type"]["title_l10n"] }}
|
|
237
236
|
</span>
|
|
238
237
|
{% endif %}
|
|
239
238
|
|
|
240
239
|
<span role="note"
|
|
241
|
-
class="ui label horizontal small access-status {{
|
|
242
|
-
data-tooltip="{{
|
|
240
|
+
class="ui label horizontal small access-status {{ record_ui["ui"]["access_status"]["id"] }} mb-5"
|
|
241
|
+
data-tooltip="{{ record_ui["ui"]["access_status"]["description_l10n"] }}"
|
|
243
242
|
data-inverted=""
|
|
244
243
|
aria-label="{{ _('Access status') }}"
|
|
245
244
|
>
|
|
246
|
-
{% if
|
|
247
|
-
<i class="icon {{
|
|
245
|
+
{% if record_ui["ui"]["access_status"]["icon"] %}
|
|
246
|
+
<i class="icon {{ record_ui["ui"]["access_status"]["icon"] }}"
|
|
248
247
|
aria-hidden="true"></i>
|
|
249
248
|
{% endif %}
|
|
250
249
|
<span
|
|
251
|
-
aria-label="{{
|
|
252
|
-
{{
|
|
250
|
+
aria-label="{{ record_ui["ui"]["access_status"]["description_l10n"] }}">
|
|
251
|
+
{{ record_ui["ui"]["access_status"]["title_l10n"] }}
|
|
253
252
|
</span>
|
|
254
253
|
</span>
|
|
255
254
|
</div>
|
|
@@ -267,7 +266,7 @@
|
|
|
267
266
|
<h1 id="record-title"
|
|
268
267
|
class="wrap-overflowing-text">{{ metadata.title }}</h1>
|
|
269
268
|
|
|
270
|
-
{% if
|
|
269
|
+
{% if record_ui["ui"]["creators"] or record_ui["ui"]["contributors"] %}
|
|
271
270
|
<section id="creatibutors"
|
|
272
271
|
aria-label="{{ _('Creators and contributors') }}">
|
|
273
272
|
{%- include "invenio_app_rdm/records/details/creatibutors.html" %}
|
|
@@ -284,7 +283,7 @@
|
|
|
284
283
|
{# Files #}
|
|
285
284
|
{%- block record_files -%}
|
|
286
285
|
{# record has files BUT passed files are empty. This happens when we display are request. #}
|
|
287
|
-
{%- if
|
|
286
|
+
{%- if record_ui["files"]["enabled"] -%}
|
|
288
287
|
<section id="record-files" class="rel-mt-2 rel-mb-3"
|
|
289
288
|
aria-label="{{ _('Files') }}">
|
|
290
289
|
{%- if permissions.can_read_files -%}
|
|
@@ -293,18 +292,18 @@
|
|
|
293
292
|
{%- if files|length > 0 -%}
|
|
294
293
|
<h2 id="files-heading">{{ _('Files') }}</h2>
|
|
295
294
|
{%- if files|has_previewable_files -%}
|
|
296
|
-
{%-set preview_file = files|select_preview_file(default_preview=
|
|
297
|
-
{{ preview_file_box(preview_file,
|
|
295
|
+
{%-set preview_file = files|select_preview_file(default_preview=record_ui["files"]["default_preview"]) %}
|
|
296
|
+
{{ preview_file_box(preview_file, record_ui["id"], is_preview, record, include_deleted) }}
|
|
298
297
|
{%- endif -%}
|
|
299
|
-
{{ file_list_box(files,
|
|
298
|
+
{{ file_list_box(files, record_ui["id"], is_preview, include_deleted, record, permissions) }}
|
|
300
299
|
{% endif %}
|
|
301
300
|
{% else %}
|
|
302
301
|
{# record has files BUT user does not have permission to see files #}
|
|
303
302
|
<div
|
|
304
|
-
class="ui accordion panel mb-10 {{
|
|
303
|
+
class="ui accordion panel mb-10 {{ record_ui["ui"]["access_status"]["id"] }}"
|
|
305
304
|
href="#files-preview-accordion-panel">
|
|
306
305
|
<h3
|
|
307
|
-
class="active title panel-heading {{
|
|
306
|
+
class="active title panel-heading {{ record_ui["ui"]["access_status"]["id"] }} m-0">
|
|
308
307
|
<div role="button" id="files-preview-accordion-trigger"
|
|
309
308
|
tabindex="0" class="trigger"
|
|
310
309
|
aria-controls="files-preview-accordion-panel">
|
|
@@ -316,15 +315,15 @@
|
|
|
316
315
|
aria-labelledby="files-preview-accordion-trigger"
|
|
317
316
|
class="active content preview-container pt-0">
|
|
318
317
|
<div
|
|
319
|
-
class="ui {{
|
|
320
|
-
<i class="ui {{
|
|
318
|
+
class="ui {{ record_ui["ui"]["access_status"]["message_class"] }} message file-box-message rel-pl-1 rel-pr-1">
|
|
319
|
+
<i class="ui {{ record_ui["ui"]["access_status"]["icon"] }} icon"
|
|
321
320
|
aria-hidden="true"></i>
|
|
322
321
|
<h4
|
|
323
|
-
class="inline">{{
|
|
324
|
-
<p>{{
|
|
322
|
+
class="inline">{{ record_ui["ui"]["access_status"]["title_l10n"] }}</h4>
|
|
323
|
+
<p>{{ record_ui["ui"]["access_status"]["description_l10n"] }}</p>
|
|
325
324
|
|
|
326
|
-
{% if
|
|
327
|
-
<p>{{ _("Reason") }}: {{
|
|
325
|
+
{% if record_ui["access"]["embargo"]["reason"] %}
|
|
326
|
+
<p>{{ _("Reason") }}: {{ record_ui["access"]["embargo"]["reason"] }}</p>
|
|
328
327
|
{% endif %}
|
|
329
328
|
|
|
330
329
|
{% block record_files_access_request %}
|
|
@@ -334,8 +333,8 @@
|
|
|
334
333
|
<p>
|
|
335
334
|
{{ _("If you would like to request access to these files, please fill out the form below.") }}
|
|
336
335
|
</p>
|
|
337
|
-
{%- if
|
|
338
|
-
{%- set accept_conditions_text =
|
|
336
|
+
{%- if record_ui["parent"]["access"]["settings"] %}
|
|
337
|
+
{%- set accept_conditions_text = record_ui["parent"]["access"]["settings"]["accept_conditions_text"] %}
|
|
339
338
|
{%- endif %}
|
|
340
339
|
|
|
341
340
|
{%- if accept_conditions_text %}
|
|
@@ -368,7 +367,7 @@
|
|
|
368
367
|
<section id="record-media-files" aria-label="{{ _('System files') }}">
|
|
369
368
|
{%- set media_files = media_files | order_entries | selectattr("status", "==", "completed") | list %}
|
|
370
369
|
{%- if media_files|length > 0 -%}
|
|
371
|
-
{{ media_file_list_box(media_files,
|
|
370
|
+
{{ media_file_list_box(media_files, record_ui["id"], is_preview, include_deleted, record, permissions) }}
|
|
372
371
|
{%- endif %}
|
|
373
372
|
</section>
|
|
374
373
|
{%- endif %}
|
|
@@ -431,7 +430,7 @@
|
|
|
431
430
|
{% include config.THEME_JAVASCRIPT_TEMPLATE %}
|
|
432
431
|
{% endif %}
|
|
433
432
|
{%- block record_jsonld %}
|
|
434
|
-
{% set jsonld_serialization =
|
|
433
|
+
{% set jsonld_serialization = record_ui | transform_record('SchemaorgJSONLDSerializer', throws=False) %}
|
|
435
434
|
{%- if jsonld_serialization %}
|
|
436
435
|
<script type='application/ld+json'>{{ jsonld_serialization | tojson }}</script>
|
|
437
436
|
{%- endif %}
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
</div>
|
|
34
34
|
{% endif %}
|
|
35
35
|
<div id="access-request-form-root"
|
|
36
|
-
data-record='{{
|
|
36
|
+
data-record='{{ record_ui | tojson }}'
|
|
37
37
|
data-user-anonymous='{{ current_user.is_anonymous | tojson }}'
|
|
38
38
|
data-user-full-name='{{ full_name | tojson }}'
|
|
39
39
|
data-user-email='{{ email | tojson }}'>
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
it under the terms of the MIT License; see LICENSE file for more details.
|
|
8
8
|
#}
|
|
9
9
|
|
|
10
|
-
<div id="recordCitation" data-record='{{
|
|
10
|
+
<div id="recordCitation" data-record='{{ record_ui | tojson }}'
|
|
11
11
|
data-styles='{{ config.get("RDM_CITATION_STYLES") | tojson }}'
|
|
12
12
|
data-defaultstyle='{{ config.get("RDM_CITATION_STYLES_DEFAULT") | tojson }}'
|
|
13
13
|
data-include-deleted='{{ include_deleted | tojson }}'>
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html
CHANGED
|
@@ -10,29 +10,29 @@
|
|
|
10
10
|
{%- from "invenio_app_rdm/records/macros/creatibutors.html" import affiliations_accordion, show_creatibutors %}
|
|
11
11
|
|
|
12
12
|
<div class="ui grid">
|
|
13
|
-
{% if
|
|
13
|
+
{% if record_ui["ui"]["creators"] and record_ui["ui"]["creators"]["creators"] %}
|
|
14
14
|
<div class="row ui accordion affiliations">
|
|
15
15
|
<div class="sixteen wide mobile twelve wide tablet thirteen wide computer column">
|
|
16
16
|
<h3 class="sr-only">{{ _('Creators') }}</h3>
|
|
17
17
|
<ul class="creatibutors">
|
|
18
|
-
{{ show_creatibutors(
|
|
18
|
+
{{ show_creatibutors(record_ui["ui"]["creators"]["creators"], show_affiliations=True, show_role=True) }}
|
|
19
19
|
</ul>
|
|
20
20
|
</div>
|
|
21
21
|
|
|
22
22
|
{# Todo: get full list of all affiliations (both creators & contributors) e.g.
|
|
23
|
-
|
|
24
|
-
{% if
|
|
25
|
-
{{ affiliations_accordion('creators',
|
|
23
|
+
record_ui["ui"]["affiliation"] and merge to one accordion #}
|
|
24
|
+
{% if record_ui["ui"]["creators"] and record_ui["ui"]["creators"]["affiliations"] %}
|
|
25
|
+
{{ affiliations_accordion('creators', record_ui["ui"]["creators"]["affiliations"])}}
|
|
26
26
|
{% endif %}
|
|
27
27
|
|
|
28
28
|
</div>
|
|
29
29
|
{% endif %}
|
|
30
30
|
|
|
31
|
-
{% if
|
|
31
|
+
{% if record_ui["ui"]["contributors"] and record_ui["ui"]["contributors"]["contributors"] %}
|
|
32
32
|
<div class="row ui accordion affiliations">
|
|
33
33
|
<div class="sixteen wide mobile twelve wide tablet thirteen wide computer column">
|
|
34
34
|
<h3>{{ _('Contributors') }}</h3>
|
|
35
|
-
{%- for group in
|
|
35
|
+
{%- for group in record_ui["ui"]["contributors"]["contributors"]|groupby('role.title')%}
|
|
36
36
|
<div>
|
|
37
37
|
<h3 class="creatibutors-header ui small header">{{group.grouper}}{%- if group.list|length > 1 -%}s{%- endif -%}:</h3>
|
|
38
38
|
<ul class="creatibutors">
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
{%- endfor %}
|
|
43
43
|
</div>
|
|
44
44
|
|
|
45
|
-
{% if
|
|
46
|
-
{{ affiliations_accordion('contributors',
|
|
45
|
+
{% if record_ui["ui"]["contributors"] and record_ui["ui"]["contributors"]["affiliations"] %}
|
|
46
|
+
{{ affiliations_accordion('contributors', record_ui["ui"]["contributors"]["affiliations"])}}
|
|
47
47
|
{% endif %}
|
|
48
48
|
|
|
49
49
|
</div>
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html
CHANGED
|
@@ -12,35 +12,35 @@
|
|
|
12
12
|
show_alternate_identifiers, show_related_identifiers, show_funding, show_dates %}
|
|
13
13
|
|
|
14
14
|
{% set hasContent = namespace(value=false) %}
|
|
15
|
-
{% set hasContent.value =
|
|
15
|
+
{% set hasContent.value = record_ui["ui"]["additional_titles"] or
|
|
16
16
|
metadata.identifiers or
|
|
17
|
-
|
|
17
|
+
record_ui["ui"]["related_identifiers"] or
|
|
18
18
|
metadata.funding or
|
|
19
|
-
|
|
19
|
+
record_ui["ui"]["dates"] or
|
|
20
20
|
metadata.references
|
|
21
21
|
%}
|
|
22
22
|
|
|
23
23
|
{# Check if custom field has values if no other content #}
|
|
24
|
-
{% if
|
|
24
|
+
{% if record_ui["ui"]["custom_fields"] and not hasContent.value %}
|
|
25
25
|
{% for section_cfg in custom_fields_ui %}
|
|
26
26
|
{% for field_cfg in section_cfg.fields %}
|
|
27
|
-
{% if
|
|
27
|
+
{% if record_ui["custom_fields"].get(field_cfg.field) %}
|
|
28
28
|
{% set hasContent.value = true %}
|
|
29
29
|
{% endif %}
|
|
30
30
|
{% endfor %}
|
|
31
31
|
{% endfor %}
|
|
32
32
|
{% endif %}
|
|
33
33
|
|
|
34
|
-
{% set rights =
|
|
35
|
-
{% set funding =
|
|
34
|
+
{% set rights = record_ui["ui"].get('rights') %}
|
|
35
|
+
{% set funding = record_ui["ui"].get('funding') %}
|
|
36
36
|
|
|
37
37
|
{% if hasContent.value %}
|
|
38
38
|
<h2 id="record-details-heading">{{ _('Additional details') }}</h2>
|
|
39
39
|
|
|
40
40
|
<div class="ui divider"></div>
|
|
41
41
|
|
|
42
|
-
{% if
|
|
43
|
-
{% if
|
|
42
|
+
{% if record_ui["ui"]["additional_titles"] %}
|
|
43
|
+
{% if record_ui["ui"]["additional_titles"]|length > 5 %}
|
|
44
44
|
<div class="ui fluid accordion padded grid rel-mb-1">
|
|
45
45
|
<div class="active title sixteen wide mobile four wide tablet three wide computer column">
|
|
46
46
|
<h3 class="ui header">
|
|
@@ -63,7 +63,7 @@ show_alternate_identifiers, show_related_identifiers, show_funding, show_dates %
|
|
|
63
63
|
class="active content sixteen wide mobile twelve wide tablet thirteen wide computer column"
|
|
64
64
|
>
|
|
65
65
|
<dl class="details-list">
|
|
66
|
-
{{ show_add_titles(
|
|
66
|
+
{{ show_add_titles(record_ui["ui"]["additional_titles"]) }}
|
|
67
67
|
</dl>
|
|
68
68
|
</div>
|
|
69
69
|
</div>
|
|
@@ -74,7 +74,7 @@ show_alternate_identifiers, show_related_identifiers, show_funding, show_dates %
|
|
|
74
74
|
</div>
|
|
75
75
|
<div class="sixteen wide mobile twelve wide tablet thirteen wide computer column">
|
|
76
76
|
<dl class="details-list">
|
|
77
|
-
{{ show_add_titles(
|
|
77
|
+
{{ show_add_titles(record_ui["ui"]["additional_titles"]) }}
|
|
78
78
|
</dl>
|
|
79
79
|
</div>
|
|
80
80
|
</div>
|
|
@@ -125,8 +125,8 @@ show_alternate_identifiers, show_related_identifiers, show_funding, show_dates %
|
|
|
125
125
|
<div class="ui divider"></div>
|
|
126
126
|
{% endif %}
|
|
127
127
|
|
|
128
|
-
{% if
|
|
129
|
-
{% if
|
|
128
|
+
{% if record_ui["ui"]["related_identifiers"] %}
|
|
129
|
+
{% if record_ui["ui"]["related_identifiers"]|length > 5 %}
|
|
130
130
|
<div class="ui fluid accordion padded grid rel-mb-1">
|
|
131
131
|
<div class="active title sixteen wide mobile four wide tablet three wide computer column">
|
|
132
132
|
<h3 class="ui header">
|
|
@@ -148,7 +148,7 @@ show_alternate_identifiers, show_related_identifiers, show_funding, show_dates %
|
|
|
148
148
|
aria-labelledby="related-works-accordion-trigger"
|
|
149
149
|
class="active content sixteen wide mobile twelve wide tablet thirteen wide computer column"
|
|
150
150
|
>
|
|
151
|
-
{{ show_related_identifiers(
|
|
151
|
+
{{ show_related_identifiers(record_ui["ui"]["related_identifiers"]) }}
|
|
152
152
|
</div>
|
|
153
153
|
</div>
|
|
154
154
|
{% else %}
|
|
@@ -157,7 +157,7 @@ show_alternate_identifiers, show_related_identifiers, show_funding, show_dates %
|
|
|
157
157
|
<h3 class="ui header">{{ _('Related works') }}</h3>
|
|
158
158
|
</div>
|
|
159
159
|
<div class="sixteen wide mobile twelve wide tablet thirteen wide computer column">
|
|
160
|
-
{{ show_related_identifiers(
|
|
160
|
+
{{ show_related_identifiers(record_ui["ui"]["related_identifiers"]) }}
|
|
161
161
|
</div>
|
|
162
162
|
</div>
|
|
163
163
|
{% endif %}
|
|
@@ -207,8 +207,8 @@ show_alternate_identifiers, show_related_identifiers, show_funding, show_dates %
|
|
|
207
207
|
<div class="ui divider"></div>
|
|
208
208
|
{% endif %}
|
|
209
209
|
|
|
210
|
-
{% if
|
|
211
|
-
{% if
|
|
210
|
+
{% if record_ui["ui"]["dates"] %}
|
|
211
|
+
{% if record_ui["ui"]["dates"]|length > 5 %}
|
|
212
212
|
<div class="ui fluid accordion padded grid rel-mb-1">
|
|
213
213
|
<div class="active title sixteen wide mobile four wide tablet three wide computer column">
|
|
214
214
|
<h3 class="ui header">
|
|
@@ -231,7 +231,7 @@ show_alternate_identifiers, show_related_identifiers, show_funding, show_dates %
|
|
|
231
231
|
class="active content sixteen wide mobile twelve wide tablet thirteen wide computer column"
|
|
232
232
|
>
|
|
233
233
|
<dl class="details-list">
|
|
234
|
-
{{ show_dates(
|
|
234
|
+
{{ show_dates(record_ui["ui"]["dates"]) }}
|
|
235
235
|
</dl>
|
|
236
236
|
</div>
|
|
237
237
|
</div>
|
|
@@ -242,7 +242,7 @@ show_alternate_identifiers, show_related_identifiers, show_funding, show_dates %
|
|
|
242
242
|
</div>
|
|
243
243
|
<div class="sixteen wide mobile twelve wide tablet thirteen wide computer column">
|
|
244
244
|
<dl class="details-list">
|
|
245
|
-
{{ show_dates(
|
|
245
|
+
{{ show_dates(record_ui["ui"]["dates"]) }}
|
|
246
246
|
</dl>
|
|
247
247
|
</div>
|
|
248
248
|
</div>
|
|
@@ -250,14 +250,14 @@ show_alternate_identifiers, show_related_identifiers, show_funding, show_dates %
|
|
|
250
250
|
<div class="ui divider"></div>
|
|
251
251
|
{% endif %}
|
|
252
252
|
|
|
253
|
-
{% if
|
|
253
|
+
{% if record_ui["custom_fields"] %}
|
|
254
254
|
|
|
255
255
|
{%- for section_cfg in custom_fields_ui %}
|
|
256
256
|
{% set section_has_fields = namespace(value=false) %}
|
|
257
257
|
{% set section_format = section_cfg.section | replace(" ", "-") %}
|
|
258
258
|
{# Show the section if at least one of its fields is in record #}
|
|
259
259
|
{% for field_cfg in section_cfg.fields %}
|
|
260
|
-
{% if
|
|
260
|
+
{% if record_ui["custom_fields"].get(field_cfg.field) %}
|
|
261
261
|
{% set section_has_fields.value = true %}
|
|
262
262
|
{% endif %}
|
|
263
263
|
{% endfor %}
|
|
@@ -286,7 +286,7 @@ show_alternate_identifiers, show_related_identifiers, show_funding, show_dates %
|
|
|
286
286
|
>
|
|
287
287
|
{% set section_format = section_cfg.section | replace(" ", "-") %}
|
|
288
288
|
<dl class="details-list">
|
|
289
|
-
{{ show_section_custom_fields(
|
|
289
|
+
{{ show_section_custom_fields(record_ui["ui"]["custom_fields"], section_cfg.fields) }}
|
|
290
290
|
</dl>
|
|
291
291
|
</div>
|
|
292
292
|
</div>
|
|
@@ -10,18 +10,18 @@ it under the terms of the MIT License; see LICENSE file for more details.
|
|
|
10
10
|
|
|
11
11
|
{%- from "invenio_formatter/macros/meta.html" import meta_twittercard, meta_opengraph, meta_highwire -%}
|
|
12
12
|
|
|
13
|
-
{%- set meta_title =
|
|
14
|
-
{%- set meta_description =
|
|
15
|
-
{%- set meta_authors =
|
|
16
|
-
{%- set files =
|
|
13
|
+
{%- set meta_title = record_ui["metadata"]["title"]|striptags -%}
|
|
14
|
+
{%- set meta_description = record_ui["metadata"]["description"]|striptags -%}
|
|
15
|
+
{%- set meta_authors = record_ui["metadata"]["creators"]|map(attribute='person_or_org')|map(attribute='name') -%}
|
|
16
|
+
{%- set files = record_ui["files"] %}
|
|
17
17
|
|
|
18
|
-
{{- meta_highwire(meta_title,meta_description,authors=meta_authors,publisher=meta_publisher,publication_date=
|
|
19
|
-
{{- meta_opengraph(meta_title, meta_description, url=
|
|
18
|
+
{{- meta_highwire(meta_title,meta_description,authors=meta_authors,publisher=meta_publisher,publication_date=record_ui["publication_date"]|from_isodate,doi=record_ui["pids"].get("doi", {}).get("identifier"),keywords=record_ui["metadata"]["subjects"] | map(attribute="subject"),url=record_ui["links"]["self_html"]) }}
|
|
19
|
+
{{- meta_opengraph(meta_title, meta_description, url=record_ui["links"]["self_html"]) }}
|
|
20
20
|
{{- meta_twittercard(meta_title, meta_description) }}
|
|
21
21
|
|
|
22
22
|
{%- if permissions.can_read_files -%}
|
|
23
23
|
{%- for file_name, file in files.entries.items() or {} -%}
|
|
24
|
-
{%- set file_url = url_for("invenio_app_rdm_records.record_file_download", pid_value=
|
|
24
|
+
{%- set file_url = url_for("invenio_app_rdm_records.record_file_download", pid_value=record_ui["id"], filename=file_name,
|
|
25
25
|
_external=True) %}
|
|
26
26
|
{##}
|
|
27
27
|
{%- if file.ext == "pdf" %}
|
|
@@ -33,4 +33,4 @@ _external=True) %}
|
|
|
33
33
|
{%- endfor %}
|
|
34
34
|
{% endif %}
|
|
35
35
|
|
|
36
|
-
<link rel="canonical" href="{{
|
|
36
|
+
<link rel="canonical" href="{{ record_ui["links"]["self_html"] }}">
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<div
|
|
2
2
|
id="sidebar-communities-manage"
|
|
3
3
|
data-user-communities-memberships='{{ user_communities_memberships | tojson }}'
|
|
4
|
-
data-record-community-endpoint="{{
|
|
5
|
-
data-record-community-search-endpoint="{{
|
|
6
|
-
data-record-user-community-search-endpoint="{{
|
|
7
|
-
data-pending-communities-search-config='{{ search_app_rdm_record_requests_config(app_id="InvenioAppRdm.RecordRequests", endpoint=
|
|
8
|
-
data-record-community-search-config='{{ search_app_rdm_record_communities_config(app_id="InvenioAppRdm.RecordCommunitiesSuggestions", endpoint=
|
|
9
|
-
data-record-user-community-search-config='{{ search_app_rdm_record_user_communities_config(app_id="InvenioAppRdm.RecordUserCommunitiesSuggestions", endpoint=
|
|
4
|
+
data-record-community-endpoint="{{ record_ui['links']['communities'] }}"
|
|
5
|
+
data-record-community-search-endpoint="{{ record_ui['links']['communities-suggestions'] }}"
|
|
6
|
+
data-record-user-community-search-endpoint="{{ record_ui['links']['user-communities-suggestions'] }}"
|
|
7
|
+
data-pending-communities-search-config='{{ search_app_rdm_record_requests_config(app_id="InvenioAppRdm.RecordRequests", endpoint=record_ui['links']['requests']) | tojson }}'
|
|
8
|
+
data-record-community-search-config='{{ search_app_rdm_record_communities_config(app_id="InvenioAppRdm.RecordCommunitiesSuggestions", endpoint=record_ui['links']["communities-suggestions"]) | tojson }}'
|
|
9
|
+
data-record-user-community-search-config='{{ search_app_rdm_record_user_communities_config(app_id="InvenioAppRdm.RecordUserCommunitiesSuggestions", endpoint=record_ui['links']["communities-suggestions"]) | tojson }}'
|
|
10
10
|
data-permissions='{{ permissions | tojson }}'
|
|
11
11
|
class="sidebar-container"
|
|
12
12
|
>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
{%- from "invenio_app_rdm/records/macros/detail.html" import
|
|
12
12
|
list_languages, show_dates, show_detail, show_detail_conference, show_detail_thesis %}
|
|
13
13
|
|
|
14
|
-
{%- set id_doi =
|
|
14
|
+
{%- set id_doi = record_ui["pids"].get('doi', {}).get('identifier') %}
|
|
15
15
|
|
|
16
16
|
<div class="sidebar-container">
|
|
17
17
|
<h2 class="ui medium top attached header mt-0">{{ _('Details')}}</h2>
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
{% if id_doi %}
|
|
22
22
|
{%- include "invenio_app_rdm/records/details/doi.html" %}
|
|
23
23
|
{% endif %}
|
|
24
|
-
{{ show_detail(_('Resource type'),
|
|
25
|
-
{{ show_detail(_('Publication date'),
|
|
24
|
+
{{ show_detail(_('Resource type'), record_ui["ui"]["resource_type"]["title_l10n"]) if record_ui["ui"]["resource_type"] }}
|
|
25
|
+
{{ show_detail(_('Publication date'), record_ui["ui"]["publication_date_l10n"]) if record_ui["ui"]["publication_date_l10n"] }}
|
|
26
26
|
{{ show_detail(_('Publisher'), metadata.publisher) if metadata.publisher }}
|
|
27
|
-
{{ show_detail(_('Published in'),
|
|
28
|
-
{{ show_detail(_('Imprint'),
|
|
29
|
-
{{ show_detail_thesis(_('Thesis'),
|
|
30
|
-
{{ show_detail(_('Conference'), show_detail_conference(
|
|
31
|
-
{{ show_detail(_('Languages'), list_languages(
|
|
27
|
+
{{ show_detail(_('Published in'), record_ui["ui"]["publishing_information"]["journal"]) if record_ui["ui"].get('publishing_information', {}).get('journal') }}
|
|
28
|
+
{{ show_detail(_('Imprint'), record_ui["ui"]["publishing_information"]["imprint"]) if record_ui["ui"].get('publishing_information', {}).get('imprint') }}
|
|
29
|
+
{{ show_detail_thesis(_('Thesis'), record_ui["ui"]["publishing_information"]["thesis"]) if record_ui["ui"].get('publishing_information', {}).get('thesis', {}) }}
|
|
30
|
+
{{ show_detail(_('Conference'), show_detail_conference(record_ui["ui"]["conference"])) if record_ui["ui"]["conference"] }}
|
|
31
|
+
{{ show_detail(_('Languages'), list_languages(record_ui["ui"]["languages"])) if record_ui["ui"]["languages"] }}
|
|
32
32
|
{{ show_detail(_('Formats'), ", ".join(metadata.formats)) if metadata.formats }}
|
|
33
33
|
{{ show_detail(_('Sizes'), ", ".join(metadata.sizes)) if metadata.sizes }}
|
|
34
34
|
</dl>
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
{%- for fmt, val in config.get("APP_RDM_RECORD_EXPORTERS", {}).items() -%}
|
|
21
21
|
{%- set name = val.get("name", fmt) -%}
|
|
22
22
|
{% if is_preview %}
|
|
23
|
-
{%- set export_url = url_for('invenio_app_rdm_records.record_export', pid_value=
|
|
23
|
+
{%- set export_url = url_for('invenio_app_rdm_records.record_export', pid_value=record_ui["id"], export_format=fmt, preview=1) -%}
|
|
24
24
|
{% else %}
|
|
25
|
-
{%- set export_url = url_for('invenio_app_rdm_records.record_export', pid_value=
|
|
25
|
+
{%- set export_url = url_for('invenio_app_rdm_records.record_export', pid_value=record_ui["id"], export_format=fmt) -%}
|
|
26
26
|
{% endif %}
|
|
27
27
|
|
|
28
28
|
{% set formats = formats.append({ 'name': name, 'export_url': export_url }) %}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
it under the terms of the MIT License; see LICENSE file for more details.
|
|
9
9
|
#}
|
|
10
10
|
|
|
11
|
-
{% if
|
|
11
|
+
{% if record_ui["metadata"]["subjects"] %}
|
|
12
12
|
<div class="sidebar-container">
|
|
13
13
|
<h2 class="ui medium top attached header mt-0">{{ _('Keywords and subjects') }}</h2>
|
|
14
14
|
<div id="keywords-and-subjects" aria-label="{{ _('Keywords and subjects') }}"
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
{% endif %}
|
|
20
20
|
{% endmacro %}
|
|
21
21
|
|
|
22
|
-
{% set rights =
|
|
23
|
-
{% set copyrights =
|
|
22
|
+
{% set rights = record_ui["ui"].get('rights', []) %}
|
|
23
|
+
{% set copyrights = record_ui.get('metadata', {}).get('copyright') %}
|
|
24
24
|
{% if rights or copyrights %}
|
|
25
25
|
<div class="sidebar-container">
|
|
26
26
|
<h2 class="ui medium top attached header mt-0">{{ _('Rights') }}</h2>
|
|
@@ -7,7 +7,7 @@ it under the terms of the MIT License; see LICENSE file for more details.
|
|
|
7
7
|
|
|
8
8
|
{%- from "invenio_app_rdm/records/macros/locations.html" import render_feature %}
|
|
9
9
|
|
|
10
|
-
{% set locations =
|
|
10
|
+
{% set locations = record_ui["ui"].get('locations') %}
|
|
11
11
|
|
|
12
12
|
{%- if locations %}
|
|
13
13
|
<div class="sidebar-container">
|
|
@@ -12,7 +12,7 @@ it under the terms of the MIT License; see LICENSE file for more details.
|
|
|
12
12
|
>
|
|
13
13
|
<div class="column"
|
|
14
14
|
id="recordManagement"
|
|
15
|
-
data-record='{{
|
|
15
|
+
data-record='{{ record_ui | tojson }}'
|
|
16
16
|
data-permissions='{{ permissions | tojson }}'
|
|
17
17
|
data-is-draft="{{ is_draft | tojson }}"
|
|
18
18
|
data-is-preview-submission-request="{{ is_preview_submission_request | tojson }}"
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
it under the terms of the MIT License; see LICENSE file for more details.
|
|
9
9
|
#}
|
|
10
10
|
|
|
11
|
-
{% if
|
|
11
|
+
{% if record_ui["stats"] %}
|
|
12
12
|
<section id="metrics" aria-label="{{ _('Metrics') }}" class="ui segment rdm-sidebar sidebar-container">
|
|
13
13
|
{%- include "invenio_app_rdm/records/details/stats.html" %}
|
|
14
14
|
</section>
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
<dl class="m-0">
|
|
10
10
|
<dt class="inline"><small>{{ _("Created") }}</small></dt>
|
|
11
11
|
<dd class="inline">
|
|
12
|
-
<small>{{
|
|
12
|
+
<small>{{ record_ui["ui"]["created_date_l10n_long"] }}</small>
|
|
13
13
|
</dd>
|
|
14
14
|
<div>
|
|
15
15
|
<dt class="rel-mt-1 inline"><small>{{ _("Modified") }}</small></dt>
|
|
16
16
|
<dd class="inline">
|
|
17
|
-
<small>{{
|
|
17
|
+
<small>{{ record_ui["ui"]["updated_date_l10n_long"] }}</small>
|
|
18
18
|
</dd>
|
|
19
19
|
</div>
|
|
20
20
|
</dl>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<h2 class="ui medium top attached header mt-0">{{ _('Versions')}}</h2>
|
|
13
13
|
<div id="record-versions" class="ui segment rdm-sidebar bottom attached pl-0 pr-0 pt-0">
|
|
14
14
|
<div class="versions">
|
|
15
|
-
<div id="recordVersions" data-record='{{
|
|
15
|
+
<div id="recordVersions" data-record='{{ record_ui | tojson }}' data-preview='{{ is_preview | tojson }}'>
|
|
16
16
|
<div class="rel-p-1"></div>
|
|
17
17
|
<div class="ui fluid placeholder rel-mr-1 rel-ml-1"></div>
|
|
18
18
|
<div class="header">
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
{% from "invenio_app_rdm/records/macros/stats_popup.html" import stats_popup %}
|
|
8
8
|
|
|
9
9
|
<div class="ui tiny two statistics rel-mt-1">
|
|
10
|
-
{% set all_versions =
|
|
11
|
-
{% set this_version =
|
|
10
|
+
{% set all_versions = record_ui["stats"]["all_versions"] %}
|
|
11
|
+
{% set this_version = record_ui["stats"]["this_version"] %}
|
|
12
12
|
|
|
13
13
|
<div class="ui statistic">
|
|
14
14
|
<div class="value">{{ all_versions.unique_views|compact_number(max_value=1_000_000) }}</div>
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
it under the terms of the MIT License; see LICENSE file for more details.
|
|
8
8
|
#}
|
|
9
9
|
|
|
10
|
-
{%- set subjects =
|
|
10
|
+
{%- set subjects = record_ui["metadata"]["subjects"] -%}
|
|
11
11
|
|
|
12
12
|
{% if subjects %}
|
|
13
13
|
{% set keywords = subjects|rejectattr("scheme")|list %}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
it under the terms of the MIT License; see LICENSE file for more details.
|
|
6
6
|
#}
|
|
7
7
|
|
|
8
|
-
{% macro show_doi(doi_value,
|
|
8
|
+
{% macro show_doi(doi_value, record_ui, badge_id="record-doi-badge", modal_id="doi-modal", subheader=None, parent_doi=false) %}
|
|
9
9
|
<dt class="ui tiny header">{{_('DOI')}}
|
|
10
10
|
{% if subheader %}
|
|
11
11
|
<i><span class="doi sub header">{{subheader}}</span></i></dt>
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<pre>{{ doi_value }}</pre>
|
|
28
28
|
</h4>
|
|
29
29
|
{% from "semantic-ui/invenio_formatter/macros/badges.html" import badges_formats_list %}
|
|
30
|
-
{{ badges_formats_list(url_for('invenio_formatter_badges.badge', title='DOI', value=doi_value, ext='svg', _external=True, _scheme='https'),
|
|
30
|
+
{{ badges_formats_list(url_for('invenio_formatter_badges.badge', title='DOI', value=doi_value, ext='svg', _external=True, _scheme='https'), record_ui["links"]["parent_doi"] if parent_doi else record_ui["links"]["doi"]) }}
|
|
31
31
|
</div>
|
|
32
32
|
</div>
|
|
33
33
|
</dd>
|
|
@@ -233,7 +233,8 @@ def record_detail(
|
|
|
233
233
|
return render_community_theme_template(
|
|
234
234
|
current_app.config.get("APP_RDM_RECORD_LANDING_PAGE_TEMPLATE"),
|
|
235
235
|
theme=theme,
|
|
236
|
-
record=
|
|
236
|
+
record=record,
|
|
237
|
+
record_ui=record_ui,
|
|
237
238
|
files=files_dict,
|
|
238
239
|
media_files=media_files_dict,
|
|
239
240
|
user_communities_memberships=get_user_communities_memberships(),
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html
CHANGED
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
{{ _("Conversation") }}
|
|
53
53
|
</a>
|
|
54
54
|
|
|
55
|
-
{% if
|
|
55
|
+
{% if record_ui %}
|
|
56
56
|
<a
|
|
57
57
|
role="tab"
|
|
58
58
|
class="item"
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
{% endif %}
|
|
104
104
|
|
|
105
105
|
{# The record tab content needs to be last since the HTML structure is complex and breaks following tab contents #}
|
|
106
|
-
{% if
|
|
106
|
+
{% if record_ui %}
|
|
107
107
|
<div
|
|
108
108
|
class="ui bottom attached tab segment borderless"
|
|
109
109
|
data-tab="record"
|
|
@@ -270,7 +270,8 @@ def user_dashboard_request_view(request, **kwargs):
|
|
|
270
270
|
base_template="invenio_app_rdm/users/base.html",
|
|
271
271
|
user_avatar=avatar,
|
|
272
272
|
invenio_request=request.to_dict(),
|
|
273
|
-
|
|
273
|
+
record_ui=record_ui,
|
|
274
|
+
record=record,
|
|
274
275
|
checks=checks,
|
|
275
276
|
permissions=topic["permissions"],
|
|
276
277
|
is_preview=is_draft, # preview only when draft
|
|
@@ -303,7 +304,8 @@ def user_dashboard_request_view(request, **kwargs):
|
|
|
303
304
|
f"invenio_requests/{request_type}/index.html",
|
|
304
305
|
base_template="invenio_app_rdm/users/base.html",
|
|
305
306
|
user_avatar=avatar,
|
|
306
|
-
record=
|
|
307
|
+
record=record,
|
|
308
|
+
record_ui=record_ui,
|
|
307
309
|
permissions=topic["permissions"],
|
|
308
310
|
invenio_request=request.to_dict(),
|
|
309
311
|
request_is_accepted=request_is_accepted,
|
|
@@ -351,7 +353,8 @@ def community_dashboard_request_view(request, community, community_ui, **kwargs)
|
|
|
351
353
|
theme=community.to_dict().get("theme", {}),
|
|
352
354
|
base_template="invenio_communities/details/base.html",
|
|
353
355
|
invenio_request=request.to_dict(),
|
|
354
|
-
record=
|
|
356
|
+
record=record,
|
|
357
|
+
record_ui=record_ui,
|
|
355
358
|
community=community,
|
|
356
359
|
community_ui=community_ui,
|
|
357
360
|
checks=checks,
|
{invenio_app_rdm-13.0.0b3.dev17.dist-info → invenio_app_rdm-13.0.0b3.dev18.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.dev18
|
|
4
4
|
Summary: Invenio Research Data Management.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-app-rdm
|
|
6
6
|
Author: CERN
|
|
@@ -40,6 +40,7 @@ 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-collections<1.0.0,>=0.4.0
|
|
43
44
|
Requires-Dist: invenio-communities<19.0.0,>=18.2.0
|
|
44
45
|
Requires-Dist: invenio-rdm-records<19.0.0,>=18.14.0
|
|
45
46
|
Requires-Dist: CairoSVG<3.0.0,>=2.5.2
|
|
@@ -100,6 +101,11 @@ https://inveniordm.docs.cern.ch
|
|
|
100
101
|
Changes
|
|
101
102
|
=======
|
|
102
103
|
|
|
104
|
+
Version v13.0.0b3.dev18 (released 2025-06-02)
|
|
105
|
+
|
|
106
|
+
- installation: add collections dependency
|
|
107
|
+
- views: rename record_ui correctly
|
|
108
|
+
|
|
103
109
|
Version v13.0.0b3.dev17 (released 2025-06-02)
|
|
104
110
|
|
|
105
111
|
- Move collections implementaiton to Invenio-Collections
|
{invenio_app_rdm-13.0.0b3.dev17.dist-info → invenio_app_rdm-13.0.0b3.dev18.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=naxTWzl2UqXLcnHBCAjUWuKJ-4j6NInxM5qRiHa6oxs,700
|
|
2
2
|
invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
|
|
3
3
|
invenio_app_rdm/config.py,sha256=F9VyDXDkiSXYtFkixtFUTw4x4AKaYs26HBSuJpJGDdU,51375
|
|
4
4
|
invenio_app_rdm/ext.py,sha256=PkZhATGJDgYqBJQh41NdvBZWR83mgI3Eej6rj10UVJE,5278
|
|
@@ -47,39 +47,39 @@ invenio_app_rdm/records_ui/utils.py,sha256=0ljPFPC1dAEY_ySZSIT_LRYka2bfsUyvFk_QQ
|
|
|
47
47
|
invenio_app_rdm/records_ui/previewer/__init__.py,sha256=T32i_ssGKONDpNB3gECpn20ubHvGYYVrNuIgCADioOM,267
|
|
48
48
|
invenio_app_rdm/records_ui/previewer/iiif_simple.py,sha256=lGxB3g0hNVJDWnq5jV_KrKPwC-LR1C51DMjas1-UpBM,1589
|
|
49
49
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/deposit.html,sha256=x1JF-cRmkbSSeroh2SWgKHIwGc34FaPJiaYQlwiUkQw,2413
|
|
50
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html,sha256=
|
|
50
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/detail.html,sha256=q-Aw6yvgRzN0myK-eb_7toiMmuwyjOYXJ0skChkQ83I,20852
|
|
51
51
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/draft_not_found.html,sha256=_FPflgqVZ556Xw349mHPSFb0FOhxYkIHfmUUTX53_LU,624
|
|
52
52
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/export.html,sha256=2h-FGJvNKS9ASZ0mErL2vz5jXQYiLL8u8rTO2_D3FVQ,1166
|
|
53
53
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/iiif_preview.html,sha256=RningdsVBXsJ8qnQjzurf0Ty8R5Tq08eS31s53c3DNE,444
|
|
54
54
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/restricted_with_doi_tombstone.html,sha256=d2_LrLbWG_vQuR-Gz8P2nrgGuBZONk36kGBMT6iW3uE,987
|
|
55
55
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/search.html,sha256=MdDMzWNIqvZRH-7Blvb9lBdJCA-TK0MXdPpyVWjjBo8,606
|
|
56
56
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/tombstone.html,sha256=oXt0IHIF_AL3b0zLfBgl_meMBzDupNBwFaRGD2EIofY,1902
|
|
57
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html,sha256=
|
|
58
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html,sha256=
|
|
57
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/access-form.html,sha256=rLkoNmouAMV8S6fAU3_PtGuqDjFTACniyiosGAKjcN0,2317
|
|
58
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/citation.html,sha256=kLtpjahv3CHa1NvRmSirbv7st53q9F3K7LNYTCdvCuk,564
|
|
59
59
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/contact.html,sha256=czuC-Ec5zJaKzFOaqhz7JqhWiCS3U3NKaQmPw9-rzks,403
|
|
60
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html,sha256=
|
|
61
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html,sha256=
|
|
62
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html,sha256=
|
|
60
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/creatibutors.html,sha256=43fnhdtCdec6d3s9B__7biS4vp0opvcMYh-1_jncYbA,2231
|
|
61
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/description.html,sha256=UGUy-EOWggvBRCZT-H418yMW4PzYgn-5QFcmgZx1P8U,930
|
|
62
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/details.html,sha256=Lru32FfQm1oQxTa-beZ-Q1HlGj3CFin1dgV4pOXGdeU,12278
|
|
63
63
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/doi.html,sha256=bveXC9JvZVjPKQrtZ8FFUV-fIHEN4nB1VSyomR_obxA,473
|
|
64
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html,sha256=
|
|
64
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/meta.html,sha256=CbojPWKp0PpXetywwbKW0a7jM_83t8LSbVmYiSEm-L8,1819
|
|
65
65
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar.html,sha256=PjmX-aH2YVZl67Q9ydFDOTLlrEwV2hgz64dRfftFF0A,426
|
|
66
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html,sha256=
|
|
67
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html,sha256=
|
|
66
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/stats.html,sha256=z9eiFSeJO5yw_hZjTZDot3lxXGYzBFIUvKqGhkpMt7E,4388
|
|
67
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/subjects.html,sha256=bYER2zAbf7XtM5sMXNzO1GwaLHpZQbdhhMZiMP5yRwU,1518
|
|
68
68
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/citations.html,sha256=5Sdg_gwGOgm0qLRv4-CUmDNx7PYlOsa5XPGjDdx7k20,258
|
|
69
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html,sha256=
|
|
70
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html,sha256=
|
|
71
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html,sha256=
|
|
69
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/communities.html,sha256=Mv6hMKj190MFjx_y768SgsD9KrJ0K3_bd3vzMj2SxbA,1603
|
|
70
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/details.html,sha256=J5z4zxhSZDcKE2ZEdyhcRMIKKVCyKGE6DTeGysijwRU,2123
|
|
71
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/export.html,sha256=RfPvs17eTUkWfWA6o9jRWqjUeDyTKL0XyreGR0UXLt4,1404
|
|
72
72
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/external_resources.html,sha256=Ia92YMRlxuGRTMsWU4hQTLJDeRy8BX8bnSSaLXKst4Y,1934
|
|
73
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html,sha256=
|
|
74
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html,sha256=
|
|
75
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html,sha256=
|
|
76
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html,sha256=
|
|
77
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html,sha256=
|
|
78
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html,sha256=
|
|
79
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html,sha256=
|
|
73
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/keywords_subjects.html,sha256=8FTUt6MVRvEsj89qDxP6eK2feyv2UI0fgICoT99cUIU,717
|
|
74
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/licenses.html,sha256=K1wutmzuIaS7Wq3kyii0fYXs9JM8rQkJo2o3nQG9bSY,3140
|
|
75
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/locations.html,sha256=6o5nQyXP0V158KMBsOpKMeuLGcw_lAhnZIyGpaogbMk,721
|
|
76
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/manage_menu.html,sha256=C2Y96zEZAiDmAq5gOTKLKHpUnGktCZDgihBy4LKse98,1496
|
|
77
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/metrics.html,sha256=6aS28YC8U7VDWn2vI2ckYtzm9wVWacGZ4a7Pu5D3BBI,526
|
|
78
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/technical_metadata.html,sha256=ptS8h6orgDhFFGXeZBCNBltELy_g9fUtS1bMTzieCPk,676
|
|
79
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/details/side_bar/versions.html,sha256=fIa8R0blN2rWkrP0K43qvSTye4Gt6-5yo3HN5FLdLTA,935
|
|
80
80
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/creatibutors.html,sha256=N53nwtlEZjxweCx70qFJa1s6uL1pPSzWZgk8p1vodE4,4277
|
|
81
81
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/detail.html,sha256=YEF5tR22t2QUO-tKpjsS4gKhYMZpfyjbO6wWf8LKhJw,10598
|
|
82
|
-
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html,sha256=
|
|
82
|
+
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/doi.html,sha256=_i79JuwZFbD9JcLvuryyKIY3mLV1SFnGJ_EFHRnTbbg,1510
|
|
83
83
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/files.html,sha256=Xsq_HiM_cTGKgmoE1HAXje8iYe3d0wIJoesk22Xn7vU,8761
|
|
84
84
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/locations.html,sha256=27-KyPqb05pu-yRXHvxCgZWRSi5bFP6xf7XBn91sbeA,1741
|
|
85
85
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/stats_popup.html,sha256=5SVzfIS15Aro2Itd2BiaLbMXm0cvvwk6ZCdYjuSwhBw,625
|
|
@@ -88,7 +88,7 @@ invenio_app_rdm/records_ui/views/__init__.py,sha256=9DaDls04IQv7fYttDjLofIWGsRRj
|
|
|
88
88
|
invenio_app_rdm/records_ui/views/decorators.py,sha256=MUUmgGuigmFMigcpyJbNvM0yPKUyeAw5LE6MJ69BoFA,15883
|
|
89
89
|
invenio_app_rdm/records_ui/views/deposits.py,sha256=KRR_fpl98EhNZie0Q-_uZtgG2QKsQAW2fhb-kvnQ4s4,21561
|
|
90
90
|
invenio_app_rdm/records_ui/views/filters.py,sha256=Rm55fXJv97cqq8B_6KCe-3PxxHUH4VRu-jd9fTea6r4,6994
|
|
91
|
-
invenio_app_rdm/records_ui/views/records.py,sha256=
|
|
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
|
|
93
93
|
invenio_app_rdm/redirector/resource.py,sha256=XuH6ZK0HVE5LdXoorlm8aI3deizvnZ5gFa9d1ihYosk,3312
|
|
94
94
|
invenio_app_rdm/redirector/views.py,sha256=CTJ3EGEFKfc0lFwNb9pwH7MbMLiqaWnF8LA3xGIwahc,563
|
|
@@ -96,14 +96,14 @@ invenio_app_rdm/requests_ui/__init__.py,sha256=wc2y0djrYmH9_vUq39P0IWW6R63FVXfKH
|
|
|
96
96
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-inclusion/index.html,sha256=wcJC7ZG4hznfVEEe_ydmsb1UNNTIWvUbLFhY35k-VQs,389
|
|
97
97
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/community_dashboard.html,sha256=3soWIke5l4eRAmZw2UeW6wu-AcT6ms4K_9U6DIYxMmw,1153
|
|
98
98
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-invitation/user_dashboard.html,sha256=ppUbbIROa_zED4WFTB6qqRbbJxewzjc6wKDzKhVglak,778
|
|
99
|
-
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html,sha256=
|
|
99
|
+
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/community-submission/index.html,sha256=nJIHevyCGQua_H67IV0mnFiQjNjcQYsZTieQgvP48JY,3452
|
|
100
100
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/guest-access-request/index.html,sha256=Ywy6XPMdtWBxMN8guLfO59v8UzjdT2VolNYHAVM50l8,1958
|
|
101
101
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/macros/request_header.html,sha256=Iado6BmcFFswmvQ9IrdtgSyAzJr5AIT2BP2IDg-B-8U,2695
|
|
102
102
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity/index.html,sha256=eEYjTnVL-L30Dm_1LvSNKSx3QEHRoxMGHLupvu_1nMM,1453
|
|
103
103
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/subcommunity-invitation/index.html,sha256=347Saf8Fv78uevCbK2nFiOtNFUT0QyZSZS7lgoNzHdQ,1448
|
|
104
104
|
invenio_app_rdm/requests_ui/templates/semantic-ui/invenio_requests/user-access-request/index.html,sha256=ltSP9sYPnpmCKMDYpZYU25Wxr3Dfqe2RNDxm6bVjX_I,1779
|
|
105
105
|
invenio_app_rdm/requests_ui/views/__init__.py,sha256=7QiAyRq8Eu84IXwjzxK63vNeTZnowZ5P85xtw7XgRjs,397
|
|
106
|
-
invenio_app_rdm/requests_ui/views/requests.py,sha256=
|
|
106
|
+
invenio_app_rdm/requests_ui/views/requests.py,sha256=kcjeTAsXYJTHQZiLUFkX2UI6EisJrdZQFcP0PnRm5do,16235
|
|
107
107
|
invenio_app_rdm/requests_ui/views/ui.py,sha256=DBysYQa__gOCg-pikO6HmoVLmRmMAVWeTBiYhPa7PmA,2359
|
|
108
108
|
invenio_app_rdm/theme/__init__.py,sha256=QbkxNjjOmGKRlie96HfTXgnFeVQjOX0GdiZnHP7pIhs,277
|
|
109
109
|
invenio_app_rdm/theme/views.py,sha256=mrcxejY9PlYwEqh8f0ojKX4CtmD9jz4f9rU-5aLZszU,4457
|
|
@@ -479,7 +479,7 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
|
|
|
479
479
|
invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
|
|
480
480
|
invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
|
|
481
481
|
invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
|
|
482
|
-
invenio_app_rdm-13.0.0b3.
|
|
482
|
+
invenio_app_rdm-13.0.0b3.dev18.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
483
483
|
tests/__init__.py,sha256=yKVf0yYRuxmXvyAtLjmfpHGVCsEkZOhs_FojAAM_w-8,244
|
|
484
484
|
tests/conftest.py,sha256=kxOf2CiULBuE9m-ncNv4AtofUVx7iSnvVljlsdI_iCE,11507
|
|
485
485
|
tests/test_tasks.py,sha256=YAf2mryFK6Vfzk2053XLBA2e92vbNCTWqJ6ThWhGOuQ,6645
|
|
@@ -514,8 +514,8 @@ tests/ui/test_robotstxt.py,sha256=Gn0bVPJTDRQH6DO5GGZyD6iMel1UxWRHP5MnGQZ0j18,11
|
|
|
514
514
|
tests/ui/test_signposting_ui.py,sha256=KCSjQlMD2VKlwQCyZYDwYjtVNL35x3u-ZC4ceD5y21w,3847
|
|
515
515
|
tests/ui/test_sitemaps.py,sha256=hPeGbo9v5Q55swr-ZyudAVYm7aJ6lCKV51Vtupk450Q,3180
|
|
516
516
|
tests/ui/test_stats_ui.py,sha256=LHa_0hjvpYvliSk_jknWy-90CO82jVElUfK5Ua_ZmfA,3554
|
|
517
|
-
invenio_app_rdm-13.0.0b3.
|
|
518
|
-
invenio_app_rdm-13.0.0b3.
|
|
519
|
-
invenio_app_rdm-13.0.0b3.
|
|
520
|
-
invenio_app_rdm-13.0.0b3.
|
|
521
|
-
invenio_app_rdm-13.0.0b3.
|
|
517
|
+
invenio_app_rdm-13.0.0b3.dev18.dist-info/METADATA,sha256=2SLNGl2lJ-3siWYEeFYCbCrmWOjTNWgjbFXupmtuKys,14632
|
|
518
|
+
invenio_app_rdm-13.0.0b3.dev18.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
519
|
+
invenio_app_rdm-13.0.0b3.dev18.dist-info/entry_points.txt,sha256=rfzEeOEdtGy99NlpWzeW-32CoO5XrEpBvlZwLD2Th88,2158
|
|
520
|
+
invenio_app_rdm-13.0.0b3.dev18.dist-info/top_level.txt,sha256=NqTqrntInEAci7EXcNBvouXFMqwyjVQhEI0b7izYRBY,22
|
|
521
|
+
invenio_app_rdm-13.0.0b3.dev18.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{invenio_app_rdm-13.0.0b3.dev17.dist-info → invenio_app_rdm-13.0.0b3.dev18.dist-info}/top_level.txt
RENAMED
|
File without changes
|