imio.smartweb.core 1.2.65__tar.gz → 1.2.67__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.65 → imio.smartweb.core-1.2.67}/CHANGES.rst +26 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/PKG-INFO +27 -1
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/setup.py +1 -1
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/controlpanel.py +41 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/faceted/block_view.pt +4 -4
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/faceted/summary_view.pt +4 -4
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/smartweb-view-compiled.css +1 -1
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/src/view.less +4 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/__init__.py +2 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/configure.zcml +1 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/folder/block_view.pt +8 -8
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/folder/summary_view.pt +4 -4
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/publication/configure.zcml +5 -0
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/publication/content.py +23 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/directory/view.pt +2 -1
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/events/view.pt +2 -1
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/news/view.pt +2 -1
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/view.py +4 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/common_templates/table.pt +13 -3
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/external_content/view.pt +1 -1
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/files/content.py +7 -1
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/files/view.py +61 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/views.py +19 -6
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/metadata.xml +1 -1
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Publication.xml +38 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml +1 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types.xml +1 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/subscribers.py +24 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/subscribers.zcml +4 -0
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/tests/resources/json_iadeliberations_institutions.json +60 -0
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/tests/resources/json_iadeliberations_publication.json +105 -0
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/tests/resources/json_iadeliberations_publications.json +270 -0
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/tests/test_iadeliberations.py +136 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_vocabularies.py +54 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/configure.zcml +37 -1
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/upgrades/profiles/1059_to_1060/registry/iadeliberation.xml +9 -0
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.Publication.xml +38 -0
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.SectionFiles.xml +11 -0
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/upgrades/profiles/1060_to_1061/types.xml +4 -0
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/upgrades/profiles/1060_to_1061/workflows.xml +6 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/utils.py +27 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/vocabularies.py +44 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/vocabularies.zcml +12 -0
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/webcomponents/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +1 -1
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +2 -0
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -0
- imio.smartweb.core-1.2.65/src/imio/smartweb/core/webcomponents/build/js/324.smartweb-webcomponents-compiled.js → imio.smartweb.core-1.2.67/src/imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js +2 -2
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx +12 -2
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +157 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +27 -1
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx +6 -2
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx +86 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx +30 -3
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx +10 -7
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +4 -2
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/News/News.jsx +3 -0
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx +96 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +30 -3
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx +28 -7
- imio.smartweb.core-1.2.67/src/imio/smartweb/core/webcomponents/src/index.scss +346 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio.smartweb.core.egg-info/PKG-INFO +27 -1
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio.smartweb.core.egg-info/SOURCES.txt +15 -2
- imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/files/view.py +0 -34
- imio.smartweb.core-1.2.65/src/imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +0 -2
- imio.smartweb.core-1.2.65/src/imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +0 -1
- imio.smartweb.core-1.2.65/src/imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +0 -1
- imio.smartweb.core-1.2.65/src/imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +0 -129
- imio.smartweb.core-1.2.65/src/imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx +0 -56
- imio.smartweb.core-1.2.65/src/imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx +0 -84
- imio.smartweb.core-1.2.65/src/imio/smartweb/core/webcomponents/src/index.scss +0 -332
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/CONTRIBUTORS.rst +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/DEVELOP.rst +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/MANIFEST.in +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/README.rst +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/docs/conf.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/docs/index.rst +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/requirements.txt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/setup.cfg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/behaviors/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/behaviors/categorization.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/behaviors/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/behaviors/listing.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/behaviors/minisite.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/behaviors/orientation.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/behaviors/quickaccess.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/behaviors/subsite.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/banner/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/banner/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/banner/settings.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/dashboards/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/dashboards/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/dashboards/plausible.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/dashboards/plausible.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/faceted/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/faceted/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/faceted/macros.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/faceted/map.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/faceted/map.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/faceted/views.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/faceted/widgets/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/faceted/widgets/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/faceted/widgets/select.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/faceted/widgets/select.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/footer/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/footer/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/footer/settings.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/forms.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/herobanner/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/herobanner/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/herobanner/settings.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/icons.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/instancebehaviors/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/instancebehaviors/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/instancebehaviors/form.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/instancebehaviors/utils.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/layout.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/minisite/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/minisite/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/minisite/settings.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/overrides/.gitkeep +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/overrides/plone.app.content.browser.contents.templates.properties.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/overrides/plone.app.layout.viewlets.sections.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/redirect_to_main_react_view.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/search/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/search/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/search/search.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/search/search.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/sitemap.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/.gitkeep +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/Makefile +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/action-delete.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/action-e-guichet.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/action-email.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/action-engagement-2.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/action-engagement.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/action-nous-contacter.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/action-nous-rejoindre.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/action-organiser-un-evenement.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/action-panneaux.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/action-signaler-un-probleme.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/action-voir-plan.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/action-vote.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-associations.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-attention.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-avis-et-enquetes.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-cinema.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-commerce.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-concert.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-culture.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-demarches.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-enfance.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-enseignement.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-environnement-gestion-des-dechets.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-exposition.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-horaires.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-infos-travaux-2.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-infos-travaux.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-mandataires.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-mobilite.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-mon-dossier.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-nature.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-parc-de-stationnement.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-parcs-a-conteneurs.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-parcs-et-jardins.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-plus.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-primes-2.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-primes.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-sport-courir.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-sport-natation.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-sport-trophee.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-sport-velo.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-theatre.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/categorie-tourisme.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/organisation-academie-musique.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/organisation-bibliotheque.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/organisation-centre-sportif.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/organisation-cpas.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/organisation-ecole-des-arts.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/organisation-ecole-sac.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/organisation-ecole.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/organisation-mobilite.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/organisation-police.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/organisation-scout.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/reseausocial-behance.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/reseausocial-facebook-pouce.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/reseausocial-facebook.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/reseausocial-instagram.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/reseausocial-linkedin.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/reseausocial-twitter.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/reseausocial-vimeo.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/reseausocial-youtube.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/vue-actualites.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/vue-agenda.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/icons/vue-annuaire.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/package.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/smartweb-edit-compiled.css +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/smartweb-edit-compiled.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/smartweb-swiperconfig-compiled.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/smartweb-view-compiled.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/spotlight-bundle.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/src/edit.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/src/edit.less +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/src/swiper-config.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/src/view.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/swiper-bundle.min.css +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/swiper-bundle.min.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/static/webpack.config.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/subsite/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/subsite/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/subsite/settings.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/templates/link_input.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/utils.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/browser/vocabulary.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/config.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/blocks/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/blocks/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/blocks/link/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/blocks/link/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/blocks/link/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/blocks/link/fields.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/blocks/link/icons_input.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/blocks/subscriber.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/cropping.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/folder/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/folder/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/folder/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/folder/element_view.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/folder/macros.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/folder/views.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/cirkwi/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/cirkwi/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/cirkwi/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/cirkwi/view.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/cirkwi/view.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/footer/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/footer/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/footer/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/herobanner/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/herobanner/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/herobanner/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/page/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/page/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/page/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/pages.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/portal_page/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/portal_page/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/portal_page/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/portal_page/view.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/procedure/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/procedure/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/procedure/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/procedure/utils.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/procedure/view.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/subscriber.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/view.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/view_section.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/pages/views.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/rest → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/publication}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/rest/directory → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/rest}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/base.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/rest/events → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/rest/directory}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/directory/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/directory/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/directory/endpoint.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/directory/view.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/rest/news → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/rest/events}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/events/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/events/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/events/endpoint.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/events/view.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/rest/search → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/rest/news}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/news/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/news/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/news/endpoint.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/news/view.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/rest/search}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/search/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/search/endpoint.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/traversal.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/utils.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/collection → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/base.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/contact → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/collection}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/collection/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/collection/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/collection/views.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/common_templates/carousel.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/events → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/contact}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/contact/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/contact/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/contact/forms.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/contact/macros.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/contact/utils.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/contact/view.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/contact/view.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/external_content → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/events}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/events/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/events/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/events/macros.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/events/view.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/files → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/external_content}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/external_content/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/external_content/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/external_content/view_arcgis.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/external_content/view_idelux_waste.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/external_content/view_inbw_containers_affluence.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/external_content/view_odwb_widget.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/external_content/views.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/gallery → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/files}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/files/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/html → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/gallery}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/gallery/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/gallery/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/gallery/view.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/gallery/views.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/links → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/html}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/html/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/html/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/html/view.pt +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/map → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/links}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/links/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/links/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/links/view.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/macros.pt +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/news → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/map}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/map/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/map/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/map/view.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/map/views.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/postit → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/news}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/news/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/news/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/news/view.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/selections → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/postit}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/postit/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/postit/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/postit/view.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/sendinblue → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/selections}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/selections/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/selections/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/selections/view.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/slide → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/sendinblue}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/sendinblue/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/sendinblue/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/sendinblue/view.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/sendinblue/views.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/text → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/slide}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/slide/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/slide/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/slide/view.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/slide/view.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/subscriber.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/contents/sections/video → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/text}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/text/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/text/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/text/forms.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/text/view.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/text/views.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/faceted → imio.smartweb.core-1.2.67/src/imio/smartweb/core/contents/sections/video}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/video/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/video/content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/video/view.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/sections/video/views.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/rest → imio.smartweb.core-1.2.67/src/imio/smartweb/core/faceted}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/faceted/config/collection.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/faceted/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/faceted/layout.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/faceted/menu.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/indexers.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/indexers.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/interfaces.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/permissions.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/actions.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/browserlayer.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/catalog.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/controlpanel.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/diff_tool.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/registry/bundles.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/registry/geolocation.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/registry/plone.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/registry/smartweb.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/repositorytool.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/taxonomies/page_category.cfg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/taxonomies/page_category.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/taxonomies/procedure_category.cfg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/taxonomies/procedure_category.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/Collection.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/File.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/Image.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.BlockLink.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.CirkwiView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.DirectoryView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Folder.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Footer.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.HeroBanner.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Page.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.PortalPage.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.Procedure.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionCollection.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionContact.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionExternalContent.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionGallery.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionLinks.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionMap.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionPostit.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionText.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/default/workflows.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/icons/basic/registry.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/icons/contenttypes/registry.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/last_compilation/registry.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/testing/metadata.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/testing/registry.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/testing/types/Collection.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/testing/types/Document.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/testing/types/Folder.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/testing/types/imio.smartweb.DirectoryView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/testing/types/imio.smartweb.EventsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/testing/types/imio.smartweb.NewsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/testing/types.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/uninstall/browserlayer.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles/validation/contentrules.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/profiles.zcml +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/tests → imio.smartweb.core-1.2.67/src/imio/smartweb/core/rest}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/rest/authentic_sources.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/rest/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/setuphandlers.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/testing.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/testing.zcml +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/upgrades → imio.smartweb.core-1.2.67/src/imio/smartweb/core/tests}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/cirkwi_bad_widget_mock.html +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/cirkwi_good_widget_mock.html +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_auth_sources_directory_entity.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_auth_sources_events_entity.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_auth_sources_news_entity.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_contact_category_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_contact_empty_schedule_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_contact_images_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_contact_no_image_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_contact_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_contacts_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_directory_entities_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_events_agendas_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_events_entities_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_events_types_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_news_entities_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_news_newsfolder_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_no_contact_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_no_newsfolder_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_procedures_raw_mock.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_rest_directory.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_rest_events.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_rest_events_with_breadcrumbs.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_rest_news.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_rest_specific_events.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_rest_specific_news.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_search_one_news_entity.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/json_used_iam_vocabularies_jobseeker_tourist.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/plone.png +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/resources/plone.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/robot/test_ct_folder.robot +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/robot/test_ct_page.robot +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/robot/test_ct_procedure.robot +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/robot/test_example.robot +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_banner.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_behaviors.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_categories.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_chatbot.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_cirkwiview.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_cropping.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_default_pages.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_faceted.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_folder.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_footer.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_herobanner.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_htmx_in_sections.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_icons.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_indexes.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_instance_behaviors.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_local_roles.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_logo.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_minisite.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_navigation.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_page.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_plausibleview.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_portal_page.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_procedure.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_redirect_to_main_react_view.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_rest.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_robot.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_search.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_section_contact.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_section_events.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_section_external_content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_section_news.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_section_sendinblue.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_sections.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_setup.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_sitemap.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_social.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_subsite.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_text.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_toolbar.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_utils.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/test_vocabulary.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/tests/utils.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/viewlets → imio.smartweb.core-1.2.67/src/imio/smartweb/core/upgrades}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1020_to_1021/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1020_to_1021/types/imio.smartweb.SectionHTML.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1021_to_1022/registry/hero-banner.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1021_to_1022/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1022_to_1023/registry/icons.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types/imio.smartweb.Page.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types/imio.smartweb.PortalPage.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types/imio.smartweb.Procedure.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types/imio.smartweb.SectionPostit.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/types.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1023_to_1024/workflows.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1025_to_1026/registry/propose-urls.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1027_to_1028/registry/open-external-link-in-new-tab.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1029_to_1030/actions.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1029_to_1030/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1030_to_1031/registry/resources.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1031_to_1032/registry/spotlight.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.BlockLink.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.DirectoryView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.EventsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.Folder.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.Footer.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.HeroBanner.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.NewsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.Page.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.PortalPage.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.Procedure.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionCollection.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionContact.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionEvents.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionFiles.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionGallery.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionHTML.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionLinks.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionMap.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionNews.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionPostit.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionSelections.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionSendinblue.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionSlide.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionText.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1033_to_1034/types/imio.smartweb.SectionVideo.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.DirectoryView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.EventsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.Folder.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.NewsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.Page.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.PortalPage.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1034_to_1035/types/imio.smartweb.Procedure.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/registry/plone.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/types/imio.smartweb.CirkwiView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/types/imio.smartweb.Folder.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1035_to_1036/types.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1036_to_1037/actions.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1036_to_1037/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1037_to_1038/registry/plausible.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/rolemap.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.Page.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.PortalPage.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.Procedure.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.SectionExternalContent.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/types.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1038_to_1039/workflows.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1039_to_1040/types/imio.smartweb.SectionSlide.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1040_to_1041/types/imio.smartweb.SectionText.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionContact.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionEvents.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionExternalContent.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionFiles.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionGallery.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionLinks.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionMap.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionNews.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionPostit.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSelections.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSendinblue.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionVideo.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1045_to_1046/registry/plone.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1045_to_1046/types/imio.smartweb.SectionExternalContent.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1046_to_1047/types/imio.smartweb.Folder.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/registry/plone.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.DirectoryView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.EventsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.Folder.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.NewsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionCollection.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionContact.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionEvents.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionExternalContent.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionLinks.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionNews.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionSelections.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1051_to_1052/actions.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1052_to_1053/diff_tool.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1052_to_1053/repositorytool.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1052_to_1053/types/imio.smartweb.SectionHTML.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1053_to_1054/registry.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/Collection.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/File.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/Image.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.BlockLink.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.CirkwiView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.DirectoryView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.EventsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Folder.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.NewsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Page.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.PortalPage.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Procedure.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1055_to_1056/types/imio.smartweb.SectionFiles.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.EventsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.NewsView.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionEvents.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionNews.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.cfg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.cfg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/profiles/1058_to_1059/registry/linkedin-icon.xml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/upgrades/upgrades.py +0 -0
- {imio.smartweb.core-1.2.65/src/imio/smartweb/core/webcomponents → imio.smartweb.core-1.2.67/src/imio/smartweb/core/viewlets}/__init__.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/actions.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/arcgis_header.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/banner.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/banner.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/category.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/category.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/chatbot.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/chatbot.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/default_page_warning.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/external_content.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/footer.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/footer.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/header.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/header_actions.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/header_actions_viewlet.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/header_top_viewlet.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/herobanner.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/herobanner.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/htmx.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/htmx_js_header.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/httpheaders.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/interfaces.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/lead_image.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/logo.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/logo.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/menu.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/messages.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/minisite.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/minisite_link.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/navigation.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/odwb_widget_header.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/offcanvas.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/offcanvas.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/ogp_tag_header.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/ogptags.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/procedure.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/procedure.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/searchbox.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/social.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/subsite.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/subsite_header_viewlet.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/subsite_logo.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/subsite_navigation.pt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/viewlets/toolbar.py +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/.eslintrc.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/.npmrc +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/.prettierrc.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/Makefile +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/README.md +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/babel.config.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/1c1605a5fe9a2b10a88f.png +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/524db40e119aa11f4478.png +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/57d3b7cb1ab874660b39.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/6cf03871df23ed2ee8b3.png +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/assets/layers-2x.8f2c4d11474275fbc1614b9098334eae.png +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/assets/layers.416d91365b44e4b4f4777663e6f009f3.png +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/assets/marker-icon.2b3e1faf89f94a4835397e7a43b4f77d.png +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/assets/oeil-big.f32cd1df1274a9593de0c4bd8e344216.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/assets/pin-react-active.07d154037a15be5525b823fdc626cf29.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/assets/pin-react.fda934b5daf26dd4da2a71a7e7e44431.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- /imio.smartweb.core-1.2.65/src/imio/smartweb/core/webcomponents/build/js/324.smartweb-webcomponents-compiled.js.LICENSE.txt → /imio.smartweb.core-1.2.67/src/imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/configure.zcml +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/package.json +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/postcss.config.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/assets/close.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/assets/img-placeholder-bla.png +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/assets/location-active-bla.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/assets/next-react-white.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/assets/oeil-big.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/assets/pin-active.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/assets/pin-react-active.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/assets/pin-react.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/assets/pin.svg +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Annuaire/index.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Events/Events.scss +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Events/index.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Filters/IamData.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Filters/PublicTargetData.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Filters/SelectStyles.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.scss +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/News/News.scss +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/News/index.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Search/Search.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Search/Search.scss +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/components/Search/index.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/hooks/ScrollContext.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/hooks/useAxios.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/index.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/utils/Map.jsx +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/utils/Map.scss +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/utils/translation.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/src/utils/url.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/webpack.config.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/webcomponents/webpackPlonePlugin.js +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio.smartweb.core.egg-info/dependency_links.txt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio.smartweb.core.egg-info/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio.smartweb.core.egg-info/not-zip-safe +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio.smartweb.core.egg-info/requires.txt +0 -0
- {imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio.smartweb.core.egg-info/top_level.txt +0 -0
@@ -2,6 +2,32 @@ Changelog
|
|
2
2
|
=========
|
3
3
|
|
4
4
|
|
5
|
+
1.2.67 (2024-09-04)
|
6
|
+
-------------------
|
7
|
+
|
8
|
+
- WEB-4134 : Timestamping : code refactoring, fix view , improve some tests
|
9
|
+
[boulch]
|
10
|
+
|
11
|
+
- Fix: Replace i tag with svg icon in React view
|
12
|
+
[thomlamb]
|
13
|
+
|
14
|
+
- WEB-4134 : Manage timestamping in coordination with ia.deliberations' rest api
|
15
|
+
[boulch]
|
16
|
+
|
17
|
+
|
18
|
+
1.2.66 (2024-08-27)
|
19
|
+
-------------------
|
20
|
+
|
21
|
+
- Fix: Transform all folder view template to list elements
|
22
|
+
[thomlamb]
|
23
|
+
|
24
|
+
- Fix: delete ratio class to external content section
|
25
|
+
[thomlamb]
|
26
|
+
|
27
|
+
- WEB-4138 : Adding link on React elements to edit them
|
28
|
+
[thomlamb]
|
29
|
+
|
30
|
+
|
5
31
|
1.2.65 (2024-08-13)
|
6
32
|
-------------------
|
7
33
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: imio.smartweb.core
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.67
|
4
4
|
Summary: Core product for iMio websites
|
5
5
|
Home-page: https://github.com/imio/imio.smartweb.core
|
6
6
|
Author: Christophe Boulanger
|
@@ -160,6 +160,32 @@ Changelog
|
|
160
160
|
=========
|
161
161
|
|
162
162
|
|
163
|
+
1.2.67 (2024-09-04)
|
164
|
+
-------------------
|
165
|
+
|
166
|
+
- WEB-4134 : Timestamping : code refactoring, fix view , improve some tests
|
167
|
+
[boulch]
|
168
|
+
|
169
|
+
- Fix: Replace i tag with svg icon in React view
|
170
|
+
[thomlamb]
|
171
|
+
|
172
|
+
- WEB-4134 : Manage timestamping in coordination with ia.deliberations' rest api
|
173
|
+
[boulch]
|
174
|
+
|
175
|
+
|
176
|
+
1.2.66 (2024-08-27)
|
177
|
+
-------------------
|
178
|
+
|
179
|
+
- Fix: Transform all folder view template to list elements
|
180
|
+
[thomlamb]
|
181
|
+
|
182
|
+
- Fix: delete ratio class to external content section
|
183
|
+
[thomlamb]
|
184
|
+
|
185
|
+
- WEB-4138 : Adding link on React elements to edit them
|
186
|
+
[thomlamb]
|
187
|
+
|
188
|
+
|
163
189
|
1.2.65 (2024-08-13)
|
164
190
|
-------------------
|
165
191
|
|
@@ -3,6 +3,7 @@
|
|
3
3
|
from collective.z3cform.datagridfield.datagridfield import DataGridFieldFactory
|
4
4
|
from collective.z3cform.datagridfield.registry import DictRow
|
5
5
|
from imio.smartweb.locales import SmartwebMessageFactory as _
|
6
|
+
from plone import api
|
6
7
|
from plone.app.registry.browser.controlpanel import ControlPanelFormWrapper
|
7
8
|
from plone.app.registry.browser.controlpanel import RegistryEditForm
|
8
9
|
from plone.autoform import directives
|
@@ -165,12 +166,52 @@ class ISmartwebControlPanel(Interface):
|
|
165
166
|
required=False,
|
166
167
|
)
|
167
168
|
|
169
|
+
iadeliberations_url = schema.TextLine(
|
170
|
+
title=_("I.A. Deliberations' url"),
|
171
|
+
description=_(
|
172
|
+
"For staging : https://conseil.staging.imio.be | for production : https://www.deliberations.be"
|
173
|
+
),
|
174
|
+
required=False,
|
175
|
+
)
|
176
|
+
|
177
|
+
iadeliberations_api_username = schema.TextLine(
|
178
|
+
title=_("Username to consume I.A. Deliberations API"),
|
179
|
+
required=False,
|
180
|
+
)
|
181
|
+
|
182
|
+
iadeliberation_api_password = schema.Password(
|
183
|
+
title=_("Password to consume I.A. Deliberations API"),
|
184
|
+
required=False,
|
185
|
+
)
|
186
|
+
|
187
|
+
iadeliberations_institution = schema.Choice(
|
188
|
+
title=_("I.A. Deliberations : Institutions"),
|
189
|
+
source="imio.smartweb.vocabulary.IADeliberationsInstitutions",
|
190
|
+
required=False,
|
191
|
+
)
|
192
|
+
|
168
193
|
|
169
194
|
class SmartwebControlPanelForm(RegistryEditForm):
|
170
195
|
schema = ISmartwebControlPanel
|
171
196
|
schema_prefix = "smartweb"
|
172
197
|
label = _("Smartweb Settings")
|
173
198
|
|
199
|
+
def applyChanges(self, data):
|
200
|
+
# Get current registry value for (controlpanel) passwords
|
201
|
+
iadeliberation_pwd = api.portal.get_registry_record(
|
202
|
+
"smartweb.iadeliberation_api_password"
|
203
|
+
)
|
204
|
+
secret_key_api = api.portal.get_registry_record("smartweb.secret_key_api")
|
205
|
+
|
206
|
+
# if data is None when we apply changes for password fields we keep password from registry
|
207
|
+
if not data.get("iadeliberation_api_password"):
|
208
|
+
data["iadeliberation_api_password"] = iadeliberation_pwd
|
209
|
+
|
210
|
+
if not data.get("secret_key_api"):
|
211
|
+
data["secret_key_api"] = secret_key_api
|
212
|
+
|
213
|
+
return super().applyChanges(data)
|
214
|
+
|
174
215
|
|
175
216
|
SmartwebControlPanelView = layout.wrap_form(
|
176
217
|
SmartwebControlPanelForm, ControlPanelFormWrapper
|
@@ -22,12 +22,12 @@
|
|
22
22
|
orientation_class python:images_orientation and f'display-{images_orientation}' or '';
|
23
23
|
thumb_scale faceted_view/get_thumb_scale_summary">
|
24
24
|
|
25
|
-
<
|
25
|
+
<ul class="" id="block-menu"
|
26
26
|
tal:attributes="class string:row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-xl-4 g-4 ${orientation_class}">
|
27
|
-
<
|
27
|
+
<li class="block-menu-element col" tal:repeat="item batch">
|
28
28
|
<metal:macro use-macro="context/@@faceted-macros/block" />
|
29
|
-
</
|
30
|
-
</
|
29
|
+
</li>
|
30
|
+
</ul>
|
31
31
|
|
32
32
|
</tal:def>
|
33
33
|
|
@@ -22,12 +22,12 @@
|
|
22
22
|
orientation_class python:images_orientation and f'display-{images_orientation}' or '';
|
23
23
|
thumb_scale faceted_view/get_thumb_scale_list">
|
24
24
|
|
25
|
-
<
|
25
|
+
<ul class="" id="block-menu"
|
26
26
|
tal:attributes="class string:row ${orientation_class}">
|
27
|
-
<
|
27
|
+
<li class="list-menu-element col-12" tal:repeat="item batch">
|
28
28
|
<metal:macro use-macro="context/@@faceted-macros/summary" />
|
29
|
-
</
|
30
|
-
</
|
29
|
+
</li>
|
30
|
+
</ul>
|
31
31
|
|
32
32
|
</tal:def>
|
33
33
|
|
@@ -1 +1 @@
|
|
1
|
-
*{background-position:50%;background-size:cover}body,html{max-width:100%}body{overflow-x:hidden}.table_schedule--active{display:block!important}.card-img-top{padding-top:56.25%}.template-folder_contents table .actionmenu a.action.set-default-page{display:none}#banner{background-size:cover;grid-column-end:-1;grid-column-start:1;height:200px}.hidden-banner{height:55px!important}.pat-structure .pagination>.active>a{z-index:0}.carousel-image{padding-bottom:50%}.swiper-slide .swiper-image{padding-bottom:60%}.swiper-wrapper{padding-bottom:50px}.template-taxonomy-edit-data .taxonomy-tree{border:0 solid #fff}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_item{border:none;font-size:1.25rem;padding:0 0 1rem;text-transform:uppercase}.template-taxonomy-edit-data .super-text{display:none}.template-taxonomy-edit-data .editable-divs{display:none!important}.template-taxonomy-edit-data div.info .super-text+.editable-divs:nth-child(2),.template-taxonomy-edit-data span .super-text+.editable-divs:nth-child(2){display:inline!important}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.info,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_item{border-bottom:2px solid #555}.template-taxonomy-edit-data .info,.template-taxonomy-edit-data .tree-view_item{border-bottom:1px dashed #d2d2d2}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.info input,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_item input{color:#303030;padding-top:.5rem!important;text-shadow:0 1px 0 #303030}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.info:before,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_item:before{content:"⤷";float:left;font-weight:700;margin-top:.3rem}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.info:before,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_item:before{content:"•";float:left;font-size:1.5rem;font-weight:700;margin-top:1px}.template-taxonomy-edit-data .taxonomy-tree .tree-view_arrow{display:none}.template-taxonomy-edit-data .taxonomy-tree .tree-view_children{margin-left:2rem}.smartweb_herobanner .section-slide,.smartweb_herobanner .section-slide .swiper-banner-image{height:100%}#portal-globalnav-collapse .nav_index_html,#subsite-navigation .nav_index_html{display:none}
|
1
|
+
*{background-position:50%;background-size:cover}body,html{max-width:100%}body{overflow-x:hidden}.table_schedule--active{display:block!important}.card-img-top{padding-top:56.25%}.template-folder_contents table .actionmenu a.action.set-default-page{display:none}#banner{background-size:cover;grid-column-end:-1;grid-column-start:1;height:200px}.hidden-banner{height:55px!important}.pat-structure .pagination>.active>a{z-index:0}.carousel-image{padding-bottom:50%}.swiper-slide .swiper-image{padding-bottom:60%}.swiper-wrapper{padding-bottom:50px}.template-taxonomy-edit-data .taxonomy-tree{border:0 solid #fff}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_item{border:none;font-size:1.25rem;padding:0 0 1rem;text-transform:uppercase}.template-taxonomy-edit-data .super-text{display:none}.template-taxonomy-edit-data .editable-divs{display:none!important}.template-taxonomy-edit-data div.info .super-text+.editable-divs:nth-child(2),.template-taxonomy-edit-data span .super-text+.editable-divs:nth-child(2){display:inline!important}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.info,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_item{border-bottom:2px solid #555}.template-taxonomy-edit-data .info,.template-taxonomy-edit-data .tree-view_item{border-bottom:1px dashed #d2d2d2}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.info input,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_item input{color:#303030;padding-top:.5rem!important;text-shadow:0 1px 0 #303030}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.info:before,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_item:before{content:"⤷";float:left;font-weight:700;margin-top:.3rem}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.info:before,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_item:before{content:"•";float:left;font-size:1.5rem;font-weight:700;margin-top:1px}.template-taxonomy-edit-data .taxonomy-tree .tree-view_arrow{display:none}.template-taxonomy-edit-data .taxonomy-tree .tree-view_children{margin-left:2rem}.smartweb_herobanner .section-slide,.smartweb_herobanner .section-slide .swiper-banner-image{height:100%}#portal-globalnav-collapse .nav_index_html,#subsite-navigation .nav_index_html{display:none}.block-menu-element,.list-menu-element{list-style:none}
|
{imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/__init__.py
RENAMED
@@ -17,6 +17,8 @@ from .pages.portal_page.content import IPortalPage # NOQA
|
|
17
17
|
from .pages.portal_page.content import PortalPage # NOQA
|
18
18
|
from .pages.procedure.content import IProcedure # NOQA
|
19
19
|
from .pages.procedure.content import Procedure # NOQA
|
20
|
+
from .publication.content import Publication # NOQA
|
21
|
+
from .publication.content import IPublication # NOQA
|
20
22
|
from .rest.base import RestView # NOQA
|
21
23
|
from .rest.base import IRestView # NOQA
|
22
24
|
from .rest.directory.content import DirectoryView # NOQA
|
@@ -15,18 +15,18 @@
|
|
15
15
|
orientation_class python:images_orientation and f'display-{images_orientation}' or '';
|
16
16
|
thumb_scale view/get_thumb_scale_summary">
|
17
17
|
|
18
|
-
<
|
18
|
+
<ul class="" id="block-menu"
|
19
19
|
tal:attributes="class string:row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-xl-4 g-4 ${orientation_class}">
|
20
|
-
<
|
20
|
+
<li class="block-menu-element col" tal:repeat="item res/results">
|
21
21
|
<metal:macro use-macro="context/@@folder_macros/block" />
|
22
|
-
</
|
23
|
-
</
|
24
|
-
<
|
22
|
+
</li>
|
23
|
+
</ul>
|
24
|
+
<ul class="" id="block-quickaccess"
|
25
25
|
tal:attributes="class string:row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-xl-4 g-4 ${orientation_class}">
|
26
|
-
<
|
26
|
+
<li class="block-menu-element col" tal:repeat="item res/quick_access">
|
27
27
|
<metal:macro use-macro="context/@@folder_macros/block" />
|
28
|
-
</
|
29
|
-
</
|
28
|
+
</li>
|
29
|
+
</ul>
|
30
30
|
</tal:def>
|
31
31
|
</metal:content-core>
|
32
32
|
</metal:main>
|
@@ -17,12 +17,12 @@
|
|
17
17
|
images_orientation context/orientation | nothing;
|
18
18
|
orientation_class python:images_orientation and f'display-{images_orientation}' or ''">
|
19
19
|
|
20
|
-
<
|
20
|
+
<ul class="" id="block-menu"
|
21
21
|
tal:attributes="class string:row ${orientation_class}">
|
22
|
-
<
|
22
|
+
<li class="list-menu-element col-12" tal:repeat="item batch">
|
23
23
|
<metal:macro use-macro="context/@@folder_macros/summary" />
|
24
|
-
</
|
25
|
-
</
|
24
|
+
</li>
|
25
|
+
</ul>
|
26
26
|
|
27
27
|
</tal:def>
|
28
28
|
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
from imio.smartweb.locales import SmartwebMessageFactory as _
|
4
|
+
from plone.dexterity.content import Item
|
5
|
+
from zope import schema
|
6
|
+
from zope.interface import implementer
|
7
|
+
from zope.interface import Interface
|
8
|
+
|
9
|
+
|
10
|
+
class IPublication(Interface):
|
11
|
+
""" """
|
12
|
+
|
13
|
+
linked_publication = schema.Choice(
|
14
|
+
vocabulary="imio.smartweb.vocabulary.IADeliberationsPublications",
|
15
|
+
title=_("I.A. Deliberation publication"),
|
16
|
+
required=True,
|
17
|
+
default=None,
|
18
|
+
)
|
19
|
+
|
20
|
+
|
21
|
+
@implementer(IPublication)
|
22
|
+
class Publication(Item):
|
23
|
+
"""Publication class"""
|
@@ -11,7 +11,8 @@
|
|
11
11
|
orientation view/orientation;
|
12
12
|
current-language view/current_language;
|
13
13
|
display-map view/display_map;
|
14
|
-
view-path view/view_path;
|
14
|
+
view-path view/view_path;
|
15
|
+
context-authenticated-user view/context_authenticated_user;"></smartweb-annuaire>
|
15
16
|
</div>
|
16
17
|
</metal:main>
|
17
18
|
</body>
|
@@ -15,7 +15,8 @@
|
|
15
15
|
only-past-events view/only_past_events;
|
16
16
|
view-path view/view_path;
|
17
17
|
display_agendas_titles view/display_agendas_titles;
|
18
|
-
show-categories-or-topics view/show_categories_or_topics;
|
18
|
+
show-categories-or-topics view/show_categories_or_topics;
|
19
|
+
context-authenticated-user view/context_authenticated_user;"></smartweb-events>
|
19
20
|
</div>
|
20
21
|
</metal:main>
|
21
22
|
</body>
|
@@ -13,7 +13,8 @@
|
|
13
13
|
current-language view/current_language;
|
14
14
|
view-path view/view_path;
|
15
15
|
display_newsfolders_titles view/display_newsfolders_titles;
|
16
|
-
show-categories-or-topics view/show_categories_or_topics;
|
16
|
+
show-categories-or-topics view/show_categories_or_topics;
|
17
|
+
context-authenticated-user view/context_authenticated_user;"></smartweb-news>
|
17
18
|
</div>
|
18
19
|
</metal:main>
|
19
20
|
</body>
|
{imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/contents/rest/view.py
RENAMED
@@ -31,6 +31,10 @@ class BaseRestView(BrowserView):
|
|
31
31
|
def current_language(self):
|
32
32
|
return api.portal.get_current_language()[:2]
|
33
33
|
|
34
|
+
@property
|
35
|
+
def context_authenticated_user(self):
|
36
|
+
return api.user.is_anonymous()
|
37
|
+
|
34
38
|
@property
|
35
39
|
def view_path(self):
|
36
40
|
url = self.context.absolute_url()
|
@@ -56,10 +56,10 @@
|
|
56
56
|
show_lead_image python:getattr(context, 'show_items_lead_image', True);
|
57
57
|
portal context/@@plone_portal_state/portal;
|
58
58
|
open_in_new_tab item/open_in_new_tab | nothing;"
|
59
|
-
tal:attributes="class string:table_display ${item/container_id | nothing};"
|
59
|
+
tal:attributes="class string:table_display ${item/container_id | nothing} ${item/smartweb_type | nothing};"
|
60
60
|
>
|
61
61
|
<a tal:attributes="class python:'table_image no-image' if no_icon_no_image else 'table_image';
|
62
|
-
href item
|
62
|
+
href python:view.retrieve_item_url(item);
|
63
63
|
target python:'_blank' if (open_in_new_tab and not can_edit_sections) else '';">
|
64
64
|
<tal:if tal:condition="show_lead_image">
|
65
65
|
<div class="image d-block is-icon w-100"
|
@@ -85,7 +85,7 @@
|
|
85
85
|
</div>
|
86
86
|
|
87
87
|
<div class="table_date"
|
88
|
-
tal:condition="context/show_items_date | nothing">
|
88
|
+
tal:condition="context/show_items_date | context/has_publications | nothing">
|
89
89
|
<tal:if tal:condition="item/effective | nothing">
|
90
90
|
<span i18n:translate="">Published</span>
|
91
91
|
<span class="pat-display-time"
|
@@ -97,6 +97,9 @@
|
|
97
97
|
<metal:macro use-macro="context/@@macros/event_date" />
|
98
98
|
</tal:def>
|
99
99
|
</tal:if>
|
100
|
+
<tal:if tal:condition="item/publication_datetime | nothing">
|
101
|
+
<span class="publication_datetime" tal:content="python:view.datetime_format(item,'publication_datetime')"/>
|
102
|
+
</tal:if>
|
100
103
|
</div>
|
101
104
|
<div tal:condition="view/display_container_title"
|
102
105
|
class="auth_source_container_title"
|
@@ -115,6 +118,13 @@
|
|
115
118
|
tal:condition="item/item_infos | nothing"
|
116
119
|
tal:content="item/item_infos"/>
|
117
120
|
</a>
|
121
|
+
<!-- publication : attached file-->
|
122
|
+
<a
|
123
|
+
tal:condition="item/publication_attached_file | nothing"
|
124
|
+
tal:attributes="href item/publication_attached_file/download"
|
125
|
+
tal:content="item/publication_attached_file/filename"
|
126
|
+
target="_blank" ></a>
|
127
|
+
|
118
128
|
</div>
|
119
129
|
</li>
|
120
130
|
|
@@ -27,7 +27,7 @@
|
|
27
27
|
|
28
28
|
<div tal:condition="not:which_plugin"
|
29
29
|
tal:define="collapse_klass python: 'collapse' if context.collapsible_section else ''"
|
30
|
-
tal:attributes="class string:body-section
|
30
|
+
tal:attributes="class string:body-section ${collapse_klass};
|
31
31
|
id string:body-section-${context/id}"
|
32
32
|
tal:content="structure view/contents" />
|
33
33
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
|
-
|
2
|
+
from imio.smartweb.core.contents import IPublication
|
3
3
|
from imio.smartweb.core.contents.sections.base import ISection
|
4
4
|
from imio.smartweb.core.contents.sections.base import Section
|
5
5
|
from imio.smartweb.locales import SmartwebMessageFactory as _
|
@@ -30,3 +30,9 @@ class SectionFiles(Section):
|
|
30
30
|
"""SectionText class"""
|
31
31
|
|
32
32
|
manage_content = True
|
33
|
+
|
34
|
+
def has_publications(self):
|
35
|
+
for item in self.items():
|
36
|
+
if IPublication.providedBy(item[1]):
|
37
|
+
return True
|
38
|
+
return False
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
from imio.smartweb.core.contents import IPublication
|
3
|
+
from imio.smartweb.core.contents.sections.views import CarouselOrTableSectionView
|
4
|
+
from imio.smartweb.core.utils import batch_results
|
5
|
+
from imio.smartweb.core.utils import get_scale_url
|
6
|
+
from plone import api
|
7
|
+
from zope.component import queryMultiAdapter
|
8
|
+
|
9
|
+
|
10
|
+
class FilesView(CarouselOrTableSectionView):
|
11
|
+
"""Files Section view"""
|
12
|
+
|
13
|
+
def items(self):
|
14
|
+
orientation = self.context.orientation
|
15
|
+
image_scale = self.image_scale
|
16
|
+
items = super(FilesView, self).items()
|
17
|
+
results = []
|
18
|
+
for item in items:
|
19
|
+
url = item.absolute_url()
|
20
|
+
has_image = True if getattr(item.aq_base, "image", None) else False
|
21
|
+
file_view = queryMultiAdapter((item, self.request), name="file_view")
|
22
|
+
scale_url = get_scale_url(
|
23
|
+
item, self.request, "image", image_scale, orientation
|
24
|
+
)
|
25
|
+
dict_item = {
|
26
|
+
"title": item.title,
|
27
|
+
"description": item.description,
|
28
|
+
"smartweb_type": item.smartweb_type,
|
29
|
+
"url": url,
|
30
|
+
"image": scale_url,
|
31
|
+
"has_image": has_image,
|
32
|
+
}
|
33
|
+
dict_item["item_infos"] = (
|
34
|
+
None if file_view is None else file_view.human_readable_size()
|
35
|
+
)
|
36
|
+
if IPublication.providedBy(item):
|
37
|
+
extra_properties = [
|
38
|
+
"linked_publication",
|
39
|
+
"publication_datetime",
|
40
|
+
"publication_url",
|
41
|
+
"publication_document_type",
|
42
|
+
"publication_attached_file",
|
43
|
+
]
|
44
|
+
dict_item = self.get_publication_extra_properties(
|
45
|
+
item, dict_item, extra_properties
|
46
|
+
)
|
47
|
+
|
48
|
+
results.append(dict_item)
|
49
|
+
return batch_results(results, self.context.nb_results_by_batch)
|
50
|
+
|
51
|
+
def retrieve_item_url(self, item):
|
52
|
+
if item.get("publication_url", None) is not None and api.user.is_anonymous():
|
53
|
+
# return "real" publication url in iadeliberation
|
54
|
+
return item.get("publication_url")
|
55
|
+
# return smartweb item url
|
56
|
+
return item.get("url")
|
57
|
+
|
58
|
+
def get_publication_extra_properties(self, item, dict_item, extra_properties):
|
59
|
+
for prop in extra_properties:
|
60
|
+
dict_item[prop] = getattr(item, prop, None)
|
61
|
+
return dict_item
|
@@ -103,6 +103,16 @@ class SectionView(BrowserView):
|
|
103
103
|
class CarouselOrTableSectionView(SectionView):
|
104
104
|
"""Section view that can display a carousel"""
|
105
105
|
|
106
|
+
def items(self):
|
107
|
+
items = self.context.listFolderContents()
|
108
|
+
for item in items:
|
109
|
+
item.smartweb_type = "Item"
|
110
|
+
item.container_id = ""
|
111
|
+
portal_type = getattr(item, "portal_type", None)
|
112
|
+
if portal_type:
|
113
|
+
item.smartweb_type = portal_type.split(".")[-1]
|
114
|
+
return items
|
115
|
+
|
106
116
|
@property
|
107
117
|
def image_scale(self):
|
108
118
|
layout = self.context.getLayout()
|
@@ -114,25 +124,28 @@ class CarouselOrTableSectionView(SectionView):
|
|
114
124
|
else:
|
115
125
|
return getattr(self.context, "image_scale", "")
|
116
126
|
|
117
|
-
def datetime_format(self, item):
|
127
|
+
def datetime_format(self, item, datetime_field="effective"):
|
118
128
|
"""
|
119
129
|
item.get("effective", None)
|
120
130
|
=> DateTime('YYYY/MM/DD HH:mm:ss.000000 GMT+1')
|
121
131
|
convert to more conventional datetime format
|
122
132
|
and return its string representation
|
123
133
|
"""
|
124
|
-
|
125
|
-
if
|
134
|
+
datetime_field = item.get(datetime_field, None)
|
135
|
+
if datetime_field is None:
|
126
136
|
return ""
|
127
137
|
target_timezone = pytz.timezone("Europe/Paris")
|
128
|
-
if isinstance(
|
129
|
-
return
|
130
|
-
dt =
|
138
|
+
if isinstance(datetime_field, str):
|
139
|
+
return datetime_field
|
140
|
+
dt = datetime_field.asdatetime()
|
131
141
|
target_datetime = dt.astimezone(target_timezone)
|
132
142
|
output_format = "%Y-%m-%dT%H:%M:%S%z"
|
133
143
|
formatted_datetime_str = target_datetime.strftime(output_format)
|
134
144
|
return formatted_datetime_str
|
135
145
|
|
146
|
+
def retrieve_item_url(self, item):
|
147
|
+
return item.get("url")
|
148
|
+
|
136
149
|
|
137
150
|
class HashableJsonSectionView(SectionView):
|
138
151
|
json_data = None
|
@@ -0,0 +1,38 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<object xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
3
|
+
name="imio.smartweb.Publication"
|
4
|
+
meta_type="Dexterity FTI"
|
5
|
+
i18n:domain="imio.smartweb">
|
6
|
+
|
7
|
+
<!-- Basic properties -->
|
8
|
+
<property
|
9
|
+
i18n:translate=""
|
10
|
+
name="title">Publication</property>
|
11
|
+
<property
|
12
|
+
i18n:translate=""
|
13
|
+
name="description">IA.Deliberations : Publication</property>
|
14
|
+
|
15
|
+
<property name="icon_expr">string:bounding-box-circles</property>
|
16
|
+
|
17
|
+
<!-- Hierarchy control -->
|
18
|
+
<property name="global_allow">False</property>
|
19
|
+
|
20
|
+
<!-- Schema, class and security -->
|
21
|
+
<!-- if we can add a page, we can add a page section -->
|
22
|
+
<property name="add_permission">imio.smartweb.core.AddPage</property>
|
23
|
+
<property name="klass">imio.smartweb.core.contents.Publication</property>
|
24
|
+
<property name="schema">imio.smartweb.core.contents.IPublication</property>
|
25
|
+
|
26
|
+
<!-- Enabled behaviors -->
|
27
|
+
<property name="behaviors" purge="false">
|
28
|
+
<element value="plone.shortname"/>
|
29
|
+
<element value="plone.leadimage"/>
|
30
|
+
<element value="solr.fields" />
|
31
|
+
</property>
|
32
|
+
|
33
|
+
<!-- View information -->
|
34
|
+
<property name="default_view">view</property>
|
35
|
+
<property name="default_view_fallback">False</property>
|
36
|
+
<property name="immediate_view">view</property>
|
37
|
+
|
38
|
+
</object>
|
@@ -19,6 +19,7 @@
|
|
19
19
|
<property name="filter_content_types">True</property>
|
20
20
|
<property name="allowed_content_types">
|
21
21
|
<element value="File" />
|
22
|
+
<element value="imio.smartweb.Publication" />
|
22
23
|
</property>
|
23
24
|
<!-- Schema, class and security -->
|
24
25
|
<!-- if we can add a page, we can add a page section -->
|
@@ -11,6 +11,7 @@
|
|
11
11
|
<object meta_type="Dexterity FTI" name="imio.smartweb.Page"/>
|
12
12
|
<object meta_type="Dexterity FTI" name="imio.smartweb.PortalPage"/>
|
13
13
|
<object meta_type="Dexterity FTI" name="imio.smartweb.Procedure"/>
|
14
|
+
<object meta_type="Dexterity FTI" name="imio.smartweb.Publication"/>
|
14
15
|
<object meta_type="Dexterity FTI" name="imio.smartweb.SectionCollection"/>
|
15
16
|
<object meta_type="Dexterity FTI" name="imio.smartweb.SectionContact"/>
|
16
17
|
<object meta_type="Dexterity FTI" name="imio.smartweb.SectionEvents"/>
|
{imio.smartweb.core-1.2.65 → imio.smartweb.core-1.2.67}/src/imio/smartweb/core/subscribers.py
RENAMED
@@ -4,6 +4,8 @@ from imio.smartweb.common.faceted.utils import configure_faceted
|
|
4
4
|
from imio.smartweb.common.utils import is_log_active
|
5
5
|
from imio.smartweb.common.utils import remove_cropping
|
6
6
|
from imio.smartweb.core.behaviors.minisite import IImioSmartwebMinisite
|
7
|
+
from imio.smartweb.core.utils import get_iadeliberation_institution_from_registry
|
8
|
+
from imio.smartweb.core.utils import get_iadeliberation_json
|
7
9
|
from imio.smartweb.core.utils import safe_html
|
8
10
|
from imio.smartweb.locales import SmartwebMessageFactory as _
|
9
11
|
from plone import api
|
@@ -106,3 +108,25 @@ def modified_content(obj, event):
|
|
106
108
|
class_name = d.interface.__identifier__.split(".")[-1]
|
107
109
|
for field_name in d.attributes:
|
108
110
|
check_image_field(obj, d.interface, class_name, field_name)
|
111
|
+
|
112
|
+
|
113
|
+
def added_publication(obj, event):
|
114
|
+
"""save json attributes on object attributes"""
|
115
|
+
# query the deliberation API with the
|
116
|
+
# selected publication UID to retrieve all informations
|
117
|
+
iadeliberation_institution = get_iadeliberation_institution_from_registry()
|
118
|
+
url = f"{iadeliberation_institution}/publications/{obj.linked_publication}?fullobjects=y"
|
119
|
+
try:
|
120
|
+
json_publication = get_iadeliberation_json(url)
|
121
|
+
obj.title = json_publication.get("title")
|
122
|
+
obj.description = json_publication.get("description")
|
123
|
+
obj.publication_uid = json_publication.get("UID")
|
124
|
+
obj.publication_url = json_publication.get("@id")
|
125
|
+
obj.publication_datetime = json_publication.get("effective")
|
126
|
+
obj.publication_document_type = json_publication.get("document_type").get(
|
127
|
+
"title"
|
128
|
+
)
|
129
|
+
obj.publication_category = json_publication.get("category").get("title")
|
130
|
+
obj.publication_attached_file = json_publication.get("file")
|
131
|
+
except Exception:
|
132
|
+
logger.error(f"Error while trying to get publication data from {url}")
|