imio.smartweb.core 1.2.37__py3-none-any.whl → 1.2.79__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.
Files changed (222) hide show
  1. imio/smartweb/core/behaviors/categorization.py +24 -0
  2. imio/smartweb/core/behaviors/configure.zcml +7 -0
  3. imio/smartweb/core/browser/controlpanel.py +43 -0
  4. imio/smartweb/core/browser/faceted/block_view.pt +4 -4
  5. imio/smartweb/core/browser/faceted/summary_view.pt +4 -4
  6. imio/smartweb/core/browser/sitemap.py +10 -3
  7. imio/smartweb/core/browser/static/icons/action-delete.svg +3 -0
  8. imio/smartweb/core/browser/static/icons/action-engagement-2.svg +4 -0
  9. imio/smartweb/core/browser/static/icons/action-panneaux.svg +3 -0
  10. imio/smartweb/core/browser/static/icons/action-vote.svg +3 -0
  11. imio/smartweb/core/browser/static/icons/categorie-attention.svg +3 -0
  12. imio/smartweb/core/browser/static/icons/categorie-infos-travaux-2.svg +4 -0
  13. imio/smartweb/core/browser/static/icons/categorie-nature.svg +3 -0
  14. imio/smartweb/core/browser/static/icons/categorie-parcs-a-conteneurs.svg +4 -0
  15. imio/smartweb/core/browser/static/icons/categorie-plus.svg +3 -0
  16. imio/smartweb/core/browser/static/icons/categorie-primes-2.svg +5 -0
  17. imio/smartweb/core/browser/static/icons/categorie-sport-natation.svg +4 -0
  18. imio/smartweb/core/browser/static/icons/organisation-ecole-sac.svg +4 -0
  19. imio/smartweb/core/browser/static/icons/organisation-scout.svg +3 -0
  20. imio/smartweb/core/browser/static/icons/reseausocial-behance.svg +3 -0
  21. imio/smartweb/core/browser/static/icons/reseausocial-linkedin.svg +3 -0
  22. imio/smartweb/core/browser/static/smartweb-edit-compiled.css +1 -1
  23. imio/smartweb/core/browser/static/smartweb-view-compiled.css +1 -1
  24. imio/smartweb/core/browser/static/src/edit.less +42 -0
  25. imio/smartweb/core/browser/static/src/view.less +109 -56
  26. imio/smartweb/core/browser/vocabulary.py +8 -3
  27. imio/smartweb/core/contents/__init__.py +2 -0
  28. imio/smartweb/core/contents/configure.zcml +1 -0
  29. imio/smartweb/core/contents/folder/block_view.pt +8 -8
  30. imio/smartweb/core/contents/folder/summary_view.pt +4 -4
  31. imio/smartweb/core/contents/pages/cirkwi/content.py +5 -0
  32. imio/smartweb/core/contents/pages/cirkwi/view.py +2 -1
  33. imio/smartweb/core/contents/pages/configure.zcml +1 -0
  34. imio/smartweb/core/contents/pages/portal_page/view.py +3 -0
  35. imio/smartweb/core/contents/pages/views.py +47 -1
  36. imio/smartweb/core/contents/publication/__init__.py +0 -0
  37. imio/smartweb/core/contents/publication/configure.zcml +5 -0
  38. imio/smartweb/core/contents/publication/content.py +23 -0
  39. imio/smartweb/core/contents/rest/base.py +9 -7
  40. imio/smartweb/core/contents/rest/directory/endpoint.py +2 -2
  41. imio/smartweb/core/contents/rest/directory/view.pt +2 -1
  42. imio/smartweb/core/contents/rest/events/content.py +13 -0
  43. imio/smartweb/core/contents/rest/events/endpoint.py +5 -3
  44. imio/smartweb/core/contents/rest/events/view.pt +5 -1
  45. imio/smartweb/core/contents/rest/events/view.py +12 -0
  46. imio/smartweb/core/contents/rest/news/content.py +6 -0
  47. imio/smartweb/core/contents/rest/news/endpoint.py +4 -2
  48. imio/smartweb/core/contents/rest/news/view.pt +4 -1
  49. imio/smartweb/core/contents/rest/news/view.py +8 -0
  50. imio/smartweb/core/contents/rest/utils.py +0 -1
  51. imio/smartweb/core/contents/rest/view.py +4 -0
  52. imio/smartweb/core/contents/sections/common_templates/carousel.pt +5 -1
  53. imio/smartweb/core/contents/sections/common_templates/table.pt +18 -4
  54. imio/smartweb/core/contents/sections/configure.zcml +18 -0
  55. imio/smartweb/core/contents/sections/contact/content.py +2 -2
  56. imio/smartweb/core/contents/sections/contact/macros.pt +28 -3
  57. imio/smartweb/core/contents/sections/contact/utils.py +2 -0
  58. imio/smartweb/core/contents/sections/contact/view.py +28 -12
  59. imio/smartweb/core/contents/sections/events/content.py +12 -4
  60. imio/smartweb/core/contents/sections/events/view.py +20 -2
  61. imio/smartweb/core/contents/sections/external_content/view.pt +4 -4
  62. imio/smartweb/core/contents/sections/external_content/views.py +6 -4
  63. imio/smartweb/core/contents/sections/files/content.py +7 -1
  64. imio/smartweb/core/contents/sections/files/view.py +43 -12
  65. imio/smartweb/core/contents/sections/links/view.py +5 -0
  66. imio/smartweb/core/contents/sections/macros.pt +26 -0
  67. imio/smartweb/core/contents/sections/news/content.py +11 -3
  68. imio/smartweb/core/contents/sections/news/view.py +20 -2
  69. imio/smartweb/core/contents/sections/text/views.py +2 -0
  70. imio/smartweb/core/contents/sections/views.py +73 -10
  71. imio/smartweb/core/interfaces.py +4 -0
  72. imio/smartweb/core/profiles/default/metadata.xml +1 -1
  73. imio/smartweb/core/profiles/default/taxonomies/page_category.xml +16 -0
  74. imio/smartweb/core/profiles/default/taxonomies/procedure_category.xml +26 -0
  75. imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml +1 -0
  76. imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml +1 -0
  77. imio/smartweb/core/profiles/default/types/imio.smartweb.Publication.xml +38 -0
  78. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml +1 -0
  79. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml +2 -0
  80. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml +1 -0
  81. imio/smartweb/core/profiles/default/types.xml +1 -0
  82. imio/smartweb/core/profiles/icons/basic/registry.xml +120 -0
  83. imio/smartweb/core/rest/authentic_sources.py +17 -2
  84. imio/smartweb/core/subscribers.py +48 -0
  85. imio/smartweb/core/subscribers.zcml +12 -0
  86. imio/smartweb/core/tests/resources/json_iadeliberations_institutions.json +60 -0
  87. imio/smartweb/core/tests/resources/json_iadeliberations_publication.json +105 -0
  88. imio/smartweb/core/tests/resources/json_iadeliberations_publications.json +270 -0
  89. imio/smartweb/core/tests/resources/json_rest_events.json +6 -2
  90. imio/smartweb/core/tests/resources/json_rest_news.json +2 -2
  91. imio/smartweb/core/tests/resources/json_rest_specific_events.json +1 -1
  92. imio/smartweb/core/tests/test_htmx_in_sections.py +131 -0
  93. imio/smartweb/core/tests/test_iadeliberations.py +136 -0
  94. imio/smartweb/core/tests/test_icons.py +1 -1
  95. imio/smartweb/core/tests/test_rest.py +58 -17
  96. imio/smartweb/core/tests/test_section_contact.py +42 -10
  97. imio/smartweb/core/tests/test_section_events.py +28 -5
  98. imio/smartweb/core/tests/test_section_external_content.py +28 -2
  99. imio/smartweb/core/tests/test_section_news.py +30 -8
  100. imio/smartweb/core/tests/test_sections.py +17 -0
  101. imio/smartweb/core/tests/test_vocabularies.py +60 -3
  102. imio/smartweb/core/tests/test_vocabulary.py +43 -0
  103. imio/smartweb/core/upgrades/configure.zcml +108 -0
  104. imio/smartweb/core/upgrades/profiles/1055_to_1056/types/imio.smartweb.SectionFiles.xml +12 -0
  105. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.EventsView.xml +11 -0
  106. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.NewsView.xml +11 -0
  107. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionEvents.xml +11 -0
  108. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionNews.xml +11 -0
  109. imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.cfg +9 -0
  110. imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.xml +73 -0
  111. imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.cfg +9 -0
  112. imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.xml +118 -0
  113. imio/smartweb/core/upgrades/profiles/1058_to_1059/registry/linkedin-icon.xml +126 -0
  114. imio/smartweb/core/upgrades/profiles/1059_to_1060/registry/iadeliberation.xml +9 -0
  115. imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.Publication.xml +38 -0
  116. imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.SectionFiles.xml +11 -0
  117. imio/smartweb/core/upgrades/profiles/1060_to_1061/types.xml +4 -0
  118. imio/smartweb/core/upgrades/profiles/1060_to_1061/workflows.xml +6 -0
  119. imio/smartweb/core/utils.py +33 -2
  120. imio/smartweb/core/viewlets/configure.zcml +23 -1
  121. imio/smartweb/core/viewlets/footer.pt +5 -0
  122. imio/smartweb/core/viewlets/footer.py +5 -0
  123. imio/smartweb/core/viewlets/htmx.py +15 -0
  124. imio/smartweb/core/viewlets/htmx_js_header.pt +64 -0
  125. imio/smartweb/core/viewlets/ogptags.py +4 -3
  126. imio/smartweb/core/viewlets/social.py +23 -0
  127. imio/smartweb/core/vocabularies.py +65 -3
  128. imio/smartweb/core/vocabularies.zcml +18 -0
  129. imio/smartweb/core/webcomponents/build/1c1605a5fe9a2b10a88f.png +1 -0
  130. imio/smartweb/core/webcomponents/build/524db40e119aa11f4478.png +1 -0
  131. imio/smartweb/core/webcomponents/build/57d3b7cb1ab874660b39.svg +1 -0
  132. imio/smartweb/core/webcomponents/build/6cf03871df23ed2ee8b3.png +1 -0
  133. imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css +1 -1
  134. imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css +1 -1
  135. imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css +1 -0
  136. imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css +1 -1
  137. imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +1 -1
  138. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +1 -1
  139. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt +10 -8
  140. imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +2 -1
  141. imio/smartweb/core/webcomponents/build/js/{568.smartweb-webcomponents-compiled.js.LICENSE.txt → 373.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -4
  142. imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
  143. imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js +2 -0
  144. imio/smartweb/core/webcomponents/build/js/{674.smartweb-webcomponents-compiled.js.LICENSE.txt → 499.smartweb-webcomponents-compiled.js.LICENSE.txt} +1 -8
  145. imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js +1 -1
  146. imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js +2 -0
  147. imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js +2 -0
  148. imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js.LICENSE.txt +32 -0
  149. imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -0
  150. imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
  151. imio/smartweb/core/webcomponents/build/js/{568.smartweb-webcomponents-compiled.js → 963.smartweb-webcomponents-compiled.js} +2 -2
  152. imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt +3 -0
  153. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
  154. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt +11 -14
  155. imio/smartweb/core/webcomponents/package.json +42 -40
  156. imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx +146 -79
  157. imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +415 -351
  158. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +95 -62
  159. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +328 -168
  160. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx +21 -4
  161. imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx +213 -100
  162. imio/smartweb/core/webcomponents/src/components/Annuaire/index.js +1 -1
  163. imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx +76 -33
  164. imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx +604 -377
  165. imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx +29 -4
  166. imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +162 -88
  167. imio/smartweb/core/webcomponents/src/components/Events/Events.scss +496 -378
  168. imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx +259 -91
  169. imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx +62 -55
  170. imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss +68 -17
  171. imio/smartweb/core/webcomponents/src/components/Filters/IamData.jsx +42 -0
  172. imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss +229 -0
  173. imio/smartweb/core/webcomponents/src/components/Filters/PublicTargetData.jsx +94 -0
  174. imio/smartweb/core/webcomponents/src/components/Filters/SelectStyles.js +58 -0
  175. imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.jsx +149 -0
  176. imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.scss +70 -0
  177. imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx +139 -83
  178. imio/smartweb/core/webcomponents/src/components/News/News.jsx +133 -67
  179. imio/smartweb/core/webcomponents/src/components/News/News.scss +170 -127
  180. imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx +76 -44
  181. imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +261 -188
  182. imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx +48 -9
  183. imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx +21 -10
  184. imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx +21 -10
  185. imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx +8 -9
  186. imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx +23 -12
  187. imio/smartweb/core/webcomponents/src/components/Search/Search.jsx +7 -6
  188. imio/smartweb/core/webcomponents/src/components/Search/Search.scss +115 -96
  189. imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx +12 -3
  190. imio/smartweb/core/webcomponents/src/components/Search/index.js +1 -1
  191. imio/smartweb/core/webcomponents/src/hooks/ScrollContext.jsx +3 -0
  192. imio/smartweb/core/webcomponents/src/hooks/useAxios.js +3 -3
  193. imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js +1 -2
  194. imio/smartweb/core/webcomponents/src/index.scss +255 -211
  195. imio/smartweb/core/webcomponents/src/utils/Map.jsx +26 -19
  196. imio/smartweb/core/webcomponents/src/utils/Map.scss +2 -2
  197. imio/smartweb/core/webcomponents/src/utils/translation.js +129 -9
  198. imio.smartweb.core-1.2.79-py3.8-nspkg.pth +2 -0
  199. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/METADATA +413 -10
  200. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/RECORD +206 -160
  201. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/WHEEL +1 -1
  202. imio/smartweb/core/webcomponents/build/assets/location-bla.1423bcce16ddcb21141430cac1428dc1.svg +0 -1
  203. imio/smartweb/core/webcomponents/build/assets/next-react-white.819cb069ac8eec300a9db6a7707712d6.svg +0 -1
  204. imio/smartweb/core/webcomponents/build/assets/next-react.17bc43ff4a6a86f4520f5782f6a89a72.svg +0 -1
  205. imio/smartweb/core/webcomponents/build/assets/search.57bdbf5b191499cd77514097d1c4972c.svg +0 -1
  206. imio/smartweb/core/webcomponents/build/css/686.smartweb-webcomponents-compiled.css +0 -1
  207. imio/smartweb/core/webcomponents/build/js/209.smartweb-webcomponents-compiled.js +0 -2
  208. imio/smartweb/core/webcomponents/build/js/674.smartweb-webcomponents-compiled.js +0 -2
  209. imio/smartweb/core/webcomponents/build/js/686.smartweb-webcomponents-compiled.js +0 -1
  210. imio/smartweb/core/webcomponents/build/js/804.smartweb-webcomponents-compiled.js +0 -1
  211. imio/smartweb/core/webcomponents/src/assets/facebook-news.svg +0 -1
  212. imio/smartweb/core/webcomponents/src/assets/location-bla.svg +0 -1
  213. imio/smartweb/core/webcomponents/src/assets/next-react.svg +0 -1
  214. imio/smartweb/core/webcomponents/src/assets/search.svg +0 -1
  215. imio/smartweb/core/webcomponents/src/assets/skeleton.svg +0 -1
  216. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/download.svg +0 -1
  217. imio.smartweb.core-1.2.37-py3.10-nspkg.pth +0 -3
  218. /imio/smartweb/core/webcomponents/build/js/{209.smartweb-webcomponents-compiled.js.LICENSE.txt → 824.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  219. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/LICENSE.GPL +0 -0
  220. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/LICENSE.rst +0 -0
  221. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/namespace_packages.txt +0 -0
  222. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/top_level.txt +0 -0
@@ -1,22 +1,23 @@
1
- imio.smartweb.core-1.2.37-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
1
+ imio.smartweb.core-1.2.79-py3.8-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
2
2
  imio/smartweb/core/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
3
3
  imio/smartweb/core/config.py,sha256=BUgfvh4hCaw0onCYAG4gQI1O4hZ-GzXWEltdHi4YLIs,337
4
4
  imio/smartweb/core/configure.zcml,sha256=PeC4rF--rF6MfVQ0NzggQrZWIl35oPtJdEhvQwGxhhI,1459
5
5
  imio/smartweb/core/indexers.py,sha256=Lv1lHWFzM71ju822N8y7w61GDOyi6qmUbveZNI1tCz4,3887
6
6
  imio/smartweb/core/indexers.zcml,sha256=XHvKTkNcF5mkX-dVwRbjNsrBwIwwqa2Cm81PoXBqtow,968
7
- imio/smartweb/core/interfaces.py,sha256=VA58befy9GhyfmHmwoI40wk06U3W_LG07e8oKat4a3Y,1170
7
+ imio/smartweb/core/interfaces.py,sha256=ioMwBC-HdOyz35HQGMZTksaJf8GLS2hbRz2wjvB_r5w,1217
8
8
  imio/smartweb/core/permissions.zcml,sha256=ZyBEARyO8NAq7tKFTb3G1FqEWERT1mQQ6vCVzji1ci8,1777
9
9
  imio/smartweb/core/profiles.zcml,sha256=H9crlNrI8zLxgmkpbkhkD3Ti5LRF8Zutk3AJXNBpvw0,2299
10
10
  imio/smartweb/core/setuphandlers.py,sha256=k1K8-ezP2gELwCNM5An2bBwQJjAKeS0rYtr2-q_InK8,932
11
- imio/smartweb/core/subscribers.py,sha256=9I6fAJj1FhtkYQZ2Ug_3Bl-p_rn1Nf9_BBHo_iU6QxI,3940
12
- imio/smartweb/core/subscribers.zcml,sha256=48jHmwwnW37LFCN8HFlxdCe8CgNohYRY_pvbKYa2Gww,1016
11
+ imio/smartweb/core/subscribers.py,sha256=zOmwTw0XvE6_bdoZI7qQln_W__7MxXCnKh6QwNK65x4,5937
12
+ imio/smartweb/core/subscribers.zcml,sha256=BnrxZp4AfsRYreYHsJJxKgPQZJ-wpNM2XnDTuDUbBkA,1616
13
13
  imio/smartweb/core/testing.py,sha256=t0Y3t3FXX2RjgklcRzHT37AjKbMKL3ZjjT3d2UhQm7A,3636
14
14
  imio/smartweb/core/testing.zcml,sha256=VyKjWW2QHYuUYKkGUvtsdFI_Pa7Wcp1yBBDla112eMc,172
15
- imio/smartweb/core/utils.py,sha256=2hE3RmiEV8dO5ZrevlvTmf8BhnmMZIV4QkYuceWWkDY,6577
16
- imio/smartweb/core/vocabularies.py,sha256=dZTt0hTNKwnlBNFDtKEc-10ISDXeMB9pxZOJx10GvQA,20587
17
- imio/smartweb/core/vocabularies.zcml,sha256=lqiCmaaJwMcO18fWlrtdpI-1g3AZ-Krh9mXRTt1y8o4,5264
15
+ imio/smartweb/core/utils.py,sha256=krc0msUa9cHIALgT1RpqMXAslusg3FswRy4aY5o6oIo,7597
16
+ imio/smartweb/core/vocabularies.py,sha256=ZzdnK7m0dPogoKSrtdTjsxCQjaSqgVDAL9YPWMOHync,22905
17
+ imio/smartweb/core/vocabularies.zcml,sha256=KSH7JWlAJtKawLvfmsztZzE_AK1JR6B5udY6tleY2cQ,5904
18
18
  imio/smartweb/core/behaviors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- imio/smartweb/core/behaviors/configure.zcml,sha256=3M78L3V1Sdp5AjPscgxHEo79j9ZqiR55ix9QI43KJM0,1677
19
+ imio/smartweb/core/behaviors/categorization.py,sha256=a5i8pYagdTcEG43A1NLs4SGF42PCAUFn8IRUq1pFqpM,828
20
+ imio/smartweb/core/behaviors/configure.zcml,sha256=4HimRN4xacRbUaCOiOiv0YgcWbsLMu7X4yGrdAeKaSE,1909
20
21
  imio/smartweb/core/behaviors/listing.py,sha256=x1L58k4RpS5yB7-f36fEC6xwyg7Ci8LR-5wDh5wVD2c,760
21
22
  imio/smartweb/core/behaviors/minisite.py,sha256=sDo74qYt8vWJjrfr2JQSTDXocUVwehGIKAc9nWlj-Fw,1865
22
23
  imio/smartweb/core/behaviors/orientation.py,sha256=WrW9BeT9KICl4qmkGzplLepJ5J_rMkosgDvOFn534QA,557
@@ -24,14 +25,14 @@ imio/smartweb/core/behaviors/quickaccess.py,sha256=j18T39KcbiJErpidMM8wH6i4XjEIZ
24
25
  imio/smartweb/core/behaviors/subsite.py,sha256=O2aJHl3Jj9WTpGBmNJaoia-PAtb7aSHpCRanvO1JE8k,1707
25
26
  imio/smartweb/core/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
27
  imio/smartweb/core/browser/configure.zcml,sha256=jP5H_q7e_NzbaT13UWovdi04IxmUg4Ecrdh8ZDbP_tE,3935
27
- imio/smartweb/core/browser/controlpanel.py,sha256=6HXq01oq9ndFc4fNx5Dv49TG92OiCKoK7ovQQUVNQkA,5361
28
+ imio/smartweb/core/browser/controlpanel.py,sha256=OF3SeohnRqq0RcnBmUnPqOx5EN58NQ-5fBegdeDdzyc,6893
28
29
  imio/smartweb/core/browser/forms.py,sha256=_6Z0x7yVeA5JaW4IwpYkX7bTIbw0UskgvtGfNDtMsrI,1091
29
30
  imio/smartweb/core/browser/icons.py,sha256=LFBCYTfynp4qNX2OQuNmMTOUEcJv-oQ8Izu6opE3o7A,2065
30
31
  imio/smartweb/core/browser/layout.py,sha256=wvo_Q2dYg1Yd8wOdYSfPg29NPESy9ndAGl6z3r5kxnY,2066
31
32
  imio/smartweb/core/browser/redirect_to_main_react_view.py,sha256=vzJwAet0P2uoMhlOtNjMy02e4LQw9DsHb6mRgBXGOB8,1668
32
- imio/smartweb/core/browser/sitemap.py,sha256=7fnBtlJN80LOzpL4OuJstPv0GwsO-WnMzsaL9F_qS6c,5790
33
+ imio/smartweb/core/browser/sitemap.py,sha256=voch7Bvchz3NTCm9zUC75sShCLD4KunLKyWA6OtaGmE,5962
33
34
  imio/smartweb/core/browser/utils.py,sha256=ccA2DVA994S3t92_fQeMSFIGfAblE9C1vw78ZFUAJiU,3218
34
- imio/smartweb/core/browser/vocabulary.py,sha256=CHQeWZwvjDeoPLZS6C89ucfGGGnxBbAYpVu31_n7TSA,1142
35
+ imio/smartweb/core/browser/vocabulary.py,sha256=OBoU4mxGLKtzGD5mtsN-yV7yeMi4HdAQZVI4n1b9Myo,1312
35
36
  imio/smartweb/core/browser/banner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
37
  imio/smartweb/core/browser/banner/configure.zcml,sha256=Z2M7gkRDdmV4zRekUhyuJ-_jvbIbhgTj2Zq674iKvUE,389
37
38
  imio/smartweb/core/browser/banner/settings.py,sha256=jfD705_q8MAHUJbjjcfcPj1f98Rahiz_Mks2Ctx5kMA,947
@@ -40,12 +41,12 @@ imio/smartweb/core/browser/dashboards/configure.zcml,sha256=hPgoJ_g5KTJBrr-o-3gd
40
41
  imio/smartweb/core/browser/dashboards/plausible.pt,sha256=VlR0b3jXzkG_Qdkx51hOUVI2-LCMStfOFdRhSoD14oQ,1107
41
42
  imio/smartweb/core/browser/dashboards/plausible.py,sha256=LAJo3_-wNiRuEhNbFLDGr2zW44dhMn-uSb3go5BeI1g,631
42
43
  imio/smartweb/core/browser/faceted/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
- imio/smartweb/core/browser/faceted/block_view.pt,sha256=IIYWx4vGN9ZZavN_2oDnX3ca7LQwv0_30aYjz57TPVE,1987
44
+ imio/smartweb/core/browser/faceted/block_view.pt,sha256=gyVm3a_gH2IA0nkXcSRrDY0M-3AoxwI0OvBv4HhWllE,1983
44
45
  imio/smartweb/core/browser/faceted/configure.zcml,sha256=JFOMhQLPWgsbfYWbO_-EGkG8u5GLT-s_DgGAH_cFHd8,3289
45
46
  imio/smartweb/core/browser/faceted/macros.pt,sha256=rme7BdEafmj2RvpCbN3aWU5QoJm4lgFk70mCVeSUbMM,2951
46
47
  imio/smartweb/core/browser/faceted/map.pt,sha256=rimXOnJ82hAcDL78lc5z9mZFFkfP7R9wHUnNycOSG2E,4434
47
48
  imio/smartweb/core/browser/faceted/map.py,sha256=74Rhz7cD_uuQq4YfHdInAn3cv4DKQ9sc8jDCQ3odVQg,1504
48
- imio/smartweb/core/browser/faceted/summary_view.pt,sha256=_Ho-NJDwfwpnsdng28nO8Gb9KhOPoe1QhvIWBVTzjUw,1931
49
+ imio/smartweb/core/browser/faceted/summary_view.pt,sha256=cHuFW1s88tINcCqaEKMhLGB8b6IX9L35rBWQ_YGA0aQ,1927
49
50
  imio/smartweb/core/browser/faceted/views.py,sha256=B859XtKHiEZCl9QlEXmEtPiC3vOaDaO-zJWQozo7DBo,1460
50
51
  imio/smartweb/core/browser/faceted/widgets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
52
  imio/smartweb/core/browser/faceted/widgets/configure.zcml,sha256=azfsDnDUrYBRkozk-G__GlNq87cl61kxOuMOSyBd5-k,449
@@ -74,24 +75,29 @@ imio/smartweb/core/browser/search/search.py,sha256=vc2FDwsCZSqLH3N0deR_r9aqsJB6I
74
75
  imio/smartweb/core/browser/static/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
76
  imio/smartweb/core/browser/static/Makefile,sha256=M6dYqYEKwHzwyCn3d8RWpbwVJmfLSr2D0Zvqyl7fqFM,350
76
77
  imio/smartweb/core/browser/static/package.json,sha256=rJeZEnDqQvcPTakkRPOZCALk8HBKA-3BOb4Kjwi12vs,695
77
- imio/smartweb/core/browser/static/smartweb-edit-compiled.css,sha256=2MJ1HREUQxeXJdG_dlctPKcEgV1om7VSpAVZ7X_zL3w,863
78
+ imio/smartweb/core/browser/static/smartweb-edit-compiled.css,sha256=3C1_U0jw_1cq97onQlsCWulezGUM4r__WmB1QqCdr8E,5120
78
79
  imio/smartweb/core/browser/static/smartweb-edit-compiled.js,sha256=8apUM0A48d1cDvNbj3eL82sJzzbI3gDurkV48uGOOpg,1222
79
80
  imio/smartweb/core/browser/static/smartweb-swiperconfig-compiled.js,sha256=N2b-d5pLMqI66U5ORf0E8UvjJqcnYpfe8QmHjf46Qzs,608
80
- imio/smartweb/core/browser/static/smartweb-view-compiled.css,sha256=rcpadTevQ4zYZak9WIERRGRJNm0jWG9HJy-ReycSdLs,2702
81
+ imio/smartweb/core/browser/static/smartweb-view-compiled.css,sha256=tqjBhYC2NqZEUk6Q5ApLZNRkCRUgoG-qdfEJIq9nWEA,2961
81
82
  imio/smartweb/core/browser/static/smartweb-view-compiled.js,sha256=73bvXpnpueWVKAqaS5CFFHbQnD6RuixH58SaRJP_Gh0,2162
82
83
  imio/smartweb/core/browser/static/spotlight-bundle.js,sha256=MxZ4E6qmRiV1eojklqYnKc9J7q1p1YeCWYoCfXNhZmA,19615
83
84
  imio/smartweb/core/browser/static/swiper-bundle.min.css,sha256=_7BNAPE6sDlKRWoyA9Hax0ffAel0ai6vNtp51OUHFAA,17908
84
85
  imio/smartweb/core/browser/static/swiper-bundle.min.js,sha256=p6RltqiN_aHIURwYhWy5LgVbYRTHIHIkf6A_kXgf4vs,137031
85
86
  imio/smartweb/core/browser/static/webpack.config.js,sha256=_1xZiTfnWS8Y4xIEM1HAD_rnmCZL3rlNYveBy6KHues,1079
87
+ imio/smartweb/core/browser/static/icons/action-delete.svg,sha256=FTerCicR_P8b7ilnaACjOr4oQJ0g1Bu4j3OOzAk76vw,729
86
88
  imio/smartweb/core/browser/static/icons/action-e-guichet.svg,sha256=FTtNQMwbNom27HS-J5SHKScaArI3RglBxfz0JI4Rs70,885
87
89
  imio/smartweb/core/browser/static/icons/action-email.svg,sha256=y7AP7a3-B60D0dpAw7nmfMjGKYKRUUdJauxR5mO9L6o,271
90
+ imio/smartweb/core/browser/static/icons/action-engagement-2.svg,sha256=5bHi3lpAqzfBjfjeKhTSDl5OEw6viuPKPEOExc7l-I4,2595
88
91
  imio/smartweb/core/browser/static/icons/action-engagement.svg,sha256=fdAJf8KWyBI4YtvhKu0kVXMtgvr7j1VA7Hzci2342mw,1367
89
92
  imio/smartweb/core/browser/static/icons/action-nous-contacter.svg,sha256=Ct3xUOB_JOafmvkCxAJjWeXwDIQjeBK8FwUqo4UmKik,480
90
93
  imio/smartweb/core/browser/static/icons/action-nous-rejoindre.svg,sha256=J1CIr2OgmyHkdgbj3dwG75rxGpcB0UXwx5BIuLvw8Nc,407
91
94
  imio/smartweb/core/browser/static/icons/action-organiser-un-evenement.svg,sha256=2Zjxv_wvibsHFMy0cNAgjXGK08BG7FsNrx7Q89RuU3o,304
95
+ imio/smartweb/core/browser/static/icons/action-panneaux.svg,sha256=SkN83J3V8M5DB9esjdnUm07Q6TdQpBAq3Q45Q7Uq7Yw,371
92
96
  imio/smartweb/core/browser/static/icons/action-signaler-un-probleme.svg,sha256=A7i58x78auzCw6G9WmxYN7QYFQ8TNwi-vgXswgYgOE4,784
93
97
  imio/smartweb/core/browser/static/icons/action-voir-plan.svg,sha256=n_qVodwK4hLaqXEj8BzEL7HZ88eCJiZ11LDOoG2ibCI,411
98
+ imio/smartweb/core/browser/static/icons/action-vote.svg,sha256=BpGy7h8aMhqx9jEZcxacmzcG_OqiQXcRxDozHGjA4ZM,1469
94
99
  imio/smartweb/core/browser/static/icons/categorie-associations.svg,sha256=A0QQ07Cu2oKS9GaG9E5qydH2fvGt-P1nrzd39IT_wEY,310
100
+ imio/smartweb/core/browser/static/icons/categorie-attention.svg,sha256=DKcOSxq6wvDqJ1yjHf8-5mT5uOBgCgNDeddd9xwEOX0,995
95
101
  imio/smartweb/core/browser/static/icons/categorie-avis-et-enquetes.svg,sha256=Db7STV9L7SkIr5A0dYWIjHEU7RWefxj6htm81kW-CE4,310
96
102
  imio/smartweb/core/browser/static/icons/categorie-cinema.svg,sha256=ykZ-EotLG-RfjrSxPBDjAaKHx82GfH66PPD-oZbcYTs,455
97
103
  imio/smartweb/core/browser/static/icons/categorie-commerce.svg,sha256=G8oowEydjc35XKeFpPFGOB6sdY4i2OnatuAP8UwAEuc,1798
@@ -103,14 +109,20 @@ imio/smartweb/core/browser/static/icons/categorie-enseignement.svg,sha256=Fbv8_h
103
109
  imio/smartweb/core/browser/static/icons/categorie-environnement-gestion-des-dechets.svg,sha256=-eFjnoxqEfv7H8x9PL3W8VQPnT4BrzWFQX9sO_6l_1o,249
104
110
  imio/smartweb/core/browser/static/icons/categorie-exposition.svg,sha256=C2KtZ3Lblv6RFlc6_FQH8xrr1NeRidPeiDDBSwh1AOc,281
105
111
  imio/smartweb/core/browser/static/icons/categorie-horaires.svg,sha256=7vS7qtih8X4aNQ14H8tyNW7AEws6eXU97GQJFyeX9ng,245
112
+ imio/smartweb/core/browser/static/icons/categorie-infos-travaux-2.svg,sha256=gk14rdqtWvwLHr2oq5JkisdaKWyXbtFPdB7Cs2BHS6A,2451
106
113
  imio/smartweb/core/browser/static/icons/categorie-infos-travaux.svg,sha256=irTNcYhFZMDhmgj0tLd_cB3MOAFvjwVogW_rBgVOM0Y,465
107
114
  imio/smartweb/core/browser/static/icons/categorie-mandataires.svg,sha256=u4u5lEr8wPiwdOAe4a5cM97R1e0-2QT0Wn3ITgy_zJA,689
108
115
  imio/smartweb/core/browser/static/icons/categorie-mobilite.svg,sha256=mZHma8Mo90GHszp-NzeWEzRFaLi1sLNAIE5Ot4xzTkk,558
109
116
  imio/smartweb/core/browser/static/icons/categorie-mon-dossier.svg,sha256=etM7HIevvElfn6gXhLX00x4LGVNi-cpcCW-Q1zJy4PI,314
117
+ imio/smartweb/core/browser/static/icons/categorie-nature.svg,sha256=GMBR2t1NKx9ss-Zde9CLwuNBzdvbuJAPgGYEN0NJyAg,2962
110
118
  imio/smartweb/core/browser/static/icons/categorie-parc-de-stationnement.svg,sha256=vyONUoaymfMP8p0E9z6r22hndW502NAZs6QVKSQmnoE,330
119
+ imio/smartweb/core/browser/static/icons/categorie-parcs-a-conteneurs.svg,sha256=6skhUjwsusvP6UIBfl5sVB2Xl6tRx3AcsSkeZLdwWDs,4312
111
120
  imio/smartweb/core/browser/static/icons/categorie-parcs-et-jardins.svg,sha256=hgCYAMe2AJII59REHltl9lmUlZBdw-ErINCh3zDcZJQ,416
121
+ imio/smartweb/core/browser/static/icons/categorie-plus.svg,sha256=6U2hjmhjcwjPLyRiKw0V2ZqTD_DoqnG3mcsK-FufFy0,301
122
+ imio/smartweb/core/browser/static/icons/categorie-primes-2.svg,sha256=jee81OpcTYGdJ9nhDjDl1Uu1_r31i6McGA2C6jl6T3U,2460
112
123
  imio/smartweb/core/browser/static/icons/categorie-primes.svg,sha256=6_fBTsxmkDDC7cFpEFCTvRupFeT8HAEVmqDpFV0XRo4,659
113
124
  imio/smartweb/core/browser/static/icons/categorie-sport-courir.svg,sha256=KOQHM5G2ZXmdjz4ef7nFBLTAcUPhKy87Umk1SqB9uBQ,394
125
+ imio/smartweb/core/browser/static/icons/categorie-sport-natation.svg,sha256=di7fWq3N4lGWH_sWlDfnjCPNDzRKu_D7OR6z5-_XgGE,1886
114
126
  imio/smartweb/core/browser/static/icons/categorie-sport-trophee.svg,sha256=QpZegqQu6i5wNCByCgayykvYgGXpAsd2xAFhmBAoBmg,514
115
127
  imio/smartweb/core/browser/static/icons/categorie-sport-velo.svg,sha256=YgTcWxhTMfDp32hD2uxwmy9QdQoT5W86AbdortIX6wg,925
116
128
  imio/smartweb/core/browser/static/icons/categorie-theatre.svg,sha256=Cs9yOXamSR92OuRp_pJBpKjAdrOz2OjUFWbRD2DjreY,713
@@ -120,12 +132,16 @@ imio/smartweb/core/browser/static/icons/organisation-bibliotheque.svg,sha256=oh-
120
132
  imio/smartweb/core/browser/static/icons/organisation-centre-sportif.svg,sha256=oZn6Y2mvN7UF37UelJPkmveUO_MXv8yvZ32ZqciAzeI,736
121
133
  imio/smartweb/core/browser/static/icons/organisation-cpas.svg,sha256=SzhAxaw2E5IVixx8VBE3LQGJOBeLrQs21RSiCeeHewM,876
122
134
  imio/smartweb/core/browser/static/icons/organisation-ecole-des-arts.svg,sha256=DenXpQz17YwKrU9dDrB0L48r7BdHjxyogT_Ec-vB0UE,622
135
+ imio/smartweb/core/browser/static/icons/organisation-ecole-sac.svg,sha256=3LyFdg8NbQKwXaejQB7U_uxVv4qS7Oku2RWwCwUoKHY,2808
123
136
  imio/smartweb/core/browser/static/icons/organisation-ecole.svg,sha256=kY8rN-5i_-i5mOLWQveqpWxyr8t3K-ZCMKMTN5CvgdQ,275
124
137
  imio/smartweb/core/browser/static/icons/organisation-mobilite.svg,sha256=7iEtM60EUh8-Fv_IEntGjR3R8jeiraadk00mdBo2HnM,614
125
138
  imio/smartweb/core/browser/static/icons/organisation-police.svg,sha256=BXC-V7UNy4PmFtZiphwxCA4Fpbrk165Rpo3wrw0SWdU,451
139
+ imio/smartweb/core/browser/static/icons/organisation-scout.svg,sha256=GR08043eejBQCLGda18UlhRF7PWrwkFAR4Q8MD0-8SM,2698
140
+ imio/smartweb/core/browser/static/icons/reseausocial-behance.svg,sha256=ndTHe0XGtphdmnX_gTrshRh6JCqe5bNVHm7Q2lBRybU,1507
126
141
  imio/smartweb/core/browser/static/icons/reseausocial-facebook-pouce.svg,sha256=F0jClbR8JIbDIqmCl6-swjZ-I-kPcZ6XVfA012W39uo,2086
127
142
  imio/smartweb/core/browser/static/icons/reseausocial-facebook.svg,sha256=DxRzE5pKALCmz3RAbqHGOqGfx3CUOqhmiCg2OFNHQuo,433
128
143
  imio/smartweb/core/browser/static/icons/reseausocial-instagram.svg,sha256=COdyWpY9JS71JGpyimVSrZ2dLRb8-qi6Qp7PGmFCNGw,1999
144
+ imio/smartweb/core/browser/static/icons/reseausocial-linkedin.svg,sha256=ExEkpCxssZKr-X5zPQvAGd4XevezaNa4AizQEjeXlZU,668
129
145
  imio/smartweb/core/browser/static/icons/reseausocial-twitter.svg,sha256=vHQ46G4DyVHUIGI5hAYJTOpHlHU7rix0TFJqPo00Wbg,306
130
146
  imio/smartweb/core/browser/static/icons/reseausocial-vimeo.svg,sha256=FUHGY9jKDJBfVXqdUh45L7U5ZR3yNZQH2XA5HrnJND4,838
131
147
  imio/smartweb/core/browser/static/icons/reseausocial-youtube.svg,sha256=PfzBC4yti-0ufuUAkiav__cfhYM_wHtL17ckIo8_SOU,554
@@ -133,16 +149,16 @@ imio/smartweb/core/browser/static/icons/vue-actualites.svg,sha256=M0LnT9Fp4uIQOG
133
149
  imio/smartweb/core/browser/static/icons/vue-agenda.svg,sha256=ZaIUxfdRIYuNUwp2wKmdC1Q1g7uhjaGaxVXCooi-zkQ,336
134
150
  imio/smartweb/core/browser/static/icons/vue-annuaire.svg,sha256=jCoOGU6nGabF_mGAF5hsge1OWZbRKRtYHfjmzEJhzS0,497
135
151
  imio/smartweb/core/browser/static/src/edit.js,sha256=8o6qgeMJ_kDyq94HJ6xB_junqSY-ruH11uguxdkkST0,1978
136
- imio/smartweb/core/browser/static/src/edit.less,sha256=ls4apgCMkJaagk8ePsOl6HmQpOVaPdCBaGMkdocZn2o,1089
152
+ imio/smartweb/core/browser/static/src/edit.less,sha256=uiqNkhAIucG9q4Gz1PJyt2GkYsvcOgkWKhcTUj2BAJU,5408
137
153
  imio/smartweb/core/browser/static/src/swiper-config.js,sha256=PK5Uw_vbHcXiyt3R8Gvdq2geNX6LEdQB2QTWTcKSqWg,1285
138
154
  imio/smartweb/core/browser/static/src/view.js,sha256=c8J_VYwXuM_9u0c2OWs96yeTJTZOmKpgoCup5GLo5js,3268
139
- imio/smartweb/core/browser/static/src/view.less,sha256=9rqoM0Azs8Cn4G4WSsWNBYLBydRzld0WuzWfHZTu5Is,2843
155
+ imio/smartweb/core/browser/static/src/view.less,sha256=4kRKpFWRJGiK8UBx97i1DoHteRgAS-0BmmU_rf-x7PM,3238
140
156
  imio/smartweb/core/browser/subsite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
157
  imio/smartweb/core/browser/subsite/configure.zcml,sha256=ITEH-6pVztshQElqjNv9sk-CcVUTLFeccdSO9rHLwt0,414
142
158
  imio/smartweb/core/browser/subsite/settings.py,sha256=tXEnEYZG75eM7H766ZgNCCWMwOcY9j45shD-8NR_7I0,1601
143
159
  imio/smartweb/core/browser/templates/link_input.pt,sha256=Q7Y4gW4q0DVG-U5f3ZJkrAZwJnV8NMPu_Fdht7zhb4A,2808
144
- imio/smartweb/core/contents/__init__.py,sha256=0DXz6HbcuFMCGXea3MCfrkT3CBFuVj2nHwd3_UUgPtw,3389
145
- imio/smartweb/core/contents/configure.zcml,sha256=VmTWQbCWiiKQUsqzOpP0bRk7ah3B3JZZt7pztgU2Z2g,807
160
+ imio/smartweb/core/contents/__init__.py,sha256=Jrdp1TwwR8O8sxB5nAVu-rQ_n-neSCPE9OGAyh2pxIw,3496
161
+ imio/smartweb/core/contents/configure.zcml,sha256=heQRN2fw2SM7ILzCsM-5sK1J3EfRrNctqYdpr1wncdk,844
146
162
  imio/smartweb/core/contents/cropping.py,sha256=3RYRf3kZkRxcwuNsTUnsb1OKbLD9seBu3So_8k7XBXQ,1482
147
163
  imio/smartweb/core/contents/blocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
164
  imio/smartweb/core/contents/blocks/configure.zcml,sha256=qmn7Hq9TekwvEYvS3PzUtINoA-slaoBrhAVxqvkbYC8,732
@@ -153,25 +169,25 @@ imio/smartweb/core/contents/blocks/link/content.py,sha256=MhTzuPWXU5qCYePA2cgtYq
153
169
  imio/smartweb/core/contents/blocks/link/fields.py,sha256=4A8Xs5YPYtjm3tTmmD9CX4gBMvBAnxXlwb-wpH_vROg,479
154
170
  imio/smartweb/core/contents/blocks/link/icons_input.pt,sha256=oDVGYr5oXMi5Vc_ToKxKQqPg9IaYbcqqdNsjNm99nW8,703
155
171
  imio/smartweb/core/contents/folder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
156
- imio/smartweb/core/contents/folder/block_view.pt,sha256=rz4jj3E6-39IM6ai1ORG7FHwary33lF14yDnnb3UGIY,1511
172
+ imio/smartweb/core/contents/folder/block_view.pt,sha256=VLmXZ3VnffgK0hoRhEkAPXmlrqCyH7-zdqBliVcl33g,1503
157
173
  imio/smartweb/core/contents/folder/configure.zcml,sha256=ZBWZWLxJBOfu-eZgasCL2gRQcOuYxlE23VqzTwnBzvQ,2961
158
174
  imio/smartweb/core/contents/folder/content.py,sha256=3KgS1PFUKnsyWiT8PD0yMgqY5u-978uUhWK0flHgaoQ,3377
159
175
  imio/smartweb/core/contents/folder/element_view.pt,sha256=dD6O9Racd_UxSXJ9XRMujFEnxfewb4Utlf-Tk_RT4_o,342
160
176
  imio/smartweb/core/contents/folder/macros.pt,sha256=aGQd4241WhasLu0CwoxDuku2mhBvz1m04WMWaENm4FQ,1743
161
- imio/smartweb/core/contents/folder/summary_view.pt,sha256=MM1Zthd6SzeBU5cuPxOAgzHJx3ZK3uwxNX-iqVMQ4U0,1172
177
+ imio/smartweb/core/contents/folder/summary_view.pt,sha256=ZymRV39P5qmT3riJJXDc4eTI3Mio1Ua_CliNrEk9kJw,1168
162
178
  imio/smartweb/core/contents/folder/views.py,sha256=A8VidsJXcxOlhCSb_3QDuWuvH-wB1UD87GaPGgIP-HI,5682
163
179
  imio/smartweb/core/contents/pages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
- imio/smartweb/core/contents/pages/configure.zcml,sha256=o-YBg5r3qJKC9JR5I8YvCzusLKT2uiLsqvvR8Iw9CQk,2252
180
+ imio/smartweb/core/contents/pages/configure.zcml,sha256=e-EqjBgF17vs51DWV2iBKZeMBlfPue9nBryzpEUPY0E,2297
165
181
  imio/smartweb/core/contents/pages/pages.py,sha256=iCQwzbp4nnGqwy31UE5Q9MaeJVAzJUgto-f7kWc8I7Q,464
166
182
  imio/smartweb/core/contents/pages/subscriber.py,sha256=2efcWPA5VsoEzv1_fIWh3sn1k2g0Kx_B_cTyQ5LIhLg,961
167
183
  imio/smartweb/core/contents/pages/view.pt,sha256=0-rTH5tgN9mgSHdt9_0qwYQpJO0nC4Wc0Kg6CUGRCbY,3127
168
184
  imio/smartweb/core/contents/pages/view_section.pt,sha256=_jYm5FqFVYr1Jia5r9qmqryd2a6NDNXO5SWu6osTZ0A,1345
169
- imio/smartweb/core/contents/pages/views.py,sha256=9PmL9uvMJPJdLkBkWpoVP4mp78qD3glS1gYi9e9Gil0,4852
185
+ imio/smartweb/core/contents/pages/views.py,sha256=3EEmK7ZLtjSkCc5wlH72KxyelG0ruOeGWi8apBrqqfE,6693
170
186
  imio/smartweb/core/contents/pages/cirkwi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
171
187
  imio/smartweb/core/contents/pages/cirkwi/configure.zcml,sha256=f5kNhtZhY10aHetW5nZZZ00tbBQP1EiezVia5_JfJlg,378
172
- imio/smartweb/core/contents/pages/cirkwi/content.py,sha256=SYRqRgs5cluwHeMVnM63cmzrmeZp3tHlNyTTXTbsbII,664
188
+ imio/smartweb/core/contents/pages/cirkwi/content.py,sha256=L8VtzTsdqM_1g13RWygd07Z9mtPiyg7PbjxXyDM6nSA,779
173
189
  imio/smartweb/core/contents/pages/cirkwi/view.pt,sha256=_eQzK-Z_QjT0rAOAJ9fgz6j6z5d85-GAccy_-X1X36M,392
174
- imio/smartweb/core/contents/pages/cirkwi/view.py,sha256=0WTiGHt7aJs8YD8DOxpMqs45QR1B9zL-osf5XTPhPuY,482
190
+ imio/smartweb/core/contents/pages/cirkwi/view.py,sha256=OBCZzwK9qTRRohD-kAv_j2vZDuIVrTLVcMnsFSvglow,612
175
191
  imio/smartweb/core/contents/pages/footer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
192
  imio/smartweb/core/contents/pages/footer/configure.zcml,sha256=akQrJMGxkhUZa-jCpZDRaMdKKwC-aWJhFoYgefS08Fk,70
177
193
  imio/smartweb/core/contents/pages/footer/content.py,sha256=mcef79jZRlHcIHJF4I93hYuLRg0_gDGsLcAv4srDMwo,1374
@@ -184,77 +200,80 @@ imio/smartweb/core/contents/pages/page/content.py,sha256=aW9zBWQCNPTbE-heY5eiM_M
184
200
  imio/smartweb/core/contents/pages/portal_page/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
185
201
  imio/smartweb/core/contents/pages/portal_page/configure.zcml,sha256=2ItrYCWjrdvvk5_piKmAkOeO4gbdn70gzgNKAuST-Vs,352
186
202
  imio/smartweb/core/contents/pages/portal_page/content.py,sha256=abPGe30xSvPUMCl96asDe453J-wI3QQ6tNF5tM1jfkg,336
187
- imio/smartweb/core/contents/pages/portal_page/view.py,sha256=MnGezZqDT4HgumfCWbjs_RISZgLkQUZYtHvdJ-JKr18,147
203
+ imio/smartweb/core/contents/pages/portal_page/view.py,sha256=RrCUBUDSZeTohtSSINn8wFvqLAV1q0ZPL5voUjXd6n8,272
188
204
  imio/smartweb/core/contents/pages/procedure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
205
  imio/smartweb/core/contents/pages/procedure/configure.zcml,sha256=pyeShXwkU4p6WrEQmLm-_SbTtRwtn0GLvQWU5wbm7i0,356
190
206
  imio/smartweb/core/contents/pages/procedure/content.py,sha256=e_kv7YsRF0vblfpxqqs9uhTLObA1NmiXiVyh0JWwoEc,1297
191
207
  imio/smartweb/core/contents/pages/procedure/utils.py,sha256=EATKvK72QPQheLXCXCoADYMjA3UfgPtkOPKdqnEyX64,1291
192
208
  imio/smartweb/core/contents/pages/procedure/view.py,sha256=UeZwtdn20lCo7qbqqPcsD9LL69vNTq4m_wXB4nv8jMo,408
209
+ imio/smartweb/core/contents/publication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
+ imio/smartweb/core/contents/publication/configure.zcml,sha256=tbotMG82XoUSWSMEI0J9ixYPWcUCDsu4Eh0RlO7PdyA,125
211
+ imio/smartweb/core/contents/publication/content.py,sha256=lWpNVN6x59xD201uSxykzVcphyDz6Ik7Sh7trYfwOgE,572
193
212
  imio/smartweb/core/contents/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
- imio/smartweb/core/contents/rest/base.py,sha256=aX-wzmaT-ZP3sozu-BpRkZe-dNSL0QuLK0L7WxF40LM,2416
213
+ imio/smartweb/core/contents/rest/base.py,sha256=DAnzRRxxK0sQXIp09fVUikBpMJx5qZfInO1Kkd_RDbU,2526
195
214
  imio/smartweb/core/contents/rest/configure.zcml,sha256=vANiA3brvm8rsJIUSVNf0BdlEnejpEGXoC82-hpxKkA,433
196
215
  imio/smartweb/core/contents/rest/traversal.py,sha256=KLNGhUmvTAzaRqSIzT3B28HgMBK4vcNV75AfyIesjN8,540
197
- imio/smartweb/core/contents/rest/utils.py,sha256=3R8BSRBzYCTL5sBtVraoHvEwhN6e1PyUY5mjczKLlFk,3112
198
- imio/smartweb/core/contents/rest/view.py,sha256=nOdJ3It-cEzwCLqz4QMAzMwZCWsMnWIJrSIhLcbCU4s,1014
216
+ imio/smartweb/core/contents/rest/utils.py,sha256=paMFXc81Hni0a8fpfNQtRTAr1vXNtXgBs5qLOn3_k2Q,3073
217
+ imio/smartweb/core/contents/rest/view.py,sha256=RlQG2NGojTxQaEySg6Kl1xxDy2KkoC4ktK45Uc4H2ME,1110
199
218
  imio/smartweb/core/contents/rest/directory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
200
219
  imio/smartweb/core/contents/rest/directory/configure.zcml,sha256=_K34jECLk9RWscAyiRXwoJLLBIVj-EJRGFOEbUU5Ito,1035
201
220
  imio/smartweb/core/contents/rest/directory/content.py,sha256=CpOPKpeBGZp7NSqtv9IWgaUUmMGDDuUiB1rcPQaXCUE,1102
202
- imio/smartweb/core/contents/rest/directory/endpoint.py,sha256=n07UKvqG0iDQV-1nxl7cnP04V7WuXktkv_SItUAVqcg,2962
203
- imio/smartweb/core/contents/rest/directory/view.pt,sha256=CN5111--p6j0xZ1Tm_OhkwJdCh_xoyiOdDaFAXg4cR4,815
221
+ imio/smartweb/core/contents/rest/directory/endpoint.py,sha256=i2W66-p7fmUfi5y0Ysa7Drmt_Viw64cqgBaZPSUh6TA,2958
222
+ imio/smartweb/core/contents/rest/directory/view.pt,sha256=ggBxrXvjOGbA_dHu7dfT0Y0XpVMBgFmo3bRGvOeut1U,914
204
223
  imio/smartweb/core/contents/rest/directory/view.py,sha256=rN4k7sqrd32TNMBBOc7RQeosRgYM-dl645Pi1GjVvwA,507
205
224
  imio/smartweb/core/contents/rest/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
206
225
  imio/smartweb/core/contents/rest/events/configure.zcml,sha256=ufUHdGMkGd57zgZ4_DxvoK4Zn7_AC_A3_TnLkmdYRhs,1017
207
- imio/smartweb/core/contents/rest/events/content.py,sha256=5irgZbZt1yavgLUTGU1_O9hANl7WjTe-0eWO2Iz37qw,1279
208
- imio/smartweb/core/contents/rest/events/endpoint.py,sha256=71rHO0-nlp42Yi5kJPqX4sCxFljiLUsl8np8ZxMy16g,2581
209
- imio/smartweb/core/contents/rest/events/view.pt,sha256=kV6O8spIMLkxiqX28VtZ6MTgtlIV7oipuEpPjGkfAKo,816
210
- imio/smartweb/core/contents/rest/events/view.py,sha256=kUiHQqi_zRxbg-6j7hmwTRshWDsuDiPX6yGnezVE49c,498
226
+ imio/smartweb/core/contents/rest/events/content.py,sha256=4T0dCsoQx6c1uxISEeqdUggI0q4YE80tQimhALwRmug,1665
227
+ imio/smartweb/core/contents/rest/events/endpoint.py,sha256=5WSeZYZMHRCJEDqqqqsRfTB1b2tMHY8YzmKbt7-99hU,2683
228
+ imio/smartweb/core/contents/rest/events/view.pt,sha256=rhM2Wyb05_wIsMCFYERSOoDVSp_ofLiIrWsLb1cDelA,1182
229
+ imio/smartweb/core/contents/rest/events/view.py,sha256=XCFmmC0t1J2HYGIX83bAWF1R1lP_z2qPq5aFmV85h8o,804
211
230
  imio/smartweb/core/contents/rest/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
231
  imio/smartweb/core/contents/rest/news/configure.zcml,sha256=f1kNWMjcHul5_dKv51KY_GQII-Cvx-uL7N9Z25zlN8c,1005
213
- imio/smartweb/core/contents/rest/news/content.py,sha256=awCW9vXglOPIOLsCB9w7M9O5eKGyb755oGZMOdhB_6g,755
214
- imio/smartweb/core/contents/rest/news/endpoint.py,sha256=JhJ-YoaszlSfhZnWrc0UELO4Y8ihA3TPE7F9Upptyxk,2668
215
- imio/smartweb/core/contents/rest/news/view.pt,sha256=OUKvgb7dnkbfyPm30tEvqPeGBSqufLc8A4ptUttpaGA,763
216
- imio/smartweb/core/contents/rest/news/view.py,sha256=8dkfrEHi4c7AbgDU1CIfWd5xRz8K28v2DCSY2j-sv0Y,410
232
+ imio/smartweb/core/contents/rest/news/content.py,sha256=gSyOuVlvv90HIWhjdABE7g4mngVF6agqZdC6pBDCgJI,946
233
+ imio/smartweb/core/contents/rest/news/endpoint.py,sha256=SC5gwHgJAkgK3R_BNszrOmpZJqmtUqC-kmGFSMxojMg,2755
234
+ imio/smartweb/core/contents/rest/news/view.pt,sha256=3p1n5ncbqEDuEqSUEqYWRCOlG0EntYfeKo32VJsMLkA,1064
235
+ imio/smartweb/core/contents/rest/news/view.py,sha256=JhPNp3LjvhS-X5HAsD84HKxnI6CaHTLajZkp1sBSsA4,632
217
236
  imio/smartweb/core/contents/rest/search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
237
  imio/smartweb/core/contents/rest/search/configure.zcml,sha256=BTFcBQ28NINyEfoVgYwJgf0JWvk99ewSKgOYx91lZy4,951
219
238
  imio/smartweb/core/contents/rest/search/endpoint.py,sha256=i5LMM0R1Xvpy76JHO6pI98G41Xep15fPR9uv9rqropo,9797
220
239
  imio/smartweb/core/contents/sections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
221
240
  imio/smartweb/core/contents/sections/base.py,sha256=2e3lIG_RGGFAshBEkTNG97OReAnn9GLQk_O_Eqh7SRY,2486
222
- imio/smartweb/core/contents/sections/configure.zcml,sha256=aEbAu9MikK-sCVzST8Nn-bMbv7clnHfnoumlBW197Wk,2242
223
- imio/smartweb/core/contents/sections/macros.pt,sha256=dJryNJTUmPRz1fLw3ORt3OSNPr6xedMmvJfFIvG16jU,4338
241
+ imio/smartweb/core/contents/sections/configure.zcml,sha256=fPfYvU7YvezfjKPRT_yPcZgjmyUX9VZFb-6jUJiERqM,2767
242
+ imio/smartweb/core/contents/sections/macros.pt,sha256=tvWBh40KuwWpOAu327NWZAwixvpWMMKdaOyIxMp0o-k,5579
224
243
  imio/smartweb/core/contents/sections/subscriber.py,sha256=WM7nEZVPOkmyT1GfkWGDWwLhuhUYaTnlBr6BJVqUJMk,642
225
- imio/smartweb/core/contents/sections/views.py,sha256=3cjeRFip7hsjJ47Lt8DwPGWTtvllUOL5yeKGI87Oc7M,3570
244
+ imio/smartweb/core/contents/sections/views.py,sha256=739Mm8cNrHz_JUdCD-x80tQXuxj2DocqpjYL19TxcnY,5977
226
245
  imio/smartweb/core/contents/sections/collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
227
246
  imio/smartweb/core/contents/sections/collection/configure.zcml,sha256=Ak4UbKFjogWZad6-5_y6oSx8tWXt3nN7bEdKXG7pQCI,920
228
247
  imio/smartweb/core/contents/sections/collection/content.py,sha256=DMmU9rIaRlbRjIaot5RHXu59vJmAbun0FCmyahWhBCM,2379
229
248
  imio/smartweb/core/contents/sections/collection/views.py,sha256=G8Q7zlFmuEKKCmAGLj5cVL3axebzf5ZlSVRYx9q45U4,1470
230
- imio/smartweb/core/contents/sections/common_templates/carousel.pt,sha256=oSfgXbFY77VQFkMsPpdG1ZTFKsFe865Lm8gqOXNkHbc,5412
231
- imio/smartweb/core/contents/sections/common_templates/table.pt,sha256=_6XcDToJUCSof4NEbCfbpNWTTcQloucv7QJhtQKalm4,6447
249
+ imio/smartweb/core/contents/sections/common_templates/carousel.pt,sha256=vcRaxpkNYQHjyIcLJEiOPEZ2yOvZKkXr_28utTbDk5U,5694
250
+ imio/smartweb/core/contents/sections/common_templates/table.pt,sha256=_s0F0PfUSvvuj6malb9EMgAel3YW83rxJGTC7Iq4gbI,7475
232
251
  imio/smartweb/core/contents/sections/contact/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
233
252
  imio/smartweb/core/contents/sections/contact/configure.zcml,sha256=WjyGXO7alNf4yDW5dZCS_xQ_AYbQVQuRVRIeoyLIBzY,1591
234
- imio/smartweb/core/contents/sections/contact/content.py,sha256=SSeWBuqs1iDIhaGODI_gCsw4Q6ANBq6m7exZv1lPl_k,2669
253
+ imio/smartweb/core/contents/sections/contact/content.py,sha256=MdhY6QPMdCseThddjwZ0e7xzkx1-p21MBuwqEic1f90,2690
235
254
  imio/smartweb/core/contents/sections/contact/forms.py,sha256=VlN_jse8tYxE9RCro2RgHlZRDDIyZA8Bjr-dNePZYwU,1387
236
- imio/smartweb/core/contents/sections/contact/macros.pt,sha256=ynqVHvtvvcNyAIGj5K07SO9jyRN0R3KbFBBn4t1qMaE,9523
237
- imio/smartweb/core/contents/sections/contact/utils.py,sha256=OsrEgrf0DuCHa_RlEP4gwHxSzOGqBMDZMDViO19w-Lc,5129
255
+ imio/smartweb/core/contents/sections/contact/macros.pt,sha256=bCuvXDaNBT84AHXHYUkazJ35FJ2YVGl61Ry7rXuLHgA,10870
256
+ imio/smartweb/core/contents/sections/contact/utils.py,sha256=XPZW3b6kqiUQ7YxHP6r5mqYlXGsi7n0prepeTy-8EY8,5205
238
257
  imio/smartweb/core/contents/sections/contact/view.pt,sha256=CyNoSxzf9kNQdjN2iCp77zpFeXfC1KGgQlx_UeTSQ6M,1170
239
- imio/smartweb/core/contents/sections/contact/view.py,sha256=5l5FQLxz-UfFZrttqNsWetuCg-4yT-wIzukIK-QLF6s,1422
258
+ imio/smartweb/core/contents/sections/contact/view.py,sha256=7zTN6JPUaeomzfiaE5eUyvFIqfyPNg2UJDOVpzt6vJ8,1962
240
259
  imio/smartweb/core/contents/sections/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
260
  imio/smartweb/core/contents/sections/events/configure.zcml,sha256=FCDIf6w-2qCPqq0QUodw8-xyAopq7l6O8zoU_uMHNwg,1117
242
- imio/smartweb/core/contents/sections/events/content.py,sha256=x4lWDEAC3Y-ouLhjKmec9nvAwhGLectt1EjL6gsoMhQ,2914
261
+ imio/smartweb/core/contents/sections/events/content.py,sha256=aolTpBgOCKu4EHLQUFjOkFN7YpJId0Wpj_iH5AZ9Vvk,3246
243
262
  imio/smartweb/core/contents/sections/events/macros.pt,sha256=llSq-xstFiOXctseKDwvhVCM7A1_Z1Jq-_cUgNiBe10,1522
244
- imio/smartweb/core/contents/sections/events/view.py,sha256=UFOdHMB5BHzYBqwD2CpAudP2uDLzYOeBbF2W-Ao9918,3636
263
+ imio/smartweb/core/contents/sections/events/view.py,sha256=Jjs93_6uVCJsDMHwnmBC0mRpLYfysPa-_iOCiUCJFj8,4520
245
264
  imio/smartweb/core/contents/sections/external_content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
265
  imio/smartweb/core/contents/sections/external_content/configure.zcml,sha256=6ZvD4hJiXMZM2-mz9D7ipZcphS5HKJFREG9XUzF_6ms,1651
247
266
  imio/smartweb/core/contents/sections/external_content/content.py,sha256=apHtfPwxkHkLQJVFVXs4F8O0gE09uI49AFQ8xRFrXgo,1096
248
- imio/smartweb/core/contents/sections/external_content/view.pt,sha256=0-Kr--CYRDF3NDSxiEs0yt1bzylS2FxQratn1fM1ayI,1950
267
+ imio/smartweb/core/contents/sections/external_content/view.pt,sha256=KJqmh9U1FuL1_f0dtHsDye_pfrVasMNUoa73UStnxE0,1986
249
268
  imio/smartweb/core/contents/sections/external_content/view_arcgis.pt,sha256=mWxeEI6gWAIHixV0dIt6JnEPCEEYqsJklA3V9nGXFTw,4895
250
269
  imio/smartweb/core/contents/sections/external_content/view_idelux_waste.pt,sha256=ydk9Q31PUBIeEjIvK0KoHBz0MMTRycLVJLU2mrtKZg4,1922
251
270
  imio/smartweb/core/contents/sections/external_content/view_inbw_containers_affluence.pt,sha256=5Oqjl1FTxE7NJ3rdHX0Cs1Iq4H9vE3LkTMd6W1IciqI,2742
252
271
  imio/smartweb/core/contents/sections/external_content/view_odwb_widget.pt,sha256=VNujhC1A8HcEZxUn2QQpnFCieDFzvnbuEeY0rn68Kz4,701
253
- imio/smartweb/core/contents/sections/external_content/views.py,sha256=Tp28OTd6WG9aRv_cINEdZ774YZ99X59R7ecxVOxhn5g,13512
272
+ imio/smartweb/core/contents/sections/external_content/views.py,sha256=KPOjV4HBXHRzIeh7zG81ijtkmCsEMR8C4y_62S8Afqg,13584
254
273
  imio/smartweb/core/contents/sections/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
255
274
  imio/smartweb/core/contents/sections/files/configure.zcml,sha256=DyyHzDEKLWmOywbV08Zf7bvf0At5jyAeDfZ8PCK5Rog,501
256
- imio/smartweb/core/contents/sections/files/content.py,sha256=60wt1VguNqKBu3fyuuG2dcrHC-9FjxTf96af2IqU3fw,871
257
- imio/smartweb/core/contents/sections/files/view.py,sha256=0KnXIWEadsqYV2U0XhMd2a5-Mon4VZy4RyAWNwUBVUc,1249
275
+ imio/smartweb/core/contents/sections/files/content.py,sha256=C3jEokoNKIE-1cQlaWD-aKLfPDG6k8YasJeZxOR8swk,1088
276
+ imio/smartweb/core/contents/sections/files/view.py,sha256=zIbPyNT07vqcI9_m9WE2eFgcSoxiO8zCc8oeRt-3aZc,2583
258
277
  imio/smartweb/core/contents/sections/gallery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
278
  imio/smartweb/core/contents/sections/gallery/configure.zcml,sha256=0fq5_PWU9vFrmPkExvFPBCzZrDSnlN8B0K7fHQReAvA,424
260
279
  imio/smartweb/core/contents/sections/gallery/content.py,sha256=l6HLGVNi70gcEP-zz9OXi2WYtyd-V6LCAZH44a2Td_s,780
@@ -267,7 +286,7 @@ imio/smartweb/core/contents/sections/html/view.pt,sha256=PY_z5Mn52IygWoMxAIEkbep
267
286
  imio/smartweb/core/contents/sections/links/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
268
287
  imio/smartweb/core/contents/sections/links/configure.zcml,sha256=rE-UWiubwkPYU6VvfxM1AH3UTr06WfsItEG1dSX9G8w,918
269
288
  imio/smartweb/core/contents/sections/links/content.py,sha256=drUefjzRnT3wFxIjVZ31qqaR-BGhWN5ffmcmnEeI5tQ,1051
270
- imio/smartweb/core/contents/sections/links/view.py,sha256=dvJGxb4IeHYU643LvVGVfQDZ4GgmDD-Cxd1DKmx6cXQ,1375
289
+ imio/smartweb/core/contents/sections/links/view.py,sha256=mMjSThkfhGODDBw0Yfv42CB61epDnFGwHzMNNVKCfzA,1664
271
290
  imio/smartweb/core/contents/sections/map/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
272
291
  imio/smartweb/core/contents/sections/map/configure.zcml,sha256=8ocTq-RfXM7BvGHyHrhySzYAvKhwXrc5lyrABNSb2H0,412
273
292
  imio/smartweb/core/contents/sections/map/content.py,sha256=z5maHOFl0BpzFHRgEVrae7TnW9qU-aRXj_m9Z3CWtd0,372
@@ -275,8 +294,8 @@ imio/smartweb/core/contents/sections/map/view.pt,sha256=tEEL2ht3KYKJC87_SaT25Ij6
275
294
  imio/smartweb/core/contents/sections/map/views.py,sha256=3Z5oFis2NIByJCHh8bjAlLutc4Wp8j6rY6bkvShxEm8,614
276
295
  imio/smartweb/core/contents/sections/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
277
296
  imio/smartweb/core/contents/sections/news/configure.zcml,sha256=8MOIEeI7Zr_wbNVgiMa_21Ohgv_bkpEi_7gJu6NK380,880
278
- imio/smartweb/core/contents/sections/news/content.py,sha256=tfB2c_ZohUwOcnO4XlKc-sJ96ojkoptaBW71iSa0V7o,2911
279
- imio/smartweb/core/contents/sections/news/view.py,sha256=7Vsmxf8mCx6APQGyuxRegTH_UYnEScxpV3JsUHz4dPs,3259
297
+ imio/smartweb/core/contents/sections/news/content.py,sha256=A79d6gfxiqrrL87VPqFz13NYAfTjHbSFNZlpi1kixzE,3261
298
+ imio/smartweb/core/contents/sections/news/view.py,sha256=VNhsyqAkVVLV1101Wp9mSIfL-i_U3oYM_Quq7YlQr1E,4147
280
299
  imio/smartweb/core/contents/sections/postit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
281
300
  imio/smartweb/core/contents/sections/postit/configure.zcml,sha256=Q0Szs1pmrNP2OiRROpeSQPKLV3tCpyjqZa9vwNFTK9Q,504
282
301
  imio/smartweb/core/contents/sections/postit/content.py,sha256=--bqQPsjpKuqMzOb21eOERjp2a2QehGTAsBvZ3FnQMA,2239
@@ -300,7 +319,7 @@ imio/smartweb/core/contents/sections/text/configure.zcml,sha256=FzMgOeiLv33RhOe3
300
319
  imio/smartweb/core/contents/sections/text/content.py,sha256=XCOaPWD3iKe0QF1dIK1e2CZmMF5aK8Et5Wt4GyEAgio,1118
301
320
  imio/smartweb/core/contents/sections/text/forms.py,sha256=BHPxF-LbODbVoVTq6b-Mx1zM-thRhqu3kSY1tOrTDvw,1818
302
321
  imio/smartweb/core/contents/sections/text/view.pt,sha256=vzvOIboG-aBRAgcNW9P8XUl09G9XRgYl6Ls5SLSWTgo,1802
303
- imio/smartweb/core/contents/sections/text/views.py,sha256=SstSPiKk7GCQYeYngrRikR9sKAl7decqPBoe4kcW064,383
322
+ imio/smartweb/core/contents/sections/text/views.py,sha256=J1Vy4AEzM7AahtDKc5cY23N3-7Yv4oHxzJJWc0huPcM,526
304
323
  imio/smartweb/core/contents/sections/video/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
324
  imio/smartweb/core/contents/sections/video/configure.zcml,sha256=fB2sr0jyVajOXCIuQuDVzAGm-KV5yRpxFvEyrLm3CEE,418
306
325
  imio/smartweb/core/contents/sections/video/content.py,sha256=zWba02hLpdbzvbXoRDw4wgnABZ5w6iwmEb6Jd_-rpEU,978
@@ -316,50 +335,51 @@ imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH
316
335
  imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
317
336
  imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
318
337
  imio/smartweb/core/profiles/default/diff_tool.xml,sha256=66L2L7ZBGJajPDeHl16A3h6RUcj9l0C7qpwe8JSYe7o,212
319
- imio/smartweb/core/profiles/default/metadata.xml,sha256=nyOfr4tsaBuMfFteEWYtiQ8gp350-tqz8ou1V-GIIMQ,1218
338
+ imio/smartweb/core/profiles/default/metadata.xml,sha256=gAmNhxpCES9tsS5Fr6AuHXmEWqH1Wo8UqW7kBbWW0Rs,1218
320
339
  imio/smartweb/core/profiles/default/repositorytool.xml,sha256=aTErs-VvEEV3dm9_TdgPZfx1Pb1f5Sw7ap7IgiJOK4w,227
321
340
  imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
322
- imio/smartweb/core/profiles/default/types.xml,sha256=xkQyPtEccUnAHu5mL83r96dmtnCWNn17lVRJPP2jWMg,2040
341
+ imio/smartweb/core/profiles/default/types.xml,sha256=k4V9-IxygB_2YPHWjQ7y_Upl443ksxfC_MC9mz9o3Yc,2111
323
342
  imio/smartweb/core/profiles/default/workflows.xml,sha256=VrFAw9s1UtWFSHuBA0VBE-WnRdZG9I_XIhJIEXwzdkw,1069
324
343
  imio/smartweb/core/profiles/default/registry/bundles.xml,sha256=5C6nwniE04kgQMGSn1EtnA7kfkgMPbrESSrMXhNNVww,2562
325
344
  imio/smartweb/core/profiles/default/registry/geolocation.xml,sha256=CzTg5DnZ-CjDIW-iuYmeL7EeNjHc63g_PgabttgMSsU,1251
326
345
  imio/smartweb/core/profiles/default/registry/plone.xml,sha256=cvJq50ofQ0SIN2p1GibAbpZny-fjxK4iaNg0q8HBmPU,3186
327
346
  imio/smartweb/core/profiles/default/registry/smartweb.xml,sha256=XjkK4tOXXSF73oqE2v1oZindciXQlX2ak1K5WnI-ORk,253
328
347
  imio/smartweb/core/profiles/default/taxonomies/page_category.cfg,sha256=ZPHpBAMGIhTL3fkalAwTiWBTpUPeYsUMNR7UmF61LpA,310
329
- imio/smartweb/core/profiles/default/taxonomies/page_category.xml,sha256=HEEUbNUoAU76p_HGLDPu3enW0p6FgIqDmMW9ki7-SiI,2059
348
+ imio/smartweb/core/profiles/default/taxonomies/page_category.xml,sha256=BApommxfwLILSw0vfk7crMoj99vEiPqbirjdXf_BzBM,3007
330
349
  imio/smartweb/core/profiles/default/taxonomies/procedure_category.cfg,sha256=Q164kppiNOFkWqotf7py4Zh_4MkPqlaAXSg2BYkv9uE,320
331
- imio/smartweb/core/profiles/default/taxonomies/procedure_category.xml,sha256=xwxS3EVCr7TZr9Eejr1NlaeO_nRlshkgdNEG9vkTSKo,3436
350
+ imio/smartweb/core/profiles/default/taxonomies/procedure_category.xml,sha256=okHtdO00hhQGzUFRmzFrg2EuQcPpAGE8jkhTjDxniHk,5197
332
351
  imio/smartweb/core/profiles/default/types/Collection.xml,sha256=xE7IOs7Em-lnmDnR1YK9Q8wW_VGIT-3eq0LZLhfArY8,321
333
352
  imio/smartweb/core/profiles/default/types/File.xml,sha256=oTmg9PpsD9-oLk2E5OXn0BOwoQ3z3FrWOHFDNXXH0mo,315
334
353
  imio/smartweb/core/profiles/default/types/Image.xml,sha256=fJmD5pnkIG_FPoM4HCAr-cnB-__pzR6YJgTlYk-eSFQ,316
335
354
  imio/smartweb/core/profiles/default/types/imio.smartweb.BlockLink.xml,sha256=d9QbSRcub-2BPmXIyeTlMY31ZV490N2fLVJiOzpvqcM,1526
336
355
  imio/smartweb/core/profiles/default/types/imio.smartweb.CirkwiView.xml,sha256=no9uRz1RgpIIWIslYX5CZ3zXh26R3EWVZRgcEc4h1vE,1507
337
356
  imio/smartweb/core/profiles/default/types/imio.smartweb.DirectoryView.xml,sha256=6QHlBk3fdynpJRvsI4IXxQhoEtzrwzTSyxfvwn9ZMJk,1593
338
- imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml,sha256=huXu6Toyquj7YbaqAlFkIZIv950JhXngyTGClHucYHA,1578
357
+ imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml,sha256=7dgM9eTj_oFUvbclAL0hAEpSiX6JB14Zz6JNcaaoURQ,1632
339
358
  imio/smartweb/core/profiles/default/types/imio.smartweb.Folder.xml,sha256=YqbwiJET7INeT2z3y4loPhyZz2H1AUwfln3INiSMcVE,2593
340
359
  imio/smartweb/core/profiles/default/types/imio.smartweb.Footer.xml,sha256=3wJF6Pcv_uKb-9uwbB3qOgVHH2E5kZQU20jCieph4Uk,1730
341
360
  imio/smartweb/core/profiles/default/types/imio.smartweb.HeroBanner.xml,sha256=K17YmXTHR23suOhGZqjNjI0DPBenrdAOcLCqN6VUBD8,1604
342
- imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml,sha256=eKW5_UjyovqFGM7A4SgKZKWlmQVjooyDrK_PyZgaXzQ,1561
361
+ imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml,sha256=xMyV4duPxaS-mh2VC4nqRlaElr_GZqmVnP5SPk2cIjo,1615
343
362
  imio/smartweb/core/profiles/default/types/imio.smartweb.Page.xml,sha256=5nHWF7MTLqr4-WyrTu5RgmSKCb0ODJ0--jdIMTrIQF0,2519
344
363
  imio/smartweb/core/profiles/default/types/imio.smartweb.PortalPage.xml,sha256=-5C8Wvx4IqmH2vZ5Bmyj1Zr4YTaGvY4vWc4sO5vPkJ4,2695
345
364
  imio/smartweb/core/profiles/default/types/imio.smartweb.Procedure.xml,sha256=V5EZwu3d6X2rVMdQjuWp3c-IRSVV1XUCWo-Hu-c4wBs,2516
365
+ imio/smartweb/core/profiles/default/types/imio.smartweb.Publication.xml,sha256=2bBfDraAOCRxMjiuvJ7TXS_RBAtIyZQLdWsczdb7nU0,1249
346
366
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionCollection.xml,sha256=8hDn-vrtm3YuZ_U4ntgwAYMxCjayDr1Eh46KZBeAGLM,1506
347
367
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionContact.xml,sha256=gh4Aal-ZNoV-_t1TiNIdyYsyZaYGQ56fRk9Ata37on0,1183
348
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml,sha256=5qfrH7XxqyDssiS_9dFh4_ub16IYdJr5wSXJ5se3lTE,1484
368
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml,sha256=9VKQdMuMLbAooXdI4ZSOujT9pp0kHqj7-vaaeIDLW-s,1538
349
369
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionExternalContent.xml,sha256=C1BFq3Kn52p4xLfYgiJg9B1AOimq5lPd-3IyNUtjtZI,1284
350
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml,sha256=XTprZ_LTzgFabYRu-w99u30HHs3tgIgUsCSOSL1S3UA,1490
370
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml,sha256=emJU7umIMyqb7NLb8Y8uzvWZGeXzg_dl_zlbgBe2O00,1589
351
371
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionGallery.xml,sha256=8CPXF2CBF-9cz13jowiU0eUqLxzph6ic4Ly6GzVD0NQ,1349
352
372
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml,sha256=qIaImpJ6b70saTXNs-X5EgU8jqx6FGyR3Kguyt7Tc3A,1191
353
373
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionLinks.xml,sha256=Ee5OyXdJNjGNhdyAvm6TkxiWVzIi2WtTgUkaqvyhsOQ,1595
354
374
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionMap.xml,sha256=J9PJ9E0dA0hb0HR8yq7QBR90cd5z1mdX9XwG2JP4hog,1142
355
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml,sha256=aDJyNXxdFIf1JLIm-RcTcXmzEh_2TQiNZ--1K9qmEzo,1478
375
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml,sha256=DX4YFXOoNBjYxb8f1fZZyL6gx3qZd5CCBoSY5VwiMU0,1532
356
376
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionPostit.xml,sha256=IOGPNTzu3zmEx4khYpluI7cVmBDpmu4uy7piSDRucF0,1129
357
377
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml,sha256=7qlJZjMKQW-9QAS99NgN0MAH_lUvmjcjpD7ni1Cy9kg,1506
358
378
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml,sha256=p0EQnnc9B28iMocTrKBdr_zzmDECQWcjDrJKH_hFYs4,1142
359
379
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml,sha256=Fd_TzGY_OS5OTH_hubkg-bQUmNIO1zGgaKs2jLyhrJY,1127
360
380
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionText.xml,sha256=1rU_Z0h-ghzt_wcCvLlt2A5HsuZ5Ey_OvHaFRJwHB3E,1241
361
381
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml,sha256=SizWFzAer6gHpUKaNfGcKZe246eVLnFcra50fff2qAc,1167
362
- imio/smartweb/core/profiles/icons/basic/registry.xml,sha256=F4Icvasl5DkEvuCS7mczToqy7KdWBaWYF0HMzmvYgsE,17858
382
+ imio/smartweb/core/profiles/icons/basic/registry.xml,sha256=mSsx5FJZi9A6az0Hk1Otg3D2an5uUST8YnrZKrMiLvc,23211
363
383
  imio/smartweb/core/profiles/icons/contenttypes/registry.xml,sha256=nYHOYa4R1KZZh75n9gaMhHaPXAaXjCKX2tW5t7afFhg,8766
364
384
  imio/smartweb/core/profiles/last_compilation/registry.xml,sha256=XLMMpMtgKFTE4GGkGpMm0vOJrJ1yLLbtelO7He2nb40,852
365
385
  imio/smartweb/core/profiles/testing/metadata.xml,sha256=ZOXnwD8iPGY1Z1uqcPerr0Nx8-yxzLT4l4HuCLMlWr0,227
@@ -374,7 +394,7 @@ imio/smartweb/core/profiles/testing/types/imio.smartweb.NewsView.xml,sha256=6Rpf
374
394
  imio/smartweb/core/profiles/uninstall/browserlayer.xml,sha256=K8KnZFW9E6Hwi61Z6XZlXOjUpAKzJR6HjmjoOjFEWrk,128
375
395
  imio/smartweb/core/profiles/validation/contentrules.xml,sha256=QyX3E0ihDOMhaJPrKPRqRiCUvPoghs3fwYOj_eNtbqw,4626
376
396
  imio/smartweb/core/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
377
- imio/smartweb/core/rest/authentic_sources.py,sha256=5GmzB3GL5vhQNhqgZGmbsQSgXeETdoJiw74sSRVEtyg,4305
397
+ imio/smartweb/core/rest/authentic_sources.py,sha256=ZH7kHNAow_t6pnEObZ_x2jfnHi0pZOrr9OO6MQHiG_8,4957
378
398
  imio/smartweb/core/rest/configure.zcml,sha256=3tEU99M_deyoRN0YeIVQmPk7NL88gjYtXZOT8QmSbN4,2891
379
399
  imio/smartweb/core/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
380
400
  imio/smartweb/core/tests/test_banner.py,sha256=83Q86ezLMJVwCLxoJddmlE9GKR3h6Qyb-rbqVSFc8a0,7838
@@ -388,7 +408,9 @@ imio/smartweb/core/tests/test_faceted.py,sha256=4wCfxDsU_zQ2G9xAy0g2jcuYl4HBALHs
388
408
  imio/smartweb/core/tests/test_folder.py,sha256=JjV5Hvo6IMEFHo2kowbqhLxcXy11zHRTKL9jYJrRHV0,13527
389
409
  imio/smartweb/core/tests/test_footer.py,sha256=5FYaKDRrY10_rXvetVmbo6-uOZSRQuOkaO_fvuv94N4,10970
390
410
  imio/smartweb/core/tests/test_herobanner.py,sha256=oCbnS288FcJqbhWDmqdWcAXi4S7qdnf2MvBtxrLVd_I,5940
391
- imio/smartweb/core/tests/test_icons.py,sha256=sP1lIVnImCREersIZp1_QfD1LLyLFyr_mSMpt-ybgfY,2788
411
+ imio/smartweb/core/tests/test_htmx_in_sections.py,sha256=wMzFdI7V1G6NpYkQY7lD0GSPmNOVSH1p34nlXvpz3kw,5370
412
+ imio/smartweb/core/tests/test_iadeliberations.py,sha256=S3ZMT__jHEbVRtBILPDi8WfJP0kmH7mFK5fnx4OO3hg,5564
413
+ imio/smartweb/core/tests/test_icons.py,sha256=d7TPnzTFqa4_vYcsK5tl_PPDAjjmIn_EYrYzE0BRfmU,2788
392
414
  imio/smartweb/core/tests/test_indexes.py,sha256=DtRgpdkZ2PKu8y8OrARY1Gk3JU-siWlkDf98A_ZvzFI,10784
393
415
  imio/smartweb/core/tests/test_instance_behaviors.py,sha256=YMLtXkhxrLlD0nh0wx1-kX2hawQiOGvJqYXh_s53GPI,4274
394
416
  imio/smartweb/core/tests/test_local_roles.py,sha256=RCH3t--G7FTNqGIRgJWypTVo_a-1rPsdK8RG-yrOYhg,4997
@@ -400,15 +422,15 @@ imio/smartweb/core/tests/test_plausibleview.py,sha256=G1ryfnz3TuQBG8VFO5KzEylT5D
400
422
  imio/smartweb/core/tests/test_portal_page.py,sha256=hIqg4eb91o8BsSj7eSKdvoxehzOXt8bzpg1o5ej__zg,7215
401
423
  imio/smartweb/core/tests/test_procedure.py,sha256=0w8phOwYfpp9vb3KDsnwjX8AhQXWdodA06W4koderQo,6474
402
424
  imio/smartweb/core/tests/test_redirect_to_main_react_view.py,sha256=k4gU6xBIA5m8Vrb27rt8nWCs8ix2Lf9j49WnIXl4eO0,2990
403
- imio/smartweb/core/tests/test_rest.py,sha256=PO4LhMzhH4q4kmBp7amVrGP3HPC68f0AxW8D1_x7E5c,25026
425
+ imio/smartweb/core/tests/test_rest.py,sha256=t7dp7YWUCKR75tsU3vVOzAy9HivGBWuMJoeMpuKOXbM,27374
404
426
  imio/smartweb/core/tests/test_robot.py,sha256=NQ7AkN4tEva3bgGjMxmyqY0zIo4pJPnPOwnD9hmrTVI,926
405
427
  imio/smartweb/core/tests/test_search.py,sha256=VryeRI4_5CvnStKOoNoG95M2WTy7Lyy_AhHIDG40M14,2182
406
- imio/smartweb/core/tests/test_section_contact.py,sha256=vwCcls19KSiciaAXYG7C3SwOMWao8VGcnLvsU8ikxB0,23166
407
- imio/smartweb/core/tests/test_section_events.py,sha256=CPp0gBjRf3dpzHfhgF9gF2d_QmKFGxph8nM9seNSUUw,6690
408
- imio/smartweb/core/tests/test_section_external_content.py,sha256=a8OzZ2eDGgTYbVYi5F0necgUjQZz38NZEC1kthlFzLU,6660
409
- imio/smartweb/core/tests/test_section_news.py,sha256=nuRmRQldHrYfvYUB6bsSz7IwMeNbx2wiY9TBKI7j8DI,6804
428
+ imio/smartweb/core/tests/test_section_contact.py,sha256=TePnLCLu8pqA4d1SYRK8dGi7m7BbooiTTkQUC4KztAs,24693
429
+ imio/smartweb/core/tests/test_section_events.py,sha256=7eP-HmXp0D3gvOrjVpzVPmV9nF_PKERnmOGz1G3Z0l0,8641
430
+ imio/smartweb/core/tests/test_section_external_content.py,sha256=JI_zm3160ryO8a6NjtcmcboUJdJDa7lEX6ommbxlGao,7617
431
+ imio/smartweb/core/tests/test_section_news.py,sha256=6S7-r6ZnpeN_JdLYLZMWbHKRzeuf5ynPWnox2DDFPZk,9126
410
432
  imio/smartweb/core/tests/test_section_sendinblue.py,sha256=UmmKo33T9feelumxqeejM4HG4oLRPKJkbB8hkLO144E,2661
411
- imio/smartweb/core/tests/test_sections.py,sha256=7OSR69aS9dD5_ymlae9bMN9wFZaNP2Gpx-lLKBfsmsc,24008
433
+ imio/smartweb/core/tests/test_sections.py,sha256=7lxfneqdJku9sX5u_4Pvg9DWcmMFOE7KH04ojIqdcGQ,24767
412
434
  imio/smartweb/core/tests/test_setup.py,sha256=JcbMnXTNCuB_8grFh5E1kZ0uALdATlKMbahAdGfToZI,2092
413
435
  imio/smartweb/core/tests/test_sitemap.py,sha256=AhFvUhzpkUg5XAwVcK3obXXrOEJYwhQZC3XrWeZtnP0,6674
414
436
  imio/smartweb/core/tests/test_social.py,sha256=GVHkF4c8Ygnm09J1aGxhklbtd6b-1Fy8M7NnYmjRvfI,3046
@@ -416,7 +438,8 @@ imio/smartweb/core/tests/test_subsite.py,sha256=wiD8Ke4_-ArstSYNLCs8ArqOuDx2xxUR
416
438
  imio/smartweb/core/tests/test_text.py,sha256=DtZNNGJ-MDYbJ-YQj2C0q2Hr7t4-sUbV6SWkE7tihBY,4652
417
439
  imio/smartweb/core/tests/test_toolbar.py,sha256=dxwOGNOg2wPkAnPU3hqGCI6VL2D2nPOIOtbMorvjfps,3823
418
440
  imio/smartweb/core/tests/test_utils.py,sha256=CkRkK3SbT4oQx_-Nq2Z0AhmhzR4kk2BkIZqSbIiPU04,4125
419
- imio/smartweb/core/tests/test_vocabularies.py,sha256=nSYjgQMtY4mByiOggLxy--OJu0yaQqJTE9G-8k3AMa8,14234
441
+ imio/smartweb/core/tests/test_vocabularies.py,sha256=1oF4rFc9kd1baUMHBor5wX9_tR7fcziQ6rvcENjyNDU,16956
442
+ imio/smartweb/core/tests/test_vocabulary.py,sha256=9S3BtVIJbN1o0q2qMcX8k0CdUwixmc3DBs_s5qFrJwA,1648
420
443
  imio/smartweb/core/tests/utils.py,sha256=hsDrWOxL0oNNyx92Hke9Kj9ByKzc2kZ19q9QPVsNud4,2688
421
444
  imio/smartweb/core/tests/resources/cirkwi_bad_widget_mock.html,sha256=13YeZ0mo8PoeHIHa64SLKuhNfGqBMT2uprmYDyQxE78,150
422
445
  imio/smartweb/core/tests/resources/cirkwi_good_widget_mock.html,sha256=vBgQwBKNGcGRrOHfXYZO_gmAGL1oKPDIUOnDfXEHCR4,333252
@@ -433,16 +456,19 @@ imio/smartweb/core/tests/resources/json_directory_entities_raw_mock.json,sha256=
433
456
  imio/smartweb/core/tests/resources/json_events_agendas_raw_mock.json,sha256=MPOml4kg2szqBFl8mh1RC5_df95-aZsyY3pdcy_S8_M,769
434
457
  imio/smartweb/core/tests/resources/json_events_entities_raw_mock.json,sha256=W6FkyvbiC2WXtrcDvqIptCEThsQ-05Sd9NeXlLdpcss,441
435
458
  imio/smartweb/core/tests/resources/json_events_types_raw_mock.json,sha256=Yaxw-mpSEkH5c4JKlhibIAko6UOexGZ-ydJyxXs-mQI,390
459
+ imio/smartweb/core/tests/resources/json_iadeliberations_institutions.json,sha256=koaFRWm7xMUFQ7XjFu0o2PqOdMXa4wIH8Ae2dChAbO4,2279
460
+ imio/smartweb/core/tests/resources/json_iadeliberations_publication.json,sha256=peL3-Tb3kWOZUNqCkYsvJD3710jMzPlb0pGj1gnAQN4,5136
461
+ imio/smartweb/core/tests/resources/json_iadeliberations_publications.json,sha256=JsY4rynmLwpnmOEvvqhyoSQ0USUvNv3wGRYOGEKRThY,17115
436
462
  imio/smartweb/core/tests/resources/json_news_entities_raw_mock.json,sha256=InbDt8kUmVBsfCTyfn5M6qqC1j8z5RB8Edg7hIWRv0g,726
437
463
  imio/smartweb/core/tests/resources/json_news_newsfolder_raw_mock.json,sha256=JpryCi1tpJPAoqnF9c2ZPtcQc4R_ottDRiyU-z2x3FQ,783
438
464
  imio/smartweb/core/tests/resources/json_no_contact_raw_mock.json,sha256=tfcIZuQi1Lz8HV8EV93Qp1pUr9KbKATxu4MHnpiZSrc,127
439
465
  imio/smartweb/core/tests/resources/json_no_newsfolder_raw_mock.json,sha256=qC4sfb5JCGTtZpM6a0t0_k1IADu_oyOazK7fow1gMCU,168
440
466
  imio/smartweb/core/tests/resources/json_procedures_raw_mock.json,sha256=eMrKdEMFtSzpRmAF-PT-YMEXAoi3H0GozMli6znQGuU,3217
441
467
  imio/smartweb/core/tests/resources/json_rest_directory.json,sha256=38tLQnhYtSq5f29a76Cp961D5JRROxyhdBQC5D1Zlf4,42421
442
- imio/smartweb/core/tests/resources/json_rest_events.json,sha256=vOobUeVNj5jQPFQ6F3xfRsqnBD5xLN6o5ZY6OP5VrRM,46365
468
+ imio/smartweb/core/tests/resources/json_rest_events.json,sha256=ZPtJj8fMhCrWYPTaPSnCrkQNqyjYc_l4RWi1XcaJISA,46530
443
469
  imio/smartweb/core/tests/resources/json_rest_events_with_breadcrumbs.json,sha256=PaHVrvIu9YB5WCLHhScrIforWDMxgLd6gIpy3lyVVyI,5002
444
- imio/smartweb/core/tests/resources/json_rest_news.json,sha256=1WeM_36K-xmecA9FguGylZhETUpp63B54438rKPFMCc,45966
445
- imio/smartweb/core/tests/resources/json_rest_specific_events.json,sha256=rXvWFc9xuhYyZNR95cSYBs0TDTIfYxoBvfs1hTsAEBU,1107
470
+ imio/smartweb/core/tests/resources/json_rest_news.json,sha256=1cIh3oxmRJ0Mxj-XseDpc9l96xTi1Rgo0nxmXP5UJJA,45979
471
+ imio/smartweb/core/tests/resources/json_rest_specific_events.json,sha256=MRpWMGNHriCq-3cYMpUAAaxdfbCd2F6meT_WERMLCCw,1130
446
472
  imio/smartweb/core/tests/resources/json_rest_specific_news.json,sha256=o0tjB3tU5TaicLafYP8EpE5FJDBVgniEwnpG9ixMix0,2064
447
473
  imio/smartweb/core/tests/resources/json_search_one_news_entity.json,sha256=A3jCiokMLEZMnE4ipI39mnWMaFBZsHGpiVYcVS70OXA,369
448
474
  imio/smartweb/core/tests/resources/json_used_iam_vocabularies_jobseeker_tourist.json,sha256=YszwY2xjmOWakE0HHkOElwmLsCfFQ0PilszxrglZ7v4,205
@@ -453,7 +479,7 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
453
479
  imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
454
480
  imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
455
481
  imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
456
- imio/smartweb/core/upgrades/configure.zcml,sha256=-jufQtfvUQByhD1wk8_mcvIdKcOLz5aoDrewg8cCkSU,26238
482
+ imio/smartweb/core/upgrades/configure.zcml,sha256=-aiWiYbSpgn9GtHhomD0MRh7AbSFS-JtK3eMGuSQYyg,30042
457
483
  imio/smartweb/core/upgrades/upgrades.py,sha256=SZHVeYODErjQZR_LzQ0cxBnJoqWRWsIiRpUhNTMiz7k,8295
458
484
  imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
459
485
  imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
@@ -567,6 +593,21 @@ imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.NewsView.x
567
593
  imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Page.xml,sha256=nLcb2onLazsotJrFKTriUlR7gXAyMm1gOdMPDGCXr0M,307
568
594
  imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.PortalPage.xml,sha256=h9d7ik0t38bivtJ4iVbO4UJ-hpURQ1jLiTP2Jp3KVqk,313
569
595
  imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Procedure.xml,sha256=lLd6CWzYpZZoHP_bktcV7m5i1BebkPXF4u7fo7oJhxY,312
596
+ imio/smartweb/core/upgrades/profiles/1055_to_1056/types/imio.smartweb.SectionFiles.xml,sha256=oTc9d6l88GaP311Vs6l0tD8PQ1cwBuWyKt2ekUzkBEU,327
597
+ imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.EventsView.xml,sha256=JDQg8aqGh4i45Y7og0EDTntvFn5OUc8Cg8HEbVpJi4E,302
598
+ imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.NewsView.xml,sha256=-NDk8X-QskdvTDldVfoXSIJkt2qEvcJSmN3tBW8NTs8,300
599
+ imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionEvents.xml,sha256=9cd5zF8L3WL6TYE0ex3ZlYH4ONbP0M-jFJ74IP8akKE,305
600
+ imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionNews.xml,sha256=XsqAUoZdtKibYQjXeWRqH5xp3mpf_qQGE_KfvcYfBg8,303
601
+ imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.cfg,sha256=ZPHpBAMGIhTL3fkalAwTiWBTpUPeYsUMNR7UmF61LpA,310
602
+ imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.xml,sha256=BApommxfwLILSw0vfk7crMoj99vEiPqbirjdXf_BzBM,3007
603
+ imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.cfg,sha256=Q164kppiNOFkWqotf7py4Zh_4MkPqlaAXSg2BYkv9uE,320
604
+ imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.xml,sha256=okHtdO00hhQGzUFRmzFrg2EuQcPpAGE8jkhTjDxniHk,5197
605
+ imio/smartweb/core/upgrades/profiles/1058_to_1059/registry/linkedin-icon.xml,sha256=yRqHetbTAolpNDMdGzY8j0UBicgf_bYz-XVCmiUWCEk,5512
606
+ imio/smartweb/core/upgrades/profiles/1059_to_1060/registry/iadeliberation.xml,sha256=NDTqM4kD3pGu8IlCX_7sWLtQQ75tnHzS06kgSS7C0nQ,249
607
+ imio/smartweb/core/upgrades/profiles/1060_to_1061/types.xml,sha256=J9Ol_US14WMtzJ3mOP-6KqFs05kV8Jm_JV45bSOzIy4,178
608
+ imio/smartweb/core/upgrades/profiles/1060_to_1061/workflows.xml,sha256=V6BtsGLA7R-PgfzfwB50vbA9Hexas_Gg8hZGJIKRMb0,171
609
+ imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.Publication.xml,sha256=qac_W2czX6n7zibt_jzopRWcuEIvQzEqm9x_HKMCthc,1259
610
+ imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.SectionFiles.xml,sha256=wF7MUhCzPt134TwwqKogRC-9iu_ugpOdri48b4AfAG4,312
570
611
  imio/smartweb/core/viewlets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
571
612
  imio/smartweb/core/viewlets/actions.py,sha256=QWj_pLNxH4223XPk4b4Dc79DiajF0HHfaXlUmXTwJ8k,661
572
613
  imio/smartweb/core/viewlets/arcgis_header.pt,sha256=iQc5ZG3g1Cmap963OG-wPotllr7oWmVSMoAnA7tctrQ,3428
@@ -576,17 +617,19 @@ imio/smartweb/core/viewlets/category.pt,sha256=JElI8UGE7Lk-Uhf2KsKlTlX3EvqPdjmgk
576
617
  imio/smartweb/core/viewlets/category.py,sha256=F8Vqxy3686-jY6ymjvZJFtK1Kj2a8Sqj8tAC37ZsCOU,308
577
618
  imio/smartweb/core/viewlets/chatbot.pt,sha256=ataC2OtLpEawvrIZnM9vR8ChLfwkeMl78tOieSGpvSM,611
578
619
  imio/smartweb/core/viewlets/chatbot.py,sha256=WgY4PQ7hZAuMRdACxRmwAs7-71Vl-h1Jk7CM1YPc6b0,329
579
- imio/smartweb/core/viewlets/configure.zcml,sha256=gZjomt1JTfe-LqS9HdBG46O0rBEzOLh4SAVLZ_-DEyg,13035
620
+ imio/smartweb/core/viewlets/configure.zcml,sha256=iL-fUS2RJFyIWxZebBF1t9datKSLAZviep3WxmKHAs8,13828
580
621
  imio/smartweb/core/viewlets/default_page_warning.pt,sha256=nw1G01jkmyY776NMmSxg-7ZHuNcZkzbrrZirTaRVyXY,531
581
622
  imio/smartweb/core/viewlets/external_content.py,sha256=YeTvnnfnAS1jsgsqvwTmYjjOHxg9BYX1MlQPNef_HkA,558
582
- imio/smartweb/core/viewlets/footer.pt,sha256=PbbXe2krY6DvCFWidShbo5XU9PATf8smpGM3N33vhkw,872
583
- imio/smartweb/core/viewlets/footer.py,sha256=gYAkDWA7mhf5QsFxGR41ZvxyoLzHxtUV1aqH_256-nI,3229
623
+ imio/smartweb/core/viewlets/footer.pt,sha256=KZVvks-NtSzAoQTTMClTUy0M07r0kgbd6B6bgKXVaK4,1103
624
+ imio/smartweb/core/viewlets/footer.py,sha256=pzhepBKL_vjpSrfS_0IMyEVzZ_PHfzIOt7IgSIuUbkU,3455
584
625
  imio/smartweb/core/viewlets/header.py,sha256=QcKtG0KJjLMyChOQblwyTcCc3Qj7_bOzHTmvVRS8lJg,367
585
626
  imio/smartweb/core/viewlets/header_actions.pt,sha256=LNpems7Hm_pm1ksgolKaTS63o8JpkvnLLBKusrtP7Ik,577
586
627
  imio/smartweb/core/viewlets/header_actions_viewlet.pt,sha256=8XzyvcdvhyWneUrv7FUXyHMF2ghDUgldqVv7zP6TEfw,129
587
628
  imio/smartweb/core/viewlets/header_top_viewlet.pt,sha256=nn7AhTim_4yfhxevbW1-UsQ62tREyFZhZKq1FODmccc,137
588
629
  imio/smartweb/core/viewlets/herobanner.pt,sha256=Zg7Hv44VkU5FZ7T0RcuDCcZ7oDcvVX5HQyiVrPU62bU,688
589
630
  imio/smartweb/core/viewlets/herobanner.py,sha256=RkuqUWY7pXcSgIW7amSnJCi5MzGDbjWHtuUAes0yhgc,1359
631
+ imio/smartweb/core/viewlets/htmx.py,sha256=ylacmUstXdyZbr4gDSo9VaymBTI8c4dEDKEUP83A810,309
632
+ imio/smartweb/core/viewlets/htmx_js_header.pt,sha256=0ziSf-kyaOvD30Xdru0kYIbXBruKx73vsxfnKSQ-JTY,2844
590
633
  imio/smartweb/core/viewlets/httpheaders.py,sha256=-bLAtb_N5wNCe9yoQ_5hcw5Ok74uEwjsDvbiKM0uQEY,389
591
634
  imio/smartweb/core/viewlets/interfaces.py,sha256=guKxKhsi93k2GXX5Ohw-wAdxwZKxstQScUjLvi7jJ94,498
592
635
  imio/smartweb/core/viewlets/lead_image.py,sha256=z7MVIBEcdmjR53TYCP60YHi-6fgUz7RHbK82GtfDjKk,318
@@ -601,11 +644,11 @@ imio/smartweb/core/viewlets/odwb_widget_header.pt,sha256=bmtPkjfd40fwOqsCL1sQFCn
601
644
  imio/smartweb/core/viewlets/offcanvas.pt,sha256=VfHFI9WoDqcm5nfJ-OTHACnJn0F5PfEE4FXZFzPM3JQ,613
602
645
  imio/smartweb/core/viewlets/offcanvas.py,sha256=3VE2WJcvSKp3oAKYwGuwaHYMoK_83KMksMFDa75u52Y,129
603
646
  imio/smartweb/core/viewlets/ogp_tag_header.pt,sha256=XRWkdZS2oI7W0X1oJSskpXS9dMmxSxSx_7XWb-Q2aBk,1007
604
- imio/smartweb/core/viewlets/ogptags.py,sha256=V8iLXV3gXQZpTdbtefDmySitWpXznHKZmQcwmaxAxr4,4638
647
+ imio/smartweb/core/viewlets/ogptags.py,sha256=ZbrOVs7bqV5Trx6izolncbuXkaiZRmd6v6E8L8f9hEI,4902
605
648
  imio/smartweb/core/viewlets/procedure.pt,sha256=gLwNuikgXsWMnBybKdFeKfkfDKnI3SlrU3y2z8sVt5k,602
606
649
  imio/smartweb/core/viewlets/procedure.py,sha256=7nqBU_Sl5tcQaV_UNM-2BPLc8vogCzTO6kQlu4hwofI,633
607
650
  imio/smartweb/core/viewlets/searchbox.pt,sha256=Wv0DbGTKif1z_SDl9-FQKIAPJcfFAHHO1qOtR-LtnR4,403
608
- imio/smartweb/core/viewlets/social.py,sha256=stsP-nhT03xkmP_g0tJLS13ahdgEgHbYfKXb2FNJmQs,207
651
+ imio/smartweb/core/viewlets/social.py,sha256=gau_zEDo1IM9ZeYWPHjNl-eMTwbmO23lxFSWf-DO9uk,1187
609
652
  imio/smartweb/core/viewlets/subsite.py,sha256=2MFX2UukohUDybF7lDklcmgtY2Z0MaFdHU2cFfiBkDo,4218
610
653
  imio/smartweb/core/viewlets/subsite_header_viewlet.pt,sha256=v0sSWJeSdUcsFygVh9UHRaf204abjZniMbaRs3eC9BQ,137
611
654
  imio/smartweb/core/viewlets/subsite_logo.pt,sha256=6htSau-jXv0psDpzSyWc74fePaGk5-yI8sUH46vfoFE,503
@@ -619,101 +662,104 @@ imio/smartweb/core/webcomponents/README.md,sha256=u-1KMiYzChIOe3BNY1paacCEVsxRit
619
662
  imio/smartweb/core/webcomponents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
620
663
  imio/smartweb/core/webcomponents/babel.config.json,sha256=GLMlFLD4qaaNVuRWogON3geyD75eqVm6cN4RAGwPt3g,194
621
664
  imio/smartweb/core/webcomponents/configure.zcml,sha256=WiA01XuVcc4VgxrvFCztR2nPMCBp2dGIgpIZv6WdJ7s,263
622
- imio/smartweb/core/webcomponents/package.json,sha256=7-eY65xDxAPUdBUMXxIaRLGct_N75aeX3ZABoJoDBoE,2626
665
+ imio/smartweb/core/webcomponents/package.json,sha256=BGp-GZVH_TDJeD_aQKFRtco4aA7foy0FAmxQnsF0PGo,2682
623
666
  imio/smartweb/core/webcomponents/postcss.config.js,sha256=C6AOPegqTEkRboXRWl6obj0priHtdSRiApehW4TWp8E,101
624
667
  imio/smartweb/core/webcomponents/webpack.config.js,sha256=ie90xYAH82rUaPv41_7v-eXTDADH55Z-V9v9gptDC6s,6852
625
668
  imio/smartweb/core/webcomponents/webpackPlonePlugin.js,sha256=TWpGoEYRBOKB7o0SJ1F7P0hLYflkNmbODG7ZCyrPjQw,2226
669
+ imio/smartweb/core/webcomponents/build/1c1605a5fe9a2b10a88f.png,sha256=Cb6KqnaSCP5isfAk74z-ZfuqtoFbNE9Lo4ozBSkwF_c,97
670
+ imio/smartweb/core/webcomponents/build/524db40e119aa11f4478.png,sha256=JK-ueaiNfx8gY2iMP95WLzWZ0NYmDsvMXFbXPU7dj2A,94
671
+ imio/smartweb/core/webcomponents/build/57d3b7cb1ab874660b39.svg,sha256=-1fU9xu8fp0ZFdlbbxPCbHcvWe7omZGAqB5OVr9Yo1s,96
672
+ imio/smartweb/core/webcomponents/build/6cf03871df23ed2ee8b3.png,sha256=Mue1OF4liw_owHzSf2VG7a-K_yKaOLZmdDlw0wLZhtg,99
626
673
  imio/smartweb/core/webcomponents/build/assets/layers-2x.8f2c4d11474275fbc1614b9098334eae.png,sha256=Bm2sqFDY_77wB68AsG6sABVyje4nnFHzy2xxbffELt8,1259
627
674
  imio/smartweb/core/webcomponents/build/assets/layers.416d91365b44e4b4f4777663e6f009f3.png,sha256=Hbvp0CjikvNvy6j4s6KNXokydU_CIVuaxp5M3s9RB8Y,696
628
- imio/smartweb/core/webcomponents/build/assets/location-bla.1423bcce16ddcb21141430cac1428dc1.svg,sha256=mtr6d8H-n35MSio-pKxEMZoybUpQL6-1MVu4i5dX52g,348
629
675
  imio/smartweb/core/webcomponents/build/assets/marker-icon.2b3e1faf89f94a4835397e7a43b4f77d.png,sha256=V0w6XMqF9BFAhbaEFZbWLwDXyJLHsD8oy_owHesdxDc,1466
630
- imio/smartweb/core/webcomponents/build/assets/next-react-white.819cb069ac8eec300a9db6a7707712d6.svg,sha256=qs4ObGT7DOCS5wOj78P856Fh1ej1FVwJgvD1XiGBaMA,628
631
- imio/smartweb/core/webcomponents/build/assets/next-react.17bc43ff4a6a86f4520f5782f6a89a72.svg,sha256=mclkssHy8TQDpSI4A8rYyoOdfoTSGnQqeFU2UuEzjFY,628
632
676
  imio/smartweb/core/webcomponents/build/assets/oeil-big.f32cd1df1274a9593de0c4bd8e344216.svg,sha256=xVSktVFHmBKwOQJL8yM4LmPmoNChGoz6RBS7d5QZuUQ,433
633
677
  imio/smartweb/core/webcomponents/build/assets/pin-react-active.07d154037a15be5525b823fdc626cf29.svg,sha256=XgE72Zg25rWhDFtpgRTh6pSWc0utqIobzbez4RYC3kA,330
634
678
  imio/smartweb/core/webcomponents/build/assets/pin-react.fda934b5daf26dd4da2a71a7e7e44431.svg,sha256=kXxN_F5nCL1SUuSvO7dsVz2BCk6lyembEe0ZcDUjEUQ,336
635
- imio/smartweb/core/webcomponents/build/assets/search.57bdbf5b191499cd77514097d1c4972c.svg,sha256=VYkbBVirrqBaye-75ns8tcpEqjqpOiXd2CbIqo-M384,426
636
- imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css,sha256=RAuqwQNGRKsO-OoizH8D1jc5G5TsZ13lmVidugXOkxI,3723
637
- imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css,sha256=G10WK4UESO3eAK0etubOUQXWHxOqVie3qF2UpHD9SVI,20208
638
- imio/smartweb/core/webcomponents/build/css/686.smartweb-webcomponents-compiled.css,sha256=Mp3pTXBrP_v0NW5m-e9w1actEgQ1miCzhHQPgUhqV-8,44400
639
- imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css,sha256=G01aWrjSrqqGtx9v5r1tqdiSBsmVi6L2oQuvBsmGgNg,2371
640
- imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=XwlmuRc67NLiiC1_zTPUAGaMboXMvpYZUP8P9VsUcjE,4411
641
- imio/smartweb/core/webcomponents/build/js/209.smartweb-webcomponents-compiled.js,sha256=dF9QLTt5pN3peP1FTwwgch5dOoR60H_UjSXFwgSk6dI,152956
642
- imio/smartweb/core/webcomponents/build/js/209.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
643
- imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js,sha256=zZZ8TE7sP9KKDW-POH8Mm4rZyRdujz7AIZr3sudJjq4,264490
644
- imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=tUd9UGffQmBkRHLQk0laQX3euJ0uJQLOS6tylIKc6hI,376
645
- imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=zkyfrn3wQwpMGD3OcEl42mdccHqJVmjncad7CFAOXps,26184
646
- imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=OB-LRIAO9U2PYxpKp54V6m8fTxAlneuuJFW2kiI-7_c,34098
647
- imio/smartweb/core/webcomponents/build/js/568.smartweb-webcomponents-compiled.js,sha256=x9eZkL_KFIGVCvweRBwGCod-pfK7F8kfEoeSra90JUc,322203
648
- imio/smartweb/core/webcomponents/build/js/568.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=v5J6MpKlBkEf_tYHUPZKh9UqDk_Ook7trinXU07XiBM,368
649
- imio/smartweb/core/webcomponents/build/js/674.smartweb-webcomponents-compiled.js,sha256=RFSH6-Wied8bA6Z1SYybhF5N8wa-AEG1EmMCruYrEKM,137551
650
- imio/smartweb/core/webcomponents/build/js/674.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=euEy6zLvyR2bywaOKBw2hW-9rDEbt5IPelh6VIDyL4Y,361
651
- imio/smartweb/core/webcomponents/build/js/686.smartweb-webcomponents-compiled.js,sha256=MM-FcUNgZEc_Z203TVdmzuaTLYESDGLVEVYCu0agfnY,36149
652
- imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js,sha256=90qN6cuJxbMyt68nBvbOHVIfiqeVDQO9KWhg1cIGaL4,17266
679
+ imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css,sha256=ZoYufYnSdoiuqmC56hEVhJsjwI3qe6X2QfezMIY1lrE,8243
680
+ imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css,sha256=9CwbA0J60QC8l_HQZ0u6abP3iN3usuD8CGijKBJumh8,24072
681
+ imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css,sha256=4lpV-6NaisDZFzo7YchHTyOOp5FJxNNz2cblWJBaQC8,48102
682
+ imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css,sha256=cmIujPCjesquXQEUFlVnQo1PkkBNk5Ed81I0xqbap_I,2727
683
+ imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=8hmanCh14XmP_dHe95rehsNzWu5SbH2JfdGugeS-PJc,4575
684
+ imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js,sha256=mb8qvqSSicnVlLJHxWAGgrTkNHv-_vbSP0fEfmm3VXo,415156
685
+ imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=9CksAZD8HmkPS0n0IpNDiIs-Rz7g4WGlxIAiWXg1SPg,338
686
+ imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=XXhBLWqYZuCO6tAunorjcUgLr57nhrwP3IJnCygyJFQ,55974
687
+ imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=srGNtnoNHz0w5OlaCDZLtTP8yBsDypbLTNk4qjsLvTU,317
688
+ imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=Ri_q8m-uVehIVeIQQl1_tn90t8a3t-Z5lDY5wWBBA3Q,41382
689
+ imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js,sha256=C4DEpTuaRR0KAUgH9winSpJYpPwOHAOMUdreD7DaX6A,143081
690
+ imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=eNJ8gc9n9IF8nW1d9sI9niuHstYzjNz5vqXx9UgWSPc,249
691
+ imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js,sha256=FA5QfzUfmlsrCL5il1pWsT4gxkVTfYb_iyz7ccFlO8A,17404
653
692
  imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=R14i0Dp6JC2AOtJVaegrZVAe22i9niDnCBKa5vn7QVc,59
654
- imio/smartweb/core/webcomponents/build/js/804.smartweb-webcomponents-compiled.js,sha256=ryr4QksNBWUD5TSgzBKvZlOgs-g9PB5dDyJE97QxQ3E,150566
655
- imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=561os4HqEsEhIyQw6qpQ75W1WoYqOEL2veVJqy1xm7w,13972
656
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=IpxgYzUK204SYugpGCcgeFKn8HOZlK_fNpx-L_Tbfcs,399350
657
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=MWaSlPSODUyzTS-6uhTd6MYi8HGJgjOtFyvm2-GJi4U,1035
693
+ imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js,sha256=ca082EaYXpsgjIeedTCxHiJ_-RO09R2WQ28L21QEMrk,153293
694
+ imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
695
+ imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js,sha256=gckUhUY-I6BDU1bXCwf_QTQYepQYrk9jd3ILCp4f6vE,174992
696
+ imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=-3_bgdYPth5WaLi7KThLMFaeIhyLEDdatZAaOJMVBvI,680
697
+ imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=ygNQDzogjjhZjdzkids77ptwudcDiuMxPP_oQyd60kM,47264
698
+ imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=RrMPAIBn91DeRGcWP6YGH9yX48eDaqnXBnWaAbw1NbM,15159
699
+ imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js,sha256=YLKWqrbFtX1Q2I0gtWEbu7HTVAXe6kbOCWw6CeW8r7Y,299300
700
+ imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=A-v1lwmuIX1DpNJ1MDzKDMWv7f_d6cjHlGOCEvthhdY,50
701
+ imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=5c8fUfQ6RV0Got867_AU3WxfnGpzGcmtQHvRnoM7b9I,413903
702
+ imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=FYZFcv_VsY7Ef-afd5tLGRLLk9j84PX0P_ciZvbFli0,968
658
703
  imio/smartweb/core/webcomponents/src/index.jsx,sha256=WV70VNETdsIMADJ5EqajwxQ6WacMbhw5Z_91fVDti_Y,757
659
- imio/smartweb/core/webcomponents/src/index.scss,sha256=1Nw2CweoA3EqyaUt_wGB3fs5XAD_LMQU2zfrMeZn7ks,5511
704
+ imio/smartweb/core/webcomponents/src/index.scss,sha256=K4w5Tnaf6X_wLUNeMCU6IFZQ8BobZeINSIBgruRIp4I,5881
660
705
  imio/smartweb/core/webcomponents/src/assets/close.svg,sha256=YRqTcPuokfqTclWe7mP06MOMzGAZxQikUO9XMeSwIg8,478
661
- imio/smartweb/core/webcomponents/src/assets/facebook-news.svg,sha256=L6N244vnAQv93gnI1Y4DIDYFrS504oNFd8GmVOcmxj0,799
662
706
  imio/smartweb/core/webcomponents/src/assets/img-placeholder-bla.png,sha256=aC1DNJvkOZB5Bg2TWrzBSyg-RgzF9PRaRRx2mI6kChg,9538
663
707
  imio/smartweb/core/webcomponents/src/assets/location-active-bla.svg,sha256=4I_3G_3oLBPGayxnuutFmbHb9v5lwG9XWQoT1htvbTM,369
664
- imio/smartweb/core/webcomponents/src/assets/location-bla.svg,sha256=mtr6d8H-n35MSio-pKxEMZoybUpQL6-1MVu4i5dX52g,348
665
708
  imio/smartweb/core/webcomponents/src/assets/next-react-white.svg,sha256=qs4ObGT7DOCS5wOj78P856Fh1ej1FVwJgvD1XiGBaMA,628
666
- imio/smartweb/core/webcomponents/src/assets/next-react.svg,sha256=mclkssHy8TQDpSI4A8rYyoOdfoTSGnQqeFU2UuEzjFY,628
667
709
  imio/smartweb/core/webcomponents/src/assets/oeil-big.svg,sha256=xVSktVFHmBKwOQJL8yM4LmPmoNChGoz6RBS7d5QZuUQ,433
668
710
  imio/smartweb/core/webcomponents/src/assets/pin-active.svg,sha256=zc_TdNv5UxGL30wyf83gasRYR2_PLzL3zS22LXVaJd4,884
669
711
  imio/smartweb/core/webcomponents/src/assets/pin-react-active.svg,sha256=XgE72Zg25rWhDFtpgRTh6pSWc0utqIobzbez4RYC3kA,330
670
712
  imio/smartweb/core/webcomponents/src/assets/pin-react.svg,sha256=kXxN_F5nCL1SUuSvO7dsVz2BCk6lyembEe0ZcDUjEUQ,336
671
713
  imio/smartweb/core/webcomponents/src/assets/pin.svg,sha256=-6a-6Jyc3EJteH1X5eFtPUCCz4FQeWKkVhMKHDhmbzI,890
672
- imio/smartweb/core/webcomponents/src/assets/search.svg,sha256=VYkbBVirrqBaye-75ns8tcpEqjqpOiXd2CbIqo-M384,426
673
- imio/smartweb/core/webcomponents/src/assets/skeleton.svg,sha256=Dmiuh5l9BjAqJkMN0IKg6iT3wJCcD8Dda1QQt4wul9g,453
674
714
  imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
675
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=J2zVCXHakWL1jaqR830LJE5Gmt1RSQmqb8yx3WF-Lp4,8696
676
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=78FKZeFxXyJbG_XgY3Nq46h0lJSwR6F3BXa7U_yl9m8,9078
677
- imio/smartweb/core/webcomponents/src/components/Annuaire/index.js,sha256=OhysAmFEBw6Jg0F2iko4IGL8VcX0kZ8IZZ30tMWUY1c,97
678
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=y1GX404CtQo_J8k8GdfAs_hE6TKqj5rUfhp2AV-ke5E,4875
679
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=0JpzZ7h2yH4_nLISj4S1qq7_kL9kNOohm1yumjRlMIs,30366
680
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
681
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=f29vSRLPHpKkM3NskRYMKhIenRK2FXb_-Gi0DrdjAQM,1619
682
- imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=Q0Vq2EHYdGdGiYVhgYJAX23He8TSedQtXvRWY-kd9r8,7637
683
- imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=FGTyemePNCUmTVSDvGjzaQBlR31ZGPOIELljLvBXrl0,8893
684
- imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=NYjgqNEJNXNPRYr60dIqt6MxX8Lbkv3GCcBE5K6CpIk,9042
715
+ imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=26OQ4Ejh7ozOfvuC3XmvzVHeOR81EeMp1rwPhsRWvTM,11456
716
+ imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=AjCOYP4W98OgH7vGlGxTcPJSFkfMWU1TDlcFYcwMNes,12408
717
+ imio/smartweb/core/webcomponents/src/components/Annuaire/index.js,sha256=A26LlWeszwIzqu15SiEZ_mcb4NSaChAbT7d4GWEyVlY,96
718
+ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=yBbE4fl6Q-DvGLIN1er7izF507SpYHB5_SCkXPHVYYY,6647
719
+ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=PlRdrd_wapcZSsbwmR8wChCWOKwO_J99GIG2F37vK_Q,38783
720
+ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=_UbuWGN_Goao7BXlW19rIuvoj_2X7JkXBN8KXqOvbS8,2309
721
+ imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=yg7k4KgIOprikaOImjO-Mh7r83tbw0rgkc3YprQ72_4,13423
722
+ imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=L3bThj_F-dmhSSyqtC3VHbggVM-bSY-gmVZmyRzAtgg,12271
723
+ imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=FnRLuNcwtp9ngCKGsi_P18xhPmGNHQ_kMoWr4V5mZHE,12705
685
724
  imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
686
- imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=eQlCR9UgXJATOmXFQzPphNrPP1zcjgKkCdbFmg-W8BU,1649
687
- imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=4CB4UpTx3wYc1dzSY1hEaQjfQlSnkDEeTyoYWi6eFZY,16417
688
- imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=Ld4BT7t1Ooopy60bK3e_giBe8sV97EH0vtWp1PtcawM,1604
689
- imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=ITXewyOqvW5V5GPh9AGC2dfkR-BzGdYWSnPpxaimW6w,7488
690
- imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=Fd7d0psVS-TPgahertKH14W3oglthsZljXSAWVHuFsM,5542
691
- imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss,sha256=RM34RrKuYxA6fHOb5i-yZ7_ud2fQPRt82p2OhKOCZdM,1575
692
- imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=4HG08iV8-fkqXlILgIosKIrHm54FItrfXElXy32xhJY,6773
693
- imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=1RnZHhLGYzwVWejfw4TbjyTEsiyn_Ajd2SQCF21aiYA,3260
725
+ imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=CYb-6E5sfgIXFNc2-2dpajBsBggITh-pxqEkiPiJw0M,3586
726
+ imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=DalaaRT7dn9bIrrYqYTxFNXzSFGfiTL3A5xq25lSWl0,37006
727
+ imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=IE3u7O46ZF-wA0pu5WFT-lW84-l993mZVHei6JUmuBc,2414
728
+ imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=Onfa6fL2f1vTt4sAsYNNWA1uHgMR7an10b3IaMpRL1k,15951
729
+ imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=XKiN7Y8CFz48IluCEmyqTpSbBa6hvF4BjPcAZYKqKaQ,5949
730
+ imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss,sha256=zccyw3yhc4k2GU_RYl7fJn7tZOz6DMDA2PGGK8SLmNQ,3233
731
+ imio/smartweb/core/webcomponents/src/components/Filters/IamData.jsx,sha256=_Yvc0AZMTwRmrycvZlUsV1ipCCq8G-yeVHOv89y8tnQ,751
732
+ imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss,sha256=jdwWv8ASnzpmeC_Y2AULS99C9ksQCNLaJMmiSebCGzc,4508
733
+ imio/smartweb/core/webcomponents/src/components/Filters/PublicTargetData.jsx,sha256=X7N2li7AH0kmQPWMGhntioDFjoPRIqqT5QTK9OCgvvk,1808
734
+ imio/smartweb/core/webcomponents/src/components/Filters/SelectStyles.js,sha256=lXSYovMyRUC9TjLDEn03_rcXJhAB2sTqBdc0E7hadJE,1288
735
+ imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.jsx,sha256=EznTS_9zVa9kzZ_XqFtKbJh5swZgnfkZfT9AnRfpEy4,5649
736
+ imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.scss,sha256=fOA6Znq6BAl2spfGXefHwE3F0BPbL51RuQbPUC_HII4,1415
737
+ imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=_-Wb2Sa-8WEdtJe_HR6Ew0GPveM-2PgPKpaKFk5WHto,10056
738
+ imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=X1qIeoDjtWre2kj7jitnXDKzMpByV1x6PB6bgSAIuaQ,5187
694
739
  imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
695
- imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx,sha256=LrcbrO3TBBqEmv27es3iD2Ahsqq5Qi8DxnshrDVc5s8,6249
696
- imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx,sha256=2vgkR-on4YunRjbM8TbdhPi9tW4xqLJFzFZwrd0uHnQ,2717
697
- imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=wPrm4AGr-Zqnv_AycanqCbkKeOTYePN2F3OiH-bfdzU,12227
698
- imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=7_tcdPolbIsTnyJ1pJWTrIIACG36jXBnnJk_PZuY6A0,1419
699
- imio/smartweb/core/webcomponents/src/components/Search/Search.jsx,sha256=ET85GKablcsD-u8kZlCvpJGOMnnU3hdmq_Q36EQtuYY,2472
700
- imio/smartweb/core/webcomponents/src/components/Search/Search.scss,sha256=cXrAbnVpUB6UPuF-DhM5juOQy8aDP2ZkXlDH6S_r3lo,2735
701
- imio/smartweb/core/webcomponents/src/components/Search/index.js,sha256=9-31nRb1gWthMG0e4q7k52nPq3Ia4w3WkqnCjbupZpo,95
702
- imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx,sha256=LXUPndaENY9CoYNXznawGcPFWKuWJOHOOLUsaZ39eww,2598
703
- imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx,sha256=PnO-h7LOWdahY97_2snIQkDAvkCyoBokckJGgw2uu-E,2596
704
- imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx,sha256=1_6MhcIyfwxuXKu2Fenib8WAyn8cLsffmqbR94Xw-HI,7447
705
- imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx,sha256=HbkM3XfPs-4Lw3LRa1xVs_6XS1X6iHuxPTW3B0ZpM_Y,2622
706
- imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx,sha256=ON2MDiAi996jICCiiVO8SoyjauLU9VrgQ-LwJIxTrCk,1997
707
- imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=EP0YppioHn490jbnFAW4PsQUdUtAd8EJxQaCb2X0kSo,1153
708
- imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js,sha256=fGxgxCI22ERSlVLCYmD0-nztnGUIz-VkUNyLtj5HSuo,223
709
- imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=ulMbtvMcmV0Af4lhYtkkShvjJ9_s3Ik5x4FfIz_QGsE,5071
710
- imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=Ht5NXE7K1HohmDv4BOaE4Z0mhnqtKqYbBuEiP371Uho,73
711
- imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=moAliiuT_AY84BD2JUlSPH0Yj5h8EOyk5jhyQ9dCot0,6638
740
+ imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx,sha256=_jPvqsdg6QHNBkC7erySX-s5sgBh35X8B3P2LgxcsBw,9598
741
+ imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx,sha256=sYJbhbW2FgV79xpXaFKM3NuKY08NkFZhMOMVPOLesB4,3941
742
+ imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=fRopUUNQ4j2jaCScr6dsQsqvJmFbfFKM20lCvX9zYRs,20142
743
+ imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=aDgfW-TXeahzRMoubSNCR0mmKrzG2MJraJc2fKwO2SQ,3703
744
+ imio/smartweb/core/webcomponents/src/components/Search/Search.jsx,sha256=mAXFJr2BmOjAe8-F9qeaWKvUhsOOBad-UKZ_QSwESmQ,2461
745
+ imio/smartweb/core/webcomponents/src/components/Search/Search.scss,sha256=PEeXhoIcLGB4s6Suqz5ouwpwrG3Ry7Wt1nT3WjZmd_g,3551
746
+ imio/smartweb/core/webcomponents/src/components/Search/index.js,sha256=_UM9GrZj8bAVS_Pw7yaGkRL0CrfjqO93a10PQh1a_xI,94
747
+ imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx,sha256=f6Gw4NoDC5z5HSsXXJ7jNfqfkhMDKENGijUdw1lM2y8,2904
748
+ imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx,sha256=nvE0IRwVzHe66y-6re0mAjwqjrIEE1E-ZJ_MQA8tkL0,2902
749
+ imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx,sha256=4CzlZHGE0GQDcrAb2bUGfiyRsYPEmT59_BA_BSQ_F_o,7440
750
+ imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx,sha256=NW9CnEhRMI1jCRlzsYJ17zfMuMZpz9pN7EM3uiXY8WQ,2893
751
+ imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx,sha256=SlZZ1fN0Bg6swT9C03-4t0zSEPciBoVAPsbQVH5dgbI,2230
752
+ imio/smartweb/core/webcomponents/src/hooks/ScrollContext.jsx,sha256=s9bnwrWBvP3hKyNV99kGpKKmSP85Zd5G3Eh8uhkXBas,85
753
+ imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=Iz72CNBW85km1ejPm056ewMBgjClzpNmjh9hVPE7Hek,1156
754
+ imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js,sha256=3OhVCCDmzRQCxs-x14UhwiCaqn2aqpwxL4sypt1nlEo,165
755
+ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=cYuZykMIaLjr4KiLvmS4aYG4CPy8LljjYJzLwmaN98g,5283
756
+ imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=xXWz0O-JBwSZrzz2XeQdN4nZEOjppU2sVFtlLQOitQ8,77
757
+ imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=5YDHwdaRNWFWOgyNd7YejoAdcDvnvAENo3Xn0GDT8P8,8941
712
758
  imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
713
- imio.smartweb.core-1.2.37.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
714
- imio.smartweb.core-1.2.37.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
715
- imio.smartweb.core-1.2.37.dist-info/METADATA,sha256=76D4K51HG2MRlS-2zOTjdMcWzxbqCsqpj37p4D-dkDs,50451
716
- imio.smartweb.core-1.2.37.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
717
- imio.smartweb.core-1.2.37.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
718
- imio.smartweb.core-1.2.37.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
719
- imio.smartweb.core-1.2.37.dist-info/RECORD,,
759
+ imio.smartweb.core-1.2.79.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
760
+ imio.smartweb.core-1.2.79.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
761
+ imio.smartweb.core-1.2.79.dist-info/METADATA,sha256=8qQwZdjYtW1ce-54c_8Qrbsm-GC8xTphWWNJptzoN1E,58870
762
+ imio.smartweb.core-1.2.79.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
763
+ imio.smartweb.core-1.2.79.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
764
+ imio.smartweb.core-1.2.79.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
765
+ imio.smartweb.core-1.2.79.dist-info/RECORD,,