invenio-vocabularies 4.0.0__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.

Files changed (63) hide show
  1. invenio_vocabularies/__init__.py +1 -1
  2. invenio_vocabularies/administration/__init__.py +10 -0
  3. invenio_vocabularies/administration/views/__init__.py +10 -0
  4. invenio_vocabularies/administration/views/vocabularies.py +44 -0
  5. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js +8 -20
  6. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js +2 -2
  7. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js +5 -7
  8. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js +3 -3
  9. invenio_vocabularies/config.py +33 -3
  10. invenio_vocabularies/contrib/affiliations/config.py +2 -2
  11. invenio_vocabularies/contrib/affiliations/datastreams.py +67 -0
  12. invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json +38 -1
  13. invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json +21 -0
  14. invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json +21 -0
  15. invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json +21 -0
  16. invenio_vocabularies/contrib/affiliations/schema.py +17 -3
  17. invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json +3 -0
  18. invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json +3 -0
  19. invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json +3 -0
  20. invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json +3 -0
  21. invenio_vocabularies/contrib/common/ror/datastreams.py +101 -1
  22. invenio_vocabularies/contrib/funders/datastreams.py +8 -92
  23. invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json +3 -0
  24. invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json +3 -0
  25. invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json +3 -0
  26. invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json +3 -0
  27. invenio_vocabularies/contrib/funders/serializer.py +2 -1
  28. invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json +3 -0
  29. invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json +3 -0
  30. invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json +3 -0
  31. invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json +3 -0
  32. invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +3 -0
  33. invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json +3 -0
  34. invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json +3 -0
  35. invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json +3 -0
  36. invenio_vocabularies/datastreams/factories.py +1 -2
  37. invenio_vocabularies/datastreams/readers.py +84 -0
  38. invenio_vocabularies/datastreams/writers.py +2 -2
  39. invenio_vocabularies/ext.py +22 -7
  40. invenio_vocabularies/factories.py +15 -0
  41. invenio_vocabularies/proxies.py +2 -2
  42. invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json +7 -0
  43. invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json +1 -4
  44. invenio_vocabularies/resources/__init__.py +8 -1
  45. invenio_vocabularies/resources/config.py +105 -0
  46. invenio_vocabularies/resources/resource.py +31 -41
  47. invenio_vocabularies/services/__init__.py +5 -2
  48. invenio_vocabularies/services/config.py +179 -0
  49. invenio_vocabularies/services/permissions.py +3 -1
  50. invenio_vocabularies/services/results.py +110 -0
  51. invenio_vocabularies/services/schema.py +11 -2
  52. invenio_vocabularies/services/service.py +41 -86
  53. invenio_vocabularies/services/tasks.py +2 -2
  54. invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html +12 -0
  55. invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html +71 -0
  56. invenio_vocabularies/views.py +7 -0
  57. {invenio_vocabularies-4.0.0.dist-info → invenio_vocabularies-4.1.1.dist-info}/METADATA +25 -1
  58. {invenio_vocabularies-4.0.0.dist-info → invenio_vocabularies-4.1.1.dist-info}/RECORD +63 -54
  59. {invenio_vocabularies-4.0.0.dist-info → invenio_vocabularies-4.1.1.dist-info}/entry_points.txt +4 -0
  60. {invenio_vocabularies-4.0.0.dist-info → invenio_vocabularies-4.1.1.dist-info}/AUTHORS.rst +0 -0
  61. {invenio_vocabularies-4.0.0.dist-info → invenio_vocabularies-4.1.1.dist-info}/LICENSE +0 -0
  62. {invenio_vocabularies-4.0.0.dist-info → invenio_vocabularies-4.1.1.dist-info}/WHEEL +0 -0
  63. {invenio_vocabularies-4.0.0.dist-info → invenio_vocabularies-4.1.1.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,8 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  #
3
- # Copyright (C) 2020-2021 CERN.
3
+ # Copyright (C) 2024 CERN.
4
4
  # Copyright (C) 2021 Northwestern University.
5
+ # Copyright (C) 2024 Uni 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,9 +10,8 @@
9
10
 
10
11
  """Vocabulary service."""
11
12
 
13
+ import sqlalchemy as sa
12
14
  from invenio_cache import current_cache
13
- from invenio_db import db
14
- from invenio_i18n import lazy_gettext as _
15
15
  from invenio_records_resources.services import (
16
16
  Link,
17
17
  LinksTemplate,
@@ -20,97 +20,52 @@ from invenio_records_resources.services import (
20
20
  SearchOptions,
21
21
  pagination_links,
22
22
  )
23
- from invenio_records_resources.services.records.components import DataComponent
24
- from invenio_records_resources.services.records.params import (
25
- FilterParam,
26
- SuggestQueryParser,
27
- )
23
+ from invenio_records_resources.services.base.utils import map_search_params
28
24
  from invenio_records_resources.services.records.schema import ServiceSchemaWrapper
29
25
  from invenio_records_resources.services.uow import unit_of_work
30
26
  from invenio_search.engine import dsl
31
27
 
32
- from ..records.api import Vocabulary
33
28
  from ..records.models import VocabularyType
34
- from .components import PIDComponent, VocabularyTypeComponent
35
- from .permissions import PermissionPolicy
36
- from .schema import TaskSchema, VocabularySchema
37
29
  from .tasks import process_datastream
38
30
 
39
31
 
40
- class VocabularySearchOptions(SearchOptions):
41
- """Search options."""
42
-
43
- params_interpreters_cls = [
44
- FilterParam.factory(param="tags", field="tags"),
45
- ] + SearchOptions.params_interpreters_cls
46
-
47
- suggest_parser_cls = SuggestQueryParser.factory(
48
- fields=[
49
- "id.text^100",
50
- "id.text._2gram",
51
- "id.text._3gram",
52
- "title.en^5",
53
- "title.en._2gram",
54
- "title.en._3gram",
55
- ],
56
- )
57
-
58
- sort_default = "bestmatch"
59
-
60
- sort_default_no_query = "title"
61
-
62
- sort_options = {
63
- "bestmatch": dict(
64
- title=_("Best match"),
65
- fields=["_score"], # ES defaults to desc on `_score` field
66
- ),
67
- "title": dict(
68
- title=_("Title"),
69
- fields=["title_sort"],
70
- ),
71
- "newest": dict(
72
- title=_("Newest"),
73
- fields=["-created"],
74
- ),
75
- "oldest": dict(
76
- title=_("Oldest"),
77
- fields=["created"],
78
- ),
79
- }
80
-
81
-
82
- class VocabulariesServiceConfig(RecordServiceConfig):
83
- """Vocabulary service configuration."""
84
-
85
- service_id = "vocabularies"
86
- indexer_queue_name = "vocabularies"
87
- permission_policy_cls = PermissionPolicy
88
- record_cls = Vocabulary
89
- schema = VocabularySchema
90
- task_schema = TaskSchema
91
-
92
- search = VocabularySearchOptions
93
-
94
- components = [
95
- # Order of components are important!
96
- VocabularyTypeComponent,
97
- DataComponent,
98
- PIDComponent,
99
- ]
100
-
101
- links_item = {
102
- "self": Link(
103
- "{+api}/vocabularies/{type}/{id}",
104
- vars=lambda record, vars: vars.update(
105
- {
106
- "id": record.pid.pid_value,
107
- "type": record.type.id,
108
- }
109
- ),
110
- ),
111
- }
32
+ class VocabularyTypeService(RecordService):
33
+ """Vocabulary type service."""
34
+
35
+ def search(self, identity, params=None):
36
+ """Search for vocabulary types entries."""
37
+ self.require_permission(identity, "list_vocabularies")
38
+
39
+ search_params = map_search_params(self.config.search, params)
40
+
41
+ query_param = search_params["q"]
42
+
43
+ filters = []
44
+ if query_param:
45
+ filters.extend([VocabularyType.id.ilike(f"%{query_param}%")])
46
+
47
+ vocabulary_types = (
48
+ VocabularyType.query.filter(sa.or_(*filters))
49
+ .order_by(
50
+ search_params["sort_direction"](
51
+ sa.text(",".join(search_params["sort"]))
52
+ )
53
+ )
54
+ .paginate(
55
+ page=search_params["page"],
56
+ per_page=search_params["size"],
57
+ error_out=False,
58
+ )
59
+ )
112
60
 
113
- links_search = pagination_links("{+api}/vocabularies/{type}{?args*}")
61
+ return self.config.result_list_cls(
62
+ self,
63
+ identity,
64
+ vocabulary_types,
65
+ search_params,
66
+ links_tpl=LinksTemplate(self.config.links_search, context={"args": params}),
67
+ links_item_tpl=self.links_item_tpl,
68
+ )
114
69
 
115
70
 
116
71
  class VocabulariesService(RecordService):
@@ -145,7 +100,7 @@ class VocabulariesService(RecordService):
145
100
  params,
146
101
  search_preference,
147
102
  extra_filter=dsl.Q("term", type__id=vocabulary_type.id),
148
- **kwargs
103
+ **kwargs,
149
104
  ).execute()
150
105
 
151
106
  return self.result_list(
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  #
3
- # Copyright (C) 2022 CERN.
3
+ # Copyright (C) 2022-2024 CERN.
4
4
  #
5
5
  # Invenio-Vocabularies is free software; you can redistribute it and/or modify
6
6
  # it under the terms of the MIT License; see LICENSE file for more details.
@@ -55,4 +55,4 @@ def import_funders():
55
55
  for result in ds.process():
56
56
  if result.errors:
57
57
  for err in result.errors:
58
- current_app.logger.error(err)
58
+ current_app.logger.exception(err)
@@ -0,0 +1,12 @@
1
+ {#
2
+ Copyright (C) 2024 Uni Münster.
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
+ {% extends "invenio_administration/search.html" %}
8
+
9
+ {% block javascript %}
10
+ {{ super() }}
11
+ {{ webpack['invenio-vocabularies-search.js'] }}
12
+ {% endblock %}
@@ -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 %}
@@ -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: 4.0.0
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
@@ -12,11 +12,14 @@ 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
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,6 +78,26 @@ https://invenio-vocabularies.readthedocs.io/
74
78
  Changes
75
79
  =======
76
80
 
81
+ Version v4.1.1 (released 2024-07-15)
82
+
83
+ - installation: use invenio-oaipmh-scythe from PyPI
84
+
85
+ Version v4.1.0 (released 2024-07-15)
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
+
77
101
  Version 4.0.0 (released 2024-06-04)
78
102
 
79
103
  - datastreams: implement factories for generating vocabulary configurations
@@ -1,12 +1,15 @@
1
- invenio_vocabularies/__init__.py,sha256=V5z9SuZ3KH-yIAm6O_EOrw27GQcnW3S76XWEknRVwBU,377
1
+ invenio_vocabularies/__init__.py,sha256=IfTJAejqD10k4V3mLdn1Kxt4hLZnARmLmBqRXgIrJ3o,377
2
2
  invenio_vocabularies/cli.py,sha256=9Gfm3jjNDX3oQnYXupxSuqwXvWnJmsQ9GmyekJ1h5Kg,5239
3
- invenio_vocabularies/config.py,sha256=mLypkeVrPKZPtokvHSF-_Q7YcV4sCVONiyhGhu-34hI,3772
4
- invenio_vocabularies/ext.py,sha256=ukuvkhkLPBy2AITFLojLYTIUlP2qcbHNkt6ES8i1TwY,5310
5
- invenio_vocabularies/factories.py,sha256=iz1MzCwzZoj0cSxlYmr_RWSOL6gRXKHqJnFznshpcvQ,2421
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
6
6
  invenio_vocabularies/fixtures.py,sha256=nNWwH04HFASjfj1oy5kMdcQGKmVjzUuA5wSw-ER1QAg,1585
7
- invenio_vocabularies/proxies.py,sha256=H_bcJXPTwGbErx-pF89ChayOZcXJXJGZW7O0xkJkYQ4,693
8
- invenio_vocabularies/views.py,sha256=JCUA6yzF_160U1oAFUIgGt4MigsLQ9MiHOInHBQw98M,1381
7
+ invenio_vocabularies/proxies.py,sha256=k7cTUgWfnCoYIuNqAj_VFi1zBN33KNNclRSVnBkObEM,711
8
+ invenio_vocabularies/views.py,sha256=PNJ5nvc3O7ASwNe56xmqy5YaU9n3UYF3W2JwvtE_kYs,1561
9
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
10
13
  invenio_vocabularies/alembic/17c703ce1eb7_create_names_table.py,sha256=2QGs0Ofi6yd93VzIBqghNi47hrZtuLf0DylKyvVzskI,1572
11
14
  invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py,sha256=Ywtp8qOFcI3PxUXemHdvy_VwdcUVtMFV1sFgNAmYrms,1054
12
15
  invenio_vocabularies/alembic/4f365fced43f_create_vocabularies_tables.py,sha256=jSrr0CLRchYADjkFeod0L-oophq2woXtRwbUU5Vytiw,3039
@@ -24,13 +27,13 @@ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/index.js,sha
24
27
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/index.js,sha256=iSx-bdQkKj6XA9NAam31bdcQmFygljQnjLcFjjK3lwU,245
25
28
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/index.js,sha256=7sSg482yJODQHU4jkP-hWJjpBOw7ubFr5nPZl5D_1gQ,262
26
29
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/AwardResults.js,sha256=AgqJg9GEcJvKZR4plZsH0j7cm9C3yjT9YCPI6uvmOyc,3499
27
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js,sha256=DTEt6SV56bc7LC1KczUixHkdBUF3lGQs8rCc-YLii4Q,4804
30
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js,sha256=TfwrlA_GrINvN1LAdW7J6q_hkbsiEKxbCWc-7VVp8mY,4674
28
31
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FunderDropdown.js,sha256=pPMB9Hirc8z3efquecrO_CKlfXE1ws6OqDB7fB30l5k,2431
29
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js,sha256=aqQ92Z0WJ4rfXz0E8KIIN4-qjORdQYxXPa5eS5b_g8A,6912
32
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js,sha256=wXJz4ZL7J0ZPppcP-qd6U5Mnupf2hkog4zxMrQ9xZtI,6906
30
33
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js,sha256=z_4lWkf3h9Uin8OzSBSKY1wpUxtbnjE2kRUjW80jAhA,35
31
34
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js,sha256=ZN4dEcHCVtSVFjzb1SAYPxmaY1Qk5ZdCt1yY7j6pvQs,4610
32
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js,sha256=To8qRm0RoMSiGZaNWfd2TM7NFZLML-8l9Wx7De8DKyI,8112
33
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js,sha256=ekOhFW9ElfJ842W4BpiW5l4YIwjWaPVX7yjfNvo_QAI,950
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
34
37
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/index.js,sha256=67N7fTRVuqH-dkVW9gh3ehr0xGrswVHYaTqUPgYEmF0,319
35
38
  invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next-scanner.config.js,sha256=7Xn2OSYbm-zzguRiNTlKLHdBnJCqLuI7MaFaQTMebbA,1814
36
39
  invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next.js,sha256=B7b65r5V2hCUgFw1G2GnMNxCeSgHgW5W2vf8I5ZWwcc,1024
@@ -42,21 +45,22 @@ invenio_vocabularies/contrib/__init__.py,sha256=C5eDia6tAVBCrbb5hd_KnxmczyBoF87N
42
45
  invenio_vocabularies/contrib/affiliations/__init__.py,sha256=rV8YAzBRoSKsBYcVjCNJh6j7ITuPRfurwj9HJHRjkN8,565
43
46
  invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=Ph0z7bT_tudsWDKFaiksCBngsG-eO6Xpbe3KdejfLXI,1591
44
47
  invenio_vocabularies/contrib/affiliations/api.py,sha256=-NrA_aYxabvNMofYCnrDZ2bLP15HGDTvvhHTDuXNg-g,322
45
- invenio_vocabularies/contrib/affiliations/config.py,sha256=dm0nHub0g2I_SGc1oULtfnGcU0WztcfygkiABqFZho8,1572
48
+ invenio_vocabularies/contrib/affiliations/config.py,sha256=u1sHeihy0B0e6w5e3HsbrC9e8A4WTLKCYPXUdcX-ZTs,1605
49
+ invenio_vocabularies/contrib/affiliations/datastreams.py,sha256=tACDv4dHcNr6d9EAi9iyoVH0z-6AakGhMy4_6eUMYYY,1650
46
50
  invenio_vocabularies/contrib/affiliations/facets.py,sha256=w316MGvtdyTpRCPOpCEmMxxLraRkbFFb1VvLkFlEc9o,1229
47
51
  invenio_vocabularies/contrib/affiliations/models.py,sha256=JUcj-1ydc2Cw2Rsc24JwXE3TFBJ_6fivhUYhGq4rT8A,329
48
52
  invenio_vocabularies/contrib/affiliations/resources.py,sha256=DBEbRxQmp-o-PeZlgFG588Q4sGcruuwIL8L9O-SzCes,435
49
- invenio_vocabularies/contrib/affiliations/schema.py,sha256=cUlE_8NehMJnlC9nzQzoN6fyZS8xJ1GfWDMPMr1n2rY,1322
53
+ invenio_vocabularies/contrib/affiliations/schema.py,sha256=O4s6aHcO1w4_aAfGuYLx_eLS6nctd6ktyIuHB6dMKqw,1842
50
54
  invenio_vocabularies/contrib/affiliations/services.py,sha256=C_6cMnh3mnL3-xxdsb16Rvm2aK4FyiaQ_qUTGylCwjo,391
51
55
  invenio_vocabularies/contrib/affiliations/jsonschemas/__init__.py,sha256=ILyZ5kejTr0p50macMBPALQCTJSe4KEE3_cgf2p3zV4,252
52
- invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json,sha256=dNzPBRoEGD_xPznFzPW_mDGR0sk8zsmixiGmciHXEgQ,677
56
+ invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json,sha256=be-glRNIBtIO87Tcyw8d68OdG4J8-ojjiCj8UJBnckg,1649
53
57
  invenio_vocabularies/contrib/affiliations/mappings/__init__.py,sha256=q7hb9lcT9KLRSGr6G7qpL8Top6wZfzj_E4uzGxnraTw,295
54
58
  invenio_vocabularies/contrib/affiliations/mappings/os-v1/__init__.py,sha256=uEiG5rFrjhpFxg5pD5j5E96_xrPojsla9PhtlOqSCw4,256
55
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json,sha256=nZfC3UVkS2OWndElvx85eoxz_u0c47GFzoPcrNHXzNY,1725
59
+ invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json,sha256=h9xXxxEGEevtTusLAmpTSfqt7h-I1NgVa8Zm_SSROiM,2100
56
60
  invenio_vocabularies/contrib/affiliations/mappings/os-v2/__init__.py,sha256=qgNQbJjbfA2hSpFJtXrsUQBZdKwg-5Y1isoXzj31InE,256
57
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json,sha256=nZfC3UVkS2OWndElvx85eoxz_u0c47GFzoPcrNHXzNY,1725
61
+ invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
58
62
  invenio_vocabularies/contrib/affiliations/mappings/v7/__init__.py,sha256=zr9YyyKyqMAnahKbnIFGr_Z7PXy9ONoU08i9z5cRguQ,259
59
- invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json,sha256=nZfC3UVkS2OWndElvx85eoxz_u0c47GFzoPcrNHXzNY,1725
63
+ invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
60
64
  invenio_vocabularies/contrib/awards/__init__.py,sha256=KwCmwFalz-3pDs9iTa5TKUidBjLepnUMqpCBXRiQOO8,474
61
65
  invenio_vocabularies/contrib/awards/api.py,sha256=OXukE7PLXs45BTtqVrhvGBNqLmQaI-CgXmHTCi36LZk,303
62
66
  invenio_vocabularies/contrib/awards/awards.py,sha256=N-BNE2ffUu-IlfKFBjMjfYqxL0vmpO8YMPe4q4e-rTo,2695
@@ -68,37 +72,37 @@ invenio_vocabularies/contrib/awards/schema.py,sha256=bg-09nvhEn-ipzaztK1iNbKc59s
68
72
  invenio_vocabularies/contrib/awards/serializer.py,sha256=MDnq41EJf_LFu-UT6qlB3-O2S7aEYePIzQ_immMnwag,1139
69
73
  invenio_vocabularies/contrib/awards/services.py,sha256=oExHPYgXgege9a7oLCK4LGb8FXCHfY0ekeS9HvTJLxs,367
70
74
  invenio_vocabularies/contrib/awards/jsonschemas/__init__.py,sha256=XB2l9hr53vqTk7o9lmy18FWGhHEUvNHu8D6nMF8Bz4k,246
71
- invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=kNw4djIuqo7Ing9O5w4k3n_HIejX4f5hpApnmJpDt7A,1029
75
+ invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=XKHjWWmv7Ph6v-JxPsP09V_6Pr9QNJcJeZdaU5HZWwU,1117
72
76
  invenio_vocabularies/contrib/awards/mappings/__init__.py,sha256=PbM5urjiSrJSx4Ak-H_lJrOOVKGT38MrGgRv61gIbAM,243
73
77
  invenio_vocabularies/contrib/awards/mappings/os-v1/__init__.py,sha256=r8IZvjorG9SVz32Hv1fncoqLfz-5Ml0Ph3jiYWCHBPk,250
74
- invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=KBAVvfuZDe_K8YISgbKCcpCZVVh-vkQIbt00OP1MPZA,1477
78
+ invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=QJT2gS7SE47YTP2HdU4ESjMwHJBTzAH70JEhWWg9SXM,1528
75
79
  invenio_vocabularies/contrib/awards/mappings/os-v2/__init__.py,sha256=9gRLFRtjhNJcbop3qz8iRpQVEng_wudDTbOFsS-gxjk,250
76
- invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=KBAVvfuZDe_K8YISgbKCcpCZVVh-vkQIbt00OP1MPZA,1477
80
+ invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=QJT2gS7SE47YTP2HdU4ESjMwHJBTzAH70JEhWWg9SXM,1528
77
81
  invenio_vocabularies/contrib/awards/mappings/v7/__init__.py,sha256=fERdPp7K7ajaoUu_4_HVLfF-WD_qcl7QgST6yGb68s4,253
78
- invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=KBAVvfuZDe_K8YISgbKCcpCZVVh-vkQIbt00OP1MPZA,1477
82
+ invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=QJT2gS7SE47YTP2HdU4ESjMwHJBTzAH70JEhWWg9SXM,1528
79
83
  invenio_vocabularies/contrib/common/__init__.py,sha256=DdbGYRthEpQtObhY_YK4vOT9Zf7FFagQ6qtUjJOYw-M,247
80
84
  invenio_vocabularies/contrib/common/ror/__init__.py,sha256=3u2-fre1SQ-4nz3Ay0nxj3ntmMZ8Ujh_4eV-fyxfmtc,239
81
- invenio_vocabularies/contrib/common/ror/datastreams.py,sha256=osd_-QarJkzsPQAAAK4LEs7BJLNtWUCGGuq1yztnnIU,2665
85
+ invenio_vocabularies/contrib/common/ror/datastreams.py,sha256=Yb671-LGDmzhhBDYIp0B5eQt56RVnx3Tq1Z_NO3KncM,6359
82
86
  invenio_vocabularies/contrib/funders/__init__.py,sha256=YxFXBDnT7NM8rFwxT_Ge3xXR2n17EM0alknQq7r_Bt8,478
83
87
  invenio_vocabularies/contrib/funders/api.py,sha256=QKGGeSnPHSoBfucvpaVruXT_txYidofZ080G3IxFkIo,306
84
88
  invenio_vocabularies/contrib/funders/config.py,sha256=BbzCRIcPxSwDllhjnGmdec5A126Zs1I4ZyVUCGi3jRA,1756
85
- invenio_vocabularies/contrib/funders/datastreams.py,sha256=ezBtXebBmUmlPSLD8hA8BuR55kREtGShWeKTVXa3QUk,4995
89
+ invenio_vocabularies/contrib/funders/datastreams.py,sha256=H-32oCR8BmtT4MRlFZHowT7axwV3dgycrPYKlmsZZec,1779
86
90
  invenio_vocabularies/contrib/funders/facets.py,sha256=a068TVtt74Ncu0latb177LFK8EdnpbMOWecAKozA04M,1245
87
91
  invenio_vocabularies/contrib/funders/funders.py,sha256=nHqUoyRRW9oruN-ghmwzb9QIz_jyBgxNUpk41yvcso8,2292
88
92
  invenio_vocabularies/contrib/funders/models.py,sha256=RAU-_YVOUNVCn03_XGJ2czcVwXTaZPk5w7X_bMAgMOk,314
89
93
  invenio_vocabularies/contrib/funders/resources.py,sha256=He4gXd737ovdrHL-HB9dX7AGxp1BVJ9QteIO7JWUVSE,415
90
94
  invenio_vocabularies/contrib/funders/schema.py,sha256=tEOdMU2i0z_3PkXL1yD1qIJeoAy_8n22xxv8V7iltz0,2480
91
- invenio_vocabularies/contrib/funders/serializer.py,sha256=UwFsPnQiMUWx2lMQgh3Bv1uosubTUF5GFIAxwECNoAk,927
95
+ invenio_vocabularies/contrib/funders/serializer.py,sha256=dPFBvofV4AzckMAxWfM4KtuCOXtsVRb9Ma7NzJetV-I,981
92
96
  invenio_vocabularies/contrib/funders/services.py,sha256=M-kQwtVOGygHe44vXr1L4E5Vvnpoco4KO0LRYwzhvMc,375
93
97
  invenio_vocabularies/contrib/funders/jsonschemas/__init__.py,sha256=O4XwUXCk-gx_K2LDVJOLkq07-ibsUkpT1vPaebgd0Gk,247
94
- invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json,sha256=5Pyqf5ig16D2OnrFf1I3ws9PIShUPtZBrT8O-bfIMbw,1598
98
+ invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json,sha256=bhmC5hHNX4sj9MIHKhGp48Tu9Nk8I_9MYpXaP7i3rIY,1686
95
99
  invenio_vocabularies/contrib/funders/mappings/__init__.py,sha256=aSr-tZd9rsjet6leeS336gdSdZHXwZKdaPStNtVNQVk,244
96
100
  invenio_vocabularies/contrib/funders/mappings/os-v1/__init__.py,sha256=xXEX3tacmXp0I1KFtDw7ohIahozd2oIGp1UN40IhFic,251
97
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json,sha256=HtYnmonywSGEov-1twath81ugIUFj-kV2oIsWB0JG5w,1595
101
+ invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
98
102
  invenio_vocabularies/contrib/funders/mappings/os-v2/__init__.py,sha256=YvMRlKYTnEmyTzI9smZp_lO3w-zcK-8IpqT-jGUXEEY,251
99
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json,sha256=HtYnmonywSGEov-1twath81ugIUFj-kV2oIsWB0JG5w,1595
103
+ invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
100
104
  invenio_vocabularies/contrib/funders/mappings/v7/__init__.py,sha256=yFHmi3QYD65YKzLU5vMEtwAZn0gwkFYa6Db_tSbHjKE,254
101
- invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=HtYnmonywSGEov-1twath81ugIUFj-kV2oIsWB0JG5w,1595
105
+ invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
102
106
  invenio_vocabularies/contrib/names/__init__.py,sha256=DBfsM7JMETZGaV5QmXEwE7zhCaAXvc2SZN6uXnW_V-c,451
103
107
  invenio_vocabularies/contrib/names/api.py,sha256=sEPn_jFX3gyoxgbdEUSIvOoPCUI8pocI6qCZO6mzCgQ,300
104
108
  invenio_vocabularies/contrib/names/config.py,sha256=hKDTEEBYGYOY6sMOArZjjkq2HJ6MJtRZp1geGLAFgRg,1735
@@ -109,14 +113,14 @@ invenio_vocabularies/contrib/names/resources.py,sha256=Z8XqLKfFKE69zdTTvcTDmpEZ6
109
113
  invenio_vocabularies/contrib/names/schema.py,sha256=eKhpNwBaACMEY0JWNrSUhr-40lXhkiHDRmM42KsLrYg,3354
110
114
  invenio_vocabularies/contrib/names/services.py,sha256=1viM-L8VEojmQWMisIOhDyl8KInPPCZEIf6tU8G07As,1763
111
115
  invenio_vocabularies/contrib/names/jsonschemas/__init__.py,sha256=pdDZdyoxqWbAQ6ngiclhYoDUsGKgRDRPXlIDy0U5Jzg,241
112
- invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=vAqnz9LbRuhRg2Vdg9Ygc_s07VqZh_gdQP4Ch5Eztsw,1170
116
+ invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=RYV811bVjnbcBnelZBSDX2hmG2Y6bZXb-u65GLXz2qE,1258
113
117
  invenio_vocabularies/contrib/names/mappings/__init__.py,sha256=l5hYJmrj83lds5GupnwCcwQn7cdJo6_4H4YYzrnBa54,242
114
118
  invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py,sha256=CKtF-xflE4QGF5P82Lj1ifEP1c7ekR24fc3SiTAkhsY,249
115
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json,sha256=XtrCBgvEwlhu_kyitiZ-ZRVn8ImK17rFuRVSV4gjHvw,1892
119
+ invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
116
120
  invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py,sha256=p38Ausy2cu1OetTQYwx-9gOFoxGrtrmqjArSDpvxfMU,249
117
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json,sha256=XtrCBgvEwlhu_kyitiZ-ZRVn8ImK17rFuRVSV4gjHvw,1892
121
+ invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
118
122
  invenio_vocabularies/contrib/names/mappings/v7/__init__.py,sha256=qLGB8C0kPI3xubcfhI8t6Wb2bLlCmVYCiwQ08bKGz9g,252
119
- invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=XtrCBgvEwlhu_kyitiZ-ZRVn8ImK17rFuRVSV4gjHvw,1892
123
+ invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
120
124
  invenio_vocabularies/contrib/subjects/__init__.py,sha256=GtXZKA6VWG1oA1fUX2Wh92nd-1i7RnnQF6RprGhxkD4,591
121
125
  invenio_vocabularies/contrib/subjects/api.py,sha256=QH8mxoLsa8qjJT1i1Tj6rRnpbH23plo2IMOJ56rnvbU,347
122
126
  invenio_vocabularies/contrib/subjects/config.py,sha256=0SHUKqR-EELVeEDiFjwzLY-_74ZmCxBKxC4dK_eOH8I,1535
@@ -127,29 +131,29 @@ invenio_vocabularies/contrib/subjects/schema.py,sha256=jWPhpCDoScf8fRs7T15kcXnpr
127
131
  invenio_vocabularies/contrib/subjects/services.py,sha256=s1U6HMmpjuz7rrgR0DtT9C28TC6sZEeDTsa4Jh1TXQk,864
128
132
  invenio_vocabularies/contrib/subjects/subjects.py,sha256=y5IidPbmYV3zs5aEp7CFzijYoVwWZ5GIMwl1kD0e0Eg,1441
129
133
  invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py,sha256=WowVUST1JoEDS3-xeHhCJvIgC9nzMkFs8XRks9zgzaM,292
130
- invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=-xQnzZEiAYLR_lQVWzgVQUc1s0UN3mDSPTWaQKgCZ3Q,826
134
+ invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=jlKAY_0oZH2zMlK8F4oNI2Xbq0ENYhHrM_w5nM9d0Fc,914
131
135
  invenio_vocabularies/contrib/subjects/mappings/__init__.py,sha256=Qk-yj1ENsTmijO8ImWuDYGzXi6QQ2VjP4DbjrpRfDk8,243
132
136
  invenio_vocabularies/contrib/subjects/mappings/os-v1/__init__.py,sha256=rv2-AasC_WJFp2t9Nrhzivmw9RovRI2_msin4oHTZuk,250
133
- invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=9qfQ_Wxpklf3-F6fzgpQmIFbZL0wwhfSGTse94c9uYg,1115
137
+ invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=Gr2dnAiqKgOISW2zhv4RZsssIGQPBNtPpgSu_ysHGDs,1166
134
138
  invenio_vocabularies/contrib/subjects/mappings/os-v2/__init__.py,sha256=rQnrw1tMKR0yzlPiXBbCVHnxy_aAhwrKghrSuhhZYAc,250
135
- invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json,sha256=9qfQ_Wxpklf3-F6fzgpQmIFbZL0wwhfSGTse94c9uYg,1115
139
+ invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json,sha256=Gr2dnAiqKgOISW2zhv4RZsssIGQPBNtPpgSu_ysHGDs,1166
136
140
  invenio_vocabularies/contrib/subjects/mappings/v7/__init__.py,sha256=QK__a1749g2UN3fBqOr9jx8ccZHWAuvd6DSN4B1jJW4,258
137
- invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json,sha256=9qfQ_Wxpklf3-F6fzgpQmIFbZL0wwhfSGTse94c9uYg,1115
141
+ invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json,sha256=Gr2dnAiqKgOISW2zhv4RZsssIGQPBNtPpgSu_ysHGDs,1166
138
142
  invenio_vocabularies/datastreams/__init__.py,sha256=VPefh6k4Q3eYxKIW8I5zXUGucntp7VHxaOR5Vhgkfmg,412
139
143
  invenio_vocabularies/datastreams/datastreams.py,sha256=_jSXv2yAvSjt8btMoLJlqXOkqBzYb3Xe9m2GH50Nwag,3987
140
144
  invenio_vocabularies/datastreams/errors.py,sha256=IDUZ3gNtYGrhcOgApHCms1gNNJTyJzoMPmG5JtIeYNU,678
141
- invenio_vocabularies/datastreams/factories.py,sha256=js76i-cjcEzslgemsrwSzXQMy3SXtY3iFcsO-OlrMIM,2182
142
- invenio_vocabularies/datastreams/readers.py,sha256=M4CRKyj7GH4iMernMqNRWgPlXjgVZTWD2X-Tp4spxEA,7409
145
+ invenio_vocabularies/datastreams/factories.py,sha256=H8a2gAy7KNImtdCdtqpVKC5gIvE3ON6U1Wn1_zaMlQ4,2181
146
+ invenio_vocabularies/datastreams/readers.py,sha256=e-fkgjDqyUUgwpLF8ihxYChaZxGjAFLiA3J39Drt0PU,9978
143
147
  invenio_vocabularies/datastreams/transformers.py,sha256=wspny-kazYMRHjkkyFfRVNIYzJxbjAqokRCBQ_-gXcY,1357
144
- invenio_vocabularies/datastreams/writers.py,sha256=a85RYE6FAQqNF7obmlqHLW_ztJ1a6biS_i9a_yaKJw4,3615
148
+ invenio_vocabularies/datastreams/writers.py,sha256=y8AIYXdwQLmmTjuckVqOnp3KKtKWX2bOabM12LxTvOQ,3635
145
149
  invenio_vocabularies/datastreams/xml.py,sha256=HFa-lfxj7kFrr2IjeN1jxSLDfcvpBwO9nZLZF2-BryE,997
146
150
  invenio_vocabularies/records/__init__.py,sha256=Uj7O6fYdAtLOkLXUGSAYPADBB7aqP4yVs9b6OAjA158,243
147
151
  invenio_vocabularies/records/api.py,sha256=Lynt6Sz4BVN1orh0zgJ5ljhnUobEtcq8c22PmSeUo2U,1494
148
152
  invenio_vocabularies/records/models.py,sha256=0zOciiWY3EsEm_lNVtFecip0qgCg9JjhXoJDllrZFnc,2500
149
153
  invenio_vocabularies/records/pidprovider.py,sha256=ByUwsZKimRv2QlbMdJmhCejmJd2sIqwt8fISWW6aW8g,3836
150
154
  invenio_vocabularies/records/jsonschemas/__init__.py,sha256=qr2BZMyMVvVRSeJzPCI8re2BlGokiDjeqwREkythSrQ,246
151
- invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json,sha256=vNMM7wg6-WEcUg6AJocjv3A8CIt6CiE2t4ys2iK9mAQ,240
152
- invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json,sha256=IaWHDhQqZ0kFeA4EMmJwa16aJP7m62CywYkfrFCf4PA,1295
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
153
157
  invenio_vocabularies/records/mappings/__init__.py,sha256=kER6e5hZFmPpesFAx-oQsMseep8RXobQRiLIE2r5IMc,244
154
158
  invenio_vocabularies/records/mappings/os-v1/__init__.py,sha256=XaGt61tsIKfG59y59Bf0NaPzJECWZnzHSTbAQNUwlVo,248
155
159
  invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json,sha256=1Py4-BpcK8UMBt06p3zVPLqID8XeDsF2CUmwuKUx0Ug,2127
@@ -160,22 +164,27 @@ invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json,sha
160
164
  invenio_vocabularies/records/systemfields/__init__.py,sha256=MRLoLF3h8VYuqJ9tbbgXjXkTDUniz24pVnujLX-psZI,406
161
165
  invenio_vocabularies/records/systemfields/pid.py,sha256=5e2zZD0uHP5r32--KmuzjfHk3B5GXEV3yBuoKeit9mQ,3740
162
166
  invenio_vocabularies/records/systemfields/relations.py,sha256=UbaiuxvAZorxNN4t63Y5ePc5OUJ_cYGAxLsFcET3E-g,1528
163
- invenio_vocabularies/resources/__init__.py,sha256=XZvY92BJx8VyBsDYYGAdU0ILO9QApmiTY1ZH-hr3BSg,384
164
- invenio_vocabularies/resources/resource.py,sha256=CyMCC4QMar8dQR9xP2Fk160blj5KzAwM8nvqzDMXyy8,4525
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
165
170
  invenio_vocabularies/resources/schema.py,sha256=B_Y7uOSfVlogUmiDZfRpa3EWx1VJmbrzTtLachv8yEw,541
166
171
  invenio_vocabularies/resources/serializer.py,sha256=pwfckLdkMu1MNDkocyMg1XeX6RhbfeuV4fjDO5xKDxo,1190
167
- invenio_vocabularies/services/__init__.py,sha256=obfLpKP5-qDJZBtXaBzROwVtuF-uqLhuYKtlnrxquGk,385
172
+ invenio_vocabularies/services/__init__.py,sha256=6mi62EG21Id6x23nx0X193I6sVTakK6jOdYNEKPxXUk,522
168
173
  invenio_vocabularies/services/components.py,sha256=d9C-24dEDM63gFm75nU-dXrrjS2zZi7Nfkv40BGnHwM,1941
174
+ invenio_vocabularies/services/config.py,sha256=uXiEFDVgBT1AgTdaB7dqfYn4n4Dw6J-sOmQ_QmBuHD4,4777
169
175
  invenio_vocabularies/services/facets.py,sha256=qvdHoGSJJr90dZHSVe0-hlO1r0LtTnFVSjrt9PNuNAg,3872
170
- invenio_vocabularies/services/permissions.py,sha256=one3NvNFYq-q15e6xxf85OkH1bWZ5OsvJqMnNbm3Qms,696
176
+ invenio_vocabularies/services/permissions.py,sha256=nU1t_aW-RimFTWHbg9SivfzoP3P2Z5CqZ16U4jX5wN8,821
171
177
  invenio_vocabularies/services/querystr.py,sha256=X3JHVF9B0O0iLWrnW3ok_bf_8jA-Cs_oAcYYkGOm3Uw,1829
172
- invenio_vocabularies/services/schema.py,sha256=ShnnH_ILHZGxE546J6Jsdwdeix6jLubSRomzf472DK8,4307
173
- invenio_vocabularies/services/service.py,sha256=W3wtKOttQjOr8Nkaus6m3KRuCMBqBsWUCAVv7Dj8bvM,7392
174
- invenio_vocabularies/services/tasks.py,sha256=rk-foPEhLL8kKoi8EPuUIJSjLX07NM3Fx8KjuY6Kqyk,1767
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
175
182
  invenio_vocabularies/services/custom_fields/__init__.py,sha256=QgvSsn-S1xLzbZ57pjjGTt5oI3HqzXHVjwGTtuPgzN8,421
176
183
  invenio_vocabularies/services/custom_fields/subject.py,sha256=k-qXbCjXPTk-Xo_W5sojFpQbkntv50odROiNyJHMzL8,2234
177
184
  invenio_vocabularies/services/custom_fields/vocabulary.py,sha256=eCvqrNloMMCCvqR49IQwzk2p4xapx5_bmQhd6ByJZFM,3019
178
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
179
188
  invenio_vocabularies/translations/messages.pot,sha256=IzTTWdWknzmKKtl1UNUxPOwHjfBB_iidm_eeEY2kV-M,3907
180
189
  invenio_vocabularies/translations/af/LC_MESSAGES/messages.mo,sha256=HokSco2JpukLl_j07yQ2wjKmUf8_Zzru6KQtYdyLtEo,523
181
190
  invenio_vocabularies/translations/af/LC_MESSAGES/messages.po,sha256=XXoiqCtGELaxl6hxRj31D3DCdgBUrz0oD3MYJUpcklM,3976
@@ -271,10 +280,10 @@ invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=g1I5aNO8r
271
280
  invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=vg8qC8ofpAdJ3mQz7mWM1ylKDpiNWXFs7rlMdSPkgKk,4629
272
281
  invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=cqSm8NtMAwrP9O6qbmtkDtRT1e9D93qpsJN5X9_PPVw,600
273
282
  invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=9ACePz_EpB-LfcIJajZ2kp8Q04tcdrQLOtug162ZUss,4115
274
- invenio_vocabularies-4.0.0.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
275
- invenio_vocabularies-4.0.0.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
276
- invenio_vocabularies-4.0.0.dist-info/METADATA,sha256=qTKnTHUD2J1jWkNiPAHYhDGDBLQaVvhT_j02lM1KtrE,6950
277
- invenio_vocabularies-4.0.0.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
278
- invenio_vocabularies-4.0.0.dist-info/entry_points.txt,sha256=wQd9reAcv3btbEyMD9FHdkMbM7GvYDJiGugCuqc14sA,2589
279
- invenio_vocabularies-4.0.0.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
280
- invenio_vocabularies-4.0.0.dist-info/RECORD,,
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,,
@@ -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