invenio-vocabularies 1.2.0__py2.py3-none-any.whl → 6.3.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 (239) hide show
  1. invenio_vocabularies/__init__.py +2 -2
  2. invenio_vocabularies/administration/__init__.py +10 -0
  3. invenio_vocabularies/administration/views/__init__.py +10 -0
  4. invenio_vocabularies/administration/views/vocabularies.py +45 -0
  5. invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py +4 -4
  6. invenio_vocabularies/alembic/4f365fced43f_create_vocabularies_tables.py +2 -2
  7. invenio_vocabularies/alembic/55a700f897b6_add_names_and_afiliations_pid_column.py +96 -0
  8. invenio_vocabularies/alembic/676dd587542d_create_funders_vocabulary_table.py +1 -1
  9. invenio_vocabularies/alembic/e1146238edd3_create_awards_table.py +1 -1
  10. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.eslintrc.yml +11 -0
  11. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.prettierrc +1 -0
  12. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/index.js +7 -0
  13. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json +25 -0
  14. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/AwardResults.js +95 -0
  15. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js +139 -0
  16. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FunderDropdown.js +87 -0
  17. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js +223 -0
  18. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js +1 -0
  19. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js +152 -0
  20. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js +270 -0
  21. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js +37 -0
  22. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/index.js +8 -0
  23. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/index.js +7 -0
  24. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/index.js +7 -0
  25. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/index.js +7 -0
  26. invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next-scanner.config.js +63 -0
  27. invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next.js +36 -0
  28. invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/index.js +1 -0
  29. invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/package.json +53 -0
  30. invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/scripts/compileCatalog.js +39 -0
  31. invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/scripts/initCatalog.js +19 -0
  32. invenio_vocabularies/cli.py +31 -44
  33. invenio_vocabularies/config.py +74 -7
  34. invenio_vocabularies/contrib/affiliations/affiliations.py +22 -6
  35. invenio_vocabularies/contrib/affiliations/api.py +1 -2
  36. invenio_vocabularies/contrib/affiliations/config.py +10 -5
  37. invenio_vocabularies/contrib/affiliations/datastreams.py +186 -0
  38. invenio_vocabularies/contrib/affiliations/facets.py +36 -0
  39. invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json +38 -7
  40. invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json +22 -1
  41. invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json +171 -0
  42. invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json +22 -1
  43. invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json +171 -0
  44. invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json +22 -1
  45. invenio_vocabularies/contrib/affiliations/schema.py +23 -5
  46. invenio_vocabularies/contrib/affiliations/services.py +1 -2
  47. invenio_vocabularies/contrib/awards/awards.py +18 -6
  48. invenio_vocabularies/contrib/awards/config.py +1 -3
  49. invenio_vocabularies/contrib/awards/datastreams.py +246 -3
  50. invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json +41 -0
  51. invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json +53 -1
  52. invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json +53 -1
  53. invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json +53 -1
  54. invenio_vocabularies/contrib/awards/schema.py +27 -35
  55. invenio_vocabularies/contrib/awards/serializer.py +9 -1
  56. invenio_vocabularies/contrib/awards/services.py +1 -2
  57. invenio_vocabularies/contrib/common/__init__.py +9 -0
  58. invenio_vocabularies/contrib/common/openaire/__init__.py +9 -0
  59. invenio_vocabularies/contrib/common/openaire/datastreams.py +84 -0
  60. invenio_vocabularies/contrib/common/ror/__init__.py +9 -0
  61. invenio_vocabularies/contrib/common/ror/datastreams.py +220 -0
  62. invenio_vocabularies/contrib/funders/config.py +12 -5
  63. invenio_vocabularies/contrib/funders/datastreams.py +40 -62
  64. invenio_vocabularies/contrib/funders/facets.py +13 -5
  65. invenio_vocabularies/contrib/funders/funders.py +4 -2
  66. invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json +36 -1
  67. invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json +22 -1
  68. invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json +156 -0
  69. invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json +22 -1
  70. invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json +156 -0
  71. invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json +22 -1
  72. invenio_vocabularies/contrib/funders/schema.py +8 -0
  73. invenio_vocabularies/contrib/funders/serializer.py +2 -1
  74. invenio_vocabularies/contrib/names/config.py +5 -3
  75. invenio_vocabularies/contrib/names/datastreams.py +177 -38
  76. invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json +2 -6
  77. invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json +3 -0
  78. invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json +150 -0
  79. invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json +3 -0
  80. invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json +150 -0
  81. invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json +3 -0
  82. invenio_vocabularies/contrib/names/names.py +29 -13
  83. invenio_vocabularies/contrib/names/permissions.py +20 -0
  84. invenio_vocabularies/contrib/names/s3client.py +44 -0
  85. invenio_vocabularies/contrib/names/schema.py +31 -4
  86. invenio_vocabularies/contrib/subjects/config.py +9 -3
  87. invenio_vocabularies/contrib/subjects/datastreams.py +61 -0
  88. invenio_vocabularies/contrib/subjects/euroscivoc/__init__.py +9 -0
  89. invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py +171 -0
  90. invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +31 -0
  91. invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json +35 -0
  92. invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json +35 -0
  93. invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json +35 -0
  94. invenio_vocabularies/contrib/subjects/mesh/__init__.py +9 -0
  95. invenio_vocabularies/contrib/subjects/mesh/datastreams.py +43 -0
  96. invenio_vocabularies/contrib/subjects/schema.py +47 -5
  97. invenio_vocabularies/contrib/subjects/subjects.py +10 -0
  98. invenio_vocabularies/datastreams/datastreams.py +61 -13
  99. invenio_vocabularies/datastreams/factories.py +1 -2
  100. invenio_vocabularies/datastreams/readers.py +138 -29
  101. invenio_vocabularies/datastreams/tasks.py +37 -0
  102. invenio_vocabularies/datastreams/transformers.py +17 -27
  103. invenio_vocabularies/datastreams/writers.py +116 -14
  104. invenio_vocabularies/datastreams/xml.py +34 -0
  105. invenio_vocabularies/ext.py +59 -5
  106. invenio_vocabularies/factories.py +137 -0
  107. invenio_vocabularies/jobs.py +133 -0
  108. invenio_vocabularies/proxies.py +2 -2
  109. invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json +7 -0
  110. invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json +1 -4
  111. invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json +3 -3
  112. invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json +3 -3
  113. invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json +3 -3
  114. invenio_vocabularies/records/models.py +8 -10
  115. invenio_vocabularies/records/pidprovider.py +1 -2
  116. invenio_vocabularies/records/systemfields/relations.py +2 -2
  117. invenio_vocabularies/resources/__init__.py +9 -1
  118. invenio_vocabularies/resources/config.py +105 -0
  119. invenio_vocabularies/resources/resource.py +31 -41
  120. invenio_vocabularies/resources/schema.py +2 -1
  121. invenio_vocabularies/services/__init__.py +5 -2
  122. invenio_vocabularies/services/config.py +179 -0
  123. invenio_vocabularies/services/custom_fields/__init__.py +6 -2
  124. invenio_vocabularies/services/custom_fields/subject.py +82 -0
  125. invenio_vocabularies/services/custom_fields/vocabulary.py +19 -9
  126. invenio_vocabularies/services/facets.py +67 -37
  127. invenio_vocabularies/services/permissions.py +3 -1
  128. invenio_vocabularies/services/results.py +110 -0
  129. invenio_vocabularies/services/schema.py +39 -2
  130. invenio_vocabularies/services/service.py +46 -94
  131. invenio_vocabularies/services/tasks.py +1 -1
  132. invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html +23 -0
  133. invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html +12 -0
  134. invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html +71 -0
  135. invenio_vocabularies/translations/af/LC_MESSAGES/messages.mo +0 -0
  136. invenio_vocabularies/translations/af/LC_MESSAGES/messages.po +1 -1
  137. invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo +0 -0
  138. invenio_vocabularies/translations/ar/LC_MESSAGES/messages.po +9 -8
  139. invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo +0 -0
  140. invenio_vocabularies/translations/bg/LC_MESSAGES/messages.po +1 -1
  141. invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo +0 -0
  142. invenio_vocabularies/translations/ca/LC_MESSAGES/messages.po +1 -1
  143. invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo +0 -0
  144. invenio_vocabularies/translations/cs/LC_MESSAGES/messages.po +1 -1
  145. invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo +0 -0
  146. invenio_vocabularies/translations/da/LC_MESSAGES/messages.po +1 -1
  147. invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo +0 -0
  148. invenio_vocabularies/translations/de/LC_MESSAGES/messages.po +1 -1
  149. invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.mo +0 -0
  150. invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.po +139 -0
  151. invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.mo +0 -0
  152. invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.po +139 -0
  153. invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo +0 -0
  154. invenio_vocabularies/translations/el/LC_MESSAGES/messages.po +1 -1
  155. invenio_vocabularies/translations/en/LC_MESSAGES/messages.mo +0 -0
  156. invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.mo +0 -0
  157. invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.po +139 -0
  158. invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.mo +0 -0
  159. invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.po +139 -0
  160. invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo +0 -0
  161. invenio_vocabularies/translations/es/LC_MESSAGES/messages.po +1 -1
  162. invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.mo +0 -0
  163. invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.po +139 -0
  164. invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.mo +0 -0
  165. invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.po +139 -0
  166. invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo +0 -0
  167. invenio_vocabularies/translations/et/LC_MESSAGES/messages.po +1 -1
  168. invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.mo +0 -0
  169. invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.po +1 -1
  170. invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo +0 -0
  171. invenio_vocabularies/translations/fa/LC_MESSAGES/messages.po +1 -1
  172. invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.mo +0 -0
  173. invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.po +139 -0
  174. invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo +0 -0
  175. invenio_vocabularies/translations/fr/LC_MESSAGES/messages.po +1 -1
  176. invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.mo +0 -0
  177. invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.po +139 -0
  178. invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.mo +0 -0
  179. invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.po +139 -0
  180. invenio_vocabularies/translations/gl/LC_MESSAGES/messages.mo +0 -0
  181. invenio_vocabularies/translations/gl/LC_MESSAGES/messages.po +1 -1
  182. invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.mo +0 -0
  183. invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.po +139 -0
  184. invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo +0 -0
  185. invenio_vocabularies/translations/hr/LC_MESSAGES/messages.po +1 -1
  186. invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo +0 -0
  187. invenio_vocabularies/translations/hu/LC_MESSAGES/messages.po +4 -4
  188. invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.mo +0 -0
  189. invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.po +139 -0
  190. invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo +0 -0
  191. invenio_vocabularies/translations/it/LC_MESSAGES/messages.po +4 -3
  192. invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo +0 -0
  193. invenio_vocabularies/translations/ja/LC_MESSAGES/messages.po +1 -1
  194. invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo +0 -0
  195. invenio_vocabularies/translations/ka/LC_MESSAGES/messages.po +1 -1
  196. invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo +0 -0
  197. invenio_vocabularies/translations/lt/LC_MESSAGES/messages.po +1 -1
  198. invenio_vocabularies/translations/messages.pot +95 -48
  199. invenio_vocabularies/translations/ne/LC_MESSAGES/messages.mo +0 -0
  200. invenio_vocabularies/translations/ne/LC_MESSAGES/messages.po +139 -0
  201. invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo +0 -0
  202. invenio_vocabularies/translations/no/LC_MESSAGES/messages.po +1 -1
  203. invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo +0 -0
  204. invenio_vocabularies/translations/pl/LC_MESSAGES/messages.po +1 -1
  205. invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo +0 -0
  206. invenio_vocabularies/translations/pt/LC_MESSAGES/messages.po +1 -1
  207. invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo +0 -0
  208. invenio_vocabularies/translations/ro/LC_MESSAGES/messages.po +1 -1
  209. invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo +0 -0
  210. invenio_vocabularies/translations/ru/LC_MESSAGES/messages.po +1 -1
  211. invenio_vocabularies/translations/rw/LC_MESSAGES/messages.mo +0 -0
  212. invenio_vocabularies/translations/rw/LC_MESSAGES/messages.po +1 -1
  213. invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo +0 -0
  214. invenio_vocabularies/translations/sk/LC_MESSAGES/messages.po +1 -1
  215. invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo +0 -0
  216. invenio_vocabularies/translations/sv/LC_MESSAGES/messages.po +4 -3
  217. invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.mo +0 -0
  218. invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.po +139 -0
  219. invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo +0 -0
  220. invenio_vocabularies/translations/tr/LC_MESSAGES/messages.po +1 -1
  221. invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo +0 -0
  222. invenio_vocabularies/translations/uk/LC_MESSAGES/messages.po +17 -13
  223. invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.mo +0 -0
  224. invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.po +139 -0
  225. invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
  226. invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po +1 -1
  227. invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
  228. invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po +1 -1
  229. invenio_vocabularies/views.py +12 -26
  230. invenio_vocabularies/webpack.py +51 -0
  231. invenio_vocabularies-6.3.1.dist-info/METADATA +346 -0
  232. invenio_vocabularies-6.3.1.dist-info/RECORD +306 -0
  233. {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/WHEEL +1 -1
  234. {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/entry_points.txt +20 -0
  235. invenio_vocabularies-1.2.0.dist-info/METADATA +0 -133
  236. invenio_vocabularies-1.2.0.dist-info/RECORD +0 -220
  237. {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/AUTHORS.rst +0 -0
  238. {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/LICENSE +0 -0
  239. {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,346 @@
1
+ Metadata-Version: 2.1
2
+ Name: invenio-vocabularies
3
+ Version: 6.3.1
4
+ Summary: Invenio module for managing vocabularies.
5
+ Home-page: https://github.com/inveniosoftware/invenio-vocabularies
6
+ Author: CERN
7
+ Author-email: info@inveniosoftware.org
8
+ License: MIT
9
+ Keywords: invenio vocabulary management
10
+ Platform: any
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Requires-Python: >=3.7
13
+ Requires-Dist: invenio-i18n <3.0.0,>=2.0.0
14
+ Requires-Dist: invenio-records-resources <7.0.0,>=6.0.0
15
+ Requires-Dist: invenio-administration <3.0.0,>=2.0.0
16
+ Requires-Dist: invenio-jobs <2.0.0,>=1.0.0
17
+ Requires-Dist: lxml >=4.5.0
18
+ Requires-Dist: PyYAML >=5.4.1
19
+ Requires-Dist: regex >=2024.7.24
20
+ Requires-Dist: rdflib >=7.0.0
21
+ Provides-Extra: elasticsearch7
22
+ Requires-Dist: invenio-search[elasticsearch7] <3.0.0,>=2.1.0 ; extra == 'elasticsearch7'
23
+ Provides-Extra: mysql
24
+ Provides-Extra: oaipmh
25
+ Requires-Dist: invenio-oaipmh-scythe >=0.13.0 ; extra == 'oaipmh'
26
+ Provides-Extra: opensearch1
27
+ Requires-Dist: invenio-search[opensearch1] <3.0.0,>=2.1.0 ; extra == 'opensearch1'
28
+ Provides-Extra: opensearch2
29
+ Requires-Dist: invenio-search[opensearch2] <3.0.0,>=2.1.0 ; extra == 'opensearch2'
30
+ Provides-Extra: postgresql
31
+ Provides-Extra: s3fs
32
+ Requires-Dist: s3fs >=2024.6.1 ; extra == 's3fs'
33
+ Provides-Extra: sqlite
34
+ Provides-Extra: tests
35
+ Requires-Dist: pytest-black-ng >=0.4.0 ; extra == 'tests'
36
+ Requires-Dist: invenio-app <2.0.0,>=1.4.0 ; extra == 'tests'
37
+ Requires-Dist: invenio-db[mysql,postgresql] <2.0.0,>=1.0.14 ; extra == 'tests'
38
+ Requires-Dist: pytest-httpserver >=1.0.10 ; extra == 'tests'
39
+ Requires-Dist: pytest-invenio <3.0.0,>=2.1.0 ; extra == 'tests'
40
+ Requires-Dist: Sphinx >=4.5 ; extra == 'tests'
41
+
42
+ ..
43
+ Copyright (C) 2020-2021 CERN.
44
+
45
+ Invenio-Vocabularies is free software; you can redistribute it and/or
46
+ modify it under the terms of the MIT License; see LICENSE file for more
47
+ details.
48
+
49
+ ======================
50
+ Invenio-Vocabularies
51
+ ======================
52
+
53
+ .. image:: https://github.com/inveniosoftware/invenio-vocabularies/workflows/CI/badge.svg
54
+ :target: https://github.com/inveniosoftware/invenio-vocabularies/actions?query=workflow%3ACI
55
+
56
+ .. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-vocabularies.svg
57
+ :target: https://coveralls.io/r/inveniosoftware/invenio-vocabularies
58
+
59
+ .. image:: https://img.shields.io/github/tag/inveniosoftware/invenio-vocabularies.svg
60
+ :target: https://github.com/inveniosoftware/invenio-vocabularies/releases
61
+
62
+ .. image:: https://img.shields.io/pypi/dm/invenio-vocabularies.svg
63
+ :target: https://pypi.python.org/pypi/invenio-vocabularies
64
+
65
+ .. image:: https://img.shields.io/github/license/inveniosoftware/invenio-vocabularies.svg
66
+ :target: https://github.com/inveniosoftware/invenio-vocabularies/blob/master/LICENSE
67
+
68
+ Invenio module for managing vocabularies, based on Invenio-Records and Invenio-Records-Resources. This module provides:
69
+
70
+ - Factories for easily generating models, record API classes, services, and resources
71
+ - Helpers for importing vocabularies
72
+
73
+ Further documentation is available on
74
+ https://invenio-vocabularies.readthedocs.io/
75
+
76
+ ..
77
+ Copyright (C) 2020-2024 CERN.
78
+
79
+ Invenio-Vocabularies is free software; you can redistribute it and/or
80
+ modify it under the terms of the MIT License; see LICENSE file for more
81
+ details.
82
+
83
+ Changes
84
+ =======
85
+
86
+ Version v6.3.1 (released 2024-10-11)
87
+
88
+ - jobs: pass since as string to task
89
+
90
+ Version v6.3.0 (released 2024-10-11)
91
+
92
+ - awards: get program from CORDIS
93
+ - fix: add 'en' title if missing ROR
94
+ - fix: since not passed to args
95
+ - jobs: add process funders job
96
+
97
+ Version v6.2.1 (released 2024-10-10)
98
+
99
+ - webpack: bump react-searchkit due to axios upgrade
100
+
101
+ Version v6.2.0 (released 2024-10-10)
102
+
103
+ - tests: update axios version (needed only for local js tests)
104
+
105
+ Version v6.1.0 (released 2024-10-10)
106
+
107
+ - jobs: define invenio job wrapper for ROR affiliation data stream
108
+ - awards: remove subj props from jsonschema
109
+
110
+ Version v6.0.0 (released 2024-10-03)
111
+
112
+ - datastreams: writers: add option to not insert
113
+ - subjects: added euroscivoc datastream
114
+ - affiliations: OpenAIRE transformer and writer adding PIC identifier
115
+ - awards: added subjects and participating organizations from CORDIS datastreams
116
+ - names: add permission check to names search
117
+
118
+ Version v5.1.0 (released 2024-09-25)
119
+
120
+ - funders: tune search boost for acronyms
121
+ * Add and `acronym.keyword` field to the funders mapping.
122
+ * Apply to funders the same field boosting as in affiliations.
123
+
124
+ Version v5.0.3 (released 2024-09-06)
125
+
126
+ - services: skip index rebuilding
127
+
128
+ Version v5.0.2 (released 2024-08-28)
129
+
130
+ - ror: use datePublished as fallback date for dataset timestamp
131
+
132
+ Version v5.0.1 (released 2024-08-27)
133
+
134
+ - mapping: fix normalizer
135
+
136
+ Version v5.0.0 (released 2024-08-22)
137
+
138
+ - affiliations: dd analyzers and filters to improve results when searching affiliations
139
+
140
+ Version v4.4.0 (released 2024-08-09)
141
+
142
+ - services: use and adjust vnd.inveniordm.v1+json http accept header
143
+
144
+ Version v4.3.0 (released 2024-08-05)
145
+
146
+ - names: make names_exclude_regex configurable
147
+ - names: validate entry full names
148
+ - names: add orcid public data sync
149
+
150
+ Version v4.2.0 (released 2024-07-24)
151
+
152
+ - ror: check last update; use ld+json for metadata (#367)
153
+ - tasks: remove import funders task
154
+ - funders: add and export custom transformer
155
+ - affiliations: add and export custom transformer
156
+ - datastreams: implement asynchronous writer
157
+
158
+ Version v4.1.1 (released 2024-07-15)
159
+
160
+ - installation: use invenio-oaipmh-scythe from PyPI
161
+
162
+ Version v4.1.0 (released 2024-07-15)
163
+
164
+ - readers: make OAI-PMH an optional extra
165
+ - schema: add administration UI attributes
166
+ - ror: fix duplicate acronymns and aliases
167
+ - affiliations: fix title search
168
+ - datastreams: have yaml writer output utf8
169
+ - datastreams: add configs for funders and affiliations
170
+ - affiliations: add datastreams
171
+ - datastreams: move ror transformer to common
172
+ - vocabulary-types: services, resources, and administration UI (#310)
173
+ - config: add OpenAIRE mapping for "Latvian Council of Science"
174
+ - funders: fix country name display (#343)
175
+ - Initial implementation of OAIPMHReader (#329)
176
+ - global: add "tags" field to all vocabularies
177
+
178
+ Version 4.0.0 (released 2024-06-04)
179
+
180
+ - datastreams: implement factories for generating vocabulary configurations
181
+ - datastreams: added ROR HTTP reader
182
+ - funders: use ROR v2 dump instead of v1
183
+ - datastreams: added celery task for funders using ROR HTTP reader
184
+ - datastreams: add OpenAIRE Project HTTP Reader
185
+ - datastreams: fix OpenAIRE graph dataset parsing
186
+ - installation: upgrade invenio-records-resources
187
+
188
+ Version 3.4.0 (released 2024-04-19)
189
+
190
+ - templates: add subject fields UI template (#303)
191
+
192
+ Version 3.3.0 (released 2024-04-16)
193
+
194
+ - assets: add overridable awards and funding
195
+
196
+ Version 3.2.0 (released 2024-03-22)
197
+
198
+ - funding: add country and ror to funder search results
199
+ - init: move record_once to finalize_app (removes deprecation on `before_first_request`)
200
+ - installation: upgrade invenio-app
201
+
202
+
203
+ Version 3.1.0 (released 2024-03-05)
204
+
205
+ - custom_fields: added subject field
206
+ - custom_fields: add pid_field to custom fields
207
+ - mappings: change "dynamic" values to string
208
+ - ci: upgrade tests matrix
209
+ - bumps react-invenio-forms
210
+
211
+ Version 3.0.0 (released 2024-01-30)
212
+
213
+ - installation: bump invenio-records-resources
214
+
215
+ Version 2.4.0 (2023-12-07)
216
+
217
+ - schema: add validation for affiliations
218
+ - mappings: add a text subfield for award acronyms
219
+ - config: add new TWCF funder
220
+
221
+ Version 2.3.1 (2023-11-01)
222
+
223
+ - contrib: add affiliation suggestion by id
224
+
225
+ Version 2.3.0 (2023-10-25)
226
+
227
+ - contrib: allow search funders by id
228
+ - contrib: funders and awards fix TransportError in OS caused by suggestion search in too many fields
229
+
230
+ Version 2.2.4 (2023-10-19)
231
+
232
+ - search: decrease number of searching fields
233
+
234
+ Version 2.2.3 (2023-10-08)
235
+
236
+ - contrib: fix ``name`` serialization for the Names vocabulary.
237
+
238
+ Version 2.2.2 (2023-10-06)
239
+
240
+ - alembic rcp: set explicit dependency on pidstore create table
241
+
242
+ Version 2.2.1 (2023-10-02)
243
+
244
+ - facets: change caching strategy by caching each vocabulary by id. Replace
245
+ lru_cache with invenio-cache to ensure that cache expiration uses a TTL that
246
+ is correctly computed.
247
+
248
+ Version 2.2.0 (2023-09-19)
249
+
250
+ - facets: implement in-memory cache
251
+
252
+ Version 2.1.1 (2023-09-19)
253
+
254
+ - funding: fixed accessiblity issues
255
+
256
+ Version 2.1.0 (2023-09-15)
257
+
258
+ - custom_fields: allow to pass schema to the VocabularyCF
259
+ - affiliations: add facet labels
260
+
261
+ Version 2.0.0 (2023-09-14)
262
+
263
+ - contrib-awards: add "program" to schema fields
264
+ - global: switch names and affiliations to model PID field
265
+ - ci: update matrix
266
+ - awards: add "program" field
267
+ - config: update awards funders mapping
268
+ - service: add sort option to load vocabs
269
+
270
+ Version 1.6.0 (2023-09-12)
271
+
272
+ - awards: add acronym to schema
273
+
274
+ Version 1.5.1 (2023-07-07)
275
+
276
+ - fix string type columns for mysql
277
+
278
+ Version 1.5.0 (2023-04-25)
279
+
280
+ - upgrade invenio-records-resources
281
+
282
+ Version 1.4.0 (2023-04-20)
283
+
284
+ - upgrade invenio-records-resources
285
+
286
+ Version 1.3.0 (2023-04-20)
287
+
288
+ - add UI deposit contrib components
289
+
290
+ Version 1.2.0 (2023-03-24)
291
+
292
+ - bump invenio-records-resources to v2.0.0
293
+
294
+ Version 1.1.0 (released 2023-03-02)
295
+
296
+ - serializers: deprecate marshamllow JSON
297
+ - mappings: add dynamic template for i18n titles and descriptions
298
+ - remove deprecated flask-babelex dependency and imports
299
+
300
+ Version 1.0.4 (released 2023-01-20)
301
+
302
+ - funders: Add ROR to identifiers for all funders in datastream
303
+ - facets: add not found facet exception (when facet is configured but not provided in setup)
304
+ - facets: handle non existing vocabulary type
305
+
306
+ Version 1.0.3 (released 2022-11-25)
307
+
308
+ - Add i18n translations.
309
+
310
+ Version 1.0.2 (released 2022-11-14)
311
+
312
+ - Fix missing field_args in VocabularyCF
313
+
314
+ Version 1.0.1 (released 2022-11-14)
315
+
316
+ - Allow kwargs in VocabularyCF
317
+
318
+ Version 1.0.0 (released 2022-11-04)
319
+
320
+ - Bump invenio-records-resources
321
+
322
+ Version 0.1.5 (released 2020-12-11)
323
+
324
+ - Bug fixes in contrib vocabulary
325
+
326
+ Version 0.1.4 (released 2020-12-11)
327
+
328
+ - Add subjects vocabulary
329
+
330
+ Version 0.1.3 (released 2020-12-11)
331
+
332
+ - Include csv vocabularies data
333
+
334
+ Version 0.1.2 (released 2020-12-11)
335
+
336
+ - CI changes
337
+
338
+ Version 0.1.1 (released 2020-12-11)
339
+
340
+ - Add vocabulary import command
341
+
342
+ Version 0.1.0 (released 2020-12-08)
343
+
344
+ - Initial public release.
345
+
346
+