invenio-vocabularies 2.3.1__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 (165) 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/assets/semantic-ui/js/invenio_vocabularies/package.json +1 -7
  6. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js +80 -64
  7. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js +49 -41
  8. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js +5 -7
  9. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js +3 -3
  10. invenio_vocabularies/cli.py +31 -44
  11. invenio_vocabularies/config.py +68 -4
  12. invenio_vocabularies/contrib/affiliations/affiliations.py +11 -0
  13. invenio_vocabularies/contrib/affiliations/api.py +1 -2
  14. invenio_vocabularies/contrib/affiliations/config.py +13 -2
  15. invenio_vocabularies/contrib/affiliations/datastreams.py +186 -0
  16. invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json +38 -1
  17. invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json +22 -1
  18. invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json +171 -0
  19. invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json +22 -1
  20. invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json +171 -0
  21. invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json +22 -1
  22. invenio_vocabularies/contrib/affiliations/schema.py +17 -3
  23. invenio_vocabularies/contrib/affiliations/services.py +1 -2
  24. invenio_vocabularies/contrib/awards/awards.py +17 -5
  25. invenio_vocabularies/contrib/awards/datastreams.py +241 -7
  26. invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json +38 -0
  27. invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json +51 -2
  28. invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json +51 -2
  29. invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json +51 -2
  30. invenio_vocabularies/contrib/awards/schema.py +16 -1
  31. invenio_vocabularies/contrib/awards/serializer.py +8 -1
  32. invenio_vocabularies/contrib/awards/services.py +1 -2
  33. invenio_vocabularies/contrib/common/__init__.py +9 -0
  34. invenio_vocabularies/contrib/common/openaire/__init__.py +9 -0
  35. invenio_vocabularies/contrib/common/openaire/datastreams.py +84 -0
  36. invenio_vocabularies/contrib/common/ror/__init__.py +9 -0
  37. invenio_vocabularies/contrib/common/ror/datastreams.py +220 -0
  38. invenio_vocabularies/contrib/funders/config.py +11 -2
  39. invenio_vocabularies/contrib/funders/datastreams.py +40 -62
  40. invenio_vocabularies/contrib/funders/funders.py +3 -1
  41. invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json +36 -1
  42. invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json +22 -1
  43. invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json +156 -0
  44. invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json +22 -1
  45. invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json +156 -0
  46. invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json +22 -1
  47. invenio_vocabularies/contrib/funders/schema.py +8 -0
  48. invenio_vocabularies/contrib/funders/serializer.py +2 -1
  49. invenio_vocabularies/contrib/names/config.py +5 -3
  50. invenio_vocabularies/contrib/names/datastreams.py +172 -4
  51. invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json +3 -0
  52. invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json +3 -0
  53. invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json +150 -0
  54. invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json +3 -0
  55. invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json +150 -0
  56. invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json +3 -0
  57. invenio_vocabularies/contrib/names/names.py +15 -3
  58. invenio_vocabularies/contrib/names/permissions.py +20 -0
  59. invenio_vocabularies/contrib/names/s3client.py +44 -0
  60. invenio_vocabularies/contrib/names/schema.py +14 -0
  61. invenio_vocabularies/contrib/subjects/config.py +9 -3
  62. invenio_vocabularies/contrib/subjects/datastreams.py +61 -0
  63. invenio_vocabularies/contrib/subjects/euroscivoc/__init__.py +9 -0
  64. invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py +171 -0
  65. invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +31 -0
  66. invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json +35 -0
  67. invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json +35 -0
  68. invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json +35 -0
  69. invenio_vocabularies/contrib/subjects/mesh/__init__.py +9 -0
  70. invenio_vocabularies/contrib/subjects/mesh/datastreams.py +43 -0
  71. invenio_vocabularies/contrib/subjects/schema.py +47 -5
  72. invenio_vocabularies/contrib/subjects/subjects.py +10 -0
  73. invenio_vocabularies/datastreams/datastreams.py +61 -13
  74. invenio_vocabularies/datastreams/factories.py +1 -2
  75. invenio_vocabularies/datastreams/readers.py +138 -29
  76. invenio_vocabularies/datastreams/tasks.py +37 -0
  77. invenio_vocabularies/datastreams/transformers.py +17 -27
  78. invenio_vocabularies/datastreams/writers.py +116 -14
  79. invenio_vocabularies/datastreams/xml.py +34 -0
  80. invenio_vocabularies/ext.py +59 -5
  81. invenio_vocabularies/factories.py +137 -0
  82. invenio_vocabularies/jobs.py +133 -0
  83. invenio_vocabularies/proxies.py +2 -2
  84. invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json +7 -0
  85. invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json +1 -4
  86. invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json +3 -3
  87. invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json +3 -3
  88. invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json +3 -3
  89. invenio_vocabularies/records/models.py +2 -4
  90. invenio_vocabularies/records/pidprovider.py +1 -2
  91. invenio_vocabularies/records/systemfields/relations.py +2 -2
  92. invenio_vocabularies/resources/__init__.py +9 -1
  93. invenio_vocabularies/resources/config.py +105 -0
  94. invenio_vocabularies/resources/resource.py +31 -41
  95. invenio_vocabularies/resources/schema.py +2 -1
  96. invenio_vocabularies/services/__init__.py +5 -2
  97. invenio_vocabularies/services/config.py +179 -0
  98. invenio_vocabularies/services/custom_fields/__init__.py +6 -2
  99. invenio_vocabularies/services/custom_fields/subject.py +82 -0
  100. invenio_vocabularies/services/custom_fields/vocabulary.py +5 -3
  101. invenio_vocabularies/services/permissions.py +3 -1
  102. invenio_vocabularies/services/results.py +110 -0
  103. invenio_vocabularies/services/schema.py +11 -2
  104. invenio_vocabularies/services/service.py +46 -94
  105. invenio_vocabularies/services/tasks.py +1 -1
  106. invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html +23 -0
  107. invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html +12 -0
  108. invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html +71 -0
  109. invenio_vocabularies/translations/af/LC_MESSAGES/messages.mo +0 -0
  110. invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo +0 -0
  111. invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo +0 -0
  112. invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo +0 -0
  113. invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo +0 -0
  114. invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo +0 -0
  115. invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo +0 -0
  116. invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.mo +0 -0
  117. invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.mo +0 -0
  118. invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo +0 -0
  119. invenio_vocabularies/translations/en/LC_MESSAGES/messages.mo +0 -0
  120. invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.mo +0 -0
  121. invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.mo +0 -0
  122. invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo +0 -0
  123. invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.mo +0 -0
  124. invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.mo +0 -0
  125. invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo +0 -0
  126. invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.mo +0 -0
  127. invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo +0 -0
  128. invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.mo +0 -0
  129. invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo +0 -0
  130. invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.mo +0 -0
  131. invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.mo +0 -0
  132. invenio_vocabularies/translations/gl/LC_MESSAGES/messages.mo +0 -0
  133. invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.mo +0 -0
  134. invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo +0 -0
  135. invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo +0 -0
  136. invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.mo +0 -0
  137. invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo +0 -0
  138. invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo +0 -0
  139. invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo +0 -0
  140. invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo +0 -0
  141. invenio_vocabularies/translations/messages.pot +95 -48
  142. invenio_vocabularies/translations/ne/LC_MESSAGES/messages.mo +0 -0
  143. invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo +0 -0
  144. invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo +0 -0
  145. invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo +0 -0
  146. invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo +0 -0
  147. invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo +0 -0
  148. invenio_vocabularies/translations/rw/LC_MESSAGES/messages.mo +0 -0
  149. invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo +0 -0
  150. invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo +0 -0
  151. invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.mo +0 -0
  152. invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo +0 -0
  153. invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo +0 -0
  154. invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.mo +0 -0
  155. invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
  156. invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
  157. invenio_vocabularies/views.py +12 -26
  158. invenio_vocabularies/webpack.py +3 -3
  159. {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/METADATA +150 -6
  160. {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/RECORD +165 -132
  161. {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/WHEEL +1 -1
  162. {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/entry_points.txt +17 -0
  163. {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/AUTHORS.rst +0 -0
  164. {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/LICENSE +0 -0
  165. {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/top_level.txt +0 -0
@@ -1,11 +1,16 @@
1
- invenio_vocabularies/__init__.py,sha256=5gIHY7OarhmrI8IQOUMyM90ndTljtpv2XACrtbWNlmg,377
2
- invenio_vocabularies/cli.py,sha256=Ymuy0l846eJXIA4UybunSqq7P9m2N0OdTtj6nEgd1-0,6355
3
- invenio_vocabularies/config.py,sha256=S6Ra5aIey9_K0Rw7qqGsV6TEi7t8iLzNoVu4R6hKuu4,3739
4
- invenio_vocabularies/ext.py,sha256=wMJfv3GG4ZOp-c4ePVrNhxi9KyWAb874b9_D23K1orU,3805
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
5
6
  invenio_vocabularies/fixtures.py,sha256=nNWwH04HFASjfj1oy5kMdcQGKmVjzUuA5wSw-ER1QAg,1585
6
- invenio_vocabularies/proxies.py,sha256=H_bcJXPTwGbErx-pF89ChayOZcXJXJGZW7O0xkJkYQ4,693
7
- invenio_vocabularies/views.py,sha256=SKXfzdsHEfarpua6snB4D7nQLv9KczYexCHmEYMPKHM,2548
8
- invenio_vocabularies/webpack.py,sha256=7A1DkwwTw0NRn-aZNvh_rBEx5o_Eyx6NiMXw31y2BnQ,1891
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
9
14
  invenio_vocabularies/alembic/17c703ce1eb7_create_names_table.py,sha256=2QGs0Ofi6yd93VzIBqghNi47hrZtuLf0DylKyvVzskI,1572
10
15
  invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py,sha256=Ywtp8qOFcI3PxUXemHdvy_VwdcUVtMFV1sFgNAmYrms,1054
11
16
  invenio_vocabularies/alembic/4f365fced43f_create_vocabularies_tables.py,sha256=jSrr0CLRchYADjkFeod0L-oophq2woXtRwbUU5Vytiw,3039
@@ -18,18 +23,18 @@ invenio_vocabularies/alembic/e1146238edd3_create_awards_table.py,sha256=XDAON1kb
18
23
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.eslintrc.yml,sha256=aERX8bU_YWne3S8Ai0FlI705MwJ1AXNb-V9W6FsAc6I,338
19
24
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.prettierrc,sha256=67zvnPdNPnqAfVYrzQJZAVa2T-lyfzJnwrDu5lo10jQ,59
20
25
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/index.js,sha256=-tppDUbPuRJHQi_m1KbuUZxQEYRZZmhLru2T80fQgAA,243
21
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json,sha256=Yrju8xr5h7AOYM6fxkcunZ162cWS2eYVxYRiHhbSpSc,768
26
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json,sha256=mbyPBL-MPW79XZgboVUHccTSEOZrDsoWP7J7QMBjtUI,649
22
27
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/index.js,sha256=NcHTRzFeT8iq-KTYR2ierbOCNPBB4cj9KnHsX55ag_U,247
23
28
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/index.js,sha256=iSx-bdQkKj6XA9NAam31bdcQmFygljQnjLcFjjK3lwU,245
24
29
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/index.js,sha256=7sSg482yJODQHU4jkP-hWJjpBOw7ubFr5nPZl5D_1gQ,262
25
30
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/AwardResults.js,sha256=AgqJg9GEcJvKZR4plZsH0j7cm9C3yjT9YCPI6uvmOyc,3499
26
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js,sha256=PRlPCk6oh7Cxb4QlEmyekv5efWihCi5uqVeL_Cdl91Y,3644
31
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js,sha256=TfwrlA_GrINvN1LAdW7J6q_hkbsiEKxbCWc-7VVp8mY,4674
27
32
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FunderDropdown.js,sha256=pPMB9Hirc8z3efquecrO_CKlfXE1ws6OqDB7fB30l5k,2431
28
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js,sha256=r8t_6xIM49UdjV38ltuzM5KMJIJ_oOgHc1__KsyvjGE,6555
33
+ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js,sha256=wXJz4ZL7J0ZPppcP-qd6U5Mnupf2hkog4zxMrQ9xZtI,6906
29
34
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js,sha256=z_4lWkf3h9Uin8OzSBSKY1wpUxtbnjE2kRUjW80jAhA,35
30
35
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js,sha256=ZN4dEcHCVtSVFjzb1SAYPxmaY1Qk5ZdCt1yY7j6pvQs,4610
31
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js,sha256=To8qRm0RoMSiGZaNWfd2TM7NFZLML-8l9Wx7De8DKyI,8112
32
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js,sha256=ekOhFW9ElfJ842W4BpiW5l4YIwjWaPVX7yjfNvo_QAI,950
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
33
38
  invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/index.js,sha256=67N7fTRVuqH-dkVW9gh3ehr0xGrswVHYaTqUPgYEmF0,319
34
39
  invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next-scanner.config.js,sha256=7Xn2OSYbm-zzguRiNTlKLHdBnJCqLuI7MaFaQTMebbA,1814
35
40
  invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next.js,sha256=B7b65r5V2hCUgFw1G2GnMNxCeSgHgW5W2vf8I5ZWwcc,1024
@@ -39,235 +44,263 @@ invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/script
39
44
  invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/scripts/initCatalog.js,sha256=ghTi5iOIhT8AJoFGlxnBrHWiw2ts21dKwY_vWxmkiCE,682
40
45
  invenio_vocabularies/contrib/__init__.py,sha256=C5eDia6tAVBCrbb5hd_KnxmczyBoF87NIBUCLID-Tzc,240
41
46
  invenio_vocabularies/contrib/affiliations/__init__.py,sha256=rV8YAzBRoSKsBYcVjCNJh6j7ITuPRfurwj9HJHRjkN8,565
42
- invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=Ph0z7bT_tudsWDKFaiksCBngsG-eO6Xpbe3KdejfLXI,1591
43
- invenio_vocabularies/contrib/affiliations/api.py,sha256=-NrA_aYxabvNMofYCnrDZ2bLP15HGDTvvhHTDuXNg-g,322
44
- invenio_vocabularies/contrib/affiliations/config.py,sha256=dm0nHub0g2I_SGc1oULtfnGcU0WztcfygkiABqFZho8,1572
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
45
51
  invenio_vocabularies/contrib/affiliations/facets.py,sha256=w316MGvtdyTpRCPOpCEmMxxLraRkbFFb1VvLkFlEc9o,1229
46
52
  invenio_vocabularies/contrib/affiliations/models.py,sha256=JUcj-1ydc2Cw2Rsc24JwXE3TFBJ_6fivhUYhGq4rT8A,329
47
53
  invenio_vocabularies/contrib/affiliations/resources.py,sha256=DBEbRxQmp-o-PeZlgFG588Q4sGcruuwIL8L9O-SzCes,435
48
- invenio_vocabularies/contrib/affiliations/schema.py,sha256=cUlE_8NehMJnlC9nzQzoN6fyZS8xJ1GfWDMPMr1n2rY,1322
49
- invenio_vocabularies/contrib/affiliations/services.py,sha256=C_6cMnh3mnL3-xxdsb16Rvm2aK4FyiaQ_qUTGylCwjo,391
54
+ invenio_vocabularies/contrib/affiliations/schema.py,sha256=O4s6aHcO1w4_aAfGuYLx_eLS6nctd6ktyIuHB6dMKqw,1842
55
+ invenio_vocabularies/contrib/affiliations/services.py,sha256=KJbv46c2LuQOW3xz7KVLtfZjWR8vhMRPHninlUEhrss,395
50
56
  invenio_vocabularies/contrib/affiliations/jsonschemas/__init__.py,sha256=ILyZ5kejTr0p50macMBPALQCTJSe4KEE3_cgf2p3zV4,252
51
- invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json,sha256=dNzPBRoEGD_xPznFzPW_mDGR0sk8zsmixiGmciHXEgQ,677
57
+ invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json,sha256=be-glRNIBtIO87Tcyw8d68OdG4J8-ojjiCj8UJBnckg,1649
52
58
  invenio_vocabularies/contrib/affiliations/mappings/__init__.py,sha256=q7hb9lcT9KLRSGr6G7qpL8Top6wZfzj_E4uzGxnraTw,295
53
59
  invenio_vocabularies/contrib/affiliations/mappings/os-v1/__init__.py,sha256=uEiG5rFrjhpFxg5pD5j5E96_xrPojsla9PhtlOqSCw4,256
54
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json,sha256=oHJiDYnfsJhb4HCbUeDm7FNfiisX_HBeyg5x-DLk83s,1723
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
55
62
  invenio_vocabularies/contrib/affiliations/mappings/os-v2/__init__.py,sha256=qgNQbJjbfA2hSpFJtXrsUQBZdKwg-5Y1isoXzj31InE,256
56
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json,sha256=oHJiDYnfsJhb4HCbUeDm7FNfiisX_HBeyg5x-DLk83s,1723
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
57
65
  invenio_vocabularies/contrib/affiliations/mappings/v7/__init__.py,sha256=zr9YyyKyqMAnahKbnIFGr_Z7PXy9ONoU08i9z5cRguQ,259
58
- invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json,sha256=oHJiDYnfsJhb4HCbUeDm7FNfiisX_HBeyg5x-DLk83s,1723
66
+ invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
59
67
  invenio_vocabularies/contrib/awards/__init__.py,sha256=KwCmwFalz-3pDs9iTa5TKUidBjLepnUMqpCBXRiQOO8,474
60
68
  invenio_vocabularies/contrib/awards/api.py,sha256=OXukE7PLXs45BTtqVrhvGBNqLmQaI-CgXmHTCi36LZk,303
61
- invenio_vocabularies/contrib/awards/awards.py,sha256=N-BNE2ffUu-IlfKFBjMjfYqxL0vmpO8YMPe4q4e-rTo,2695
69
+ invenio_vocabularies/contrib/awards/awards.py,sha256=tOLvcvTPiN1gn1QAl-hSh1bwcclg8Kx2ZMmJMEhI7vk,2959
62
70
  invenio_vocabularies/contrib/awards/config.py,sha256=PlDHabkWDUzwa1Fvk_U2hG83kQYBqM1IyChg8Yg_VlY,1630
63
- invenio_vocabularies/contrib/awards/datastreams.py,sha256=lJDokc72MA6s5YvfwExBVNdqVnnIVajFzagB9YitQxk,3847
71
+ invenio_vocabularies/contrib/awards/datastreams.py,sha256=k7GtQ0pmY9EehYUtus45G6opJb8v2Kc63YIn5zO4SU8,14004
64
72
  invenio_vocabularies/contrib/awards/models.py,sha256=mM-kSNf7kDH3oIbV8epxxbUi7muYqi4JreXxgWXlVzw,318
65
73
  invenio_vocabularies/contrib/awards/resources.py,sha256=_9YTqbhz8axFXGhG5y4WyjE27p9n-7e3c6HoBRditPA,411
66
- invenio_vocabularies/contrib/awards/schema.py,sha256=bg-09nvhEn-ipzaztK1iNbKc59saAM8v8hAW9zpKDAc,2786
67
- invenio_vocabularies/contrib/awards/serializer.py,sha256=MDnq41EJf_LFu-UT6qlB3-O2S7aEYePIzQ_immMnwag,1139
68
- invenio_vocabularies/contrib/awards/services.py,sha256=oExHPYgXgege9a7oLCK4LGb8FXCHfY0ekeS9HvTJLxs,367
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
69
77
  invenio_vocabularies/contrib/awards/jsonschemas/__init__.py,sha256=XB2l9hr53vqTk7o9lmy18FWGhHEUvNHu8D6nMF8Bz4k,246
70
- invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=kNw4djIuqo7Ing9O5w4k3n_HIejX4f5hpApnmJpDt7A,1029
78
+ invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=KUJW0XaHSU8iYNtK0Hb1H42jlhw-oL4Y644Q_-aSlTo,2131
71
79
  invenio_vocabularies/contrib/awards/mappings/__init__.py,sha256=PbM5urjiSrJSx4Ak-H_lJrOOVKGT38MrGgRv61gIbAM,243
72
80
  invenio_vocabularies/contrib/awards/mappings/os-v1/__init__.py,sha256=r8IZvjorG9SVz32Hv1fncoqLfz-5Ml0Ph3jiYWCHBPk,250
73
- invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=pjbqzEc2q0t7VQBqVjU5DjsKcLaFWd5f7xSA6B9_HZc,1408
81
+ invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=dcE1dvgGBYYb7vziGArmXb64rg2HpBdiIw_aP3oYaDw,2441
74
82
  invenio_vocabularies/contrib/awards/mappings/os-v2/__init__.py,sha256=9gRLFRtjhNJcbop3qz8iRpQVEng_wudDTbOFsS-gxjk,250
75
- invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=pjbqzEc2q0t7VQBqVjU5DjsKcLaFWd5f7xSA6B9_HZc,1408
83
+ invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=dcE1dvgGBYYb7vziGArmXb64rg2HpBdiIw_aP3oYaDw,2441
76
84
  invenio_vocabularies/contrib/awards/mappings/v7/__init__.py,sha256=fERdPp7K7ajaoUu_4_HVLfF-WD_qcl7QgST6yGb68s4,253
77
- invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=pjbqzEc2q0t7VQBqVjU5DjsKcLaFWd5f7xSA6B9_HZc,1408
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
78
91
  invenio_vocabularies/contrib/funders/__init__.py,sha256=YxFXBDnT7NM8rFwxT_Ge3xXR2n17EM0alknQq7r_Bt8,478
79
92
  invenio_vocabularies/contrib/funders/api.py,sha256=QKGGeSnPHSoBfucvpaVruXT_txYidofZ080G3IxFkIo,306
80
- invenio_vocabularies/contrib/funders/config.py,sha256=-GncyorRv86fbM1WXi-w7X9QW7GqJz_uqs75Icx5Y3w,1704
81
- invenio_vocabularies/contrib/funders/datastreams.py,sha256=4DWM5K1CQlS_X61ftnFtIl68QFyspitZHPbvWSRSn7E,3525
93
+ invenio_vocabularies/contrib/funders/config.py,sha256=EU7UrwLOkr2Bem9Skz_HJIxyBQRkXEdPT8zIuV8vbzI,2217
94
+ invenio_vocabularies/contrib/funders/datastreams.py,sha256=3tOwcN1mK5AVqtdU6KdguouGSUurPTO-FDWTKzK1eRo,2481
82
95
  invenio_vocabularies/contrib/funders/facets.py,sha256=a068TVtt74Ncu0latb177LFK8EdnpbMOWecAKozA04M,1245
83
- invenio_vocabularies/contrib/funders/funders.py,sha256=nHqUoyRRW9oruN-ghmwzb9QIz_jyBgxNUpk41yvcso8,2292
96
+ invenio_vocabularies/contrib/funders/funders.py,sha256=F2AQWv7IfSovThoKPEmlQbxbbmv7gNzIxDoSCaL5D0U,2338
84
97
  invenio_vocabularies/contrib/funders/models.py,sha256=RAU-_YVOUNVCn03_XGJ2czcVwXTaZPk5w7X_bMAgMOk,314
85
98
  invenio_vocabularies/contrib/funders/resources.py,sha256=He4gXd737ovdrHL-HB9dX7AGxp1BVJ9QteIO7JWUVSE,415
86
- invenio_vocabularies/contrib/funders/schema.py,sha256=REXr_Jh3No7lCLjOo-ZuCQqsrPjQwm-pIHV5GQ6-O64,2190
87
- invenio_vocabularies/contrib/funders/serializer.py,sha256=UwFsPnQiMUWx2lMQgh3Bv1uosubTUF5GFIAxwECNoAk,927
99
+ invenio_vocabularies/contrib/funders/schema.py,sha256=tEOdMU2i0z_3PkXL1yD1qIJeoAy_8n22xxv8V7iltz0,2480
100
+ invenio_vocabularies/contrib/funders/serializer.py,sha256=dPFBvofV4AzckMAxWfM4KtuCOXtsVRb9Ma7NzJetV-I,981
88
101
  invenio_vocabularies/contrib/funders/services.py,sha256=M-kQwtVOGygHe44vXr1L4E5Vvnpoco4KO0LRYwzhvMc,375
89
102
  invenio_vocabularies/contrib/funders/jsonschemas/__init__.py,sha256=O4XwUXCk-gx_K2LDVJOLkq07-ibsUkpT1vPaebgd0Gk,247
90
- invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json,sha256=V_E72iXF__W4SzxlHw8u3wQC9feZJWIalDRO95fTICw,783
103
+ invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json,sha256=bhmC5hHNX4sj9MIHKhGp48Tu9Nk8I_9MYpXaP7i3rIY,1686
91
104
  invenio_vocabularies/contrib/funders/mappings/__init__.py,sha256=aSr-tZd9rsjet6leeS336gdSdZHXwZKdaPStNtVNQVk,244
92
105
  invenio_vocabularies/contrib/funders/mappings/os-v1/__init__.py,sha256=xXEX3tacmXp0I1KFtDw7ohIahozd2oIGp1UN40IhFic,251
93
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json,sha256=X641W9NZF5k-L-puKJUjd-8-3QAAEI5E0Wtg2KVqcjY,1273
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
94
108
  invenio_vocabularies/contrib/funders/mappings/os-v2/__init__.py,sha256=YvMRlKYTnEmyTzI9smZp_lO3w-zcK-8IpqT-jGUXEEY,251
95
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json,sha256=X641W9NZF5k-L-puKJUjd-8-3QAAEI5E0Wtg2KVqcjY,1273
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
96
111
  invenio_vocabularies/contrib/funders/mappings/v7/__init__.py,sha256=yFHmi3QYD65YKzLU5vMEtwAZn0gwkFYa6Db_tSbHjKE,254
97
- invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=X641W9NZF5k-L-puKJUjd-8-3QAAEI5E0Wtg2KVqcjY,1273
112
+ invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
98
113
  invenio_vocabularies/contrib/names/__init__.py,sha256=DBfsM7JMETZGaV5QmXEwE7zhCaAXvc2SZN6uXnW_V-c,451
99
114
  invenio_vocabularies/contrib/names/api.py,sha256=sEPn_jFX3gyoxgbdEUSIvOoPCUI8pocI6qCZO6mzCgQ,300
100
- invenio_vocabularies/contrib/names/config.py,sha256=hKDTEEBYGYOY6sMOArZjjkq2HJ6MJtRZp1geGLAFgRg,1735
101
- invenio_vocabularies/contrib/names/datastreams.py,sha256=qcNgCLT57M99IL2yZxyfEIdi5AbkBGOMmSoE0e4vEJM,3661
115
+ invenio_vocabularies/contrib/names/config.py,sha256=8FVtMuq1NHC0cz8O-p_-Ng_IpHE9PTOVqQ7KDJIm7qA,1905
116
+ invenio_vocabularies/contrib/names/datastreams.py,sha256=EKatHb0gkvcC9LCYBLIcN5pAgklBY4G43lZR_XE52wY,9505
102
117
  invenio_vocabularies/contrib/names/models.py,sha256=SYdtDDG-y5Wq_d06YhiVO5n8gfxPW_mx-tECsIcv5H8,308
103
- invenio_vocabularies/contrib/names/names.py,sha256=fRNZW3yTmIE3FBB8zAcTdt1CXH6O8p6Ggz_7k9e8QTk,1987
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
104
120
  invenio_vocabularies/contrib/names/resources.py,sha256=Z8XqLKfFKE69zdTTvcTDmpEZ6wqiqjIH5tp0LzXTSwQ,1588
105
- invenio_vocabularies/contrib/names/schema.py,sha256=z2qN3td4uJsRas8WpfVC86DhLYNqBtonyF_EDKL-MX8,2800
121
+ invenio_vocabularies/contrib/names/s3client.py,sha256=c7B9_NbnXCfE4pE_yMTsT6uQ2hgbcRU-KY6nbWFuFzU,1063
122
+ invenio_vocabularies/contrib/names/schema.py,sha256=eKhpNwBaACMEY0JWNrSUhr-40lXhkiHDRmM42KsLrYg,3354
106
123
  invenio_vocabularies/contrib/names/services.py,sha256=1viM-L8VEojmQWMisIOhDyl8KInPPCZEIf6tU8G07As,1763
107
124
  invenio_vocabularies/contrib/names/jsonschemas/__init__.py,sha256=pdDZdyoxqWbAQ6ngiclhYoDUsGKgRDRPXlIDy0U5Jzg,241
108
- invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=vAqnz9LbRuhRg2Vdg9Ygc_s07VqZh_gdQP4Ch5Eztsw,1170
125
+ invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=RYV811bVjnbcBnelZBSDX2hmG2Y6bZXb-u65GLXz2qE,1258
109
126
  invenio_vocabularies/contrib/names/mappings/__init__.py,sha256=l5hYJmrj83lds5GupnwCcwQn7cdJo6_4H4YYzrnBa54,242
110
127
  invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py,sha256=CKtF-xflE4QGF5P82Lj1ifEP1c7ekR24fc3SiTAkhsY,249
111
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json,sha256=XtrCBgvEwlhu_kyitiZ-ZRVn8ImK17rFuRVSV4gjHvw,1892
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
112
130
  invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py,sha256=p38Ausy2cu1OetTQYwx-9gOFoxGrtrmqjArSDpvxfMU,249
113
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json,sha256=XtrCBgvEwlhu_kyitiZ-ZRVn8ImK17rFuRVSV4gjHvw,1892
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
114
133
  invenio_vocabularies/contrib/names/mappings/v7/__init__.py,sha256=qLGB8C0kPI3xubcfhI8t6Wb2bLlCmVYCiwQ08bKGz9g,252
115
- invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=XtrCBgvEwlhu_kyitiZ-ZRVn8ImK17rFuRVSV4gjHvw,1892
134
+ invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
116
135
  invenio_vocabularies/contrib/subjects/__init__.py,sha256=GtXZKA6VWG1oA1fUX2Wh92nd-1i7RnnQF6RprGhxkD4,591
117
136
  invenio_vocabularies/contrib/subjects/api.py,sha256=QH8mxoLsa8qjJT1i1Tj6rRnpbH23plo2IMOJ56rnvbU,347
118
- invenio_vocabularies/contrib/subjects/config.py,sha256=0SHUKqR-EELVeEDiFjwzLY-_74ZmCxBKxC4dK_eOH8I,1535
137
+ invenio_vocabularies/contrib/subjects/config.py,sha256=12Hoy46iGaBv7DlxcCjBuJaDtmpSvPPQKrWabtaUGe0,1712
138
+ invenio_vocabularies/contrib/subjects/datastreams.py,sha256=CiLSTm9PukzLKm34VDmmKOH4A_pYnjbrshxAht1Fox4,1787
119
139
  invenio_vocabularies/contrib/subjects/facets.py,sha256=qQ7_rppFBzsmrlZu4-MvOIdUcjeOmDA9gOHAcs0lWwI,695
120
140
  invenio_vocabularies/contrib/subjects/models.py,sha256=8XgbVRxDDvhWPjMWsoCriNlOKdmV_113a14yLRtlvM4,363
121
141
  invenio_vocabularies/contrib/subjects/resources.py,sha256=0KRfUMizwgIziZybk4HnIjiSsXbrCv_XmguNPwnxoo8,506
122
- invenio_vocabularies/contrib/subjects/schema.py,sha256=jWPhpCDoScf8fRs7T15kcXnprWw31OuGBKJUziQ3t8A,1120
142
+ invenio_vocabularies/contrib/subjects/schema.py,sha256=5pM9FFVdeb1nUuTwr2SqkUJh-oHIjYN-EXXI8_SSjCQ,2446
123
143
  invenio_vocabularies/contrib/subjects/services.py,sha256=s1U6HMmpjuz7rrgR0DtT9C28TC6sZEeDTsa4Jh1TXQk,864
124
- invenio_vocabularies/contrib/subjects/subjects.py,sha256=y5IidPbmYV3zs5aEp7CFzijYoVwWZ5GIMwl1kD0e0Eg,1441
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
125
147
  invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py,sha256=WowVUST1JoEDS3-xeHhCJvIgC9nzMkFs8XRks9zgzaM,292
126
- invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=-xQnzZEiAYLR_lQVWzgVQUc1s0UN3mDSPTWaQKgCZ3Q,826
148
+ invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=SCFOfwtdAQJnUC4wccRJj--c2yUUmo5Z3tnOfo2XluU,1632
127
149
  invenio_vocabularies/contrib/subjects/mappings/__init__.py,sha256=Qk-yj1ENsTmijO8ImWuDYGzXi6QQ2VjP4DbjrpRfDk8,243
128
150
  invenio_vocabularies/contrib/subjects/mappings/os-v1/__init__.py,sha256=rv2-AasC_WJFp2t9Nrhzivmw9RovRI2_msin4oHTZuk,250
129
- invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=9qfQ_Wxpklf3-F6fzgpQmIFbZL0wwhfSGTse94c9uYg,1115
151
+ invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=WNNWVsaf-pNxqV6p_IR2uIcwIBh30WJeP4IDIxzqutI,1810
130
152
  invenio_vocabularies/contrib/subjects/mappings/os-v2/__init__.py,sha256=rQnrw1tMKR0yzlPiXBbCVHnxy_aAhwrKghrSuhhZYAc,250
131
- invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json,sha256=9qfQ_Wxpklf3-F6fzgpQmIFbZL0wwhfSGTse94c9uYg,1115
153
+ invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json,sha256=cJSjcJ_PqrifBZOUeDMW3qyT7VtENTvYq3Xvi-iylOc,1810
132
154
  invenio_vocabularies/contrib/subjects/mappings/v7/__init__.py,sha256=QK__a1749g2UN3fBqOr9jx8ccZHWAuvd6DSN4B1jJW4,258
133
- invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json,sha256=9qfQ_Wxpklf3-F6fzgpQmIFbZL0wwhfSGTse94c9uYg,1115
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
134
158
  invenio_vocabularies/datastreams/__init__.py,sha256=VPefh6k4Q3eYxKIW8I5zXUGucntp7VHxaOR5Vhgkfmg,412
135
- invenio_vocabularies/datastreams/datastreams.py,sha256=_jSXv2yAvSjt8btMoLJlqXOkqBzYb3Xe9m2GH50Nwag,3987
159
+ invenio_vocabularies/datastreams/datastreams.py,sha256=SpI6ivmf2LIDS2JSkxoM2v5kRmrPoRDtAG5fuzZO4oQ,6078
136
160
  invenio_vocabularies/datastreams/errors.py,sha256=IDUZ3gNtYGrhcOgApHCms1gNNJTyJzoMPmG5JtIeYNU,678
137
- invenio_vocabularies/datastreams/factories.py,sha256=js76i-cjcEzslgemsrwSzXQMy3SXtY3iFcsO-OlrMIM,2182
138
- invenio_vocabularies/datastreams/readers.py,sha256=RmMlsi_ZzVJKpg704tiy6Ox50-RFf0QF0pLIqe4G9vY,7493
139
- invenio_vocabularies/datastreams/transformers.py,sha256=u0L-djSUFh8t8MJrwEbuqCWglmYBiAsnrHkgiIhd6CA,2118
140
- invenio_vocabularies/datastreams/writers.py,sha256=a85RYE6FAQqNF7obmlqHLW_ztJ1a6biS_i9a_yaKJw4,3615
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
141
167
  invenio_vocabularies/records/__init__.py,sha256=Uj7O6fYdAtLOkLXUGSAYPADBB7aqP4yVs9b6OAjA158,243
142
168
  invenio_vocabularies/records/api.py,sha256=Lynt6Sz4BVN1orh0zgJ5ljhnUobEtcq8c22PmSeUo2U,1494
143
- invenio_vocabularies/records/models.py,sha256=0zOciiWY3EsEm_lNVtFecip0qgCg9JjhXoJDllrZFnc,2500
144
- invenio_vocabularies/records/pidprovider.py,sha256=ByUwsZKimRv2QlbMdJmhCejmJd2sIqwt8fISWW6aW8g,3836
169
+ invenio_vocabularies/records/models.py,sha256=36CxObDMe-D9hoGaelAlR4ggZZTyXgRmCWPxZRpWF5w,2460
170
+ invenio_vocabularies/records/pidprovider.py,sha256=uFuo-M0Wqua0QhTS2z17YpzYDySwNfJaOi7rp0S0dPs,3840
145
171
  invenio_vocabularies/records/jsonschemas/__init__.py,sha256=qr2BZMyMVvVRSeJzPCI8re2BlGokiDjeqwREkythSrQ,246
146
- invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json,sha256=vNMM7wg6-WEcUg6AJocjv3A8CIt6CiE2t4ys2iK9mAQ,240
147
- invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json,sha256=IaWHDhQqZ0kFeA4EMmJwa16aJP7m62CywYkfrFCf4PA,1295
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
148
174
  invenio_vocabularies/records/mappings/__init__.py,sha256=kER6e5hZFmPpesFAx-oQsMseep8RXobQRiLIE2r5IMc,244
149
175
  invenio_vocabularies/records/mappings/os-v1/__init__.py,sha256=XaGt61tsIKfG59y59Bf0NaPzJECWZnzHSTbAQNUwlVo,248
150
- invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json,sha256=pE_3XDQHfZPKU6LJWLLKlBtv56VG49gsuxG7cTGBBCQ,2121
176
+ invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json,sha256=1Py4-BpcK8UMBt06p3zVPLqID8XeDsF2CUmwuKUx0Ug,2127
151
177
  invenio_vocabularies/records/mappings/os-v2/__init__.py,sha256=5dVZCOKIEzr7qtuX__RbFPggcA5yKu5JBkUtXotbjYY,243
152
- invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json,sha256=pE_3XDQHfZPKU6LJWLLKlBtv56VG49gsuxG7cTGBBCQ,2121
178
+ invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json,sha256=1Py4-BpcK8UMBt06p3zVPLqID8XeDsF2CUmwuKUx0Ug,2127
153
179
  invenio_vocabularies/records/mappings/v7/__init__.py,sha256=QK__a1749g2UN3fBqOr9jx8ccZHWAuvd6DSN4B1jJW4,258
154
- invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json,sha256=pE_3XDQHfZPKU6LJWLLKlBtv56VG49gsuxG7cTGBBCQ,2121
180
+ invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json,sha256=1Py4-BpcK8UMBt06p3zVPLqID8XeDsF2CUmwuKUx0Ug,2127
155
181
  invenio_vocabularies/records/systemfields/__init__.py,sha256=MRLoLF3h8VYuqJ9tbbgXjXkTDUniz24pVnujLX-psZI,406
156
182
  invenio_vocabularies/records/systemfields/pid.py,sha256=5e2zZD0uHP5r32--KmuzjfHk3B5GXEV3yBuoKeit9mQ,3740
157
- invenio_vocabularies/records/systemfields/relations.py,sha256=fObQUlla8aqRTXAEjIMAndMA9rrIy3c6bVWVQgkMcmk,1557
158
- invenio_vocabularies/resources/__init__.py,sha256=XZvY92BJx8VyBsDYYGAdU0ILO9QApmiTY1ZH-hr3BSg,384
159
- invenio_vocabularies/resources/resource.py,sha256=CyMCC4QMar8dQR9xP2Fk160blj5KzAwM8nvqzDMXyy8,4525
160
- invenio_vocabularies/resources/schema.py,sha256=B_Y7uOSfVlogUmiDZfRpa3EWx1VJmbrzTtLachv8yEw,541
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
161
188
  invenio_vocabularies/resources/serializer.py,sha256=pwfckLdkMu1MNDkocyMg1XeX6RhbfeuV4fjDO5xKDxo,1190
162
- invenio_vocabularies/services/__init__.py,sha256=obfLpKP5-qDJZBtXaBzROwVtuF-uqLhuYKtlnrxquGk,385
189
+ invenio_vocabularies/services/__init__.py,sha256=6mi62EG21Id6x23nx0X193I6sVTakK6jOdYNEKPxXUk,522
163
190
  invenio_vocabularies/services/components.py,sha256=d9C-24dEDM63gFm75nU-dXrrjS2zZi7Nfkv40BGnHwM,1941
191
+ invenio_vocabularies/services/config.py,sha256=H5l1PQ-72-LyLXPiouvU9_7lqWZcdKOrGVSTlyldIdE,4787
164
192
  invenio_vocabularies/services/facets.py,sha256=qvdHoGSJJr90dZHSVe0-hlO1r0LtTnFVSjrt9PNuNAg,3872
165
- invenio_vocabularies/services/permissions.py,sha256=one3NvNFYq-q15e6xxf85OkH1bWZ5OsvJqMnNbm3Qms,696
193
+ invenio_vocabularies/services/permissions.py,sha256=nU1t_aW-RimFTWHbg9SivfzoP3P2Z5CqZ16U4jX5wN8,821
166
194
  invenio_vocabularies/services/querystr.py,sha256=X3JHVF9B0O0iLWrnW3ok_bf_8jA-Cs_oAcYYkGOm3Uw,1829
167
- invenio_vocabularies/services/schema.py,sha256=ShnnH_ILHZGxE546J6Jsdwdeix6jLubSRomzf472DK8,4307
168
- invenio_vocabularies/services/service.py,sha256=W3wtKOttQjOr8Nkaus6m3KRuCMBqBsWUCAVv7Dj8bvM,7392
169
- invenio_vocabularies/services/tasks.py,sha256=zTAWdnI5celWBKrF986wQzCmkOTGOwTghtN7U5FMZ5Q,783
170
- invenio_vocabularies/services/custom_fields/__init__.py,sha256=1emONO3aiE7TanAoyUSkWE6gwZiBwjzzJ5y8jeomOLc,310
171
- invenio_vocabularies/services/custom_fields/vocabulary.py,sha256=KS7da-GXWuCvlLaZ5ICLJWI9rL24kBG564vAJkmOx4I,2900
172
- invenio_vocabularies/translations/messages.pot,sha256=IzTTWdWknzmKKtl1UNUxPOwHjfBB_iidm_eeEY2kV-M,3907
173
- invenio_vocabularies/translations/af/LC_MESSAGES/messages.mo,sha256=Oc7UzZAlOWjjttkgCQitTKj-YCUZrjeHasgTD1jHLg4,523
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
174
207
  invenio_vocabularies/translations/af/LC_MESSAGES/messages.po,sha256=XXoiqCtGELaxl6hxRj31D3DCdgBUrz0oD3MYJUpcklM,3976
175
- invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo,sha256=KTDiKkw9g9z1xzh1WapsYjcuwAsGPsqRQVd2eaW_J-Q,2470
208
+ invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo,sha256=Y9h5ziLiSs431qRw0iFCBhKmgVNiqgw7T244iOTqyxs,2470
176
209
  invenio_vocabularies/translations/ar/LC_MESSAGES/messages.po,sha256=aNg5ViJnWh9MpEMQfM2dbuBF-BSS2UKKvMtgHoAk5RQ,5183
177
- invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo,sha256=t2YN_r15gDX3RnQEk5cLw7cnhRF53MHdC5RpZAPPAFw,604
210
+ invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo,sha256=4K6TcgCRUjFt2_yoF4az8v_kQB3-xtph8QMCPgVPn0s,604
178
211
  invenio_vocabularies/translations/bg/LC_MESSAGES/messages.po,sha256=aJpHvwOkbJ0rwKvjvHqxgXANJBMLJCGI_f22KIOVWMc,4119
179
- invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo,sha256=-RbzeL-AAevkp_uoA0FBTu0B3hMK58wtS5y8_J-6TQs,613
212
+ invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo,sha256=fsdannJkA9jqQnV0ZWicZThw40M07OP_ALuZMdWJRjs,613
180
213
  invenio_vocabularies/translations/ca/LC_MESSAGES/messages.po,sha256=Vrqa2vsWXCnzyLcseM9DJW5cKZ_0XEFGEn2JlWlF35I,4107
181
- invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo,sha256=a8ZSU8B5XryN7wRAklbwNuMb2uFLzXV3-3NUOV1eBrY,694
214
+ invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo,sha256=P2QIqFX0hxWRCtkEcp2gL4Xm1XAKRnFLsX6yMkrVIdE,694
182
215
  invenio_vocabularies/translations/cs/LC_MESSAGES/messages.po,sha256=McS70wI2bxVrM7Qz7BHXHNgK9xFGZCFwsSqNz1dE6FA,4188
183
- invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo,sha256=EI9KVXF8_3s_zP0zQ0s4hURRYSnOQiEJMo3tXffTvFA,520
216
+ invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo,sha256=MXifvGk2jmlemIwwzHtH7owm3lpouexrzPhq2i6FG9o,520
184
217
  invenio_vocabularies/translations/da/LC_MESSAGES/messages.po,sha256=QeezPCuKh9M3fJavKdVVP2NSbPzRWgmwGID41CfAC7M,3973
185
- invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo,sha256=-8Kuk1TN5JhFBJjykMGBtNh0A2_HndtauccCIkpq3yg,1760
218
+ invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo,sha256=FCkjIPURjWxCjLtHPap5JeUtf3SohndK3gdK7tsFdFI,1760
186
219
  invenio_vocabularies/translations/de/LC_MESSAGES/messages.po,sha256=h_ZmJ_WpJHrs0cdJiT6N-PqbVyt6oDCP9uqTRdhiQWE,4820
187
- invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.mo,sha256=ePf8GPl1W173_nFbb2CL5VdRWOme4yAqJYwVDDNC03s,536
220
+ invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.mo,sha256=FuGzxHm_X7Y5hZJs_UIQZClS6YbtzznRfAvGfM75g0A,536
188
221
  invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.po,sha256=ylaRwzVqDO6KglpJSo3qI2_PtmmpDiY4WmjHCbmAxMs,3989
189
- invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.mo,sha256=Tt7Ez617tGnDwhBqW-mHpK98-Or8JIdChOz5eqoqp_s,536
222
+ invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.mo,sha256=ozzvTAp6iFxQczWaGLFNhZaBnVd79rZibFrFKEtN42k,536
190
223
  invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.po,sha256=kXsjtk8pn2_Qlfy45r58wrQdtxVmQb04oJuQZTwy35k,3989
191
- invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo,sha256=bqAtGQ7uRif12Z7_doCdS9w7um_FDMZP0b2s0wNSWiQ,624
224
+ invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo,sha256=COqArmggfz7t2XvkFF_hXuVwmgHeLI5bCckzXYAEA-0,624
192
225
  invenio_vocabularies/translations/el/LC_MESSAGES/messages.po,sha256=5X06NA8dg5b-XuhR_7FtYSWftp4oRfe4VSD04RRMSEI,4118
193
- invenio_vocabularies/translations/en/LC_MESSAGES/messages.mo,sha256=zzTplhmIamSSGQhNaI6W1OBP6ELLCuqV4b2MXXWms8A,467
226
+ invenio_vocabularies/translations/en/LC_MESSAGES/messages.mo,sha256=-NLyNN3b9k7YpbJEC81brG34_1HsYEmkIL0OyTJLCpE,467
194
227
  invenio_vocabularies/translations/en/LC_MESSAGES/messages.po,sha256=OLbQwEoqXSAGuXrYazkgoNtTp2gUgcbmoLlLK8BrZQs,1616
195
- invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.mo,sha256=khTB4_ghmRKznE9E9fD3zh1VWHZkXv4CU9BUXdSFJ9k,537
228
+ invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.mo,sha256=JMtpikwq9T4kcnTqthEMsfU7bXf6kaTAYsqqBbXHSmA,537
196
229
  invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.po,sha256=AZGLT5-sARb8b_7aDrY4RYJW6HG1SkFBgc7X242BIWM,3990
197
- invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.mo,sha256=m2DbnB1xaNivFYIVQcAECPbvFWrzYXQuPNrAnS3EYJc,494
230
+ invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.mo,sha256=q6gX2LPLMa86xue1TKWZnCsJexNubkgown4bzu9iWvU,494
198
231
  invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.po,sha256=_d6Ks5SnPdrr1Kw7V3LoD6ClUrt8Ny8rvJqq6Ep2oQo,3990
199
- invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo,sha256=xZ7KU4VlM3NnVWdEkFWlAWzmYQY96lXNGvDUzdHjtxs,2189
232
+ invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo,sha256=0muwemvNi3BvezVtzsgt5VMZjO8QvVXxkFMg_oIHh9g,2189
200
233
  invenio_vocabularies/translations/es/LC_MESSAGES/messages.po,sha256=SWHq9lzwUXjujYuokrJ59q-VB1FG78M-o9AcBY-ehds,4898
201
- invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.mo,sha256=ftYGREXE29FfoaOUzVvylcHKetdJIc7ot878Ge7loQc,573
234
+ invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.mo,sha256=3VrMtOt2pMziY6XDQ7WUISyV7ptSzL_c8We-pZXwbTo,573
202
235
  invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.po,sha256=ik6vOP-Fh0RCOMGEroDr8IM7gJ-aG5E1eS66uBy1wpw,4026
203
- invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.mo,sha256=nWqcrFDh7cr942Hh8mAogAZ_Mst_6dUQFFwOV7v-GlY,575
236
+ invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.mo,sha256=sg2WUv5vP9jVMteacFCLaedQewjMifUUXzzAObSjEbc,575
204
237
  invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.po,sha256=3iNp0vZnPc1IfRmq2WK1__5LEJRz7yo1XsieGw6kAfs,4028
205
- invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo,sha256=e9KPN3OYj0rRWhBcunUuRyhFsZ1XFZefyC62KIOTchA,1990
238
+ invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo,sha256=fzyHXkJ_7GdsG1faQt2rFtiXV1xswbnHF_mbmm8yXzI,1990
206
239
  invenio_vocabularies/translations/et/LC_MESSAGES/messages.po,sha256=OYFppzn31T8w1_XwJqPqiypJJe42E_cuWxeyGv039pU,4628
207
- invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.mo,sha256=eX7fifiAJMSnIK-pLVQmEW24uX1-ohktRcELrlYHtCw,538
240
+ invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.mo,sha256=RaeMr-dT6ugYYzT47wb_lEcmDJH9pgbpxcYjnSUtYVQ,538
208
241
  invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.po,sha256=DRXergYlj3rsX8DXTC3kmTwxPT3GAO7GTUBUvucQKYI,3991
209
- invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo,sha256=vwhy7nJh0A9VSjyMKodaTYktcZJ_gT8F4uIc6R7GxoU,595
242
+ invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo,sha256=qMXpmzIAvzwF_SXI6JLWT2pStCN-kFRa_Q1zY1nBmJo,595
210
243
  invenio_vocabularies/translations/fa/LC_MESSAGES/messages.po,sha256=ItSGf3ECumdoAEQl6L7VKfMFSVhIFfThfSzZ66aapPE,4110
211
- invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.mo,sha256=DZWYafbCgX-TzxX0L7tPScvbQTCMtt8ITgsbODHIZxw,533
244
+ invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.mo,sha256=K5JZMvX6eG29c4uUj9JgWF1j2TRWg0-fck2mrOySnbo,533
212
245
  invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.po,sha256=sqQJeNvjpVQm16jPwQRpm5jI6ZDhLv7me0_8qVKbSOU,3986
213
- invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo,sha256=octLGMQ7ckAVUiU_PLJZZDKOanNlk2aiGljYriSxgVY,662
246
+ invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo,sha256=EAI-QlzSCZil9gFLGFWoyU7y2mAa_6bn7OmT7HlVxb4,662
214
247
  invenio_vocabularies/translations/fr/LC_MESSAGES/messages.po,sha256=l0xWw1uf4JhAJxfyG1ypwOmYncmZkJdsc44X76yND9Q,4200
215
- invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.mo,sha256=cisMASb-NYUcklsilWL5Equ7CTaUNDGAsBgNnb85uBY,594
248
+ invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.mo,sha256=Gm69t9vRjTt1-OvQbn3lPhs4FPBnELzdE2bn37g5Uws,594
216
249
  invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.po,sha256=HV5SiBCunaVD0hTVxvZC2dazwouTl-TPDzqrcYIx4wk,4047
217
- invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.mo,sha256=9KwTpejRhecjT9gbEfveziCuqINnOQZ1w1q3mvxnN-M,586
250
+ invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.mo,sha256=EWmco2ElsoMdbE9gGxi3Q_5E46849I0VYKYCzSyIaU4,586
218
251
  invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.po,sha256=ziB-xADWfC89PPNhbVtjaBEhl0UYiFC5KYc7ZZt7M5w,4039
219
- invenio_vocabularies/translations/gl/LC_MESSAGES/messages.mo,sha256=TNVkJPmWcwSvFSgnu8wLmRjsnMVke_VODnfpgPgbRgI,522
252
+ invenio_vocabularies/translations/gl/LC_MESSAGES/messages.mo,sha256=-b4HnG1eMz14UWKeOaRkfjUpGqwixA8DrebBme1Wf_I,522
220
253
  invenio_vocabularies/translations/gl/LC_MESSAGES/messages.po,sha256=cOyVErQJJwScqsbD_rCXRsYOd4uoEATA9qocC0-K8kM,3975
221
- invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.mo,sha256=QhwZmkwwh4Z0_Zmk-6jZy4U0jV7IlTd2pLjI10DAb4M,533
254
+ invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.mo,sha256=m0jRfQRh9DIa61PWk5uHj_AygBV_MQubXr9Ny9rqbU8,533
222
255
  invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.po,sha256=n-OYjVPSd-P8u4mKxX0I5fCRyapgSE6BiEIC5qPRmu4,3986
223
- invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo,sha256=VSqYSmB1EpP0rnp_m2IIbzNFT0tYGvVfqccgXt-uZy0,662
256
+ invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo,sha256=lsev1T3PB4bX1XCntqCYtt4C_yhYsm6ton8rUQ7fvuc,662
224
257
  invenio_vocabularies/translations/hr/LC_MESSAGES/messages.po,sha256=Ye-5_Z5TFH9xxtid9naKo86yt5_-WmKYVT1G-uup9vo,4177
225
- invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo,sha256=9FybrJXsOQ_uxQIA53rGCZo93EpAmEk0KxsqyAJIrGM,2095
258
+ invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo,sha256=7PIICbSpFxn2ZjcKmgQelpU6KLADtUJQ1mr61IfPrIs,2095
226
259
  invenio_vocabularies/translations/hu/LC_MESSAGES/messages.po,sha256=D9I9AE_HnTrg9hb2ok44cRTYLd8JkOi8e_nQlHj8-TU,4690
227
- invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.mo,sha256=xsXry5IWnCj2PmNiSEDbMTowL2jCF-dOje78ototqts,539
260
+ invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.mo,sha256=9GtN10MiOa0CsWFlk6KqHrPcZcZmkWi5_T9qRBvETOg,539
228
261
  invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.po,sha256=_jorg7x43IAMVzrsaQYZpRysKu9j84dtmxBqqW7RrpI,3992
229
- invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo,sha256=rYKJQI9GcdQcD7zGXal0bzBsQe3yQ_m1zRCtBFCVGfY,670
262
+ invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo,sha256=PM00_2Z_xIzG1jGI5_H_xJ9wtikVRhV_lUgyNEahxRI,670
230
263
  invenio_vocabularies/translations/it/LC_MESSAGES/messages.po,sha256=dUb7fx9KsDqlPfVbw9dWoPG1HwV8NU4kmCyAS1oZ_RA,4222
231
- invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo,sha256=8_TPNOzn22rFial36PAER5uGYj-7pwd-kCRcsuojrFA,592
264
+ invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo,sha256=yDnHuB3xlKd_TomvcUo9mb9AcMWi-N_SHbWxr0Ng0q8,592
232
265
  invenio_vocabularies/translations/ja/LC_MESSAGES/messages.po,sha256=C6I7nyPhnCF2fL1YxhK2w02nQvARM7QVs4b5qo8_9I4,4107
233
- invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo,sha256=LpypxSCsmSn_tfl3wsHCaod1tSflKuCBkZ9rfCwwooE,654
266
+ invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo,sha256=zQcYMyEhLUlWtFR3VxNF_kuOB0uPZBhHqsjBQAq78d0,654
234
267
  invenio_vocabularies/translations/ka/LC_MESSAGES/messages.po,sha256=j8ZPewJC1oB5nZgpgf9bPlcgNkQ7tULnx_fV--IPHng,4148
235
- invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo,sha256=vrfXnk8Yvq1fI-ShxmN6yXATxFfy3BPyiaga6KveKe4,760
268
+ invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo,sha256=uW1avlCDrdC-Hm4P_rS8-AyNnTWfeAJFdu6Y7kLW5o4,760
236
269
  invenio_vocabularies/translations/lt/LC_MESSAGES/messages.po,sha256=9aF8nMUPtP3xK2BirfwNOHVhYeR90mpGQkAiWYjurgo,4254
237
- invenio_vocabularies/translations/ne/LC_MESSAGES/messages.mo,sha256=GxNFAk4VU_lw1HdRLL83lC5C6mI0mQDaX1M3o8vExWU,520
270
+ invenio_vocabularies/translations/ne/LC_MESSAGES/messages.mo,sha256=Vug_YgqnU6CQJnwru8MYm8D-lav7wKAk1mPk1D_tm9A,520
238
271
  invenio_vocabularies/translations/ne/LC_MESSAGES/messages.po,sha256=GjzkKRLhkhCFxxb_Lcg3NPbyYdLc_yXYh18l6GSdwp8,3973
239
- invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo,sha256=8eDnhv349D6QNG65tzP9Ue2tTyW7FJJa2qITqlPJm4M,592
272
+ invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo,sha256=EVkJI3ArgSBC4VAgX8uD7j0IV9slDb3UpYb7BqQZV4Q,592
240
273
  invenio_vocabularies/translations/no/LC_MESSAGES/messages.po,sha256=h4c-86uMKBzf-tFSwcIj05xnuNTErbpkSykWcwjaS9s,4107
241
- invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo,sha256=luenWRgBkaifONGAQDRjVxAWIQGlCZ8sylp84sSkcFA,736
274
+ invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo,sha256=pfij3wxQ6mBmH2Ai46AHi8IRBTnwAYGr7AgCY1Vg9zY,736
242
275
  invenio_vocabularies/translations/pl/LC_MESSAGES/messages.po,sha256=ZjJ5MqxvHui3pKI2MHGjwI8feC0Sp1uAkEFu35F51ak,4251
243
- invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo,sha256=bZg8EAtqO3kpApMoG1NeDrKCOuRcKOKTQ2zJ8vOXacQ,645
276
+ invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo,sha256=9Ib-0Qb21RRFGJI2lOfoDIXGX5hsxWIrUZZlQ0kRphU,645
244
277
  invenio_vocabularies/translations/pt/LC_MESSAGES/messages.po,sha256=QcIXktYDZ9PL-VPfpkzsSk-OsOLnOJKiKgcqUfcpNNM,4160
245
- invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo,sha256=nclWOtCKkNi0PO9qG-5E3r3ipP0BBFUIhA9e3PXhxU8,631
278
+ invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo,sha256=iK2aeLHmlH7M5y8SrzazGIMK4FpJy7mW-N5I5_d6TGY,631
246
279
  invenio_vocabularies/translations/ro/LC_MESSAGES/messages.po,sha256=_WJtM7YEVv_R6WujNtlMIq7otc10zVqmIql2P69cjno,4146
247
- invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo,sha256=LUgSpkJXUnAMeBxlYDHx2Oka8ayUnZAUJ6xMAgsHe8Y,740
280
+ invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo,sha256=xVydVq7R2-o7actNdUIXTTzTEE-XPTi9O6wFb2kk-UE,740
248
281
  invenio_vocabularies/translations/ru/LC_MESSAGES/messages.po,sha256=ur3fZ_LChAF30PbohmJmSrTi6oP_BYXwGzvVDvgJeqE,4255
249
- invenio_vocabularies/translations/rw/LC_MESSAGES/messages.mo,sha256=uSIELanlr4rX_YfhPOEDHa2RLL6dl1QttUEiPtzLL1w,525
282
+ invenio_vocabularies/translations/rw/LC_MESSAGES/messages.mo,sha256=2Nvld7tvM6QNX6NnhALVAyIMb8M5d6whDjKACFn1mPs,525
250
283
  invenio_vocabularies/translations/rw/LC_MESSAGES/messages.po,sha256=ETsMPjzcL0B3KkJF3V34q8iXHbAyA_9SvqLHTCUh0MI,3978
251
- invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo,sha256=G9d1ukmjPlHyxGl6F9Lmg7lKm-k-b2BNcAAI3DJPhXg,664
284
+ invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo,sha256=sKzWFYH1y_aCLdYf-k-3aYVvA6lDyUKFyYxo1k3Qkpc,664
252
285
  invenio_vocabularies/translations/sk/LC_MESSAGES/messages.po,sha256=_694ORmQV_KkDUhKDKUigT0VoxL58I7wymOevCGTgbQ,4179
253
- invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo,sha256=E_f_Ihi7lAywzaTpZ0DbLvHxhKcJzoQs4RjzZakMrgU,2001
286
+ invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo,sha256=0q64chNgXc8rAi34TG3QypXav2Er1_x7SFYt8ikB4Lw,2001
254
287
  invenio_vocabularies/translations/sv/LC_MESSAGES/messages.po,sha256=jKV1UwmA1DQdUV-WB_4pvw0TCQA06LEvXOIqfWF697w,4642
255
- invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.mo,sha256=vqG1JxDhe2gMY13w_ljwYpub3lDbjmBAXr44W8N5jxw,536
288
+ invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.mo,sha256=HEFOlAxc_htYbeIktTZkdTnJ5S_VQmqhzS-atx48jbo,536
256
289
  invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.po,sha256=pb4wo66W2jg0pssRfwLeUUG4qDPSL-XKD45bKUvc5Jo,3989
257
- invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo,sha256=uiDB_NzKkw_mgXusyfOgcdCZbKO_SxiuF2EYkSs-55Q,946
290
+ invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo,sha256=zmQ5R8zUKe2UkTM0RTdiTY_ltlFVpSfKH6FUygGugIM,946
258
291
  invenio_vocabularies/translations/tr/LC_MESSAGES/messages.po,sha256=S1uBEdS5z4u7V2iLDwCREoYnlqp-qM_UmXfIOT3WXGQ,4280
259
- invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo,sha256=3pzTGRXrY9v4bV8rqYYwPz9bDyRCyDsMJ0Lctb-5n0c,1169
292
+ invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo,sha256=dKiOsuijPMjG6u1BlI-gNoiJ3rF_ZBIVQb-84SuED3M,1169
260
293
  invenio_vocabularies/translations/uk/LC_MESSAGES/messages.po,sha256=mERndelTrdxz5m_UaNhcMgU8K5b641h5pD_67Tp8VpM,4461
261
- invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.mo,sha256=VZ-HplKQKogNKQ-EEr-P_lFcmaXO6pUTwpIiR2oWLU8,761
294
+ invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.mo,sha256=MXMqMDZJv5iBqsBRV7XUMtakXApBmI5QzVACWTT-wi4,761
262
295
  invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.po,sha256=zOhuP60Iht7r7STIkud-Bv-H7jjzIOqykmuC1mRKePU,4214
263
- invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=vkgS2xD5kQO4skJQ4DG1C8nRfEZeCkyPIu2bmqTBwpE,1797
296
+ invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=g1I5aNO8r_xaw84_60ZdwJJO-4QRhAydMXCXMAFXcuU,1797
264
297
  invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=vg8qC8ofpAdJ3mQz7mWM1ylKDpiNWXFs7rlMdSPkgKk,4629
265
- invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=SG0VK6q8VwDlLmW8PoHC4fMdbN--qttaI-k87YicaUU,600
298
+ invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=cqSm8NtMAwrP9O6qbmtkDtRT1e9D93qpsJN5X9_PPVw,600
266
299
  invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=9ACePz_EpB-LfcIJajZ2kp8Q04tcdrQLOtug162ZUss,4115
267
- invenio_vocabularies-2.3.1.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
268
- invenio_vocabularies-2.3.1.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
269
- invenio_vocabularies-2.3.1.dist-info/METADATA,sha256=qo_k63XwypLLtSUNfsaYB4Rl69xdIEX86DDgO807XpA,5687
270
- invenio_vocabularies-2.3.1.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
271
- invenio_vocabularies-2.3.1.dist-info/entry_points.txt,sha256=cBazxlQQIn53RNdPI8edCL5v1k-6fE7UU4O0QssUoBE,2309
272
- invenio_vocabularies-2.3.1.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
273
- invenio_vocabularies-2.3.1.dist-info/RECORD,,
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.41.3)
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,9 @@
1
1
  [flask.commands]
2
2
  vocabularies = invenio_vocabularies.cli:vocabularies
3
3
 
4
+ [invenio_administration.views]
5
+ vocabularies_list = invenio_vocabularies.administration.views.vocabularies:VocabulariesListView
6
+
4
7
  [invenio_assets.webpack]
5
8
  invenio_vocabularies = invenio_vocabularies.webpack:theme
6
9
 
@@ -13,15 +16,25 @@ invenio_vocabularies_affiliations = invenio_vocabularies.views:create_affiliatio
13
16
  invenio_vocabularies_awards = invenio_vocabularies.views:create_awards_blueprint_from_app
14
17
  invenio_vocabularies_ext = invenio_vocabularies.views:blueprint
15
18
  invenio_vocabularies_funders = invenio_vocabularies.views:create_funders_blueprint_from_app
19
+ invenio_vocabularies_list = invenio_vocabularies.views:create_list_blueprint_from_app
16
20
  invenio_vocabularies_names = invenio_vocabularies.views:create_names_blueprint_from_app
17
21
  invenio_vocabularies_subjects = invenio_vocabularies.views:create_subjects_blueprint_from_app
18
22
 
23
+ [invenio_base.api_finalize_app]
24
+ invenio_vocabularies = invenio_vocabularies.ext:api_finalize_app
25
+
19
26
  [invenio_base.apps]
20
27
  invenio_vocabularies = invenio_vocabularies:InvenioVocabularies
21
28
 
22
29
  [invenio_base.blueprints]
23
30
  invenio_vocabularies_ext = invenio_vocabularies.views:blueprint
24
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
+
25
38
  [invenio_db.alembic]
26
39
  invenio_vocabularies = invenio_vocabularies:alembic
27
40
 
@@ -36,6 +49,10 @@ vocabulary_model = invenio_vocabularies.records.models
36
49
  [invenio_i18n.translations]
37
50
  invenio_vocabularies = invenio_vocabularies
38
51
 
52
+ [invenio_jobs.jobs]
53
+ process_ror_affiliations = invenio_vocabularies.jobs:ProcessRORAffiliationsJob
54
+ process_ror_funders = invenio_vocabularies.jobs:ProcessRORFundersJob
55
+
39
56
  [invenio_jsonschemas.schemas]
40
57
  affiliations = invenio_vocabularies.contrib.affiliations.jsonschemas
41
58
  awards = invenio_vocabularies.contrib.awards.jsonschemas