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