invenio-vocabularies 6.6.0__py2.py3-none-any.whl → 6.8.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/FundingModal.js +3 -27
- invenio_vocabularies/cli.py +2 -0
- invenio_vocabularies/config.py +43 -1
- invenio_vocabularies/contrib/affiliations/config.py +21 -10
- invenio_vocabularies/contrib/affiliations/datastreams.py +103 -1
- invenio_vocabularies/contrib/awards/datastreams.py +7 -0
- invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json +9 -0
- invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/awards/schema.py +9 -3
- invenio_vocabularies/contrib/funders/config.py +19 -12
- invenio_vocabularies/contrib/names/config.py +13 -10
- invenio_vocabularies/contrib/names/datastreams.py +182 -57
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json +11 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json +11 -0
- invenio_vocabularies/contrib/names/names.py +1 -1
- invenio_vocabularies/contrib/names/schema.py +10 -2
- invenio_vocabularies/contrib/subjects/bodc/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/bodc/datastreams.py +111 -0
- invenio_vocabularies/contrib/subjects/config.py +19 -5
- invenio_vocabularies/contrib/subjects/datastreams.py +4 -2
- invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py +56 -126
- invenio_vocabularies/contrib/subjects/gemet/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/gemet/datastreams.py +140 -0
- invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +13 -2
- invenio_vocabularies/contrib/subjects/schema.py +18 -3
- invenio_vocabularies/datastreams/datastreams.py +18 -7
- invenio_vocabularies/datastreams/factories.py +3 -1
- invenio_vocabularies/datastreams/readers.py +99 -9
- invenio_vocabularies/datastreams/transformers.py +67 -0
- invenio_vocabularies/datastreams/writers.py +6 -2
- invenio_vocabularies/factories.py +56 -0
- invenio_vocabularies/fixtures.py +2 -0
- invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json +9 -0
- invenio_vocabularies/services/config.py +1 -7
- invenio_vocabularies/services/querystr.py +5 -0
- invenio_vocabularies/services/tasks.py +2 -0
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.8.0.dist-info}/METADATA +28 -2
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.8.0.dist-info}/RECORD +46 -42
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.8.0.dist-info}/AUTHORS.rst +0 -0
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.8.0.dist-info}/LICENSE +0 -0
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.8.0.dist-info}/WHEEL +0 -0
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.8.0.dist-info}/entry_points.txt +0 -0
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.8.0.dist-info}/top_level.txt +0 -0
|
@@ -9,12 +9,18 @@
|
|
|
9
9
|
"""Transformers module."""
|
|
10
10
|
|
|
11
11
|
from abc import ABC, abstractmethod
|
|
12
|
+
from urllib.parse import urlparse
|
|
12
13
|
|
|
13
14
|
from lxml import etree
|
|
14
15
|
|
|
15
16
|
from .errors import TransformerError
|
|
16
17
|
from .xml import etree_to_dict
|
|
17
18
|
|
|
19
|
+
try:
|
|
20
|
+
import rdflib
|
|
21
|
+
except ImportError:
|
|
22
|
+
rdflib = None
|
|
23
|
+
|
|
18
24
|
|
|
19
25
|
class BaseTransformer(ABC):
|
|
20
26
|
"""Base transformer."""
|
|
@@ -61,3 +67,64 @@ class XMLTransformer(BaseTransformer):
|
|
|
61
67
|
|
|
62
68
|
stream_entry.entry = record
|
|
63
69
|
return stream_entry
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
class RDFTransformer(BaseTransformer):
|
|
73
|
+
"""Base Transformer class for RDF data to dictionary format."""
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
def skos_core(self):
|
|
77
|
+
"""Get the SKOS core namespace."""
|
|
78
|
+
return rdflib.Namespace("http://www.w3.org/2004/02/skos/core#")
|
|
79
|
+
|
|
80
|
+
def _validate_subject_url(self, subject):
|
|
81
|
+
"""Check if the subject is a valid URL."""
|
|
82
|
+
parsed = urlparse(str(subject))
|
|
83
|
+
return bool(parsed.netloc and parsed.scheme)
|
|
84
|
+
|
|
85
|
+
def _get_identifiers(self, subject):
|
|
86
|
+
"""Generate identifiers field for a valid subject URL."""
|
|
87
|
+
if self._validate_subject_url(subject):
|
|
88
|
+
return [{"scheme": "url", "identifier": str(subject)}]
|
|
89
|
+
return []
|
|
90
|
+
|
|
91
|
+
def _get_labels(self, subject, rdf_graph):
|
|
92
|
+
"""Extract labels (prefLabel or altLabel) for a subject."""
|
|
93
|
+
labels = {
|
|
94
|
+
label.language: label.value.capitalize()
|
|
95
|
+
for _, _, label in rdf_graph.triples(
|
|
96
|
+
(subject, self.skos_core.prefLabel, None)
|
|
97
|
+
)
|
|
98
|
+
if label.language and "-" not in label.language
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
if "en" not in labels:
|
|
102
|
+
for _, _, label in rdf_graph.triples(
|
|
103
|
+
(subject, self.skos_core.altLabel, None)
|
|
104
|
+
):
|
|
105
|
+
labels.setdefault(label.language, label.value.capitalize())
|
|
106
|
+
|
|
107
|
+
return labels
|
|
108
|
+
|
|
109
|
+
def _find_parents(self, subject, rdf_graph):
|
|
110
|
+
"""Find parent notations."""
|
|
111
|
+
return [
|
|
112
|
+
self._get_parent_notation(broader, rdf_graph)
|
|
113
|
+
for broader in rdf_graph.transitive_objects(subject, self.skos_core.broader)
|
|
114
|
+
if broader != subject
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
def _get_parent_notation(self, broader, rdf_graph):
|
|
118
|
+
"""Extract notation for a parent."""
|
|
119
|
+
raise NotImplementedError("This method should be implemented in a subclass.")
|
|
120
|
+
|
|
121
|
+
def _transform_entry(self, subject, rdf_graph):
|
|
122
|
+
"""Transform an RDF subject entry into the desired dictionary format."""
|
|
123
|
+
raise NotImplementedError("This method should be implemented in a subclass.")
|
|
124
|
+
|
|
125
|
+
def apply(self, stream_entry, *args, **kwargs):
|
|
126
|
+
"""Apply transformation to a stream entry."""
|
|
127
|
+
stream_entry.entry = self._transform_entry(
|
|
128
|
+
stream_entry.entry["subject"], stream_entry.entry["rdf_graph"]
|
|
129
|
+
)
|
|
130
|
+
return stream_entry
|
|
@@ -12,6 +12,7 @@ from abc import ABC, abstractmethod
|
|
|
12
12
|
from pathlib import Path
|
|
13
13
|
|
|
14
14
|
import yaml
|
|
15
|
+
from flask import current_app
|
|
15
16
|
from invenio_access.permissions import system_identity
|
|
16
17
|
from invenio_pidstore.errors import PIDAlreadyExists, PIDDoesNotExistError
|
|
17
18
|
from invenio_records.systemfields.relations.errors import InvalidRelationValue
|
|
@@ -120,11 +121,14 @@ class ServiceWriter(BaseWriter):
|
|
|
120
121
|
|
|
121
122
|
def write_many(self, stream_entries, *args, **kwargs):
|
|
122
123
|
"""Writes the input entries using a given service."""
|
|
124
|
+
current_app.logger.info(f"Writing {len(stream_entries)} entries")
|
|
123
125
|
entries = [entry.entry for entry in stream_entries]
|
|
124
126
|
entries_with_id = [(self._entry_id(entry), entry) for entry in entries]
|
|
125
|
-
|
|
127
|
+
result_list = self._service.create_or_update_many(
|
|
128
|
+
self._identity, entries_with_id
|
|
129
|
+
)
|
|
126
130
|
stream_entries_processed = []
|
|
127
|
-
for entry, result in zip(entries, results):
|
|
131
|
+
for entry, result in zip(entries, result_list.results):
|
|
128
132
|
processed_stream_entry = StreamEntry(
|
|
129
133
|
entry=entry,
|
|
130
134
|
record=result.record,
|
|
@@ -16,6 +16,9 @@ from invenio_records_resources.proxies import current_service_registry
|
|
|
16
16
|
from .contrib.affiliations.datastreams import (
|
|
17
17
|
DATASTREAM_CONFIG as affiliations_ds_config,
|
|
18
18
|
)
|
|
19
|
+
from .contrib.affiliations.datastreams import (
|
|
20
|
+
DATASTREAM_CONFIG_EDMO as affiliations_edmo_ds_config,
|
|
21
|
+
)
|
|
19
22
|
from .contrib.affiliations.datastreams import (
|
|
20
23
|
DATASTREAM_CONFIG_OPENAIRE as affiliations_openaire_ds_config,
|
|
21
24
|
)
|
|
@@ -25,7 +28,12 @@ from .contrib.awards.datastreams import (
|
|
|
25
28
|
)
|
|
26
29
|
from .contrib.funders.datastreams import DATASTREAM_CONFIG as funders_ds_config
|
|
27
30
|
from .contrib.names.datastreams import DATASTREAM_CONFIG as names_ds_config
|
|
31
|
+
from .contrib.subjects.bodc.datastreams import DATASTREAM_CONFIG as bodc_ds_config
|
|
28
32
|
from .contrib.subjects.datastreams import DATASTREAM_CONFIG as subjects_ds_config
|
|
33
|
+
from .contrib.subjects.euroscivoc.datastreams import (
|
|
34
|
+
DATASTREAM_CONFIG as euroscivoc_ds_config,
|
|
35
|
+
)
|
|
36
|
+
from .contrib.subjects.gemet.datastreams import DATASTREAM_CONFIG as gemet_ds_config
|
|
29
37
|
|
|
30
38
|
|
|
31
39
|
class VocabularyConfig:
|
|
@@ -123,6 +131,50 @@ class AffiliationsOpenAIREVocabularyConfig(VocabularyConfig):
|
|
|
123
131
|
raise NotImplementedError("Service not implemented for OpenAIRE Affiliations")
|
|
124
132
|
|
|
125
133
|
|
|
134
|
+
class AffiliationsEDMOVocabularyConfig(VocabularyConfig):
|
|
135
|
+
"""European Directory of Marine Organisations (EDMO) Affiliations Vocabulary Config."""
|
|
136
|
+
|
|
137
|
+
config = affiliations_edmo_ds_config
|
|
138
|
+
vocabulary_name = "affiliations:edmo"
|
|
139
|
+
|
|
140
|
+
def get_service(self):
|
|
141
|
+
"""Get the service for the vocabulary."""
|
|
142
|
+
raise NotImplementedError("Service not implemented for EDMO Affiliations")
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
class SubjectsEuroSciVocVocabularyConfig(VocabularyConfig):
|
|
146
|
+
"""EuroSciVoc Subjects Vocabulary Config."""
|
|
147
|
+
|
|
148
|
+
config = euroscivoc_ds_config
|
|
149
|
+
vocabulary_name = "subjects:euroscivoc"
|
|
150
|
+
|
|
151
|
+
def get_service(self):
|
|
152
|
+
"""Get the service for the vocabulary."""
|
|
153
|
+
raise NotImplementedError("Service not implemented for EuroSciVoc Subjects")
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
class SubjectsGEMETVocabularyConfig(VocabularyConfig):
|
|
157
|
+
"""GEMET Subjects Vocabulary Config."""
|
|
158
|
+
|
|
159
|
+
config = gemet_ds_config
|
|
160
|
+
vocabulary_name = "subjects:gemet"
|
|
161
|
+
|
|
162
|
+
def get_service(self):
|
|
163
|
+
"""Get the service for the vocabulary."""
|
|
164
|
+
raise NotImplementedError("Service not implemented for GEMET Subjects")
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
class SubjectsBODCVocabularyConfig(VocabularyConfig):
|
|
168
|
+
"""BODC Subjects Vocabulary Config."""
|
|
169
|
+
|
|
170
|
+
config = bodc_ds_config
|
|
171
|
+
vocabulary_name = "subjects:bodc-puv"
|
|
172
|
+
|
|
173
|
+
def get_service(self):
|
|
174
|
+
"""Get the service for the vocabulary."""
|
|
175
|
+
raise NotImplementedError("Service not implemented for BODC Subjects")
|
|
176
|
+
|
|
177
|
+
|
|
126
178
|
def get_vocabulary_config(vocabulary):
|
|
127
179
|
"""Factory function to get the appropriate Vocabulary Config."""
|
|
128
180
|
vocab_config = {
|
|
@@ -132,6 +184,10 @@ def get_vocabulary_config(vocabulary):
|
|
|
132
184
|
"awards:cordis": AwardsCordisVocabularyConfig,
|
|
133
185
|
"affiliations": AffiliationsVocabularyConfig,
|
|
134
186
|
"affiliations:openaire": AffiliationsOpenAIREVocabularyConfig,
|
|
187
|
+
"affiliations:edmo": AffiliationsEDMOVocabularyConfig,
|
|
135
188
|
"subjects": SubjectsVocabularyConfig,
|
|
189
|
+
"subjects:gemet": SubjectsGEMETVocabularyConfig,
|
|
190
|
+
"subjects:bodc": SubjectsBODCVocabularyConfig,
|
|
191
|
+
"subjects:euroscivoc": SubjectsEuroSciVocVocabularyConfig,
|
|
136
192
|
}
|
|
137
193
|
return vocab_config.get(vocabulary, VocabularyConfig)()
|
invenio_vocabularies/fixtures.py
CHANGED
|
@@ -28,6 +28,8 @@ class VocabularyFixture:
|
|
|
28
28
|
readers_config=config["readers"],
|
|
29
29
|
transformers_config=config.get("transformers"),
|
|
30
30
|
writers_config=config["writers"],
|
|
31
|
+
batch_size=config.get("batch_size", 1000),
|
|
32
|
+
write_many=config.get("write_many", False),
|
|
31
33
|
)
|
|
32
34
|
|
|
33
35
|
errors = []
|
|
@@ -8,6 +8,15 @@
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
|
+
"description": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"description": "Description of vocabulary item. Keys are locale codes.",
|
|
14
|
+
"patternProperties": {
|
|
15
|
+
"^[a-z]{2}$": {
|
|
16
|
+
"type": "string"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
11
20
|
"icon": {
|
|
12
21
|
"type": "string"
|
|
13
22
|
},
|
|
@@ -14,17 +14,11 @@ from flask import current_app
|
|
|
14
14
|
from invenio_i18n import lazy_gettext as _
|
|
15
15
|
from invenio_records_resources.services import (
|
|
16
16
|
Link,
|
|
17
|
-
LinksTemplate,
|
|
18
|
-
RecordService,
|
|
19
17
|
RecordServiceConfig,
|
|
20
18
|
SearchOptions,
|
|
21
19
|
pagination_links,
|
|
22
20
|
)
|
|
23
|
-
from invenio_records_resources.services.base import
|
|
24
|
-
ConditionalLink,
|
|
25
|
-
Service,
|
|
26
|
-
ServiceListResult,
|
|
27
|
-
)
|
|
21
|
+
from invenio_records_resources.services.base import ConditionalLink
|
|
28
22
|
from invenio_records_resources.services.records.components import DataComponent
|
|
29
23
|
from invenio_records_resources.services.records.params import (
|
|
30
24
|
FilterParam,
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
"""Querystring parsing."""
|
|
10
10
|
|
|
11
|
+
import warnings
|
|
11
12
|
from functools import partial
|
|
12
13
|
|
|
13
14
|
from invenio_records_resources.services.records.params import SuggestQueryParser
|
|
@@ -20,6 +21,10 @@ class FilteredSuggestQueryParser(SuggestQueryParser):
|
|
|
20
21
|
@classmethod
|
|
21
22
|
def factory(cls, filter_field=None, **extra_params):
|
|
22
23
|
"""Create a prepared instance of the query parser."""
|
|
24
|
+
warnings.warn(
|
|
25
|
+
"FilteredSuggestQueryParser is deprecated, use SuggestQueryParser or CompositeSuggestQueryParser instead",
|
|
26
|
+
DeprecationWarning,
|
|
27
|
+
)
|
|
23
28
|
return partial(cls, filter_field=filter_field, extra_params=extra_params)
|
|
24
29
|
|
|
25
30
|
def __init__(self, identity=None, filter_field=None, extra_params=None):
|
|
@@ -20,6 +20,8 @@ def process_datastream(config):
|
|
|
20
20
|
readers_config=config["readers"],
|
|
21
21
|
transformers_config=config.get("transformers"),
|
|
22
22
|
writers_config=config["writers"],
|
|
23
|
+
batch_size=config.get("batch_size", 1000),
|
|
24
|
+
write_many=config.get("write_many", False),
|
|
23
25
|
)
|
|
24
26
|
|
|
25
27
|
for result in ds.process():
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: invenio-vocabularies
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.8.0
|
|
4
4
|
Summary: Invenio module for managing vocabularies.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-vocabularies
|
|
6
6
|
Author: CERN
|
|
@@ -15,9 +15,10 @@ Requires-Dist: invenio-records-resources <7.0.0,>=6.0.0
|
|
|
15
15
|
Requires-Dist: invenio-administration <3.0.0,>=2.0.0
|
|
16
16
|
Requires-Dist: invenio-jobs <2.0.0,>=1.0.0
|
|
17
17
|
Requires-Dist: lxml >=4.5.0
|
|
18
|
+
Requires-Dist: pycountry <23.0.0,>=22.3.5
|
|
18
19
|
Requires-Dist: PyYAML >=5.4.1
|
|
19
20
|
Requires-Dist: regex >=2024.7.24
|
|
20
|
-
Requires-Dist:
|
|
21
|
+
Requires-Dist: SPARQLWrapper >=2.0.0
|
|
21
22
|
Provides-Extra: elasticsearch7
|
|
22
23
|
Requires-Dist: invenio-search[elasticsearch7] <3.0.0,>=2.1.0 ; extra == 'elasticsearch7'
|
|
23
24
|
Provides-Extra: mysql
|
|
@@ -28,8 +29,12 @@ Requires-Dist: invenio-search[opensearch1] <3.0.0,>=2.1.0 ; extra == 'opensearch
|
|
|
28
29
|
Provides-Extra: opensearch2
|
|
29
30
|
Requires-Dist: invenio-search[opensearch2] <3.0.0,>=2.1.0 ; extra == 'opensearch2'
|
|
30
31
|
Provides-Extra: postgresql
|
|
32
|
+
Provides-Extra: rdf
|
|
33
|
+
Requires-Dist: rdflib >=7.0.0 ; extra == 'rdf'
|
|
31
34
|
Provides-Extra: s3fs
|
|
32
35
|
Requires-Dist: s3fs >=2024.6.1 ; extra == 's3fs'
|
|
36
|
+
Provides-Extra: sparql
|
|
37
|
+
Requires-Dist: SPARQLWrapper >=2.0.0 ; extra == 'sparql'
|
|
33
38
|
Provides-Extra: sqlite
|
|
34
39
|
Provides-Extra: tests
|
|
35
40
|
Requires-Dist: pytest-black-ng >=0.4.0 ; extra == 'tests'
|
|
@@ -83,6 +88,27 @@ https://invenio-vocabularies.readthedocs.io/
|
|
|
83
88
|
Changes
|
|
84
89
|
=======
|
|
85
90
|
|
|
91
|
+
Version v6.8.0 (released 2024-12-09)
|
|
92
|
+
|
|
93
|
+
- names: extract affiliation identifiers from employments
|
|
94
|
+
- names: optimize memory usage on ORCID sync
|
|
95
|
+
- subjects: improve search with CompositeSuggestQueryParser
|
|
96
|
+
- subjects: added datastream for bodc
|
|
97
|
+
|
|
98
|
+
Version v6.7.0 (released 2024-11-27)
|
|
99
|
+
|
|
100
|
+
- contrib: improve search accuracy for names, funders, affiliations
|
|
101
|
+
- names: add affiliation acronym in mappings and schema
|
|
102
|
+
* Dereferences the affiliation `acronym` when indexing names and serving
|
|
103
|
+
REST API results. This is useful for disambiguating authors in search.
|
|
104
|
+
- affiliations: move RDF and SPARQL as extra dependencies
|
|
105
|
+
* Moves `rdflib` and `SPARQLWrapper` to extras.
|
|
106
|
+
- affiliation: refactored edmo datastreams
|
|
107
|
+
- subjects: added datastream for GEMET vocabulary
|
|
108
|
+
- awards/schema.py: read app config for alternate funding validation (#429)
|
|
109
|
+
- awards: fix description field and mappings
|
|
110
|
+
- awards: add fields start/end date and description
|
|
111
|
+
|
|
86
112
|
Version v6.6.0 (released 2024-11-15)
|
|
87
113
|
|
|
88
114
|
- mesh: add title en if not present
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
invenio_vocabularies/__init__.py,sha256=
|
|
2
|
-
invenio_vocabularies/cli.py,sha256=
|
|
3
|
-
invenio_vocabularies/config.py,sha256=
|
|
1
|
+
invenio_vocabularies/__init__.py,sha256=pBiqJjlbk7PPRcqwNa2BknQDAQRkYYKzQkADgnr1gh4,377
|
|
2
|
+
invenio_vocabularies/cli.py,sha256=CpXTTIn2GTpUqNfLEMlRAp3JWst8ZjHVxoGYdhuuv_4,5959
|
|
3
|
+
invenio_vocabularies/config.py,sha256=h9Iied753mmZwZZHe5COMqUYvV-zSQtx763EIkUVb1Q,6973
|
|
4
4
|
invenio_vocabularies/ext.py,sha256=GujJ4UARd4Fxf4z7zznRk9JAgHamZuYCOdrKU5czg00,5987
|
|
5
|
-
invenio_vocabularies/factories.py,sha256=
|
|
6
|
-
invenio_vocabularies/fixtures.py,sha256=
|
|
5
|
+
invenio_vocabularies/factories.py,sha256=lRHPGPos6GdXf0yAhB1d7iMjVfpOeFDZRL9PPZvuWlY,6408
|
|
6
|
+
invenio_vocabularies/fixtures.py,sha256=iEPkWf_ZjdP2D9r2sLdIlPoR8Rq2m5cnoFwywUGHneg,1696
|
|
7
7
|
invenio_vocabularies/jobs.py,sha256=0aTukWooBPCvEgvnjJcQAZuMeS2H_m-RGULNIfJ5Gmc,6800
|
|
8
8
|
invenio_vocabularies/proxies.py,sha256=k7cTUgWfnCoYIuNqAj_VFi1zBN33KNNclRSVnBkObEM,711
|
|
9
9
|
invenio_vocabularies/views.py,sha256=PNJ5nvc3O7ASwNe56xmqy5YaU9n3UYF3W2JwvtE_kYs,1561
|
|
@@ -33,7 +33,7 @@ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/form
|
|
|
33
33
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js,sha256=wXJz4ZL7J0ZPppcP-qd6U5Mnupf2hkog4zxMrQ9xZtI,6906
|
|
34
34
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js,sha256=z_4lWkf3h9Uin8OzSBSKY1wpUxtbnjE2kRUjW80jAhA,35
|
|
35
35
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js,sha256=ZN4dEcHCVtSVFjzb1SAYPxmaY1Qk5ZdCt1yY7j6pvQs,4610
|
|
36
|
-
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js,sha256=
|
|
36
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js,sha256=X2l1hjwboHFZWEEODvQS8Q7YntD6npj_TmZLiXkuZQs,7474
|
|
37
37
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js,sha256=MfA9PWElQcaYznZD5a8TDe5csD6fmxU_6-LTA690mSg,962
|
|
38
38
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/index.js,sha256=67N7fTRVuqH-dkVW9gh3ehr0xGrswVHYaTqUPgYEmF0,319
|
|
39
39
|
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next-scanner.config.js,sha256=7Xn2OSYbm-zzguRiNTlKLHdBnJCqLuI7MaFaQTMebbA,1814
|
|
@@ -46,8 +46,8 @@ invenio_vocabularies/contrib/__init__.py,sha256=C5eDia6tAVBCrbb5hd_KnxmczyBoF87N
|
|
|
46
46
|
invenio_vocabularies/contrib/affiliations/__init__.py,sha256=rV8YAzBRoSKsBYcVjCNJh6j7ITuPRfurwj9HJHRjkN8,565
|
|
47
47
|
invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=zqFwrAuYhZw7dTfm7dE8bUDxmyPqydUEjKTMPwWSjHk,2096
|
|
48
48
|
invenio_vocabularies/contrib/affiliations/api.py,sha256=5nIOvpfcseuAAg2XgblHc8jb7TAdfU79XOBRpL-p398,326
|
|
49
|
-
invenio_vocabularies/contrib/affiliations/config.py,sha256=
|
|
50
|
-
invenio_vocabularies/contrib/affiliations/datastreams.py,sha256=
|
|
49
|
+
invenio_vocabularies/contrib/affiliations/config.py,sha256=2QMEGRx7bDBXaf058kooABem4cQw_hDtlR-RrDFXwcI,2345
|
|
50
|
+
invenio_vocabularies/contrib/affiliations/datastreams.py,sha256=sMvkt9XOBTV7Q0wexMmwWXY5k9kbetcWBNqfS-vx6Mg,9598
|
|
51
51
|
invenio_vocabularies/contrib/affiliations/facets.py,sha256=w316MGvtdyTpRCPOpCEmMxxLraRkbFFb1VvLkFlEc9o,1229
|
|
52
52
|
invenio_vocabularies/contrib/affiliations/models.py,sha256=JUcj-1ydc2Cw2Rsc24JwXE3TFBJ_6fivhUYhGq4rT8A,329
|
|
53
53
|
invenio_vocabularies/contrib/affiliations/resources.py,sha256=DBEbRxQmp-o-PeZlgFG588Q4sGcruuwIL8L9O-SzCes,435
|
|
@@ -68,21 +68,21 @@ invenio_vocabularies/contrib/awards/__init__.py,sha256=KwCmwFalz-3pDs9iTa5TKUidB
|
|
|
68
68
|
invenio_vocabularies/contrib/awards/api.py,sha256=OXukE7PLXs45BTtqVrhvGBNqLmQaI-CgXmHTCi36LZk,303
|
|
69
69
|
invenio_vocabularies/contrib/awards/awards.py,sha256=GrC-ClFPWrGl_kij2aSpsidnHisBP5_V1kdkCaoYjmQ,2978
|
|
70
70
|
invenio_vocabularies/contrib/awards/config.py,sha256=PlDHabkWDUzwa1Fvk_U2hG83kQYBqM1IyChg8Yg_VlY,1630
|
|
71
|
-
invenio_vocabularies/contrib/awards/datastreams.py,sha256=
|
|
71
|
+
invenio_vocabularies/contrib/awards/datastreams.py,sha256=MLaD4vaPLjxBZNYJ6Y7I47MATxFWLjv-Hd17JZLaX2Q,14498
|
|
72
72
|
invenio_vocabularies/contrib/awards/models.py,sha256=mM-kSNf7kDH3oIbV8epxxbUi7muYqi4JreXxgWXlVzw,318
|
|
73
73
|
invenio_vocabularies/contrib/awards/resources.py,sha256=_9YTqbhz8axFXGhG5y4WyjE27p9n-7e3c6HoBRditPA,411
|
|
74
|
-
invenio_vocabularies/contrib/awards/schema.py,sha256=
|
|
74
|
+
invenio_vocabularies/contrib/awards/schema.py,sha256=f2SBGKFsti3jmo_9yvpH6-Jrez0lOxLYDcLMgZvNPmU,3410
|
|
75
75
|
invenio_vocabularies/contrib/awards/serializer.py,sha256=W59OMDxOXPdXrrimzMdIPbDIfVk6hARgyz1N2xSbchA,1440
|
|
76
76
|
invenio_vocabularies/contrib/awards/services.py,sha256=zwOMHqa4SyZuHopGZwEKhfw3kUHrWg73_4zMNo5kOe4,371
|
|
77
77
|
invenio_vocabularies/contrib/awards/jsonschemas/__init__.py,sha256=XB2l9hr53vqTk7o9lmy18FWGhHEUvNHu8D6nMF8Bz4k,246
|
|
78
|
-
invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=
|
|
78
|
+
invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=i0P0KlQwCziMLVqyC_UvH_IF4efNO6xb9tdHVO1zDPU,2331
|
|
79
79
|
invenio_vocabularies/contrib/awards/mappings/__init__.py,sha256=PbM5urjiSrJSx4Ak-H_lJrOOVKGT38MrGgRv61gIbAM,243
|
|
80
80
|
invenio_vocabularies/contrib/awards/mappings/os-v1/__init__.py,sha256=r8IZvjorG9SVz32Hv1fncoqLfz-5Ml0Ph3jiYWCHBPk,250
|
|
81
|
-
invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=
|
|
81
|
+
invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=OONFc5EZDflsMhitlg4U_6N3vkBPcQTuG5KupylkxXQ,2855
|
|
82
82
|
invenio_vocabularies/contrib/awards/mappings/os-v2/__init__.py,sha256=9gRLFRtjhNJcbop3qz8iRpQVEng_wudDTbOFsS-gxjk,250
|
|
83
|
-
invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=
|
|
83
|
+
invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=OONFc5EZDflsMhitlg4U_6N3vkBPcQTuG5KupylkxXQ,2855
|
|
84
84
|
invenio_vocabularies/contrib/awards/mappings/v7/__init__.py,sha256=fERdPp7K7ajaoUu_4_HVLfF-WD_qcl7QgST6yGb68s4,253
|
|
85
|
-
invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=
|
|
85
|
+
invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=OONFc5EZDflsMhitlg4U_6N3vkBPcQTuG5KupylkxXQ,2855
|
|
86
86
|
invenio_vocabularies/contrib/common/__init__.py,sha256=DdbGYRthEpQtObhY_YK4vOT9Zf7FFagQ6qtUjJOYw-M,247
|
|
87
87
|
invenio_vocabularies/contrib/common/openaire/__init__.py,sha256=L7UtSimFJ3NI6j53bHzYKsWpFti1uo4fPb9OaTl7leI,244
|
|
88
88
|
invenio_vocabularies/contrib/common/openaire/datastreams.py,sha256=BV6NtBCPFuii6KbTHGkgNQO5tt_3Hn9T_219bz8AINg,3514
|
|
@@ -90,7 +90,7 @@ invenio_vocabularies/contrib/common/ror/__init__.py,sha256=3u2-fre1SQ-4nz3Ay0nxj
|
|
|
90
90
|
invenio_vocabularies/contrib/common/ror/datastreams.py,sha256=wHpJy5mRKgJ4nQ7IniLyjxoxjTCZKHaEKKKr_OKrqFM,8139
|
|
91
91
|
invenio_vocabularies/contrib/funders/__init__.py,sha256=YxFXBDnT7NM8rFwxT_Ge3xXR2n17EM0alknQq7r_Bt8,478
|
|
92
92
|
invenio_vocabularies/contrib/funders/api.py,sha256=QKGGeSnPHSoBfucvpaVruXT_txYidofZ080G3IxFkIo,306
|
|
93
|
-
invenio_vocabularies/contrib/funders/config.py,sha256=
|
|
93
|
+
invenio_vocabularies/contrib/funders/config.py,sha256=wRueyNHVz2dvEjbsHMU0zfBG-Qv41QXntHk3OzOAEo4,2305
|
|
94
94
|
invenio_vocabularies/contrib/funders/datastreams.py,sha256=3tOwcN1mK5AVqtdU6KdguouGSUurPTO-FDWTKzK1eRo,2481
|
|
95
95
|
invenio_vocabularies/contrib/funders/facets.py,sha256=a068TVtt74Ncu0latb177LFK8EdnpbMOWecAKozA04M,1245
|
|
96
96
|
invenio_vocabularies/contrib/funders/funders.py,sha256=j4V7lz0fR5rp5XBL3cwmQQElwpopIpv4v37xfi1rU0o,2357
|
|
@@ -112,40 +112,44 @@ invenio_vocabularies/contrib/funders/mappings/v7/__init__.py,sha256=yFHmi3QYD65Y
|
|
|
112
112
|
invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
|
|
113
113
|
invenio_vocabularies/contrib/names/__init__.py,sha256=DBfsM7JMETZGaV5QmXEwE7zhCaAXvc2SZN6uXnW_V-c,451
|
|
114
114
|
invenio_vocabularies/contrib/names/api.py,sha256=sEPn_jFX3gyoxgbdEUSIvOoPCUI8pocI6qCZO6mzCgQ,300
|
|
115
|
-
invenio_vocabularies/contrib/names/config.py,sha256=
|
|
116
|
-
invenio_vocabularies/contrib/names/datastreams.py,sha256=
|
|
115
|
+
invenio_vocabularies/contrib/names/config.py,sha256=9sb5novWuQYXg_5Egexn52mjgGd1D_D9UKyQ1fmIuh4,1977
|
|
116
|
+
invenio_vocabularies/contrib/names/datastreams.py,sha256=mmhtdrda6b4c83dRjxVF5JTqtkt92GSEMHTU6TzQtHw,14570
|
|
117
117
|
invenio_vocabularies/contrib/names/models.py,sha256=SYdtDDG-y5Wq_d06YhiVO5n8gfxPW_mx-tECsIcv5H8,308
|
|
118
|
-
invenio_vocabularies/contrib/names/names.py,sha256=
|
|
118
|
+
invenio_vocabularies/contrib/names/names.py,sha256=_kBJBcPuANgUHlZ8RoVkpfJwzR5qaOQCBIyZusjKoCE,2509
|
|
119
119
|
invenio_vocabularies/contrib/names/permissions.py,sha256=5xrpYsA3oQUJ5lJpF7wjRAFiW-pM6_yP1k9zllbRwnQ,844
|
|
120
120
|
invenio_vocabularies/contrib/names/resources.py,sha256=Z8XqLKfFKE69zdTTvcTDmpEZ6wqiqjIH5tp0LzXTSwQ,1588
|
|
121
121
|
invenio_vocabularies/contrib/names/s3client.py,sha256=c7B9_NbnXCfE4pE_yMTsT6uQ2hgbcRU-KY6nbWFuFzU,1063
|
|
122
|
-
invenio_vocabularies/contrib/names/schema.py,sha256=
|
|
122
|
+
invenio_vocabularies/contrib/names/schema.py,sha256=0Uyh5l_Pdq54osow1Qs7-JUKLx9MxA5a95O5K7rM8M8,3618
|
|
123
123
|
invenio_vocabularies/contrib/names/services.py,sha256=IyZzZ9fovSQa_tqorWciRaPTrY5yv1clD9PHotdzYOQ,2125
|
|
124
124
|
invenio_vocabularies/contrib/names/jsonschemas/__init__.py,sha256=pdDZdyoxqWbAQ6ngiclhYoDUsGKgRDRPXlIDy0U5Jzg,241
|
|
125
125
|
invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=SmnQtet_AWZE1uZR8UY01IiO5QVLHRNAQ2cNubfP8-o,1573
|
|
126
126
|
invenio_vocabularies/contrib/names/mappings/__init__.py,sha256=l5hYJmrj83lds5GupnwCcwQn7cdJo6_4H4YYzrnBa54,242
|
|
127
127
|
invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py,sha256=CKtF-xflE4QGF5P82Lj1ifEP1c7ekR24fc3SiTAkhsY,249
|
|
128
128
|
invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
|
|
129
|
-
invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json,sha256=
|
|
129
|
+
invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json,sha256=HuIXWwQvYVSjj80JTrSiQIiQvUFhBZ9SGuM-UV3JR6I,3755
|
|
130
130
|
invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py,sha256=p38Ausy2cu1OetTQYwx-9gOFoxGrtrmqjArSDpvxfMU,249
|
|
131
131
|
invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
|
|
132
|
-
invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json,sha256=
|
|
132
|
+
invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json,sha256=HuIXWwQvYVSjj80JTrSiQIiQvUFhBZ9SGuM-UV3JR6I,3755
|
|
133
133
|
invenio_vocabularies/contrib/names/mappings/v7/__init__.py,sha256=qLGB8C0kPI3xubcfhI8t6Wb2bLlCmVYCiwQ08bKGz9g,252
|
|
134
134
|
invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
|
|
135
135
|
invenio_vocabularies/contrib/subjects/__init__.py,sha256=GtXZKA6VWG1oA1fUX2Wh92nd-1i7RnnQF6RprGhxkD4,591
|
|
136
136
|
invenio_vocabularies/contrib/subjects/api.py,sha256=QH8mxoLsa8qjJT1i1Tj6rRnpbH23plo2IMOJ56rnvbU,347
|
|
137
|
-
invenio_vocabularies/contrib/subjects/config.py,sha256=
|
|
138
|
-
invenio_vocabularies/contrib/subjects/datastreams.py,sha256=
|
|
137
|
+
invenio_vocabularies/contrib/subjects/config.py,sha256=6svsCjiptqWB5x3NlG6wDH_dehdQYRTPKDCkNc9MtNA,2169
|
|
138
|
+
invenio_vocabularies/contrib/subjects/datastreams.py,sha256=YRdUP0saks5LGVuFjDhhyJdsiYzkysLTBja32I4x9eU,1888
|
|
139
139
|
invenio_vocabularies/contrib/subjects/facets.py,sha256=qQ7_rppFBzsmrlZu4-MvOIdUcjeOmDA9gOHAcs0lWwI,695
|
|
140
140
|
invenio_vocabularies/contrib/subjects/models.py,sha256=8XgbVRxDDvhWPjMWsoCriNlOKdmV_113a14yLRtlvM4,363
|
|
141
141
|
invenio_vocabularies/contrib/subjects/resources.py,sha256=0KRfUMizwgIziZybk4HnIjiSsXbrCv_XmguNPwnxoo8,506
|
|
142
|
-
invenio_vocabularies/contrib/subjects/schema.py,sha256=
|
|
142
|
+
invenio_vocabularies/contrib/subjects/schema.py,sha256=VOW8a9Ob5M-mKrict2bApdFyTpHBwCTJZSxrm93Puv0,3516
|
|
143
143
|
invenio_vocabularies/contrib/subjects/services.py,sha256=s1U6HMmpjuz7rrgR0DtT9C28TC6sZEeDTsa4Jh1TXQk,864
|
|
144
144
|
invenio_vocabularies/contrib/subjects/subjects.py,sha256=NwZycExLyV8l7ikGStH4GOecVuDSxFT70KoNv6qC78I,1877
|
|
145
|
+
invenio_vocabularies/contrib/subjects/bodc/__init__.py,sha256=RlJVmWpbRgDcpx61ITjco3IqHkwZwIypeo2Dt2_AWRc,241
|
|
146
|
+
invenio_vocabularies/contrib/subjects/bodc/datastreams.py,sha256=RgFJTrr-eMyKrS2MuGK4QHhOkPseMwpmsKKpEqE_tgs,4220
|
|
145
147
|
invenio_vocabularies/contrib/subjects/euroscivoc/__init__.py,sha256=e5L9E4l5JHqVzijAX8tn2DIa2n01vJ5wOAZdN62RnIo,247
|
|
146
|
-
invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py,sha256=
|
|
148
|
+
invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py,sha256=Vs4mpIn321KZ94lzTxpYnQTATle1QdKg0yegmDMptw4,3565
|
|
149
|
+
invenio_vocabularies/contrib/subjects/gemet/__init__.py,sha256=OlRWH2gumZZ1Djc_N3ZGPHyt2wOcIwlDDYO6uOfaZfI,242
|
|
150
|
+
invenio_vocabularies/contrib/subjects/gemet/datastreams.py,sha256=OZaKnT6cw3cjNtB_TxEBtVwWWf1Wrm-x9h71YXMAmBk,5203
|
|
147
151
|
invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py,sha256=WowVUST1JoEDS3-xeHhCJvIgC9nzMkFs8XRks9zgzaM,292
|
|
148
|
-
invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=
|
|
152
|
+
invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=O1IsPWrVeuEiMBKtADcRByFNmd1soABgODOnauEJBoI,1868
|
|
149
153
|
invenio_vocabularies/contrib/subjects/mappings/__init__.py,sha256=Qk-yj1ENsTmijO8ImWuDYGzXi6QQ2VjP4DbjrpRfDk8,243
|
|
150
154
|
invenio_vocabularies/contrib/subjects/mappings/os-v1/__init__.py,sha256=rv2-AasC_WJFp2t9Nrhzivmw9RovRI2_msin4oHTZuk,250
|
|
151
155
|
invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=WNNWVsaf-pNxqV6p_IR2uIcwIBh30WJeP4IDIxzqutI,1810
|
|
@@ -156,20 +160,20 @@ invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json,s
|
|
|
156
160
|
invenio_vocabularies/contrib/subjects/mesh/__init__.py,sha256=P44hmgVNNTN5O_EmWgaeYJ91yqkGNoeKYo0wfif_wE4,241
|
|
157
161
|
invenio_vocabularies/contrib/subjects/mesh/datastreams.py,sha256=6W6bgQ7P_31kf3enkAqCBTFBqgrQ2BlV625vn0N9ibQ,1544
|
|
158
162
|
invenio_vocabularies/datastreams/__init__.py,sha256=VPefh6k4Q3eYxKIW8I5zXUGucntp7VHxaOR5Vhgkfmg,412
|
|
159
|
-
invenio_vocabularies/datastreams/datastreams.py,sha256=
|
|
163
|
+
invenio_vocabularies/datastreams/datastreams.py,sha256=mAi_xUDmDWpc3NyhU1TMOhqVRbwYu_meJ9UY6-wgBKQ,6169
|
|
160
164
|
invenio_vocabularies/datastreams/errors.py,sha256=IDUZ3gNtYGrhcOgApHCms1gNNJTyJzoMPmG5JtIeYNU,678
|
|
161
|
-
invenio_vocabularies/datastreams/factories.py,sha256=
|
|
162
|
-
invenio_vocabularies/datastreams/readers.py,sha256=
|
|
165
|
+
invenio_vocabularies/datastreams/factories.py,sha256=kuuN4Zt7Xw58rwf0M03djqcdZOZRWgJdLK16-HmID24,2213
|
|
166
|
+
invenio_vocabularies/datastreams/readers.py,sha256=DUuV-D2PLio3nVR0J-2knASq8rB-H14QBr3DoRL6UgA,14352
|
|
163
167
|
invenio_vocabularies/datastreams/tasks.py,sha256=0fuH_PRt9Ncv6WHM4pkYmfheRVGDKkERZiMPvgV4bZU,1129
|
|
164
|
-
invenio_vocabularies/datastreams/transformers.py,sha256=
|
|
165
|
-
invenio_vocabularies/datastreams/writers.py,sha256=
|
|
168
|
+
invenio_vocabularies/datastreams/transformers.py,sha256=PJFbmRSj3dpJ95NzONAIns5ksztshd99JOp_FLQAlJM,4133
|
|
169
|
+
invenio_vocabularies/datastreams/writers.py,sha256=VIXx9klJaCEdscaKqi2zO959cc157YUGjVYdeTfhTTI,6861
|
|
166
170
|
invenio_vocabularies/datastreams/xml.py,sha256=HFa-lfxj7kFrr2IjeN1jxSLDfcvpBwO9nZLZF2-BryE,997
|
|
167
171
|
invenio_vocabularies/records/__init__.py,sha256=Uj7O6fYdAtLOkLXUGSAYPADBB7aqP4yVs9b6OAjA158,243
|
|
168
172
|
invenio_vocabularies/records/api.py,sha256=Lynt6Sz4BVN1orh0zgJ5ljhnUobEtcq8c22PmSeUo2U,1494
|
|
169
173
|
invenio_vocabularies/records/models.py,sha256=36CxObDMe-D9hoGaelAlR4ggZZTyXgRmCWPxZRpWF5w,2460
|
|
170
174
|
invenio_vocabularies/records/pidprovider.py,sha256=uFuo-M0Wqua0QhTS2z17YpzYDySwNfJaOi7rp0S0dPs,3840
|
|
171
175
|
invenio_vocabularies/records/jsonschemas/__init__.py,sha256=qr2BZMyMVvVRSeJzPCI8re2BlGokiDjeqwREkythSrQ,246
|
|
172
|
-
invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json,sha256=
|
|
176
|
+
invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json,sha256=BronllCw2uX2i-uJTIb7_KZDkeMJOgQGZK9025ueV_A,583
|
|
173
177
|
invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json,sha256=x7kkCkuMNQ6tygb_RWf7QOlOtyG-kqKOH5FNnBn1cqo,1289
|
|
174
178
|
invenio_vocabularies/records/mappings/__init__.py,sha256=kER6e5hZFmPpesFAx-oQsMseep8RXobQRiLIE2r5IMc,244
|
|
175
179
|
invenio_vocabularies/records/mappings/os-v1/__init__.py,sha256=XaGt61tsIKfG59y59Bf0NaPzJECWZnzHSTbAQNUwlVo,248
|
|
@@ -188,15 +192,15 @@ invenio_vocabularies/resources/schema.py,sha256=6stpU9qgLGoeGib3DWnyrHj6XLPxJKbE
|
|
|
188
192
|
invenio_vocabularies/resources/serializer.py,sha256=pwfckLdkMu1MNDkocyMg1XeX6RhbfeuV4fjDO5xKDxo,1190
|
|
189
193
|
invenio_vocabularies/services/__init__.py,sha256=6mi62EG21Id6x23nx0X193I6sVTakK6jOdYNEKPxXUk,522
|
|
190
194
|
invenio_vocabularies/services/components.py,sha256=d9C-24dEDM63gFm75nU-dXrrjS2zZi7Nfkv40BGnHwM,1941
|
|
191
|
-
invenio_vocabularies/services/config.py,sha256=
|
|
195
|
+
invenio_vocabularies/services/config.py,sha256=A9_r2vErcfo3Xt6fC4YVobHXdd64_YyI7iNr-X8GXYI,4704
|
|
192
196
|
invenio_vocabularies/services/facets.py,sha256=qvdHoGSJJr90dZHSVe0-hlO1r0LtTnFVSjrt9PNuNAg,3872
|
|
193
197
|
invenio_vocabularies/services/generators.py,sha256=jcXwb9Hiyek4o-cQ1G2osVgbTBKDbd-5siJMBOWE018,1116
|
|
194
198
|
invenio_vocabularies/services/permissions.py,sha256=83rNOwCuggdJji3VtWTQgytTrhfiWqASCpvI75DxEus,960
|
|
195
|
-
invenio_vocabularies/services/querystr.py,sha256=
|
|
199
|
+
invenio_vocabularies/services/querystr.py,sha256=OrNUR_QAcQ_T-EiL3H1Jvzz9gK2ZB5FicsG0fOipSro,2029
|
|
196
200
|
invenio_vocabularies/services/results.py,sha256=6LZIpzWSbt9wpRNWgjA1uIM4RFooOYTkHcp5-PnIJdU,3767
|
|
197
201
|
invenio_vocabularies/services/schema.py,sha256=mwIBFylpQlWw1M6h_axc-z4Yd7X3Z1S0PxJOlZGpfrQ,4634
|
|
198
202
|
invenio_vocabularies/services/service.py,sha256=9QQDsG1WShCpBVFze-Dnq-iC2BwNX_0-qzfzrpImJo8,6469
|
|
199
|
-
invenio_vocabularies/services/tasks.py,sha256=
|
|
203
|
+
invenio_vocabularies/services/tasks.py,sha256=xKEymph1M-wFjPLeCGkqvnuYdPMMHgxhCCdC0j44Pi4,891
|
|
200
204
|
invenio_vocabularies/services/custom_fields/__init__.py,sha256=QgvSsn-S1xLzbZ57pjjGTt5oI3HqzXHVjwGTtuPgzN8,421
|
|
201
205
|
invenio_vocabularies/services/custom_fields/subject.py,sha256=ZM-ZkaxoouF9lL62smOtLxsjQQZwiQs0jG3qGruP6nY,2231
|
|
202
206
|
invenio_vocabularies/services/custom_fields/vocabulary.py,sha256=oQwI8Aoi2Nr9k3eWKnde5H7RXc7qdlATSeI6coy8UR0,3020
|
|
@@ -298,10 +302,10 @@ invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=g1I5aNO8r
|
|
|
298
302
|
invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=vg8qC8ofpAdJ3mQz7mWM1ylKDpiNWXFs7rlMdSPkgKk,4629
|
|
299
303
|
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=cqSm8NtMAwrP9O6qbmtkDtRT1e9D93qpsJN5X9_PPVw,600
|
|
300
304
|
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=9ACePz_EpB-LfcIJajZ2kp8Q04tcdrQLOtug162ZUss,4115
|
|
301
|
-
invenio_vocabularies-6.
|
|
302
|
-
invenio_vocabularies-6.
|
|
303
|
-
invenio_vocabularies-6.
|
|
304
|
-
invenio_vocabularies-6.
|
|
305
|
-
invenio_vocabularies-6.
|
|
306
|
-
invenio_vocabularies-6.
|
|
307
|
-
invenio_vocabularies-6.
|
|
305
|
+
invenio_vocabularies-6.8.0.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
|
|
306
|
+
invenio_vocabularies-6.8.0.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
|
|
307
|
+
invenio_vocabularies-6.8.0.dist-info/METADATA,sha256=dfweT9yd1E3DnY0KnIpL4vbg-5KtXzrhEsw0hExRVl8,12211
|
|
308
|
+
invenio_vocabularies-6.8.0.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
|
|
309
|
+
invenio_vocabularies-6.8.0.dist-info/entry_points.txt,sha256=ud9nfdMlhO_mu3okwmy5vQD48r3-rCU_pSR-lUtLeYE,3180
|
|
310
|
+
invenio_vocabularies-6.8.0.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
|
|
311
|
+
invenio_vocabularies-6.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.8.0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|