invenio-vocabularies 3.4.2__py2.py3-none-any.whl → 4.1.1__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/administration/__init__.py +10 -0
- invenio_vocabularies/administration/views/__init__.py +10 -0
- invenio_vocabularies/administration/views/vocabularies.py +44 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js +8 -20
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js +2 -2
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js +5 -7
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js +3 -3
- invenio_vocabularies/cli.py +10 -39
- invenio_vocabularies/config.py +33 -3
- invenio_vocabularies/contrib/affiliations/config.py +2 -2
- invenio_vocabularies/contrib/affiliations/datastreams.py +67 -0
- invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json +38 -1
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json +21 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json +21 -0
- invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json +21 -0
- invenio_vocabularies/contrib/affiliations/schema.py +17 -3
- invenio_vocabularies/contrib/awards/datastreams.py +90 -3
- invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/common/__init__.py +9 -0
- invenio_vocabularies/contrib/common/ror/__init__.py +9 -0
- invenio_vocabularies/contrib/common/ror/datastreams.py +166 -0
- invenio_vocabularies/contrib/funders/config.py +2 -0
- invenio_vocabularies/contrib/funders/datastreams.py +10 -59
- invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json +36 -1
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json +21 -0
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json +21 -0
- invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json +21 -0
- invenio_vocabularies/contrib/funders/schema.py +8 -0
- invenio_vocabularies/contrib/funders/serializer.py +2 -1
- invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json +3 -0
- invenio_vocabularies/datastreams/factories.py +1 -2
- invenio_vocabularies/datastreams/readers.py +96 -3
- invenio_vocabularies/datastreams/writers.py +2 -2
- invenio_vocabularies/ext.py +22 -7
- invenio_vocabularies/factories.py +93 -0
- invenio_vocabularies/proxies.py +2 -2
- invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json +7 -0
- invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json +1 -4
- invenio_vocabularies/resources/__init__.py +8 -1
- invenio_vocabularies/resources/config.py +105 -0
- invenio_vocabularies/resources/resource.py +31 -41
- invenio_vocabularies/services/__init__.py +5 -2
- invenio_vocabularies/services/config.py +179 -0
- invenio_vocabularies/services/permissions.py +3 -1
- invenio_vocabularies/services/results.py +110 -0
- invenio_vocabularies/services/schema.py +1 -1
- invenio_vocabularies/services/service.py +41 -86
- invenio_vocabularies/services/tasks.py +31 -1
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html +12 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html +71 -0
- invenio_vocabularies/views.py +7 -0
- {invenio_vocabularies-3.4.2.dist-info → invenio_vocabularies-4.1.1.dist-info}/METADATA +32 -7
- {invenio_vocabularies-3.4.2.dist-info → invenio_vocabularies-4.1.1.dist-info}/RECORD +69 -56
- {invenio_vocabularies-3.4.2.dist-info → invenio_vocabularies-4.1.1.dist-info}/entry_points.txt +7 -0
- {invenio_vocabularies-3.4.2.dist-info → invenio_vocabularies-4.1.1.dist-info}/AUTHORS.rst +0 -0
- {invenio_vocabularies-3.4.2.dist-info → invenio_vocabularies-4.1.1.dist-info}/LICENSE +0 -0
- {invenio_vocabularies-3.4.2.dist-info → invenio_vocabularies-4.1.1.dist-info}/WHEEL +0 -0
- {invenio_vocabularies-3.4.2.dist-info → invenio_vocabularies-4.1.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{#
|
|
2
|
+
Copyright (C) 2024 CERN.
|
|
3
|
+
|
|
4
|
+
Invenio App RDM is free software; you can redistribute it and/or modify it
|
|
5
|
+
under the terms of the MIT License; see LICENSE file for more details.
|
|
6
|
+
#}
|
|
7
|
+
|
|
8
|
+
{%- from "invenio_administration/macros.html" import go_back %}
|
|
9
|
+
|
|
10
|
+
{% extends "invenio_administration/search.html" %}
|
|
11
|
+
|
|
12
|
+
{% block admin_main_column %}
|
|
13
|
+
<main id="admin-main-content"
|
|
14
|
+
class="ten wide mobile twelve wide tablet thirteen wide computer fourteen wide widescreen column">
|
|
15
|
+
|
|
16
|
+
<div class="ui container fluid pl-10 pr-10 pt-10 pb-10">
|
|
17
|
+
{{ go_back() }}
|
|
18
|
+
<div class="ui grid">
|
|
19
|
+
<div class="column six wide">
|
|
20
|
+
<h1 class="ui header">{{ title or name }}</h1>
|
|
21
|
+
</div>
|
|
22
|
+
<div class="column ten wide right aligned">
|
|
23
|
+
<a class="ui icon labeled button"
|
|
24
|
+
href="{{ edit_endpoint }}">
|
|
25
|
+
<i aria-hidden="true"
|
|
26
|
+
class="cog icon"></i>{{ _("Settings") }}
|
|
27
|
+
</a>
|
|
28
|
+
<a class="ui icon labeled button"
|
|
29
|
+
href="{{ create_ui_endpoint }}">
|
|
30
|
+
<i aria-hidden="true"
|
|
31
|
+
class="calendar icon"></i>{{ _("Schedule") }}
|
|
32
|
+
</a>
|
|
33
|
+
<a class="ui icon labeled button"
|
|
34
|
+
href="{{ run_endpoint }}">
|
|
35
|
+
<i aria-hidden="true"
|
|
36
|
+
class="play icon"></i>{{ _("Run now") }}
|
|
37
|
+
</a>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
{% block admin_page_content %}
|
|
41
|
+
<div class="ui divider" aria-hidden="true"></div>
|
|
42
|
+
|
|
43
|
+
{%- block search_app %}
|
|
44
|
+
<div
|
|
45
|
+
id="invenio-search-config"
|
|
46
|
+
data-title='{{ title | tojson }}'
|
|
47
|
+
data-resource-name='{{ resource_name | tojson }}'
|
|
48
|
+
data-invenio-search-config='{{ search_config() | tojson }}'
|
|
49
|
+
data-fields='{{ fields | tojson }}'
|
|
50
|
+
data-display-search='{{ display_search | tojson }}'
|
|
51
|
+
data-display-read='{{ display_read | tojson }}'
|
|
52
|
+
data-display-edit='{{ display_edit | tojson }}'
|
|
53
|
+
data-display-delete='{{ display_delete | tojson }}'
|
|
54
|
+
data-resource-schema='{{ resource_schema | tojson }}'
|
|
55
|
+
data-actions='{{ actions | tojson }}'
|
|
56
|
+
data-api-endpoint='{{ api_endpoint }}'
|
|
57
|
+
data-pid-path='{{ pid_path | tojson }}'
|
|
58
|
+
data-create-endpoint='{{ create_ui_endpoint }}'
|
|
59
|
+
data-list-endpoint='{{ list_ui_endpoint }}'
|
|
60
|
+
>
|
|
61
|
+
</div>
|
|
62
|
+
{%- endblock search_app %}
|
|
63
|
+
{% endblock admin_page_content %}
|
|
64
|
+
</div>
|
|
65
|
+
</main>
|
|
66
|
+
{% endblock %}
|
|
67
|
+
|
|
68
|
+
{% block javascript %}
|
|
69
|
+
{{ super() }}
|
|
70
|
+
{{ webpack['invenio-jobs-details.js'] }}
|
|
71
|
+
{% endblock %}
|
invenio_vocabularies/views.py
CHANGED
|
@@ -44,3 +44,10 @@ def create_names_blueprint_from_app(app):
|
|
|
44
44
|
def create_subjects_blueprint_from_app(app):
|
|
45
45
|
"""Create app blueprint."""
|
|
46
46
|
return app.extensions["invenio-vocabularies"].subjects_resource.as_blueprint()
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def create_list_blueprint_from_app(app):
|
|
50
|
+
"""Create app blueprint."""
|
|
51
|
+
return app.extensions[
|
|
52
|
+
"invenio-vocabularies"
|
|
53
|
+
].vocabulary_admin_resource.as_blueprint()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: invenio-vocabularies
|
|
3
|
-
Version:
|
|
3
|
+
Version: 4.1.1
|
|
4
4
|
Summary: "Invenio module for managing vocabularies."
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-vocabularies
|
|
6
6
|
Author: CERN
|
|
@@ -11,12 +11,15 @@ Platform: any
|
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Requires-Python: >=3.7
|
|
13
13
|
Requires-Dist: invenio-i18n <3.0.0,>=2.0.0
|
|
14
|
-
Requires-Dist: invenio-records-resources <
|
|
14
|
+
Requires-Dist: invenio-records-resources <7.0.0,>=6.0.0
|
|
15
|
+
Requires-Dist: invenio-administration <3.0.0,>=2.0.0
|
|
15
16
|
Requires-Dist: lxml >=4.5.0
|
|
16
17
|
Requires-Dist: PyYAML >=5.4.1
|
|
17
18
|
Provides-Extra: elasticsearch7
|
|
18
19
|
Requires-Dist: invenio-search[elasticsearch7] <3.0.0,>=2.1.0 ; extra == 'elasticsearch7'
|
|
19
20
|
Provides-Extra: mysql
|
|
21
|
+
Provides-Extra: oaipmh
|
|
22
|
+
Requires-Dist: invenio-oaipmh-scythe >=0.13.0 ; extra == 'oaipmh'
|
|
20
23
|
Provides-Extra: opensearch1
|
|
21
24
|
Requires-Dist: invenio-search[opensearch1] <3.0.0,>=2.1.0 ; extra == 'opensearch1'
|
|
22
25
|
Provides-Extra: opensearch2
|
|
@@ -27,6 +30,7 @@ Provides-Extra: tests
|
|
|
27
30
|
Requires-Dist: pytest-black-ng >=0.4.0 ; extra == 'tests'
|
|
28
31
|
Requires-Dist: invenio-app <2.0.0,>=1.4.0 ; extra == 'tests'
|
|
29
32
|
Requires-Dist: invenio-db[mysql,postgresql] <2.0.0,>=1.0.14 ; extra == 'tests'
|
|
33
|
+
Requires-Dist: pytest-httpserver >=1.0.10 ; extra == 'tests'
|
|
30
34
|
Requires-Dist: pytest-invenio <3.0.0,>=2.1.0 ; extra == 'tests'
|
|
31
35
|
Requires-Dist: Sphinx >=4.5 ; extra == 'tests'
|
|
32
36
|
|
|
@@ -74,14 +78,35 @@ https://invenio-vocabularies.readthedocs.io/
|
|
|
74
78
|
Changes
|
|
75
79
|
=======
|
|
76
80
|
|
|
77
|
-
Version
|
|
81
|
+
Version v4.1.1 (released 2024-07-15)
|
|
78
82
|
|
|
79
|
-
-
|
|
80
|
-
|
|
81
|
-
Version 3.4.1 (released 2024-04-19)
|
|
83
|
+
- installation: use invenio-oaipmh-scythe from PyPI
|
|
82
84
|
|
|
83
|
-
|
|
85
|
+
Version v4.1.0 (released 2024-07-15)
|
|
84
86
|
|
|
87
|
+
- readers: make OAI-PMH an optional extra
|
|
88
|
+
- schema: add administration UI attributes
|
|
89
|
+
- ror: fix duplicate acronymns and aliases
|
|
90
|
+
- affiliations: fix title search
|
|
91
|
+
- datastreams: have yaml writer output utf8
|
|
92
|
+
- datastreams: add configs for funders and affiliations
|
|
93
|
+
- affiliations: add datastreams
|
|
94
|
+
- datastreams: move ror transformer to common
|
|
95
|
+
- vocabulary-types: services, resources, and administration UI (#310)
|
|
96
|
+
- config: add OpenAIRE mapping for "Latvian Council of Science"
|
|
97
|
+
- funders: fix country name display (#343)
|
|
98
|
+
- Initial implementation of OAIPMHReader (#329)
|
|
99
|
+
- global: add "tags" field to all vocabularies
|
|
100
|
+
|
|
101
|
+
Version 4.0.0 (released 2024-06-04)
|
|
102
|
+
|
|
103
|
+
- datastreams: implement factories for generating vocabulary configurations
|
|
104
|
+
- datastreams: added ROR HTTP reader
|
|
105
|
+
- funders: use ROR v2 dump instead of v1
|
|
106
|
+
- datastreams: added celery task for funders using ROR HTTP reader
|
|
107
|
+
- datastreams: add OpenAIRE Project HTTP Reader
|
|
108
|
+
- datastreams: fix OpenAIRE graph dataset parsing
|
|
109
|
+
- installation: upgrade invenio-records-resources
|
|
85
110
|
|
|
86
111
|
Version 3.4.0 (released 2024-04-19)
|
|
87
112
|
|
|
@@ -1,11 +1,15 @@
|
|
|
1
|
-
invenio_vocabularies/__init__.py,sha256=
|
|
2
|
-
invenio_vocabularies/cli.py,sha256=
|
|
3
|
-
invenio_vocabularies/config.py,sha256=
|
|
4
|
-
invenio_vocabularies/ext.py,sha256=
|
|
1
|
+
invenio_vocabularies/__init__.py,sha256=IfTJAejqD10k4V3mLdn1Kxt4hLZnARmLmBqRXgIrJ3o,377
|
|
2
|
+
invenio_vocabularies/cli.py,sha256=9Gfm3jjNDX3oQnYXupxSuqwXvWnJmsQ9GmyekJ1h5Kg,5239
|
|
3
|
+
invenio_vocabularies/config.py,sha256=o-SdebM5eZMTnpGjrwoGzeQ60q73anLBJ1n1T3mTO38,4458
|
|
4
|
+
invenio_vocabularies/ext.py,sha256=GujJ4UARd4Fxf4z7zznRk9JAgHamZuYCOdrKU5czg00,5987
|
|
5
|
+
invenio_vocabularies/factories.py,sha256=r7rg9JeXe4q0cTYA20beC_2_9mYCKZJZleiU2rtwoY4,2902
|
|
5
6
|
invenio_vocabularies/fixtures.py,sha256=nNWwH04HFASjfj1oy5kMdcQGKmVjzUuA5wSw-ER1QAg,1585
|
|
6
|
-
invenio_vocabularies/proxies.py,sha256=
|
|
7
|
-
invenio_vocabularies/views.py,sha256=
|
|
7
|
+
invenio_vocabularies/proxies.py,sha256=k7cTUgWfnCoYIuNqAj_VFi1zBN33KNNclRSVnBkObEM,711
|
|
8
|
+
invenio_vocabularies/views.py,sha256=PNJ5nvc3O7ASwNe56xmqy5YaU9n3UYF3W2JwvtE_kYs,1561
|
|
8
9
|
invenio_vocabularies/webpack.py,sha256=aLRm0ut3rXPb8D87pVA9mO_ODq7WOSZdsJQyU4iMLoI,1891
|
|
10
|
+
invenio_vocabularies/administration/__init__.py,sha256=0bDp2Aw8aZth7C-q9Xn9rxeCUQQRoIUxoWWWwPvKbXA,308
|
|
11
|
+
invenio_vocabularies/administration/views/__init__.py,sha256=31DP4jLG6q4HQlzSRiGLPxUjHPUCCl4N34y4XMuPP6g,313
|
|
12
|
+
invenio_vocabularies/administration/views/vocabularies.py,sha256=9TOVAGMsMRufH9RglxQbKG1ylvuGX1ttlLGQ4G48H88,1289
|
|
9
13
|
invenio_vocabularies/alembic/17c703ce1eb7_create_names_table.py,sha256=2QGs0Ofi6yd93VzIBqghNi47hrZtuLf0DylKyvVzskI,1572
|
|
10
14
|
invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py,sha256=Ywtp8qOFcI3PxUXemHdvy_VwdcUVtMFV1sFgNAmYrms,1054
|
|
11
15
|
invenio_vocabularies/alembic/4f365fced43f_create_vocabularies_tables.py,sha256=jSrr0CLRchYADjkFeod0L-oophq2woXtRwbUU5Vytiw,3039
|
|
@@ -23,13 +27,13 @@ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/index.js,sha
|
|
|
23
27
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/index.js,sha256=iSx-bdQkKj6XA9NAam31bdcQmFygljQnjLcFjjK3lwU,245
|
|
24
28
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/index.js,sha256=7sSg482yJODQHU4jkP-hWJjpBOw7ubFr5nPZl5D_1gQ,262
|
|
25
29
|
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=
|
|
30
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js,sha256=TfwrlA_GrINvN1LAdW7J6q_hkbsiEKxbCWc-7VVp8mY,4674
|
|
27
31
|
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=
|
|
32
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js,sha256=wXJz4ZL7J0ZPppcP-qd6U5Mnupf2hkog4zxMrQ9xZtI,6906
|
|
29
33
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js,sha256=z_4lWkf3h9Uin8OzSBSKY1wpUxtbnjE2kRUjW80jAhA,35
|
|
30
34
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js,sha256=ZN4dEcHCVtSVFjzb1SAYPxmaY1Qk5ZdCt1yY7j6pvQs,4610
|
|
31
|
-
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js,sha256=
|
|
32
|
-
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js,sha256=
|
|
35
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js,sha256=PjJwINtJyQVJCHUSSoDJLlY-anmEacHi-SePzTNE9DE,8079
|
|
36
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js,sha256=MfA9PWElQcaYznZD5a8TDe5csD6fmxU_6-LTA690mSg,962
|
|
33
37
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/index.js,sha256=67N7fTRVuqH-dkVW9gh3ehr0xGrswVHYaTqUPgYEmF0,319
|
|
34
38
|
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next-scanner.config.js,sha256=7Xn2OSYbm-zzguRiNTlKLHdBnJCqLuI7MaFaQTMebbA,1814
|
|
35
39
|
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next.js,sha256=B7b65r5V2hCUgFw1G2GnMNxCeSgHgW5W2vf8I5ZWwcc,1024
|
|
@@ -41,60 +45,64 @@ invenio_vocabularies/contrib/__init__.py,sha256=C5eDia6tAVBCrbb5hd_KnxmczyBoF87N
|
|
|
41
45
|
invenio_vocabularies/contrib/affiliations/__init__.py,sha256=rV8YAzBRoSKsBYcVjCNJh6j7ITuPRfurwj9HJHRjkN8,565
|
|
42
46
|
invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=Ph0z7bT_tudsWDKFaiksCBngsG-eO6Xpbe3KdejfLXI,1591
|
|
43
47
|
invenio_vocabularies/contrib/affiliations/api.py,sha256=-NrA_aYxabvNMofYCnrDZ2bLP15HGDTvvhHTDuXNg-g,322
|
|
44
|
-
invenio_vocabularies/contrib/affiliations/config.py,sha256=
|
|
48
|
+
invenio_vocabularies/contrib/affiliations/config.py,sha256=u1sHeihy0B0e6w5e3HsbrC9e8A4WTLKCYPXUdcX-ZTs,1605
|
|
49
|
+
invenio_vocabularies/contrib/affiliations/datastreams.py,sha256=tACDv4dHcNr6d9EAi9iyoVH0z-6AakGhMy4_6eUMYYY,1650
|
|
45
50
|
invenio_vocabularies/contrib/affiliations/facets.py,sha256=w316MGvtdyTpRCPOpCEmMxxLraRkbFFb1VvLkFlEc9o,1229
|
|
46
51
|
invenio_vocabularies/contrib/affiliations/models.py,sha256=JUcj-1ydc2Cw2Rsc24JwXE3TFBJ_6fivhUYhGq4rT8A,329
|
|
47
52
|
invenio_vocabularies/contrib/affiliations/resources.py,sha256=DBEbRxQmp-o-PeZlgFG588Q4sGcruuwIL8L9O-SzCes,435
|
|
48
|
-
invenio_vocabularies/contrib/affiliations/schema.py,sha256=
|
|
53
|
+
invenio_vocabularies/contrib/affiliations/schema.py,sha256=O4s6aHcO1w4_aAfGuYLx_eLS6nctd6ktyIuHB6dMKqw,1842
|
|
49
54
|
invenio_vocabularies/contrib/affiliations/services.py,sha256=C_6cMnh3mnL3-xxdsb16Rvm2aK4FyiaQ_qUTGylCwjo,391
|
|
50
55
|
invenio_vocabularies/contrib/affiliations/jsonschemas/__init__.py,sha256=ILyZ5kejTr0p50macMBPALQCTJSe4KEE3_cgf2p3zV4,252
|
|
51
|
-
invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json,sha256=
|
|
56
|
+
invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json,sha256=be-glRNIBtIO87Tcyw8d68OdG4J8-ojjiCj8UJBnckg,1649
|
|
52
57
|
invenio_vocabularies/contrib/affiliations/mappings/__init__.py,sha256=q7hb9lcT9KLRSGr6G7qpL8Top6wZfzj_E4uzGxnraTw,295
|
|
53
58
|
invenio_vocabularies/contrib/affiliations/mappings/os-v1/__init__.py,sha256=uEiG5rFrjhpFxg5pD5j5E96_xrPojsla9PhtlOqSCw4,256
|
|
54
|
-
invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json,sha256=
|
|
59
|
+
invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json,sha256=h9xXxxEGEevtTusLAmpTSfqt7h-I1NgVa8Zm_SSROiM,2100
|
|
55
60
|
invenio_vocabularies/contrib/affiliations/mappings/os-v2/__init__.py,sha256=qgNQbJjbfA2hSpFJtXrsUQBZdKwg-5Y1isoXzj31InE,256
|
|
56
|
-
invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json,sha256=
|
|
61
|
+
invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
|
|
57
62
|
invenio_vocabularies/contrib/affiliations/mappings/v7/__init__.py,sha256=zr9YyyKyqMAnahKbnIFGr_Z7PXy9ONoU08i9z5cRguQ,259
|
|
58
|
-
invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json,sha256=
|
|
63
|
+
invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
|
|
59
64
|
invenio_vocabularies/contrib/awards/__init__.py,sha256=KwCmwFalz-3pDs9iTa5TKUidBjLepnUMqpCBXRiQOO8,474
|
|
60
65
|
invenio_vocabularies/contrib/awards/api.py,sha256=OXukE7PLXs45BTtqVrhvGBNqLmQaI-CgXmHTCi36LZk,303
|
|
61
66
|
invenio_vocabularies/contrib/awards/awards.py,sha256=N-BNE2ffUu-IlfKFBjMjfYqxL0vmpO8YMPe4q4e-rTo,2695
|
|
62
67
|
invenio_vocabularies/contrib/awards/config.py,sha256=PlDHabkWDUzwa1Fvk_U2hG83kQYBqM1IyChg8Yg_VlY,1630
|
|
63
|
-
invenio_vocabularies/contrib/awards/datastreams.py,sha256=
|
|
68
|
+
invenio_vocabularies/contrib/awards/datastreams.py,sha256=4BRifAmmEw0fUxo9JK5ZUXfSrSv1wllPvuGVOfick54,8244
|
|
64
69
|
invenio_vocabularies/contrib/awards/models.py,sha256=mM-kSNf7kDH3oIbV8epxxbUi7muYqi4JreXxgWXlVzw,318
|
|
65
70
|
invenio_vocabularies/contrib/awards/resources.py,sha256=_9YTqbhz8axFXGhG5y4WyjE27p9n-7e3c6HoBRditPA,411
|
|
66
71
|
invenio_vocabularies/contrib/awards/schema.py,sha256=bg-09nvhEn-ipzaztK1iNbKc59saAM8v8hAW9zpKDAc,2786
|
|
67
72
|
invenio_vocabularies/contrib/awards/serializer.py,sha256=MDnq41EJf_LFu-UT6qlB3-O2S7aEYePIzQ_immMnwag,1139
|
|
68
73
|
invenio_vocabularies/contrib/awards/services.py,sha256=oExHPYgXgege9a7oLCK4LGb8FXCHfY0ekeS9HvTJLxs,367
|
|
69
74
|
invenio_vocabularies/contrib/awards/jsonschemas/__init__.py,sha256=XB2l9hr53vqTk7o9lmy18FWGhHEUvNHu8D6nMF8Bz4k,246
|
|
70
|
-
invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=
|
|
75
|
+
invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=XKHjWWmv7Ph6v-JxPsP09V_6Pr9QNJcJeZdaU5HZWwU,1117
|
|
71
76
|
invenio_vocabularies/contrib/awards/mappings/__init__.py,sha256=PbM5urjiSrJSx4Ak-H_lJrOOVKGT38MrGgRv61gIbAM,243
|
|
72
77
|
invenio_vocabularies/contrib/awards/mappings/os-v1/__init__.py,sha256=r8IZvjorG9SVz32Hv1fncoqLfz-5Ml0Ph3jiYWCHBPk,250
|
|
73
|
-
invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=
|
|
78
|
+
invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=QJT2gS7SE47YTP2HdU4ESjMwHJBTzAH70JEhWWg9SXM,1528
|
|
74
79
|
invenio_vocabularies/contrib/awards/mappings/os-v2/__init__.py,sha256=9gRLFRtjhNJcbop3qz8iRpQVEng_wudDTbOFsS-gxjk,250
|
|
75
|
-
invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=
|
|
80
|
+
invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=QJT2gS7SE47YTP2HdU4ESjMwHJBTzAH70JEhWWg9SXM,1528
|
|
76
81
|
invenio_vocabularies/contrib/awards/mappings/v7/__init__.py,sha256=fERdPp7K7ajaoUu_4_HVLfF-WD_qcl7QgST6yGb68s4,253
|
|
77
|
-
invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=
|
|
82
|
+
invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=QJT2gS7SE47YTP2HdU4ESjMwHJBTzAH70JEhWWg9SXM,1528
|
|
83
|
+
invenio_vocabularies/contrib/common/__init__.py,sha256=DdbGYRthEpQtObhY_YK4vOT9Zf7FFagQ6qtUjJOYw-M,247
|
|
84
|
+
invenio_vocabularies/contrib/common/ror/__init__.py,sha256=3u2-fre1SQ-4nz3Ay0nxj3ntmMZ8Ujh_4eV-fyxfmtc,239
|
|
85
|
+
invenio_vocabularies/contrib/common/ror/datastreams.py,sha256=Yb671-LGDmzhhBDYIp0B5eQt56RVnx3Tq1Z_NO3KncM,6359
|
|
78
86
|
invenio_vocabularies/contrib/funders/__init__.py,sha256=YxFXBDnT7NM8rFwxT_Ge3xXR2n17EM0alknQq7r_Bt8,478
|
|
79
87
|
invenio_vocabularies/contrib/funders/api.py,sha256=QKGGeSnPHSoBfucvpaVruXT_txYidofZ080G3IxFkIo,306
|
|
80
|
-
invenio_vocabularies/contrib/funders/config.py,sha256
|
|
81
|
-
invenio_vocabularies/contrib/funders/datastreams.py,sha256=
|
|
88
|
+
invenio_vocabularies/contrib/funders/config.py,sha256=BbzCRIcPxSwDllhjnGmdec5A126Zs1I4ZyVUCGi3jRA,1756
|
|
89
|
+
invenio_vocabularies/contrib/funders/datastreams.py,sha256=H-32oCR8BmtT4MRlFZHowT7axwV3dgycrPYKlmsZZec,1779
|
|
82
90
|
invenio_vocabularies/contrib/funders/facets.py,sha256=a068TVtt74Ncu0latb177LFK8EdnpbMOWecAKozA04M,1245
|
|
83
91
|
invenio_vocabularies/contrib/funders/funders.py,sha256=nHqUoyRRW9oruN-ghmwzb9QIz_jyBgxNUpk41yvcso8,2292
|
|
84
92
|
invenio_vocabularies/contrib/funders/models.py,sha256=RAU-_YVOUNVCn03_XGJ2czcVwXTaZPk5w7X_bMAgMOk,314
|
|
85
93
|
invenio_vocabularies/contrib/funders/resources.py,sha256=He4gXd737ovdrHL-HB9dX7AGxp1BVJ9QteIO7JWUVSE,415
|
|
86
|
-
invenio_vocabularies/contrib/funders/schema.py,sha256=
|
|
87
|
-
invenio_vocabularies/contrib/funders/serializer.py,sha256=
|
|
94
|
+
invenio_vocabularies/contrib/funders/schema.py,sha256=tEOdMU2i0z_3PkXL1yD1qIJeoAy_8n22xxv8V7iltz0,2480
|
|
95
|
+
invenio_vocabularies/contrib/funders/serializer.py,sha256=dPFBvofV4AzckMAxWfM4KtuCOXtsVRb9Ma7NzJetV-I,981
|
|
88
96
|
invenio_vocabularies/contrib/funders/services.py,sha256=M-kQwtVOGygHe44vXr1L4E5Vvnpoco4KO0LRYwzhvMc,375
|
|
89
97
|
invenio_vocabularies/contrib/funders/jsonschemas/__init__.py,sha256=O4XwUXCk-gx_K2LDVJOLkq07-ibsUkpT1vPaebgd0Gk,247
|
|
90
|
-
invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json,sha256=
|
|
98
|
+
invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json,sha256=bhmC5hHNX4sj9MIHKhGp48Tu9Nk8I_9MYpXaP7i3rIY,1686
|
|
91
99
|
invenio_vocabularies/contrib/funders/mappings/__init__.py,sha256=aSr-tZd9rsjet6leeS336gdSdZHXwZKdaPStNtVNQVk,244
|
|
92
100
|
invenio_vocabularies/contrib/funders/mappings/os-v1/__init__.py,sha256=xXEX3tacmXp0I1KFtDw7ohIahozd2oIGp1UN40IhFic,251
|
|
93
|
-
invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json,sha256=
|
|
101
|
+
invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
|
|
94
102
|
invenio_vocabularies/contrib/funders/mappings/os-v2/__init__.py,sha256=YvMRlKYTnEmyTzI9smZp_lO3w-zcK-8IpqT-jGUXEEY,251
|
|
95
|
-
invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json,sha256=
|
|
103
|
+
invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
|
|
96
104
|
invenio_vocabularies/contrib/funders/mappings/v7/__init__.py,sha256=yFHmi3QYD65YKzLU5vMEtwAZn0gwkFYa6Db_tSbHjKE,254
|
|
97
|
-
invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=
|
|
105
|
+
invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
|
|
98
106
|
invenio_vocabularies/contrib/names/__init__.py,sha256=DBfsM7JMETZGaV5QmXEwE7zhCaAXvc2SZN6uXnW_V-c,451
|
|
99
107
|
invenio_vocabularies/contrib/names/api.py,sha256=sEPn_jFX3gyoxgbdEUSIvOoPCUI8pocI6qCZO6mzCgQ,300
|
|
100
108
|
invenio_vocabularies/contrib/names/config.py,sha256=hKDTEEBYGYOY6sMOArZjjkq2HJ6MJtRZp1geGLAFgRg,1735
|
|
@@ -105,14 +113,14 @@ invenio_vocabularies/contrib/names/resources.py,sha256=Z8XqLKfFKE69zdTTvcTDmpEZ6
|
|
|
105
113
|
invenio_vocabularies/contrib/names/schema.py,sha256=eKhpNwBaACMEY0JWNrSUhr-40lXhkiHDRmM42KsLrYg,3354
|
|
106
114
|
invenio_vocabularies/contrib/names/services.py,sha256=1viM-L8VEojmQWMisIOhDyl8KInPPCZEIf6tU8G07As,1763
|
|
107
115
|
invenio_vocabularies/contrib/names/jsonschemas/__init__.py,sha256=pdDZdyoxqWbAQ6ngiclhYoDUsGKgRDRPXlIDy0U5Jzg,241
|
|
108
|
-
invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=
|
|
116
|
+
invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=RYV811bVjnbcBnelZBSDX2hmG2Y6bZXb-u65GLXz2qE,1258
|
|
109
117
|
invenio_vocabularies/contrib/names/mappings/__init__.py,sha256=l5hYJmrj83lds5GupnwCcwQn7cdJo6_4H4YYzrnBa54,242
|
|
110
118
|
invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py,sha256=CKtF-xflE4QGF5P82Lj1ifEP1c7ekR24fc3SiTAkhsY,249
|
|
111
|
-
invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json,sha256=
|
|
119
|
+
invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
|
|
112
120
|
invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py,sha256=p38Ausy2cu1OetTQYwx-9gOFoxGrtrmqjArSDpvxfMU,249
|
|
113
|
-
invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json,sha256=
|
|
121
|
+
invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
|
|
114
122
|
invenio_vocabularies/contrib/names/mappings/v7/__init__.py,sha256=qLGB8C0kPI3xubcfhI8t6Wb2bLlCmVYCiwQ08bKGz9g,252
|
|
115
|
-
invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=
|
|
123
|
+
invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
|
|
116
124
|
invenio_vocabularies/contrib/subjects/__init__.py,sha256=GtXZKA6VWG1oA1fUX2Wh92nd-1i7RnnQF6RprGhxkD4,591
|
|
117
125
|
invenio_vocabularies/contrib/subjects/api.py,sha256=QH8mxoLsa8qjJT1i1Tj6rRnpbH23plo2IMOJ56rnvbU,347
|
|
118
126
|
invenio_vocabularies/contrib/subjects/config.py,sha256=0SHUKqR-EELVeEDiFjwzLY-_74ZmCxBKxC4dK_eOH8I,1535
|
|
@@ -123,29 +131,29 @@ invenio_vocabularies/contrib/subjects/schema.py,sha256=jWPhpCDoScf8fRs7T15kcXnpr
|
|
|
123
131
|
invenio_vocabularies/contrib/subjects/services.py,sha256=s1U6HMmpjuz7rrgR0DtT9C28TC6sZEeDTsa4Jh1TXQk,864
|
|
124
132
|
invenio_vocabularies/contrib/subjects/subjects.py,sha256=y5IidPbmYV3zs5aEp7CFzijYoVwWZ5GIMwl1kD0e0Eg,1441
|
|
125
133
|
invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py,sha256=WowVUST1JoEDS3-xeHhCJvIgC9nzMkFs8XRks9zgzaM,292
|
|
126
|
-
invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256
|
|
134
|
+
invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=jlKAY_0oZH2zMlK8F4oNI2Xbq0ENYhHrM_w5nM9d0Fc,914
|
|
127
135
|
invenio_vocabularies/contrib/subjects/mappings/__init__.py,sha256=Qk-yj1ENsTmijO8ImWuDYGzXi6QQ2VjP4DbjrpRfDk8,243
|
|
128
136
|
invenio_vocabularies/contrib/subjects/mappings/os-v1/__init__.py,sha256=rv2-AasC_WJFp2t9Nrhzivmw9RovRI2_msin4oHTZuk,250
|
|
129
|
-
invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=
|
|
137
|
+
invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=Gr2dnAiqKgOISW2zhv4RZsssIGQPBNtPpgSu_ysHGDs,1166
|
|
130
138
|
invenio_vocabularies/contrib/subjects/mappings/os-v2/__init__.py,sha256=rQnrw1tMKR0yzlPiXBbCVHnxy_aAhwrKghrSuhhZYAc,250
|
|
131
|
-
invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json,sha256=
|
|
139
|
+
invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json,sha256=Gr2dnAiqKgOISW2zhv4RZsssIGQPBNtPpgSu_ysHGDs,1166
|
|
132
140
|
invenio_vocabularies/contrib/subjects/mappings/v7/__init__.py,sha256=QK__a1749g2UN3fBqOr9jx8ccZHWAuvd6DSN4B1jJW4,258
|
|
133
|
-
invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json,sha256=
|
|
141
|
+
invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json,sha256=Gr2dnAiqKgOISW2zhv4RZsssIGQPBNtPpgSu_ysHGDs,1166
|
|
134
142
|
invenio_vocabularies/datastreams/__init__.py,sha256=VPefh6k4Q3eYxKIW8I5zXUGucntp7VHxaOR5Vhgkfmg,412
|
|
135
143
|
invenio_vocabularies/datastreams/datastreams.py,sha256=_jSXv2yAvSjt8btMoLJlqXOkqBzYb3Xe9m2GH50Nwag,3987
|
|
136
144
|
invenio_vocabularies/datastreams/errors.py,sha256=IDUZ3gNtYGrhcOgApHCms1gNNJTyJzoMPmG5JtIeYNU,678
|
|
137
|
-
invenio_vocabularies/datastreams/factories.py,sha256=
|
|
138
|
-
invenio_vocabularies/datastreams/readers.py,sha256=
|
|
145
|
+
invenio_vocabularies/datastreams/factories.py,sha256=H8a2gAy7KNImtdCdtqpVKC5gIvE3ON6U1Wn1_zaMlQ4,2181
|
|
146
|
+
invenio_vocabularies/datastreams/readers.py,sha256=e-fkgjDqyUUgwpLF8ihxYChaZxGjAFLiA3J39Drt0PU,9978
|
|
139
147
|
invenio_vocabularies/datastreams/transformers.py,sha256=wspny-kazYMRHjkkyFfRVNIYzJxbjAqokRCBQ_-gXcY,1357
|
|
140
|
-
invenio_vocabularies/datastreams/writers.py,sha256=
|
|
148
|
+
invenio_vocabularies/datastreams/writers.py,sha256=y8AIYXdwQLmmTjuckVqOnp3KKtKWX2bOabM12LxTvOQ,3635
|
|
141
149
|
invenio_vocabularies/datastreams/xml.py,sha256=HFa-lfxj7kFrr2IjeN1jxSLDfcvpBwO9nZLZF2-BryE,997
|
|
142
150
|
invenio_vocabularies/records/__init__.py,sha256=Uj7O6fYdAtLOkLXUGSAYPADBB7aqP4yVs9b6OAjA158,243
|
|
143
151
|
invenio_vocabularies/records/api.py,sha256=Lynt6Sz4BVN1orh0zgJ5ljhnUobEtcq8c22PmSeUo2U,1494
|
|
144
152
|
invenio_vocabularies/records/models.py,sha256=0zOciiWY3EsEm_lNVtFecip0qgCg9JjhXoJDllrZFnc,2500
|
|
145
153
|
invenio_vocabularies/records/pidprovider.py,sha256=ByUwsZKimRv2QlbMdJmhCejmJd2sIqwt8fISWW6aW8g,3836
|
|
146
154
|
invenio_vocabularies/records/jsonschemas/__init__.py,sha256=qr2BZMyMVvVRSeJzPCI8re2BlGokiDjeqwREkythSrQ,246
|
|
147
|
-
invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json,sha256=
|
|
148
|
-
invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json,sha256=
|
|
155
|
+
invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json,sha256=1qTs-Liji01HMitT8768urX3BhYXZmHWUGqV8VmOotU,372
|
|
156
|
+
invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json,sha256=x7kkCkuMNQ6tygb_RWf7QOlOtyG-kqKOH5FNnBn1cqo,1289
|
|
149
157
|
invenio_vocabularies/records/mappings/__init__.py,sha256=kER6e5hZFmPpesFAx-oQsMseep8RXobQRiLIE2r5IMc,244
|
|
150
158
|
invenio_vocabularies/records/mappings/os-v1/__init__.py,sha256=XaGt61tsIKfG59y59Bf0NaPzJECWZnzHSTbAQNUwlVo,248
|
|
151
159
|
invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json,sha256=1Py4-BpcK8UMBt06p3zVPLqID8XeDsF2CUmwuKUx0Ug,2127
|
|
@@ -156,22 +164,27 @@ invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json,sha
|
|
|
156
164
|
invenio_vocabularies/records/systemfields/__init__.py,sha256=MRLoLF3h8VYuqJ9tbbgXjXkTDUniz24pVnujLX-psZI,406
|
|
157
165
|
invenio_vocabularies/records/systemfields/pid.py,sha256=5e2zZD0uHP5r32--KmuzjfHk3B5GXEV3yBuoKeit9mQ,3740
|
|
158
166
|
invenio_vocabularies/records/systemfields/relations.py,sha256=UbaiuxvAZorxNN4t63Y5ePc5OUJ_cYGAxLsFcET3E-g,1528
|
|
159
|
-
invenio_vocabularies/resources/__init__.py,sha256=
|
|
160
|
-
invenio_vocabularies/resources/
|
|
167
|
+
invenio_vocabularies/resources/__init__.py,sha256=pbgT2lfm2pihPFk9Zd2dU3URgjWsVMGfPd3yWTfRzkw,663
|
|
168
|
+
invenio_vocabularies/resources/config.py,sha256=PooKsBd3KXoApc9zoSk-fkeQhzygYdGU4lH5FgQ3W2Q,3157
|
|
169
|
+
invenio_vocabularies/resources/resource.py,sha256=hJs5GD0XtcBafwgTI9n8FHK5Fb6agx8BgzF81K5vRbU,4229
|
|
161
170
|
invenio_vocabularies/resources/schema.py,sha256=B_Y7uOSfVlogUmiDZfRpa3EWx1VJmbrzTtLachv8yEw,541
|
|
162
171
|
invenio_vocabularies/resources/serializer.py,sha256=pwfckLdkMu1MNDkocyMg1XeX6RhbfeuV4fjDO5xKDxo,1190
|
|
163
|
-
invenio_vocabularies/services/__init__.py,sha256=
|
|
172
|
+
invenio_vocabularies/services/__init__.py,sha256=6mi62EG21Id6x23nx0X193I6sVTakK6jOdYNEKPxXUk,522
|
|
164
173
|
invenio_vocabularies/services/components.py,sha256=d9C-24dEDM63gFm75nU-dXrrjS2zZi7Nfkv40BGnHwM,1941
|
|
174
|
+
invenio_vocabularies/services/config.py,sha256=uXiEFDVgBT1AgTdaB7dqfYn4n4Dw6J-sOmQ_QmBuHD4,4777
|
|
165
175
|
invenio_vocabularies/services/facets.py,sha256=qvdHoGSJJr90dZHSVe0-hlO1r0LtTnFVSjrt9PNuNAg,3872
|
|
166
|
-
invenio_vocabularies/services/permissions.py,sha256=
|
|
176
|
+
invenio_vocabularies/services/permissions.py,sha256=nU1t_aW-RimFTWHbg9SivfzoP3P2Z5CqZ16U4jX5wN8,821
|
|
167
177
|
invenio_vocabularies/services/querystr.py,sha256=X3JHVF9B0O0iLWrnW3ok_bf_8jA-Cs_oAcYYkGOm3Uw,1829
|
|
168
|
-
invenio_vocabularies/services/
|
|
169
|
-
invenio_vocabularies/services/
|
|
170
|
-
invenio_vocabularies/services/
|
|
178
|
+
invenio_vocabularies/services/results.py,sha256=6LZIpzWSbt9wpRNWgjA1uIM4RFooOYTkHcp5-PnIJdU,3767
|
|
179
|
+
invenio_vocabularies/services/schema.py,sha256=mwIBFylpQlWw1M6h_axc-z4Yd7X3Z1S0PxJOlZGpfrQ,4634
|
|
180
|
+
invenio_vocabularies/services/service.py,sha256=rUPeb86Jv2WXzRp-RZDHLWsouCmJcqHpCmgrpLm2Vs4,6387
|
|
181
|
+
invenio_vocabularies/services/tasks.py,sha256=Z_riU6kEsuAo1xdyYcrgPL7Y9hKPOGSMLPWYee49vSo,1776
|
|
171
182
|
invenio_vocabularies/services/custom_fields/__init__.py,sha256=QgvSsn-S1xLzbZ57pjjGTt5oI3HqzXHVjwGTtuPgzN8,421
|
|
172
183
|
invenio_vocabularies/services/custom_fields/subject.py,sha256=k-qXbCjXPTk-Xo_W5sojFpQbkntv50odROiNyJHMzL8,2234
|
|
173
184
|
invenio_vocabularies/services/custom_fields/vocabulary.py,sha256=eCvqrNloMMCCvqR49IQwzk2p4xapx5_bmQhd6ByJZFM,3019
|
|
174
185
|
invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html,sha256=h9syHkwZ6ltgjWw_0M5UoR6h6Re2imJ7uQ6M6peOyhk,686
|
|
186
|
+
invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html,sha256=-gDwRctqIkSzh9ial8zfbA4o41ARM-Mq-THkcJ87U00,359
|
|
187
|
+
invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html,sha256=2dfQzRFl5RwUwle245sxWGnObwJQXr-e_bBzpe_PkkA,2684
|
|
175
188
|
invenio_vocabularies/translations/messages.pot,sha256=IzTTWdWknzmKKtl1UNUxPOwHjfBB_iidm_eeEY2kV-M,3907
|
|
176
189
|
invenio_vocabularies/translations/af/LC_MESSAGES/messages.mo,sha256=HokSco2JpukLl_j07yQ2wjKmUf8_Zzru6KQtYdyLtEo,523
|
|
177
190
|
invenio_vocabularies/translations/af/LC_MESSAGES/messages.po,sha256=XXoiqCtGELaxl6hxRj31D3DCdgBUrz0oD3MYJUpcklM,3976
|
|
@@ -267,10 +280,10 @@ invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=g1I5aNO8r
|
|
|
267
280
|
invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=vg8qC8ofpAdJ3mQz7mWM1ylKDpiNWXFs7rlMdSPkgKk,4629
|
|
268
281
|
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=cqSm8NtMAwrP9O6qbmtkDtRT1e9D93qpsJN5X9_PPVw,600
|
|
269
282
|
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=9ACePz_EpB-LfcIJajZ2kp8Q04tcdrQLOtug162ZUss,4115
|
|
270
|
-
invenio_vocabularies-
|
|
271
|
-
invenio_vocabularies-
|
|
272
|
-
invenio_vocabularies-
|
|
273
|
-
invenio_vocabularies-
|
|
274
|
-
invenio_vocabularies-
|
|
275
|
-
invenio_vocabularies-
|
|
276
|
-
invenio_vocabularies-
|
|
283
|
+
invenio_vocabularies-4.1.1.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
|
|
284
|
+
invenio_vocabularies-4.1.1.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
|
|
285
|
+
invenio_vocabularies-4.1.1.dist-info/METADATA,sha256=so4EirpouCKXf84mwYhjdyHsj_iku-y9c16mn112qEc,7894
|
|
286
|
+
invenio_vocabularies-4.1.1.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
|
|
287
|
+
invenio_vocabularies-4.1.1.dist-info/entry_points.txt,sha256=qHHFkyU3r0COsKm5gCYuhP8tfsioBggxKAiEXNAbbjM,2803
|
|
288
|
+
invenio_vocabularies-4.1.1.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
|
|
289
|
+
invenio_vocabularies-4.1.1.dist-info/RECORD,,
|
{invenio_vocabularies-3.4.2.dist-info → invenio_vocabularies-4.1.1.dist-info}/entry_points.txt
RENAMED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
[flask.commands]
|
|
2
2
|
vocabularies = invenio_vocabularies.cli:vocabularies
|
|
3
3
|
|
|
4
|
+
[invenio_administration.views]
|
|
5
|
+
vocabularies_list = invenio_vocabularies.administration.views.vocabularies:VocabulariesListView
|
|
6
|
+
|
|
4
7
|
[invenio_assets.webpack]
|
|
5
8
|
invenio_vocabularies = invenio_vocabularies.webpack:theme
|
|
6
9
|
|
|
@@ -13,6 +16,7 @@ invenio_vocabularies_affiliations = invenio_vocabularies.views:create_affiliatio
|
|
|
13
16
|
invenio_vocabularies_awards = invenio_vocabularies.views:create_awards_blueprint_from_app
|
|
14
17
|
invenio_vocabularies_ext = invenio_vocabularies.views:blueprint
|
|
15
18
|
invenio_vocabularies_funders = invenio_vocabularies.views:create_funders_blueprint_from_app
|
|
19
|
+
invenio_vocabularies_list = invenio_vocabularies.views:create_list_blueprint_from_app
|
|
16
20
|
invenio_vocabularies_names = invenio_vocabularies.views:create_names_blueprint_from_app
|
|
17
21
|
invenio_vocabularies_subjects = invenio_vocabularies.views:create_subjects_blueprint_from_app
|
|
18
22
|
|
|
@@ -28,6 +32,9 @@ invenio_vocabularies_ext = invenio_vocabularies.views:blueprint
|
|
|
28
32
|
[invenio_base.finalize_app]
|
|
29
33
|
invenio_vocabularies = invenio_vocabularies.ext:finalize_app
|
|
30
34
|
|
|
35
|
+
[invenio_celery.tasks]
|
|
36
|
+
invenio_vocabularies_services = invenio_vocabularies.services.tasks
|
|
37
|
+
|
|
31
38
|
[invenio_db.alembic]
|
|
32
39
|
invenio_vocabularies = invenio_vocabularies:alembic
|
|
33
40
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|