imio.smartweb.core 1.2.35__tar.gz → 1.2.37__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.
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/CHANGES.rst +20 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/PKG-INFO +21 -1
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/setup.py +1 -1
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/sitemap.py +52 -46
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/contents/rest/utils.py +99 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/contents/sections/external_content/configure.zcml +51 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/contents/sections/external_content/view.pt +54 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/contents/sections/external_content/view_idelux_waste.pt +50 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/contents/sections/external_content/view_inbw_containers_affluence.pt +91 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/contents/sections/external_content/view_odwb_widget.pt +20 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/contents/sections/external_content/views.py +407 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/text/view.pt +1 -1
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/interfaces.py +7 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/metadata.xml +1 -1
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/profiles/default/types/Collection.xml +13 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/profiles/default/types/File.xml +13 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/profiles/default/types/Image.xml +13 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.BlockLink.xml +5 -0
- {imio.smartweb.core-1.2.35/src/imio/smartweb/core/upgrades/profiles/1035_to_1036 → imio.smartweb.core-1.2.37/src/imio/smartweb/core/profiles/default}/types/imio.smartweb.CirkwiView.xml +1 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.DirectoryView.xml +1 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml +1 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Folder.xml +1 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml +1 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Page.xml +1 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.PortalPage.xml +1 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Procedure.xml +1 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_section_external_content.py +23 -23
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_sections.py +3 -15
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_sitemap.py +41 -22
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/configure.zcml +18 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/Collection.xml +13 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/File.xml +13 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/Image.xml +13 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.BlockLink.xml +12 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.CirkwiView.xml +12 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.DirectoryView.xml +12 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.EventsView.xml +12 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Folder.xml +12 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.NewsView.xml +12 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Page.xml +12 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.PortalPage.xml +12 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Procedure.xml +12 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/configure.zcml +10 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/viewlets/external_content.py +22 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/viewlets/odwb_widget_header.pt +19 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css +1 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css +1 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/css/686.smartweb-webcomponents-compiled.css +1 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css +1 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +1 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/209.smartweb-webcomponents-compiled.js +2 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +2 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +1 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/568.smartweb-webcomponents-compiled.js +2 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/568.smartweb-webcomponents-compiled.js.LICENSE.txt +14 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/674.smartweb-webcomponents-compiled.js +2 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/686.smartweb-webcomponents-compiled.js +1 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js +2 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/804.smartweb-webcomponents-compiled.js +1 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -0
- imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +2 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/utils/translation.js +2 -2
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio.smartweb.core.egg-info/PKG-INFO +21 -1
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio.smartweb.core.egg-info/SOURCES.txt +39 -22
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/contents/sections/external_content/configure.zcml +0 -22
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/contents/sections/external_content/view.pt +0 -36
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/contents/sections/external_content/views.py +0 -228
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/viewlets/external_content.py +0 -14
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/css/323.smartweb-webcomponents-compiled.css +0 -1
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/css/392.smartweb-webcomponents-compiled.css +0 -1
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/css/528.smartweb-webcomponents-compiled.css +0 -1
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/css/647.smartweb-webcomponents-compiled.css +0 -1
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +0 -1
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/143.smartweb-webcomponents-compiled.js +0 -2
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js +0 -2
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js +0 -1
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/392.smartweb-webcomponents-compiled.js +0 -1
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/493.smartweb-webcomponents-compiled.js +0 -2
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/528.smartweb-webcomponents-compiled.js +0 -2
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/528.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -1
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/647.smartweb-webcomponents-compiled.js +0 -1
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/729.smartweb-webcomponents-compiled.js +0 -2
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/729.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -1
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js +0 -2
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js +0 -2
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -642
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/979.smartweb-webcomponents-compiled.js +0 -1
- imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +0 -2
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/CONTRIBUTORS.rst +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/DEVELOP.rst +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/MANIFEST.in +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/README.rst +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/docs/conf.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/docs/index.rst +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/requirements.txt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/setup.cfg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/behaviors/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/behaviors/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/behaviors/listing.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/behaviors/minisite.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/behaviors/orientation.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/behaviors/quickaccess.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/behaviors/subsite.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/banner/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/banner/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/banner/settings.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/controlpanel.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/dashboards/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/dashboards/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/dashboards/plausible.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/dashboards/plausible.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/faceted/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/faceted/block_view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/faceted/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/faceted/macros.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/faceted/map.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/faceted/map.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/faceted/summary_view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/faceted/views.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/faceted/widgets/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/faceted/widgets/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/faceted/widgets/select.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/faceted/widgets/select.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/footer/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/footer/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/footer/settings.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/forms.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/herobanner/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/herobanner/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/herobanner/settings.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/icons.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/instancebehaviors/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/instancebehaviors/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/instancebehaviors/form.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/instancebehaviors/utils.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/layout.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/minisite/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/minisite/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/minisite/settings.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/overrides/.gitkeep +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/overrides/plone.app.content.browser.contents.templates.properties.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/overrides/plone.app.layout.viewlets.sections.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/redirect_to_main_react_view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/search/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/search/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/search/search.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/search/search.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/.gitkeep +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/Makefile +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/action-e-guichet.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/action-email.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/action-engagement.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/action-nous-contacter.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/action-nous-rejoindre.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/action-organiser-un-evenement.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/action-signaler-un-probleme.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/action-voir-plan.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-associations.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-avis-et-enquetes.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-cinema.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-commerce.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-concert.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-culture.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-demarches.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-enfance.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-enseignement.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-environnement-gestion-des-dechets.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-exposition.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-horaires.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-infos-travaux.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-mandataires.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-mobilite.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-mon-dossier.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-parc-de-stationnement.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-parcs-et-jardins.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-primes.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-sport-courir.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-sport-trophee.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-sport-velo.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-theatre.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/categorie-tourisme.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/organisation-academie-musique.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/organisation-bibliotheque.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/organisation-centre-sportif.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/organisation-cpas.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/organisation-ecole-des-arts.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/organisation-ecole.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/organisation-mobilite.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/organisation-police.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/reseausocial-facebook-pouce.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/reseausocial-facebook.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/reseausocial-instagram.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/reseausocial-twitter.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/reseausocial-vimeo.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/reseausocial-youtube.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/vue-actualites.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/vue-agenda.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/icons/vue-annuaire.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/package.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/smartweb-edit-compiled.css +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/smartweb-edit-compiled.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/smartweb-swiperconfig-compiled.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/smartweb-view-compiled.css +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/smartweb-view-compiled.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/spotlight-bundle.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/src/edit.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/src/edit.less +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/src/swiper-config.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/src/view.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/src/view.less +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/swiper-bundle.min.css +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/swiper-bundle.min.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/static/webpack.config.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/subsite/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/subsite/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/subsite/settings.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/templates/link_input.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/utils.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/vocabulary.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/config.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/blocks/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/blocks/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/blocks/link/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/blocks/link/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/blocks/link/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/blocks/link/fields.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/blocks/link/icons_input.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/blocks/subscriber.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/cropping.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/folder/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/folder/block_view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/folder/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/folder/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/folder/element_view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/folder/macros.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/folder/summary_view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/folder/views.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/cirkwi/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/cirkwi/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/cirkwi/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/cirkwi/view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/cirkwi/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/footer/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/footer/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/footer/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/herobanner/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/herobanner/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/herobanner/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/page/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/page/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/page/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/pages.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/portal_page/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/portal_page/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/portal_page/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/portal_page/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/procedure/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/procedure/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/procedure/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/procedure/utils.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/procedure/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/subscriber.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/view_section.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/pages/views.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/base.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/directory/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/directory/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/directory/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/directory/endpoint.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/directory/view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/directory/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/events/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/events/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/events/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/events/endpoint.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/events/view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/events/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/news/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/news/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/news/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/news/endpoint.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/news/view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/news/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/search/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/search/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/search/endpoint.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/traversal.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/rest/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/base.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/collection/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/collection/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/collection/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/collection/views.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/common_templates/carousel.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/common_templates/table.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/contact/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/contact/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/contact/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/contact/forms.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/contact/macros.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/contact/utils.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/contact/view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/contact/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/events/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/events/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/events/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/events/macros.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/events/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/external_content/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/external_content/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/external_content/view_arcgis.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/files/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/files/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/files/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/files/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/gallery/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/gallery/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/gallery/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/gallery/view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/gallery/views.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/html/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/html/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/html/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/html/view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/links/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/links/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/links/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/links/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/macros.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/map/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/map/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/map/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/map/view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/map/views.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/news/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/news/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/news/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/news/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/postit/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/postit/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/postit/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/postit/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/selections/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/selections/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/selections/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/selections/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/sendinblue/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/sendinblue/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/sendinblue/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/sendinblue/view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/sendinblue/views.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/slide/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/slide/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/slide/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/slide/view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/slide/view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/subscriber.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/text/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/text/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/text/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/text/forms.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/text/views.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/video/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/video/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/video/content.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/video/view.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/video/views.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/contents/sections/views.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/faceted/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/faceted/config/collection.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/faceted/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/faceted/layout.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/faceted/menu.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/indexers.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/indexers.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/permissions.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/actions.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/browserlayer.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/catalog.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/controlpanel.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/diff_tool.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/registry/bundles.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/registry/geolocation.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/registry/plone.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/registry/smartweb.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/repositorytool.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/taxonomies/page_category.cfg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/taxonomies/page_category.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/taxonomies/procedure_category.cfg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/taxonomies/procedure_category.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Footer.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.HeroBanner.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionCollection.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionContact.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionExternalContent.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionGallery.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionLinks.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionMap.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionPostit.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionText.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/types.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/default/workflows.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/icons/basic/registry.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/icons/contenttypes/registry.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/last_compilation/registry.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/testing/metadata.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/testing/registry.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/testing/types/Collection.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/testing/types/Document.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/testing/types/Folder.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/testing/types/imio.smartweb.DirectoryView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/testing/types/imio.smartweb.EventsView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/testing/types/imio.smartweb.NewsView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/testing/types.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/uninstall/browserlayer.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles/validation/contentrules.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/profiles.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/rest/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/rest/authentic_sources.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/rest/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/setuphandlers.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/subscribers.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/subscribers.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/testing.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/testing.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/cirkwi_bad_widget_mock.html +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/cirkwi_good_widget_mock.html +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_auth_sources_directory_entity.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_auth_sources_events_entity.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_auth_sources_news_entity.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_contact_category_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_contact_empty_schedule_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_contact_images_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_contact_no_image_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_contact_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_contacts_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_directory_entities_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_events_agendas_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_events_entities_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_events_types_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_news_entities_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_news_newsfolder_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_no_contact_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_no_newsfolder_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_procedures_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_rest_directory.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_rest_events.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_rest_events_with_breadcrumbs.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_rest_news.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_rest_specific_events.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_rest_specific_news.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_search_one_news_entity.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/json_used_iam_vocabularies_jobseeker_tourist.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/plone.png +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/resources/plone.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/robot/test_ct_folder.robot +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/robot/test_ct_page.robot +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/robot/test_ct_procedure.robot +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/robot/test_example.robot +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_banner.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_behaviors.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_categories.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_chatbot.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_cirkwiview.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_cropping.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_default_pages.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_faceted.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_folder.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_footer.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_herobanner.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_icons.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_indexes.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_instance_behaviors.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_local_roles.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_logo.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_minisite.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_navigation.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_page.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_plausibleview.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_portal_page.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_procedure.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_redirect_to_main_react_view.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_rest.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_robot.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_search.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_section_contact.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_section_events.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_section_news.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_section_sendinblue.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_setup.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_social.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_subsite.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_text.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_toolbar.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_utils.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/test_vocabularies.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/tests/utils.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1020_to_1021/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1020_to_1021/types/imio.smartweb.SectionHTML.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1021_to_1022/registry/hero-banner.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1021_to_1022/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1022_to_1023/registry/icons.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types/imio.smartweb.Page.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types/imio.smartweb.PortalPage.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types/imio.smartweb.Procedure.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types/imio.smartweb.SectionPostit.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/workflows.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1025_to_1026/registry/propose-urls.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1027_to_1028/registry/open-external-link-in-new-tab.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1029_to_1030/actions.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1029_to_1030/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1030_to_1031/registry/resources.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1031_to_1032/registry/spotlight.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.BlockLink.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.DirectoryView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.EventsView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.Folder.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.Footer.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.HeroBanner.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.NewsView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.Page.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.PortalPage.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.Procedure.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionCollection.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionContact.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionEvents.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionFiles.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionGallery.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionHTML.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionLinks.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionMap.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionNews.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionPostit.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionSelections.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionSendinblue.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionSlide.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionText.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionVideo.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.DirectoryView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.EventsView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.Folder.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.NewsView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.Page.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.PortalPage.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.Procedure.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/registry/plone.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.35/src/imio/smartweb/core/profiles/default → imio.smartweb.core-1.2.37/src/imio/smartweb/core/upgrades/profiles/1035_to_1036}/types/imio.smartweb.CirkwiView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/types/imio.smartweb.Folder.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/types.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1036_to_1037/actions.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1036_to_1037/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1037_to_1038/registry/plausible.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.Page.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.PortalPage.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.Procedure.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.SectionExternalContent.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/workflows.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1039_to_1040/types/imio.smartweb.SectionSlide.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1040_to_1041/types/imio.smartweb.SectionText.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionContact.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionEvents.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionExternalContent.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionFiles.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionGallery.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionLinks.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionMap.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionNews.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionPostit.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSelections.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSendinblue.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionVideo.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1045_to_1046/registry/plone.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1045_to_1046/types/imio.smartweb.SectionExternalContent.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1046_to_1047/types/imio.smartweb.Folder.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/registry/plone.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.DirectoryView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.EventsView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.Folder.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.NewsView.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionCollection.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionContact.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionEvents.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionExternalContent.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionLinks.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionNews.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionSelections.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1051_to_1052/actions.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1052_to_1053/diff_tool.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1052_to_1053/repositorytool.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1052_to_1053/types/imio.smartweb.SectionHTML.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/profiles/1053_to_1054/registry.xml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/upgrades/upgrades.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/utils.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/actions.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/arcgis_header.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/banner.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/banner.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/category.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/category.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/chatbot.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/chatbot.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/default_page_warning.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/footer.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/footer.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/header.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/header_actions.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/header_actions_viewlet.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/header_top_viewlet.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/herobanner.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/herobanner.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/httpheaders.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/interfaces.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/lead_image.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/logo.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/logo.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/menu.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/messages.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/minisite.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/minisite_link.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/navigation.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/offcanvas.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/offcanvas.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/ogp_tag_header.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/ogptags.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/procedure.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/procedure.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/searchbox.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/social.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/subsite.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/subsite_header_viewlet.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/subsite_logo.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/subsite_navigation.pt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/viewlets/toolbar.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/vocabularies.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/vocabularies.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/.eslintrc.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/.npmrc +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/.prettierrc.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/Makefile +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/README.md +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/__init__.py +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/babel.config.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/build/assets/layers-2x.8f2c4d11474275fbc1614b9098334eae.png +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/build/assets/layers.416d91365b44e4b4f4777663e6f009f3.png +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/build/assets/location-bla.1423bcce16ddcb21141430cac1428dc1.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/build/assets/marker-icon.2b3e1faf89f94a4835397e7a43b4f77d.png +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/build/assets/next-react-white.819cb069ac8eec300a9db6a7707712d6.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/build/assets/next-react.17bc43ff4a6a86f4520f5782f6a89a72.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/build/assets/oeil-big.f32cd1df1274a9593de0c4bd8e344216.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/build/assets/pin-react-active.07d154037a15be5525b823fdc626cf29.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/build/assets/pin-react.fda934b5daf26dd4da2a71a7e7e44431.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/build/assets/search.57bdbf5b191499cd77514097d1c4972c.svg +0 -0
- /imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js.LICENSE.txt → /imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/209.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- /imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/143.smartweb-webcomponents-compiled.js.LICENSE.txt → /imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- /imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/493.smartweb-webcomponents-compiled.js.LICENSE.txt → /imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/674.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- /imio.smartweb.core-1.2.35/src/imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js.LICENSE.txt → /imio.smartweb.core-1.2.37/src/imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/configure.zcml +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/package.json +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/postcss.config.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/close.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/facebook-news.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/img-placeholder-bla.png +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/location-active-bla.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/location-bla.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/next-react-white.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/next-react.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/oeil-big.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/pin-active.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/pin-react-active.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/pin-react.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/pin.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/search.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/assets/skeleton.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/download.svg +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/index.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Events/Events.scss +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Events/index.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/News/News.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/News/News.scss +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/News/index.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Search/Search.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Search/Search.scss +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/components/Search/index.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/hooks/useAxios.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/index.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/index.scss +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/utils/Map.jsx +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/utils/Map.scss +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/src/utils/url.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/webpack.config.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/webcomponents/webpackPlonePlugin.js +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio.smartweb.core.egg-info/dependency_links.txt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio.smartweb.core.egg-info/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio.smartweb.core.egg-info/not-zip-safe +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio.smartweb.core.egg-info/requires.txt +0 -0
- {imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio.smartweb.core.egg-info/top_level.txt +0 -0
@@ -2,6 +2,26 @@ Changelog
|
|
2
2
|
=========
|
3
3
|
|
4
4
|
|
5
|
+
1.2.37 (2024-03-18)
|
6
|
+
-------------------
|
7
|
+
|
8
|
+
- Add new plugin in external content section / refactor some code in external content section
|
9
|
+
[boulch]
|
10
|
+
|
11
|
+
- Add figcaption content in alt attribute for images in section text
|
12
|
+
[thomlamb]
|
13
|
+
|
14
|
+
|
15
|
+
1.2.36 (2024-02-22)
|
16
|
+
-------------------
|
17
|
+
|
18
|
+
- WEB-4072, WEB-4073 : Enable solr.fields behavior on some content types
|
19
|
+
[remdub]
|
20
|
+
|
21
|
+
- WEB-4001 : Refactoring the generation of sitemap.xml.gz
|
22
|
+
[boulch]
|
23
|
+
|
24
|
+
|
5
25
|
1.2.35 (2024-02-21)
|
6
26
|
-------------------
|
7
27
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: imio.smartweb.core
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.37
|
4
4
|
Summary: Core product for iMio websites
|
5
5
|
Home-page: https://github.com/imio/imio.smartweb.core
|
6
6
|
Author: Christophe Boulanger
|
@@ -158,6 +158,26 @@ Changelog
|
|
158
158
|
=========
|
159
159
|
|
160
160
|
|
161
|
+
1.2.37 (2024-03-18)
|
162
|
+
-------------------
|
163
|
+
|
164
|
+
- Add new plugin in external content section / refactor some code in external content section
|
165
|
+
[boulch]
|
166
|
+
|
167
|
+
- Add figcaption content in alt attribute for images in section text
|
168
|
+
[thomlamb]
|
169
|
+
|
170
|
+
|
171
|
+
1.2.36 (2024-02-22)
|
172
|
+
-------------------
|
173
|
+
|
174
|
+
- WEB-4072, WEB-4073 : Enable solr.fields behavior on some content types
|
175
|
+
[remdub]
|
176
|
+
|
177
|
+
- WEB-4001 : Refactoring the generation of sitemap.xml.gz
|
178
|
+
[boulch]
|
179
|
+
|
180
|
+
|
161
181
|
1.2.35 (2024-02-21)
|
162
182
|
-------------------
|
163
183
|
|
{imio.smartweb.core-1.2.35 → imio.smartweb.core-1.2.37}/src/imio/smartweb/core/browser/sitemap.py
RENAMED
@@ -2,6 +2,8 @@ from BTrees.OOBTree import OOBTree
|
|
2
2
|
from imio.smartweb.core.config import DIRECTORY_URL
|
3
3
|
from imio.smartweb.core.config import EVENTS_URL
|
4
4
|
from imio.smartweb.core.config import NEWS_URL
|
5
|
+
from imio.smartweb.core.contents.rest.utils import get_auth_sources_response
|
6
|
+
from imio.smartweb.core.contents.rest.utils import get_entity_id
|
5
7
|
from imio.smartweb.core.utils import get_json
|
6
8
|
from plone import api
|
7
9
|
from plone.base.interfaces import IPloneSiteRoot
|
@@ -86,50 +88,54 @@ class CustomSiteMapView(SiteMapView):
|
|
86
88
|
"lastmod": lastmod,
|
87
89
|
}
|
88
90
|
|
89
|
-
auth_sources =
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
91
|
+
auth_sources = {
|
92
|
+
"directory": {
|
93
|
+
"entity_reg_var": "smartweb.directory_entity_uid",
|
94
|
+
"main_rest_view": "smartweb.default_directory_view",
|
95
|
+
"vocabulary": "imio.smartweb.vocabulary.RemoteDirectoryEntities",
|
96
|
+
"url": DIRECTORY_URL,
|
97
|
+
},
|
98
|
+
"events": {
|
99
|
+
"entity_reg_var": "smartweb.events_entity_uid",
|
100
|
+
"main_rest_view": "smartweb.default_events_view",
|
101
|
+
"vocabulary": "imio.smartweb.vocabulary.RemoteEventsEntities",
|
102
|
+
"url": EVENTS_URL,
|
103
|
+
},
|
104
|
+
"news": {
|
105
|
+
"entity_reg_var": "smartweb.news_entity_uid",
|
106
|
+
"main_rest_view": "smartweb.default_news_view",
|
107
|
+
"vocabulary": "imio.smartweb.vocabulary.RemoteNewsEntities",
|
108
|
+
"url": NEWS_URL,
|
109
|
+
},
|
110
|
+
}
|
111
|
+
for auth_source_key, auth_source_value in auth_sources.items():
|
112
|
+
entity_uid = api.portal.get_registry_record(
|
113
|
+
auth_source_value.get("entity_reg_var")
|
114
|
+
)
|
115
|
+
if entity_uid is None:
|
116
|
+
return self.request.response.setStatus(404, "No entity found")
|
117
|
+
entity_id = get_entity_id(auth_source_value.get("vocabulary"), entity_uid)
|
118
|
+
auth_source_uid = api.portal.get_registry_record(
|
119
|
+
f"smartweb.default_{auth_source_key}_view", default=None
|
120
|
+
)
|
121
|
+
if auth_source_uid is None:
|
122
|
+
return self.request.response.setStatus(
|
123
|
+
404, "No default authentic source found"
|
101
124
|
)
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
f"portal_type={auth_source_value.get('type')}",
|
120
|
-
"fullobjects=0",
|
121
|
-
"sort_on=sortable_title",
|
122
|
-
]
|
123
|
-
url = f"{auth_source_value.get('path')}/{endpoint}?{'&'.join(params)}"
|
124
|
-
results = get_json(url)
|
125
|
-
if results is None:
|
126
|
-
continue
|
127
|
-
for item in results.get("items"):
|
128
|
-
item_id = normalizeString(item.get("title"))
|
129
|
-
item_uid = item.get("id")
|
130
|
-
loc = f"{auth_source_view_url}/{item_id}?u={item_uid}"
|
131
|
-
lastmod = item.get("modified")
|
132
|
-
yield {
|
133
|
-
"loc": loc,
|
134
|
-
"lastmod": lastmod,
|
135
|
-
}
|
125
|
+
brains = api.content.find(UID=auth_source_uid)
|
126
|
+
obj = brains[0].getObject()
|
127
|
+
auth_source_view_url = obj.absolute_url()
|
128
|
+
results = get_auth_sources_response(
|
129
|
+
auth_source_key, normalizeString(entity_id), (60 * 60 * 24)
|
130
|
+
).json()
|
131
|
+
if results is None or results.get("type") == "ValueError":
|
132
|
+
continue
|
133
|
+
for item in results.get("items"):
|
134
|
+
item_id = normalizeString(item.get("title"))
|
135
|
+
item_uid = item.get("id")
|
136
|
+
loc = f"{auth_source_view_url}/{item_id}?u={item_uid}"
|
137
|
+
lastmod = item.get("modified")
|
138
|
+
yield {
|
139
|
+
"loc": loc,
|
140
|
+
"lastmod": lastmod,
|
141
|
+
}
|
@@ -0,0 +1,99 @@
|
|
1
|
+
# # -*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
from imio.smartweb.core.config import DIRECTORY_URL
|
4
|
+
from imio.smartweb.core.config import EVENTS_URL
|
5
|
+
from imio.smartweb.core.config import NEWS_URL
|
6
|
+
from imio.smartweb.core.utils import get_wca_token
|
7
|
+
from plone.memoize import ram
|
8
|
+
from plone.memoize.view import memoize
|
9
|
+
from time import time
|
10
|
+
from zope.component import getUtility
|
11
|
+
from zope.schema.interfaces import IVocabularyFactory
|
12
|
+
|
13
|
+
import json
|
14
|
+
import os
|
15
|
+
import requests
|
16
|
+
|
17
|
+
|
18
|
+
def get_entity_id(vocabulary_name, uid):
|
19
|
+
vocabulary = getUtility(IVocabularyFactory, name=vocabulary_name)()
|
20
|
+
for term in vocabulary:
|
21
|
+
if term.token == uid:
|
22
|
+
return term.title or term.id
|
23
|
+
return None
|
24
|
+
|
25
|
+
|
26
|
+
def get_auth_sources_response(
|
27
|
+
sources_name, entity_id, wf_status=["published"], time_to_cache=60
|
28
|
+
):
|
29
|
+
"""_summary_
|
30
|
+
|
31
|
+
Args:
|
32
|
+
sources_name (_type_): 3 values are possible: "directory", "news", "events"
|
33
|
+
entity_id (_type_): _description_
|
34
|
+
|
35
|
+
Returns:
|
36
|
+
_type_: json response
|
37
|
+
"""
|
38
|
+
url = ""
|
39
|
+
if sources_name == "directory":
|
40
|
+
url = DIRECTORY_URL
|
41
|
+
portaltype = "imio.directory.Contact"
|
42
|
+
client_id_varname = "RESTAPI_DIRECTORY_CLIENT_ID"
|
43
|
+
client_secret_varname = "RESTAPI_DIRECTORY_CLIENT_SECRET"
|
44
|
+
elif sources_name == "events":
|
45
|
+
url = EVENTS_URL
|
46
|
+
portaltype = "imio.events.Event"
|
47
|
+
client_id_varname = "RESTAPI_EVENTS_CLIENT_ID"
|
48
|
+
client_secret_varname = "RESTAPI_EVENTS_CLIENT_SECRET"
|
49
|
+
elif sources_name == "news":
|
50
|
+
url = NEWS_URL
|
51
|
+
portaltype = "imio.news.NewsItem"
|
52
|
+
client_id_varname = "RESTAPI_NEWS_CLIENT_ID"
|
53
|
+
client_secret_varname = "RESTAPI_NEWS_CLIENT_SECRET"
|
54
|
+
|
55
|
+
payload = {
|
56
|
+
"query": [
|
57
|
+
{
|
58
|
+
"i": "portal_type",
|
59
|
+
"o": "plone.app.querystring.operation.selection.is",
|
60
|
+
"v": [portaltype],
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"i": "path",
|
64
|
+
"o": "plone.app.querystring.operation.string.absolutePath",
|
65
|
+
"v": f"/{entity_id}",
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"i": "review_state",
|
69
|
+
"o": "plone.app.querystring.operation.selection.any",
|
70
|
+
"v": wf_status,
|
71
|
+
},
|
72
|
+
],
|
73
|
+
"metadata_fields": ["title", "modified"],
|
74
|
+
"sort_on": "effective",
|
75
|
+
"sort_order": "descending",
|
76
|
+
"fullobjects": True,
|
77
|
+
"b_start": 0,
|
78
|
+
"b_size": 4000,
|
79
|
+
}
|
80
|
+
client_id = os.environ.get(client_id_varname)
|
81
|
+
client_secret = os.environ.get(client_secret_varname)
|
82
|
+
auth = get_wca_token(client_id, client_secret)
|
83
|
+
headers = {
|
84
|
+
"Accept": "application/json",
|
85
|
+
"Content-Type": "text/plain",
|
86
|
+
"Authorization": auth,
|
87
|
+
}
|
88
|
+
url = f"{url}/@querystring-search"
|
89
|
+
response = get_cached_data(url, headers, payload, time_to_cache)
|
90
|
+
return response
|
91
|
+
|
92
|
+
|
93
|
+
def _cache_key(func, url, headers, payload, time_to_cache):
|
94
|
+
return (url, time() // time_to_cache)
|
95
|
+
|
96
|
+
|
97
|
+
@ram.cache(_cache_key)
|
98
|
+
def get_cached_data(url, headers, payload, time_to_cache):
|
99
|
+
return requests.request("POST", url, headers=headers, data=json.dumps(payload))
|
imio.smartweb.core-1.2.37/src/imio/smartweb/core/contents/sections/external_content/configure.zcml
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
<configure
|
2
|
+
xmlns="http://namespaces.zope.org/zope"
|
3
|
+
xmlns:browser="http://namespaces.zope.org/browser">
|
4
|
+
|
5
|
+
<browser:page
|
6
|
+
name="view"
|
7
|
+
for="imio.smartweb.core.contents.ISectionExternalContent"
|
8
|
+
class="imio.smartweb.core.contents.sections.external_content.views.ExternalContentView"
|
9
|
+
template="view.pt"
|
10
|
+
permission="zope2.View"
|
11
|
+
layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
|
12
|
+
/>
|
13
|
+
|
14
|
+
<browser:page
|
15
|
+
name="view_arcgis"
|
16
|
+
for="*"
|
17
|
+
class="imio.smartweb.core.contents.sections.external_content.views.ArcgisView"
|
18
|
+
template="view_arcgis.pt"
|
19
|
+
permission="zope2.View"
|
20
|
+
layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
|
21
|
+
/>
|
22
|
+
|
23
|
+
<browser:page
|
24
|
+
name="view_idelux_waste"
|
25
|
+
for="*"
|
26
|
+
class="imio.smartweb.core.contents.sections.external_content.views.IdeluxWasteView"
|
27
|
+
template="view_idelux_waste.pt"
|
28
|
+
permission="zope2.View"
|
29
|
+
layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
|
30
|
+
/>
|
31
|
+
|
32
|
+
<browser:page
|
33
|
+
name="view_inbw_container_affluence"
|
34
|
+
for="*"
|
35
|
+
class="imio.smartweb.core.contents.sections.external_content.views.InbwContainersAffluenceView"
|
36
|
+
template="view_inbw_containers_affluence.pt"
|
37
|
+
permission="zope2.View"
|
38
|
+
layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
|
39
|
+
/>
|
40
|
+
|
41
|
+
|
42
|
+
<browser:page
|
43
|
+
name="view_odwb_widget"
|
44
|
+
for="*"
|
45
|
+
class="imio.smartweb.core.contents.sections.external_content.views.OdwbWidgetView"
|
46
|
+
template="view_odwb_widget.pt"
|
47
|
+
permission="zope2.View"
|
48
|
+
layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
|
49
|
+
/>
|
50
|
+
|
51
|
+
</configure>
|
@@ -0,0 +1,54 @@
|
|
1
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
|
2
|
+
xmlns:tal="http://xml.zope.org/namespaces/tal"
|
3
|
+
xmlns:metal="http://xml.zope.org/namespaces/metal"
|
4
|
+
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
5
|
+
lang="en"
|
6
|
+
metal:use-macro="context/@@main_template/macros/master"
|
7
|
+
i18n:domain="plone">
|
8
|
+
<body>
|
9
|
+
|
10
|
+
<metal:main fill-slot="content-core">
|
11
|
+
<metal:content-core define-macro="content-core">
|
12
|
+
<metal:macro use-macro="context/@@sections_macros/section_edition" />
|
13
|
+
<div class="container section-container section-external-content"
|
14
|
+
id=""
|
15
|
+
define="datas view/get_datas"
|
16
|
+
tal:attributes="id string:container-section-${context/id}">
|
17
|
+
|
18
|
+
|
19
|
+
<tal:check tal:condition="view/has_leadimage">
|
20
|
+
<img tal:attributes="src view/image" />
|
21
|
+
</tal:check>
|
22
|
+
|
23
|
+
<metal:macro use-macro="context/@@sections_macros/section_title" />
|
24
|
+
|
25
|
+
<p tal:replace="structure context/@@description" />
|
26
|
+
<div tal:define="which_plugin view/which_plugin">
|
27
|
+
|
28
|
+
<div tal:condition="not:which_plugin"
|
29
|
+
tal:define="collapse_klass python: 'collapse' if context.collapsible_section else ''"
|
30
|
+
tal:attributes="class string:body-section ratio ${collapse_klass};
|
31
|
+
id string:body-section-${context/id}"
|
32
|
+
tal:content="structure view/contents" />
|
33
|
+
|
34
|
+
<div tal:condition="python:which_plugin == 'ideluxwasteplugin'">
|
35
|
+
<metal:block use-macro="context/@@view_idelux_waste/embeded_datas" tal:define="datas view/contents">
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div tal:condition="python:which_plugin == 'inbwcontainersaffluenceplugin'">
|
39
|
+
<metal:block use-macro="context/@@view_inbw_container_affluence/embeded_datas" tal:define="datas view/contents">
|
40
|
+
</div>
|
41
|
+
|
42
|
+
<div tal:condition="python:which_plugin == 'odwbwidgetplugin'">
|
43
|
+
<metal:block use-macro="context/@@view_odwb_widget/embeded_datas" tal:define="datas view/contents">
|
44
|
+
</div>
|
45
|
+
|
46
|
+
</div>
|
47
|
+
|
48
|
+
|
49
|
+
</div>
|
50
|
+
</metal:content-core>
|
51
|
+
</metal:main>
|
52
|
+
|
53
|
+
</body>
|
54
|
+
</html>
|
@@ -0,0 +1,50 @@
|
|
1
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
|
2
|
+
xmlns:tal="http://xml.zope.org/namespaces/tal"
|
3
|
+
xmlns:metal="http://xml.zope.org/namespaces/metal"
|
4
|
+
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
5
|
+
lang="en"
|
6
|
+
i18n:domain="imio.smartweb">
|
7
|
+
|
8
|
+
<metal:macro define-macro="embeded_datas">
|
9
|
+
<script>
|
10
|
+
$(document).ready(function() {
|
11
|
+
$('#searchInput').on('input', function() {
|
12
|
+
var searchTerm = $(this).val().toLowerCase();
|
13
|
+
|
14
|
+
// Loop through each item in the results
|
15
|
+
$('.result-item').each(function() {
|
16
|
+
var searchable = $(this).data('searchable').toLowerCase();
|
17
|
+
|
18
|
+
// If the keyword is found in the consignes_de_tri, show the item, otherwise hide it
|
19
|
+
if (searchable.includes(searchTerm)) {
|
20
|
+
$(this).show(); // Show the matching item
|
21
|
+
} else {
|
22
|
+
$(this).hide(); // Hide the non-matching item
|
23
|
+
}
|
24
|
+
});
|
25
|
+
});
|
26
|
+
});
|
27
|
+
</script>
|
28
|
+
<input type="text" id="searchInput" class="form-control" placeholder="Search Consignes de Tri">
|
29
|
+
<div id="results">
|
30
|
+
<!-- Results will be populated here -->
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<div tal:define="results datas/results">
|
34
|
+
<ul tal:repeat="res results">
|
35
|
+
<tal:def define="filiere res/filiere;
|
36
|
+
dechet res/dechet;
|
37
|
+
infoparc res/infoparc;
|
38
|
+
consignes_de_tri res/consignes_de_tri;
|
39
|
+
searchable string:${filiere} ${dechet} ${infoparc} ${consignes_de_tri}">
|
40
|
+
<li class="result-item" data-searchable="${searchable}" >
|
41
|
+
<h3 tal:content="string:${filiere} - ${dechet}" />
|
42
|
+
<p tal:content="infoparc"></p>
|
43
|
+
<p tal:content="consignes_de_tri"></p>
|
44
|
+
</li>
|
45
|
+
|
46
|
+
</tal:def>
|
47
|
+
</ul>
|
48
|
+
</div>
|
49
|
+
</metal:macro>
|
50
|
+
</html>
|
@@ -0,0 +1,91 @@
|
|
1
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
|
2
|
+
xmlns:tal="http://xml.zope.org/namespaces/tal"
|
3
|
+
xmlns:metal="http://xml.zope.org/namespaces/metal"
|
4
|
+
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
5
|
+
lang="en"
|
6
|
+
i18n:domain="imio.smartweb">
|
7
|
+
|
8
|
+
<metal:macro define-macro="embeded_datas">
|
9
|
+
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
10
|
+
<script>
|
11
|
+
$(document).ready(function () {
|
12
|
+
var today = new Date().getDay();
|
13
|
+
var hours = new Date().getHours(); // Get current hour
|
14
|
+
var daysOfWeek = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'];
|
15
|
+
var currentDay = daysOfWeek[today];
|
16
|
+
var jsonDataString = $('#json-data').attr("data");
|
17
|
+
|
18
|
+
var jsonData = JSON.parse(jsonDataString);
|
19
|
+
var todayData = JSON.parse(jsonData.results[0][currentDay]);
|
20
|
+
var current_affluence = jsonData.results[0].current_affluence;
|
21
|
+
|
22
|
+
var keys = [];
|
23
|
+
var dataset1 = [];
|
24
|
+
var dataset2 = [];
|
25
|
+
|
26
|
+
Object.entries(todayData).forEach(function([key, value]) {
|
27
|
+
keys.push(key + "h00");
|
28
|
+
console.log('key' + key + 'hours' + hours);
|
29
|
+
if (key == hours) {
|
30
|
+
dataset2.push(current_affluence);
|
31
|
+
}
|
32
|
+
else {dataset2.push(0);}
|
33
|
+
dataset1.push(value);
|
34
|
+
});
|
35
|
+
|
36
|
+
|
37
|
+
// Define the Chart.js data and options
|
38
|
+
var chartData = {
|
39
|
+
labels: keys, // Hours
|
40
|
+
datasets: [{
|
41
|
+
label: currentDay + ' average affluence',
|
42
|
+
data: dataset1,
|
43
|
+
backgroundColor: 'rgba(54, 162, 235, 0.2)',
|
44
|
+
borderColor: 'rgba(54, 162, 235, 1)',
|
45
|
+
borderWidth: 1
|
46
|
+
},
|
47
|
+
{
|
48
|
+
label: 'Current affluence',
|
49
|
+
data: dataset2,
|
50
|
+
backgroundColor: 'rgba(255, 99, 132, 0.2)', // Specify the desired color
|
51
|
+
borderColor: 'rgba(255, 99, 132, 1)', // Specify the desired color
|
52
|
+
borderWidth: 1
|
53
|
+
}]
|
54
|
+
};
|
55
|
+
|
56
|
+
var chartOptions = {
|
57
|
+
scales: {
|
58
|
+
x: {
|
59
|
+
title: {
|
60
|
+
display: true,
|
61
|
+
text: 'Hours'
|
62
|
+
}
|
63
|
+
},
|
64
|
+
y: {
|
65
|
+
title: {
|
66
|
+
display: true,
|
67
|
+
text: 'Values'
|
68
|
+
},
|
69
|
+
ticks: {
|
70
|
+
stepSize: 1
|
71
|
+
}
|
72
|
+
}
|
73
|
+
}
|
74
|
+
};
|
75
|
+
|
76
|
+
// Get the canvas element
|
77
|
+
var ctx = document.getElementById('myChart').getContext('2d');
|
78
|
+
// Create the Chart.js chart
|
79
|
+
var myChart = new Chart(ctx, {
|
80
|
+
type: 'bar',
|
81
|
+
data: chartData,
|
82
|
+
options: chartOptions
|
83
|
+
});
|
84
|
+
});
|
85
|
+
|
86
|
+
</script>
|
87
|
+
<div id="json-data" tal:attributes="data datas"></div>
|
88
|
+
<canvas id="myChart" width="60%" height="" ></canvas>
|
89
|
+
|
90
|
+
</metal:macro>
|
91
|
+
</html>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
|
2
|
+
xmlns:tal="http://xml.zope.org/namespaces/tal"
|
3
|
+
xmlns:metal="http://xml.zope.org/namespaces/metal"
|
4
|
+
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
5
|
+
lang="en"
|
6
|
+
i18n:domain="imio.smartweb">
|
7
|
+
<metal:macro define-macro="embeded_datas">
|
8
|
+
|
9
|
+
<div class="container">
|
10
|
+
<div ng-cloak ng-app="ods-widgets">
|
11
|
+
<div tal:content="structure datas"></div>
|
12
|
+
<!--script type="text/javascript">
|
13
|
+
angular.module('ods-widgets').config(function($locationProvider) {
|
14
|
+
$locationProvider.html5Mode(true);
|
15
|
+
});
|
16
|
+
</script-->
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
</metal:macro>
|
20
|
+
</html>
|