invenio-vocabularies 3.2.0__py2.py3-none-any.whl → 3.4.0__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.
Potentially problematic release.
This version of invenio-vocabularies might be problematic. Click here for more details.
- invenio_vocabularies/__init__.py +1 -1
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js +75 -52
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js +48 -40
- invenio_vocabularies/services/custom_fields/subject.py +1 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html +23 -0
- invenio_vocabularies/views.py +4 -2
- {invenio_vocabularies-3.2.0.dist-info → invenio_vocabularies-3.4.0.dist-info}/METADATA +9 -1
- {invenio_vocabularies-3.2.0.dist-info → invenio_vocabularies-3.4.0.dist-info}/RECORD +13 -12
- {invenio_vocabularies-3.2.0.dist-info → invenio_vocabularies-3.4.0.dist-info}/AUTHORS.rst +0 -0
- {invenio_vocabularies-3.2.0.dist-info → invenio_vocabularies-3.4.0.dist-info}/LICENSE +0 -0
- {invenio_vocabularies-3.2.0.dist-info → invenio_vocabularies-3.4.0.dist-info}/WHEEL +0 -0
- {invenio_vocabularies-3.2.0.dist-info → invenio_vocabularies-3.4.0.dist-info}/entry_points.txt +0 -0
- {invenio_vocabularies-3.2.0.dist-info → invenio_vocabularies-3.4.0.dist-info}/top_level.txt +0 -0
invenio_vocabularies/__init__.py
CHANGED
|
@@ -12,6 +12,8 @@ import { TextField, RemoteSelectField } from "react-invenio-forms";
|
|
|
12
12
|
import { i18next } from "@translations/invenio_rdm_records/i18next";
|
|
13
13
|
import _isEmpty from "lodash/isEmpty";
|
|
14
14
|
|
|
15
|
+
import Overridable from "react-overridable";
|
|
16
|
+
|
|
15
17
|
function CustomAwardForm({ deserializeFunder, selectedFunding }) {
|
|
16
18
|
function deserializeFunderToDropdown(funderItem) {
|
|
17
19
|
let funderName = null;
|
|
@@ -53,64 +55,85 @@ function CustomAwardForm({ deserializeFunder, selectedFunding }) {
|
|
|
53
55
|
|
|
54
56
|
return (
|
|
55
57
|
<Form>
|
|
56
|
-
<
|
|
58
|
+
<Overridable
|
|
59
|
+
id="InvenioVocabularies.CustomAwardForm.RemoteSelectField.Container"
|
|
57
60
|
fieldPath="selectedFunding.funder.id"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
)
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
deserializedFunder
|
|
89
|
-
|
|
61
|
+
>
|
|
62
|
+
<RemoteSelectField
|
|
63
|
+
fieldPath="selectedFunding.funder.id"
|
|
64
|
+
suggestionAPIUrl="/api/funders"
|
|
65
|
+
suggestionAPIHeaders={{
|
|
66
|
+
Accept: "application/vnd.inveniordm.v1+json",
|
|
67
|
+
}}
|
|
68
|
+
placeholder={i18next.t("Search for a funder by name")}
|
|
69
|
+
serializeSuggestions={(funders) => {
|
|
70
|
+
return funders.map((funder) =>
|
|
71
|
+
deserializeFunderToDropdown(deserializeFunder(funder))
|
|
72
|
+
);
|
|
73
|
+
}}
|
|
74
|
+
searchInput={{
|
|
75
|
+
autoFocus: _isEmpty(selectedFunding),
|
|
76
|
+
}}
|
|
77
|
+
label={i18next.t("Funder")}
|
|
78
|
+
noQueryMessage={i18next.t("Search for funder...")}
|
|
79
|
+
clearable
|
|
80
|
+
allowAdditions={false}
|
|
81
|
+
multiple={false}
|
|
82
|
+
selectOnBlur={false}
|
|
83
|
+
selectOnNavigation={false}
|
|
84
|
+
required
|
|
85
|
+
search={(options) => options}
|
|
86
|
+
isFocused
|
|
87
|
+
onValueChange={({ formikProps }, selectedFundersArray) => {
|
|
88
|
+
if (selectedFundersArray.length === 1) {
|
|
89
|
+
const selectedFunder = selectedFundersArray[0];
|
|
90
|
+
if (selectedFunder) {
|
|
91
|
+
const deserializedFunder = serializeFunderFromDropdown(selectedFunder);
|
|
92
|
+
formikProps.form.setFieldValue(
|
|
93
|
+
"selectedFunding.funder",
|
|
94
|
+
deserializedFunder
|
|
95
|
+
);
|
|
96
|
+
}
|
|
90
97
|
}
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
+
}}
|
|
99
|
+
/>
|
|
100
|
+
</Overridable>
|
|
101
|
+
<Overridable id="InvenioVocabularies.CustomAwardForm.AwardInformationHeader.Container">
|
|
102
|
+
<Header as="h3" size="small">
|
|
103
|
+
{i18next.t("Award information")} ({i18next.t("optional")})
|
|
104
|
+
</Header>
|
|
105
|
+
</Overridable>
|
|
98
106
|
<Form.Group widths="equal">
|
|
99
|
-
<
|
|
100
|
-
|
|
101
|
-
placeholder={i18next.t("Award number")}
|
|
107
|
+
<Overridable
|
|
108
|
+
id="InvenioVocabularies.CustomAwardForm.AwardNumberTextField.Container"
|
|
102
109
|
fieldPath="selectedFunding.award.number"
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
110
|
+
>
|
|
111
|
+
<TextField
|
|
112
|
+
label={i18next.t("Number")}
|
|
113
|
+
placeholder={i18next.t("Award number")}
|
|
114
|
+
fieldPath="selectedFunding.award.number"
|
|
115
|
+
/>
|
|
116
|
+
</Overridable>
|
|
117
|
+
<Overridable
|
|
118
|
+
id="InvenioVocabularies.CustomAwardForm.AwardTitleTextField.Container"
|
|
107
119
|
fieldPath="selectedFunding.award.title"
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
120
|
+
>
|
|
121
|
+
<TextField
|
|
122
|
+
label={i18next.t("Title")}
|
|
123
|
+
placeholder={i18next.t("Award Title")}
|
|
124
|
+
fieldPath="selectedFunding.award.title"
|
|
125
|
+
/>
|
|
126
|
+
</Overridable>
|
|
127
|
+
<Overridable
|
|
128
|
+
id="InvenioVocabularies.CustomAwardForm.AwardUrlTextField.Container"
|
|
112
129
|
fieldPath="selectedFunding.award.url"
|
|
113
|
-
|
|
130
|
+
>
|
|
131
|
+
<TextField
|
|
132
|
+
label={i18next.t("URL")}
|
|
133
|
+
placeholder={i18next.t("Award URL")}
|
|
134
|
+
fieldPath="selectedFunding.award.url"
|
|
135
|
+
/>
|
|
136
|
+
</Overridable>
|
|
114
137
|
</Form.Group>
|
|
115
138
|
</Form>
|
|
116
139
|
);
|
|
@@ -18,6 +18,8 @@ import FundingModal from "./FundingModal";
|
|
|
18
18
|
|
|
19
19
|
import { i18next } from "@translations/invenio_rdm_records/i18next";
|
|
20
20
|
|
|
21
|
+
import Overridable from "react-overridable";
|
|
22
|
+
|
|
21
23
|
function FundingFieldForm(props) {
|
|
22
24
|
const {
|
|
23
25
|
label,
|
|
@@ -108,46 +110,52 @@ function FundingFieldForm(props) {
|
|
|
108
110
|
);
|
|
109
111
|
})}
|
|
110
112
|
</List>
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
113
|
+
|
|
114
|
+
<Overridable id="InvenioVocabularies.FundingField.AddAwardFundingModal.Container">
|
|
115
|
+
<FundingModal
|
|
116
|
+
searchConfig={searchConfig}
|
|
117
|
+
trigger={
|
|
118
|
+
<Button
|
|
119
|
+
type="button"
|
|
120
|
+
key="custom"
|
|
121
|
+
icon
|
|
122
|
+
labelPosition="left"
|
|
123
|
+
className="mb-5"
|
|
124
|
+
>
|
|
125
|
+
<Icon name="add" />
|
|
126
|
+
{i18next.t("Add award")}
|
|
127
|
+
</Button>
|
|
128
|
+
}
|
|
129
|
+
onAwardChange={(selectedFunding) => {
|
|
130
|
+
formikArrayPush(selectedFunding);
|
|
131
|
+
}}
|
|
132
|
+
mode="standard"
|
|
133
|
+
action="add"
|
|
134
|
+
deserializeAward={deserializeAward}
|
|
135
|
+
deserializeFunder={deserializeFunder}
|
|
136
|
+
computeFundingContents={computeFundingContents}
|
|
137
|
+
/>
|
|
138
|
+
</Overridable>
|
|
139
|
+
|
|
140
|
+
<Overridable id="InvenioVocabularies.FundingField.AddCustomFundingModal.Container">
|
|
141
|
+
<FundingModal
|
|
142
|
+
searchConfig={searchConfig}
|
|
143
|
+
trigger={
|
|
144
|
+
<Button type="button" key="custom" icon labelPosition="left">
|
|
145
|
+
<Icon name="add" />
|
|
146
|
+
{i18next.t("Add custom")}
|
|
147
|
+
</Button>
|
|
148
|
+
}
|
|
149
|
+
onAwardChange={(selectedFunding) => {
|
|
150
|
+
formikArrayPush(selectedFunding);
|
|
151
|
+
}}
|
|
152
|
+
mode="custom"
|
|
153
|
+
action="add"
|
|
154
|
+
deserializeAward={deserializeAward}
|
|
155
|
+
deserializeFunder={deserializeFunder}
|
|
156
|
+
computeFundingContents={computeFundingContents}
|
|
157
|
+
/>
|
|
158
|
+
</Overridable>
|
|
151
159
|
</Form.Field>
|
|
152
160
|
</DndProvider>
|
|
153
161
|
);
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{#
|
|
2
|
+
Copyright (C) 2024-2024 CERN.
|
|
3
|
+
|
|
4
|
+
Invenio RDM Records is free software; you can redistribute it and/or modify
|
|
5
|
+
it under the terms of the MIT License; see LICENSE file for more details.
|
|
6
|
+
#}
|
|
7
|
+
|
|
8
|
+
{%- set subjects = field_value -%}
|
|
9
|
+
{% if subjects %}
|
|
10
|
+
<ul class="ui horizontal list no-bullets subjects">
|
|
11
|
+
{%- for subject in subjects %}
|
|
12
|
+
<li class="item">
|
|
13
|
+
{%- set q = 'metadata.subjects.subject:"' + subject.subject + '"' %}
|
|
14
|
+
<a href="{{ url_for('invenio_search_ui.search', q=q) }}"
|
|
15
|
+
class="subject"
|
|
16
|
+
title="{{ _('Search results for ') + subject.subject }}"
|
|
17
|
+
>
|
|
18
|
+
{{ subject.subject }}
|
|
19
|
+
</a>
|
|
20
|
+
</li>
|
|
21
|
+
{%- endfor %}
|
|
22
|
+
</ul>
|
|
23
|
+
{% endif %}
|
invenio_vocabularies/views.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2020-
|
|
3
|
+
# Copyright (C) 2020-2024 CERN.
|
|
4
4
|
# Copyright (C) 2023 Graz University of Technology.
|
|
5
5
|
#
|
|
6
6
|
# Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
@@ -11,7 +11,9 @@
|
|
|
11
11
|
|
|
12
12
|
from flask import Blueprint
|
|
13
13
|
|
|
14
|
-
blueprint = Blueprint(
|
|
14
|
+
blueprint = Blueprint(
|
|
15
|
+
"invenio_vocabularies_ext", __name__, template_folder="./templates"
|
|
16
|
+
)
|
|
15
17
|
|
|
16
18
|
|
|
17
19
|
def create_blueprint_from_app(app):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: invenio-vocabularies
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.4.0
|
|
4
4
|
Summary: "Invenio module for managing vocabularies."
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-vocabularies
|
|
6
6
|
Author: CERN
|
|
@@ -74,6 +74,14 @@ https://invenio-vocabularies.readthedocs.io/
|
|
|
74
74
|
Changes
|
|
75
75
|
=======
|
|
76
76
|
|
|
77
|
+
Version 3.4.0 (released 2024-04-19)
|
|
78
|
+
|
|
79
|
+
- templates: add subject fields UI template (#303)
|
|
80
|
+
|
|
81
|
+
Version 3.3.0 (released 2024-04-16)
|
|
82
|
+
|
|
83
|
+
- assets: add overridable awards and funding
|
|
84
|
+
|
|
77
85
|
Version 3.2.0 (released 2024-03-22)
|
|
78
86
|
|
|
79
87
|
- funding: add country and ror to funder search results
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
invenio_vocabularies/__init__.py,sha256=
|
|
1
|
+
invenio_vocabularies/__init__.py,sha256=isFHRQKyWkN_xf9gydG-Vaewcf0X83UVIMjMZn1Qr-w,377
|
|
2
2
|
invenio_vocabularies/cli.py,sha256=Ymuy0l846eJXIA4UybunSqq7P9m2N0OdTtj6nEgd1-0,6355
|
|
3
3
|
invenio_vocabularies/config.py,sha256=mLypkeVrPKZPtokvHSF-_Q7YcV4sCVONiyhGhu-34hI,3772
|
|
4
4
|
invenio_vocabularies/ext.py,sha256=ukuvkhkLPBy2AITFLojLYTIUlP2qcbHNkt6ES8i1TwY,5310
|
|
5
5
|
invenio_vocabularies/fixtures.py,sha256=nNWwH04HFASjfj1oy5kMdcQGKmVjzUuA5wSw-ER1QAg,1585
|
|
6
6
|
invenio_vocabularies/proxies.py,sha256=H_bcJXPTwGbErx-pF89ChayOZcXJXJGZW7O0xkJkYQ4,693
|
|
7
|
-
invenio_vocabularies/views.py,sha256=
|
|
7
|
+
invenio_vocabularies/views.py,sha256=JCUA6yzF_160U1oAFUIgGt4MigsLQ9MiHOInHBQw98M,1381
|
|
8
8
|
invenio_vocabularies/webpack.py,sha256=aLRm0ut3rXPb8D87pVA9mO_ODq7WOSZdsJQyU4iMLoI,1891
|
|
9
9
|
invenio_vocabularies/alembic/17c703ce1eb7_create_names_table.py,sha256=2QGs0Ofi6yd93VzIBqghNi47hrZtuLf0DylKyvVzskI,1572
|
|
10
10
|
invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py,sha256=Ywtp8qOFcI3PxUXemHdvy_VwdcUVtMFV1sFgNAmYrms,1054
|
|
@@ -23,9 +23,9 @@ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/index.js,sha
|
|
|
23
23
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/index.js,sha256=iSx-bdQkKj6XA9NAam31bdcQmFygljQnjLcFjjK3lwU,245
|
|
24
24
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/index.js,sha256=7sSg482yJODQHU4jkP-hWJjpBOw7ubFr5nPZl5D_1gQ,262
|
|
25
25
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/AwardResults.js,sha256=AgqJg9GEcJvKZR4plZsH0j7cm9C3yjT9YCPI6uvmOyc,3499
|
|
26
|
-
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js,sha256=
|
|
26
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js,sha256=PDgCRtbOXkXOQCodbxoieHenhXrXhSTMQk4LcS-AjYg,4794
|
|
27
27
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FunderDropdown.js,sha256=pPMB9Hirc8z3efquecrO_CKlfXE1ws6OqDB7fB30l5k,2431
|
|
28
|
-
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js,sha256=
|
|
28
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js,sha256=aqQ92Z0WJ4rfXz0E8KIIN4-qjORdQYxXPa5eS5b_g8A,6912
|
|
29
29
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js,sha256=z_4lWkf3h9Uin8OzSBSKY1wpUxtbnjE2kRUjW80jAhA,35
|
|
30
30
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js,sha256=ZN4dEcHCVtSVFjzb1SAYPxmaY1Qk5ZdCt1yY7j6pvQs,4610
|
|
31
31
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js,sha256=To8qRm0RoMSiGZaNWfd2TM7NFZLML-8l9Wx7De8DKyI,8112
|
|
@@ -169,8 +169,9 @@ invenio_vocabularies/services/schema.py,sha256=ShnnH_ILHZGxE546J6Jsdwdeix6jLubSR
|
|
|
169
169
|
invenio_vocabularies/services/service.py,sha256=W3wtKOttQjOr8Nkaus6m3KRuCMBqBsWUCAVv7Dj8bvM,7392
|
|
170
170
|
invenio_vocabularies/services/tasks.py,sha256=zTAWdnI5celWBKrF986wQzCmkOTGOwTghtN7U5FMZ5Q,783
|
|
171
171
|
invenio_vocabularies/services/custom_fields/__init__.py,sha256=QgvSsn-S1xLzbZ57pjjGTt5oI3HqzXHVjwGTtuPgzN8,421
|
|
172
|
-
invenio_vocabularies/services/custom_fields/subject.py,sha256=
|
|
172
|
+
invenio_vocabularies/services/custom_fields/subject.py,sha256=k-qXbCjXPTk-Xo_W5sojFpQbkntv50odROiNyJHMzL8,2234
|
|
173
173
|
invenio_vocabularies/services/custom_fields/vocabulary.py,sha256=eCvqrNloMMCCvqR49IQwzk2p4xapx5_bmQhd6ByJZFM,3019
|
|
174
|
+
invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html,sha256=h9syHkwZ6ltgjWw_0M5UoR6h6Re2imJ7uQ6M6peOyhk,686
|
|
174
175
|
invenio_vocabularies/translations/messages.pot,sha256=IzTTWdWknzmKKtl1UNUxPOwHjfBB_iidm_eeEY2kV-M,3907
|
|
175
176
|
invenio_vocabularies/translations/af/LC_MESSAGES/messages.mo,sha256=HokSco2JpukLl_j07yQ2wjKmUf8_Zzru6KQtYdyLtEo,523
|
|
176
177
|
invenio_vocabularies/translations/af/LC_MESSAGES/messages.po,sha256=XXoiqCtGELaxl6hxRj31D3DCdgBUrz0oD3MYJUpcklM,3976
|
|
@@ -266,10 +267,10 @@ invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=g1I5aNO8r
|
|
|
266
267
|
invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=vg8qC8ofpAdJ3mQz7mWM1ylKDpiNWXFs7rlMdSPkgKk,4629
|
|
267
268
|
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=cqSm8NtMAwrP9O6qbmtkDtRT1e9D93qpsJN5X9_PPVw,600
|
|
268
269
|
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=9ACePz_EpB-LfcIJajZ2kp8Q04tcdrQLOtug162ZUss,4115
|
|
269
|
-
invenio_vocabularies-3.
|
|
270
|
-
invenio_vocabularies-3.
|
|
271
|
-
invenio_vocabularies-3.
|
|
272
|
-
invenio_vocabularies-3.
|
|
273
|
-
invenio_vocabularies-3.
|
|
274
|
-
invenio_vocabularies-3.
|
|
275
|
-
invenio_vocabularies-3.
|
|
270
|
+
invenio_vocabularies-3.4.0.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
|
|
271
|
+
invenio_vocabularies-3.4.0.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
|
|
272
|
+
invenio_vocabularies-3.4.0.dist-info/METADATA,sha256=BW9iKZv2-Vn6vecbaCdP8ogzjk4YLqy9EhUtkYPC2hI,6543
|
|
273
|
+
invenio_vocabularies-3.4.0.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
|
|
274
|
+
invenio_vocabularies-3.4.0.dist-info/entry_points.txt,sha256=Cca3c5XGXkQItZ2-1oeN5xffwM8I1J3XjSvdq9-l_Bw,2497
|
|
275
|
+
invenio_vocabularies-3.4.0.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
|
|
276
|
+
invenio_vocabularies-3.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{invenio_vocabularies-3.2.0.dist-info → invenio_vocabularies-3.4.0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|