imio.smartweb.core 1.1.15__py3-none-any.whl → 1.1.19__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. imio/smartweb/core/browser/configure.zcml +1 -0
  2. imio/smartweb/core/browser/controlpanel.py +24 -0
  3. imio/smartweb/core/browser/dashboards/__init__.py +0 -0
  4. imio/smartweb/core/browser/dashboards/configure.zcml +17 -0
  5. imio/smartweb/core/browser/dashboards/plausible.pt +29 -0
  6. imio/smartweb/core/browser/dashboards/plausible.py +21 -0
  7. imio/smartweb/core/browser/faceted/map.pt +3 -7
  8. imio/smartweb/core/browser/utils.py +33 -0
  9. imio/smartweb/core/contents/__init__.py +4 -0
  10. imio/smartweb/core/contents/cropping.py +2 -5
  11. imio/smartweb/core/contents/folder/content.py +1 -0
  12. imio/smartweb/core/contents/rest/base.py +16 -0
  13. imio/smartweb/core/contents/rest/directory/endpoint.py +8 -15
  14. imio/smartweb/core/contents/rest/events/endpoint.py +6 -12
  15. imio/smartweb/core/contents/rest/news/endpoint.py +6 -11
  16. imio/smartweb/core/contents/rest/search/endpoint.py +26 -6
  17. imio/smartweb/core/contents/sections/configure.zcml +1 -0
  18. imio/smartweb/core/contents/sections/contact/view.pt +1 -2
  19. imio/smartweb/core/contents/sections/external_content/__init__.py +0 -0
  20. imio/smartweb/core/contents/sections/external_content/configure.zcml +14 -0
  21. imio/smartweb/core/contents/sections/external_content/content.py +32 -0
  22. imio/smartweb/core/contents/sections/external_content/view.pt +31 -0
  23. imio/smartweb/core/contents/sections/external_content/views.py +31 -0
  24. imio/smartweb/core/contents/sections/gallery/view.pt +1 -2
  25. imio/smartweb/core/contents/sections/macros.pt +0 -4
  26. imio/smartweb/core/contents/sections/text/configure.zcml +0 -6
  27. imio/smartweb/core/contents/sections/text/content.py +0 -12
  28. imio/smartweb/core/contents/sections/text/forms.py +2 -0
  29. imio/smartweb/core/permissions.zcml +6 -0
  30. imio/smartweb/core/profiles/default/metadata.xml +1 -1
  31. imio/smartweb/core/profiles/default/rolemap.xml +6 -0
  32. imio/smartweb/core/profiles/default/types/imio.smartweb.Page.xml +1 -0
  33. imio/smartweb/core/profiles/default/types/imio.smartweb.PortalPage.xml +1 -0
  34. imio/smartweb/core/profiles/default/types/imio.smartweb.Procedure.xml +1 -0
  35. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionContact.xml +0 -1
  36. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml +0 -1
  37. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionExternalContent.xml +35 -0
  38. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml +0 -1
  39. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionGallery.xml +0 -1
  40. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml +1 -1
  41. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionLinks.xml +0 -1
  42. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionMap.xml +0 -1
  43. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml +0 -1
  44. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionPostit.xml +0 -1
  45. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml +0 -1
  46. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml +0 -1
  47. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml +0 -1
  48. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionText.xml +0 -1
  49. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml +0 -1
  50. imio/smartweb/core/profiles/default/types.xml +1 -0
  51. imio/smartweb/core/profiles/default/workflows.xml +1 -0
  52. imio/smartweb/core/tests/resources/json_rest_directory.json +1099 -0
  53. imio/smartweb/core/tests/resources/json_rest_events.json +1099 -0
  54. imio/smartweb/core/tests/resources/json_rest_news.json +1103 -4
  55. imio/smartweb/core/tests/test_cropping.py +2 -24
  56. imio/smartweb/core/tests/test_folder.py +17 -0
  57. imio/smartweb/core/tests/test_plausibleview.py +83 -0
  58. imio/smartweb/core/tests/test_rest.py +40 -0
  59. imio/smartweb/core/tests/test_section_news.py +0 -1
  60. imio/smartweb/core/tests/test_sections.py +34 -0
  61. imio/smartweb/core/upgrades/configure.zcml +90 -0
  62. imio/smartweb/core/upgrades/profiles/1037_to_1038/registry/plausible.xml +9 -0
  63. imio/smartweb/core/upgrades/profiles/1038_to_1039/rolemap.xml +12 -0
  64. imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.Page.xml +11 -0
  65. imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.PortalPage.xml +11 -0
  66. imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.Procedure.xml +11 -0
  67. imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.SectionExternalContent.xml +36 -0
  68. imio/smartweb/core/upgrades/profiles/1038_to_1039/types.xml +4 -0
  69. imio/smartweb/core/upgrades/profiles/1038_to_1039/workflows.xml +6 -0
  70. imio/smartweb/core/upgrades/profiles/1039_to_1040/types/imio.smartweb.SectionSlide.xml +14 -0
  71. imio/smartweb/core/upgrades/profiles/1040_to_1041/types/imio.smartweb.SectionText.xml +17 -0
  72. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionContact.xml +14 -0
  73. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionEvents.xml +14 -0
  74. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionExternalContent.xml +15 -0
  75. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionFiles.xml +14 -0
  76. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionGallery.xml +15 -0
  77. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionLinks.xml +14 -0
  78. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionMap.xml +15 -0
  79. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionNews.xml +14 -0
  80. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionPostit.xml +14 -0
  81. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSelections.xml +14 -0
  82. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSendinblue.xml +14 -0
  83. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionVideo.xml +15 -0
  84. imio/smartweb/core/webcomponents/build/css/195.smartweb-webcomponents-compiled.css +1 -1
  85. imio/smartweb/core/webcomponents/build/css/552.smartweb-webcomponents-compiled.css +1 -1
  86. imio/smartweb/core/webcomponents/build/js/195.smartweb-webcomponents-compiled.js +1 -1
  87. imio/smartweb/core/webcomponents/build/js/212.smartweb-webcomponents-compiled.js +2 -0
  88. imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js +1 -1
  89. imio/smartweb/core/webcomponents/build/js/510.smartweb-webcomponents-compiled.js +1 -1
  90. imio/smartweb/core/webcomponents/build/js/552.smartweb-webcomponents-compiled.js +1 -1
  91. imio/smartweb/core/webcomponents/build/js/{462.smartweb-webcomponents-compiled.js → 565.smartweb-webcomponents-compiled.js} +1 -1
  92. imio/smartweb/core/webcomponents/build/js/{842.smartweb-webcomponents-compiled.js → 729.smartweb-webcomponents-compiled.js} +2 -2
  93. imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js +1 -1
  94. imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js.LICENSE.txt +2 -2
  95. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
  96. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +2 -3
  97. imio/smartweb/core/webcomponents/src/components/Events/ContactCard/ContactCard.jsx +1 -2
  98. imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +0 -1
  99. imio/smartweb/core/webcomponents/src/components/News/ContactCard/ContactCard.jsx +1 -2
  100. imio/smartweb/core/webcomponents/src/components/News/ContactContent/ContactContent.jsx +1 -1
  101. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/METADATA +63 -1
  102. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/RECORD +110 -78
  103. imio/smartweb/core/webcomponents/build/assets/img-placeholder-bla.a2b8b384c46ce56c99f042dc4625d309.png +0 -0
  104. imio/smartweb/core/webcomponents/build/js/650.smartweb-webcomponents-compiled.js +0 -2
  105. /imio/smartweb/core/webcomponents/build/js/{650.smartweb-webcomponents-compiled.js.LICENSE.txt → 212.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  106. /imio/smartweb/core/webcomponents/build/js/{842.smartweb-webcomponents-compiled.js.LICENSE.txt → 729.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  107. /imio.smartweb.core-1.1.15-py3.10-nspkg.pth → /imio.smartweb.core-1.1.19-py3.10-nspkg.pth +0 -0
  108. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/LICENSE.GPL +0 -0
  109. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/LICENSE.rst +0 -0
  110. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/WHEEL +0 -0
  111. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/namespace_packages.txt +0 -0
  112. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/top_level.txt +0 -0
@@ -1,5 +1,4 @@
1
1
  import React from "react";
2
- import imgPlaceholder from "../../../assets/img-placeholder-bla.png";
3
2
 
4
3
  const ContactCard = ({ contactItem }) => {
5
4
  const title = contactItem.title && contactItem.title;
@@ -32,11 +31,11 @@ const ContactCard = ({ contactItem }) => {
32
31
  countryTitle
33
32
 
34
33
  itineraryLink = itineraryLink.replaceAll('+null', '')
35
-
34
+ console.log(contactItem)
36
35
  return (
37
36
  <div className="r-list-item">
38
37
  <div
39
- className={contactItem.image?"r-item-img":"r-item-img r-item-img-placeholder"}
38
+ className={contactItem.image_preview_scale?"r-item-img":"r-item-img r-item-img-placeholder"}
40
39
  style={{
41
40
  backgroundImage: contactItem.image_preview_scale
42
41
  ? "url(" + contactItem.image_preview_scale + ")"
@@ -1,5 +1,4 @@
1
1
  import React from "react";
2
- import imgPlaceholder from "../../../assets/img-placeholder-bla.png";
3
2
  import moment from "moment";
4
3
  import Moment from "react-moment";
5
4
  const ContactCard = ({ contactItem }) => {
@@ -20,7 +19,7 @@ const ContactCard = ({ contactItem }) => {
20
19
  return (
21
20
  <div className="r-list-item">
22
21
  <div
23
- className={contactItem.image?"r-item-img":"r-item-img r-item-img-placeholder"}
22
+ className={contactItem.image_preview_scale?"r-item-img":"r-item-img r-item-img-placeholder"}
24
23
  style={{
25
24
  backgroundImage: contactItem.image_preview_scale
26
25
  ? "url(" + contactItem.image_preview_scale + ")"
@@ -129,7 +129,6 @@ function EventsView(props) {
129
129
  }
130
130
 
131
131
  const divLoader = <div className="lds-roller-container"><div className="lds-roller"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div></div>;
132
-
133
132
  return (
134
133
  <Router>
135
134
  <div className="ref">
@@ -1,7 +1,6 @@
1
1
  import React, { useEffect, useState } from "react";
2
2
  import moment from "moment";
3
3
  import Moment from "react-moment";
4
- import imgPlaceholder from "../../../assets/img-placeholder-bla.png";
5
4
  import { Link } from "react-router-dom";
6
5
  import removeAccents from "remove-accents";
7
6
 
@@ -26,7 +25,7 @@ const ContactCard = ({ contactItem }) => {
26
25
  return (
27
26
  <div className="r-list-item">
28
27
  <div
29
- className={contactItem.image?"r-item-img":"r-item-img r-item-img-placeholder"}
28
+ className={contactItem.image_preview_scale?"r-item-img":"r-item-img r-item-img-placeholder"}
30
29
  style={{
31
30
  backgroundImage: contactItem.image_preview_scale
32
31
  ? "url(" + contactItem.image_preview_scale + ")"
@@ -247,7 +247,7 @@ const ContactContent = ({ queryUrl, onChange }) => {
247
247
  <div class="spotlight-group flexbin r-content-gallery">
248
248
  {gallery.map((image) => (
249
249
  <a class="spotlight" href={image.image_extralarge_scale} >
250
- <img src={image.image.scales.preview.download} />
250
+ <img src={image.image_preview_scale} />
251
251
  </a>
252
252
  ))}
253
253
  </div>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: imio.smartweb.core
3
- Version: 1.1.15
3
+ Version: 1.1.19
4
4
  Summary: Core product for iMio websites
5
5
  Home-page: https://github.com/imio/imio.smartweb.core
6
6
  Author: Christophe Boulanger
@@ -189,6 +189,68 @@ Changelog
189
189
  =========
190
190
 
191
191
 
192
+ 1.1.19 (2023-08-07)
193
+ -------------------
194
+
195
+ - WEB-3956 : Update folder modification date when its layout changed to fix cache
196
+ [boulch]
197
+
198
+ - WEB-3934 : Hide image_size field
199
+ [boulch]
200
+
201
+ - WEB-3953 : Remove cropping from background_image field
202
+ [boulch]
203
+
204
+ - WEB-3952 : Disable image cropping on section text
205
+ [laulaz, boulch]
206
+
207
+ - Make "Image cropping" link conditional
208
+ [laulaz]
209
+
210
+ - Disable image cropping on Slide content type
211
+ [laulaz]
212
+
213
+ - Fix condition for image placeholder on React vue
214
+ [thomlamb]
215
+
216
+
217
+ 1.1.18 (2023-06-19)
218
+ -------------------
219
+
220
+ - Removal of unnecessary css in sections contact and gallery
221
+ [thomlamb]
222
+
223
+ - Add new browserview for Plausible
224
+ [remdub, boulch]
225
+
226
+ - Change some icons : SectionHTML and SectionExternalContent
227
+ [boulch]
228
+
229
+ - MWEBTUBA : Add new section : imio.smartweb.SectionExternalContent (Manage embeded contents)
230
+ [boulch]
231
+
232
+
233
+ 1.1.17 (2023-05-31)
234
+ -------------------
235
+
236
+ - New React build
237
+ [thomlamb]
238
+
239
+ - Use hash in gallery images URL for directory, events and news rest views
240
+ (based on modification date) to allow strong caching.
241
+ [boulch, laulaz]
242
+
243
+
244
+ 1.1.16 (2023-05-25)
245
+ -------------------
246
+
247
+ - Fix faceted map size after page loading.
248
+ [thomlamb]
249
+
250
+ - Adapt `@search` endpoint to handle multilingual
251
+ [mpeeters]
252
+
253
+
192
254
  1.1.15 (2023-05-22)
193
255
  -------------------
194
256
 
@@ -1,11 +1,11 @@
1
- imio.smartweb.core-1.1.15-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
1
+ imio.smartweb.core-1.1.19-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
2
2
  imio/smartweb/core/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
3
3
  imio/smartweb/core/config.py,sha256=BUgfvh4hCaw0onCYAG4gQI1O4hZ-GzXWEltdHi4YLIs,337
4
4
  imio/smartweb/core/configure.zcml,sha256=G_Txh8wh0Mt5g2nDrJUjec_qFd5l9A8ZEUFzv4cjUcA,1429
5
5
  imio/smartweb/core/indexers.py,sha256=Lv1lHWFzM71ju822N8y7w61GDOyi6qmUbveZNI1tCz4,3887
6
6
  imio/smartweb/core/indexers.zcml,sha256=XHvKTkNcF5mkX-dVwRbjNsrBwIwwqa2Cm81PoXBqtow,968
7
7
  imio/smartweb/core/interfaces.py,sha256=cjBsofbMkEnEpPI6J7r6igLnBJBl_SeHwGwgBmAUY1M,858
8
- imio/smartweb/core/permissions.zcml,sha256=5w-IEIZONdksM64RmyKZqy6mldWjAAk3AeXR108eVHw,1611
8
+ imio/smartweb/core/permissions.zcml,sha256=ZyBEARyO8NAq7tKFTb3G1FqEWERT1mQQ6vCVzji1ci8,1777
9
9
  imio/smartweb/core/profiles.zcml,sha256=sPRs9aMuS852uzPWVedTBlrggHKjfLsQQAtRzbWYWhA,1737
10
10
  imio/smartweb/core/setuphandlers.py,sha256=_obtkdqYnJTAQcJTmapMFgC1cwjyITWGYnBksrppoEM,879
11
11
  imio/smartweb/core/subscribers.py,sha256=p-pwenYgHF5oqCvZFTwIvOMpVefC459lU1DkYWNr2-E,1818
@@ -22,21 +22,25 @@ imio/smartweb/core/behaviors/minisite.py,sha256=sDo74qYt8vWJjrfr2JQSTDXocUVwehGI
22
22
  imio/smartweb/core/behaviors/quickaccess.py,sha256=j18T39KcbiJErpidMM8wH6i4XjEIZyTQ1kER4_FfhhE,1063
23
23
  imio/smartweb/core/behaviors/subsite.py,sha256=O2aJHl3Jj9WTpGBmNJaoia-PAtb7aSHpCRanvO1JE8k,1707
24
24
  imio/smartweb/core/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
- imio/smartweb/core/browser/configure.zcml,sha256=NRSq_XbpQgRSdoZtFR1Ah0sO7cEOnYZgISIEoVGpv1o,2775
26
- imio/smartweb/core/browser/controlpanel.py,sha256=syMXXRh7zPrtAO6EWEJVVILMOpxij9rHd1QUxY6ga88,4648
25
+ imio/smartweb/core/browser/configure.zcml,sha256=HSdkiDSAhpEoBxjfUYWbEaE32FxzROLoaQ7Xfjtbwog,2811
26
+ imio/smartweb/core/browser/controlpanel.py,sha256=6HXq01oq9ndFc4fNx5Dv49TG92OiCKoK7ovQQUVNQkA,5361
27
27
  imio/smartweb/core/browser/forms.py,sha256=Htj_5T3ryQcrvkGgtuSqndfJsvusxMA3OSqoUoj0xHE,1089
28
28
  imio/smartweb/core/browser/icons.py,sha256=LFBCYTfynp4qNX2OQuNmMTOUEcJv-oQ8Izu6opE3o7A,2065
29
29
  imio/smartweb/core/browser/layout.py,sha256=wvo_Q2dYg1Yd8wOdYSfPg29NPESy9ndAGl6z3r5kxnY,2066
30
- imio/smartweb/core/browser/utils.py,sha256=crzA_7w5f8E4JpCbo_9Zde0FYqW-g_hXqNFwQSxMilQ,3058
30
+ imio/smartweb/core/browser/utils.py,sha256=XREvL3AvS5wHWGEUbhSnR93EYL2Ql16eEBqzdXqPU0g,4237
31
31
  imio/smartweb/core/browser/banner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
32
  imio/smartweb/core/browser/banner/configure.zcml,sha256=Z2M7gkRDdmV4zRekUhyuJ-_jvbIbhgTj2Zq674iKvUE,389
33
33
  imio/smartweb/core/browser/banner/settings.py,sha256=jfD705_q8MAHUJbjjcfcPj1f98Rahiz_Mks2Ctx5kMA,947
34
+ imio/smartweb/core/browser/dashboards/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ imio/smartweb/core/browser/dashboards/configure.zcml,sha256=9ywrXGrCiWM-XleQj7rRlkccSzm2etdylHLehIoqMqE,523
36
+ imio/smartweb/core/browser/dashboards/plausible.pt,sha256=VlR0b3jXzkG_Qdkx51hOUVI2-LCMStfOFdRhSoD14oQ,1107
37
+ imio/smartweb/core/browser/dashboards/plausible.py,sha256=alJmWXasWHMYAj0mvehyfHveHiUDp9yCvDrrkRq90Og,696
34
38
  imio/smartweb/core/browser/faceted/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
39
  imio/smartweb/core/browser/faceted/block_view.pt,sha256=DzymdK4CbOTCYtGDbby3XtsW4cX1-uz5XoqL-MaGlig,1723
36
40
  imio/smartweb/core/browser/faceted/configure.zcml,sha256=k4MMG6ToX0YjT0yErzNOeARb7g-ViiSDpGjwtDj-qLE,2806
37
41
  imio/smartweb/core/browser/faceted/gallery_view.pt,sha256=Ejki8uoJNDeta3Ajzgag0Dlxf37asTWjAYYmuAtE2vo,1582
38
42
  imio/smartweb/core/browser/faceted/macros.pt,sha256=rme7BdEafmj2RvpCbN3aWU5QoJm4lgFk70mCVeSUbMM,2951
39
- imio/smartweb/core/browser/faceted/map.pt,sha256=P4zVMyQQtAi69iijM43SqFzYjK5w44gb73HC9EQ3Eko,4303
43
+ imio/smartweb/core/browser/faceted/map.pt,sha256=iqyJ_uT-DJ8umBJtlzwWGXVYwLvDST9ktPjmdA6Qij4,4183
40
44
  imio/smartweb/core/browser/faceted/map.py,sha256=vMFMOyIHdU7Bsn_5OhYMBngdzyL4UoFM6IvKlkM9e6U,1382
41
45
  imio/smartweb/core/browser/faceted/summary_view.pt,sha256=V6_eqDT6Sa6qN9DbGSAEoIN1PbDFPp15-VdmOOws4C0,1667
42
46
  imio/smartweb/core/browser/faceted/views.py,sha256=tJix5RdGAlaJGRh0E184Tj9OKiRCVP-u7kXSMIxD9v8,1357
@@ -134,9 +138,9 @@ imio/smartweb/core/browser/subsite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
134
138
  imio/smartweb/core/browser/subsite/configure.zcml,sha256=ITEH-6pVztshQElqjNv9sk-CcVUTLFeccdSO9rHLwt0,414
135
139
  imio/smartweb/core/browser/subsite/settings.py,sha256=tXEnEYZG75eM7H766ZgNCCWMwOcY9j45shD-8NR_7I0,1601
136
140
  imio/smartweb/core/browser/templates/link_input.pt,sha256=Q7Y4gW4q0DVG-U5f3ZJkrAZwJnV8NMPu_Fdht7zhb4A,2808
137
- imio/smartweb/core/contents/__init__.py,sha256=WDDFZAsQGnKETu0JADJEWoX5Zn_Llc1nDwU-dfI3sKI,1940
141
+ imio/smartweb/core/contents/__init__.py,sha256=ClfT2XMryyJMfYlPTW5oDvkrBvpwgQttiObOri-8SdU,2056
138
142
  imio/smartweb/core/contents/configure.zcml,sha256=NY2RLQys_UriZpsFS84exawth3dOgkhaz-2b30WsNNI,665
139
- imio/smartweb/core/contents/cropping.py,sha256=AB5A-iRsIbWnCasejz7lWhClkxAE75Ss4Jbyxj4DdJo,727
143
+ imio/smartweb/core/contents/cropping.py,sha256=AKSI3rhekCRAalf-0d6ugkCdFOQgAqA-KkSXojnhn7k,645
140
144
  imio/smartweb/core/contents/blocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
145
  imio/smartweb/core/contents/blocks/configure.zcml,sha256=qmn7Hq9TekwvEYvS3PzUtINoA-slaoBrhAVxqvkbYC8,732
142
146
  imio/smartweb/core/contents/blocks/subscriber.py,sha256=YL8mLJBwLvRvhPprbVlSXrNnWK2elZQtbYroWAcCjVg,330
@@ -148,7 +152,7 @@ imio/smartweb/core/contents/blocks/link/icons_input.pt,sha256=oDVGYr5oXMi5Vc_ToK
148
152
  imio/smartweb/core/contents/folder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
153
  imio/smartweb/core/contents/folder/block_view.pt,sha256=lwAYPAxtZ9VYjeb7WhrmlCyI7fXuHWWH0U6HiwzI6a8,1194
150
154
  imio/smartweb/core/contents/folder/configure.zcml,sha256=ZBWZWLxJBOfu-eZgasCL2gRQcOuYxlE23VqzTwnBzvQ,2961
151
- imio/smartweb/core/contents/folder/content.py,sha256=3g1ytjD3PimXK9f7yclZGxr-U_KJHBRUF11fG77snkM,3348
155
+ imio/smartweb/core/contents/folder/content.py,sha256=3KgS1PFUKnsyWiT8PD0yMgqY5u-978uUhWK0flHgaoQ,3377
152
156
  imio/smartweb/core/contents/folder/element_view.pt,sha256=dD6O9Racd_UxSXJ9XRMujFEnxfewb4Utlf-Tk_RT4_o,342
153
157
  imio/smartweb/core/contents/folder/macros.pt,sha256=aGQd4241WhasLu0CwoxDuku2mhBvz1m04WMWaENm4FQ,1743
154
158
  imio/smartweb/core/contents/folder/summary_view.pt,sha256=WAYzv1gnwQ57F20-ifjIc2FZd6zlrWLOG12NIaJ0MKA,920
@@ -184,34 +188,34 @@ imio/smartweb/core/contents/pages/procedure/content.py,sha256=e_kv7YsRF0vblfpxqq
184
188
  imio/smartweb/core/contents/pages/procedure/utils.py,sha256=EATKvK72QPQheLXCXCoADYMjA3UfgPtkOPKdqnEyX64,1291
185
189
  imio/smartweb/core/contents/pages/procedure/view.py,sha256=UeZwtdn20lCo7qbqqPcsD9LL69vNTq4m_wXB4nv8jMo,408
186
190
  imio/smartweb/core/contents/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
- imio/smartweb/core/contents/rest/base.py,sha256=fw98kSRuiNQkdenKzlesPQpE_65b0F53k7CBwBSQoQQ,1411
191
+ imio/smartweb/core/contents/rest/base.py,sha256=QIrJz3AEuE0K_F-gRT8zMV6j8aqoCb_2rhQcjtepNzo,1932
188
192
  imio/smartweb/core/contents/rest/configure.zcml,sha256=Cq0d5n2-XZZr7DD8BjQyjOFkp3fy_M-Eo0IzXZe7NIk,200
189
193
  imio/smartweb/core/contents/rest/view.py,sha256=kaNmJZ7FbB-HE632bfITo-ZrjNGBqKhGuChmPoOmv6Y,706
190
194
  imio/smartweb/core/contents/rest/directory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
191
195
  imio/smartweb/core/contents/rest/directory/configure.zcml,sha256=_K34jECLk9RWscAyiRXwoJLLBIVj-EJRGFOEbUU5Ito,1035
192
196
  imio/smartweb/core/contents/rest/directory/content.py,sha256=c3XmsOXVp9Zx30DeljuCbkaSJVhdqBRb5M2FKYaaokE,923
193
- imio/smartweb/core/contents/rest/directory/endpoint.py,sha256=TGfY2jPTHG-yuR8FFrSc_XMJkziYhpUysODiY-X7l0I,3204
197
+ imio/smartweb/core/contents/rest/directory/endpoint.py,sha256=DJf0fdu66VEt2gwO-l1Bqf_Y6RtXhs4SG7OvkbEGQN0,2784
194
198
  imio/smartweb/core/contents/rest/directory/view.pt,sha256=6J6LPZSQ4Aq4SQV2Bukvm-oNgljvAqpknaSLa_3m-hc,616
195
199
  imio/smartweb/core/contents/rest/directory/view.py,sha256=ZWNstnjoCWaadqo3V2m8-GOb4pyXEpBvWsD4R95lGlo,302
196
200
  imio/smartweb/core/contents/rest/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
197
201
  imio/smartweb/core/contents/rest/events/configure.zcml,sha256=ufUHdGMkGd57zgZ4_DxvoK4Zn7_AC_A3_TnLkmdYRhs,1017
198
202
  imio/smartweb/core/contents/rest/events/content.py,sha256=AUup2Qf47hP7_qB0WS3M7_dzmL1YpRWySz5MGLSSz50,1100
199
- imio/smartweb/core/contents/rest/events/endpoint.py,sha256=lf0eOMF_F9p76Ix_N5JJZBJVSt9jCx619ISU9a7gAas,2977
203
+ imio/smartweb/core/contents/rest/events/endpoint.py,sha256=s0PHrAxIv2thBTHsuHbjjSdwqnWOZbhZz8DNk-vqn10,2561
200
204
  imio/smartweb/core/contents/rest/events/view.pt,sha256=0nT6iPXHIYMEtTGCVbvFtIhs_wc8rpbbs4_bYnOFiuQ,617
201
205
  imio/smartweb/core/contents/rest/events/view.py,sha256=hiHjL93lRP_hb-xa2t9cpGGz67jo3Y5ssFpV-F2eXtM,293
202
206
  imio/smartweb/core/contents/rest/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
203
207
  imio/smartweb/core/contents/rest/news/configure.zcml,sha256=f1kNWMjcHul5_dKv51KY_GQII-Cvx-uL7N9Z25zlN8c,1005
204
208
  imio/smartweb/core/contents/rest/news/content.py,sha256=i2duKDXViZwOnzS1h8vKkGxejlbRJ4zGtkUIsybtonc,753
205
- imio/smartweb/core/contents/rest/news/endpoint.py,sha256=6gM9rQM9FkWXQnOtp5A4q4ZGpkIxcS8OEc6gP4xpEyY,2790
209
+ imio/smartweb/core/contents/rest/news/endpoint.py,sha256=0awcqlvoAXdVlyBG2rCN9mjrgfaga2eWEMZZoH1AWr4,2494
206
210
  imio/smartweb/core/contents/rest/news/view.pt,sha256=RWdb9mPkaGDMhJEgRm-dbSEq1mVZRphdY-elFf4iyeo,629
207
211
  imio/smartweb/core/contents/rest/news/view.py,sha256=qS60C9-vWlwzDassDE76W1ys04WxK7JQe8FzNFeF338,287
208
212
  imio/smartweb/core/contents/rest/search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
209
213
  imio/smartweb/core/contents/rest/search/configure.zcml,sha256=BTFcBQ28NINyEfoVgYwJgf0JWvk99ewSKgOYx91lZy4,951
210
- imio/smartweb/core/contents/rest/search/endpoint.py,sha256=XXqOX0IlD7nfb3AaM8UihCW8uEFbNxt-DKCLjGKt_zA,8383
214
+ imio/smartweb/core/contents/rest/search/endpoint.py,sha256=gcdhZZntHLiGbnrvQJcjGPephVAouVI9h2DlCGJKIfU,9470
211
215
  imio/smartweb/core/contents/sections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
216
  imio/smartweb/core/contents/sections/base.py,sha256=2e3lIG_RGGFAshBEkTNG97OReAnn9GLQk_O_Eqh7SRY,2486
213
- imio/smartweb/core/contents/sections/configure.zcml,sha256=QfzyuYQIhLukiEpodFzuo-SLNa55aRvhEOcHUWHqZEA,2200
214
- imio/smartweb/core/contents/sections/macros.pt,sha256=P0ywHwqtahcK4A4VkPQW_DSlH9hdsNf-oorPsM3UAcY,4293
217
+ imio/smartweb/core/contents/sections/configure.zcml,sha256=aEbAu9MikK-sCVzST8Nn-bMbv7clnHfnoumlBW197Wk,2242
218
+ imio/smartweb/core/contents/sections/macros.pt,sha256=zfbNvH5fFj6j3M3v1Ys7UYcXpQnS-alw0L3w_8ScU20,4092
215
219
  imio/smartweb/core/contents/sections/subscriber.py,sha256=WM7nEZVPOkmyT1GfkWGDWwLhuhUYaTnlBr6BJVqUJMk,642
216
220
  imio/smartweb/core/contents/sections/views.py,sha256=uGd--cjdCfstqz1fI3GJxjMAyWXuAtSaFM-aZw3UXiw,2830
217
221
  imio/smartweb/core/contents/sections/collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -224,13 +228,18 @@ imio/smartweb/core/contents/sections/contact/__init__.py,sha256=47DEQpj8HBSa-_TI
224
228
  imio/smartweb/core/contents/sections/contact/configure.zcml,sha256=77cFrCVOIL0ha7YTl_flYHqUBSdMnFWvPfh9XyXqQNA,1281
225
229
  imio/smartweb/core/contents/sections/contact/content.py,sha256=OejMfLJrocRCVIvrGZhzN8u_b1SDCJRqq8pawOfmGqQ,2431
226
230
  imio/smartweb/core/contents/sections/contact/forms.py,sha256=VlN_jse8tYxE9RCro2RgHlZRDDIyZA8Bjr-dNePZYwU,1387
227
- imio/smartweb/core/contents/sections/contact/view.pt,sha256=rbv_lEKdTMKPolE2zMpoPpt-af9wmHS7htdHW17hi6E,9458
231
+ imio/smartweb/core/contents/sections/contact/view.pt,sha256=U7rvFW8OL4QV-DEDvLOr5pxE1X2ui7bJeJCRbQwPOrc,9368
228
232
  imio/smartweb/core/contents/sections/contact/view.py,sha256=y48nc1iGbSdI30kmBGUt3W0Mw9p2L9mqPB32d74b9xE,12366
229
233
  imio/smartweb/core/contents/sections/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
230
234
  imio/smartweb/core/contents/sections/events/configure.zcml,sha256=FCDIf6w-2qCPqq0QUodw8-xyAopq7l6O8zoU_uMHNwg,1117
231
235
  imio/smartweb/core/contents/sections/events/content.py,sha256=Xm8atH3oGrVXN3HXG40C5-HfXjm_glgyTi4shSYZRJw,2911
232
236
  imio/smartweb/core/contents/sections/events/macros.pt,sha256=llSq-xstFiOXctseKDwvhVCM7A1_Z1Jq-_cUgNiBe10,1522
233
237
  imio/smartweb/core/contents/sections/events/view.py,sha256=nTwRUB4KRYHGejG0AVD7auDuLE1ghnaMHTL9QS4md3w,3576
238
+ imio/smartweb/core/contents/sections/external_content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
+ imio/smartweb/core/contents/sections/external_content/configure.zcml,sha256=6nKvwE4sqxizuFM97dyfEb89_CZ3j-tW6DKzcWoT9Xk,449
240
+ imio/smartweb/core/contents/sections/external_content/content.py,sha256=eS8fwTW_Klsriips6yX_bXTGjK_7zEjVhCpkMjd_ATU,974
241
+ imio/smartweb/core/contents/sections/external_content/view.pt,sha256=UMcAm5i0Av2uYkHxdtLN_91bxLxaWlI39GIQE_L_LQ0,1116
242
+ imio/smartweb/core/contents/sections/external_content/views.py,sha256=qWQO3OL4pxwdBnmoGsjF9-nzZOiATv4JNb-qzTAYcfc,1099
234
243
  imio/smartweb/core/contents/sections/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
235
244
  imio/smartweb/core/contents/sections/files/configure.zcml,sha256=DyyHzDEKLWmOywbV08Zf7bvf0At5jyAeDfZ8PCK5Rog,501
236
245
  imio/smartweb/core/contents/sections/files/content.py,sha256=3WHAdqNxV_L30EdtCpfHjlnaKIjZunZFRLpwmREJFi0,868
@@ -238,7 +247,7 @@ imio/smartweb/core/contents/sections/files/view.py,sha256=eYqELtp2CPeg8NPwJbR_lm
238
247
  imio/smartweb/core/contents/sections/gallery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
248
  imio/smartweb/core/contents/sections/gallery/configure.zcml,sha256=0fq5_PWU9vFrmPkExvFPBCzZrDSnlN8B0K7fHQReAvA,424
240
249
  imio/smartweb/core/contents/sections/gallery/content.py,sha256=XDU76lqSJJoF252soIE6PbmNYcE3C8v79vCc5CDloww,784
241
- imio/smartweb/core/contents/sections/gallery/view.pt,sha256=-hh8-ZcItAR2QPapdvWahe-FCe24F1OCis4FRVS0Nyw,2150
250
+ imio/smartweb/core/contents/sections/gallery/view.pt,sha256=lMhrSD9Q2edvo_ayCU5I3mEkscmzAOLDHotHzSYArSI,2064
242
251
  imio/smartweb/core/contents/sections/gallery/views.py,sha256=_WmGEsCSK_Jx4Ny1KT6mBuQG9T-UCAB1BrcyGm1uzoY,415
243
252
  imio/smartweb/core/contents/sections/html/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
244
253
  imio/smartweb/core/contents/sections/html/configure.zcml,sha256=KsYNQY72doYTDf8Oa-5j147pOJYXqLPPBF7AtvMxDck,413
@@ -276,9 +285,9 @@ imio/smartweb/core/contents/sections/slide/content.py,sha256=BKPtGhMhmHKpzq4JSvC
276
285
  imio/smartweb/core/contents/sections/slide/view.pt,sha256=pSf1zreuL96Kieyiwo-kLrASB2gHmIGPm5PmUgPEw2c,2440
277
286
  imio/smartweb/core/contents/sections/slide/view.py,sha256=fK_HQRyANhZ__rsmwGuXI5APLzPLlyJmnDNHpRyTO2c,784
278
287
  imio/smartweb/core/contents/sections/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
279
- imio/smartweb/core/contents/sections/text/configure.zcml,sha256=oLYuCds9lObsQubFkAOj-il2JlrWyH1mbC80dOV-4lU,1423
280
- imio/smartweb/core/contents/sections/text/content.py,sha256=1fcc6ovu3IY_U-8WccBJeHtWpizpaewYJAWgbobsACo,1564
281
- imio/smartweb/core/contents/sections/text/forms.py,sha256=aQjOfvHOUO2HtQGUY8vCjXg295nlFx3dDUoq2LpMXEA,1712
288
+ imio/smartweb/core/contents/sections/text/configure.zcml,sha256=FzMgOeiLv33RhOe3hSDsEDcDvmuutQ4SycW3hkvNh-I,1257
289
+ imio/smartweb/core/contents/sections/text/content.py,sha256=DM18kPNjyuYR27yZ1U8oNtuONeb_0i2mc-e_uMdkStg,1117
290
+ imio/smartweb/core/contents/sections/text/forms.py,sha256=BHPxF-LbODbVoVTq6b-Mx1zM-thRhqu3kSY1tOrTDvw,1818
282
291
  imio/smartweb/core/contents/sections/text/view.pt,sha256=M6bQzhDgR65TA9drSMY3TUulrvQqv0cNy4IMR8QSzdo,1576
283
292
  imio/smartweb/core/contents/sections/text/views.py,sha256=KXE43BaZmb-S6pQYKGkyiW9YVHID9XOT75PRv9jgfNs,372
284
293
  imio/smartweb/core/contents/sections/video/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -295,11 +304,11 @@ imio/smartweb/core/profiles/default/actions.xml,sha256=GC6a6dN6eibpFJ5XEc5CC_hki
295
304
  imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH8EF-fc-aPua-oIdu0GuzTyk,179
296
305
  imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
297
306
  imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
298
- imio/smartweb/core/profiles/default/metadata.xml,sha256=QySrqGt_xUJFGnLYzpICSoLl1V24JDhYaYIJ6kXz2lg,1143
307
+ imio/smartweb/core/profiles/default/metadata.xml,sha256=ozSA4I200w1k-IdoxDIchNIkwFTsKgfZycbdBQejqEA,1143
299
308
  imio/smartweb/core/profiles/default/repositorytool.xml,sha256=GXq_sozn7Ucy0810IS9T0dgl8M7FT0gUbVz7BeFcLpo,183
300
- imio/smartweb/core/profiles/default/rolemap.xml,sha256=p9R1erfSfMQ3KR4eE55Vqn4ag4WY5C5grCxqGz-ybys,2510
301
- imio/smartweb/core/profiles/default/types.xml,sha256=EhRMrq4lALCm1iqKotc5gKoNHLxvgopL9AA7pWsA1WU,1958
302
- imio/smartweb/core/profiles/default/workflows.xml,sha256=Xoi-n-KkZvP5DxErH7as8YU45UpqMtx2agPRhZiM1Qs,1010
309
+ imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
310
+ imio/smartweb/core/profiles/default/types.xml,sha256=xkQyPtEccUnAHu5mL83r96dmtnCWNn17lVRJPP2jWMg,2040
311
+ imio/smartweb/core/profiles/default/workflows.xml,sha256=VrFAw9s1UtWFSHuBA0VBE-WnRdZG9I_XIhJIEXwzdkw,1069
303
312
  imio/smartweb/core/profiles/default/registry/bundles.xml,sha256=5C6nwniE04kgQMGSn1EtnA7kfkgMPbrESSrMXhNNVww,2562
304
313
  imio/smartweb/core/profiles/default/registry/geolocation.xml,sha256=CzTg5DnZ-CjDIW-iuYmeL7EeNjHc63g_PgabttgMSsU,1251
305
314
  imio/smartweb/core/profiles/default/registry/plone.xml,sha256=WzTkJ6P8clJ_CatMvjjeLDr5MtnraQuTpTvy0jzVTOA,2384
@@ -316,24 +325,25 @@ imio/smartweb/core/profiles/default/types/imio.smartweb.Folder.xml,sha256=9OuUCp
316
325
  imio/smartweb/core/profiles/default/types/imio.smartweb.Footer.xml,sha256=3wJF6Pcv_uKb-9uwbB3qOgVHH2E5kZQU20jCieph4Uk,1730
317
326
  imio/smartweb/core/profiles/default/types/imio.smartweb.HeroBanner.xml,sha256=K17YmXTHR23suOhGZqjNjI0DPBenrdAOcLCqN6VUBD8,1604
318
327
  imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml,sha256=uKu2nd8u5GnqZKkGwBfPdl8auLtHJ1UQmJZL6owuoFA,1476
319
- imio/smartweb/core/profiles/default/types/imio.smartweb.Page.xml,sha256=NHSh57QQ_YoBGRACUtRCtTiLgGt1jfn30DUS4PFxmW0,2422
320
- imio/smartweb/core/profiles/default/types/imio.smartweb.PortalPage.xml,sha256=5pUFhDNQ5qCc3uDS5qNQuib9YLnF2VaL11S3F38esJ8,2598
321
- imio/smartweb/core/profiles/default/types/imio.smartweb.Procedure.xml,sha256=fz5TSq4xhYylJYWMZAq2CZtLC6glVOipCEr-E4dYRps,2419
328
+ imio/smartweb/core/profiles/default/types/imio.smartweb.Page.xml,sha256=CqVEGJG6m7B5GMxyUHW3SIxfz8Wc5qU-CYGhmqiAO0w,2483
329
+ imio/smartweb/core/profiles/default/types/imio.smartweb.PortalPage.xml,sha256=bvKFkiRvdrErsG52LUcMgQLwjWHl7GmqJotaZzXSkFE,2659
330
+ imio/smartweb/core/profiles/default/types/imio.smartweb.Procedure.xml,sha256=8s2lVJVRGFA5ab_otsYf4KlfIhY5FbIuEMy7ol5S0Cc,2480
322
331
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionCollection.xml,sha256=Okd45BhcK1hEWCtgfwD_YM29BgAeyf123iq1jylMkqk,1457
323
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionContact.xml,sha256=KGQ1g-3aXuYHsy9PuEvWqWqTLeJiSdWfIYE5Thw_wMw,1177
324
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml,sha256=fQh_Ised3VJWv9cQuQuQEoR6Pjz5xOXg0e-44tfIM2w,1478
325
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml,sha256=tin_gL-ln_kXWWv4BFqPk4U0jRAiSUZerSiIqx-uy4I,1533
326
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionGallery.xml,sha256=yfwgsE2XTMdrZpJBU3DMkhxF1ba-2fyZbp4Xtf61k_A,1392
327
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml,sha256=gDP-Y8k8g-zsjg_YuKm_nsIPoPMrTahK8jSXuONiYFQ,1229
328
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionLinks.xml,sha256=eXSJg6ERfxHDH6ZsNu0VIl9XMo1-GY6uIcaUpuUfxLI,1589
329
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionMap.xml,sha256=GQuHAKSnsRMuIlTswAK8hGNurxC1akQlLckcQ6II93s,1185
330
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml,sha256=PlRJendMWbKcaQmLRfSzOVkFDHHGWimTPihiy0Bkhb8,1472
331
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionPostit.xml,sha256=cShhyhwYMM7zlUAwrN_2c9fYf3g0S6mQ84mxmOgc3tw,1172
332
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml,sha256=AxbethBolAp0V-RZAdEWh3ndTFTIqkgngz77n_OgiF4,1500
333
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml,sha256=uKc7oMNOVGZUenl8Cs1-88GoJoI9RHOm5VhFne6okb0,1185
334
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml,sha256=7vN6j6mF3AqEZaKyhpspeKtVMyBnk9CxFuEWJlsTd2U,1170
335
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionText.xml,sha256=xbbgRjkv-GbByf9zvZPoM8gsZghJHVL3IoPaETdhlAY,1284
336
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml,sha256=PXVuSbJSKsrzMXD7oS0Sb__h8eFjXhq8D2utrQahP5U,1210
332
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionContact.xml,sha256=e_iHdxm4vFYb0hhlfnjn8vJ_CBZ-L-nspW6W4pvy5qo,1134
333
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml,sha256=GvMIrrHNZ2o1tuN8cv6XUsVO0ogWy3c0bMfdRCDdJHE,1435
334
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionExternalContent.xml,sha256=ZPNjNufq8ncqMOZW5I0hLJiD7GG_ohN-ecOwT4NVJyg,1245
335
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml,sha256=XTprZ_LTzgFabYRu-w99u30HHs3tgIgUsCSOSL1S3UA,1490
336
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionGallery.xml,sha256=8CPXF2CBF-9cz13jowiU0eUqLxzph6ic4Ly6GzVD0NQ,1349
337
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml,sha256=TIRqfDunNo2WIbPbQXSZQuM8LJbLvgJeXc_Dhe937cs,1232
338
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionLinks.xml,sha256=hes3-arX0fFaggMkVytTikWreE5EalthqOmMmHGHf-E,1546
339
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionMap.xml,sha256=J9PJ9E0dA0hb0HR8yq7QBR90cd5z1mdX9XwG2JP4hog,1142
340
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml,sha256=534AUkQPmGFPc0t5lHzwMemFZJzaMnWI4vaTR29iCgo,1429
341
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionPostit.xml,sha256=IOGPNTzu3zmEx4khYpluI7cVmBDpmu4uy7piSDRucF0,1129
342
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml,sha256=X6TLB6aEjdAgL409bgK81M02ljjmHgivBIf4DgLYWUY,1457
343
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml,sha256=p0EQnnc9B28iMocTrKBdr_zzmDECQWcjDrJKH_hFYs4,1142
344
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml,sha256=Fd_TzGY_OS5OTH_hubkg-bQUmNIO1zGgaKs2jLyhrJY,1127
345
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionText.xml,sha256=1rU_Z0h-ghzt_wcCvLlt2A5HsuZ5Ey_OvHaFRJwHB3E,1241
346
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml,sha256=SizWFzAer6gHpUKaNfGcKZe246eVLnFcra50fff2qAc,1167
337
347
  imio/smartweb/core/profiles/icons/basic/registry.xml,sha256=F4Icvasl5DkEvuCS7mczToqy7KdWBaWYF0HMzmvYgsE,17858
338
348
  imio/smartweb/core/profiles/last_compilation/registry.xml,sha256=XLMMpMtgKFTE4GGkGpMm0vOJrJ1yLLbtelO7He2nb40,852
339
349
  imio/smartweb/core/profiles/testing/metadata.xml,sha256=ZOXnwD8iPGY1Z1uqcPerr0Nx8-yxzLT4l4HuCLMlWr0,227
@@ -349,10 +359,10 @@ imio/smartweb/core/tests/test_behaviors.py,sha256=-CGdTPsWC6p7_SEwmQF_6IugNb5g_-
349
359
  imio/smartweb/core/tests/test_categories.py,sha256=0qlzehS0VS-bNuAIAKued4m1o1G5VD6z21XPDqwdOk0,2012
350
360
  imio/smartweb/core/tests/test_chatbot.py,sha256=F_53Vk9CwN9o4brZPifY4EQ-umcjdoGQwIBz25hcbxY,1161
351
361
  imio/smartweb/core/tests/test_cirkwiview.py,sha256=i0ObNWPW4kdF81Tq3fizdBo_7aJT9WGL2SsARWhtn7Q,4921
352
- imio/smartweb/core/tests/test_cropping.py,sha256=HzyV4MjcOxlAyUCd7R59L7QPbklIQp9pPwBloCl4DnI,5208
362
+ imio/smartweb/core/tests/test_cropping.py,sha256=b415s8sU-LNaRaQS-mBQRtItV_jEelwNmxJeCDL1X6w,4158
353
363
  imio/smartweb/core/tests/test_default_pages.py,sha256=logfeFBEGoadZ37OtcKc2YAz3ok5DgvhQQQ3BsYQlFc,12109
354
364
  imio/smartweb/core/tests/test_faceted.py,sha256=EAFC8L3OtDXhWthK5CcpDe7des-1KrgXmTbf75U6NNM,5373
355
- imio/smartweb/core/tests/test_folder.py,sha256=3jq4nax-ECr2UzWKtQLnwNt_2LDT_jHgJrrZTOz9OdQ,12767
365
+ imio/smartweb/core/tests/test_folder.py,sha256=H8-zQwzyF1VYn0qT1uLracNMK8eMDNhHl5tP_CXAMPU,13379
356
366
  imio/smartweb/core/tests/test_footer.py,sha256=INd_Zd2pTMGCd15r6spiMDmpNapAtWYyj40qkJ7ad5M,10970
357
367
  imio/smartweb/core/tests/test_herobanner.py,sha256=oCbnS288FcJqbhWDmqdWcAXi4S7qdnf2MvBtxrLVd_I,5940
358
368
  imio/smartweb/core/tests/test_icons.py,sha256=j5WZm55SWk5N5LHpztHgHbZcOVmds5tk2_TgUu96o1A,2788
@@ -363,16 +373,17 @@ imio/smartweb/core/tests/test_logo.py,sha256=KRc_yB7Cez0kolVWGdr2kgBoNwPZt0lCyOw
363
373
  imio/smartweb/core/tests/test_minisite.py,sha256=Qa417DPrinqRG6fkbakq_H57pGSB_2IypLBMTMqSs2Y,16640
364
374
  imio/smartweb/core/tests/test_navigation.py,sha256=dOnQTVtbEmCJ8lkRkGjAG5if3IfVBPpOd4WRJv2h3uI,6799
365
375
  imio/smartweb/core/tests/test_page.py,sha256=1dD9M_6nwS6M2OuyWmT5cPq5qnxnog3tcqFSbpIStF8,10699
376
+ imio/smartweb/core/tests/test_plausibleview.py,sha256=6fzPOV3vHhoI2XqZ3XtExERVLvHUOTo2T6YOjrurB78,3031
366
377
  imio/smartweb/core/tests/test_portal_page.py,sha256=hIqg4eb91o8BsSj7eSKdvoxehzOXt8bzpg1o5ej__zg,7215
367
378
  imio/smartweb/core/tests/test_procedure.py,sha256=0w8phOwYfpp9vb3KDsnwjX8AhQXWdodA06W4koderQo,6474
368
- imio/smartweb/core/tests/test_rest.py,sha256=Lci8TOx43VJ418kNvGtm9tMeTiL5R_fj1mXoOYkWOlM,12076
379
+ imio/smartweb/core/tests/test_rest.py,sha256=t43LJfl0W1suebEDtZ2LlBvOL-So32SPdRtoV3U0ahY,13858
369
380
  imio/smartweb/core/tests/test_robot.py,sha256=NQ7AkN4tEva3bgGjMxmyqY0zIo4pJPnPOwnD9hmrTVI,926
370
381
  imio/smartweb/core/tests/test_search.py,sha256=VryeRI4_5CvnStKOoNoG95M2WTy7Lyy_AhHIDG40M14,2182
371
382
  imio/smartweb/core/tests/test_section_contact.py,sha256=3FoRZopLBlxpZLytc9pUwnNKiyNrOJ9UG92Jt-WbVls,22044
372
383
  imio/smartweb/core/tests/test_section_events.py,sha256=H7vw84NAUgBr3Cnbb0ZMLdi1xvg8_mU2Y2E2JQEAV5c,5609
373
- imio/smartweb/core/tests/test_section_news.py,sha256=XGoANH5gqanARa5dKeMojHgW6UAwSGW22vC1HUuFz9I,5790
384
+ imio/smartweb/core/tests/test_section_news.py,sha256=FhuerS1a4sppGwswUXaQ6hw_BOMjb79_pzrF5B5FciY,5760
374
385
  imio/smartweb/core/tests/test_section_sendinblue.py,sha256=mrRUd3K35vwnhRe4gneYWDY27jvNp9s9wQrlPu4O7m4,2655
375
- imio/smartweb/core/tests/test_sections.py,sha256=XWgDfxkqxGCNhkhirAFLAwRNLFd8r4VSrqXsP3lvL5k,22096
386
+ imio/smartweb/core/tests/test_sections.py,sha256=QPC05hW0vw2IafHSdyP2LzJ_2bg5yhmL3Rn-3EYyrU8,23669
376
387
  imio/smartweb/core/tests/test_setup.py,sha256=JcbMnXTNCuB_8grFh5E1kZ0uALdATlKMbahAdGfToZI,2092
377
388
  imio/smartweb/core/tests/test_social.py,sha256=THsk3PrUrjV4nPK-DDRRBnItMBr3TVuXExSucd0n79k,3030
378
389
  imio/smartweb/core/tests/test_subsite.py,sha256=wiD8Ke4_-ArstSYNLCs8ArqOuDx2xxUR6Wac3GXfnbE,9016
@@ -401,10 +412,10 @@ imio/smartweb/core/tests/resources/json_news_newsfolder_raw_mock.json,sha256=Jpr
401
412
  imio/smartweb/core/tests/resources/json_no_contact_raw_mock.json,sha256=tfcIZuQi1Lz8HV8EV93Qp1pUr9KbKATxu4MHnpiZSrc,127
402
413
  imio/smartweb/core/tests/resources/json_no_newsfolder_raw_mock.json,sha256=qC4sfb5JCGTtZpM6a0t0_k1IADu_oyOazK7fow1gMCU,168
403
414
  imio/smartweb/core/tests/resources/json_procedures_raw_mock.json,sha256=eMrKdEMFtSzpRmAF-PT-YMEXAoi3H0GozMli6znQGuU,3217
404
- imio/smartweb/core/tests/resources/json_rest_directory.json,sha256=O83SZOAdLHfAyvhaVFRXAjc9_uLj0BvDhqBc7JCmZDA,4363
405
- imio/smartweb/core/tests/resources/json_rest_events.json,sha256=qGCdTkklpqNRg5eXvG6A5gjTBihNkjCNdeveTbAB6S4,4899
415
+ imio/smartweb/core/tests/resources/json_rest_directory.json,sha256=kYVJiLH-Y-3SHpWujivEmYGrw0xIJjCdRF83gZ2RFMA,79122
416
+ imio/smartweb/core/tests/resources/json_rest_events.json,sha256=awgKPKvlbX4YzNoSyNhvhNgWCfwJtACohg2o0yKxsmw,85850
406
417
  imio/smartweb/core/tests/resources/json_rest_events_with_breadcrumbs.json,sha256=PaHVrvIu9YB5WCLHhScrIforWDMxgLd6gIpy3lyVVyI,5002
407
- imio/smartweb/core/tests/resources/json_rest_news.json,sha256=yRWkr_26fqDPn3f8SbNV8vEgdyRSEkWa5n_rR4NB890,4072
418
+ imio/smartweb/core/tests/resources/json_rest_news.json,sha256=UJcfTc3PFPF0gUyKG2y2STmHWcJWCCc-wAPG-ABvXrE,85843
408
419
  imio/smartweb/core/tests/resources/json_rest_specific_events.json,sha256=rXvWFc9xuhYyZNR95cSYBs0TDTIfYxoBvfs1hTsAEBU,1107
409
420
  imio/smartweb/core/tests/resources/json_rest_specific_news.json,sha256=o0tjB3tU5TaicLafYP8EpE5FJDBVgniEwnpG9ixMix0,2064
410
421
  imio/smartweb/core/tests/resources/json_search_one_news_entity.json,sha256=A3jCiokMLEZMnE4ipI39mnWMaFBZsHGpiVYcVS70OXA,369
@@ -416,7 +427,7 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
416
427
  imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
417
428
  imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
418
429
  imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
419
- imio/smartweb/core/upgrades/configure.zcml,sha256=KS8EHynOGDmCc5FB6Z99JHKVdrpa6bG6A1aqQYhMIE0,17069
430
+ imio/smartweb/core/upgrades/configure.zcml,sha256=RESrIvRWqRsVafw0hEDiLKjHquNFM-IeIRMxCLYW8HU,20136
420
431
  imio/smartweb/core/upgrades/upgrades.py,sha256=04p9X7ECzJDIRePFGleZNDO0_A3Kru2qoaAJ_3vd7iU,5245
421
432
  imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
422
433
  imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
@@ -476,6 +487,28 @@ imio/smartweb/core/upgrades/profiles/1035_to_1036/types/imio.smartweb.CirkwiView
476
487
  imio/smartweb/core/upgrades/profiles/1035_to_1036/types/imio.smartweb.Folder.xml,sha256=52BTy8qpHBCMblHhl8FKp8LvehBjgaYTLWLfBF9fHy0,305
477
488
  imio/smartweb/core/upgrades/profiles/1036_to_1037/actions.xml,sha256=b7diSiUGJi9FNbBrsaAOVYTAMLCD6y3uzvMYhqCeWE4,440
478
489
  imio/smartweb/core/upgrades/profiles/1036_to_1037/rolemap.xml,sha256=3DeWS0Ou5EZz3SanlYaYMOFd0BY0r7A56c6FYIMt8cY,275
490
+ imio/smartweb/core/upgrades/profiles/1037_to_1038/registry/plausible.xml,sha256=NDTqM4kD3pGu8IlCX_7sWLtQQ75tnHzS06kgSS7C0nQ,249
491
+ imio/smartweb/core/upgrades/profiles/1038_to_1039/rolemap.xml,sha256=qGT9sko-98a5WqB5zpeQkaQLwKfUKHkteHyzZwWz78A,293
492
+ imio/smartweb/core/upgrades/profiles/1038_to_1039/types.xml,sha256=F9Fxq2EREv9OHlCWVNC1LUtcyUGChjPHtFBdha22YpM,189
493
+ imio/smartweb/core/upgrades/profiles/1038_to_1039/workflows.xml,sha256=ciVa3Esz0vf7G5qfnNG1GR4OjmWYLk1OgagvDedSP8c,182
494
+ imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.Page.xml,sha256=RXQRNcVRZ-tfMQhZYnaccvqE1Iq-Tty8qUKz9KS9ZhY,315
495
+ imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.PortalPage.xml,sha256=s0T4mg6MwIUCZKpHkAhR1dbYMF6ISPruYaQtRu54NLs,321
496
+ imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.Procedure.xml,sha256=b9FPrcOCwfj9FVctqo5Nk8Em_eTCrokbm7ld6_cILxo,320
497
+ imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.SectionExternalContent.xml,sha256=3T09lLeIxn9M4mik9LHbOFWROuTqeTdqAdji0A67AY4,1286
498
+ imio/smartweb/core/upgrades/profiles/1039_to_1040/types/imio.smartweb.SectionSlide.xml,sha256=5X1REw985E7YurTxvoVn1ivWBxbbMRJd0qoXsZiK-UY,397
499
+ imio/smartweb/core/upgrades/profiles/1040_to_1041/types/imio.smartweb.SectionText.xml,sha256=F7f3nFDTFBd_s5oShCGgW_xT_gcrPM9zQ306YXj7j1c,514
500
+ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionContact.xml,sha256=zSpdjtYecZ26zC2MQdRK6cbHSIZDveUyAO0kdsVKilk,399
501
+ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionEvents.xml,sha256=QvaDG-BHGnjjdN2rrY4MgJ6jg7Gmi3PsEY0Gbu848CE,398
502
+ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionExternalContent.xml,sha256=f0AwbMbYUHV60BadVSvLpAMAieItq9cowjf5lgReuUc,451
503
+ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionFiles.xml,sha256=uARdFKHy7e8z0tNVbNQCLZy-U7Ni5dqLoi42q4Di1Nk,397
504
+ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionGallery.xml,sha256=k7kv-cQaQ3yw3g8DNFSzvlN7atwhfuoJaMjiuRzULG4,443
505
+ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionLinks.xml,sha256=sa1dpJjHL-W2X4nNrmBTE3R7k_Cc4uzC9xPy99ehY1Y,397
506
+ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionMap.xml,sha256=lA6908dx00_91J2LtwRDVYdHJbER2RJT-_0a2bATUrI,431
507
+ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionNews.xml,sha256=sHhLZehSrWkntpe2Odu75dyNUn8BdXKxOT2rovZeGFU,396
508
+ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionPostit.xml,sha256=JtII85oNGe9v0xmKic97VrSEmOj1S5LCNO5_IYmwicM,398
509
+ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSelections.xml,sha256=GQK56Y6VOnllg3Bu5uEaA0CbqbTw7zdQx5QHPUbJkrQ,402
510
+ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSendinblue.xml,sha256=Q5u3BHHwVUdZgjMibus2QeUEHSzSatCRlt1ChcC_PB4,402
511
+ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionVideo.xml,sha256=DKAu1exRRMoJeuQqRh9NcGJ0yLkNbky-uzqS9Ve9x9k,441
479
512
  imio/smartweb/core/viewlets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
480
513
  imio/smartweb/core/viewlets/actions.py,sha256=QWj_pLNxH4223XPk4b4Dc79DiajF0HHfaXlUmXTwJ8k,661
481
514
  imio/smartweb/core/viewlets/banner.pt,sha256=fFhT7paFQ8bO-BioOnh2Rwtl_dW4GfMs-HGpJgWs1C8,1277
@@ -526,7 +559,6 @@ imio/smartweb/core/webcomponents/pnpm-lock.yaml,sha256=JG4ddKx_Cm56scBd2-mqDpbV3
526
559
  imio/smartweb/core/webcomponents/postcss.config.js,sha256=C6AOPegqTEkRboXRWl6obj0priHtdSRiApehW4TWp8E,101
527
560
  imio/smartweb/core/webcomponents/webpack.config.js,sha256=P5DJ1ovArHpW43lOVWrf0f5MtBgNojKg5n5oWoGPvHE,6853
528
561
  imio/smartweb/core/webcomponents/webpackPlonePlugin.js,sha256=TWpGoEYRBOKB7o0SJ1F7P0hLYflkNmbODG7ZCyrPjQw,2226
529
- imio/smartweb/core/webcomponents/build/assets/img-placeholder-bla.a2b8b384c46ce56c99f042dc4625d309.png,sha256=aC1DNJvkOZB5Bg2TWrzBSyg-RgzF9PRaRRx2mI6kChg,9538
530
562
  imio/smartweb/core/webcomponents/build/assets/layers-2x.8f2c4d11474275fbc1614b9098334eae.png,sha256=Bm2sqFDY_77wB68AsG6sABVyje4nnFHzy2xxbffELt8,1259
531
563
  imio/smartweb/core/webcomponents/build/assets/layers.416d91365b44e4b4f4777663e6f009f3.png,sha256=Hbvp0CjikvNvy6j4s6KNXokydU_CIVuaxp5M3s9RB8Y,696
532
564
  imio/smartweb/core/webcomponents/build/assets/location-bla.1423bcce16ddcb21141430cac1428dc1.svg,sha256=mtr6d8H-n35MSio-pKxEMZoybUpQL6-1MVu4i5dX52g,348
@@ -537,28 +569,28 @@ imio/smartweb/core/webcomponents/build/assets/oeil-big.f32cd1df1274a9593de0c4bd8
537
569
  imio/smartweb/core/webcomponents/build/assets/pin-react-active.07d154037a15be5525b823fdc626cf29.svg,sha256=XgE72Zg25rWhDFtpgRTh6pSWc0utqIobzbez4RYC3kA,330
538
570
  imio/smartweb/core/webcomponents/build/assets/pin-react.fda934b5daf26dd4da2a71a7e7e44431.svg,sha256=kXxN_F5nCL1SUuSvO7dsVz2BCk6lyembEe0ZcDUjEUQ,336
539
571
  imio/smartweb/core/webcomponents/build/assets/search.57bdbf5b191499cd77514097d1c4972c.svg,sha256=VYkbBVirrqBaye-75ns8tcpEqjqpOiXd2CbIqo-M384,426
540
- imio/smartweb/core/webcomponents/build/css/195.smartweb-webcomponents-compiled.css,sha256=fdlxbGHPbhxLiweAae5nBsGFAuBxvM6tUKUndYMgQU8,19109
572
+ imio/smartweb/core/webcomponents/build/css/195.smartweb-webcomponents-compiled.css,sha256=MduKPKySiaQHOiTXm8lX5WIzrsrN3Gpa4EpGEgRq5yg,19173
541
573
  imio/smartweb/core/webcomponents/build/css/323.smartweb-webcomponents-compiled.css,sha256=84HUcbZruZ-XAd8_suwu0O3Dfxaz15fNBhcVapB6gtk,2392
542
574
  imio/smartweb/core/webcomponents/build/css/510.smartweb-webcomponents-compiled.css,sha256=WTfSJxZ0fLXZokPnhROn0fYDkG_Fi5RBrahBCP06s4w,3786
543
- imio/smartweb/core/webcomponents/build/css/552.smartweb-webcomponents-compiled.css,sha256=10nS26vdjvFn4LP6iINXiGgwFJrSlMPPgfaVSxhjSkk,17010
575
+ imio/smartweb/core/webcomponents/build/css/552.smartweb-webcomponents-compiled.css,sha256=k9jqPBJCDpLypiKJYc3yxBGqfUUA44A3PlrHwUe_ZRk,17074
544
576
  imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=dFSAstx8B0xpc8AJH_gyqD6Z_W_kZIugd5qvkSNBsek,4553
545
577
  imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js,sha256=0O_DNz729MDffAcwrH63ZvFYeDv_acOR0GXjnI-oH3g,17480
546
578
  imio/smartweb/core/webcomponents/build/js/144.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=R14i0Dp6JC2AOtJVaegrZVAe22i9niDnCBKa5vn7QVc,59
547
- imio/smartweb/core/webcomponents/build/js/195.smartweb-webcomponents-compiled.js,sha256=vK34W2dYDFd5Fy2DG4sL4iSJfSI_nrKn0zlKms9xDGM,36683
548
- imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js,sha256=Ht_aCwNUrWt5IG1c8r7eoE6bzVayuFl2IXI8w4_Mc-0,26666
579
+ imio/smartweb/core/webcomponents/build/js/195.smartweb-webcomponents-compiled.js,sha256=Dpj7gyHFKh0e8zARQ2agmp4wgnQox9sJK4xq4UmLyFk,36687
580
+ imio/smartweb/core/webcomponents/build/js/212.smartweb-webcomponents-compiled.js,sha256=i5OektYE1cXQhNB1ZBi7KzewupYuWEyZM3G7oOPA1dM,168351
581
+ imio/smartweb/core/webcomponents/build/js/212.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=euEy6zLvyR2bywaOKBw2hW-9rDEbt5IPelh6VIDyL4Y,361
582
+ imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js,sha256=fAEjrsLwMySn499qRVbZ8Z9AfXL2JzU55eK_vsp4YfU,26666
549
583
  imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
550
- imio/smartweb/core/webcomponents/build/js/462.smartweb-webcomponents-compiled.js,sha256=BIvglYYCh_qRBXnM3jBFkZHM5CAtRh3RB14tMSkSsQc,130996
551
- imio/smartweb/core/webcomponents/build/js/510.smartweb-webcomponents-compiled.js,sha256=DXM-m6R9HrKKuN6FLDTMUZdvOhpk4LmKW5fFiThmlGs,30799
552
- imio/smartweb/core/webcomponents/build/js/552.smartweb-webcomponents-compiled.js,sha256=ICEyeF8JKWp39eExft8eSPBiDRVTSj5iTcyyF_JnFc0,29291
553
- imio/smartweb/core/webcomponents/build/js/650.smartweb-webcomponents-compiled.js,sha256=l00wIBqZemD6nKFmG9Dh5bsqXunueCJs-i4UNnbYjdA,168355
554
- imio/smartweb/core/webcomponents/build/js/650.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=euEy6zLvyR2bywaOKBw2hW-9rDEbt5IPelh6VIDyL4Y,361
555
- imio/smartweb/core/webcomponents/build/js/842.smartweb-webcomponents-compiled.js,sha256=O6SORC40GanCanM3FVEl9xBCu091OvPhuO5Y7n8s2hQ,12270
556
- imio/smartweb/core/webcomponents/build/js/842.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
557
- imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js,sha256=VYuw7HskqZ-Td0D0L6TOhKcV816NtjQbZsIexg-Hucc,158591
558
- imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=LOpY45d1O7wrFTXw-ztJD-v6RA5ygur-ZbxhP8iIJc0,153
584
+ imio/smartweb/core/webcomponents/build/js/510.smartweb-webcomponents-compiled.js,sha256=asYE-MyiXsE-erxo4tTfuN7d5S8eH3OmeMDO0CHfr20,30793
585
+ imio/smartweb/core/webcomponents/build/js/552.smartweb-webcomponents-compiled.js,sha256=9KhC3mD_IUAEngeKaf40pSFaj4586LC2X-nFP_YfDL8,29310
586
+ imio/smartweb/core/webcomponents/build/js/565.smartweb-webcomponents-compiled.js,sha256=IdZs09H-YodzADZzB_7k7fjZg0mtADBy-bpGZ6enGcM,131048
587
+ imio/smartweb/core/webcomponents/build/js/729.smartweb-webcomponents-compiled.js,sha256=wlAniB5SSu5xSeimSKDu8vc_8ewYc5kFaLwd8AGIDOk,12243
588
+ imio/smartweb/core/webcomponents/build/js/729.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=zfljztfSWg-YkBpUdke01uLb4Bl_14yHoFmoew5UL-I,149
589
+ imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js,sha256=51GDqoBV0fL0ty2auKpPbs_Xo8yGklTW5rn4k1GtC_Y,159426
590
+ imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
559
591
  imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js,sha256=A13s6QuSdW7tWLx_7erAuEYQNeXrvqoQXmua83XpT1c,363925
560
592
  imio/smartweb/core/webcomponents/build/js/969.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=ot4CrmvW4r8ZeygP2wflnoqyUUmqSvjGt7WzqhtjPxY,15195
561
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=vv-o-VrtxMxhhWhdKZWlGi7EMOg7RyMu5skAnLM8GhU,315598
593
+ imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=wo36suW6X5-4T0drreh5cuXxxK1vKNHzIrDstMxaSnk,315622
562
594
  imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=MWaSlPSODUyzTS-6uhTd6MYi8HGJgjOtFyvm2-GJi4U,1035
563
595
  imio/smartweb/core/webcomponents/src/index.jsx,sha256=WV70VNETdsIMADJ5EqajwxQ6WacMbhw5Z_91fVDti_Y,757
564
596
  imio/smartweb/core/webcomponents/src/index.scss,sha256=I3dC11vQsTWkWm23Od-URT7Ty2avrWO5OATx2_ws0x4,4681
@@ -579,7 +611,7 @@ imio/smartweb/core/webcomponents/src/assets/skeleton.svg,sha256=Dmiuh5l9BjAqJkMN
579
611
  imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=24wHmefQqAJnXf9yWRkR4sx94QUrwffG0e2TOSPnuBQ,8751
580
612
  imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=romAOqMa20msxOd9gLbCcAD6rLMNVekRIch_K9Cz9AA,4968
581
613
  imio/smartweb/core/webcomponents/src/components/Annuaire/index.js,sha256=OhysAmFEBw6Jg0F2iko4IGL8VcX0kZ8IZZ30tMWUY1c,97
582
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=PbdDqERxLI3uKpnv_GwTK3l3JS_2ZkKOn9cg1aMJKuQ,3958
614
+ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=lXr8XhzywFBWtfO9AM-6M4LupCMoEVr_mSseb8JWRGk,3930
583
615
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=zFpfwYISGjIWmR_qDrka1U2HUtEk2l2oc5telyfPDY0,16290
584
616
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=nxEKcV-VQCiuaDiP8ee13_xnjNWVk9jsLx9-SIYxTLI,1678
585
617
  imio/smartweb/core/webcomponents/src/components/Annuaire/ContactMap/ContactMap.jsx,sha256=3mJekYhf5nfjjqUzgd0IWjtwA7jjB6ygGuo6sWgGEhg,5770
@@ -587,10 +619,10 @@ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactMap/ContactMap.s
587
619
  imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=Q0Vq2EHYdGdGiYVhgYJAX23He8TSedQtXvRWY-kd9r8,7637
588
620
  imio/smartweb/core/webcomponents/src/components/Annuaire/Skeleton/LoaderCss.jsx,sha256=VV4nwk5_FIdJifyd2nyFnbAfdT5KUaPhaqYfyAEzrfY,217
589
621
  imio/smartweb/core/webcomponents/src/components/Annuaire/Skeleton/Skeleton.jsx,sha256=b-LdsE03LyUwSDOgQmGAy6lcbCZUUJgjRQUMftCkf14,656
590
- imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=SWkfSWpbbla3NbL3KJJlxeQnq-4KEN0zNEhZ6MYX5Xo,8772
622
+ imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=cZ2f-Cgg0WCjFnTxuqr6swLeLS2tvky2dXBU-ImYRwM,8771
591
623
  imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=kNFxvgKu5NZitKSlRYvlNbvc-u2r9eiGIXkrzKVtJe0,7166
592
624
  imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
593
- imio/smartweb/core/webcomponents/src/components/Events/ContactCard/ContactCard.jsx,sha256=HIFW2Gnlmki_V1UTOgadmfkSxojC_AZqJWQXpX1dv5M,2043
625
+ imio/smartweb/core/webcomponents/src/components/Events/ContactCard/ContactCard.jsx,sha256=UypFgu_1bzCuWCa71gusu1R4VcxuRLXBuJtD-9Zlqxc,1987
594
626
  imio/smartweb/core/webcomponents/src/components/Events/ContactContent/ContactContent.jsx,sha256=2OaVOMxsEE9eqFRboaMDwH84PCA9Ba7dE037Lq88QDQ,16545
595
627
  imio/smartweb/core/webcomponents/src/components/Events/ContactList/ContactList.jsx,sha256=o_hwzDaob2xtN3F8_wdyH2_Kj7KfndWyyFpV2OqIBx0,1675
596
628
  imio/smartweb/core/webcomponents/src/components/Events/ContactMap/ContactMap.jsx,sha256=aZzTi6VSrtGKtpD9HjePXkmwosH7J37Z3OEhiqk8Dc4,5725
@@ -600,8 +632,8 @@ imio/smartweb/core/webcomponents/src/components/Events/Skeleton/Skeleton.jsx,sha
600
632
  imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=iSvoU4SdIqAfrg5o2zhTFFE7nYrOWv_FZbvNZaF4q2g,6840
601
633
  imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=ceOATMGRkY7DKSRrxmVjXDfy7Ho5S4ag5Ue9EVTcGJI,3293
602
634
  imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
603
- imio/smartweb/core/webcomponents/src/components/News/ContactCard/ContactCard.jsx,sha256=KkqnaYQXHFh4Ombey02zByoMUHblMH3aYqXappdo6PQ,3042
604
- imio/smartweb/core/webcomponents/src/components/News/ContactContent/ContactContent.jsx,sha256=FDpVzGLIf6YeDyJgehQJYbL-3QnUHgRfDX1-pr4RAgI,12552
635
+ imio/smartweb/core/webcomponents/src/components/News/ContactCard/ContactCard.jsx,sha256=KYcdl9iEn0HoGCP7Hmkfe-VlXfyUSdMR5WT_lFx2ZZE,2986
636
+ imio/smartweb/core/webcomponents/src/components/News/ContactContent/ContactContent.jsx,sha256=OUGpHBjkjBgThzhsT62u7bS7hzrOpBfeTXIaTOOx69M,12542
605
637
  imio/smartweb/core/webcomponents/src/components/News/ContactList/ContactList.jsx,sha256=r5Nh1nbJHHceU-qKk549KDbS06ciC9KSZ6gvw-DPOeE,1493
606
638
  imio/smartweb/core/webcomponents/src/components/News/ContactMap/ContactMap.jsx,sha256=CUj_4_X6_OfdepdjdgsNNRq66wfYbDyL40h79YnPiSA,4216
607
639
  imio/smartweb/core/webcomponents/src/components/News/ContactMap/ContactMap.scss,sha256=boHGz4RLxZzD3IK-6TePqJcklrX_hnl2_qzVIOU13jE,42
@@ -620,10 +652,10 @@ imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=MsRpT8p9bZTp2Hk2sc
620
652
  imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js,sha256=fGxgxCI22ERSlVLCYmD0-nztnGUIz-VkUNyLtj5HSuo,223
621
653
  imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=bsTZTvRlBaCImAchnuhZLtLQYC06bM539cPLoAgBMP0,2694
622
654
  imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
623
- imio.smartweb.core-1.1.15.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
624
- imio.smartweb.core-1.1.15.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
625
- imio.smartweb.core-1.1.15.dist-info/METADATA,sha256=syFcCKIMH69a7ow7QGIhhwEwwuWVk-DDXHACWhvTSZU,38125
626
- imio.smartweb.core-1.1.15.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
627
- imio.smartweb.core-1.1.15.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
628
- imio.smartweb.core-1.1.15.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
629
- imio.smartweb.core-1.1.15.dist-info/RECORD,,
655
+ imio.smartweb.core-1.1.19.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
656
+ imio.smartweb.core-1.1.19.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
657
+ imio.smartweb.core-1.1.19.dist-info/METADATA,sha256=Vw6zxvvLs4mw2UNELkgQ7ErMuvwLOEJMo3Bmc1XHjEw,39366
658
+ imio.smartweb.core-1.1.19.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
659
+ imio.smartweb.core-1.1.19.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
660
+ imio.smartweb.core-1.1.19.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
661
+ imio.smartweb.core-1.1.19.dist-info/RECORD,,