imio.smartweb.core 1.1.10__tar.gz → 1.2.61__tar.gz

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 (1054) hide show
  1. imio.smartweb.core-1.2.61/CHANGES.rst +2365 -0
  2. imio.smartweb.core-1.2.61/DEVELOP.rst +37 -0
  3. imio.smartweb.core-1.2.61/PKG-INFO +2554 -0
  4. imio.smartweb.core-1.2.61/requirements.txt +4 -0
  5. imio.smartweb.core-1.2.61/setup.py +95 -0
  6. imio.smartweb.core-1.2.61/src/imio/smartweb/core/behaviors/categorization.py +24 -0
  7. imio.smartweb.core-1.2.61/src/imio/smartweb/core/behaviors/configure.zcml +64 -0
  8. imio.smartweb.core-1.2.61/src/imio/smartweb/core/behaviors/orientation.py +18 -0
  9. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/configure.zcml +138 -0
  10. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/controlpanel.py +177 -0
  11. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/dashboards/configure.zcml +15 -0
  12. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/dashboards/plausible.pt +29 -0
  13. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/dashboards/plausible.py +18 -0
  14. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/faceted/block_view.pt +45 -0
  15. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/faceted/configure.zcml +113 -0
  16. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/faceted/map.pt +105 -0
  17. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/faceted/map.py +39 -0
  18. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/faceted/summary_view.pt +45 -0
  19. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/faceted/views.py +42 -0
  20. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/forms.py +26 -0
  21. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/overrides/plone.app.content.browser.contents.templates.properties.pt +48 -0
  22. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/redirect_to_main_react_view.py +52 -0
  23. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/search/search.pt +16 -0
  24. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/search/search.py +73 -0
  25. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/sitemap.py +148 -0
  26. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/action-delete.svg +3 -0
  27. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/action-e-guichet.svg +1 -0
  28. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/action-email.svg +1 -0
  29. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/action-engagement-2.svg +4 -0
  30. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/action-engagement.svg +1 -0
  31. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/action-nous-contacter.svg +1 -0
  32. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/action-nous-rejoindre.svg +2 -0
  33. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/action-organiser-un-evenement.svg +1 -0
  34. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/action-panneaux.svg +3 -0
  35. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/action-signaler-un-probleme.svg +1 -0
  36. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/action-voir-plan.svg +1 -0
  37. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/action-vote.svg +3 -0
  38. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-associations.svg +1 -0
  39. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-attention.svg +3 -0
  40. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-avis-et-enquetes.svg +1 -0
  41. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-cinema.svg +1 -0
  42. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-commerce.svg +1 -0
  43. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-concert.svg +1 -0
  44. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-culture.svg +1 -0
  45. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-demarches.svg +1 -0
  46. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-enfance.svg +1 -0
  47. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-enseignement.svg +1 -0
  48. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-environnement-gestion-des-dechets.svg +1 -0
  49. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-exposition.svg +1 -0
  50. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-horaires.svg +3 -0
  51. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-infos-travaux-2.svg +4 -0
  52. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-infos-travaux.svg +1 -0
  53. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-mandataires.svg +1 -0
  54. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-mobilite.svg +1 -0
  55. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-mon-dossier.svg +1 -0
  56. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-nature.svg +3 -0
  57. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-parc-de-stationnement.svg +1 -0
  58. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-parcs-a-conteneurs.svg +4 -0
  59. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-parcs-et-jardins.svg +1 -0
  60. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-plus.svg +3 -0
  61. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-primes-2.svg +5 -0
  62. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-primes.svg +1 -0
  63. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-sport-courir.svg +1 -0
  64. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-sport-natation.svg +4 -0
  65. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-sport-velo.svg +3 -0
  66. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/categorie-tourisme.svg +3 -0
  67. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/organisation-academie-musique.svg +1 -0
  68. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/organisation-centre-sportif.svg +1 -0
  69. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/organisation-cpas.svg +1 -0
  70. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/organisation-ecole-des-arts.svg +1 -0
  71. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/organisation-ecole-sac.svg +4 -0
  72. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/organisation-ecole.svg +1 -0
  73. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/organisation-mobilite.svg +3 -0
  74. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/organisation-scout.svg +3 -0
  75. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/reseausocial-behance.svg +3 -0
  76. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/reseausocial-facebook.svg +1 -0
  77. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/reseausocial-linkedin.svg +3 -0
  78. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/reseausocial-twitter.svg +3 -0
  79. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/reseausocial-vimeo.svg +3 -0
  80. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/reseausocial-youtube.svg +1 -0
  81. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/vue-actualites.svg +1 -0
  82. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/vue-agenda.svg +1 -0
  83. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/icons/vue-annuaire.svg +3 -0
  84. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/smartweb-edit-compiled.css +1 -0
  85. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/smartweb-edit-compiled.js +1 -0
  86. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/smartweb-swiperconfig-compiled.js +1 -0
  87. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/smartweb-view-compiled.js +1 -0
  88. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/src/edit.js +50 -0
  89. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/src/edit.less +114 -0
  90. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/src/swiper-config.js +46 -0
  91. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/src/view.js +106 -0
  92. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/swiper-bundle.min.css +13 -0
  93. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/swiper-bundle.min.js +14 -0
  94. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/static/webpack.config.js +44 -0
  95. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/utils.py +80 -0
  96. imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/vocabulary.py +40 -0
  97. imio.smartweb.core-1.2.61/src/imio/smartweb/core/configure.zcml +41 -0
  98. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/__init__.py +61 -0
  99. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/configure.zcml +27 -0
  100. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/cropping.py +39 -0
  101. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/folder/block_view.pt +35 -0
  102. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/folder/content.py +88 -0
  103. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/folder/summary_view.pt +36 -0
  104. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/folder/views.py +158 -0
  105. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/pages/cirkwi/content.py +29 -0
  106. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/pages/cirkwi/view.py +18 -0
  107. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/pages/portal_page/view.py +11 -0
  108. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/pages/view.pt +81 -0
  109. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/pages/views.py +140 -0
  110. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/base.py +87 -0
  111. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/configure.zcml +16 -0
  112. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/directory/content.py +38 -0
  113. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/directory/endpoint.py +80 -0
  114. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/directory/view.pt +18 -0
  115. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/directory/view.py +19 -0
  116. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/events/content.py +56 -0
  117. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/events/endpoint.py +76 -0
  118. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/events/view.pt +22 -0
  119. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/events/view.py +31 -0
  120. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/news/content.py +33 -0
  121. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/news/endpoint.py +76 -0
  122. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/news/view.pt +20 -0
  123. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/news/view.py +23 -0
  124. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/search/endpoint.py +263 -0
  125. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/traversal.py +18 -0
  126. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/utils.py +98 -0
  127. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/view.py +38 -0
  128. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/collection/content.py +86 -0
  129. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/collection/views.py +40 -0
  130. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/common_templates/carousel.pt +121 -0
  131. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/common_templates/table.pt +143 -0
  132. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/configure.zcml +93 -0
  133. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/contact/configure.zcml +47 -0
  134. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/contact/content.py +84 -0
  135. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/contact/macros.pt +208 -0
  136. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/contact/utils.py +133 -0
  137. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/contact/view.pt +32 -0
  138. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/contact/view.py +33 -0
  139. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/events/content.py +102 -0
  140. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/events/macros.pt +32 -0
  141. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/events/view.py +105 -0
  142. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/external_content/configure.zcml +51 -0
  143. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/external_content/content.py +37 -0
  144. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/external_content/view.pt +54 -0
  145. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/external_content/view_arcgis.pt +148 -0
  146. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/external_content/view_idelux_waste.pt +50 -0
  147. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/external_content/view_inbw_containers_affluence.pt +91 -0
  148. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/external_content/view_odwb_widget.pt +20 -0
  149. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/external_content/views.py +408 -0
  150. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/files/content.py +32 -0
  151. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/files/view.py +34 -0
  152. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/gallery/content.py +27 -0
  153. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/gallery/view.pt +54 -0
  154. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/gallery/views.py +13 -0
  155. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/links/view.py +38 -0
  156. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/macros.pt +140 -0
  157. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/news/content.py +102 -0
  158. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/news/view.py +95 -0
  159. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/selections/content.py +47 -0
  160. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/selections/view.py +42 -0
  161. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/text/configure.zcml +37 -0
  162. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/text/content.py +36 -0
  163. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/text/forms.py +49 -0
  164. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/text/view.pt +37 -0
  165. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/text/views.py +15 -0
  166. imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/views.py +149 -0
  167. imio.smartweb.core-1.2.61/src/imio/smartweb/core/interfaces.py +48 -0
  168. imio.smartweb.core-1.2.61/src/imio/smartweb/core/permissions.zcml +77 -0
  169. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/actions.xml +118 -0
  170. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/diff_tool.xml +8 -0
  171. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/metadata.xml +22 -0
  172. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/registry/plone.xml +79 -0
  173. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/repositorytool.xml +9 -0
  174. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/rolemap.xml +88 -0
  175. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/taxonomies/page_category.xml +73 -0
  176. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/taxonomies/procedure_category.xml +118 -0
  177. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/Collection.xml +13 -0
  178. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/File.xml +13 -0
  179. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/Image.xml +13 -0
  180. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.BlockLink.xml +46 -0
  181. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.CirkwiView.xml +43 -0
  182. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.DirectoryView.xml +44 -0
  183. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml +45 -0
  184. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Folder.xml +69 -0
  185. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml +45 -0
  186. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Page.xml +65 -0
  187. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.PortalPage.xml +68 -0
  188. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Procedure.xml +64 -0
  189. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionCollection.xml +43 -0
  190. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionContact.xml +34 -0
  191. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml +44 -0
  192. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionExternalContent.xml +36 -0
  193. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml +45 -0
  194. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionGallery.xml +40 -0
  195. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml +37 -0
  196. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionLinks.xml +45 -0
  197. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionMap.xml +34 -0
  198. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml +44 -0
  199. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionPostit.xml +34 -0
  200. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml +44 -0
  201. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml +33 -0
  202. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml +34 -0
  203. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionText.xml +37 -0
  204. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml +35 -0
  205. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/types.xml +30 -0
  206. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/default/workflows.xml +24 -0
  207. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/icons/basic/registry.xml +518 -0
  208. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/icons/contenttypes/registry.xml +209 -0
  209. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/testing/types/Collection.xml +19 -0
  210. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/testing/types/imio.smartweb.DirectoryView.xml +11 -0
  211. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/testing/types/imio.smartweb.EventsView.xml +11 -0
  212. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/testing/types/imio.smartweb.NewsView.xml +11 -0
  213. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles/validation/contentrules.xml +102 -0
  214. imio.smartweb.core-1.2.61/src/imio/smartweb/core/profiles.zcml +69 -0
  215. imio.smartweb.core-1.2.61/src/imio/smartweb/core/rest/authentic_sources.py +115 -0
  216. imio.smartweb.core-1.2.61/src/imio/smartweb/core/rest/configure.zcml +119 -0
  217. imio.smartweb.core-1.2.61/src/imio/smartweb/core/setuphandlers.py +32 -0
  218. imio.smartweb.core-1.2.61/src/imio/smartweb/core/subscribers.py +108 -0
  219. imio.smartweb.core-1.2.61/src/imio/smartweb/core/subscribers.zcml +24 -0
  220. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/resources/json_contact_images_raw_mock.json +22 -0
  221. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/resources/json_contact_raw_mock.json +328 -0
  222. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/resources/json_rest_directory.json +696 -0
  223. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/resources/json_rest_events.json +682 -0
  224. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/resources/json_rest_events_with_breadcrumbs.json +103 -0
  225. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/resources/json_rest_news.json +684 -0
  226. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/resources/json_rest_specific_events.json +24 -0
  227. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/resources/json_rest_specific_news.json +42 -0
  228. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_banner.py +182 -0
  229. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_cropping.py +150 -0
  230. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_faceted.py +156 -0
  231. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_folder.py +389 -0
  232. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_footer.py +287 -0
  233. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_htmx_in_sections.py +131 -0
  234. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_icons.py +66 -0
  235. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_minisite.py +413 -0
  236. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_plausibleview.py +91 -0
  237. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_redirect_to_main_react_view.py +79 -0
  238. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_rest.py +629 -0
  239. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_section_contact.py +571 -0
  240. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_section_events.py +150 -0
  241. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_section_external_content.py +106 -0
  242. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_section_news.py +140 -0
  243. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_section_sendinblue.py +73 -0
  244. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_sections.py +596 -0
  245. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_sitemap.py +174 -0
  246. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_social.py +79 -0
  247. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_text.py +115 -0
  248. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_toolbar.py +96 -0
  249. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_utils.py +94 -0
  250. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_vocabularies.py +297 -0
  251. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/test_vocabulary.py +43 -0
  252. imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests/utils.py +111 -0
  253. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/configure.zcml +858 -0
  254. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/types/imio.smartweb.CirkwiView.xml +42 -0
  255. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1037_to_1038/registry/plausible.xml +9 -0
  256. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/rolemap.xml +12 -0
  257. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.Page.xml +11 -0
  258. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.PortalPage.xml +11 -0
  259. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.Procedure.xml +11 -0
  260. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.SectionExternalContent.xml +36 -0
  261. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types.xml +4 -0
  262. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/workflows.xml +6 -0
  263. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1039_to_1040/types/imio.smartweb.SectionSlide.xml +14 -0
  264. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1040_to_1041/types/imio.smartweb.SectionText.xml +17 -0
  265. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionContact.xml +14 -0
  266. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionEvents.xml +14 -0
  267. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionExternalContent.xml +15 -0
  268. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionFiles.xml +14 -0
  269. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionGallery.xml +15 -0
  270. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionLinks.xml +14 -0
  271. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionMap.xml +15 -0
  272. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionNews.xml +14 -0
  273. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionPostit.xml +14 -0
  274. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSelections.xml +14 -0
  275. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSendinblue.xml +14 -0
  276. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionVideo.xml +15 -0
  277. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1045_to_1046/registry/plone.xml +18 -0
  278. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1045_to_1046/types/imio.smartweb.SectionExternalContent.xml +16 -0
  279. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1046_to_1047/types/imio.smartweb.Folder.xml +22 -0
  280. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/registry/plone.xml +18 -0
  281. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.DirectoryView.xml +25 -0
  282. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.EventsView.xml +25 -0
  283. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.Folder.xml +24 -0
  284. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.NewsView.xml +25 -0
  285. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionCollection.xml +15 -0
  286. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionContact.xml +15 -0
  287. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionEvents.xml +15 -0
  288. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionExternalContent.xml +17 -0
  289. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionLinks.xml +15 -0
  290. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionNews.xml +15 -0
  291. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionSelections.xml +15 -0
  292. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1051_to_1052/actions.xml +20 -0
  293. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1052_to_1053/diff_tool.xml +8 -0
  294. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1052_to_1053/repositorytool.xml +9 -0
  295. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1052_to_1053/types/imio.smartweb.SectionHTML.xml +14 -0
  296. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1053_to_1054/registry.xml +39 -0
  297. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/Collection.xml +13 -0
  298. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/File.xml +13 -0
  299. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/Image.xml +13 -0
  300. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.BlockLink.xml +12 -0
  301. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.CirkwiView.xml +12 -0
  302. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.DirectoryView.xml +12 -0
  303. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.EventsView.xml +12 -0
  304. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Folder.xml +12 -0
  305. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.NewsView.xml +12 -0
  306. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Page.xml +12 -0
  307. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.PortalPage.xml +12 -0
  308. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Procedure.xml +12 -0
  309. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1055_to_1056/types/imio.smartweb.SectionFiles.xml +12 -0
  310. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.EventsView.xml +11 -0
  311. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.NewsView.xml +11 -0
  312. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionEvents.xml +11 -0
  313. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionNews.xml +11 -0
  314. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.cfg +9 -0
  315. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.xml +73 -0
  316. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.cfg +9 -0
  317. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.xml +118 -0
  318. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/profiles/1058_to_1059/registry/linkedin-icon.xml +126 -0
  319. imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/upgrades.py +229 -0
  320. imio.smartweb.core-1.2.61/src/imio/smartweb/core/utils.py +198 -0
  321. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/__init__.py +0 -0
  322. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/arcgis_header.pt +143 -0
  323. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/banner.py +62 -0
  324. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/configure.zcml +409 -0
  325. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/external_content.py +22 -0
  326. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/footer.pt +28 -0
  327. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/footer.py +98 -0
  328. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/htmx.py +15 -0
  329. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/htmx_js_header.pt +59 -0
  330. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/httpheaders.py +13 -0
  331. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/interfaces.py +20 -0
  332. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/odwb_widget_header.pt +19 -0
  333. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/offcanvas.pt +13 -0
  334. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/ogp_tag_header.pt +19 -0
  335. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/ogptags.py +144 -0
  336. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/social.py +30 -0
  337. imio.smartweb.core-1.2.61/src/imio/smartweb/core/viewlets/toolbar.py +197 -0
  338. imio.smartweb.core-1.2.61/src/imio/smartweb/core/vocabularies.py +630 -0
  339. imio.smartweb.core-1.2.61/src/imio/smartweb/core/vocabularies.zcml +172 -0
  340. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/__init__.py +0 -0
  341. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/1c1605a5fe9a2b10a88f.png +1 -0
  342. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/524db40e119aa11f4478.png +1 -0
  343. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/57d3b7cb1ab874660b39.svg +1 -0
  344. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/6cf03871df23ed2ee8b3.png +1 -0
  345. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css +1 -0
  346. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css +1 -0
  347. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css +1 -0
  348. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css +1 -0
  349. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +1 -0
  350. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +2 -0
  351. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt +16 -0
  352. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/324.smartweb-webcomponents-compiled.js +2 -0
  353. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/324.smartweb-webcomponents-compiled.js.LICENSE.txt +32 -0
  354. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +2 -0
  355. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js.LICENSE.txt +10 -0
  356. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -0
  357. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js +2 -0
  358. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js.LICENSE.txt +9 -0
  359. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js +2 -0
  360. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js +2 -0
  361. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js.LICENSE.txt +4 -0
  362. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -0
  363. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -0
  364. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js +2 -0
  365. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt +3 -0
  366. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +2 -0
  367. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt +38 -0
  368. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/package.json +82 -0
  369. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg +1 -0
  370. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx +279 -0
  371. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +519 -0
  372. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +129 -0
  373. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +522 -0
  374. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx +59 -0
  375. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx +323 -0
  376. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Annuaire/index.js +2 -0
  377. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx +56 -0
  378. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx +588 -0
  379. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx +64 -0
  380. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +299 -0
  381. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Events/Events.scss +582 -0
  382. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx +373 -0
  383. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx +136 -0
  384. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss +104 -0
  385. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Filters/IamData.jsx +42 -0
  386. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss +227 -0
  387. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Filters/PublicTargetData.jsx +94 -0
  388. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Filters/SelectStyles.js +58 -0
  389. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.jsx +149 -0
  390. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.scss +70 -0
  391. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx +232 -0
  392. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/News/News.jsx +224 -0
  393. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/News/News.scss +217 -0
  394. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx +84 -0
  395. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +282 -0
  396. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx +55 -0
  397. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx +76 -0
  398. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx +76 -0
  399. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx +205 -0
  400. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx +76 -0
  401. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Search/Search.jsx +63 -0
  402. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Search/Search.scss +147 -0
  403. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx +64 -0
  404. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/components/Search/index.js +2 -0
  405. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/hooks/ScrollContext.jsx +3 -0
  406. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/hooks/useAxios.js +40 -0
  407. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js +7 -0
  408. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/index.scss +332 -0
  409. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/utils/Map.jsx +159 -0
  410. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/utils/Map.scss +7 -0
  411. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/src/utils/translation.js +381 -0
  412. imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/webpack.config.js +174 -0
  413. imio.smartweb.core-1.2.61/src/imio.smartweb.core.egg-info/PKG-INFO +2554 -0
  414. imio.smartweb.core-1.2.61/src/imio.smartweb.core.egg-info/SOURCES.txt +765 -0
  415. imio.smartweb.core-1.2.61/src/imio.smartweb.core.egg-info/requires.txt +33 -0
  416. imio.smartweb.core-1.1.10/CHANGES.rst +0 -1471
  417. imio.smartweb.core-1.1.10/DEVELOP.rst +0 -37
  418. imio.smartweb.core-1.1.10/PKG-INFO +0 -1630
  419. imio.smartweb.core-1.1.10/requirements.txt +0 -4
  420. imio.smartweb.core-1.1.10/setup.py +0 -93
  421. imio.smartweb.core-1.1.10/src/imio/smartweb/core/behaviors/configure.zcml +0 -50
  422. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/configure.zcml +0 -97
  423. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/controlpanel.py +0 -153
  424. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/faceted/block_view.pt +0 -42
  425. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/faceted/configure.zcml +0 -99
  426. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/faceted/gallery_view.pt +0 -38
  427. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/faceted/map.pt +0 -106
  428. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/faceted/map.py +0 -37
  429. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/faceted/summary_view.pt +0 -42
  430. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/faceted/views.py +0 -41
  431. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/forms.py +0 -26
  432. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/search/search.pt +0 -15
  433. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/search/search.py +0 -69
  434. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/action-e-guichet.svg +0 -1
  435. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/action-email.svg +0 -1
  436. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/action-engagement.svg +0 -1
  437. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/action-nous-contacter.svg +0 -1
  438. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/action-nous-rejoindre.svg +0 -1
  439. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/action-organiser-un-evenement.svg +0 -1
  440. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/action-signaler-un-probleme.svg +0 -1
  441. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/action-voir-plan.svg +0 -1
  442. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-associations.svg +0 -1
  443. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-avis-et-enquetes.svg +0 -1
  444. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-cinema.svg +0 -1
  445. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-commerce.svg +0 -1
  446. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-concert.svg +0 -1
  447. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-culture.svg +0 -1
  448. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-demarches.svg +0 -1
  449. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-enfance.svg +0 -1
  450. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-enseignement.svg +0 -1
  451. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-environnement-gestion-des-dechets.svg +0 -1
  452. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-exposition.svg +0 -1
  453. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-horaires.svg +0 -3
  454. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-infos-travaux.svg +0 -1
  455. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-mandataires.svg +0 -1
  456. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-mobilite.svg +0 -1
  457. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-mon-dossier.svg +0 -1
  458. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-parc-de-stationnement.svg +0 -1
  459. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-parcs-et-jardins.svg +0 -1
  460. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-primes.svg +0 -1
  461. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-sport-courir.svg +0 -1
  462. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-sport-velo.svg +0 -3
  463. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/categorie-tourisme.svg +0 -3
  464. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/organisation-academie-musique.svg +0 -1
  465. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/organisation-centre-sportif.svg +0 -1
  466. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/organisation-cpas.svg +0 -1
  467. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/organisation-ecole-des-arts.svg +0 -1
  468. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/organisation-ecole.svg +0 -1
  469. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/organisation-mobilite.svg +0 -3
  470. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/reseausocial-facebook.svg +0 -1
  471. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/reseausocial-twitter.svg +0 -13
  472. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/reseausocial-vimeo.svg +0 -3
  473. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/reseausocial-youtube.svg +0 -1
  474. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/vue-actualites.svg +0 -1
  475. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/vue-agenda.svg +0 -1
  476. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/icons/vue-annuaire.svg +0 -3
  477. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/smartweb-edit-compiled.css +0 -1
  478. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/smartweb-edit-compiled.js +0 -1
  479. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/smartweb-view-compiled.js +0 -1
  480. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/src/edit.js +0 -15
  481. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/src/edit.less +0 -60
  482. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/src/view.js +0 -140
  483. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/swiper-bundle.min.css +0 -13
  484. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/swiper-bundle.min.js +0 -13
  485. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/static/webpack.config.js +0 -42
  486. imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/utils.py +0 -75
  487. imio.smartweb.core-1.1.10/src/imio/smartweb/core/configure.zcml +0 -40
  488. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/__init__.py +0 -28
  489. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/configure.zcml +0 -24
  490. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/cropping.py +0 -19
  491. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/folder/block_view.pt +0 -31
  492. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/folder/content.py +0 -87
  493. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/folder/summary_view.pt +0 -33
  494. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/folder/views.py +0 -155
  495. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/pages/cirkwi/content.py +0 -24
  496. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/pages/cirkwi/view.py +0 -17
  497. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/pages/portal_page/view.py +0 -8
  498. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/pages/view.pt +0 -78
  499. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/pages/views.py +0 -136
  500. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/base.py +0 -52
  501. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/configure.zcml +0 -9
  502. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/directory/content.py +0 -31
  503. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/directory/endpoint.py +0 -56
  504. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/directory/view.pt +0 -15
  505. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/directory/view.py +0 -12
  506. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/events/content.py +0 -36
  507. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/events/endpoint.py +0 -58
  508. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/events/view.pt +0 -16
  509. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/events/view.py +0 -12
  510. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/news/content.py +0 -27
  511. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/news/endpoint.py +0 -54
  512. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/news/view.pt +0 -16
  513. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/news/view.py +0 -12
  514. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/search/endpoint.py +0 -235
  515. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/view.py +0 -23
  516. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/collection/content.py +0 -86
  517. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/collection/views.py +0 -37
  518. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/common_templates/carousel.pt +0 -114
  519. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/common_templates/table.pt +0 -136
  520. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/configure.zcml +0 -74
  521. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/contact/configure.zcml +0 -38
  522. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/contact/content.py +0 -76
  523. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/contact/view.pt +0 -219
  524. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/contact/view.py +0 -302
  525. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/events/content.py +0 -94
  526. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/events/macros.pt +0 -35
  527. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/events/view.py +0 -94
  528. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/files/content.py +0 -32
  529. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/files/view.py +0 -31
  530. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/gallery/content.py +0 -27
  531. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/gallery/view.pt +0 -55
  532. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/gallery/views.py +0 -13
  533. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/links/view.py +0 -35
  534. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/macros.pt +0 -114
  535. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/news/content.py +0 -94
  536. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/news/view.py +0 -84
  537. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/selections/content.py +0 -47
  538. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/selections/view.py +0 -39
  539. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/text/configure.zcml +0 -43
  540. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/text/content.py +0 -48
  541. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/text/forms.py +0 -47
  542. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/text/view.pt +0 -36
  543. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/text/views.py +0 -13
  544. imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/views.py +0 -61
  545. imio.smartweb.core-1.1.10/src/imio/smartweb/core/interfaces.py +0 -26
  546. imio.smartweb.core-1.1.10/src/imio/smartweb/core/permissions.zcml +0 -71
  547. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/actions.xml +0 -103
  548. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/metadata.xml +0 -21
  549. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/registry/plone.xml +0 -62
  550. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/repositorytool.xml +0 -8
  551. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/rolemap.xml +0 -82
  552. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/taxonomies/page_category.xml +0 -57
  553. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/taxonomies/procedure_category.xml +0 -92
  554. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.BlockLink.xml +0 -41
  555. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.CirkwiView.xml +0 -42
  556. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.DirectoryView.xml +0 -42
  557. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml +0 -42
  558. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Folder.xml +0 -66
  559. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml +0 -42
  560. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Page.xml +0 -63
  561. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.PortalPage.xml +0 -66
  562. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Procedure.xml +0 -62
  563. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionCollection.xml +0 -42
  564. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionContact.xml +0 -34
  565. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml +0 -43
  566. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml +0 -45
  567. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionGallery.xml +0 -41
  568. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml +0 -38
  569. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionLinks.xml +0 -45
  570. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionMap.xml +0 -35
  571. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml +0 -43
  572. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionPostit.xml +0 -35
  573. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml +0 -44
  574. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml +0 -34
  575. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml +0 -35
  576. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionText.xml +0 -38
  577. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml +0 -36
  578. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/types.xml +0 -29
  579. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/default/workflows.xml +0 -23
  580. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/icons/basic/registry.xml +0 -398
  581. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles/testing/types/Collection.xml +0 -18
  582. imio.smartweb.core-1.1.10/src/imio/smartweb/core/profiles.zcml +0 -53
  583. imio.smartweb.core-1.1.10/src/imio/smartweb/core/setuphandlers.py +0 -31
  584. imio.smartweb.core-1.1.10/src/imio/smartweb/core/subscribers.py +0 -54
  585. imio.smartweb.core-1.1.10/src/imio/smartweb/core/subscribers.zcml +0 -19
  586. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/resources/json_contact_images_raw_mock.json +0 -56
  587. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/resources/json_contact_raw_mock.json +0 -314
  588. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/resources/json_rest_directory.json +0 -48
  589. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/resources/json_rest_events.json +0 -187
  590. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/resources/json_rest_events_with_breadcrumbs.json +0 -472
  591. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/resources/json_rest_news.json +0 -75
  592. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/resources/json_rest_specific_events.json +0 -41
  593. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/resources/json_rest_specific_news.json +0 -54
  594. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_banner.py +0 -182
  595. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_cropping.py +0 -124
  596. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_faceted.py +0 -135
  597. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_folder.py +0 -368
  598. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_footer.py +0 -287
  599. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_icons.py +0 -66
  600. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_minisite.py +0 -413
  601. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_rest.py +0 -283
  602. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_section_contact.py +0 -499
  603. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_section_events.py +0 -62
  604. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_section_news.py +0 -76
  605. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_section_sendinblue.py +0 -73
  606. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_sections.py +0 -556
  607. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_social.py +0 -79
  608. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_text.py +0 -115
  609. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_toolbar.py +0 -62
  610. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_utils.py +0 -61
  611. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/test_vocabularies.py +0 -291
  612. imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests/utils.py +0 -96
  613. imio.smartweb.core-1.1.10/src/imio/smartweb/core/upgrades/configure.zcml +0 -518
  614. imio.smartweb.core-1.1.10/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/types/imio.smartweb.CirkwiView.xml +0 -42
  615. imio.smartweb.core-1.1.10/src/imio/smartweb/core/upgrades/upgrades.py +0 -150
  616. imio.smartweb.core-1.1.10/src/imio/smartweb/core/utils.py +0 -147
  617. imio.smartweb.core-1.1.10/src/imio/smartweb/core/viewlets/banner.py +0 -61
  618. imio.smartweb.core-1.1.10/src/imio/smartweb/core/viewlets/configure.zcml +0 -343
  619. imio.smartweb.core-1.1.10/src/imio/smartweb/core/viewlets/footer.pt +0 -23
  620. imio.smartweb.core-1.1.10/src/imio/smartweb/core/viewlets/footer.py +0 -93
  621. imio.smartweb.core-1.1.10/src/imio/smartweb/core/viewlets/offcanvas.pt +0 -12
  622. imio.smartweb.core-1.1.10/src/imio/smartweb/core/viewlets/social.py +0 -7
  623. imio.smartweb.core-1.1.10/src/imio/smartweb/core/viewlets/toolbar.py +0 -95
  624. imio.smartweb.core-1.1.10/src/imio/smartweb/core/vocabularies.py +0 -593
  625. imio.smartweb.core-1.1.10/src/imio/smartweb/core/vocabularies.zcml +0 -160
  626. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/assets/img-placeholder-bla.a2b8b384c46ce56c99f042dc4625d309.png +0 -0
  627. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/assets/location-bla.1423bcce16ddcb21141430cac1428dc1.svg +0 -1
  628. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/assets/next-react-white.819cb069ac8eec300a9db6a7707712d6.svg +0 -1
  629. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/assets/next-react.17bc43ff4a6a86f4520f5782f6a89a72.svg +0 -1
  630. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/assets/search.57bdbf5b191499cd77514097d1c4972c.svg +0 -1
  631. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/css/195.smartweb-webcomponents-compiled.css +0 -1
  632. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/css/323.smartweb-webcomponents-compiled.css +0 -1
  633. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/css/510.smartweb-webcomponents-compiled.css +0 -1
  634. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/css/552.smartweb-webcomponents-compiled.css +0 -1
  635. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +0 -1
  636. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js +0 -2
  637. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/195.smartweb-webcomponents-compiled.js +0 -1
  638. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js +0 -2
  639. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -1
  640. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/462.smartweb-webcomponents-compiled.js +0 -1
  641. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/510.smartweb-webcomponents-compiled.js +0 -1
  642. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/552.smartweb-webcomponents-compiled.js +0 -1
  643. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/650.smartweb-webcomponents-compiled.js +0 -2
  644. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/650.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -16
  645. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/842.smartweb-webcomponents-compiled.js +0 -2
  646. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/842.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -1
  647. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js +0 -2
  648. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -4
  649. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js +0 -2
  650. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -642
  651. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +0 -2
  652. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt +0 -41
  653. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/package.json +0 -78
  654. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/assets/facebook-news.svg +0 -1
  655. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/assets/location-bla.svg +0 -1
  656. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/assets/next-react.svg +0 -1
  657. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/assets/search.svg +0 -1
  658. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/assets/skeleton.svg +0 -1
  659. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx +0 -222
  660. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +0 -250
  661. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +0 -97
  662. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +0 -266
  663. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx +0 -42
  664. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactMap/ContactMap.jsx +0 -156
  665. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactMap/ContactMap.scss +0 -7
  666. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx +0 -210
  667. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Skeleton/LoaderCss.jsx +0 -7
  668. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Skeleton/Skeleton.jsx +0 -20
  669. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Annuaire/index.js +0 -2
  670. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Events/ContactCard/ContactCard.jsx +0 -50
  671. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Events/ContactContent/ContactContent.jsx +0 -387
  672. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Events/ContactList/ContactList.jsx +0 -42
  673. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Events/ContactMap/ContactMap.jsx +0 -156
  674. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +0 -222
  675. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Events/Events.scss +0 -377
  676. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx +0 -178
  677. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Events/Skeleton/Skeleton.jsx +0 -20
  678. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/News/ContactCard/ContactCard.jsx +0 -75
  679. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/News/ContactContent/ContactContent.jsx +0 -261
  680. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/News/ContactList/ContactList.jsx +0 -37
  681. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/News/ContactMap/ContactMap.jsx +0 -127
  682. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/News/ContactMap/ContactMap.scss +0 -4
  683. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx +0 -176
  684. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/News/News.jsx +0 -162
  685. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/News/News.scss +0 -191
  686. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/News/Skeleton/Skeleton.jsx +0 -20
  687. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx +0 -51
  688. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx +0 -62
  689. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx +0 -186
  690. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx +0 -62
  691. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Search/Search.jsx +0 -58
  692. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Search/Search.scss +0 -118
  693. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Search/Skeleton/Skeleton.jsx +0 -20
  694. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx +0 -51
  695. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Search/index.js +0 -2
  696. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/hooks/useAxios.js +0 -43
  697. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js +0 -8
  698. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/index.scss +0 -265
  699. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/utils/translation.js +0 -112
  700. imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/webpack.config.js +0 -174
  701. imio.smartweb.core-1.1.10/src/imio.smartweb.core.egg-info/PKG-INFO +0 -1630
  702. imio.smartweb.core-1.1.10/src/imio.smartweb.core.egg-info/SOURCES.txt +0 -638
  703. imio.smartweb.core-1.1.10/src/imio.smartweb.core.egg-info/requires.txt +0 -33
  704. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/CONTRIBUTORS.rst +0 -0
  705. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/LICENSE.GPL +0 -0
  706. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/LICENSE.rst +0 -0
  707. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/MANIFEST.in +0 -0
  708. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/README.rst +0 -0
  709. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/docs/conf.py +0 -0
  710. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/docs/index.rst +0 -0
  711. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/setup.cfg +0 -0
  712. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/__init__.py +0 -0
  713. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/__init__.py +0 -0
  714. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/__init__.py +0 -0
  715. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/behaviors/__init__.py +0 -0
  716. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/behaviors/listing.py +0 -0
  717. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/behaviors/minisite.py +0 -0
  718. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/behaviors/quickaccess.py +0 -0
  719. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/behaviors/subsite.py +0 -0
  720. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/__init__.py +0 -0
  721. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/banner/__init__.py +0 -0
  722. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/banner/configure.zcml +0 -0
  723. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/banner/settings.py +0 -0
  724. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/faceted → imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/dashboards}/__init__.py +0 -0
  725. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/faceted/widgets → imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/faceted}/__init__.py +0 -0
  726. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/faceted/macros.pt +0 -0
  727. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/footer → imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/faceted/widgets}/__init__.py +0 -0
  728. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/faceted/widgets/configure.zcml +0 -0
  729. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/faceted/widgets/select.pt +0 -0
  730. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/faceted/widgets/select.py +0 -0
  731. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/herobanner → imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/footer}/__init__.py +0 -0
  732. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/footer/configure.zcml +0 -0
  733. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/footer/settings.py +0 -0
  734. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/instancebehaviors → imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/herobanner}/__init__.py +0 -0
  735. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/herobanner/configure.zcml +0 -0
  736. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/herobanner/settings.py +0 -0
  737. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/icons.py +0 -0
  738. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/minisite → imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/instancebehaviors}/__init__.py +0 -0
  739. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/instancebehaviors/configure.zcml +0 -0
  740. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/instancebehaviors/form.py +0 -0
  741. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/instancebehaviors/utils.py +0 -0
  742. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/layout.py +0 -0
  743. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/search → imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/minisite}/__init__.py +0 -0
  744. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/minisite/configure.zcml +0 -0
  745. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/minisite/settings.py +0 -0
  746. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/overrides/.gitkeep +0 -0
  747. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/overrides/plone.app.layout.viewlets.sections.pt +0 -0
  748. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/browser/subsite → imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/search}/__init__.py +0 -0
  749. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/search/configure.zcml +0 -0
  750. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/static/.gitkeep +0 -0
  751. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/static/Makefile +0 -0
  752. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/static/icons/categorie-sport-trophee.svg +0 -0
  753. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/static/icons/categorie-theatre.svg +0 -0
  754. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/static/icons/organisation-bibliotheque.svg +0 -0
  755. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/static/icons/organisation-police.svg +0 -0
  756. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/static/icons/reseausocial-facebook-pouce.svg +0 -0
  757. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/static/icons/reseausocial-instagram.svg +0 -0
  758. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/static/package.json +0 -0
  759. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/static/smartweb-view-compiled.css +0 -0
  760. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/static/spotlight-bundle.js +0 -0
  761. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/static/src/view.less +0 -0
  762. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/blocks → imio.smartweb.core-1.2.61/src/imio/smartweb/core/browser/subsite}/__init__.py +0 -0
  763. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/subsite/configure.zcml +0 -0
  764. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/subsite/settings.py +0 -0
  765. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/browser/templates/link_input.pt +0 -0
  766. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/config.py +0 -0
  767. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/blocks/link → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/blocks}/__init__.py +0 -0
  768. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/blocks/configure.zcml +0 -0
  769. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/folder → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/blocks/link}/__init__.py +0 -0
  770. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/blocks/link/configure.zcml +0 -0
  771. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/blocks/link/content.py +0 -0
  772. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/blocks/link/fields.py +0 -0
  773. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/blocks/link/icons_input.pt +0 -0
  774. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/blocks/subscriber.py +0 -0
  775. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/pages → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/folder}/__init__.py +0 -0
  776. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/folder/configure.zcml +0 -0
  777. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/folder/element_view.pt +0 -0
  778. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/folder/macros.pt +0 -0
  779. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/pages/cirkwi → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/pages}/__init__.py +0 -0
  780. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/pages/footer → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/pages/cirkwi}/__init__.py +0 -0
  781. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/cirkwi/configure.zcml +0 -0
  782. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/cirkwi/view.pt +0 -0
  783. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/configure.zcml +0 -0
  784. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/pages/herobanner → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/pages/footer}/__init__.py +0 -0
  785. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/footer/configure.zcml +0 -0
  786. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/footer/content.py +0 -0
  787. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/pages/page → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/pages/herobanner}/__init__.py +0 -0
  788. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/herobanner/configure.zcml +0 -0
  789. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/herobanner/content.py +0 -0
  790. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/pages/portal_page → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/pages/page}/__init__.py +0 -0
  791. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/page/configure.zcml +0 -0
  792. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/page/content.py +0 -0
  793. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/pages.py +0 -0
  794. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/pages/procedure → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/pages/portal_page}/__init__.py +0 -0
  795. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/portal_page/configure.zcml +0 -0
  796. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/portal_page/content.py +0 -0
  797. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/pages/procedure}/__init__.py +0 -0
  798. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/procedure/configure.zcml +0 -0
  799. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/procedure/content.py +0 -0
  800. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/procedure/utils.py +0 -0
  801. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/procedure/view.py +0 -0
  802. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/subscriber.py +0 -0
  803. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/pages/view_section.pt +0 -0
  804. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/directory → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest}/__init__.py +0 -0
  805. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/events → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/directory}/__init__.py +0 -0
  806. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/rest/directory/configure.zcml +0 -0
  807. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/news → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/events}/__init__.py +0 -0
  808. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/rest/events/configure.zcml +0 -0
  809. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/rest/search → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/news}/__init__.py +0 -0
  810. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/rest/news/configure.zcml +0 -0
  811. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/rest/search}/__init__.py +0 -0
  812. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/rest/search/configure.zcml +0 -0
  813. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/collection → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections}/__init__.py +0 -0
  814. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/base.py +0 -0
  815. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/contact → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/collection}/__init__.py +0 -0
  816. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/collection/configure.zcml +0 -0
  817. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/events → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/contact}/__init__.py +0 -0
  818. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/contact/forms.py +0 -0
  819. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/files → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/events}/__init__.py +0 -0
  820. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/events/configure.zcml +0 -0
  821. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/gallery → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/external_content}/__init__.py +0 -0
  822. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/html → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/files}/__init__.py +0 -0
  823. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/files/configure.zcml +0 -0
  824. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/links → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/gallery}/__init__.py +0 -0
  825. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/gallery/configure.zcml +0 -0
  826. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/map → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/html}/__init__.py +0 -0
  827. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/html/configure.zcml +0 -0
  828. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/html/content.py +0 -0
  829. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/html/view.pt +0 -0
  830. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/news → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/links}/__init__.py +0 -0
  831. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/links/configure.zcml +0 -0
  832. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/links/content.py +0 -0
  833. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/postit → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/map}/__init__.py +0 -0
  834. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/map/configure.zcml +0 -0
  835. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/map/content.py +0 -0
  836. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/map/view.pt +0 -0
  837. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/map/views.py +0 -0
  838. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/selections → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/news}/__init__.py +0 -0
  839. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/news/configure.zcml +0 -0
  840. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/sendinblue → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/postit}/__init__.py +0 -0
  841. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/postit/configure.zcml +0 -0
  842. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/postit/content.py +0 -0
  843. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/postit/view.py +0 -0
  844. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/slide → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/selections}/__init__.py +0 -0
  845. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/selections/configure.zcml +0 -0
  846. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/text → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/sendinblue}/__init__.py +0 -0
  847. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/sendinblue/configure.zcml +0 -0
  848. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/sendinblue/content.py +0 -0
  849. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/sendinblue/view.pt +0 -0
  850. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/sendinblue/views.py +0 -0
  851. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/contents/sections/video → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/slide}/__init__.py +0 -0
  852. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/slide/configure.zcml +0 -0
  853. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/slide/content.py +0 -0
  854. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/slide/view.pt +0 -0
  855. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/slide/view.py +0 -0
  856. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/subscriber.py +0 -0
  857. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/faceted → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/text}/__init__.py +0 -0
  858. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/tests → imio.smartweb.core-1.2.61/src/imio/smartweb/core/contents/sections/video}/__init__.py +0 -0
  859. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/video/configure.zcml +0 -0
  860. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/video/content.py +0 -0
  861. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/video/view.pt +0 -0
  862. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/contents/sections/video/views.py +0 -0
  863. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/upgrades → imio.smartweb.core-1.2.61/src/imio/smartweb/core/faceted}/__init__.py +0 -0
  864. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/faceted/config/collection.xml +0 -0
  865. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/faceted/configure.zcml +0 -0
  866. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/faceted/layout.py +0 -0
  867. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/faceted/menu.py +0 -0
  868. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/indexers.py +0 -0
  869. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/indexers.zcml +0 -0
  870. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/default/browserlayer.xml +0 -0
  871. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/default/catalog.xml +0 -0
  872. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/default/controlpanel.xml +0 -0
  873. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/default/registry/bundles.xml +0 -0
  874. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/default/registry/geolocation.xml +0 -0
  875. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/default/registry/smartweb.xml +0 -0
  876. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/default/taxonomies/page_category.cfg +0 -0
  877. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/default/taxonomies/procedure_category.cfg +0 -0
  878. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Footer.xml +0 -0
  879. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.HeroBanner.xml +0 -0
  880. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/last_compilation/registry.xml +0 -0
  881. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/testing/metadata.xml +0 -0
  882. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/testing/registry.xml +0 -0
  883. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/testing/types/Document.xml +0 -0
  884. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/testing/types/Folder.xml +0 -0
  885. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/testing/types.xml +0 -0
  886. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/profiles/uninstall/browserlayer.xml +0 -0
  887. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/viewlets → imio.smartweb.core-1.2.61/src/imio/smartweb/core/rest}/__init__.py +0 -0
  888. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/testing.py +0 -0
  889. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/testing.zcml +0 -0
  890. {imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents → imio.smartweb.core-1.2.61/src/imio/smartweb/core/tests}/__init__.py +0 -0
  891. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/cirkwi_bad_widget_mock.html +0 -0
  892. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/cirkwi_good_widget_mock.html +0 -0
  893. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_auth_sources_directory_entity.json +0 -0
  894. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_auth_sources_events_entity.json +0 -0
  895. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_auth_sources_news_entity.json +0 -0
  896. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_contact_category_raw_mock.json +0 -0
  897. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_contact_empty_schedule_raw_mock.json +0 -0
  898. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_contact_no_image_raw_mock.json +0 -0
  899. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_contacts_raw_mock.json +0 -0
  900. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_directory_entities_raw_mock.json +0 -0
  901. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_events_agendas_raw_mock.json +0 -0
  902. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_events_entities_raw_mock.json +0 -0
  903. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_events_types_raw_mock.json +0 -0
  904. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_news_entities_raw_mock.json +0 -0
  905. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_news_newsfolder_raw_mock.json +0 -0
  906. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_no_contact_raw_mock.json +0 -0
  907. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_no_newsfolder_raw_mock.json +0 -0
  908. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_procedures_raw_mock.json +0 -0
  909. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_search_one_news_entity.json +0 -0
  910. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/json_used_iam_vocabularies_jobseeker_tourist.json +0 -0
  911. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/plone.png +0 -0
  912. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/resources/plone.svg +0 -0
  913. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/robot/test_ct_folder.robot +0 -0
  914. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/robot/test_ct_page.robot +0 -0
  915. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/robot/test_ct_procedure.robot +0 -0
  916. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/robot/test_example.robot +0 -0
  917. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_behaviors.py +0 -0
  918. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_categories.py +0 -0
  919. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_chatbot.py +0 -0
  920. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_cirkwiview.py +0 -0
  921. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_default_pages.py +0 -0
  922. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_herobanner.py +0 -0
  923. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_indexes.py +0 -0
  924. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_instance_behaviors.py +0 -0
  925. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_local_roles.py +0 -0
  926. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_logo.py +0 -0
  927. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_navigation.py +0 -0
  928. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_page.py +0 -0
  929. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_portal_page.py +0 -0
  930. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_procedure.py +0 -0
  931. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_robot.py +0 -0
  932. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_search.py +0 -0
  933. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_setup.py +0 -0
  934. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/tests/test_subsite.py +0 -0
  935. /imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/src/components/Events/ContactMap/ContactMap.scss → /imio.smartweb.core-1.2.61/src/imio/smartweb/core/upgrades/__init__.py +0 -0
  936. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml +0 -0
  937. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml +0 -0
  938. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1020_to_1021/rolemap.xml +0 -0
  939. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1020_to_1021/types/imio.smartweb.SectionHTML.xml +0 -0
  940. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1021_to_1022/registry/hero-banner.xml +0 -0
  941. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1021_to_1022/rolemap.xml +0 -0
  942. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1022_to_1023/registry/icons.xml +0 -0
  943. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types/imio.smartweb.Page.xml +0 -0
  944. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types/imio.smartweb.PortalPage.xml +0 -0
  945. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types/imio.smartweb.Procedure.xml +0 -0
  946. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types/imio.smartweb.SectionPostit.xml +0 -0
  947. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types.xml +0 -0
  948. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/workflows.xml +0 -0
  949. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1025_to_1026/registry/propose-urls.xml +0 -0
  950. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1027_to_1028/registry/open-external-link-in-new-tab.xml +0 -0
  951. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1029_to_1030/actions.xml +0 -0
  952. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1029_to_1030/rolemap.xml +0 -0
  953. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1030_to_1031/registry/resources.xml +0 -0
  954. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1031_to_1032/registry/spotlight.xml +0 -0
  955. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.BlockLink.xml +0 -0
  956. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.DirectoryView.xml +0 -0
  957. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.EventsView.xml +0 -0
  958. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.Folder.xml +0 -0
  959. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.Footer.xml +0 -0
  960. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.HeroBanner.xml +0 -0
  961. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.NewsView.xml +0 -0
  962. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.Page.xml +0 -0
  963. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.PortalPage.xml +0 -0
  964. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.Procedure.xml +0 -0
  965. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionCollection.xml +0 -0
  966. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionContact.xml +0 -0
  967. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionEvents.xml +0 -0
  968. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionFiles.xml +0 -0
  969. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionGallery.xml +0 -0
  970. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionHTML.xml +0 -0
  971. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionLinks.xml +0 -0
  972. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionMap.xml +0 -0
  973. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionNews.xml +0 -0
  974. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionPostit.xml +0 -0
  975. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionSelections.xml +0 -0
  976. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionSendinblue.xml +0 -0
  977. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionSlide.xml +0 -0
  978. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionText.xml +0 -0
  979. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionVideo.xml +0 -0
  980. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.DirectoryView.xml +0 -0
  981. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.EventsView.xml +0 -0
  982. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.Folder.xml +0 -0
  983. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.NewsView.xml +0 -0
  984. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.Page.xml +0 -0
  985. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.PortalPage.xml +0 -0
  986. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.Procedure.xml +0 -0
  987. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/registry/plone.xml +0 -0
  988. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/rolemap.xml +0 -0
  989. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/types/imio.smartweb.Folder.xml +0 -0
  990. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/types.xml +0 -0
  991. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1036_to_1037/actions.xml +0 -0
  992. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/upgrades/profiles/1036_to_1037/rolemap.xml +0 -0
  993. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/actions.py +0 -0
  994. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/banner.pt +0 -0
  995. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/category.pt +0 -0
  996. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/category.py +0 -0
  997. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/chatbot.pt +0 -0
  998. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/chatbot.py +0 -0
  999. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/default_page_warning.pt +0 -0
  1000. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/header.py +0 -0
  1001. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/header_actions.pt +0 -0
  1002. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/header_actions_viewlet.pt +0 -0
  1003. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/header_top_viewlet.pt +0 -0
  1004. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/herobanner.pt +0 -0
  1005. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/herobanner.py +0 -0
  1006. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/lead_image.py +0 -0
  1007. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/logo.pt +0 -0
  1008. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/logo.py +0 -0
  1009. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/menu.py +0 -0
  1010. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/messages.py +0 -0
  1011. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/minisite.py +0 -0
  1012. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/minisite_link.pt +0 -0
  1013. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/navigation.py +0 -0
  1014. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/offcanvas.py +0 -0
  1015. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/procedure.pt +0 -0
  1016. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/procedure.py +0 -0
  1017. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/searchbox.pt +0 -0
  1018. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/subsite.py +0 -0
  1019. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/subsite_header_viewlet.pt +0 -0
  1020. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/subsite_logo.pt +0 -0
  1021. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/viewlets/subsite_navigation.pt +0 -0
  1022. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/.eslintrc.json +0 -0
  1023. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/.npmrc +0 -0
  1024. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/.prettierrc.json +0 -0
  1025. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/Makefile +0 -0
  1026. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/README.md +0 -0
  1027. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/babel.config.json +0 -0
  1028. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/build/assets/layers-2x.8f2c4d11474275fbc1614b9098334eae.png +0 -0
  1029. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/build/assets/layers.416d91365b44e4b4f4777663e6f009f3.png +0 -0
  1030. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/build/assets/marker-icon.2b3e1faf89f94a4835397e7a43b4f77d.png +0 -0
  1031. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/build/assets/oeil-big.f32cd1df1274a9593de0c4bd8e344216.svg +0 -0
  1032. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/build/assets/pin-react-active.07d154037a15be5525b823fdc626cf29.svg +0 -0
  1033. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/build/assets/pin-react.fda934b5daf26dd4da2a71a7e7e44431.svg +0 -0
  1034. /imio.smartweb.core-1.1.10/src/imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js.LICENSE.txt → /imio.smartweb.core-1.2.61/src/imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
  1035. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/configure.zcml +0 -0
  1036. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/postcss.config.js +0 -0
  1037. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/assets/close.svg +0 -0
  1038. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/assets/img-placeholder-bla.png +0 -0
  1039. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/assets/location-active-bla.svg +0 -0
  1040. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/assets/next-react-white.svg +0 -0
  1041. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/assets/oeil-big.svg +0 -0
  1042. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/assets/pin-active.svg +0 -0
  1043. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/assets/pin-react-active.svg +0 -0
  1044. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/assets/pin-react.svg +0 -0
  1045. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/assets/pin.svg +0 -0
  1046. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/components/Events/index.js +0 -0
  1047. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/components/News/index.js +0 -0
  1048. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/index.jsx +0 -0
  1049. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/src/utils/url.js +0 -0
  1050. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio/smartweb/core/webcomponents/webpackPlonePlugin.js +0 -0
  1051. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio.smartweb.core.egg-info/dependency_links.txt +0 -0
  1052. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio.smartweb.core.egg-info/namespace_packages.txt +0 -0
  1053. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio.smartweb.core.egg-info/not-zip-safe +0 -0
  1054. {imio.smartweb.core-1.1.10 → imio.smartweb.core-1.2.61}/src/imio.smartweb.core.egg-info/top_level.txt +0 -0
@@ -0,0 +1,2365 @@
1
+ Changelog
2
+ =========
3
+
4
+
5
+ 1.2.61 (2024-07-22)
6
+ -------------------
7
+
8
+ - SUP-36628 : Add scroll context to keep the scroll position when we change the page
9
+ [thomlamb]
10
+
11
+ - SUP-37746 : Add new svg icon
12
+ [thomlamb]
13
+
14
+ 1.2.60 (2024-07-12)
15
+ -------------------
16
+
17
+ - WEB-4125 : Take scale on context leadimage to populate og:image:* tags
18
+ [boulch]
19
+
20
+
21
+ 1.2.59 (2024-07-10)
22
+ -------------------
23
+
24
+ - SUP-36854 : Fix ajax select2 widget when apply a word filtering and populating specific news and specific events
25
+ [boulch]
26
+
27
+
28
+ 1.2.58 (2024-06-26)
29
+ -------------------
30
+
31
+ - WEB-4116 : Fix error 500 when forward request from e-guichet (got an unexpected keyword argument 'include_items')
32
+ [boulch]
33
+
34
+
35
+ 1.2.57 (2024-06-26)
36
+ -------------------
37
+
38
+ - WEB-4121 : Correct bad format
39
+ [boulch]
40
+
41
+
42
+ 1.2.56 (2024-06-25)
43
+ -------------------
44
+
45
+ - WEB-4121 : Fix ERROR : imio.events.core.contents.event.serializer, line 28, in get_container_uid
46
+ and fix WARNING : No such index: 'include_items'
47
+ [boulch]
48
+
49
+ - GHA tests on Python 3.8 3.9 and 3.10
50
+ [remdub]
51
+
52
+
53
+ 1.2.55 (2024-06-07)
54
+ -------------------
55
+
56
+ - Fix React placeholder color
57
+ [thomlamb]
58
+
59
+
60
+ 1.2.54 (2024-06-07)
61
+ -------------------
62
+
63
+ - WEB-4113 : Add DE and NL translations in page/procedure categories taxonomies
64
+ [laulaz]
65
+
66
+
67
+ 1.2.53 (2024-06-06)
68
+ -------------------
69
+
70
+ - WEB-4113 : Use `TranslatedAjaxSelectWidget` to fix select2 values translation
71
+ [laulaz]
72
+
73
+
74
+ 1.2.52 (2024-06-06)
75
+ -------------------
76
+
77
+ - WEB-4113 : Inherit `getVocabulary` from `imio.smartweb.common` view to handle
78
+ vocabularies translations correctly
79
+ [laulaz]
80
+
81
+
82
+ 1.2.51 (2024-06-03)
83
+ -------------------
84
+
85
+ - Fix loaded sticky filter menu in React view
86
+ [thomlamb]
87
+
88
+
89
+ 1.2.50 (2024-05-30)
90
+ -------------------
91
+
92
+ - Fix loaded calcul of sticky filter menu in React view
93
+ [thomlamb]
94
+
95
+
96
+ 1.2.49 (2024-05-29)
97
+ -------------------
98
+
99
+ - WEB-4101 : Encode URLs parameters for `search-filters`. This fixes issues with special chars.
100
+ [laulaz]
101
+
102
+ - WEB-3802: Fix after testing, complited traduction, optimize code
103
+ [thomlamb]
104
+
105
+
106
+ 1.2.48 (2024-05-27)
107
+ -------------------
108
+
109
+ - WEB-3802: Add grouped filter for category and local category in React filters
110
+ [thomlamb]
111
+
112
+ - WEB-4101 : Handle (local) categories translations correctly
113
+ [laulaz]
114
+
115
+ - SUP-36937: Add Recurrence dates in React event content view
116
+ [thomlamb]
117
+
118
+ - WEB-4104 : When change section size (front-office method), reindexParent to refresh cache
119
+ [boulch]
120
+
121
+ - WEB-4105 : Make text section smarter about its lead image format (portrait / landscape)
122
+ [boulch]
123
+
124
+
125
+ 1.2.47 (2024-05-07)
126
+ -------------------
127
+
128
+ - fix React svg import and delete unused svg
129
+ [thomlamb]
130
+
131
+ - add missing React translations
132
+ [thomlamb]
133
+
134
+ 1.2.46 (2024-05-07)
135
+ -------------------
136
+
137
+ - WEB-4101 : fix React topic display
138
+ [thomlamb]
139
+
140
+
141
+ 1.2.45 (2024-05-06)
142
+ -------------------
143
+
144
+ - WEB-4101 : Allow to choose to display topic or category on event & news.
145
+ This affects all related content types: SectionNews, SectionEvents, NewsView, EventsView.
146
+ Local category is alway taken before category (1 value).
147
+ Topic is always the first in list (1 value).
148
+ [laulaz, thomlamb]
149
+
150
+ - Add end date on event cards
151
+ [thomlamb]
152
+
153
+ - Add tradcution for directory timetable
154
+ [thomlamb]
155
+
156
+ - SUP-36869 : Fix root ulr on Leaflet Marker.
157
+ [thomlamb]
158
+
159
+
160
+ 1.2.44 (2024-04-18)
161
+ -------------------
162
+
163
+ - WEB-4099 : Fix select name
164
+ [boulch]
165
+
166
+
167
+ 1.2.43 (2024-04-18)
168
+ -------------------
169
+
170
+ - WEB-4099 : Resize sections in front-end thanks to htmx / jquery
171
+ [boulch]
172
+
173
+ - WEB-4098 : Add affiche scale for section on table view display and one element by lot
174
+ [thomlamb]
175
+
176
+ - WEB-4098 : Add new profile for imio.smartweb.orientation to section files
177
+ [thomlamb]
178
+
179
+ - SUP-35100 : Fix sitemap.xml.gz generation. When a "main" rest view was removed, continue to build sitemap for others rest views
180
+ [boulch]
181
+
182
+
183
+ 1.2.42 (2024-04-12)
184
+ -------------------
185
+
186
+ - SUP-36564 : Fix arcgis external content plugin
187
+ [boulch]
188
+
189
+
190
+ 1.2.41 (2024-04-04)
191
+ -------------------
192
+
193
+ - Set higher timeout because retrieving some datas can take some time
194
+ [boulch]
195
+
196
+
197
+ 1.2.40 (2024-04-02)
198
+ -------------------
199
+
200
+ - MWEBPM-9 : Add container_uid in rest views to retrieve agenda id/title or news folder id/title
201
+ [boulch]
202
+
203
+ - MWEBPM-9 : Retrieve agenda id/title or news folder id/title and display it in "common templates" table
204
+ [boulch]
205
+
206
+
207
+ 1.2.39 (2024-03-28)
208
+ -------------------
209
+
210
+ - MWEBPM-9 : Retrieve agenda id/title or news folder id/title and display it in "common templates" carousel
211
+ [boulch]
212
+
213
+ - MWEBPM-8 : Add "min" or "max" to queries depending to "only past events"
214
+ [thomlamb]
215
+
216
+ - MWEBPM-8 : Add field to manage "only past events" rest view
217
+ [boulch]
218
+
219
+ 1.2.38 (2024-03-18)
220
+ -------------------
221
+
222
+ - Fix React build
223
+ [thomlamb]
224
+
225
+ - Fix spelling mistake and react compilation
226
+ [boulch]
227
+
228
+
229
+ 1.2.37 (2024-03-18)
230
+ -------------------
231
+
232
+ - Add new plugin in external content section / refactor some code in external content section
233
+ [boulch]
234
+
235
+ - Add figcaption content in alt attribute for images in section text
236
+ [thomlamb]
237
+
238
+
239
+ 1.2.36 (2024-02-22)
240
+ -------------------
241
+
242
+ - WEB-4072, WEB-4073 : Enable solr.fields behavior on some content types
243
+ [remdub]
244
+
245
+ - WEB-4001 : Refactoring the generation of sitemap.xml.gz
246
+ [boulch]
247
+
248
+
249
+ 1.2.35 (2024-02-21)
250
+ -------------------
251
+
252
+ - WEB-4006 : Exclude some content types from search results
253
+ [remdub]
254
+
255
+
256
+ 1.2.34 (2024-02-19)
257
+ -------------------
258
+
259
+ - MWEBRCHA-13 : Add content rules to notify reviewers (Install via `validation` profile)
260
+ [laulaz]
261
+
262
+ - MWEBRCHA-13 : Fix plone versioning (Work on SectionText / Remove from SectionHTML)
263
+ [boulch]
264
+
265
+
266
+ 1.2.33 (2024-02-09)
267
+ -------------------
268
+
269
+ - WEB-4067 : Override plone.app.content.browser.vocabulary.VocabularyView to provide filtering items to AjaxSelectFieldWidget
270
+ [boulch]
271
+
272
+ - WEB-4001 : Override sitemap.xml.gz to improve SEO with react views
273
+ [boulch]
274
+
275
+ - Change datePicker date format.
276
+ [thomlamb]
277
+
278
+ - Add class on section text if there is collapsable
279
+ [thomlamb]
280
+
281
+ - WEB-4056 : Refactoring: Removed sha256 encoding (no longer needed)
282
+ [boulch]
283
+
284
+ - WEB-3966: Add close navigation menu on focusout to make it more accessible
285
+ [thomlamb]
286
+
287
+
288
+ 1.2.32 (2024-02-02)
289
+ -------------------
290
+
291
+ - Fix : Could not adapt (..interfaces.ITranslationManager) in single-language website when we set language param in url view
292
+ [boulch]
293
+
294
+ - Fix : rest_view_obj can be None if react view was removed
295
+ [boulch]
296
+
297
+ - Fix: bad condition to display search items number of results
298
+ [thomlamb]
299
+
300
+
301
+ 1.2.31 (2024-02-02)
302
+ -------------------
303
+
304
+ - Add React Context to manage global language
305
+ [thomlamb]
306
+
307
+ - WEB-4063 : Create some views that redirect to main rest (directory, agenda, news) views (thank to registered uid) for e-guichet
308
+ [boulch]
309
+
310
+ - SUP-34498 : Fix url construction to fix 404 on external tab click on React items
311
+ [thomlamb]
312
+
313
+
314
+ 1.2.30 (2024-01-30)
315
+ -------------------
316
+
317
+ - Quick fix : move date queries in inital component to avoid bad url
318
+ [thomlamb]
319
+
320
+
321
+ 1.2.29 (2024-01-30)
322
+ -------------------
323
+
324
+ - Quick fix : effective date can be a str type. So the news sections were broken
325
+ [boulch]
326
+
327
+
328
+ 1.2.28 (2024-01-26)
329
+ -------------------
330
+
331
+ - WEB-3802 : translate datepicker
332
+ [thomlamb]
333
+
334
+ - WEB-3802 : add nl traduction for React view.
335
+ [thomlamb]
336
+
337
+ - WEB-3802 : Fix datePicker filtre to no load on first date change
338
+ [thomlamb]
339
+
340
+
341
+ 1.2.27 (2024-01-26)
342
+ -------------------
343
+
344
+ - WEB-3802 : Adding scss styles for new period filter
345
+ [thomlamb]
346
+
347
+ - WEB-3802 : Adding missing traduction for React view.
348
+ [thomlamb]
349
+
350
+ - WEB-4029 : Fix issue "invalid date" with pat-display-time and DateTime Zope/Plone format (with Firefox!)
351
+ [boulch]
352
+
353
+
354
+ 1.2.26 (2024-01-24)
355
+ -------------------
356
+
357
+ - WEB-3802 : Fix Axios Serializer to fix key in object request.
358
+ [thomlamb]
359
+
360
+
361
+ 1.2.25 (2024-01-24)
362
+ -------------------
363
+
364
+ - WEB-3802 : Adding perido filter in event React view
365
+ [thomlamb]
366
+
367
+
368
+ 1.2.24 (2024-01-22)
369
+ -------------------
370
+
371
+ - WEB-3802 : Get dates range for events in REST views. Coming from React.
372
+ [boulch]
373
+
374
+ - WEB-4050 : Fix : Loosing related_contacts ordering when changing any attributes in section
375
+ [boulch]
376
+
377
+ - WEB-4007 : Add Schedul in contact React view
378
+ [thomlamb]
379
+
380
+
381
+ 1.2.23 (2024-01-09)
382
+ -------------------
383
+
384
+ - WEB-4041 : Handle new "carre" scale
385
+ [boulch]
386
+
387
+
388
+ 1.2.22 (2024-01-05)
389
+ -------------------
390
+
391
+ - Refactor : Move ContactProperties (to build readable schedule) to imio.smartweb.common
392
+ [boulch]
393
+
394
+
395
+ 1.2.21 (2023-12-14)
396
+ -------------------
397
+
398
+ - WEB-3992 : Fix svg to have base color. Add class for icon in table template
399
+ [thomlamb]
400
+
401
+ - SUP-34061 : Fix React Gallery img scales
402
+ [thomlamb]
403
+
404
+
405
+ 1.2.20 (2023-12-07)
406
+ -------------------
407
+
408
+ - WEB-3783 : Update viewlet to set og:tags in rest views
409
+ [boulch]
410
+
411
+ - (Re)Activate external section
412
+ [boulch]
413
+
414
+
415
+ 1.2.19 (2023-12-06)
416
+ -------------------
417
+
418
+ - WEB-4022 : Fix : Compiled edit.js
419
+ [boulch]
420
+
421
+ - WEB-4022 : Fix : bad char in actions.xml (setup/upgrade step)
422
+ [boulch]
423
+
424
+
425
+ 1.2.18 (2023-12-05)
426
+ -------------------
427
+
428
+ - WEB-4022 : Create a new action menu with an utils view that redirect to stats (browser)view
429
+ [boulch]
430
+
431
+ - Change HashRouter to BrowserRouter in React & fix related URLs
432
+ [thomlamb, laulaz]
433
+
434
+ - WEB-3783 : Add new header viewlet to manage og:tags in REACT views
435
+ [boulch]
436
+
437
+
438
+ 1.2.17 (2023-12-01)
439
+ -------------------
440
+
441
+ - Refactor / optimize React code and upgrade packages
442
+ [thomlamb]
443
+
444
+
445
+ 1.2.16 (2023-12-01)
446
+ -------------------
447
+
448
+ - Handle single item json responses in request forwarders
449
+ [laulaz]
450
+
451
+
452
+ 1.2.15 (2023-11-30)
453
+ -------------------
454
+
455
+ - Handle empty responses in request forwarders
456
+ [laulaz]
457
+
458
+
459
+ 1.2.14 (2023-11-30)
460
+ -------------------
461
+
462
+ - Fix parameters in `POST` / `PATCH` / `DELETE` requests
463
+ [laulaz]
464
+
465
+
466
+ 1.2.13 (2023-11-29)
467
+ -------------------
468
+
469
+ - Use json for request forwarders body
470
+ [laulaz, boulch]
471
+
472
+
473
+ 1.2.12 (2023-11-29)
474
+ -------------------
475
+
476
+ - Deactivate Plone protect / Add token for queries
477
+ [laulaz, boulch]
478
+
479
+ - Handle `PATCH` & `DELETE` in request forwarders
480
+ [laulaz]
481
+
482
+ - Fix smartweb url and fix metadatas if missing fullobject
483
+ [boulch]
484
+
485
+
486
+ 1.2.11 (2023-11-29)
487
+ -------------------
488
+
489
+ - Add Smartweb related URLs in forwarded json responses
490
+ [laulaz]
491
+
492
+ - Transform requests forwarders into REST API Services
493
+ [laulaz]
494
+
495
+
496
+ 1.2.10 (2023-11-28)
497
+ -------------------
498
+
499
+ - Add RequestForwarder views
500
+ [laulaz, boulch]
501
+
502
+
503
+ 1.2.9 (2023-11-24)
504
+ ------------------
505
+
506
+ - WEB-4021 : Fix lead image displaying with files section
507
+ [boulch]
508
+
509
+
510
+ 1.2.8 (2023-11-23)
511
+ ------------------
512
+
513
+ - Fix (lead) image sizes URLs for text section & migrate old values
514
+ [boulch, laulaz]
515
+
516
+
517
+ 1.2.7 (2023-11-22)
518
+ ------------------
519
+
520
+ - Fix image scales URLs for gallery view thumbnails
521
+ [laulaz]
522
+
523
+ - WEB-3992 : Uncheck icon when clincking on checked icon (in edit form of imio.smartweb.BlockLink)
524
+ [boulch]
525
+
526
+
527
+ 1.2.6 (2023-11-21)
528
+ ------------------
529
+
530
+ - Fix tests after scales dimensions change
531
+ [laulaz]
532
+
533
+
534
+ 1.2.5 (2023-11-20)
535
+ ------------------
536
+
537
+ - Rebuild React to fix js errors
538
+ [thomlamb]
539
+
540
+ - WEB-4017 : Add Number 2 for items per batch
541
+ [thomlamb]
542
+
543
+ - Fix last upgrade steps: when run from command line, we need to adopt admin
544
+ user to find private objects
545
+ [laulaz]
546
+
547
+ - Fix wrong type name in `imio.smartweb.CirkwiView` type profile
548
+ [laulaz]
549
+
550
+ - WEB-4014 : Display "websites" urls instead of labels (facebook, website, instagram, ...)
551
+ [boulch]
552
+
553
+ - WEB-4012 : Restored filter on related contacts field
554
+ [boulch]
555
+
556
+
557
+ 1.2.4 (2023-10-30)
558
+ ------------------
559
+
560
+ - Handle image orientation on faceted map layout
561
+ [laulaz]
562
+
563
+ - Remove unused Photo Gallery from collections layouts
564
+ [laulaz]
565
+
566
+
567
+ 1.2.3 (2023-10-29)
568
+ ------------------
569
+
570
+ - Migrate deprecated image scales from Section Contact / Gallery
571
+ [laulaz]
572
+
573
+ - Migrate "Is in portrait mode" option to orientation behavior for Section Contact
574
+ [laulaz]
575
+
576
+ - Handle image orientation on Collection & Foler types
577
+ [laulaz]
578
+
579
+ - Remove unused `gallery_view.pt` template
580
+ [laulaz]
581
+
582
+ - Change order of orientation options (default first)
583
+ [laulaz]
584
+
585
+ - Handle orientation in REST views images & fix galleries
586
+ [laulaz]
587
+
588
+ - Change default orientation to landscape
589
+ [laulaz]
590
+
591
+
592
+ 1.2.2 (2023-10-26)
593
+ ------------------
594
+
595
+ - WEB-3985 : Fix condition to load image or logo in contact view
596
+ [thomlamb]
597
+
598
+ - WEB-3985 : Fix logo scale URL (no orientation there) for Directory view
599
+ [laulaz]
600
+
601
+ - WEB-3985 : Fix React build
602
+ [thomlamb]
603
+
604
+
605
+ 1.2.1 (2023-10-25)
606
+ ------------------
607
+
608
+ - WEB-3985 : Fix traceback when cropping scale information is not present on image change
609
+ [laulaz]
610
+
611
+
612
+ 1.2 (2023-10-25)
613
+ ----------------
614
+
615
+ - WEB-3985 : New portrait / paysage scales & logic.
616
+ We have re-defined the scales & sizes used in smartweb.
617
+ We let the user crop only 2 big portrait / paysage scales and make the calculation behind the scenes for all
618
+ other smaller scales.
619
+ We also fixed the cropping information clearing on images changes.
620
+ A new orientation behavior allow the editor to choose with type of image he wants.
621
+ [boulch, laulaz]
622
+
623
+ - Fix css for Event content view
624
+ [thomlamb]
625
+
626
+
627
+ 1.1.30 (2023-10-24)
628
+ -------------------
629
+
630
+ - Adaptation of react to show or hide the map
631
+ [thomlamb]
632
+
633
+ - WEB-3999 : Keep order of contacts in its view through manualy sorted related_contacts in edit form
634
+ [boulch]
635
+
636
+
637
+ 1.1.29 (2023-10-18)
638
+ -------------------
639
+
640
+ - SUP-32814 : Add new external content plugins : GiveADayPlugin
641
+ see : https://github.com/IMIO/imio.smartweb.core/commit/a4dfca2
642
+ [boulch]
643
+
644
+ - WEB-4000 : Add display_map Bool field on directory and events views
645
+ [boulch]
646
+
647
+
648
+ 1.1.28 (2023-10-13)
649
+ -------------------
650
+
651
+ - WEB-3803 : Add upgrade step : collective.pivot.Family content type can be add in an imio.smartweb.Folder
652
+ [boulch]
653
+
654
+ - WEB-3998 : Set requests timeout to 8'' when we populate RemoteContacts vocabulary
655
+ [boulch]
656
+
657
+
658
+ 1.1.27 (2023-10-11)
659
+ -------------------
660
+
661
+ - Add <div> in view_argis.pt template to fix map displaying
662
+ [thomlamb, jhero]
663
+
664
+
665
+ 1.1.26 (2023-10-10)
666
+ -------------------
667
+
668
+ - Add missing upgrade step to add leadimage behavior on external content section
669
+ [boulch]
670
+
671
+ - Fix some translations in external content plugins
672
+ [boulch]
673
+
674
+
675
+ 1.1.25 (2023-10-09)
676
+ -------------------
677
+
678
+ - SUP-32169 : Add new external content plugins : ArcgisPlugin
679
+ [boulch]
680
+
681
+
682
+ 1.1.24 (2023-10-09)
683
+ -------------------
684
+
685
+ - WEB-3986 : Fix : email must be open thank to "mailto:" tag instead of "tel:"
686
+ [boulch]
687
+
688
+ - WEB-3984 : Remove deprecated cropping annotations on banner
689
+ [boulch, laulaz]
690
+
691
+ - WEB-3984 : Don't get banner scale anymore. Get full banner image directly
692
+ [boulch, laulaz]
693
+
694
+ - WEB-3984 : Remove banner field from cropping editor
695
+ [laulaz]
696
+
697
+
698
+ 1.1.23 (2023-09-06)
699
+ -------------------
700
+
701
+ - WEB-3983 : Fix contacts bootstrap grid
702
+ [boulch]
703
+
704
+ - WEB-3980 : Fix help and authentic sources menus double displaying in folder_contents view
705
+ [boulch]
706
+
707
+ - fix calculating image size on loading (add async in useEffect)
708
+ [thomlamb]
709
+
710
+ - WEB-3981 : Add Cognitoforms as an external section
711
+ [boulch]
712
+
713
+ - WEB-3932 : Transform contact section to contactS section
714
+ [laulaz, boulch]
715
+
716
+
717
+ 1.1.22 (2023-08-29)
718
+ -------------------
719
+
720
+ - Add smartweb content types icons (Message, MessagesConfig)
721
+ [boulch]
722
+
723
+ - Delete useless css for edition
724
+ [thomlamb]
725
+
726
+
727
+ 1.1.21 (2023-08-29)
728
+ -------------------
729
+
730
+ - Add smartweb content types icons
731
+ [laulaz, boulch]
732
+
733
+ - Show help & authentic sources menus only if product is installed
734
+ [laulaz, boulch]
735
+
736
+ - Update compiled resources to fix help menu
737
+ [boulch]
738
+
739
+ - Refactor Plausible
740
+ [remdub]
741
+
742
+
743
+ 1.1.20 (2023-08-28)
744
+ -------------------
745
+
746
+ - Fix display of hours on events react view
747
+ [thomlamb]
748
+
749
+ - Refactor React contact view
750
+ [thomlamb]
751
+
752
+ - Refactor section text : image_size field is no more required because field is now hidden!
753
+ [boulch]
754
+
755
+ - WEB-3957 : Add new "Please help!" menu in Plone toolbar
756
+ [boulch]
757
+
758
+ - Display logo if no image in react contact card.
759
+ Display blurry background if image is in portrait
760
+ [thomlamb]
761
+
762
+ - Fix of the calculation of the batch zise, ​​addition instead of concatenation
763
+ [thomlamb]
764
+
765
+ - WEB-3972 : Add "elloha" plugin in external content section
766
+ [boulch]
767
+
768
+
769
+ 1.1.19 (2023-08-07)
770
+ -------------------
771
+
772
+ - WEB-3956 : Update folder modification date when its layout changed to fix cache
773
+ [boulch]
774
+
775
+ - WEB-3934 : Hide image_size field
776
+ [boulch]
777
+
778
+ - WEB-3953 : Remove cropping from background_image field
779
+ [boulch]
780
+
781
+ - WEB-3952 : Disable image cropping on section text
782
+ [laulaz, boulch]
783
+
784
+ - Make "Image cropping" link conditional
785
+ [laulaz]
786
+
787
+ - Disable image cropping on Slide content type
788
+ [laulaz]
789
+
790
+ - Fix condition for image placeholder on React vue
791
+ [thomlamb]
792
+
793
+
794
+ 1.1.18 (2023-06-19)
795
+ -------------------
796
+
797
+ - Removal of unnecessary css in sections contact and gallery
798
+ [thomlamb]
799
+
800
+ - Add new browserview for Plausible
801
+ [remdub, boulch]
802
+
803
+ - Change some icons : SectionHTML and SectionExternalContent
804
+ [boulch]
805
+
806
+ - MWEBTUBA : Add new section : imio.smartweb.SectionExternalContent (Manage embeded contents)
807
+ [boulch]
808
+
809
+
810
+ 1.1.17 (2023-05-31)
811
+ -------------------
812
+
813
+ - New React build
814
+ [thomlamb]
815
+
816
+ - Use hash in gallery images URL for directory, events and news rest views
817
+ (based on modification date) to allow strong caching.
818
+ [boulch, laulaz]
819
+
820
+
821
+ 1.1.16 (2023-05-25)
822
+ -------------------
823
+
824
+ - Fix faceted map size after page loading.
825
+ [thomlamb]
826
+
827
+ - Adapt `@search` endpoint to handle multilingual
828
+ [mpeeters]
829
+
830
+
831
+ 1.1.15 (2023-05-22)
832
+ -------------------
833
+
834
+ - Fixed console error following unnecessary loading of js for swiper
835
+ [thomlamb]
836
+
837
+ - Avoid image cropping for banner scale (will have infinite height)
838
+ [laulaz]
839
+
840
+ - Cleanup `folder_contents` properties & add warning about Sections
841
+ [laulaz]
842
+
843
+ - Store hash in an annotation to refresh "dynamic" sections
844
+ [boulch, laulaz]
845
+
846
+ - WEB-3868 : Remove useless code (included in Plone 6.0.4)
847
+ See https://github.com/plone/plone.base/pull/37
848
+ [laulaz]
849
+
850
+ - Migrate to Plone 6.0.4
851
+ [boulch]
852
+
853
+ - Update static icon for better css implements
854
+ [thomlamb]
855
+
856
+ - SUP-30074 : Fix broken RelationValue "AttributeError: 'NoneType' object has no attribute 'UID'
857
+ [boulch]
858
+
859
+
860
+ 1.1.14 (2023-04-25)
861
+ -------------------
862
+
863
+ - Fix image display condition
864
+ [thomlamb]
865
+
866
+ - Fix json attributes to get the scaling pictures of news
867
+ [boulch]
868
+
869
+
870
+ 1.1.13 (2023-04-24)
871
+ -------------------
872
+
873
+ - Compile resources
874
+ [boulch]
875
+
876
+
877
+ 1.1.12 (2023-04-14)
878
+ -------------------
879
+
880
+ - WEB-3868 : Forbid creating content with same id as a parent field
881
+ [laulaz]
882
+
883
+ - Don't use `image_scales` metadata anymore to get images scales URLs because we
884
+ had problems with cropped scales (they were not indexed).
885
+ We now use a hash in URL (based on modification date) to allow strong caching.
886
+ See https://github.com/collective/plone.app.imagecropping/issues/129
887
+ [laulaz, boulch]
888
+
889
+
890
+ 1.1.11 (2023-04-05)
891
+ -------------------
892
+
893
+ - WEB-3913 : Leadimages should not appear on rest views
894
+ [boulch]
895
+
896
+
897
+ 1.1.10 (2023-03-31)
898
+ -------------------
899
+
900
+ - WEB-3901 : Get fullsize picture if scale is not present (section collection)
901
+ [boulch]
902
+
903
+ - WEB-3908 : Call new @events endpoint to get events occurrences
904
+ [boulch]
905
+
906
+
907
+ 1.1.9 (2023-03-17)
908
+ ------------------
909
+
910
+ - WEB-3898 : Prevent error (error while rendering imio.smartweb.banner) if a content has his id = "banner"
911
+ [boulch]
912
+
913
+
914
+ 1.1.8 (2023-03-15)
915
+ ------------------
916
+
917
+ - WEB-3888 : We overrided link_input template widget to allow any link format in external tab (without browser blocking)
918
+ [boulch]
919
+
920
+ - WEB-3769 : Get fullsize picture if scale is not present (ex: picture too small)
921
+ [boulch]
922
+
923
+ - SUP-27477 : Fix internal link in herobanner
924
+ [boulch]
925
+
926
+
927
+ 1.1.7 (2023-03-07)
928
+ ------------------
929
+
930
+ - Improved react views to better match bootstrap media queries and fix no wrap buttons
931
+ [thomlamb]
932
+
933
+ - Fix no display img in news view
934
+ [thomlamb]
935
+
936
+ - Migrate to Plone 6.0.2
937
+ [boulch]
938
+
939
+ - WEB-3865 : Ordering news section and events section in their views thanks to a manualy order in their widgets
940
+ [boulch]
941
+
942
+ - Avoid auto-appending new lines to Datagrid fields when clicked
943
+ [laulaz]
944
+
945
+ - Fix annuaire, agenda, news sections with current language
946
+ [boulch]
947
+
948
+
949
+ 1.1.6 (2023-02-22)
950
+ ------------------
951
+
952
+ - WEB-3863 : Fix some dates displaying
953
+ [boulch]
954
+
955
+ - WEB-3858 : Fix displaying of authentic sources menu
956
+ [boulch]
957
+
958
+
959
+ 1.1.5 (2023-02-20)
960
+ ------------------
961
+
962
+ - Delete lorem in React vue
963
+ [thomlamb]
964
+
965
+ - Fixed accessibility nav attribute
966
+ [thomlamb]
967
+
968
+ - Fixed faceted map
969
+ [boulch]
970
+
971
+ - WEB-3837 : Can define specific news to get (instead of all news from news folders)
972
+ [boulch]
973
+
974
+ - Adding display block on active dropdown
975
+ [thomlamb]
976
+
977
+ - Fix traduction ID for React
978
+ [thomlamb]
979
+
980
+
981
+ 1.1.4 (2023-01-31)
982
+ ------------------
983
+
984
+ - Fix loader on React vue + add visual loader
985
+ [thomlamb]
986
+
987
+
988
+ 1.1.3 (2023-01-30)
989
+ ------------------
990
+
991
+ - WEB-3819 : Update permission : local manager can manage their subsites
992
+ [boulch]
993
+
994
+
995
+ 1.1.2 (2023-01-27)
996
+ ------------------
997
+
998
+ - Adding react-translated and translate static React txt
999
+ [thomlamb]
1000
+
1001
+ - Fix "zope.schema._bootstrapinterfaces.ConstraintNotSatisfied" in smartweb settings
1002
+ [boulch]
1003
+
1004
+ - Add new content type : imio.smartweb.CirkwiView
1005
+ [boulch, laulaz]
1006
+
1007
+ - Add authentic sources menu in toolbar
1008
+ [boulch, laulaz]
1009
+
1010
+ - WEB-3755 : Adapt empty (without section) procedure message
1011
+ [boulch, laulaz]
1012
+
1013
+ - Bring current-language attribute in rest views templates (useful for translations in JS)
1014
+ [boulch]
1015
+
1016
+ - Handle search result types depending on available authentic sources for site
1017
+ [Julien]
1018
+
1019
+ - Replacement of hard coded urls for images
1020
+ [thomlamb]
1021
+
1022
+
1023
+ 1.1.1 (2023-01-12)
1024
+ ------------------
1025
+
1026
+ - Use generated image scale urls to increase image caching
1027
+ [boulch, laulaz]
1028
+
1029
+ - Forbid minisite to be copied / moved inside another minisite
1030
+ [laulaz]
1031
+
1032
+ - Allow querying contact category with React filter (A) while also querying
1033
+ multiple categories defined in directory REST endpoint (B, C): A and (B or C)
1034
+ [laulaz]
1035
+
1036
+ - Enable autopublishing behavior on all types
1037
+ [laulaz]
1038
+
1039
+ - Handle events occurences in REST endpoint
1040
+ [laulaz]
1041
+
1042
+ - Multilingual: handle language in requests for REST views, handle LRF navigation
1043
+ roots (minisites, footers, default pages, vocabularies), fix language selector
1044
+ viewlet
1045
+ [laulaz]
1046
+
1047
+ - Add upgrade step to change content types icons
1048
+ [laulaz]
1049
+
1050
+ - Fix JS / CSS bundles names (restore old names : '-' instead of '.' separator)
1051
+ [laulaz]
1052
+
1053
+
1054
+ 1.1 (2022-12-23)
1055
+ ----------------
1056
+
1057
+ - Update to Plone 6.0.0 final
1058
+ [boulch]
1059
+
1060
+ - WEB-3795 : Add Proactive trigger code to chatbot.
1061
+ [remdub]
1062
+
1063
+
1064
+ 1.0.27 (2022-11-23)
1065
+ -------------------
1066
+
1067
+ - Add check for multiple categories directory views
1068
+ This is used to decide if the field will be changed to single category
1069
+ [laulaz]
1070
+
1071
+
1072
+ 1.0.26 (2022-11-22)
1073
+ -------------------
1074
+
1075
+ - WEB-3729 : Add site admin permission on action for managing taxonomies on specific contents
1076
+ [boulch]
1077
+
1078
+ - WEB-3777: Make nb_results field work on React views (as batch size)
1079
+ [laulaz, thomlamb]
1080
+
1081
+
1082
+ 1.0.25 (2022-10-28)
1083
+ -------------------
1084
+
1085
+ - WEB-3771 : Harmonize procedure button label
1086
+ [boulch]
1087
+
1088
+ - WEB-3777 : Fix DirectoryEndpoint filter by category
1089
+ [boulch, laulaz]
1090
+
1091
+ - WEB-3759 : Add portrait class even if there is no lead image to set placeholder with a good size
1092
+ [boulch]
1093
+
1094
+
1095
+ 1.0.24 (2022-10-20)
1096
+ -------------------
1097
+
1098
+ - Fix problem with images url in logo
1099
+ [boulch]
1100
+
1101
+
1102
+ 1.0.23 (2022-10-20)
1103
+ -------------------
1104
+
1105
+ - Fix problem with images urls in collections
1106
+ [boulch]
1107
+
1108
+
1109
+ 1.0.22 (2022-10-18)
1110
+ -------------------
1111
+
1112
+ - Fix problem with images urls in faceted navigation
1113
+ [laulaz]
1114
+
1115
+ - WEB-3766 : Ensure displaying pages / footers even if sections in error (+ display section in error)
1116
+ [boulch, laulaz]
1117
+
1118
+ - WEB-3764 : Fix : We Ensure we always compare Decimal
1119
+ [boulch]
1120
+
1121
+
1122
+ 1.0.21 (2022-10-07)
1123
+ -------------------
1124
+
1125
+ - Waiting for authentics sources Plone6betaX to get automaticaly images scale hash on objects
1126
+ [boulch]
1127
+
1128
+
1129
+ 1.0.20 (2022-10-05)
1130
+ -------------------
1131
+
1132
+ - Fix React-moment: replace 'day' by 'minute' in sratOf fuction to fix bad hours display in news view
1133
+ [thomlamb]
1134
+
1135
+ - Add fullobjects=1 to get inner events and inner directory contents
1136
+ [boulch]
1137
+
1138
+ - Adding section files download and gallery in react content view
1139
+ [thomlamb]
1140
+
1141
+ - Update svg plone-icon for better compatibility with color css
1142
+ [thomlamb]
1143
+
1144
+ - Use unique scale path (with hash) for better cache management
1145
+ [boulch, laz]
1146
+
1147
+
1148
+ - Memoize EventsTypesVocabulary because that almost never change !
1149
+ [boulch]
1150
+
1151
+ - WEB-3684 : Add fullobjects=1 to get inner news contents
1152
+ [boulch]
1153
+ - Use custom spotlight to avoid bad gallery refresh
1154
+ [boulch]
1155
+
1156
+ - Migrate to Plone 6.0.0b1 : ensure all needed attributes are allowed (otherwise
1157
+ action expressions doesn't work anymore), consider new SVG / icons logic in
1158
+ tests, use new simplified resources registry
1159
+ [laulaz, boulch]
1160
+
1161
+
1162
+ 1.0.19 (2022-09-08)
1163
+ -------------------
1164
+
1165
+ - WEB-3750 : Fix topics, categories and facilities items in selectboxes view when there is no preset selected categories
1166
+ [boulch]
1167
+
1168
+
1169
+ 1.0.18 (2022-09-06)
1170
+ -------------------
1171
+
1172
+ - Fix css to display none accueil item in nav
1173
+ [thomlamb]
1174
+
1175
+
1176
+ 1.0.17 (2022-09-01)
1177
+ -------------------
1178
+
1179
+ - WEB-3741 : Fix items in selectbox contact categories in rest view @search-filters endpoint ("match" with items in edit selectbox)
1180
+ Fix contacts results depends of selected category in rest view (@search endpoint)
1181
+ [boulch]
1182
+
1183
+ - WEB-3732 : Add smartweb settings to customize sendinblue subscribing button (text and position)
1184
+ [boulch]
1185
+
1186
+ - Fix bad position for swipper-button in herobanner
1187
+ [thomlamb]
1188
+
1189
+ - Ensure navigation elements don't use an already reserved/existing css Class
1190
+ [boulch]
1191
+
1192
+ - WEB-3730 : By default, Plone open external (Section text / Tiny) links in new tab
1193
+ [boulch]
1194
+
1195
+
1196
+ 1.0.16 (2022-08-02)
1197
+ -------------------
1198
+
1199
+ - Fix rich description display on contact section
1200
+ [laulaz]
1201
+
1202
+
1203
+ 1.0.15 (2022-07-25)
1204
+ -------------------
1205
+
1206
+ - WEB-3687: Add botpress viewlet in footer
1207
+ [remdub]
1208
+
1209
+ - Change class and css to make herobanner slider work
1210
+ [thomlamb]
1211
+
1212
+
1213
+ 1.0.14 (2022-07-14)
1214
+ -------------------
1215
+
1216
+ - Avoid error on broken objects (reindex_all_pages upgrade step)
1217
+ [laulaz]
1218
+
1219
+
1220
+ 1.0.13 (2022-07-14)
1221
+ -------------------
1222
+
1223
+ - Adding button for add news,events,contacts
1224
+ [thomlamb]
1225
+
1226
+ - Avoid traceback if a selection item relation is broken
1227
+ [laulaz]
1228
+
1229
+ - Use rich description on contact sections
1230
+ [laulaz]
1231
+
1232
+ - [WEB-3674]Fix itinerary links
1233
+ [remdub]
1234
+
1235
+ - [WEB-3661]Set b_size to 100 on search results
1236
+ [remdub]
1237
+
1238
+ - Add collective.faceted.map with custom template & markers popups
1239
+ [boulch, laulaz]
1240
+
1241
+ - Allow pages to be geolocalized (latitude/longitude indexes) via their first map section
1242
+ [laulaz]
1243
+
1244
+ - Use new registry settings to store URL of news/events/contact proposal form
1245
+ [laulaz]
1246
+
1247
+
1248
+ 1.0.12 (2022-06-07)
1249
+ -------------------
1250
+
1251
+ - Adapt code to ease development with local sources
1252
+ [mpeeters]
1253
+ - [WEB-3663] Fix contact schedule. Use Decimal instead of float. ( float("8.30") = 8.3. 8h03 != 8h30 )
1254
+ [boulch]
1255
+
1256
+ - Update static css for edit view
1257
+ [thomlamb]
1258
+
1259
+ - Fix NaN value for batchsize in swiper
1260
+ [thomlamb]
1261
+
1262
+ - Ban required URL when Footer or HeroBanner modified
1263
+ [boulch, laulaz]
1264
+
1265
+ - Omit some fields in slide section layout fieldset
1266
+ [boulch]
1267
+
1268
+
1269
+ 1.0.11 (2022-05-17)
1270
+ -------------------
1271
+
1272
+ - Update display for date in news view
1273
+ [thomlamb]
1274
+
1275
+ - Add video,social,web url for news view
1276
+ [thomlamb]
1277
+
1278
+ - Update regex for routing items
1279
+ [thomlamb]
1280
+
1281
+ - Add carousel and gallery in contact view
1282
+ [boulch]
1283
+
1284
+ - Fix batch size (40) for pages pagination
1285
+ [laulaz]
1286
+
1287
+ - Add new content type : imio.smartweb.SectionPostit
1288
+ [boulch, laulaz]
1289
+
1290
+
1291
+ 1.0.10 (2022-05-10)
1292
+ -------------------
1293
+
1294
+ - Add description for directory items
1295
+ [thomlamb]
1296
+
1297
+ - Fix css for react items
1298
+ [thomlamb]
1299
+
1300
+ - Adaptation of the jsx to be able to render the markdown to html
1301
+ [thomlamb]
1302
+
1303
+ - Adapt `@search` endpoint to exclude expired elements and events in the past
1304
+ [mpeeters]
1305
+
1306
+ - Remove forced placeholder for image in react pages
1307
+ [thomlamb]
1308
+
1309
+
1310
+ 1.0.9 (2022-05-02)
1311
+ ------------------
1312
+
1313
+ - Remove duplicate / useless new icons & change default workinfos icon
1314
+ [laulaz]
1315
+
1316
+
1317
+ 1.0.8 (2022-05-02)
1318
+ ------------------
1319
+
1320
+ - Add new icons
1321
+ [boulch]
1322
+
1323
+ - Fix section edition display for herobanner / content-core / footer
1324
+ [laulaz]
1325
+
1326
+ - HeroBanner can't be a folder default view
1327
+ [boulch]
1328
+
1329
+
1330
+ 1.0.7 (2022-04-25)
1331
+ ------------------
1332
+
1333
+ - Improve slide view html
1334
+ [thomlamb]
1335
+
1336
+ - Clean core css
1337
+ [thomlamb]
1338
+
1339
+ - Fix herobanner when there is a default (portal)page on site root or on partner sites
1340
+ [boulch, laulaz]
1341
+
1342
+ - Hide unwanted upgrades from site-creation and quickinstaller
1343
+ [boulch]
1344
+
1345
+ - Move local manager role and sharing permissions to imio.smartweb.common
1346
+ Use new common.interfaces.ILocalManagerAware to mark a locally manageable content
1347
+ [boulch]
1348
+
1349
+ - Add hero banner feature
1350
+ [boulch]
1351
+
1352
+
1353
+ 1.0.6 (2022-03-29)
1354
+ ------------------
1355
+
1356
+ - Fix: Change Leaflet Tilelayer map for fix bad attribution url
1357
+ [thomlamb]
1358
+
1359
+
1360
+ 1.0.5 (2022-03-28)
1361
+ ------------------
1362
+
1363
+ - Add local permissions and a "Local Manager" role.
1364
+ Permissions : imio.smartweb.core.CanEditMinisiteLogo, imio.smartweb.core.CanManageSectionHTML
1365
+ [boulch]
1366
+
1367
+ - Updated queries for search to only run with specific filters
1368
+ [thomlamb]
1369
+
1370
+ - Handle inline SVG images for portal logo and minisite logo
1371
+ [laulaz]
1372
+
1373
+ - Add show_items_lead_image attributes on files section.
1374
+ Add no-image css class in table template when there is no image to display
1375
+ [boulch]
1376
+
1377
+ - Add sections to procedure content type to be similar as page content type
1378
+ [boulch]
1379
+
1380
+ - Add a portrait mode on section contact leadimage
1381
+ [boulch]
1382
+
1383
+ - Exclude parents (folders) messages to traverse into partners sites
1384
+ [boulch]
1385
+
1386
+ - Exclude Footers from parent listings by default
1387
+ [laulaz]
1388
+
1389
+
1390
+ 1.0.4 (2022-03-16)
1391
+ ------------------
1392
+
1393
+ - Improve leaflet css
1394
+ [thomlamb]
1395
+
1396
+ - Change leaflet tilelayer style
1397
+ [thomlamb]
1398
+
1399
+
1400
+ 1.0.3 (2022-03-09)
1401
+ ------------------
1402
+
1403
+ - Change leaflet style
1404
+ [thomlamb]
1405
+
1406
+ - Adding info popup on leaflet marker
1407
+ [thomlamb]
1408
+
1409
+ - Add correct href on search link for tab navigation
1410
+ [thomlamb]
1411
+
1412
+
1413
+ 1.0.2 (2022-03-08)
1414
+ ------------------
1415
+
1416
+ - Add missing init file for faceted widgets
1417
+ [laulaz]
1418
+
1419
+
1420
+ 1.0.1 (2022-02-25)
1421
+ ------------------
1422
+
1423
+ - Removal of the pointer if it is located at Imio (event and library view)
1424
+ [thomlamb]
1425
+
1426
+ - Added times and fixed date display for event views
1427
+ [thomlamb]
1428
+
1429
+ - Override eea.facetednavigation select widget template.
1430
+ Display label as first value in select fields
1431
+ [boulch]
1432
+
1433
+ - Add placeholder to faceted text search (xml) + upgrade step
1434
+ [boulch]
1435
+
1436
+ - Fix : Add a missing tal instruction
1437
+ [boulch]
1438
+
1439
+ - Use new icons radio widget to select SVG icon for links
1440
+ [laulaz]
1441
+
1442
+ - Avoid problems with minisite & subsite simultaneous activation (for example,
1443
+ through a cached action)
1444
+ [laulaz]
1445
+
1446
+
1447
+ 1.0 (2022-02-22)
1448
+ ----------------
1449
+
1450
+ - Add description in sendinblue section
1451
+ [boulch]
1452
+
1453
+ - Add conditions on faceted and folder view (with images).
1454
+ When we select one of this view and if a content hasn't image we display a no-image class
1455
+ [boulch]
1456
+
1457
+ - Fix css for news items
1458
+ [thomlamb]
1459
+
1460
+ - Change event contact icon
1461
+ [thomlamb]
1462
+
1463
+ - Override social tags generation to get scaled images instead of full size.
1464
+ We didn't override syndication to avoid any side effects in RSS / Atom
1465
+ [laulaz]
1466
+
1467
+
1468
+ 1.0a43 (2022-02-21)
1469
+ -------------------
1470
+
1471
+ - Limitate usage of site search settings to current website search
1472
+ [mpeeters]
1473
+
1474
+
1475
+ 1.0a42 (2022-02-21)
1476
+ -------------------
1477
+
1478
+ - Fix RelatedItems fields browser in minisite
1479
+ [boulch, laulaz]
1480
+
1481
+ - Fix bad html link for news items
1482
+ [thomlamb]
1483
+
1484
+ - Fix removed section subscriber. if we removed a folder, pages with sections stayed in catalog
1485
+ [boulch]
1486
+
1487
+
1488
+ 1.0a41 (2022-02-16)
1489
+ -------------------
1490
+
1491
+ - Fix loadmore react views
1492
+ [thomlamb]
1493
+
1494
+ - Update Axios module to 26.0
1495
+ [thomlamb]
1496
+
1497
+ - Add AbortController to prevent unnecessary requests
1498
+ [thomlamb]
1499
+
1500
+ - Use `use_site_search_settings` parameters by default to inherit query parameters from site search settings
1501
+ for `@search` endpoint
1502
+ [mpeeters]
1503
+
1504
+
1505
+ 1.0a40 (2022-02-14)
1506
+ -------------------
1507
+
1508
+ - Fix bug with react import img
1509
+ [thomlamb]
1510
+
1511
+
1512
+ 1.0a39 (2022-02-14)
1513
+ -------------------
1514
+
1515
+ - Fix missing value for placeholder
1516
+ [thomlamb]
1517
+
1518
+
1519
+ 1.0a38 (2022-02-14)
1520
+ -------------------
1521
+
1522
+ - Fix condition to display search items img
1523
+ [thomlamb]
1524
+
1525
+
1526
+ 1.0a37 (2022-02-14)
1527
+ -------------------
1528
+
1529
+ - Fix problem with react event map
1530
+ [thomlamb]
1531
+
1532
+ - Add background image for result search items
1533
+ [thomlamb]
1534
+
1535
+ - Refactor all js indent
1536
+ [thomlamb]
1537
+
1538
+ - Add placeholder class on contact logo & leadimage when they are empty
1539
+ [laulaz]
1540
+
1541
+ - Change/fix max number (30) of possible sections in pages before paging
1542
+ [boulch]
1543
+
1544
+ - Add new div with a nb-items-batch-[N] class
1545
+ to ease stylizing multi items templates (table, carousel)
1546
+ [boulch]
1547
+
1548
+ - Fix bad css value
1549
+ [thomlamb]
1550
+
1551
+
1552
+ 1.0a36 (2022-02-11)
1553
+ -------------------
1554
+
1555
+ - Update e-guichet icon file & add new shopping icon
1556
+ [laulaz]
1557
+
1558
+ - Change default value for batch size in files section
1559
+ [laulaz]
1560
+
1561
+ - Improve css
1562
+ [thomlamb]
1563
+
1564
+ - Avoid fetching contact from authentic source multiple times on the same view
1565
+ [laulaz]
1566
+
1567
+
1568
+ 1.0a35 (2022-02-10)
1569
+ -------------------
1570
+
1571
+ - Use css class & background style also on footers sections
1572
+ [laulaz]
1573
+
1574
+ - Correction of spelling mistakes
1575
+ [thomlamb]
1576
+
1577
+ - Get events with new event_dates index
1578
+ [laulaz]
1579
+
1580
+ - Change footer markup to have only one row
1581
+ [laulaz]
1582
+
1583
+ - Add new e-guichet icon
1584
+ [laulaz]
1585
+
1586
+ - Remove GDPR link from footer (it is already in colophon)
1587
+ [laulaz]
1588
+
1589
+ - Restore removed class to help styling carousel by batch size
1590
+ [laulaz]
1591
+
1592
+
1593
+ 1.0a34 (2022-02-09)
1594
+ -------------------
1595
+
1596
+ - Fix missing permissions to add footer
1597
+ [laulaz]
1598
+
1599
+ - Fix default item view for a collection when anonymous
1600
+ [laulaz]
1601
+
1602
+ - Fix double escaped navigation items in quick accesses
1603
+ See https://github.com/plone/plone.app.layout/issues/280
1604
+ [laulaz]
1605
+
1606
+
1607
+ 1.0a33 (2022-02-08)
1608
+ -------------------
1609
+
1610
+ - Fix search axios to not fetch with no filter set
1611
+ [thomlamb]
1612
+
1613
+
1614
+ 1.0a32 (2022-02-08)
1615
+ -------------------
1616
+
1617
+ - Change Youtube & Parking base icons, and add Twitter
1618
+ [laulaz]
1619
+
1620
+ - Add id on sections containers to ease styling
1621
+ [laulaz]
1622
+
1623
+ - Be sure to reindex the container (& change modification date for cachinig) when
1624
+ a page has been modified
1625
+ [laulaz]
1626
+
1627
+ - Reorder SectionContact template + modify some translations
1628
+ [boulch]
1629
+
1630
+ - Fix generated url for search results
1631
+ [thomlamb]
1632
+
1633
+ - Unauthorize to add imio.smartweb.SectionSendinblue on a Page but authorize it on PortalPage.
1634
+ [boulch]
1635
+
1636
+ - Include source item url for `@search` service results
1637
+ [mpeeters]
1638
+
1639
+ - Enforce using SolR for `@search` service
1640
+ [mpeeters]
1641
+
1642
+ - Fix translation domain for event macro
1643
+ [laulaz]
1644
+
1645
+
1646
+ 1.0a31 (2022-02-04)
1647
+ -------------------
1648
+
1649
+ - Disable sticky map on mobile
1650
+ [thomlamb]
1651
+
1652
+ - Refactor : Displaying dates from section event is now in a macro to have more html flexibility
1653
+ [boulch, laulaz]
1654
+
1655
+
1656
+ 1.0a30 (2022-02-03)
1657
+ -------------------
1658
+
1659
+ - Allow to set instance behaviors on page or on procedure objects
1660
+ [boulch, laulaz]
1661
+
1662
+ - Improve react vue for mobile
1663
+ [thomlamb]
1664
+
1665
+ - Change static js and css for mobile responsive search
1666
+ [thomlamb]
1667
+
1668
+ - Simplifying faceted macros
1669
+ [boulch]
1670
+
1671
+
1672
+ 1.0a29 (2022-02-03)
1673
+ -------------------
1674
+
1675
+ - Fix error in navigation when filtering on workflow state
1676
+ [laulaz]
1677
+
1678
+ - Adapt faceted macros to discern section video and other contents. Fix video redirect link thanks to css.
1679
+ [boulch]
1680
+
1681
+
1682
+ 1.0a28 (2022-02-01)
1683
+ -------------------
1684
+
1685
+ - Fix navigation in subsites after navtree_depth property removal
1686
+ See https://github.com/plone/plone.app.layout/commit/7e2178d2ae11780d9211c71d8c97e4f81cd27620
1687
+ [laulaz]
1688
+
1689
+ - Update buildout to use Plone 6.0.0a3 packages versions
1690
+ [boulch]
1691
+
1692
+ - Allow collections as folders default view
1693
+ [laulaz]
1694
+
1695
+ - Add links on folder titles in navigation
1696
+ [laulaz]
1697
+
1698
+ - Fix double escaped navigation items
1699
+ See https://github.com/plone/plone.app.layout/issues/280
1700
+ [laulaz]
1701
+
1702
+
1703
+ 1.0a27 (2022-01-31)
1704
+ -------------------
1705
+
1706
+ - Add upgrade step to check contact itinerary if address is in visible blocks
1707
+ [boulch]
1708
+
1709
+ - Contact itinerary go out of contact address. Itinerary is displaying thanks to a new visible_blocks option value
1710
+ [boulch]
1711
+
1712
+ - Improve and resolv bug in load more in react vue
1713
+ [thomlamb]
1714
+
1715
+ - Add new Sendinblue newsletter subscription section
1716
+ [laulaz]
1717
+
1718
+ - disabling filter resets on search load (important, to settle a conflict with other react views)
1719
+ [thomlamb]
1720
+
1721
+ - Precision so that the css of the search is unique to itself
1722
+ [thomlamb]
1723
+
1724
+
1725
+ 1.0a26 (2022-01-27)
1726
+ -------------------
1727
+
1728
+ - Disable input search limit
1729
+ [thomlamb]
1730
+
1731
+ - Small correction of rendered data in views and scss
1732
+ [thomlamb]
1733
+
1734
+ - Fix local search when no text in input
1735
+ [thomlamb]
1736
+
1737
+
1738
+ 1.0a25 (2022-01-27)
1739
+ -------------------
1740
+
1741
+ - Avoid page reload after gallery spolight close
1742
+ [laulaz]
1743
+
1744
+ - Fix default value for search filters
1745
+ [thomlamb]
1746
+
1747
+ - Fix open_in_new_tab option for BlockLinks
1748
+ [laulaz]
1749
+
1750
+ - Allow some python modules in restricted python (Usefull for collective.themefragments modules)
1751
+ [boulch]
1752
+
1753
+ - Add offcanvas bootstrap component in a viewlet and inherit from search browserview
1754
+ [boulch, thomlamb]
1755
+
1756
+ - Always keep (empty) placeholder div in carousel/table templates even if item
1757
+ has no image
1758
+ [laulaz]
1759
+
1760
+ - Fix traceback when section selection target has no description
1761
+ [laulaz]
1762
+
1763
+
1764
+ 1.0a24 (2022-01-26)
1765
+ -------------------
1766
+
1767
+ - New react build
1768
+ [thomlamb]
1769
+
1770
+ - Adding loadmore for react vue
1771
+ [thomlamb]
1772
+
1773
+ - Improved query for search filters
1774
+ [thomlamb]
1775
+
1776
+ - Link changes for search results.
1777
+ [thomlamb]
1778
+
1779
+ - Update generated url for search items to match with react vue.
1780
+ [thomlamb]
1781
+
1782
+ - Fix street address formatting (number after street name)
1783
+ [laulaz]
1784
+
1785
+ - Add new css class in text section to stylize figure based on their size
1786
+ [boulch]
1787
+
1788
+ - Add @@is_eguichet_aware view to get e-guichet configuration/connexion status
1789
+ [boulch]
1790
+
1791
+
1792
+ 1.0a23 (2022-01-19)
1793
+ -------------------
1794
+
1795
+ - Update buildout to use Plone 6.0.0a2 released version
1796
+ [laulaz]
1797
+
1798
+ - Avoid traceback when trying to display an empty schedule
1799
+ [laulaz]
1800
+
1801
+ - Add breadcrumb to some select box in smartweb settings.
1802
+ [boulch]
1803
+
1804
+
1805
+ 1.0a22 (2022-01-13)
1806
+ -------------------
1807
+
1808
+ - Add dynamic style for leaflet. + general styles
1809
+ [thomlamb]
1810
+
1811
+
1812
+ 1.0a21 (2021-12-16)
1813
+ -------------------
1814
+
1815
+ - Adding load more button for react list element
1816
+ [thomlamb]
1817
+
1818
+ - Improvement js of the Schedule popup
1819
+ [thomlamb]
1820
+
1821
+ - Change image size scales (that were too small)
1822
+ [laulaz]
1823
+
1824
+ - Add events dates in events section
1825
+ [laulaz]
1826
+
1827
+ - Make HTML section folderish (can contain Images and Files)
1828
+ [laulaz]
1829
+
1830
+ - Add description on HTML section
1831
+ [laulaz]
1832
+
1833
+ - Section contact : Share address into 3 parts (street, entity, country) and display these parts into span
1834
+ [boulch]
1835
+
1836
+ - Javascript refactoring
1837
+ [thomlamb]
1838
+
1839
+ - Distribution of css in the global file
1840
+ [thomlamb]
1841
+
1842
+ - Add global style for all component.
1843
+ [thomlamb]
1844
+
1845
+ - Add removeAccents js for string url
1846
+ [thomlamb]
1847
+
1848
+ - Add "with-background" css class on sections that have a background image
1849
+ [laulaz]
1850
+
1851
+ - Add items category in news / events section
1852
+ [laulaz]
1853
+
1854
+ - Add news items publication date in news section
1855
+ [laulaz]
1856
+
1857
+ - Add option to display items descriptions in news / events / selection sections
1858
+ [laulaz]
1859
+
1860
+
1861
+ 1.0a20 (2021-12-06)
1862
+ -------------------
1863
+
1864
+ - Change markup and css classes for carousel / table templates
1865
+ [laulaz]
1866
+
1867
+ - Set SolR connections for external sources
1868
+ [mpeeters]
1869
+
1870
+ - Add routing for react search vue.
1871
+ [thomamb]
1872
+
1873
+
1874
+ 1.0a19 (2021-12-01)
1875
+ -------------------
1876
+
1877
+ - Avoid an unwanted behavior with `path` index combined with SolR and virtual host
1878
+ [mpeeters]
1879
+
1880
+
1881
+ 1.0a18 (2021-12-01)
1882
+ -------------------
1883
+
1884
+ - Avoid batching on vocabularies : contact categories and entity events
1885
+ [laulaz]
1886
+
1887
+ - Add plone.shortname behavior on all sections
1888
+ [laulaz]
1889
+
1890
+ - Restrict search inside minisites
1891
+ [laulaz]
1892
+
1893
+ - Fix footer viewlet markup to be included in Plone footer
1894
+ [laulaz]
1895
+
1896
+ - Add faceted layout class to body if a faceted layout is define.
1897
+ [boulch]
1898
+
1899
+
1900
+ 1.0a17 (2021-11-29)
1901
+ -------------------
1902
+
1903
+ - Move background_style (img background) out of sections (section-container div) and
1904
+ put it in pages view (sortable-section div). This simplifying css styling.
1905
+ [boulch]
1906
+
1907
+ - Split section macros to "manage macros" to manage sections and "title macros" to print sections title + add default Plone "container" css class.
1908
+ [boulch]
1909
+
1910
+ - Change generated url for the news and event sections for compatibility with react router
1911
+ [thomamb]
1912
+
1913
+
1914
+ 1.0a16 (2021-11-26)
1915
+ -------------------
1916
+
1917
+ - Add profile to handle bundles last_compilation dates
1918
+ [laulaz]
1919
+
1920
+ - Add new css styles
1921
+ [thomlamb]
1922
+
1923
+ - Udpate data for content items view
1924
+ [thomlamb]
1925
+
1926
+ - Refactor css className
1927
+ [thomlamb]
1928
+
1929
+ - Add moment js to parsed date
1930
+ [thomlamb]
1931
+
1932
+ - New build of react vue
1933
+ [thomlamb]
1934
+
1935
+ - Disallow hiding title on a collapsable section
1936
+ [laulaz]
1937
+
1938
+ - Fix bootstrap classes for table batches
1939
+ [laulaz]
1940
+
1941
+ - Can define specific events to get (instead of all events from an agenda)
1942
+ [boulch]
1943
+
1944
+ - Use Swiper instead of Bootstrap carousel
1945
+ [thomlamb, laulaz]
1946
+
1947
+
1948
+ 1.0a15 (2021-11-24)
1949
+ -------------------
1950
+
1951
+ - Allow to override / limit icons TTW (portal_resources)
1952
+ [laulaz]
1953
+
1954
+ - React Routge improvement
1955
+ [thomlamb]
1956
+
1957
+ - Refactor css className
1958
+ [thomlamb]
1959
+
1960
+ - fix a problem or react call the endpoint several times
1961
+ [thomlamb]
1962
+
1963
+ - New react build
1964
+ [thomlamb]
1965
+
1966
+ - Allow from 1 to 8 links per batch in links section
1967
+ [laulaz]
1968
+
1969
+ - Add more icons and use English names and titles for icons
1970
+ [laulaz]
1971
+
1972
+ - Change HTML field help to describe how to use it
1973
+ [laulaz]
1974
+
1975
+ - Hide icons profile from installer
1976
+ [laulaz]
1977
+
1978
+ - Fix banner not displaying in minisites
1979
+ [laulaz]
1980
+
1981
+ - Remove "Hide/Display banner from this item" link on banner in Preview mode
1982
+ [laulaz]
1983
+
1984
+
1985
+ 1.0a14 (2021-11-22)
1986
+ -------------------
1987
+
1988
+ - Force endpoints returning values as JSON
1989
+ [laulaz]
1990
+
1991
+ - Update news root and refactor code
1992
+ [thomlamb]
1993
+
1994
+ - prettify code and delete useless state
1995
+ [thomlamb]
1996
+
1997
+ - Add responsible 16:9 ratio on embed videos
1998
+ [laulaz]
1999
+
2000
+ - Add collapsable option for sections (click on section title opens section body)
2001
+ [laulaz]
2002
+
2003
+ - Add SVG icon option for block links, with icon resolver and basic icons set
2004
+ [laulaz]
2005
+
2006
+ - Cleanup useless code
2007
+ [laulaz]
2008
+
2009
+
2010
+ 1.0a13 (2021-11-17)
2011
+ -------------------
2012
+
2013
+ - Change url for fetch search filters data.
2014
+ [thomlamb]
2015
+
2016
+
2017
+ 1.0a12 (2021-11-16)
2018
+ -------------------
2019
+
2020
+ - Add blocks / list faceted layouts and (automatic) criteria configuration for
2021
+ collections
2022
+ [laulaz]
2023
+
2024
+ - Add new fields on rest views (event types, contact categories) to filter
2025
+ results and adapt endpoints
2026
+ [boulch]
2027
+
2028
+ - Refactor folder views html code to simplify it & make it more efficient (no
2029
+ more waking up of objects)
2030
+ [laulaz]
2031
+
2032
+ - Remove e_guichet action (replaced by generic account action) and add css class
2033
+ on all header actions
2034
+ [laulaz]
2035
+
2036
+ - Add text on search link for acessibility
2037
+ [laulaz]
2038
+
2039
+ - Adapt `@search` endpoint to be context based for SolR searches
2040
+ [mpeeters]
2041
+
2042
+ - Change max results logic for a number of batches (collection / events / news)
2043
+ [laulaz]
2044
+
2045
+ - Add React search view
2046
+ [thomlamb]
2047
+
2048
+ - Fix SearchableText indexing for links / video sections (new) descriptions
2049
+ [laulaz]
2050
+
2051
+ - Define cropping scales for all contents / fields
2052
+ [laulaz]
2053
+
2054
+ - Add/fix bootstrap classes on table / carousel views for batches
2055
+ [laulaz]
2056
+
2057
+ - Change image scales for listing (liste) / blocks (vignette) view and table
2058
+ view (liste / vignette), depending on batch size
2059
+ [laulaz]
2060
+
2061
+ - Change image scale (affiche) for sections background images
2062
+ [laulaz]
2063
+
2064
+ - Use background images (instead of `<img>`) in table template
2065
+ [laulaz]
2066
+
2067
+ - Add (rich) description on Video section
2068
+ [laulaz]
2069
+
2070
+ - Change some fields titles
2071
+ [laulaz]
2072
+
2073
+ - Fix @@search view (use ours instead of collective.solr)
2074
+ [laulaz]
2075
+
2076
+
2077
+ 1.0a11 (2021-11-05)
2078
+ -------------------
2079
+
2080
+ - Adapt SolR search to reflect removal of `selected_entity` on `DirectoryView` content type
2081
+ [mpeeters]
2082
+
2083
+ - Implement cross core SolR search
2084
+ [mpeeters]
2085
+
2086
+ - Add category_and_topics index, vocabulary and configuration related code
2087
+ [jimbiscuit, mpeeters]
2088
+
2089
+ - CSS fixes / improvements
2090
+ [thomlamb]
2091
+
2092
+ - Code refactoring
2093
+ [laulaz]
2094
+
2095
+ - Add React views and machinery
2096
+ [thomlamb, duchenean]
2097
+
2098
+ - Add cropping support and define cropping scales per content / field
2099
+ [laulaz]
2100
+
2101
+ - Change viewlets structure
2102
+ [laulaz]
2103
+
2104
+ - Compute custom body class (minisite / subsite / banner)
2105
+ [laulaz]
2106
+
2107
+ - Improve all sections / fields / forms / views / templates markup / a11y
2108
+ [boulch, laulaz]
2109
+
2110
+ - Add locking support for sections
2111
+ [laulaz]
2112
+
2113
+ - Add collective.anysurfer dependency
2114
+ [boulch]
2115
+
2116
+ - Change navigation markup (quickaccess, close / prev buttons, etc)
2117
+ [laulaz]
2118
+
2119
+ - Add new types : EventsView, NewsView, DirectoryView, SectionHTML, SectionMap,
2120
+ PortalPage, SectionNews, SectionEvents, SectionCollection, SectionSelection
2121
+ [boulch, laulaz]
2122
+
2123
+ - Fix schedule display in Contact section (days delta, format & translations)
2124
+ [laulaz]
2125
+
2126
+ - Put subsite logo & navigation viewlets in a new viewlet manager (to have custom
2127
+ html around them). Previous viewlets are also kept separate (& hidden), in
2128
+ case we need to split them.
2129
+ [laulaz]
2130
+
2131
+ - Add itinerary link on contact section
2132
+ [laulaz]
2133
+
2134
+ - Add logo & lead image on contact section
2135
+ [laulaz]
2136
+
2137
+ - Change linked contact field description
2138
+ [laulaz]
2139
+
2140
+ - Cleanup old QuickAccess behavior
2141
+ [laulaz]
2142
+
2143
+
2144
+ 1.0a10 (2021-07-26)
2145
+ -------------------
2146
+
2147
+ - Improve contacts search (sorted correctly & no batching anymore)
2148
+ [laulaz]
2149
+
2150
+
2151
+ 1.0a9 (2021-07-16)
2152
+ ------------------
2153
+
2154
+ - Update pages / procedures categories taxonomies
2155
+ [laulaz]
2156
+
2157
+ - Override basic widget template to move description up to input field (jbot)
2158
+ [boulch]
2159
+
2160
+ - Fix : dont display blocks title if display block is False.
2161
+ [boulch]
2162
+
2163
+ - Display subcontacts from imio.directory.Contact into section contact view.
2164
+ [boulch]
2165
+
2166
+ - Fix missing `Add new` menu on folderish sections
2167
+ [laulaz]
2168
+
2169
+
2170
+ 1.0a8 (2021-07-12)
2171
+ ------------------
2172
+
2173
+ - Display schedule in section contact
2174
+ [boulch]
2175
+
2176
+ - Fix subsite and minisite permissions
2177
+ [boulch]
2178
+
2179
+
2180
+ 1.0a7 (2021-07-07)
2181
+ ------------------
2182
+
2183
+ - Add imio.smartweb.common (imio.smartweb.topics behavior with topics vocabulary)
2184
+ [boulch]
2185
+
2186
+ - Add link to imio.gdpr legal text in Footer
2187
+ [boulch]
2188
+
2189
+ - Add custom permissions to manage Subsite and Minisite
2190
+ [boulch]
2191
+
2192
+ - Authorize adding `Message` (from collective.messagesviewlet) content types in imio.smartweb.Folder
2193
+ [boulch]
2194
+
2195
+
2196
+ 1.0a6 (2021-06-11)
2197
+ ------------------
2198
+
2199
+ - Override plone logo viewlet to display minisite logo
2200
+ [boulch]
2201
+
2202
+ - improve sections and pages indexing
2203
+ [laulaz]
2204
+
2205
+ - Add new section : imio.smartweb.SectionSelections
2206
+ [boulch]
2207
+
2208
+ - Add quick_access_items behavior on imio.smartweb.Folder
2209
+ [boulch]
2210
+
2211
+ - Change minisite properties & dependency with subsite
2212
+ [laulaz]
2213
+
2214
+ - Fix : Can not add minisite in another minisite
2215
+ [boulch]
2216
+
2217
+ - Add bold text in description
2218
+ [boulch]
2219
+
2220
+
2221
+ 1.0a5 (2021-06-03)
2222
+ ------------------
2223
+
2224
+ - Subsite logo is a link to subsite root
2225
+ [boulch]
2226
+
2227
+ - Enable minisite only on a container in PloneSite root
2228
+ [boulch]
2229
+
2230
+ - Can not enable subsite on minisite
2231
+ [boulch]
2232
+
2233
+ - Can not enable minisite on a subsite
2234
+ [boulch]
2235
+
2236
+ - Added style for correct background display
2237
+ [thomlamb]
2238
+
2239
+ - Add Minisites
2240
+ [boulch, laulaz]
2241
+
2242
+ - Hide Title for SectionText
2243
+ [boulch, laulaz]
2244
+
2245
+ - Remove workflows for SectionFooter and SectionContact
2246
+ [boulch, laulaz]
2247
+
2248
+ - Reorder SectionContact
2249
+ [boulch, laulaz]
2250
+
2251
+
2252
+ 1.0a4 (2021-05-26)
2253
+ ------------------
2254
+
2255
+ - Add can_toggle_title_visibility property on sections. Use it on Contact section.
2256
+ [boulch, laulaz]
2257
+
2258
+ - Add rich description on all content types
2259
+ [boulch]
2260
+
2261
+ - Add configurable url for connection to directory authentic source
2262
+ [boulch]
2263
+
2264
+ - Add contact section (with connection to directory authentic source)
2265
+ [boulch, laulaz]
2266
+
2267
+ - Views / templates code simplification
2268
+ [laulaz]
2269
+
2270
+ - Simplify taxonomies setup code & use taxonomy behavior directly
2271
+ [laulaz]
2272
+
2273
+ - Remove sections editing tools in footers
2274
+ [laulaz]
2275
+
2276
+ - Add preview action in Plone toolbar to hide editor actions in content
2277
+ [boulch]
2278
+
2279
+ - Move field category in categorization fieldset
2280
+ [boulch]
2281
+
2282
+ - Hide leadimage caption field everywhere (editform, addform)
2283
+ [boulch]
2284
+
2285
+
2286
+ 1.0a3 (2021-04-23)
2287
+ ------------------
2288
+
2289
+ - improved css for subsite navigation
2290
+ [thomlamb]
2291
+
2292
+ - Harmonize all sections templates. Rename some css class. Add new css class.
2293
+ [boulch, thomlamb]
2294
+
2295
+ - Add row class in page view template to be bootstrap aware.
2296
+ [boulch]
2297
+
2298
+ - Get sections bootstrap_css value in get_class pages view (instead of sections templates) to be bootstrap aware.
2299
+ [boulch]
2300
+
2301
+ - Compile resources
2302
+ [laulaz]
2303
+
2304
+
2305
+ 1.0a2 (2021-04-22)
2306
+ ------------------
2307
+
2308
+ - improved html semantics
2309
+ [thomlamb]
2310
+
2311
+ - WEBMIGP5-11: Add real values in page taxonomy
2312
+ [laulaz]
2313
+
2314
+ - Add category viewlet
2315
+ [laulaz]
2316
+
2317
+ - Add banner viewlet with local hide/show logic
2318
+ [boulch, laulaz]
2319
+
2320
+ - Change sections titles logic & add button to show / hide titles
2321
+ [laulaz]
2322
+
2323
+ - Add classes on add/edit forms legends when expanded / collapsed
2324
+ [laulaz]
2325
+
2326
+ - Add missing bootstrap class option (2/3)
2327
+ [laulaz]
2328
+
2329
+ - Restrict background image field to administrators
2330
+ [laulaz]
2331
+
2332
+ - Change folders display views order & default
2333
+ [laulaz]
2334
+
2335
+ - Allow (only) connected users to see default pages in breadcrumbs
2336
+ [laulaz]
2337
+
2338
+ - Migrate & improve buildout for Plone 6
2339
+ [boulch]
2340
+
2341
+ - Fix tests for Plone 6
2342
+ [boulch]
2343
+
2344
+ - Add basic bootstrap styles for Plone 6
2345
+ [thomlamb]
2346
+
2347
+ - Migrate default_page_warning template to Plone 6
2348
+ [laulaz]
2349
+
2350
+ - Add missing translation domain
2351
+ [laulaz]
2352
+
2353
+ - Add basic style for sortable hover
2354
+ This style has disappeared in Plone 6 (>< Plone 5)
2355
+ [laulaz]
2356
+
2357
+ - Fix add/edit forms no-tabbing feature for Plone 6
2358
+ [laulaz]
2359
+
2360
+
2361
+ 1.0a1 (2021-04-19)
2362
+ ------------------
2363
+
2364
+ - Initial release.
2365
+ [boulch]