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,306 @@
1
+ invenio_vocabularies/__init__.py,sha256=hDg_LXDMIoa_G123kgz3K8g9J3LghXoNWpYs4e3YSE4,377
2
+ invenio_vocabularies/cli.py,sha256=S3lBsLxsSYa83sCDaGZr5mP7TwPvmmwxzzbB13h8VBI,5856
3
+ invenio_vocabularies/config.py,sha256=bpNKVgwfb7bgkP5zbmoawnAMD6bHWXIJV-6CpEhi-M8,5752
4
+ invenio_vocabularies/ext.py,sha256=GujJ4UARd4Fxf4z7zznRk9JAgHamZuYCOdrKU5czg00,5987
5
+ invenio_vocabularies/factories.py,sha256=mVg4yGKe58e4uS8rYe0DmIO6oMpmtNTcK3wH9eM5jVU,4380
6
+ invenio_vocabularies/fixtures.py,sha256=nNWwH04HFASjfj1oy5kMdcQGKmVjzUuA5wSw-ER1QAg,1585
7
+ invenio_vocabularies/jobs.py,sha256=LxLt3zmfgulDdf5z7RGB70QF8GMPzgdD4vAGf8ZQENY,4285
8
+ invenio_vocabularies/proxies.py,sha256=k7cTUgWfnCoYIuNqAj_VFi1zBN33KNNclRSVnBkObEM,711
9
+ invenio_vocabularies/views.py,sha256=PNJ5nvc3O7ASwNe56xmqy5YaU9n3UYF3W2JwvtE_kYs,1561
10
+ invenio_vocabularies/webpack.py,sha256=hzTM0qx6iiRHkmjti53yuZ5ebfPMR5mpO9uNewBat74,1891
11
+ invenio_vocabularies/administration/__init__.py,sha256=0bDp2Aw8aZth7C-q9Xn9rxeCUQQRoIUxoWWWwPvKbXA,308
12
+ invenio_vocabularies/administration/views/__init__.py,sha256=31DP4jLG6q4HQlzSRiGLPxUjHPUCCl4N34y4XMuPP6g,313
13
+ invenio_vocabularies/administration/views/vocabularies.py,sha256=JyKr1OYF9DO89zvWCNOtNfClO_QptdHdjvgY1kkImnw,1290
14
+ invenio_vocabularies/alembic/17c703ce1eb7_create_names_table.py,sha256=2QGs0Ofi6yd93VzIBqghNi47hrZtuLf0DylKyvVzskI,1572
15
+ invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py,sha256=Ywtp8qOFcI3PxUXemHdvy_VwdcUVtMFV1sFgNAmYrms,1054
16
+ invenio_vocabularies/alembic/4f365fced43f_create_vocabularies_tables.py,sha256=jSrr0CLRchYADjkFeod0L-oophq2woXtRwbUU5Vytiw,3039
17
+ invenio_vocabularies/alembic/55a700f897b6_add_names_and_afiliations_pid_column.py,sha256=w1mmkT7fpTeQJ--YmkIqkwtx7DmaP5cXpKPCJr_0Jko,2381
18
+ invenio_vocabularies/alembic/6312f33645c1_create_affiliations_table.py,sha256=0rg7ODaMG4YoHOiOMXKOgPK7QryyLGfgrdJjtn6JPsY,1600
19
+ invenio_vocabularies/alembic/676dd587542d_create_funders_vocabulary_table.py,sha256=4y0jihIQ1s93k7EoqC4vZFrR-tXvuxa678u9hKcu0z0,1791
20
+ invenio_vocabularies/alembic/8ff82dfb0be8_create_vocabularies_branch.py,sha256=RnyKQ38Pkubf_DU2rH9pRdufoAvABdnaP9b9S4-y4Vw,586
21
+ invenio_vocabularies/alembic/__init__.py,sha256=zTkqaw55uK5Bj6VgisfzONfDTxpP6Ty_wMroptywf8U,244
22
+ invenio_vocabularies/alembic/e1146238edd3_create_awards_table.py,sha256=XDAON1kbjAZr3H9neB7YufFVr4lRXmr6mMARRLlURfs,1705
23
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.eslintrc.yml,sha256=aERX8bU_YWne3S8Ai0FlI705MwJ1AXNb-V9W6FsAc6I,338
24
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.prettierrc,sha256=67zvnPdNPnqAfVYrzQJZAVa2T-lyfzJnwrDu5lo10jQ,59
25
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/index.js,sha256=-tppDUbPuRJHQi_m1KbuUZxQEYRZZmhLru2T80fQgAA,243
26
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json,sha256=mbyPBL-MPW79XZgboVUHccTSEOZrDsoWP7J7QMBjtUI,649
27
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/index.js,sha256=NcHTRzFeT8iq-KTYR2ierbOCNPBB4cj9KnHsX55ag_U,247
28
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/index.js,sha256=iSx-bdQkKj6XA9NAam31bdcQmFygljQnjLcFjjK3lwU,245
29
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/index.js,sha256=7sSg482yJODQHU4jkP-hWJjpBOw7ubFr5nPZl5D_1gQ,262
30
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/AwardResults.js,sha256=AgqJg9GEcJvKZR4plZsH0j7cm9C3yjT9YCPI6uvmOyc,3499
31
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js,sha256=TfwrlA_GrINvN1LAdW7J6q_hkbsiEKxbCWc-7VVp8mY,4674
32
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FunderDropdown.js,sha256=pPMB9Hirc8z3efquecrO_CKlfXE1ws6OqDB7fB30l5k,2431
33
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js,sha256=wXJz4ZL7J0ZPppcP-qd6U5Mnupf2hkog4zxMrQ9xZtI,6906
34
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js,sha256=z_4lWkf3h9Uin8OzSBSKY1wpUxtbnjE2kRUjW80jAhA,35
35
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js,sha256=ZN4dEcHCVtSVFjzb1SAYPxmaY1Qk5ZdCt1yY7j6pvQs,4610
36
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js,sha256=PjJwINtJyQVJCHUSSoDJLlY-anmEacHi-SePzTNE9DE,8079
37
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js,sha256=MfA9PWElQcaYznZD5a8TDe5csD6fmxU_6-LTA690mSg,962
38
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/index.js,sha256=67N7fTRVuqH-dkVW9gh3ehr0xGrswVHYaTqUPgYEmF0,319
39
+ invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next-scanner.config.js,sha256=7Xn2OSYbm-zzguRiNTlKLHdBnJCqLuI7MaFaQTMebbA,1814
40
+ invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next.js,sha256=B7b65r5V2hCUgFw1G2GnMNxCeSgHgW5W2vf8I5ZWwcc,1024
41
+ invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/package.json,sha256=N1tSgd6KC1QSE80VsO75qrDHraE0YO4kXvrtRrQ7MU0,1026
42
+ invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/index.js,sha256=6hVcIOIVAKLu-DNyqlsYJ8_TvjmIzGFBK6EGm73cUfU,32
43
+ invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/scripts/compileCatalog.js,sha256=wsNlTVpBoI3egVJPTGIHq5eP5AByRE6HNUoWYcu1IEE,1170
44
+ invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/scripts/initCatalog.js,sha256=ghTi5iOIhT8AJoFGlxnBrHWiw2ts21dKwY_vWxmkiCE,682
45
+ invenio_vocabularies/contrib/__init__.py,sha256=C5eDia6tAVBCrbb5hd_KnxmczyBoF87NIBUCLID-Tzc,240
46
+ invenio_vocabularies/contrib/affiliations/__init__.py,sha256=rV8YAzBRoSKsBYcVjCNJh6j7ITuPRfurwj9HJHRjkN8,565
47
+ invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=BSEjzAjLq17GGKHyPrgC5VLluvZqVnKMepIiqqLQKzo,2077
48
+ invenio_vocabularies/contrib/affiliations/api.py,sha256=5nIOvpfcseuAAg2XgblHc8jb7TAdfU79XOBRpL-p398,326
49
+ invenio_vocabularies/contrib/affiliations/config.py,sha256=kk-zAl7Uyi6N4qVOiCkBD9cN1KKOvDcILDHJ-zoIzJA,2084
50
+ invenio_vocabularies/contrib/affiliations/datastreams.py,sha256=vEH6wj951LLa9pSsNb0rS8IVJ1zWbEQDDe0Cu770J9k,5479
51
+ invenio_vocabularies/contrib/affiliations/facets.py,sha256=w316MGvtdyTpRCPOpCEmMxxLraRkbFFb1VvLkFlEc9o,1229
52
+ invenio_vocabularies/contrib/affiliations/models.py,sha256=JUcj-1ydc2Cw2Rsc24JwXE3TFBJ_6fivhUYhGq4rT8A,329
53
+ invenio_vocabularies/contrib/affiliations/resources.py,sha256=DBEbRxQmp-o-PeZlgFG588Q4sGcruuwIL8L9O-SzCes,435
54
+ invenio_vocabularies/contrib/affiliations/schema.py,sha256=O4s6aHcO1w4_aAfGuYLx_eLS6nctd6ktyIuHB6dMKqw,1842
55
+ invenio_vocabularies/contrib/affiliations/services.py,sha256=KJbv46c2LuQOW3xz7KVLtfZjWR8vhMRPHninlUEhrss,395
56
+ invenio_vocabularies/contrib/affiliations/jsonschemas/__init__.py,sha256=ILyZ5kejTr0p50macMBPALQCTJSe4KEE3_cgf2p3zV4,252
57
+ invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json,sha256=be-glRNIBtIO87Tcyw8d68OdG4J8-ojjiCj8UJBnckg,1649
58
+ invenio_vocabularies/contrib/affiliations/mappings/__init__.py,sha256=q7hb9lcT9KLRSGr6G7qpL8Top6wZfzj_E4uzGxnraTw,295
59
+ invenio_vocabularies/contrib/affiliations/mappings/os-v1/__init__.py,sha256=uEiG5rFrjhpFxg5pD5j5E96_xrPojsla9PhtlOqSCw4,256
60
+ invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json,sha256=h9xXxxEGEevtTusLAmpTSfqt7h-I1NgVa8Zm_SSROiM,2100
61
+ invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json,sha256=EAj7R-GRJUtHn5MvZITRe46cyT7DEsL1V_-dzarPZKw,3734
62
+ invenio_vocabularies/contrib/affiliations/mappings/os-v2/__init__.py,sha256=qgNQbJjbfA2hSpFJtXrsUQBZdKwg-5Y1isoXzj31InE,256
63
+ invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
64
+ invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json,sha256=EAj7R-GRJUtHn5MvZITRe46cyT7DEsL1V_-dzarPZKw,3734
65
+ invenio_vocabularies/contrib/affiliations/mappings/v7/__init__.py,sha256=zr9YyyKyqMAnahKbnIFGr_Z7PXy9ONoU08i9z5cRguQ,259
66
+ invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
67
+ invenio_vocabularies/contrib/awards/__init__.py,sha256=KwCmwFalz-3pDs9iTa5TKUidBjLepnUMqpCBXRiQOO8,474
68
+ invenio_vocabularies/contrib/awards/api.py,sha256=OXukE7PLXs45BTtqVrhvGBNqLmQaI-CgXmHTCi36LZk,303
69
+ invenio_vocabularies/contrib/awards/awards.py,sha256=tOLvcvTPiN1gn1QAl-hSh1bwcclg8Kx2ZMmJMEhI7vk,2959
70
+ invenio_vocabularies/contrib/awards/config.py,sha256=PlDHabkWDUzwa1Fvk_U2hG83kQYBqM1IyChg8Yg_VlY,1630
71
+ invenio_vocabularies/contrib/awards/datastreams.py,sha256=k7GtQ0pmY9EehYUtus45G6opJb8v2Kc63YIn5zO4SU8,14004
72
+ invenio_vocabularies/contrib/awards/models.py,sha256=mM-kSNf7kDH3oIbV8epxxbUi7muYqi4JreXxgWXlVzw,318
73
+ invenio_vocabularies/contrib/awards/resources.py,sha256=_9YTqbhz8axFXGhG5y4WyjE27p9n-7e3c6HoBRditPA,411
74
+ invenio_vocabularies/contrib/awards/schema.py,sha256=P_k9EONMMx0eWpALVuhGBzZlDeh4599elLlmMis-Vko,3302
75
+ invenio_vocabularies/contrib/awards/serializer.py,sha256=W59OMDxOXPdXrrimzMdIPbDIfVk6hARgyz1N2xSbchA,1440
76
+ invenio_vocabularies/contrib/awards/services.py,sha256=zwOMHqa4SyZuHopGZwEKhfw3kUHrWg73_4zMNo5kOe4,371
77
+ invenio_vocabularies/contrib/awards/jsonschemas/__init__.py,sha256=XB2l9hr53vqTk7o9lmy18FWGhHEUvNHu8D6nMF8Bz4k,246
78
+ invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=KUJW0XaHSU8iYNtK0Hb1H42jlhw-oL4Y644Q_-aSlTo,2131
79
+ invenio_vocabularies/contrib/awards/mappings/__init__.py,sha256=PbM5urjiSrJSx4Ak-H_lJrOOVKGT38MrGgRv61gIbAM,243
80
+ invenio_vocabularies/contrib/awards/mappings/os-v1/__init__.py,sha256=r8IZvjorG9SVz32Hv1fncoqLfz-5Ml0Ph3jiYWCHBPk,250
81
+ invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=dcE1dvgGBYYb7vziGArmXb64rg2HpBdiIw_aP3oYaDw,2441
82
+ invenio_vocabularies/contrib/awards/mappings/os-v2/__init__.py,sha256=9gRLFRtjhNJcbop3qz8iRpQVEng_wudDTbOFsS-gxjk,250
83
+ invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=dcE1dvgGBYYb7vziGArmXb64rg2HpBdiIw_aP3oYaDw,2441
84
+ invenio_vocabularies/contrib/awards/mappings/v7/__init__.py,sha256=fERdPp7K7ajaoUu_4_HVLfF-WD_qcl7QgST6yGb68s4,253
85
+ invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=dcE1dvgGBYYb7vziGArmXb64rg2HpBdiIw_aP3oYaDw,2441
86
+ invenio_vocabularies/contrib/common/__init__.py,sha256=DdbGYRthEpQtObhY_YK4vOT9Zf7FFagQ6qtUjJOYw-M,247
87
+ invenio_vocabularies/contrib/common/openaire/__init__.py,sha256=L7UtSimFJ3NI6j53bHzYKsWpFti1uo4fPb9OaTl7leI,244
88
+ invenio_vocabularies/contrib/common/openaire/datastreams.py,sha256=BV6NtBCPFuii6KbTHGkgNQO5tt_3Hn9T_219bz8AINg,3514
89
+ invenio_vocabularies/contrib/common/ror/__init__.py,sha256=3u2-fre1SQ-4nz3Ay0nxj3ntmMZ8Ujh_4eV-fyxfmtc,239
90
+ invenio_vocabularies/contrib/common/ror/datastreams.py,sha256=wHpJy5mRKgJ4nQ7IniLyjxoxjTCZKHaEKKKr_OKrqFM,8139
91
+ invenio_vocabularies/contrib/funders/__init__.py,sha256=YxFXBDnT7NM8rFwxT_Ge3xXR2n17EM0alknQq7r_Bt8,478
92
+ invenio_vocabularies/contrib/funders/api.py,sha256=QKGGeSnPHSoBfucvpaVruXT_txYidofZ080G3IxFkIo,306
93
+ invenio_vocabularies/contrib/funders/config.py,sha256=EU7UrwLOkr2Bem9Skz_HJIxyBQRkXEdPT8zIuV8vbzI,2217
94
+ invenio_vocabularies/contrib/funders/datastreams.py,sha256=3tOwcN1mK5AVqtdU6KdguouGSUurPTO-FDWTKzK1eRo,2481
95
+ invenio_vocabularies/contrib/funders/facets.py,sha256=a068TVtt74Ncu0latb177LFK8EdnpbMOWecAKozA04M,1245
96
+ invenio_vocabularies/contrib/funders/funders.py,sha256=F2AQWv7IfSovThoKPEmlQbxbbmv7gNzIxDoSCaL5D0U,2338
97
+ invenio_vocabularies/contrib/funders/models.py,sha256=RAU-_YVOUNVCn03_XGJ2czcVwXTaZPk5w7X_bMAgMOk,314
98
+ invenio_vocabularies/contrib/funders/resources.py,sha256=He4gXd737ovdrHL-HB9dX7AGxp1BVJ9QteIO7JWUVSE,415
99
+ invenio_vocabularies/contrib/funders/schema.py,sha256=tEOdMU2i0z_3PkXL1yD1qIJeoAy_8n22xxv8V7iltz0,2480
100
+ invenio_vocabularies/contrib/funders/serializer.py,sha256=dPFBvofV4AzckMAxWfM4KtuCOXtsVRb9Ma7NzJetV-I,981
101
+ invenio_vocabularies/contrib/funders/services.py,sha256=M-kQwtVOGygHe44vXr1L4E5Vvnpoco4KO0LRYwzhvMc,375
102
+ invenio_vocabularies/contrib/funders/jsonschemas/__init__.py,sha256=O4XwUXCk-gx_K2LDVJOLkq07-ibsUkpT1vPaebgd0Gk,247
103
+ invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json,sha256=bhmC5hHNX4sj9MIHKhGp48Tu9Nk8I_9MYpXaP7i3rIY,1686
104
+ invenio_vocabularies/contrib/funders/mappings/__init__.py,sha256=aSr-tZd9rsjet6leeS336gdSdZHXwZKdaPStNtVNQVk,244
105
+ invenio_vocabularies/contrib/funders/mappings/os-v1/__init__.py,sha256=xXEX3tacmXp0I1KFtDw7ohIahozd2oIGp1UN40IhFic,251
106
+ invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
107
+ invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json,sha256=31shkTYZDvx7tSCnOA4OlqRmQ0IEv2qhePJsIStReJo,3385
108
+ invenio_vocabularies/contrib/funders/mappings/os-v2/__init__.py,sha256=YvMRlKYTnEmyTzI9smZp_lO3w-zcK-8IpqT-jGUXEEY,251
109
+ invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
110
+ invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json,sha256=31shkTYZDvx7tSCnOA4OlqRmQ0IEv2qhePJsIStReJo,3385
111
+ invenio_vocabularies/contrib/funders/mappings/v7/__init__.py,sha256=yFHmi3QYD65YKzLU5vMEtwAZn0gwkFYa6Db_tSbHjKE,254
112
+ invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
113
+ invenio_vocabularies/contrib/names/__init__.py,sha256=DBfsM7JMETZGaV5QmXEwE7zhCaAXvc2SZN6uXnW_V-c,451
114
+ invenio_vocabularies/contrib/names/api.py,sha256=sEPn_jFX3gyoxgbdEUSIvOoPCUI8pocI6qCZO6mzCgQ,300
115
+ invenio_vocabularies/contrib/names/config.py,sha256=8FVtMuq1NHC0cz8O-p_-Ng_IpHE9PTOVqQ7KDJIm7qA,1905
116
+ invenio_vocabularies/contrib/names/datastreams.py,sha256=EKatHb0gkvcC9LCYBLIcN5pAgklBY4G43lZR_XE52wY,9505
117
+ invenio_vocabularies/contrib/names/models.py,sha256=SYdtDDG-y5Wq_d06YhiVO5n8gfxPW_mx-tECsIcv5H8,308
118
+ invenio_vocabularies/contrib/names/names.py,sha256=x_kcSrH48Q6Iqx1zeCcat5xRmTLe_KqZd5CbHCeR2C4,2498
119
+ invenio_vocabularies/contrib/names/permissions.py,sha256=d7UxvmqFBKWNcFQeJ4MGGFUHlNh_BJGO03-DVW_YFI4,576
120
+ invenio_vocabularies/contrib/names/resources.py,sha256=Z8XqLKfFKE69zdTTvcTDmpEZ6wqiqjIH5tp0LzXTSwQ,1588
121
+ invenio_vocabularies/contrib/names/s3client.py,sha256=c7B9_NbnXCfE4pE_yMTsT6uQ2hgbcRU-KY6nbWFuFzU,1063
122
+ invenio_vocabularies/contrib/names/schema.py,sha256=eKhpNwBaACMEY0JWNrSUhr-40lXhkiHDRmM42KsLrYg,3354
123
+ invenio_vocabularies/contrib/names/services.py,sha256=1viM-L8VEojmQWMisIOhDyl8KInPPCZEIf6tU8G07As,1763
124
+ invenio_vocabularies/contrib/names/jsonschemas/__init__.py,sha256=pdDZdyoxqWbAQ6ngiclhYoDUsGKgRDRPXlIDy0U5Jzg,241
125
+ invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=RYV811bVjnbcBnelZBSDX2hmG2Y6bZXb-u65GLXz2qE,1258
126
+ invenio_vocabularies/contrib/names/mappings/__init__.py,sha256=l5hYJmrj83lds5GupnwCcwQn7cdJo6_4H4YYzrnBa54,242
127
+ invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py,sha256=CKtF-xflE4QGF5P82Lj1ifEP1c7ekR24fc3SiTAkhsY,249
128
+ invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
129
+ invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json,sha256=q9jfAXSy_r0ZcTVH-9HbpM29P_wzIi7NKpufJphGJ8A,3349
130
+ invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py,sha256=p38Ausy2cu1OetTQYwx-9gOFoxGrtrmqjArSDpvxfMU,249
131
+ invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
132
+ invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json,sha256=q9jfAXSy_r0ZcTVH-9HbpM29P_wzIi7NKpufJphGJ8A,3349
133
+ invenio_vocabularies/contrib/names/mappings/v7/__init__.py,sha256=qLGB8C0kPI3xubcfhI8t6Wb2bLlCmVYCiwQ08bKGz9g,252
134
+ invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
135
+ invenio_vocabularies/contrib/subjects/__init__.py,sha256=GtXZKA6VWG1oA1fUX2Wh92nd-1i7RnnQF6RprGhxkD4,591
136
+ invenio_vocabularies/contrib/subjects/api.py,sha256=QH8mxoLsa8qjJT1i1Tj6rRnpbH23plo2IMOJ56rnvbU,347
137
+ invenio_vocabularies/contrib/subjects/config.py,sha256=12Hoy46iGaBv7DlxcCjBuJaDtmpSvPPQKrWabtaUGe0,1712
138
+ invenio_vocabularies/contrib/subjects/datastreams.py,sha256=CiLSTm9PukzLKm34VDmmKOH4A_pYnjbrshxAht1Fox4,1787
139
+ invenio_vocabularies/contrib/subjects/facets.py,sha256=qQ7_rppFBzsmrlZu4-MvOIdUcjeOmDA9gOHAcs0lWwI,695
140
+ invenio_vocabularies/contrib/subjects/models.py,sha256=8XgbVRxDDvhWPjMWsoCriNlOKdmV_113a14yLRtlvM4,363
141
+ invenio_vocabularies/contrib/subjects/resources.py,sha256=0KRfUMizwgIziZybk4HnIjiSsXbrCv_XmguNPwnxoo8,506
142
+ invenio_vocabularies/contrib/subjects/schema.py,sha256=5pM9FFVdeb1nUuTwr2SqkUJh-oHIjYN-EXXI8_SSjCQ,2446
143
+ invenio_vocabularies/contrib/subjects/services.py,sha256=s1U6HMmpjuz7rrgR0DtT9C28TC6sZEeDTsa4Jh1TXQk,864
144
+ invenio_vocabularies/contrib/subjects/subjects.py,sha256=NwZycExLyV8l7ikGStH4GOecVuDSxFT70KoNv6qC78I,1877
145
+ invenio_vocabularies/contrib/subjects/euroscivoc/__init__.py,sha256=e5L9E4l5JHqVzijAX8tn2DIa2n01vJ5wOAZdN62RnIo,247
146
+ invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py,sha256=ZEFDySRSEkb-2cjbYP_so2uCB1tP2_zcdMGpwPcRe90,6152
147
+ invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py,sha256=WowVUST1JoEDS3-xeHhCJvIgC9nzMkFs8XRks9zgzaM,292
148
+ invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=SCFOfwtdAQJnUC4wccRJj--c2yUUmo5Z3tnOfo2XluU,1632
149
+ invenio_vocabularies/contrib/subjects/mappings/__init__.py,sha256=Qk-yj1ENsTmijO8ImWuDYGzXi6QQ2VjP4DbjrpRfDk8,243
150
+ invenio_vocabularies/contrib/subjects/mappings/os-v1/__init__.py,sha256=rv2-AasC_WJFp2t9Nrhzivmw9RovRI2_msin4oHTZuk,250
151
+ invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=WNNWVsaf-pNxqV6p_IR2uIcwIBh30WJeP4IDIxzqutI,1810
152
+ invenio_vocabularies/contrib/subjects/mappings/os-v2/__init__.py,sha256=rQnrw1tMKR0yzlPiXBbCVHnxy_aAhwrKghrSuhhZYAc,250
153
+ invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json,sha256=cJSjcJ_PqrifBZOUeDMW3qyT7VtENTvYq3Xvi-iylOc,1810
154
+ invenio_vocabularies/contrib/subjects/mappings/v7/__init__.py,sha256=QK__a1749g2UN3fBqOr9jx8ccZHWAuvd6DSN4B1jJW4,258
155
+ invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json,sha256=WNNWVsaf-pNxqV6p_IR2uIcwIBh30WJeP4IDIxzqutI,1810
156
+ invenio_vocabularies/contrib/subjects/mesh/__init__.py,sha256=P44hmgVNNTN5O_EmWgaeYJ91yqkGNoeKYo0wfif_wE4,241
157
+ invenio_vocabularies/contrib/subjects/mesh/datastreams.py,sha256=qsi2fu-TzpI2aC9qIOkXGpNcLFkClJ5Dw5rC9ffEdjc,1318
158
+ invenio_vocabularies/datastreams/__init__.py,sha256=VPefh6k4Q3eYxKIW8I5zXUGucntp7VHxaOR5Vhgkfmg,412
159
+ invenio_vocabularies/datastreams/datastreams.py,sha256=SpI6ivmf2LIDS2JSkxoM2v5kRmrPoRDtAG5fuzZO4oQ,6078
160
+ invenio_vocabularies/datastreams/errors.py,sha256=IDUZ3gNtYGrhcOgApHCms1gNNJTyJzoMPmG5JtIeYNU,678
161
+ invenio_vocabularies/datastreams/factories.py,sha256=H8a2gAy7KNImtdCdtqpVKC5gIvE3ON6U1Wn1_zaMlQ4,2181
162
+ invenio_vocabularies/datastreams/readers.py,sha256=Gr_KbN-tZtoQ8R4TJG4dTBTE8028eLRlcxSv2-IqI9c,11386
163
+ invenio_vocabularies/datastreams/tasks.py,sha256=0fuH_PRt9Ncv6WHM4pkYmfheRVGDKkERZiMPvgV4bZU,1129
164
+ invenio_vocabularies/datastreams/transformers.py,sha256=0ymZiHtNtgfYxt2MIjthtSzikRH1jAqhIAZ1yScoAHs,1733
165
+ invenio_vocabularies/datastreams/writers.py,sha256=PO9UPQ8rT4pstfoCiB-zCfuvCNOHRgFbysq6-spXm34,7218
166
+ invenio_vocabularies/datastreams/xml.py,sha256=HFa-lfxj7kFrr2IjeN1jxSLDfcvpBwO9nZLZF2-BryE,997
167
+ invenio_vocabularies/records/__init__.py,sha256=Uj7O6fYdAtLOkLXUGSAYPADBB7aqP4yVs9b6OAjA158,243
168
+ invenio_vocabularies/records/api.py,sha256=Lynt6Sz4BVN1orh0zgJ5ljhnUobEtcq8c22PmSeUo2U,1494
169
+ invenio_vocabularies/records/models.py,sha256=36CxObDMe-D9hoGaelAlR4ggZZTyXgRmCWPxZRpWF5w,2460
170
+ invenio_vocabularies/records/pidprovider.py,sha256=uFuo-M0Wqua0QhTS2z17YpzYDySwNfJaOi7rp0S0dPs,3840
171
+ invenio_vocabularies/records/jsonschemas/__init__.py,sha256=qr2BZMyMVvVRSeJzPCI8re2BlGokiDjeqwREkythSrQ,246
172
+ invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json,sha256=1qTs-Liji01HMitT8768urX3BhYXZmHWUGqV8VmOotU,372
173
+ invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json,sha256=x7kkCkuMNQ6tygb_RWf7QOlOtyG-kqKOH5FNnBn1cqo,1289
174
+ invenio_vocabularies/records/mappings/__init__.py,sha256=kER6e5hZFmPpesFAx-oQsMseep8RXobQRiLIE2r5IMc,244
175
+ invenio_vocabularies/records/mappings/os-v1/__init__.py,sha256=XaGt61tsIKfG59y59Bf0NaPzJECWZnzHSTbAQNUwlVo,248
176
+ invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json,sha256=1Py4-BpcK8UMBt06p3zVPLqID8XeDsF2CUmwuKUx0Ug,2127
177
+ invenio_vocabularies/records/mappings/os-v2/__init__.py,sha256=5dVZCOKIEzr7qtuX__RbFPggcA5yKu5JBkUtXotbjYY,243
178
+ invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json,sha256=1Py4-BpcK8UMBt06p3zVPLqID8XeDsF2CUmwuKUx0Ug,2127
179
+ invenio_vocabularies/records/mappings/v7/__init__.py,sha256=QK__a1749g2UN3fBqOr9jx8ccZHWAuvd6DSN4B1jJW4,258
180
+ invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json,sha256=1Py4-BpcK8UMBt06p3zVPLqID8XeDsF2CUmwuKUx0Ug,2127
181
+ invenio_vocabularies/records/systemfields/__init__.py,sha256=MRLoLF3h8VYuqJ9tbbgXjXkTDUniz24pVnujLX-psZI,406
182
+ invenio_vocabularies/records/systemfields/pid.py,sha256=5e2zZD0uHP5r32--KmuzjfHk3B5GXEV3yBuoKeit9mQ,3740
183
+ invenio_vocabularies/records/systemfields/relations.py,sha256=UbaiuxvAZorxNN4t63Y5ePc5OUJ_cYGAxLsFcET3E-g,1528
184
+ invenio_vocabularies/resources/__init__.py,sha256=UpNMJA1JacoJ2U1_dq20sds3lJK1TyMCV4zLOWpfRvI,664
185
+ invenio_vocabularies/resources/config.py,sha256=PooKsBd3KXoApc9zoSk-fkeQhzygYdGU4lH5FgQ3W2Q,3157
186
+ invenio_vocabularies/resources/resource.py,sha256=hJs5GD0XtcBafwgTI9n8FHK5Fb6agx8BgzF81K5vRbU,4229
187
+ invenio_vocabularies/resources/schema.py,sha256=6stpU9qgLGoeGib3DWnyrHj6XLPxJKbEV7TVoJEK41M,542
188
+ invenio_vocabularies/resources/serializer.py,sha256=pwfckLdkMu1MNDkocyMg1XeX6RhbfeuV4fjDO5xKDxo,1190
189
+ invenio_vocabularies/services/__init__.py,sha256=6mi62EG21Id6x23nx0X193I6sVTakK6jOdYNEKPxXUk,522
190
+ invenio_vocabularies/services/components.py,sha256=d9C-24dEDM63gFm75nU-dXrrjS2zZi7Nfkv40BGnHwM,1941
191
+ invenio_vocabularies/services/config.py,sha256=H5l1PQ-72-LyLXPiouvU9_7lqWZcdKOrGVSTlyldIdE,4787
192
+ invenio_vocabularies/services/facets.py,sha256=qvdHoGSJJr90dZHSVe0-hlO1r0LtTnFVSjrt9PNuNAg,3872
193
+ invenio_vocabularies/services/permissions.py,sha256=nU1t_aW-RimFTWHbg9SivfzoP3P2Z5CqZ16U4jX5wN8,821
194
+ invenio_vocabularies/services/querystr.py,sha256=X3JHVF9B0O0iLWrnW3ok_bf_8jA-Cs_oAcYYkGOm3Uw,1829
195
+ invenio_vocabularies/services/results.py,sha256=6LZIpzWSbt9wpRNWgjA1uIM4RFooOYTkHcp5-PnIJdU,3767
196
+ invenio_vocabularies/services/schema.py,sha256=mwIBFylpQlWw1M6h_axc-z4Yd7X3Z1S0PxJOlZGpfrQ,4634
197
+ invenio_vocabularies/services/service.py,sha256=9QQDsG1WShCpBVFze-Dnq-iC2BwNX_0-qzfzrpImJo8,6469
198
+ invenio_vocabularies/services/tasks.py,sha256=AH0XifkOypsEdh8LyjmlHnPLQK5qqUJC8cNVWGkbqks,788
199
+ invenio_vocabularies/services/custom_fields/__init__.py,sha256=QgvSsn-S1xLzbZ57pjjGTt5oI3HqzXHVjwGTtuPgzN8,421
200
+ invenio_vocabularies/services/custom_fields/subject.py,sha256=ZM-ZkaxoouF9lL62smOtLxsjQQZwiQs0jG3qGruP6nY,2231
201
+ invenio_vocabularies/services/custom_fields/vocabulary.py,sha256=oQwI8Aoi2Nr9k3eWKnde5H7RXc7qdlATSeI6coy8UR0,3020
202
+ invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html,sha256=Fr8xRfKYiytuTfbtH7gfasNXwFIcjPFnXV4F5oGNUkM,681
203
+ invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html,sha256=-gDwRctqIkSzh9ial8zfbA4o41ARM-Mq-THkcJ87U00,359
204
+ invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html,sha256=2dfQzRFl5RwUwle245sxWGnObwJQXr-e_bBzpe_PkkA,2684
205
+ invenio_vocabularies/translations/messages.pot,sha256=kyRQs0jzNzypK2rKpCCDyPbuTbMcblPCZzKr6xdnRiQ,5173
206
+ invenio_vocabularies/translations/af/LC_MESSAGES/messages.mo,sha256=HokSco2JpukLl_j07yQ2wjKmUf8_Zzru6KQtYdyLtEo,523
207
+ invenio_vocabularies/translations/af/LC_MESSAGES/messages.po,sha256=XXoiqCtGELaxl6hxRj31D3DCdgBUrz0oD3MYJUpcklM,3976
208
+ invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo,sha256=Y9h5ziLiSs431qRw0iFCBhKmgVNiqgw7T244iOTqyxs,2470
209
+ invenio_vocabularies/translations/ar/LC_MESSAGES/messages.po,sha256=aNg5ViJnWh9MpEMQfM2dbuBF-BSS2UKKvMtgHoAk5RQ,5183
210
+ invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo,sha256=4K6TcgCRUjFt2_yoF4az8v_kQB3-xtph8QMCPgVPn0s,604
211
+ invenio_vocabularies/translations/bg/LC_MESSAGES/messages.po,sha256=aJpHvwOkbJ0rwKvjvHqxgXANJBMLJCGI_f22KIOVWMc,4119
212
+ invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo,sha256=fsdannJkA9jqQnV0ZWicZThw40M07OP_ALuZMdWJRjs,613
213
+ invenio_vocabularies/translations/ca/LC_MESSAGES/messages.po,sha256=Vrqa2vsWXCnzyLcseM9DJW5cKZ_0XEFGEn2JlWlF35I,4107
214
+ invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo,sha256=P2QIqFX0hxWRCtkEcp2gL4Xm1XAKRnFLsX6yMkrVIdE,694
215
+ invenio_vocabularies/translations/cs/LC_MESSAGES/messages.po,sha256=McS70wI2bxVrM7Qz7BHXHNgK9xFGZCFwsSqNz1dE6FA,4188
216
+ invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo,sha256=MXifvGk2jmlemIwwzHtH7owm3lpouexrzPhq2i6FG9o,520
217
+ invenio_vocabularies/translations/da/LC_MESSAGES/messages.po,sha256=QeezPCuKh9M3fJavKdVVP2NSbPzRWgmwGID41CfAC7M,3973
218
+ invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo,sha256=FCkjIPURjWxCjLtHPap5JeUtf3SohndK3gdK7tsFdFI,1760
219
+ invenio_vocabularies/translations/de/LC_MESSAGES/messages.po,sha256=h_ZmJ_WpJHrs0cdJiT6N-PqbVyt6oDCP9uqTRdhiQWE,4820
220
+ invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.mo,sha256=FuGzxHm_X7Y5hZJs_UIQZClS6YbtzznRfAvGfM75g0A,536
221
+ invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.po,sha256=ylaRwzVqDO6KglpJSo3qI2_PtmmpDiY4WmjHCbmAxMs,3989
222
+ invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.mo,sha256=ozzvTAp6iFxQczWaGLFNhZaBnVd79rZibFrFKEtN42k,536
223
+ invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.po,sha256=kXsjtk8pn2_Qlfy45r58wrQdtxVmQb04oJuQZTwy35k,3989
224
+ invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo,sha256=COqArmggfz7t2XvkFF_hXuVwmgHeLI5bCckzXYAEA-0,624
225
+ invenio_vocabularies/translations/el/LC_MESSAGES/messages.po,sha256=5X06NA8dg5b-XuhR_7FtYSWftp4oRfe4VSD04RRMSEI,4118
226
+ invenio_vocabularies/translations/en/LC_MESSAGES/messages.mo,sha256=-NLyNN3b9k7YpbJEC81brG34_1HsYEmkIL0OyTJLCpE,467
227
+ invenio_vocabularies/translations/en/LC_MESSAGES/messages.po,sha256=OLbQwEoqXSAGuXrYazkgoNtTp2gUgcbmoLlLK8BrZQs,1616
228
+ invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.mo,sha256=JMtpikwq9T4kcnTqthEMsfU7bXf6kaTAYsqqBbXHSmA,537
229
+ invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.po,sha256=AZGLT5-sARb8b_7aDrY4RYJW6HG1SkFBgc7X242BIWM,3990
230
+ invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.mo,sha256=q6gX2LPLMa86xue1TKWZnCsJexNubkgown4bzu9iWvU,494
231
+ invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.po,sha256=_d6Ks5SnPdrr1Kw7V3LoD6ClUrt8Ny8rvJqq6Ep2oQo,3990
232
+ invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo,sha256=0muwemvNi3BvezVtzsgt5VMZjO8QvVXxkFMg_oIHh9g,2189
233
+ invenio_vocabularies/translations/es/LC_MESSAGES/messages.po,sha256=SWHq9lzwUXjujYuokrJ59q-VB1FG78M-o9AcBY-ehds,4898
234
+ invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.mo,sha256=3VrMtOt2pMziY6XDQ7WUISyV7ptSzL_c8We-pZXwbTo,573
235
+ invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.po,sha256=ik6vOP-Fh0RCOMGEroDr8IM7gJ-aG5E1eS66uBy1wpw,4026
236
+ invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.mo,sha256=sg2WUv5vP9jVMteacFCLaedQewjMifUUXzzAObSjEbc,575
237
+ invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.po,sha256=3iNp0vZnPc1IfRmq2WK1__5LEJRz7yo1XsieGw6kAfs,4028
238
+ invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo,sha256=fzyHXkJ_7GdsG1faQt2rFtiXV1xswbnHF_mbmm8yXzI,1990
239
+ invenio_vocabularies/translations/et/LC_MESSAGES/messages.po,sha256=OYFppzn31T8w1_XwJqPqiypJJe42E_cuWxeyGv039pU,4628
240
+ invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.mo,sha256=RaeMr-dT6ugYYzT47wb_lEcmDJH9pgbpxcYjnSUtYVQ,538
241
+ invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.po,sha256=DRXergYlj3rsX8DXTC3kmTwxPT3GAO7GTUBUvucQKYI,3991
242
+ invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo,sha256=qMXpmzIAvzwF_SXI6JLWT2pStCN-kFRa_Q1zY1nBmJo,595
243
+ invenio_vocabularies/translations/fa/LC_MESSAGES/messages.po,sha256=ItSGf3ECumdoAEQl6L7VKfMFSVhIFfThfSzZ66aapPE,4110
244
+ invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.mo,sha256=K5JZMvX6eG29c4uUj9JgWF1j2TRWg0-fck2mrOySnbo,533
245
+ invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.po,sha256=sqQJeNvjpVQm16jPwQRpm5jI6ZDhLv7me0_8qVKbSOU,3986
246
+ invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo,sha256=EAI-QlzSCZil9gFLGFWoyU7y2mAa_6bn7OmT7HlVxb4,662
247
+ invenio_vocabularies/translations/fr/LC_MESSAGES/messages.po,sha256=l0xWw1uf4JhAJxfyG1ypwOmYncmZkJdsc44X76yND9Q,4200
248
+ invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.mo,sha256=Gm69t9vRjTt1-OvQbn3lPhs4FPBnELzdE2bn37g5Uws,594
249
+ invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.po,sha256=HV5SiBCunaVD0hTVxvZC2dazwouTl-TPDzqrcYIx4wk,4047
250
+ invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.mo,sha256=EWmco2ElsoMdbE9gGxi3Q_5E46849I0VYKYCzSyIaU4,586
251
+ invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.po,sha256=ziB-xADWfC89PPNhbVtjaBEhl0UYiFC5KYc7ZZt7M5w,4039
252
+ invenio_vocabularies/translations/gl/LC_MESSAGES/messages.mo,sha256=-b4HnG1eMz14UWKeOaRkfjUpGqwixA8DrebBme1Wf_I,522
253
+ invenio_vocabularies/translations/gl/LC_MESSAGES/messages.po,sha256=cOyVErQJJwScqsbD_rCXRsYOd4uoEATA9qocC0-K8kM,3975
254
+ invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.mo,sha256=m0jRfQRh9DIa61PWk5uHj_AygBV_MQubXr9Ny9rqbU8,533
255
+ invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.po,sha256=n-OYjVPSd-P8u4mKxX0I5fCRyapgSE6BiEIC5qPRmu4,3986
256
+ invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo,sha256=lsev1T3PB4bX1XCntqCYtt4C_yhYsm6ton8rUQ7fvuc,662
257
+ invenio_vocabularies/translations/hr/LC_MESSAGES/messages.po,sha256=Ye-5_Z5TFH9xxtid9naKo86yt5_-WmKYVT1G-uup9vo,4177
258
+ invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo,sha256=7PIICbSpFxn2ZjcKmgQelpU6KLADtUJQ1mr61IfPrIs,2095
259
+ invenio_vocabularies/translations/hu/LC_MESSAGES/messages.po,sha256=D9I9AE_HnTrg9hb2ok44cRTYLd8JkOi8e_nQlHj8-TU,4690
260
+ invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.mo,sha256=9GtN10MiOa0CsWFlk6KqHrPcZcZmkWi5_T9qRBvETOg,539
261
+ invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.po,sha256=_jorg7x43IAMVzrsaQYZpRysKu9j84dtmxBqqW7RrpI,3992
262
+ invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo,sha256=PM00_2Z_xIzG1jGI5_H_xJ9wtikVRhV_lUgyNEahxRI,670
263
+ invenio_vocabularies/translations/it/LC_MESSAGES/messages.po,sha256=dUb7fx9KsDqlPfVbw9dWoPG1HwV8NU4kmCyAS1oZ_RA,4222
264
+ invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo,sha256=yDnHuB3xlKd_TomvcUo9mb9AcMWi-N_SHbWxr0Ng0q8,592
265
+ invenio_vocabularies/translations/ja/LC_MESSAGES/messages.po,sha256=C6I7nyPhnCF2fL1YxhK2w02nQvARM7QVs4b5qo8_9I4,4107
266
+ invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo,sha256=zQcYMyEhLUlWtFR3VxNF_kuOB0uPZBhHqsjBQAq78d0,654
267
+ invenio_vocabularies/translations/ka/LC_MESSAGES/messages.po,sha256=j8ZPewJC1oB5nZgpgf9bPlcgNkQ7tULnx_fV--IPHng,4148
268
+ invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo,sha256=uW1avlCDrdC-Hm4P_rS8-AyNnTWfeAJFdu6Y7kLW5o4,760
269
+ invenio_vocabularies/translations/lt/LC_MESSAGES/messages.po,sha256=9aF8nMUPtP3xK2BirfwNOHVhYeR90mpGQkAiWYjurgo,4254
270
+ invenio_vocabularies/translations/ne/LC_MESSAGES/messages.mo,sha256=Vug_YgqnU6CQJnwru8MYm8D-lav7wKAk1mPk1D_tm9A,520
271
+ invenio_vocabularies/translations/ne/LC_MESSAGES/messages.po,sha256=GjzkKRLhkhCFxxb_Lcg3NPbyYdLc_yXYh18l6GSdwp8,3973
272
+ invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo,sha256=EVkJI3ArgSBC4VAgX8uD7j0IV9slDb3UpYb7BqQZV4Q,592
273
+ invenio_vocabularies/translations/no/LC_MESSAGES/messages.po,sha256=h4c-86uMKBzf-tFSwcIj05xnuNTErbpkSykWcwjaS9s,4107
274
+ invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo,sha256=pfij3wxQ6mBmH2Ai46AHi8IRBTnwAYGr7AgCY1Vg9zY,736
275
+ invenio_vocabularies/translations/pl/LC_MESSAGES/messages.po,sha256=ZjJ5MqxvHui3pKI2MHGjwI8feC0Sp1uAkEFu35F51ak,4251
276
+ invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo,sha256=9Ib-0Qb21RRFGJI2lOfoDIXGX5hsxWIrUZZlQ0kRphU,645
277
+ invenio_vocabularies/translations/pt/LC_MESSAGES/messages.po,sha256=QcIXktYDZ9PL-VPfpkzsSk-OsOLnOJKiKgcqUfcpNNM,4160
278
+ invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo,sha256=iK2aeLHmlH7M5y8SrzazGIMK4FpJy7mW-N5I5_d6TGY,631
279
+ invenio_vocabularies/translations/ro/LC_MESSAGES/messages.po,sha256=_WJtM7YEVv_R6WujNtlMIq7otc10zVqmIql2P69cjno,4146
280
+ invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo,sha256=xVydVq7R2-o7actNdUIXTTzTEE-XPTi9O6wFb2kk-UE,740
281
+ invenio_vocabularies/translations/ru/LC_MESSAGES/messages.po,sha256=ur3fZ_LChAF30PbohmJmSrTi6oP_BYXwGzvVDvgJeqE,4255
282
+ invenio_vocabularies/translations/rw/LC_MESSAGES/messages.mo,sha256=2Nvld7tvM6QNX6NnhALVAyIMb8M5d6whDjKACFn1mPs,525
283
+ invenio_vocabularies/translations/rw/LC_MESSAGES/messages.po,sha256=ETsMPjzcL0B3KkJF3V34q8iXHbAyA_9SvqLHTCUh0MI,3978
284
+ invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo,sha256=sKzWFYH1y_aCLdYf-k-3aYVvA6lDyUKFyYxo1k3Qkpc,664
285
+ invenio_vocabularies/translations/sk/LC_MESSAGES/messages.po,sha256=_694ORmQV_KkDUhKDKUigT0VoxL58I7wymOevCGTgbQ,4179
286
+ invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo,sha256=0q64chNgXc8rAi34TG3QypXav2Er1_x7SFYt8ikB4Lw,2001
287
+ invenio_vocabularies/translations/sv/LC_MESSAGES/messages.po,sha256=jKV1UwmA1DQdUV-WB_4pvw0TCQA06LEvXOIqfWF697w,4642
288
+ invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.mo,sha256=HEFOlAxc_htYbeIktTZkdTnJ5S_VQmqhzS-atx48jbo,536
289
+ invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.po,sha256=pb4wo66W2jg0pssRfwLeUUG4qDPSL-XKD45bKUvc5Jo,3989
290
+ invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo,sha256=zmQ5R8zUKe2UkTM0RTdiTY_ltlFVpSfKH6FUygGugIM,946
291
+ invenio_vocabularies/translations/tr/LC_MESSAGES/messages.po,sha256=S1uBEdS5z4u7V2iLDwCREoYnlqp-qM_UmXfIOT3WXGQ,4280
292
+ invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo,sha256=dKiOsuijPMjG6u1BlI-gNoiJ3rF_ZBIVQb-84SuED3M,1169
293
+ invenio_vocabularies/translations/uk/LC_MESSAGES/messages.po,sha256=mERndelTrdxz5m_UaNhcMgU8K5b641h5pD_67Tp8VpM,4461
294
+ invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.mo,sha256=MXMqMDZJv5iBqsBRV7XUMtakXApBmI5QzVACWTT-wi4,761
295
+ invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.po,sha256=zOhuP60Iht7r7STIkud-Bv-H7jjzIOqykmuC1mRKePU,4214
296
+ invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=g1I5aNO8r_xaw84_60ZdwJJO-4QRhAydMXCXMAFXcuU,1797
297
+ invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=vg8qC8ofpAdJ3mQz7mWM1ylKDpiNWXFs7rlMdSPkgKk,4629
298
+ invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=cqSm8NtMAwrP9O6qbmtkDtRT1e9D93qpsJN5X9_PPVw,600
299
+ invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=9ACePz_EpB-LfcIJajZ2kp8Q04tcdrQLOtug162ZUss,4115
300
+ invenio_vocabularies-6.3.1.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
301
+ invenio_vocabularies-6.3.1.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
302
+ invenio_vocabularies-6.3.1.dist-info/METADATA,sha256=i448NUrQmoezzIp3sY16Lxd2aQ4OKNUOdoOWCrtWUIo,10103
303
+ invenio_vocabularies-6.3.1.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
304
+ invenio_vocabularies-6.3.1.dist-info/entry_points.txt,sha256=P9wLzJDDXGd4BEzRX4ylmnWge8wg_Q9jI0NBxNRVA2Q,2972
305
+ invenio_vocabularies-6.3.1.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
306
+ invenio_vocabularies-6.3.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.40.0)
2
+ Generator: bdist_wheel (0.42.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any
@@ -1,6 +1,12 @@
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
+
7
+ [invenio_assets.webpack]
8
+ invenio_vocabularies = invenio_vocabularies.webpack:theme
9
+
4
10
  [invenio_base.api_apps]
5
11
  invenio_vocabularies = invenio_vocabularies:InvenioVocabularies
6
12
 
@@ -10,15 +16,25 @@ invenio_vocabularies_affiliations = invenio_vocabularies.views:create_affiliatio
10
16
  invenio_vocabularies_awards = invenio_vocabularies.views:create_awards_blueprint_from_app
11
17
  invenio_vocabularies_ext = invenio_vocabularies.views:blueprint
12
18
  invenio_vocabularies_funders = invenio_vocabularies.views:create_funders_blueprint_from_app
19
+ invenio_vocabularies_list = invenio_vocabularies.views:create_list_blueprint_from_app
13
20
  invenio_vocabularies_names = invenio_vocabularies.views:create_names_blueprint_from_app
14
21
  invenio_vocabularies_subjects = invenio_vocabularies.views:create_subjects_blueprint_from_app
15
22
 
23
+ [invenio_base.api_finalize_app]
24
+ invenio_vocabularies = invenio_vocabularies.ext:api_finalize_app
25
+
16
26
  [invenio_base.apps]
17
27
  invenio_vocabularies = invenio_vocabularies:InvenioVocabularies
18
28
 
19
29
  [invenio_base.blueprints]
20
30
  invenio_vocabularies_ext = invenio_vocabularies.views:blueprint
21
31
 
32
+ [invenio_base.finalize_app]
33
+ invenio_vocabularies = invenio_vocabularies.ext:finalize_app
34
+
35
+ [invenio_celery.tasks]
36
+ invenio_vocabularies_services = invenio_vocabularies.services.tasks
37
+
22
38
  [invenio_db.alembic]
23
39
  invenio_vocabularies = invenio_vocabularies:alembic
24
40
 
@@ -33,6 +49,10 @@ vocabulary_model = invenio_vocabularies.records.models
33
49
  [invenio_i18n.translations]
34
50
  invenio_vocabularies = invenio_vocabularies
35
51
 
52
+ [invenio_jobs.jobs]
53
+ process_ror_affiliations = invenio_vocabularies.jobs:ProcessRORAffiliationsJob
54
+ process_ror_funders = invenio_vocabularies.jobs:ProcessRORFundersJob
55
+
36
56
  [invenio_jsonschemas.schemas]
37
57
  affiliations = invenio_vocabularies.contrib.affiliations.jsonschemas
38
58
  awards = invenio_vocabularies.contrib.awards.jsonschemas
@@ -1,133 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: invenio-vocabularies
3
- Version: 1.2.0
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 (<3.0.0,>=2.0.0)
15
- Requires-Dist: lxml (>=4.5.0)
16
- Requires-Dist: PyYAML (>=5.4.1)
17
- Provides-Extra: elasticsearch7
18
- Requires-Dist: invenio-search[elasticsearch7] (<3.0.0,>=2.1.0) ; extra == 'elasticsearch7'
19
- Provides-Extra: mysql
20
- Provides-Extra: opensearch1
21
- Requires-Dist: invenio-search[opensearch1] (<3.0.0,>=2.1.0) ; extra == 'opensearch1'
22
- Provides-Extra: opensearch2
23
- Requires-Dist: invenio-search[opensearch2] (<3.0.0,>=2.1.0) ; extra == 'opensearch2'
24
- Provides-Extra: postgresql
25
- Provides-Extra: sqlite
26
- Provides-Extra: tests
27
- Requires-Dist: pytest-black (>=0.3.0) ; extra == 'tests'
28
- Requires-Dist: invenio-app (<2.0.0,>=1.3.3) ; extra == 'tests'
29
- Requires-Dist: invenio-db[mysql,postgresql] (<2.0.0,>=1.0.14) ; extra == 'tests'
30
- Requires-Dist: pytest-invenio (<3.0.0,>=2.1.0) ; extra == 'tests'
31
- Requires-Dist: Sphinx (>=4.5) ; extra == 'tests'
32
-
33
- ..
34
- Copyright (C) 2020-2021 CERN.
35
-
36
- Invenio-Vocabularies is free software; you can redistribute it and/or
37
- modify it under the terms of the MIT License; see LICENSE file for more
38
- details.
39
-
40
- ======================
41
- Invenio-Vocabularies
42
- ======================
43
-
44
- .. image:: https://github.com/inveniosoftware/invenio-vocabularies/workflows/CI/badge.svg
45
- :target: https://github.com/inveniosoftware/invenio-vocabularies/actions?query=workflow%3ACI
46
-
47
- .. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-vocabularies.svg
48
- :target: https://coveralls.io/r/inveniosoftware/invenio-vocabularies
49
-
50
- .. image:: https://img.shields.io/github/tag/inveniosoftware/invenio-vocabularies.svg
51
- :target: https://github.com/inveniosoftware/invenio-vocabularies/releases
52
-
53
- .. image:: https://img.shields.io/pypi/dm/invenio-vocabularies.svg
54
- :target: https://pypi.python.org/pypi/invenio-vocabularies
55
-
56
- .. image:: https://img.shields.io/github/license/inveniosoftware/invenio-vocabularies.svg
57
- :target: https://github.com/inveniosoftware/invenio-vocabularies/blob/master/LICENSE
58
-
59
- Invenio module for managing vocabularies, based on Invenio-Records and Invenio-Records-Resources. This module provides:
60
-
61
- - Factories for easily generating models, record API classes, services, and resources
62
- - Helpers for importing vocabularies
63
-
64
- Further documentation is available on
65
- https://invenio-vocabularies.readthedocs.io/
66
-
67
- ..
68
- Copyright (C) 2020 CERN.
69
-
70
- Invenio-Vocabularies is free software; you can redistribute it and/or
71
- modify it under the terms of the MIT License; see LICENSE file for more
72
- details.
73
-
74
- Changes
75
- =======
76
-
77
- Version 1.2.0 (2023-03-24)
78
-
79
- - bump invenio-records-resources to v2.0.0
80
-
81
- Version 1.1.0 (released 2023-03-02)
82
-
83
- - serializers: deprecate marshamllow JSON
84
- - mappings: add dynamic template for i18n titles and descriptions
85
- - remove deprecated flask-babelex dependency and imports
86
-
87
- Version 1.0.4 (released 2023-01-20)
88
-
89
- - funders: Add ROR to identifiers for all funders in datastream
90
- - facets: add not found facet exception (when facet is configured but not provided in setup)
91
- - facets: handle non existing vocabulary type
92
-
93
- Version 1.0.3 (released 2022-11-25)
94
-
95
- - Add i18n translations.
96
-
97
- Version 1.0.2 (released 2022-11-14)
98
-
99
- - Fix missing field_args in VocabularyCF
100
-
101
- Version 1.0.1 (released 2022-11-14)
102
-
103
- - Allow kwargs in VocabularyCF
104
-
105
- Version 1.0.0 (released 2022-11-04)
106
-
107
- - Bump invenio-records-resources
108
-
109
- Version 0.1.5 (released 2020-12-11)
110
-
111
- - Bug fixes in contrib vocabulary
112
-
113
- Version 0.1.4 (released 2020-12-11)
114
-
115
- - Add subjects vocabulary
116
-
117
- Version 0.1.3 (released 2020-12-11)
118
-
119
- - Include csv vocabularies data
120
-
121
- Version 0.1.2 (released 2020-12-11)
122
-
123
- - CI changes
124
-
125
- Version 0.1.1 (released 2020-12-11)
126
-
127
- - Add vocabulary import command
128
-
129
- Version 0.1.0 (released 2020-12-08)
130
-
131
- - Initial public release.
132
-
133
-