invenio-vocabularies 4.4.0__py2.py3-none-any.whl → 5.0.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.

Files changed (36) hide show
  1. invenio_vocabularies/__init__.py +1 -1
  2. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json +0 -6
  3. invenio_vocabularies/config.py +7 -1
  4. invenio_vocabularies/contrib/affiliations/affiliations.py +1 -0
  5. invenio_vocabularies/contrib/affiliations/config.py +12 -1
  6. invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json +171 -0
  7. invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json +171 -0
  8. invenio_vocabularies/contrib/common/ror/datastreams.py +34 -32
  9. invenio_vocabularies/contrib/funders/config.py +3 -1
  10. invenio_vocabularies/contrib/funders/funders.py +1 -0
  11. invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json +140 -0
  12. invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json +140 -0
  13. invenio_vocabularies/contrib/names/config.py +5 -3
  14. invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json +150 -0
  15. invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json +150 -0
  16. invenio_vocabularies/contrib/names/names.py +1 -0
  17. invenio_vocabularies/contrib/subjects/config.py +9 -3
  18. invenio_vocabularies/contrib/subjects/datastreams.py +55 -0
  19. invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +12 -0
  20. invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json +18 -0
  21. invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json +18 -0
  22. invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json +18 -0
  23. invenio_vocabularies/contrib/subjects/mesh/datastreams.py +43 -0
  24. invenio_vocabularies/contrib/subjects/schema.py +20 -2
  25. invenio_vocabularies/factories.py +13 -0
  26. invenio_vocabularies/services/config.py +1 -1
  27. invenio_vocabularies/services/service.py +1 -1
  28. invenio_vocabularies/translations/messages.pot +95 -48
  29. invenio_vocabularies/webpack.py +1 -1
  30. {invenio_vocabularies-4.4.0.dist-info → invenio_vocabularies-5.0.0.dist-info}/METADATA +5 -1
  31. {invenio_vocabularies-4.4.0.dist-info → invenio_vocabularies-5.0.0.dist-info}/RECORD +36 -28
  32. {invenio_vocabularies-4.4.0.dist-info → invenio_vocabularies-5.0.0.dist-info}/AUTHORS.rst +0 -0
  33. {invenio_vocabularies-4.4.0.dist-info → invenio_vocabularies-5.0.0.dist-info}/LICENSE +0 -0
  34. {invenio_vocabularies-4.4.0.dist-info → invenio_vocabularies-5.0.0.dist-info}/WHEEL +0 -0
  35. {invenio_vocabularies-4.4.0.dist-info → invenio_vocabularies-5.0.0.dist-info}/entry_points.txt +0 -0
  36. {invenio_vocabularies-4.4.0.dist-info → invenio_vocabularies-5.0.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,43 @@
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Copyright (C) 2022-2024 CERN.
4
+ # Copyright (C) 2024 California Institute of Technology.
5
+ #
6
+ # Invenio-Vocabularies is free software; you can redistribute it and/or
7
+ # modify it under the terms of the MIT License; see LICENSE file for more
8
+ # details.
9
+
10
+ """MeSH subjects datastreams, transformers, writers and readers."""
11
+
12
+ from invenio_vocabularies.datastreams.transformers import (
13
+ BaseTransformer,
14
+ TransformerError,
15
+ )
16
+
17
+
18
+ class MeshSubjectsTransformer(BaseTransformer):
19
+ """MeSH subjects Transformer."""
20
+
21
+ def apply(self, stream_entry, *args, **kwargs):
22
+ """Apply transformation on steam entry."""
23
+ entry_data = stream_entry.entry
24
+
25
+ # ID in MeSH data is the URL, ex. https://id.nlm.nih.gov/mesh/D000001
26
+ # We just want to use the ID prefixed by "mesh:""
27
+ try:
28
+ mesh_id = entry_data["id"].split("/")[-1]
29
+ except Exception:
30
+ raise TransformerError("Not a valid MeSH ID.")
31
+
32
+ entry_data["id"] = "mesh:" + mesh_id
33
+ return stream_entry
34
+
35
+
36
+ VOCABULARIES_DATASTREAM_READERS = {}
37
+ """MeSH datastream readers."""
38
+
39
+ VOCABULARIES_DATASTREAM_WRITERS = {}
40
+ """MeSH subject datastream writers."""
41
+
42
+ VOCABULARIES_DATASTREAM_TRANSFORMERS = {"mesh-subjects": MeshSubjectsTransformer}
43
+ """MeSH subjects datastream transformers."""
@@ -2,6 +2,7 @@
2
2
  #
3
3
  # Copyright (C) 2021 Northwestern University.
4
4
  # Copyright (C) 2021-2022 CERN.
5
+ # Copyright (C) 2024 University of Münster.
5
6
  #
6
7
  # Invenio-Vocabularies is free software; you can redistribute it and/or
7
8
  # modify it under the terms of the MIT License; see LICENSE file for more
@@ -9,10 +10,15 @@
9
10
 
10
11
  """Subjects schema."""
11
12
 
12
- from invenio_i18n import lazy_gettext as _
13
+ from invenio_i18n import get_locale
14
+ from marshmallow import fields, pre_load
13
15
  from marshmallow_utils.fields import SanitizedUnicode
14
16
 
15
- from ...services.schema import BaseVocabularySchema, ContribVocabularyRelationSchema
17
+ from ...services.schema import (
18
+ BaseVocabularySchema,
19
+ ContribVocabularyRelationSchema,
20
+ i18n_strings,
21
+ )
16
22
 
17
23
 
18
24
  class SubjectSchema(BaseVocabularySchema):
@@ -24,6 +30,16 @@ class SubjectSchema(BaseVocabularySchema):
24
30
  id = SanitizedUnicode(required=True)
25
31
  scheme = SanitizedUnicode(required=True)
26
32
  subject = SanitizedUnicode(required=True)
33
+ title = i18n_strings
34
+ synonyms = fields.List(SanitizedUnicode())
35
+
36
+ @pre_load
37
+ def add_subject_from_title(self, data, **kwargs):
38
+ """Add subject from title if not present."""
39
+ locale = get_locale().language
40
+ if "subject" not in data:
41
+ data["subject"] = data["title"].get(locale) or data["title"].values()[0]
42
+ return data
27
43
 
28
44
 
29
45
  class SubjectRelationSchema(ContribVocabularyRelationSchema):
@@ -33,3 +49,5 @@ class SubjectRelationSchema(ContribVocabularyRelationSchema):
33
49
  parent_field_name = "subjects"
34
50
  subject = SanitizedUnicode()
35
51
  scheme = SanitizedUnicode()
52
+ title = i18n_strings
53
+ synonyms = fields.List(SanitizedUnicode())
@@ -19,6 +19,7 @@ from .contrib.affiliations.datastreams import (
19
19
  from .contrib.awards.datastreams import DATASTREAM_CONFIG as awards_ds_config
20
20
  from .contrib.funders.datastreams import DATASTREAM_CONFIG as funders_ds_config
21
21
  from .contrib.names.datastreams import DATASTREAM_CONFIG as names_ds_config
22
+ from .contrib.subjects.datastreams import DATASTREAM_CONFIG as subjects_ds_config
22
23
 
23
24
 
24
25
  class VocabularyConfig:
@@ -61,6 +62,17 @@ class FundersVocabularyConfig(VocabularyConfig):
61
62
  raise NotImplementedError("Service not implemented for Funders")
62
63
 
63
64
 
65
+ class SubjectsVocabularyConfig(VocabularyConfig):
66
+ """Subjects Vocabulary Config."""
67
+
68
+ config = subjects_ds_config
69
+ vocabulary_name = "subjects"
70
+
71
+ def get_service(self):
72
+ """Get the service for the vocabulary."""
73
+ raise NotImplementedError("Service not implemented for Subjects")
74
+
75
+
64
76
  class AwardsVocabularyConfig(VocabularyConfig):
65
77
  """Awards Vocabulary Config."""
66
78
 
@@ -90,5 +102,6 @@ def get_vocabulary_config(vocabulary):
90
102
  "funders": FundersVocabularyConfig,
91
103
  "awards": AwardsVocabularyConfig,
92
104
  "affiliations": AffiliationsVocabularyConfig,
105
+ "subjects": SubjectsVocabularyConfig,
93
106
  }
94
107
  return vocab_config.get(vocabulary, VocabularyConfig)()
@@ -1,7 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  #
3
3
  # Copyright (C) 2024 CERN.
4
- # Copyright (C) 2024 Uni Münster.
4
+ # Copyright (C) 2024 University of Münster.
5
5
  #
6
6
  # Invenio-Vocabularies is free software; you can redistribute it and/or
7
7
  # modify it under the terms of the MIT License; see LICENSE file for more
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # Copyright (C) 2024 CERN.
4
4
  # Copyright (C) 2021 Northwestern University.
5
- # Copyright (C) 2024 Uni Münster.
5
+ # Copyright (C) 2024 University of Münster.
6
6
  #
7
7
  # Invenio-Vocabularies is free software; you can redistribute it and/or
8
8
  # modify it under the terms of the MIT License; see LICENSE file for more
@@ -1,138 +1,185 @@
1
1
  # Translations template for invenio-vocabularies.
2
- # Copyright (C) 2022 CERN
2
+ # Copyright (C) 2024 CERN
3
3
  # This file is distributed under the same license as the
4
4
  # invenio-vocabularies project.
5
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
5
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
6
6
  #
7
7
  #, fuzzy
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: invenio-vocabularies 0.13.2\n"
10
+ "Project-Id-Version: invenio-vocabularies 4.3.0\n"
11
11
  "Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
12
- "POT-Creation-Date: 2022-10-12 12:27+0000\n"
12
+ "POT-Creation-Date: 2024-08-06 08:57+0000\n"
13
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=utf-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
- "Generated-By: Babel 2.10.3\n"
19
+ "Generated-By: Babel 2.15.0\n"
20
20
 
21
- #: invenio_vocabularies/config.py:37
21
+ #: invenio_vocabularies/config.py:38
22
22
  msgid "GRID"
23
23
  msgstr ""
24
24
 
25
- #: invenio_vocabularies/config.py:38 invenio_vocabularies/config.py:97
25
+ #: invenio_vocabularies/config.py:39 invenio_vocabularies/config.py:103
26
26
  msgid "GND"
27
27
  msgstr ""
28
28
 
29
- #: invenio_vocabularies/config.py:39 invenio_vocabularies/config.py:96
29
+ #: invenio_vocabularies/config.py:40 invenio_vocabularies/config.py:102
30
30
  msgid "ISNI"
31
31
  msgstr ""
32
32
 
33
- #: invenio_vocabularies/config.py:40
33
+ #: invenio_vocabularies/config.py:41
34
34
  msgid "ROR"
35
35
  msgstr ""
36
36
 
37
- #: invenio_vocabularies/config.py:51 invenio_vocabularies/config.py:60
37
+ #: invenio_vocabularies/config.py:52 invenio_vocabularies/config.py:61
38
38
  msgid "DOI"
39
39
  msgstr ""
40
40
 
41
- #: invenio_vocabularies/config.py:59
41
+ #: invenio_vocabularies/config.py:60
42
42
  msgid "URL"
43
43
  msgstr ""
44
44
 
45
- #: invenio_vocabularies/config.py:95
45
+ #: invenio_vocabularies/config.py:101
46
46
  msgid "ORCID"
47
47
  msgstr ""
48
48
 
49
- #: invenio_vocabularies/contrib/affiliations/config.py:44
50
- #: invenio_vocabularies/contrib/funders/config.py:45
51
- #: invenio_vocabularies/contrib/names/config.py:45
52
- #: invenio_vocabularies/contrib/subjects/config.py:38
53
- #: invenio_vocabularies/services/service.py:64
54
- msgid "Best match"
55
- msgstr ""
56
-
57
- #: invenio_vocabularies/contrib/affiliations/config.py:48
49
+ #: invenio_vocabularies/config.py:143
50
+ #: invenio_vocabularies/contrib/affiliations/config.py:42
58
51
  #: invenio_vocabularies/contrib/funders/config.py:49
59
52
  #: invenio_vocabularies/contrib/names/config.py:49
60
53
  #: invenio_vocabularies/contrib/subjects/config.py:42
61
54
  msgid "Name"
62
55
  msgstr ""
63
56
 
64
- #: invenio_vocabularies/contrib/affiliations/config.py:52
57
+ #: invenio_vocabularies/config.py:147
58
+ msgid "Number of entries"
59
+ msgstr ""
60
+
61
+ #: invenio_vocabularies/contrib/affiliations/config.py:38
62
+ #: invenio_vocabularies/contrib/funders/config.py:45
63
+ #: invenio_vocabularies/contrib/names/config.py:45
64
+ #: invenio_vocabularies/contrib/subjects/config.py:38
65
+ #: invenio_vocabularies/services/config.py:73
66
+ msgid "Best match"
67
+ msgstr ""
68
+
69
+ #: invenio_vocabularies/contrib/affiliations/config.py:46
65
70
  #: invenio_vocabularies/contrib/funders/config.py:53
66
71
  #: invenio_vocabularies/contrib/names/config.py:53
67
72
  #: invenio_vocabularies/contrib/subjects/config.py:46
68
- #: invenio_vocabularies/services/service.py:72
73
+ #: invenio_vocabularies/services/config.py:81
69
74
  msgid "Newest"
70
75
  msgstr ""
71
76
 
72
- #: invenio_vocabularies/contrib/affiliations/config.py:56
77
+ #: invenio_vocabularies/contrib/affiliations/config.py:50
73
78
  #: invenio_vocabularies/contrib/funders/config.py:57
74
79
  #: invenio_vocabularies/contrib/names/config.py:57
75
80
  #: invenio_vocabularies/contrib/subjects/config.py:50
76
- #: invenio_vocabularies/services/service.py:76
81
+ #: invenio_vocabularies/services/config.py:85
77
82
  msgid "Oldest"
78
83
  msgstr ""
79
84
 
80
- #: invenio_vocabularies/contrib/awards/config.py:51
81
- msgid "Funders"
85
+ #: invenio_vocabularies/contrib/affiliations/schema.py:41
86
+ #: invenio_vocabularies/contrib/funders/schema.py:36
87
+ #: invenio_vocabularies/contrib/funders/schema.py:44
88
+ msgid "Name cannot be blank."
82
89
  msgstr ""
83
90
 
84
- #: invenio_vocabularies/contrib/awards/datastreams.py:47
85
- msgid "Unknown OpenAIRE funder prefix {openaire_funder_prefix}"
91
+ #: invenio_vocabularies/contrib/affiliations/schema.py:47
92
+ #: invenio_vocabularies/contrib/awards/schema.py:50
93
+ #: invenio_vocabularies/contrib/funders/schema.py:60
94
+ msgid "PID cannot be blank."
86
95
  msgstr ""
87
96
 
88
- #: invenio_vocabularies/contrib/awards/schema.py:46
89
- msgid "Number cannot be blank."
97
+ #: invenio_vocabularies/contrib/awards/config.py:49
98
+ msgid "Funders"
90
99
  msgstr ""
91
100
 
92
- #: invenio_vocabularies/contrib/awards/schema.py:53
93
- #: invenio_vocabularies/contrib/funders/schema.py:57
94
- msgid "PID cannot be blank."
101
+ #: invenio_vocabularies/contrib/awards/datastreams.py:118
102
+ msgid "Unknown OpenAIRE funder prefix {openaire_funder_prefix}"
95
103
  msgstr ""
96
104
 
97
- #: invenio_vocabularies/contrib/awards/schema.py:61
98
- #: invenio_vocabularies/contrib/funders/schema.py:65
99
- msgid "Missing PID."
105
+ #: invenio_vocabularies/contrib/awards/datastreams.py:159
106
+ msgid "Missing title attribute for award {award_id}"
107
+ msgstr ""
108
+
109
+ #: invenio_vocabularies/contrib/awards/schema.py:41
110
+ msgid "Number cannot be blank."
100
111
  msgstr ""
101
112
 
102
- #: invenio_vocabularies/contrib/awards/schema.py:103
113
+ #: invenio_vocabularies/contrib/awards/schema.py:80
103
114
  msgid "An existing id or number/title must be present."
104
115
  msgstr ""
105
116
 
106
- #: invenio_vocabularies/contrib/awards/schema.py:120
117
+ #: invenio_vocabularies/contrib/awards/schema.py:97
107
118
  msgid "At least award or funder should be present."
108
119
  msgstr ""
109
120
 
110
- #: invenio_vocabularies/contrib/funders/datastreams.py:44
121
+ #: invenio_vocabularies/contrib/common/ror/datastreams.py:123
111
122
  msgid "Id not found in ROR entry."
112
123
  msgstr ""
113
124
 
114
- #: invenio_vocabularies/contrib/funders/datastreams.py:48
115
- msgid "Name not found in ROR entry."
125
+ #: invenio_vocabularies/contrib/common/ror/datastreams.py:153
126
+ msgid "Name with type ror_display not found in ROR entry."
116
127
  msgstr ""
117
128
 
118
- #: invenio_vocabularies/contrib/funders/schema.py:35
119
- #: invenio_vocabularies/contrib/funders/schema.py:43
120
- msgid "Name cannot be blank."
129
+ #: invenio_vocabularies/contrib/funders/schema.py:73
130
+ #: invenio_vocabularies/services/schema.py:120
131
+ msgid "Missing PID."
121
132
  msgstr ""
122
133
 
123
134
  #: invenio_vocabularies/contrib/names/schema.py:53
124
135
  msgid "A name or the family name together with the given name must be present."
125
136
  msgstr ""
126
137
 
138
+ #: invenio_vocabularies/contrib/names/schema.py:68
139
+ msgid "Duplicated affiliations."
140
+ msgstr ""
141
+
127
142
  #: invenio_vocabularies/services/components.py:29
128
143
  msgid "The vocabulary type does not exists."
129
144
  msgstr ""
130
145
 
131
- #: invenio_vocabularies/services/schema.py:77
146
+ #: invenio_vocabularies/services/config.py:77
147
+ msgid "Title"
148
+ msgstr ""
149
+
150
+ #: invenio_vocabularies/services/config.py:96
151
+ msgid "ID"
152
+ msgstr ""
153
+
154
+ #: invenio_vocabularies/services/config.py:106
155
+ msgid "Ascending"
156
+ msgstr ""
157
+
158
+ #: invenio_vocabularies/services/config.py:107
159
+ msgid "Descending"
160
+ msgstr ""
161
+
162
+ #: invenio_vocabularies/services/schema.py:85
132
163
  msgid "An existing id or a free text {ftf_name} must be present."
133
164
  msgstr ""
134
165
 
135
- #: invenio_vocabularies/services/service.py:68
136
- msgid "Title"
166
+ #: invenio_vocabularies/services/custom_fields/subject.py:50
167
+ msgid "Subjects"
168
+ msgstr ""
169
+
170
+ #: invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html:16
171
+ msgid "Search results for "
172
+ msgstr ""
173
+
174
+ #: invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html:26
175
+ msgid "Settings"
176
+ msgstr ""
177
+
178
+ #: invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html:31
179
+ msgid "Schedule"
180
+ msgstr ""
181
+
182
+ #: invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html:36
183
+ msgid "Run now"
137
184
  msgstr ""
138
185
 
@@ -34,7 +34,7 @@ theme = WebpackThemeBundle(
34
34
  "react-dnd-html5-backend": "^11.1.0",
35
35
  "react-dropzone": "^11.0.0",
36
36
  "react-i18next": "^11.11.0",
37
- "react-invenio-forms": "^3.0.0",
37
+ "react-invenio-forms": "^4.0.0",
38
38
  "react-searchkit": "^2.0.0",
39
39
  "yup": "^0.32.0",
40
40
  },
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: invenio-vocabularies
3
- Version: 4.4.0
3
+ Version: 5.0.0
4
4
  Summary: "Invenio module for managing vocabularies."
5
5
  Home-page: https://github.com/inveniosoftware/invenio-vocabularies
6
6
  Author: CERN
@@ -81,6 +81,10 @@ https://invenio-vocabularies.readthedocs.io/
81
81
  Changes
82
82
  =======
83
83
 
84
+ Version v5.0.0 (released 2024-08-22)
85
+
86
+ - affiliations: dd analyzers and filters to improve results when searching affiliations
87
+
84
88
  Version v4.4.0 (released 2024-08-09)
85
89
 
86
90
  - services: use and adjust vnd.inveniordm.v1+json http accept header
@@ -1,12 +1,12 @@
1
- invenio_vocabularies/__init__.py,sha256=scEcGFp9kWsXCw3wlDVG1nWWpWSVo6szcsMw-T-RcjY,377
1
+ invenio_vocabularies/__init__.py,sha256=QgrRSZqGNKFf0ZkumBppJjoXfEavUx6ns-YUmt_f96U,377
2
2
  invenio_vocabularies/cli.py,sha256=ToGc5dcGarDwNUgUXGqHIRT-3Uv1rleyFLKenwZdyBw,5719
3
- invenio_vocabularies/config.py,sha256=hhlwenD5MDajCqmz2EmS7J5hVd2QPD2v5l_MjxM_56s,5011
3
+ invenio_vocabularies/config.py,sha256=sOkJdmnfoSftfpH7msZEC6Eyo61Q3RQ7V2mMeE5LPAM,5157
4
4
  invenio_vocabularies/ext.py,sha256=GujJ4UARd4Fxf4z7zznRk9JAgHamZuYCOdrKU5czg00,5987
5
- invenio_vocabularies/factories.py,sha256=JBvvhg5f47Cy9cJZ1-OBalh750ErycwstLj1e9Gn4W8,2903
5
+ invenio_vocabularies/factories.py,sha256=VLMoWUZ8DKoJWnKA-HoWE1NlTewrB0GvRg3ej56pVYc,3339
6
6
  invenio_vocabularies/fixtures.py,sha256=nNWwH04HFASjfj1oy5kMdcQGKmVjzUuA5wSw-ER1QAg,1585
7
7
  invenio_vocabularies/proxies.py,sha256=k7cTUgWfnCoYIuNqAj_VFi1zBN33KNNclRSVnBkObEM,711
8
8
  invenio_vocabularies/views.py,sha256=PNJ5nvc3O7ASwNe56xmqy5YaU9n3UYF3W2JwvtE_kYs,1561
9
- invenio_vocabularies/webpack.py,sha256=aLRm0ut3rXPb8D87pVA9mO_ODq7WOSZdsJQyU4iMLoI,1891
9
+ invenio_vocabularies/webpack.py,sha256=bp2vz3O8QdZwrznsV-SjAmS0g1nV9WGWqc-7ZJQY5PQ,1891
10
10
  invenio_vocabularies/administration/__init__.py,sha256=0bDp2Aw8aZth7C-q9Xn9rxeCUQQRoIUxoWWWwPvKbXA,308
11
11
  invenio_vocabularies/administration/views/__init__.py,sha256=31DP4jLG6q4HQlzSRiGLPxUjHPUCCl4N34y4XMuPP6g,313
12
12
  invenio_vocabularies/administration/views/vocabularies.py,sha256=JyKr1OYF9DO89zvWCNOtNfClO_QptdHdjvgY1kkImnw,1290
@@ -22,7 +22,7 @@ invenio_vocabularies/alembic/e1146238edd3_create_awards_table.py,sha256=XDAON1kb
22
22
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.eslintrc.yml,sha256=aERX8bU_YWne3S8Ai0FlI705MwJ1AXNb-V9W6FsAc6I,338
23
23
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.prettierrc,sha256=67zvnPdNPnqAfVYrzQJZAVa2T-lyfzJnwrDu5lo10jQ,59
24
24
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/index.js,sha256=-tppDUbPuRJHQi_m1KbuUZxQEYRZZmhLru2T80fQgAA,243
25
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json,sha256=Yrju8xr5h7AOYM6fxkcunZ162cWS2eYVxYRiHhbSpSc,768
25
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json,sha256=DEFygHSb-Fy1_Z9OxXuqZzR3i4-0L1LXDGftUh7q1Ys,650
26
26
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/index.js,sha256=NcHTRzFeT8iq-KTYR2ierbOCNPBB4cj9KnHsX55ag_U,247
27
27
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/index.js,sha256=iSx-bdQkKj6XA9NAam31bdcQmFygljQnjLcFjjK3lwU,245
28
28
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/index.js,sha256=7sSg482yJODQHU4jkP-hWJjpBOw7ubFr5nPZl5D_1gQ,262
@@ -43,9 +43,9 @@ invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/script
43
43
  invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/scripts/initCatalog.js,sha256=ghTi5iOIhT8AJoFGlxnBrHWiw2ts21dKwY_vWxmkiCE,682
44
44
  invenio_vocabularies/contrib/__init__.py,sha256=C5eDia6tAVBCrbb5hd_KnxmczyBoF87NIBUCLID-Tzc,240
45
45
  invenio_vocabularies/contrib/affiliations/__init__.py,sha256=rV8YAzBRoSKsBYcVjCNJh6j7ITuPRfurwj9HJHRjkN8,565
46
- invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=PCWBF9O7ba2yU3LftEt5pxJf14S-HymqnN4GqKhp-Mc,2027
46
+ invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=BSEjzAjLq17GGKHyPrgC5VLluvZqVnKMepIiqqLQKzo,2077
47
47
  invenio_vocabularies/contrib/affiliations/api.py,sha256=5nIOvpfcseuAAg2XgblHc8jb7TAdfU79XOBRpL-p398,326
48
- invenio_vocabularies/contrib/affiliations/config.py,sha256=u1sHeihy0B0e6w5e3HsbrC9e8A4WTLKCYPXUdcX-ZTs,1605
48
+ invenio_vocabularies/contrib/affiliations/config.py,sha256=kk-zAl7Uyi6N4qVOiCkBD9cN1KKOvDcILDHJ-zoIzJA,2084
49
49
  invenio_vocabularies/contrib/affiliations/datastreams.py,sha256=Mn62EBBkGwO09qjrXY71qDIrS2mNgarb89ez69Vw4Yk,2384
50
50
  invenio_vocabularies/contrib/affiliations/facets.py,sha256=w316MGvtdyTpRCPOpCEmMxxLraRkbFFb1VvLkFlEc9o,1229
51
51
  invenio_vocabularies/contrib/affiliations/models.py,sha256=JUcj-1ydc2Cw2Rsc24JwXE3TFBJ_6fivhUYhGq4rT8A,329
@@ -57,8 +57,10 @@ invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v
57
57
  invenio_vocabularies/contrib/affiliations/mappings/__init__.py,sha256=q7hb9lcT9KLRSGr6G7qpL8Top6wZfzj_E4uzGxnraTw,295
58
58
  invenio_vocabularies/contrib/affiliations/mappings/os-v1/__init__.py,sha256=uEiG5rFrjhpFxg5pD5j5E96_xrPojsla9PhtlOqSCw4,256
59
59
  invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json,sha256=h9xXxxEGEevtTusLAmpTSfqt7h-I1NgVa8Zm_SSROiM,2100
60
+ invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json,sha256=aB0tV3p4Wk0agcNjwGsFH77AqsWxcMqvp1iAr3H5Ges,3638
60
61
  invenio_vocabularies/contrib/affiliations/mappings/os-v2/__init__.py,sha256=qgNQbJjbfA2hSpFJtXrsUQBZdKwg-5Y1isoXzj31InE,256
61
62
  invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
63
+ invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json,sha256=aB0tV3p4Wk0agcNjwGsFH77AqsWxcMqvp1iAr3H5Ges,3638
62
64
  invenio_vocabularies/contrib/affiliations/mappings/v7/__init__.py,sha256=zr9YyyKyqMAnahKbnIFGr_Z7PXy9ONoU08i9z5cRguQ,259
63
65
  invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
64
66
  invenio_vocabularies/contrib/awards/__init__.py,sha256=KwCmwFalz-3pDs9iTa5TKUidBjLepnUMqpCBXRiQOO8,474
@@ -82,13 +84,13 @@ invenio_vocabularies/contrib/awards/mappings/v7/__init__.py,sha256=fERdPp7K7ajao
82
84
  invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=QJT2gS7SE47YTP2HdU4ESjMwHJBTzAH70JEhWWg9SXM,1528
83
85
  invenio_vocabularies/contrib/common/__init__.py,sha256=DdbGYRthEpQtObhY_YK4vOT9Zf7FFagQ6qtUjJOYw-M,247
84
86
  invenio_vocabularies/contrib/common/ror/__init__.py,sha256=3u2-fre1SQ-4nz3Ay0nxj3ntmMZ8Ujh_4eV-fyxfmtc,239
85
- invenio_vocabularies/contrib/common/ror/datastreams.py,sha256=joEiJwYawEaUggOZAQF6JrP8jHPfnAHmocK07nLMbO0,7893
87
+ invenio_vocabularies/contrib/common/ror/datastreams.py,sha256=4eRS_Z-dibN-t0alT98rfZuOAUOCrZo6462NnjUVQEM,7830
86
88
  invenio_vocabularies/contrib/funders/__init__.py,sha256=YxFXBDnT7NM8rFwxT_Ge3xXR2n17EM0alknQq7r_Bt8,478
87
89
  invenio_vocabularies/contrib/funders/api.py,sha256=QKGGeSnPHSoBfucvpaVruXT_txYidofZ080G3IxFkIo,306
88
- invenio_vocabularies/contrib/funders/config.py,sha256=BbzCRIcPxSwDllhjnGmdec5A126Zs1I4ZyVUCGi3jRA,1756
90
+ invenio_vocabularies/contrib/funders/config.py,sha256=llUYFK7hzP5DRzP8MfrgCZfFf1WNURCGvGwjnw4v2GM,2026
89
91
  invenio_vocabularies/contrib/funders/datastreams.py,sha256=3tOwcN1mK5AVqtdU6KdguouGSUurPTO-FDWTKzK1eRo,2481
90
92
  invenio_vocabularies/contrib/funders/facets.py,sha256=a068TVtt74Ncu0latb177LFK8EdnpbMOWecAKozA04M,1245
91
- invenio_vocabularies/contrib/funders/funders.py,sha256=KtUydQzQZPKtT1YMbBSIRcGc2eBmdkk5Zqavo54zK1E,2298
93
+ invenio_vocabularies/contrib/funders/funders.py,sha256=F2AQWv7IfSovThoKPEmlQbxbbmv7gNzIxDoSCaL5D0U,2338
92
94
  invenio_vocabularies/contrib/funders/models.py,sha256=RAU-_YVOUNVCn03_XGJ2czcVwXTaZPk5w7X_bMAgMOk,314
93
95
  invenio_vocabularies/contrib/funders/resources.py,sha256=He4gXd737ovdrHL-HB9dX7AGxp1BVJ9QteIO7JWUVSE,415
94
96
  invenio_vocabularies/contrib/funders/schema.py,sha256=tEOdMU2i0z_3PkXL1yD1qIJeoAy_8n22xxv8V7iltz0,2480
@@ -99,16 +101,18 @@ invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json,sha2
99
101
  invenio_vocabularies/contrib/funders/mappings/__init__.py,sha256=aSr-tZd9rsjet6leeS336gdSdZHXwZKdaPStNtVNQVk,244
100
102
  invenio_vocabularies/contrib/funders/mappings/os-v1/__init__.py,sha256=xXEX3tacmXp0I1KFtDw7ohIahozd2oIGp1UN40IhFic,251
101
103
  invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
104
+ invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json,sha256=Ydcog5QlXkUd9awPUdk2BOh266iCOALFDjaMBc30HqA,3006
102
105
  invenio_vocabularies/contrib/funders/mappings/os-v2/__init__.py,sha256=YvMRlKYTnEmyTzI9smZp_lO3w-zcK-8IpqT-jGUXEEY,251
103
106
  invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
107
+ invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json,sha256=Ydcog5QlXkUd9awPUdk2BOh266iCOALFDjaMBc30HqA,3006
104
108
  invenio_vocabularies/contrib/funders/mappings/v7/__init__.py,sha256=yFHmi3QYD65YKzLU5vMEtwAZn0gwkFYa6Db_tSbHjKE,254
105
109
  invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
106
110
  invenio_vocabularies/contrib/names/__init__.py,sha256=DBfsM7JMETZGaV5QmXEwE7zhCaAXvc2SZN6uXnW_V-c,451
107
111
  invenio_vocabularies/contrib/names/api.py,sha256=sEPn_jFX3gyoxgbdEUSIvOoPCUI8pocI6qCZO6mzCgQ,300
108
- invenio_vocabularies/contrib/names/config.py,sha256=hKDTEEBYGYOY6sMOArZjjkq2HJ6MJtRZp1geGLAFgRg,1735
112
+ invenio_vocabularies/contrib/names/config.py,sha256=8FVtMuq1NHC0cz8O-p_-Ng_IpHE9PTOVqQ7KDJIm7qA,1905
109
113
  invenio_vocabularies/contrib/names/datastreams.py,sha256=PgCUwK0qpw_r0NTA17w7eqCDhgL2xd0tIXZ9-GjOT2M,9301
110
114
  invenio_vocabularies/contrib/names/models.py,sha256=SYdtDDG-y5Wq_d06YhiVO5n8gfxPW_mx-tECsIcv5H8,308
111
- invenio_vocabularies/contrib/names/names.py,sha256=NlCyc2n7vUSGN8vA5PmgkNk8GpSF9v7OjBSBhRSQjYI,2423
115
+ invenio_vocabularies/contrib/names/names.py,sha256=Tq9dO_V1F2URzHNqt8QTHnlFjujDQxooXMlTkZ0lcaI,2459
112
116
  invenio_vocabularies/contrib/names/resources.py,sha256=Z8XqLKfFKE69zdTTvcTDmpEZ6wqiqjIH5tp0LzXTSwQ,1588
113
117
  invenio_vocabularies/contrib/names/s3client.py,sha256=c7B9_NbnXCfE4pE_yMTsT6uQ2hgbcRU-KY6nbWFuFzU,1063
114
118
  invenio_vocabularies/contrib/names/schema.py,sha256=eKhpNwBaACMEY0JWNrSUhr-40lXhkiHDRmM42KsLrYg,3354
@@ -118,28 +122,32 @@ invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=RYV
118
122
  invenio_vocabularies/contrib/names/mappings/__init__.py,sha256=l5hYJmrj83lds5GupnwCcwQn7cdJo6_4H4YYzrnBa54,242
119
123
  invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py,sha256=CKtF-xflE4QGF5P82Lj1ifEP1c7ekR24fc3SiTAkhsY,249
120
124
  invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
125
+ invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json,sha256=3tqidfdC9rWjCV59hf45wDA0EmnEAfWlei4PfkeR9fY,3253
121
126
  invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py,sha256=p38Ausy2cu1OetTQYwx-9gOFoxGrtrmqjArSDpvxfMU,249
122
127
  invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
128
+ invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json,sha256=3tqidfdC9rWjCV59hf45wDA0EmnEAfWlei4PfkeR9fY,3253
123
129
  invenio_vocabularies/contrib/names/mappings/v7/__init__.py,sha256=qLGB8C0kPI3xubcfhI8t6Wb2bLlCmVYCiwQ08bKGz9g,252
124
130
  invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
125
131
  invenio_vocabularies/contrib/subjects/__init__.py,sha256=GtXZKA6VWG1oA1fUX2Wh92nd-1i7RnnQF6RprGhxkD4,591
126
132
  invenio_vocabularies/contrib/subjects/api.py,sha256=QH8mxoLsa8qjJT1i1Tj6rRnpbH23plo2IMOJ56rnvbU,347
127
- invenio_vocabularies/contrib/subjects/config.py,sha256=0SHUKqR-EELVeEDiFjwzLY-_74ZmCxBKxC4dK_eOH8I,1535
133
+ invenio_vocabularies/contrib/subjects/config.py,sha256=12Hoy46iGaBv7DlxcCjBuJaDtmpSvPPQKrWabtaUGe0,1712
134
+ invenio_vocabularies/contrib/subjects/datastreams.py,sha256=SwhqoIjQn-6A0wm61HJ2TOFDDhCRG2EZwzeMJw_37ec,1606
128
135
  invenio_vocabularies/contrib/subjects/facets.py,sha256=qQ7_rppFBzsmrlZu4-MvOIdUcjeOmDA9gOHAcs0lWwI,695
129
136
  invenio_vocabularies/contrib/subjects/models.py,sha256=8XgbVRxDDvhWPjMWsoCriNlOKdmV_113a14yLRtlvM4,363
130
137
  invenio_vocabularies/contrib/subjects/resources.py,sha256=0KRfUMizwgIziZybk4HnIjiSsXbrCv_XmguNPwnxoo8,506
131
- invenio_vocabularies/contrib/subjects/schema.py,sha256=jWPhpCDoScf8fRs7T15kcXnprWw31OuGBKJUziQ3t8A,1120
138
+ invenio_vocabularies/contrib/subjects/schema.py,sha256=tN22MVZ-za0N4ZR-b77ItqNNYX2miHYl7inTnFW5R_w,1674
132
139
  invenio_vocabularies/contrib/subjects/services.py,sha256=s1U6HMmpjuz7rrgR0DtT9C28TC6sZEeDTsa4Jh1TXQk,864
133
140
  invenio_vocabularies/contrib/subjects/subjects.py,sha256=NwZycExLyV8l7ikGStH4GOecVuDSxFT70KoNv6qC78I,1877
134
141
  invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py,sha256=WowVUST1JoEDS3-xeHhCJvIgC9nzMkFs8XRks9zgzaM,292
135
- invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=jlKAY_0oZH2zMlK8F4oNI2Xbq0ENYhHrM_w5nM9d0Fc,914
142
+ invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=cspw-pYIwiKpEO8zx7GFFqhWb7PZkAeQCRNLWoY8Uyk,1253
136
143
  invenio_vocabularies/contrib/subjects/mappings/__init__.py,sha256=Qk-yj1ENsTmijO8ImWuDYGzXi6QQ2VjP4DbjrpRfDk8,243
137
144
  invenio_vocabularies/contrib/subjects/mappings/os-v1/__init__.py,sha256=rv2-AasC_WJFp2t9Nrhzivmw9RovRI2_msin4oHTZuk,250
138
- invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=Gr2dnAiqKgOISW2zhv4RZsssIGQPBNtPpgSu_ysHGDs,1166
145
+ invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=iZ8BByd4nOsTQ8Go5prQQ-puZOWzYIYHVjVYD39kNXo,1533
139
146
  invenio_vocabularies/contrib/subjects/mappings/os-v2/__init__.py,sha256=rQnrw1tMKR0yzlPiXBbCVHnxy_aAhwrKghrSuhhZYAc,250
140
- invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json,sha256=Gr2dnAiqKgOISW2zhv4RZsssIGQPBNtPpgSu_ysHGDs,1166
147
+ invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json,sha256=iZ8BByd4nOsTQ8Go5prQQ-puZOWzYIYHVjVYD39kNXo,1533
141
148
  invenio_vocabularies/contrib/subjects/mappings/v7/__init__.py,sha256=QK__a1749g2UN3fBqOr9jx8ccZHWAuvd6DSN4B1jJW4,258
142
- invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json,sha256=Gr2dnAiqKgOISW2zhv4RZsssIGQPBNtPpgSu_ysHGDs,1166
149
+ invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json,sha256=iZ8BByd4nOsTQ8Go5prQQ-puZOWzYIYHVjVYD39kNXo,1533
150
+ invenio_vocabularies/contrib/subjects/mesh/datastreams.py,sha256=qsi2fu-TzpI2aC9qIOkXGpNcLFkClJ5Dw5rC9ffEdjc,1318
143
151
  invenio_vocabularies/datastreams/__init__.py,sha256=VPefh6k4Q3eYxKIW8I5zXUGucntp7VHxaOR5Vhgkfmg,412
144
152
  invenio_vocabularies/datastreams/datastreams.py,sha256=SpI6ivmf2LIDS2JSkxoM2v5kRmrPoRDtAG5fuzZO4oQ,6078
145
153
  invenio_vocabularies/datastreams/errors.py,sha256=IDUZ3gNtYGrhcOgApHCms1gNNJTyJzoMPmG5JtIeYNU,678
@@ -173,13 +181,13 @@ invenio_vocabularies/resources/schema.py,sha256=6stpU9qgLGoeGib3DWnyrHj6XLPxJKbE
173
181
  invenio_vocabularies/resources/serializer.py,sha256=pwfckLdkMu1MNDkocyMg1XeX6RhbfeuV4fjDO5xKDxo,1190
174
182
  invenio_vocabularies/services/__init__.py,sha256=6mi62EG21Id6x23nx0X193I6sVTakK6jOdYNEKPxXUk,522
175
183
  invenio_vocabularies/services/components.py,sha256=d9C-24dEDM63gFm75nU-dXrrjS2zZi7Nfkv40BGnHwM,1941
176
- invenio_vocabularies/services/config.py,sha256=uXiEFDVgBT1AgTdaB7dqfYn4n4Dw6J-sOmQ_QmBuHD4,4777
184
+ invenio_vocabularies/services/config.py,sha256=H5l1PQ-72-LyLXPiouvU9_7lqWZcdKOrGVSTlyldIdE,4787
177
185
  invenio_vocabularies/services/facets.py,sha256=qvdHoGSJJr90dZHSVe0-hlO1r0LtTnFVSjrt9PNuNAg,3872
178
186
  invenio_vocabularies/services/permissions.py,sha256=nU1t_aW-RimFTWHbg9SivfzoP3P2Z5CqZ16U4jX5wN8,821
179
187
  invenio_vocabularies/services/querystr.py,sha256=X3JHVF9B0O0iLWrnW3ok_bf_8jA-Cs_oAcYYkGOm3Uw,1829
180
188
  invenio_vocabularies/services/results.py,sha256=6LZIpzWSbt9wpRNWgjA1uIM4RFooOYTkHcp5-PnIJdU,3767
181
189
  invenio_vocabularies/services/schema.py,sha256=mwIBFylpQlWw1M6h_axc-z4Yd7X3Z1S0PxJOlZGpfrQ,4634
182
- invenio_vocabularies/services/service.py,sha256=rUPeb86Jv2WXzRp-RZDHLWsouCmJcqHpCmgrpLm2Vs4,6387
190
+ invenio_vocabularies/services/service.py,sha256=cF2FV4QTyCUQwaokeqoppqeYJZeRrtbvXYdi9T4U6uQ,6397
183
191
  invenio_vocabularies/services/tasks.py,sha256=AH0XifkOypsEdh8LyjmlHnPLQK5qqUJC8cNVWGkbqks,788
184
192
  invenio_vocabularies/services/custom_fields/__init__.py,sha256=QgvSsn-S1xLzbZ57pjjGTt5oI3HqzXHVjwGTtuPgzN8,421
185
193
  invenio_vocabularies/services/custom_fields/subject.py,sha256=ZM-ZkaxoouF9lL62smOtLxsjQQZwiQs0jG3qGruP6nY,2231
@@ -187,7 +195,7 @@ invenio_vocabularies/services/custom_fields/vocabulary.py,sha256=oQwI8Aoi2Nr9k3e
187
195
  invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html,sha256=Fr8xRfKYiytuTfbtH7gfasNXwFIcjPFnXV4F5oGNUkM,681
188
196
  invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html,sha256=-gDwRctqIkSzh9ial8zfbA4o41ARM-Mq-THkcJ87U00,359
189
197
  invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html,sha256=2dfQzRFl5RwUwle245sxWGnObwJQXr-e_bBzpe_PkkA,2684
190
- invenio_vocabularies/translations/messages.pot,sha256=IzTTWdWknzmKKtl1UNUxPOwHjfBB_iidm_eeEY2kV-M,3907
198
+ invenio_vocabularies/translations/messages.pot,sha256=kyRQs0jzNzypK2rKpCCDyPbuTbMcblPCZzKr6xdnRiQ,5173
191
199
  invenio_vocabularies/translations/af/LC_MESSAGES/messages.mo,sha256=HokSco2JpukLl_j07yQ2wjKmUf8_Zzru6KQtYdyLtEo,523
192
200
  invenio_vocabularies/translations/af/LC_MESSAGES/messages.po,sha256=XXoiqCtGELaxl6hxRj31D3DCdgBUrz0oD3MYJUpcklM,3976
193
201
  invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo,sha256=Y9h5ziLiSs431qRw0iFCBhKmgVNiqgw7T244iOTqyxs,2470
@@ -282,10 +290,10 @@ invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=g1I5aNO8r
282
290
  invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=vg8qC8ofpAdJ3mQz7mWM1ylKDpiNWXFs7rlMdSPkgKk,4629
283
291
  invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=cqSm8NtMAwrP9O6qbmtkDtRT1e9D93qpsJN5X9_PPVw,600
284
292
  invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=9ACePz_EpB-LfcIJajZ2kp8Q04tcdrQLOtug162ZUss,4115
285
- invenio_vocabularies-4.4.0.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
286
- invenio_vocabularies-4.4.0.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
287
- invenio_vocabularies-4.4.0.dist-info/METADATA,sha256=hYz0Gy3C37wuawLdd36nJ9_RZiS130E4bhKN8tlZa9E,8535
288
- invenio_vocabularies-4.4.0.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
289
- invenio_vocabularies-4.4.0.dist-info/entry_points.txt,sha256=qHHFkyU3r0COsKm5gCYuhP8tfsioBggxKAiEXNAbbjM,2803
290
- invenio_vocabularies-4.4.0.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
291
- invenio_vocabularies-4.4.0.dist-info/RECORD,,
293
+ invenio_vocabularies-5.0.0.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
294
+ invenio_vocabularies-5.0.0.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
295
+ invenio_vocabularies-5.0.0.dist-info/METADATA,sha256=KEurtozDDWDh9TTPACb9QIb7M_jI_O2AZqedGjp6wFw,8662
296
+ invenio_vocabularies-5.0.0.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
297
+ invenio_vocabularies-5.0.0.dist-info/entry_points.txt,sha256=qHHFkyU3r0COsKm5gCYuhP8tfsioBggxKAiEXNAbbjM,2803
298
+ invenio_vocabularies-5.0.0.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
299
+ invenio_vocabularies-5.0.0.dist-info/RECORD,,