imio.smartweb.core 1.2.65__py3-none-any.whl → 1.2.67__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 (70) hide show
  1. imio/smartweb/core/browser/controlpanel.py +41 -0
  2. imio/smartweb/core/browser/faceted/block_view.pt +4 -4
  3. imio/smartweb/core/browser/faceted/summary_view.pt +4 -4
  4. imio/smartweb/core/browser/static/smartweb-view-compiled.css +1 -1
  5. imio/smartweb/core/browser/static/src/view.less +4 -0
  6. imio/smartweb/core/contents/__init__.py +2 -0
  7. imio/smartweb/core/contents/configure.zcml +1 -0
  8. imio/smartweb/core/contents/folder/block_view.pt +8 -8
  9. imio/smartweb/core/contents/folder/summary_view.pt +4 -4
  10. imio/smartweb/core/contents/publication/__init__.py +0 -0
  11. imio/smartweb/core/contents/publication/configure.zcml +5 -0
  12. imio/smartweb/core/contents/publication/content.py +23 -0
  13. imio/smartweb/core/contents/rest/directory/view.pt +2 -1
  14. imio/smartweb/core/contents/rest/events/view.pt +2 -1
  15. imio/smartweb/core/contents/rest/news/view.pt +2 -1
  16. imio/smartweb/core/contents/rest/view.py +4 -0
  17. imio/smartweb/core/contents/sections/common_templates/table.pt +13 -3
  18. imio/smartweb/core/contents/sections/external_content/view.pt +1 -1
  19. imio/smartweb/core/contents/sections/files/content.py +7 -1
  20. imio/smartweb/core/contents/sections/files/view.py +38 -11
  21. imio/smartweb/core/contents/sections/views.py +19 -6
  22. imio/smartweb/core/profiles/default/metadata.xml +1 -1
  23. imio/smartweb/core/profiles/default/types/imio.smartweb.Publication.xml +38 -0
  24. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml +1 -0
  25. imio/smartweb/core/profiles/default/types.xml +1 -0
  26. imio/smartweb/core/subscribers.py +24 -0
  27. imio/smartweb/core/subscribers.zcml +4 -0
  28. imio/smartweb/core/tests/resources/json_iadeliberations_institutions.json +60 -0
  29. imio/smartweb/core/tests/resources/json_iadeliberations_publication.json +105 -0
  30. imio/smartweb/core/tests/resources/json_iadeliberations_publications.json +270 -0
  31. imio/smartweb/core/tests/test_iadeliberations.py +136 -0
  32. imio/smartweb/core/tests/test_vocabularies.py +54 -0
  33. imio/smartweb/core/upgrades/configure.zcml +37 -1
  34. imio/smartweb/core/upgrades/profiles/1059_to_1060/registry/iadeliberation.xml +9 -0
  35. imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.Publication.xml +38 -0
  36. imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.SectionFiles.xml +11 -0
  37. imio/smartweb/core/upgrades/profiles/1060_to_1061/types.xml +4 -0
  38. imio/smartweb/core/upgrades/profiles/1060_to_1061/workflows.xml +6 -0
  39. imio/smartweb/core/utils.py +27 -0
  40. imio/smartweb/core/vocabularies.py +44 -0
  41. imio/smartweb/core/vocabularies.zcml +12 -0
  42. imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +1 -1
  43. imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +1 -1
  44. imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
  45. imio/smartweb/core/webcomponents/build/js/{324.smartweb-webcomponents-compiled.js → 828.smartweb-webcomponents-compiled.js} +2 -2
  46. imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -1
  47. imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
  48. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
  49. imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx +12 -2
  50. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +88 -60
  51. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +27 -1
  52. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx +6 -2
  53. imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx +69 -39
  54. imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx +30 -3
  55. imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx +10 -7
  56. imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +4 -2
  57. imio/smartweb/core/webcomponents/src/components/News/News.jsx +3 -0
  58. imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx +60 -48
  59. imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +30 -3
  60. imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx +28 -7
  61. imio/smartweb/core/webcomponents/src/index.scss +188 -174
  62. {imio.smartweb.core-1.2.65.dist-info → imio.smartweb.core-1.2.67.dist-info}/METADATA +27 -1
  63. {imio.smartweb.core-1.2.65.dist-info → imio.smartweb.core-1.2.67.dist-info}/RECORD +70 -57
  64. /imio/smartweb/core/webcomponents/build/js/{324.smartweb-webcomponents-compiled.js.LICENSE.txt → 828.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  65. /imio.smartweb.core-1.2.65-py3.10-nspkg.pth → /imio.smartweb.core-1.2.67-py3.10-nspkg.pth +0 -0
  66. {imio.smartweb.core-1.2.65.dist-info → imio.smartweb.core-1.2.67.dist-info}/LICENSE.GPL +0 -0
  67. {imio.smartweb.core-1.2.65.dist-info → imio.smartweb.core-1.2.67.dist-info}/LICENSE.rst +0 -0
  68. {imio.smartweb.core-1.2.65.dist-info → imio.smartweb.core-1.2.67.dist-info}/WHEEL +0 -0
  69. {imio.smartweb.core-1.2.65.dist-info → imio.smartweb.core-1.2.67.dist-info}/namespace_packages.txt +0 -0
  70. {imio.smartweb.core-1.2.65.dist-info → imio.smartweb.core-1.2.67.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- imio.smartweb.core-1.2.65-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
1
+ imio.smartweb.core-1.2.67-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=PeC4rF--rF6MfVQ0NzggQrZWIl35oPtJdEhvQwGxhhI,1459
@@ -8,13 +8,13 @@ imio/smartweb/core/interfaces.py,sha256=ioMwBC-HdOyz35HQGMZTksaJf8GLS2hbRz2wjvB_
8
8
  imio/smartweb/core/permissions.zcml,sha256=ZyBEARyO8NAq7tKFTb3G1FqEWERT1mQQ6vCVzji1ci8,1777
9
9
  imio/smartweb/core/profiles.zcml,sha256=H9crlNrI8zLxgmkpbkhkD3Ti5LRF8Zutk3AJXNBpvw0,2299
10
10
  imio/smartweb/core/setuphandlers.py,sha256=k1K8-ezP2gELwCNM5An2bBwQJjAKeS0rYtr2-q_InK8,932
11
- imio/smartweb/core/subscribers.py,sha256=9I6fAJj1FhtkYQZ2Ug_3Bl-p_rn1Nf9_BBHo_iU6QxI,3940
12
- imio/smartweb/core/subscribers.zcml,sha256=48jHmwwnW37LFCN8HFlxdCe8CgNohYRY_pvbKYa2Gww,1016
11
+ imio/smartweb/core/subscribers.py,sha256=mrZWdDyxtywCnts_SiJr7TeVnhzLsjWEe6AyM2r-Mos,5174
12
+ imio/smartweb/core/subscribers.zcml,sha256=WWeOFM6nOZ5MBfaijdE_UfWqYcAYepAkvO-vxPvBE9w,1204
13
13
  imio/smartweb/core/testing.py,sha256=t0Y3t3FXX2RjgklcRzHT37AjKbMKL3ZjjT3d2UhQm7A,3636
14
14
  imio/smartweb/core/testing.zcml,sha256=VyKjWW2QHYuUYKkGUvtsdFI_Pa7Wcp1yBBDla112eMc,172
15
- imio/smartweb/core/utils.py,sha256=wk6bx7uLqdF_rpsRMPIrY3kHOocRW-Gk8jDB028YuU8,6582
16
- imio/smartweb/core/vocabularies.py,sha256=2MrGEB7WosNSqAI28i83vhaOuPomjp9OqFN0brTkS9A,21053
17
- imio/smartweb/core/vocabularies.zcml,sha256=65p7VkGWt7DECVNPNNORyp0ZdSjUPv6rKEJ3WhDv4UE,5460
15
+ imio/smartweb/core/utils.py,sha256=wBKbrvqY2a11iAaqvQ_0Di2Nh86lwdvdkNgThUzk5T0,7437
16
+ imio/smartweb/core/vocabularies.py,sha256=zA2hmTQFSTzwvXVkx4XJCild8XI0k9cMWIwE7Ga-7AA,22809
17
+ imio/smartweb/core/vocabularies.zcml,sha256=KSH7JWlAJtKawLvfmsztZzE_AK1JR6B5udY6tleY2cQ,5904
18
18
  imio/smartweb/core/behaviors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  imio/smartweb/core/behaviors/categorization.py,sha256=a5i8pYagdTcEG43A1NLs4SGF42PCAUFn8IRUq1pFqpM,828
20
20
  imio/smartweb/core/behaviors/configure.zcml,sha256=4HimRN4xacRbUaCOiOiv0YgcWbsLMu7X4yGrdAeKaSE,1909
@@ -25,7 +25,7 @@ imio/smartweb/core/behaviors/quickaccess.py,sha256=j18T39KcbiJErpidMM8wH6i4XjEIZ
25
25
  imio/smartweb/core/behaviors/subsite.py,sha256=O2aJHl3Jj9WTpGBmNJaoia-PAtb7aSHpCRanvO1JE8k,1707
26
26
  imio/smartweb/core/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
27
  imio/smartweb/core/browser/configure.zcml,sha256=jP5H_q7e_NzbaT13UWovdi04IxmUg4Ecrdh8ZDbP_tE,3935
28
- imio/smartweb/core/browser/controlpanel.py,sha256=6HXq01oq9ndFc4fNx5Dv49TG92OiCKoK7ovQQUVNQkA,5361
28
+ imio/smartweb/core/browser/controlpanel.py,sha256=5Mbd1xYSmvvMNpNxbX2CpZdVQOTH_qfBxHdH84TGJOU,6809
29
29
  imio/smartweb/core/browser/forms.py,sha256=_6Z0x7yVeA5JaW4IwpYkX7bTIbw0UskgvtGfNDtMsrI,1091
30
30
  imio/smartweb/core/browser/icons.py,sha256=LFBCYTfynp4qNX2OQuNmMTOUEcJv-oQ8Izu6opE3o7A,2065
31
31
  imio/smartweb/core/browser/layout.py,sha256=wvo_Q2dYg1Yd8wOdYSfPg29NPESy9ndAGl6z3r5kxnY,2066
@@ -41,12 +41,12 @@ imio/smartweb/core/browser/dashboards/configure.zcml,sha256=hPgoJ_g5KTJBrr-o-3gd
41
41
  imio/smartweb/core/browser/dashboards/plausible.pt,sha256=VlR0b3jXzkG_Qdkx51hOUVI2-LCMStfOFdRhSoD14oQ,1107
42
42
  imio/smartweb/core/browser/dashboards/plausible.py,sha256=LAJo3_-wNiRuEhNbFLDGr2zW44dhMn-uSb3go5BeI1g,631
43
43
  imio/smartweb/core/browser/faceted/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
- imio/smartweb/core/browser/faceted/block_view.pt,sha256=IIYWx4vGN9ZZavN_2oDnX3ca7LQwv0_30aYjz57TPVE,1987
44
+ imio/smartweb/core/browser/faceted/block_view.pt,sha256=gyVm3a_gH2IA0nkXcSRrDY0M-3AoxwI0OvBv4HhWllE,1983
45
45
  imio/smartweb/core/browser/faceted/configure.zcml,sha256=JFOMhQLPWgsbfYWbO_-EGkG8u5GLT-s_DgGAH_cFHd8,3289
46
46
  imio/smartweb/core/browser/faceted/macros.pt,sha256=rme7BdEafmj2RvpCbN3aWU5QoJm4lgFk70mCVeSUbMM,2951
47
47
  imio/smartweb/core/browser/faceted/map.pt,sha256=rimXOnJ82hAcDL78lc5z9mZFFkfP7R9wHUnNycOSG2E,4434
48
48
  imio/smartweb/core/browser/faceted/map.py,sha256=74Rhz7cD_uuQq4YfHdInAn3cv4DKQ9sc8jDCQ3odVQg,1504
49
- imio/smartweb/core/browser/faceted/summary_view.pt,sha256=_Ho-NJDwfwpnsdng28nO8Gb9KhOPoe1QhvIWBVTzjUw,1931
49
+ imio/smartweb/core/browser/faceted/summary_view.pt,sha256=cHuFW1s88tINcCqaEKMhLGB8b6IX9L35rBWQ_YGA0aQ,1927
50
50
  imio/smartweb/core/browser/faceted/views.py,sha256=B859XtKHiEZCl9QlEXmEtPiC3vOaDaO-zJWQozo7DBo,1460
51
51
  imio/smartweb/core/browser/faceted/widgets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
52
  imio/smartweb/core/browser/faceted/widgets/configure.zcml,sha256=azfsDnDUrYBRkozk-G__GlNq87cl61kxOuMOSyBd5-k,449
@@ -78,7 +78,7 @@ imio/smartweb/core/browser/static/package.json,sha256=rJeZEnDqQvcPTakkRPOZCALk8H
78
78
  imio/smartweb/core/browser/static/smartweb-edit-compiled.css,sha256=3C1_U0jw_1cq97onQlsCWulezGUM4r__WmB1QqCdr8E,5120
79
79
  imio/smartweb/core/browser/static/smartweb-edit-compiled.js,sha256=8apUM0A48d1cDvNbj3eL82sJzzbI3gDurkV48uGOOpg,1222
80
80
  imio/smartweb/core/browser/static/smartweb-swiperconfig-compiled.js,sha256=N2b-d5pLMqI66U5ORf0E8UvjJqcnYpfe8QmHjf46Qzs,608
81
- imio/smartweb/core/browser/static/smartweb-view-compiled.css,sha256=rcpadTevQ4zYZak9WIERRGRJNm0jWG9HJy-ReycSdLs,2702
81
+ imio/smartweb/core/browser/static/smartweb-view-compiled.css,sha256=g3mxBTOYtCqY3u39ZXpGFS6vdJRiDWMtKeYOEdRcbVc,2757
82
82
  imio/smartweb/core/browser/static/smartweb-view-compiled.js,sha256=73bvXpnpueWVKAqaS5CFFHbQnD6RuixH58SaRJP_Gh0,2162
83
83
  imio/smartweb/core/browser/static/spotlight-bundle.js,sha256=MxZ4E6qmRiV1eojklqYnKc9J7q1p1YeCWYoCfXNhZmA,19615
84
84
  imio/smartweb/core/browser/static/swiper-bundle.min.css,sha256=_7BNAPE6sDlKRWoyA9Hax0ffAel0ai6vNtp51OUHFAA,17908
@@ -152,13 +152,13 @@ imio/smartweb/core/browser/static/src/edit.js,sha256=8o6qgeMJ_kDyq94HJ6xB_junqSY
152
152
  imio/smartweb/core/browser/static/src/edit.less,sha256=uiqNkhAIucG9q4Gz1PJyt2GkYsvcOgkWKhcTUj2BAJU,5408
153
153
  imio/smartweb/core/browser/static/src/swiper-config.js,sha256=PK5Uw_vbHcXiyt3R8Gvdq2geNX6LEdQB2QTWTcKSqWg,1285
154
154
  imio/smartweb/core/browser/static/src/view.js,sha256=c8J_VYwXuM_9u0c2OWs96yeTJTZOmKpgoCup5GLo5js,3268
155
- imio/smartweb/core/browser/static/src/view.less,sha256=9rqoM0Azs8Cn4G4WSsWNBYLBydRzld0WuzWfHZTu5Is,2843
155
+ imio/smartweb/core/browser/static/src/view.less,sha256=PdNzSlj6_VAP89FzhJDabG0RUXMw7sIu-Ehey-Qq-iY,2908
156
156
  imio/smartweb/core/browser/subsite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
157
  imio/smartweb/core/browser/subsite/configure.zcml,sha256=ITEH-6pVztshQElqjNv9sk-CcVUTLFeccdSO9rHLwt0,414
158
158
  imio/smartweb/core/browser/subsite/settings.py,sha256=tXEnEYZG75eM7H766ZgNCCWMwOcY9j45shD-8NR_7I0,1601
159
159
  imio/smartweb/core/browser/templates/link_input.pt,sha256=Q7Y4gW4q0DVG-U5f3ZJkrAZwJnV8NMPu_Fdht7zhb4A,2808
160
- imio/smartweb/core/contents/__init__.py,sha256=0DXz6HbcuFMCGXea3MCfrkT3CBFuVj2nHwd3_UUgPtw,3389
161
- imio/smartweb/core/contents/configure.zcml,sha256=VmTWQbCWiiKQUsqzOpP0bRk7ah3B3JZZt7pztgU2Z2g,807
160
+ imio/smartweb/core/contents/__init__.py,sha256=Jrdp1TwwR8O8sxB5nAVu-rQ_n-neSCPE9OGAyh2pxIw,3496
161
+ imio/smartweb/core/contents/configure.zcml,sha256=heQRN2fw2SM7ILzCsM-5sK1J3EfRrNctqYdpr1wncdk,844
162
162
  imio/smartweb/core/contents/cropping.py,sha256=3RYRf3kZkRxcwuNsTUnsb1OKbLD9seBu3So_8k7XBXQ,1482
163
163
  imio/smartweb/core/contents/blocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
164
  imio/smartweb/core/contents/blocks/configure.zcml,sha256=qmn7Hq9TekwvEYvS3PzUtINoA-slaoBrhAVxqvkbYC8,732
@@ -169,12 +169,12 @@ imio/smartweb/core/contents/blocks/link/content.py,sha256=MhTzuPWXU5qCYePA2cgtYq
169
169
  imio/smartweb/core/contents/blocks/link/fields.py,sha256=4A8Xs5YPYtjm3tTmmD9CX4gBMvBAnxXlwb-wpH_vROg,479
170
170
  imio/smartweb/core/contents/blocks/link/icons_input.pt,sha256=oDVGYr5oXMi5Vc_ToKxKQqPg9IaYbcqqdNsjNm99nW8,703
171
171
  imio/smartweb/core/contents/folder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
- imio/smartweb/core/contents/folder/block_view.pt,sha256=rz4jj3E6-39IM6ai1ORG7FHwary33lF14yDnnb3UGIY,1511
172
+ imio/smartweb/core/contents/folder/block_view.pt,sha256=VLmXZ3VnffgK0hoRhEkAPXmlrqCyH7-zdqBliVcl33g,1503
173
173
  imio/smartweb/core/contents/folder/configure.zcml,sha256=ZBWZWLxJBOfu-eZgasCL2gRQcOuYxlE23VqzTwnBzvQ,2961
174
174
  imio/smartweb/core/contents/folder/content.py,sha256=3KgS1PFUKnsyWiT8PD0yMgqY5u-978uUhWK0flHgaoQ,3377
175
175
  imio/smartweb/core/contents/folder/element_view.pt,sha256=dD6O9Racd_UxSXJ9XRMujFEnxfewb4Utlf-Tk_RT4_o,342
176
176
  imio/smartweb/core/contents/folder/macros.pt,sha256=aGQd4241WhasLu0CwoxDuku2mhBvz1m04WMWaENm4FQ,1743
177
- imio/smartweb/core/contents/folder/summary_view.pt,sha256=MM1Zthd6SzeBU5cuPxOAgzHJx3ZK3uwxNX-iqVMQ4U0,1172
177
+ imio/smartweb/core/contents/folder/summary_view.pt,sha256=ZymRV39P5qmT3riJJXDc4eTI3Mio1Ua_CliNrEk9kJw,1168
178
178
  imio/smartweb/core/contents/folder/views.py,sha256=A8VidsJXcxOlhCSb_3QDuWuvH-wB1UD87GaPGgIP-HI,5682
179
179
  imio/smartweb/core/contents/pages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
180
180
  imio/smartweb/core/contents/pages/configure.zcml,sha256=o-YBg5r3qJKC9JR5I8YvCzusLKT2uiLsqvvR8Iw9CQk,2252
@@ -206,29 +206,32 @@ imio/smartweb/core/contents/pages/procedure/configure.zcml,sha256=pyeShXwkU4p6Wr
206
206
  imio/smartweb/core/contents/pages/procedure/content.py,sha256=e_kv7YsRF0vblfpxqqs9uhTLObA1NmiXiVyh0JWwoEc,1297
207
207
  imio/smartweb/core/contents/pages/procedure/utils.py,sha256=EATKvK72QPQheLXCXCoADYMjA3UfgPtkOPKdqnEyX64,1291
208
208
  imio/smartweb/core/contents/pages/procedure/view.py,sha256=UeZwtdn20lCo7qbqqPcsD9LL69vNTq4m_wXB4nv8jMo,408
209
+ imio/smartweb/core/contents/publication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
+ imio/smartweb/core/contents/publication/configure.zcml,sha256=tbotMG82XoUSWSMEI0J9ixYPWcUCDsu4Eh0RlO7PdyA,125
211
+ imio/smartweb/core/contents/publication/content.py,sha256=lWpNVN6x59xD201uSxykzVcphyDz6Ik7Sh7trYfwOgE,572
209
212
  imio/smartweb/core/contents/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
213
  imio/smartweb/core/contents/rest/base.py,sha256=DAnzRRxxK0sQXIp09fVUikBpMJx5qZfInO1Kkd_RDbU,2526
211
214
  imio/smartweb/core/contents/rest/configure.zcml,sha256=vANiA3brvm8rsJIUSVNf0BdlEnejpEGXoC82-hpxKkA,433
212
215
  imio/smartweb/core/contents/rest/traversal.py,sha256=KLNGhUmvTAzaRqSIzT3B28HgMBK4vcNV75AfyIesjN8,540
213
216
  imio/smartweb/core/contents/rest/utils.py,sha256=paMFXc81Hni0a8fpfNQtRTAr1vXNtXgBs5qLOn3_k2Q,3073
214
- imio/smartweb/core/contents/rest/view.py,sha256=nOdJ3It-cEzwCLqz4QMAzMwZCWsMnWIJrSIhLcbCU4s,1014
217
+ imio/smartweb/core/contents/rest/view.py,sha256=RlQG2NGojTxQaEySg6Kl1xxDy2KkoC4ktK45Uc4H2ME,1110
215
218
  imio/smartweb/core/contents/rest/directory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
219
  imio/smartweb/core/contents/rest/directory/configure.zcml,sha256=_K34jECLk9RWscAyiRXwoJLLBIVj-EJRGFOEbUU5Ito,1035
217
220
  imio/smartweb/core/contents/rest/directory/content.py,sha256=CpOPKpeBGZp7NSqtv9IWgaUUmMGDDuUiB1rcPQaXCUE,1102
218
221
  imio/smartweb/core/contents/rest/directory/endpoint.py,sha256=i2W66-p7fmUfi5y0Ysa7Drmt_Viw64cqgBaZPSUh6TA,2958
219
- imio/smartweb/core/contents/rest/directory/view.pt,sha256=CN5111--p6j0xZ1Tm_OhkwJdCh_xoyiOdDaFAXg4cR4,815
222
+ imio/smartweb/core/contents/rest/directory/view.pt,sha256=ggBxrXvjOGbA_dHu7dfT0Y0XpVMBgFmo3bRGvOeut1U,914
220
223
  imio/smartweb/core/contents/rest/directory/view.py,sha256=rN4k7sqrd32TNMBBOc7RQeosRgYM-dl645Pi1GjVvwA,507
221
224
  imio/smartweb/core/contents/rest/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
222
225
  imio/smartweb/core/contents/rest/events/configure.zcml,sha256=ufUHdGMkGd57zgZ4_DxvoK4Zn7_AC_A3_TnLkmdYRhs,1017
223
226
  imio/smartweb/core/contents/rest/events/content.py,sha256=4T0dCsoQx6c1uxISEeqdUggI0q4YE80tQimhALwRmug,1665
224
227
  imio/smartweb/core/contents/rest/events/endpoint.py,sha256=5WSeZYZMHRCJEDqqqqsRfTB1b2tMHY8YzmKbt7-99hU,2683
225
- imio/smartweb/core/contents/rest/events/view.pt,sha256=LNQHJvS4kxq6S1RU2sTU1gM0Jx5YXOcWXGzz6iFZWAc,1083
228
+ imio/smartweb/core/contents/rest/events/view.pt,sha256=rhM2Wyb05_wIsMCFYERSOoDVSp_ofLiIrWsLb1cDelA,1182
226
229
  imio/smartweb/core/contents/rest/events/view.py,sha256=XCFmmC0t1J2HYGIX83bAWF1R1lP_z2qPq5aFmV85h8o,804
227
230
  imio/smartweb/core/contents/rest/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
231
  imio/smartweb/core/contents/rest/news/configure.zcml,sha256=f1kNWMjcHul5_dKv51KY_GQII-Cvx-uL7N9Z25zlN8c,1005
229
232
  imio/smartweb/core/contents/rest/news/content.py,sha256=gSyOuVlvv90HIWhjdABE7g4mngVF6agqZdC6pBDCgJI,946
230
233
  imio/smartweb/core/contents/rest/news/endpoint.py,sha256=SC5gwHgJAkgK3R_BNszrOmpZJqmtUqC-kmGFSMxojMg,2755
231
- imio/smartweb/core/contents/rest/news/view.pt,sha256=E7SQFuw1rqUttoC1c1aMxJTp5gCpBwWm05iKGFQYFaI,963
234
+ imio/smartweb/core/contents/rest/news/view.pt,sha256=3p1n5ncbqEDuEqSUEqYWRCOlG0EntYfeKo32VJsMLkA,1064
232
235
  imio/smartweb/core/contents/rest/news/view.py,sha256=JhPNp3LjvhS-X5HAsD84HKxnI6CaHTLajZkp1sBSsA4,632
233
236
  imio/smartweb/core/contents/rest/search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
234
237
  imio/smartweb/core/contents/rest/search/configure.zcml,sha256=BTFcBQ28NINyEfoVgYwJgf0JWvk99ewSKgOYx91lZy4,951
@@ -238,13 +241,13 @@ imio/smartweb/core/contents/sections/base.py,sha256=2e3lIG_RGGFAshBEkTNG97OReAnn
238
241
  imio/smartweb/core/contents/sections/configure.zcml,sha256=fPfYvU7YvezfjKPRT_yPcZgjmyUX9VZFb-6jUJiERqM,2767
239
242
  imio/smartweb/core/contents/sections/macros.pt,sha256=tvWBh40KuwWpOAu327NWZAwixvpWMMKdaOyIxMp0o-k,5579
240
243
  imio/smartweb/core/contents/sections/subscriber.py,sha256=WM7nEZVPOkmyT1GfkWGDWwLhuhUYaTnlBr6BJVqUJMk,642
241
- imio/smartweb/core/contents/sections/views.py,sha256=FcSSf61pa2spU2AaPwcvfLf0UhAFiOXck5vlKwfNyks,5167
244
+ imio/smartweb/core/contents/sections/views.py,sha256=ZWmVWBwFoeAnJTpruaCCVyhX3TaG2NkWS3vB0Jux1WM,5642
242
245
  imio/smartweb/core/contents/sections/collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
246
  imio/smartweb/core/contents/sections/collection/configure.zcml,sha256=Ak4UbKFjogWZad6-5_y6oSx8tWXt3nN7bEdKXG7pQCI,920
244
247
  imio/smartweb/core/contents/sections/collection/content.py,sha256=DMmU9rIaRlbRjIaot5RHXu59vJmAbun0FCmyahWhBCM,2379
245
248
  imio/smartweb/core/contents/sections/collection/views.py,sha256=G8Q7zlFmuEKKCmAGLj5cVL3axebzf5ZlSVRYx9q45U4,1470
246
249
  imio/smartweb/core/contents/sections/common_templates/carousel.pt,sha256=vcRaxpkNYQHjyIcLJEiOPEZ2yOvZKkXr_28utTbDk5U,5694
247
- imio/smartweb/core/contents/sections/common_templates/table.pt,sha256=xr7HPyKP61RF75YnFUKPi_FudwVt_BJn3BzxXglQm3c,6769
250
+ imio/smartweb/core/contents/sections/common_templates/table.pt,sha256=_s0F0PfUSvvuj6malb9EMgAel3YW83rxJGTC7Iq4gbI,7475
248
251
  imio/smartweb/core/contents/sections/contact/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
249
252
  imio/smartweb/core/contents/sections/contact/configure.zcml,sha256=WjyGXO7alNf4yDW5dZCS_xQ_AYbQVQuRVRIeoyLIBzY,1591
250
253
  imio/smartweb/core/contents/sections/contact/content.py,sha256=MdhY6QPMdCseThddjwZ0e7xzkx1-p21MBuwqEic1f90,2690
@@ -261,7 +264,7 @@ imio/smartweb/core/contents/sections/events/view.py,sha256=Ylp23caV6ba8y0jjoradX
261
264
  imio/smartweb/core/contents/sections/external_content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
262
265
  imio/smartweb/core/contents/sections/external_content/configure.zcml,sha256=6ZvD4hJiXMZM2-mz9D7ipZcphS5HKJFREG9XUzF_6ms,1651
263
266
  imio/smartweb/core/contents/sections/external_content/content.py,sha256=apHtfPwxkHkLQJVFVXs4F8O0gE09uI49AFQ8xRFrXgo,1096
264
- imio/smartweb/core/contents/sections/external_content/view.pt,sha256=q4hlPyVCXRPcNfKbiUxj-Y10jtFgB2fbv0ar7mZHwQ0,1992
267
+ imio/smartweb/core/contents/sections/external_content/view.pt,sha256=KJqmh9U1FuL1_f0dtHsDye_pfrVasMNUoa73UStnxE0,1986
265
268
  imio/smartweb/core/contents/sections/external_content/view_arcgis.pt,sha256=mWxeEI6gWAIHixV0dIt6JnEPCEEYqsJklA3V9nGXFTw,4895
266
269
  imio/smartweb/core/contents/sections/external_content/view_idelux_waste.pt,sha256=ydk9Q31PUBIeEjIvK0KoHBz0MMTRycLVJLU2mrtKZg4,1922
267
270
  imio/smartweb/core/contents/sections/external_content/view_inbw_containers_affluence.pt,sha256=5Oqjl1FTxE7NJ3rdHX0Cs1Iq4H9vE3LkTMd6W1IciqI,2742
@@ -269,8 +272,8 @@ imio/smartweb/core/contents/sections/external_content/view_odwb_widget.pt,sha256
269
272
  imio/smartweb/core/contents/sections/external_content/views.py,sha256=KPOjV4HBXHRzIeh7zG81ijtkmCsEMR8C4y_62S8Afqg,13584
270
273
  imio/smartweb/core/contents/sections/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
271
274
  imio/smartweb/core/contents/sections/files/configure.zcml,sha256=DyyHzDEKLWmOywbV08Zf7bvf0At5jyAeDfZ8PCK5Rog,501
272
- imio/smartweb/core/contents/sections/files/content.py,sha256=60wt1VguNqKBu3fyuuG2dcrHC-9FjxTf96af2IqU3fw,871
273
- imio/smartweb/core/contents/sections/files/view.py,sha256=ThEXBCD-WhTYDz6BsJqO8pJiIB1cT_twVgaAPvM4h7I,1286
275
+ imio/smartweb/core/contents/sections/files/content.py,sha256=C3jEokoNKIE-1cQlaWD-aKLfPDG6k8YasJeZxOR8swk,1088
276
+ imio/smartweb/core/contents/sections/files/view.py,sha256=NcnsutNKlCRWdGk9kM2fuDTtzP7i8E4mTpJ86Y4PGG8,2424
274
277
  imio/smartweb/core/contents/sections/gallery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
275
278
  imio/smartweb/core/contents/sections/gallery/configure.zcml,sha256=0fq5_PWU9vFrmPkExvFPBCzZrDSnlN8B0K7fHQReAvA,424
276
279
  imio/smartweb/core/contents/sections/gallery/content.py,sha256=l6HLGVNi70gcEP-zz9OXi2WYtyd-V6LCAZH44a2Td_s,780
@@ -332,10 +335,10 @@ imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH
332
335
  imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
333
336
  imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
334
337
  imio/smartweb/core/profiles/default/diff_tool.xml,sha256=66L2L7ZBGJajPDeHl16A3h6RUcj9l0C7qpwe8JSYe7o,212
335
- imio/smartweb/core/profiles/default/metadata.xml,sha256=flqBB7TvOOGFV6pCpWzJojhTnNyyICo0pHRgQ9FqLys,1218
338
+ imio/smartweb/core/profiles/default/metadata.xml,sha256=gAmNhxpCES9tsS5Fr6AuHXmEWqH1Wo8UqW7kBbWW0Rs,1218
336
339
  imio/smartweb/core/profiles/default/repositorytool.xml,sha256=aTErs-VvEEV3dm9_TdgPZfx1Pb1f5Sw7ap7IgiJOK4w,227
337
340
  imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
338
- imio/smartweb/core/profiles/default/types.xml,sha256=xkQyPtEccUnAHu5mL83r96dmtnCWNn17lVRJPP2jWMg,2040
341
+ imio/smartweb/core/profiles/default/types.xml,sha256=k4V9-IxygB_2YPHWjQ7y_Upl443ksxfC_MC9mz9o3Yc,2111
339
342
  imio/smartweb/core/profiles/default/workflows.xml,sha256=VrFAw9s1UtWFSHuBA0VBE-WnRdZG9I_XIhJIEXwzdkw,1069
340
343
  imio/smartweb/core/profiles/default/registry/bundles.xml,sha256=5C6nwniE04kgQMGSn1EtnA7kfkgMPbrESSrMXhNNVww,2562
341
344
  imio/smartweb/core/profiles/default/registry/geolocation.xml,sha256=CzTg5DnZ-CjDIW-iuYmeL7EeNjHc63g_PgabttgMSsU,1251
@@ -359,11 +362,12 @@ imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml,sha256=xMyV
359
362
  imio/smartweb/core/profiles/default/types/imio.smartweb.Page.xml,sha256=5nHWF7MTLqr4-WyrTu5RgmSKCb0ODJ0--jdIMTrIQF0,2519
360
363
  imio/smartweb/core/profiles/default/types/imio.smartweb.PortalPage.xml,sha256=-5C8Wvx4IqmH2vZ5Bmyj1Zr4YTaGvY4vWc4sO5vPkJ4,2695
361
364
  imio/smartweb/core/profiles/default/types/imio.smartweb.Procedure.xml,sha256=V5EZwu3d6X2rVMdQjuWp3c-IRSVV1XUCWo-Hu-c4wBs,2516
365
+ imio/smartweb/core/profiles/default/types/imio.smartweb.Publication.xml,sha256=qac_W2czX6n7zibt_jzopRWcuEIvQzEqm9x_HKMCthc,1259
362
366
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionCollection.xml,sha256=8hDn-vrtm3YuZ_U4ntgwAYMxCjayDr1Eh46KZBeAGLM,1506
363
367
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionContact.xml,sha256=gh4Aal-ZNoV-_t1TiNIdyYsyZaYGQ56fRk9Ata37on0,1183
364
368
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml,sha256=9VKQdMuMLbAooXdI4ZSOujT9pp0kHqj7-vaaeIDLW-s,1538
365
369
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionExternalContent.xml,sha256=C1BFq3Kn52p4xLfYgiJg9B1AOimq5lPd-3IyNUtjtZI,1284
366
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml,sha256=h7GNc8Kt4nNp-8yK9JMYohjqnU_CEQ6eWzGcoY7S4Us,1539
370
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml,sha256=emJU7umIMyqb7NLb8Y8uzvWZGeXzg_dl_zlbgBe2O00,1589
367
371
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionGallery.xml,sha256=8CPXF2CBF-9cz13jowiU0eUqLxzph6ic4Ly6GzVD0NQ,1349
368
372
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml,sha256=qIaImpJ6b70saTXNs-X5EgU8jqx6FGyR3Kguyt7Tc3A,1191
369
373
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionLinks.xml,sha256=Ee5OyXdJNjGNhdyAvm6TkxiWVzIi2WtTgUkaqvyhsOQ,1595
@@ -405,6 +409,7 @@ imio/smartweb/core/tests/test_folder.py,sha256=JjV5Hvo6IMEFHo2kowbqhLxcXy11zHRTK
405
409
  imio/smartweb/core/tests/test_footer.py,sha256=5FYaKDRrY10_rXvetVmbo6-uOZSRQuOkaO_fvuv94N4,10970
406
410
  imio/smartweb/core/tests/test_herobanner.py,sha256=oCbnS288FcJqbhWDmqdWcAXi4S7qdnf2MvBtxrLVd_I,5940
407
411
  imio/smartweb/core/tests/test_htmx_in_sections.py,sha256=wMzFdI7V1G6NpYkQY7lD0GSPmNOVSH1p34nlXvpz3kw,5370
412
+ imio/smartweb/core/tests/test_iadeliberations.py,sha256=S3ZMT__jHEbVRtBILPDi8WfJP0kmH7mFK5fnx4OO3hg,5564
408
413
  imio/smartweb/core/tests/test_icons.py,sha256=d7TPnzTFqa4_vYcsK5tl_PPDAjjmIn_EYrYzE0BRfmU,2788
409
414
  imio/smartweb/core/tests/test_indexes.py,sha256=DtRgpdkZ2PKu8y8OrARY1Gk3JU-siWlkDf98A_ZvzFI,10784
410
415
  imio/smartweb/core/tests/test_instance_behaviors.py,sha256=YMLtXkhxrLlD0nh0wx1-kX2hawQiOGvJqYXh_s53GPI,4274
@@ -433,7 +438,7 @@ imio/smartweb/core/tests/test_subsite.py,sha256=wiD8Ke4_-ArstSYNLCs8ArqOuDx2xxUR
433
438
  imio/smartweb/core/tests/test_text.py,sha256=DtZNNGJ-MDYbJ-YQj2C0q2Hr7t4-sUbV6SWkE7tihBY,4652
434
439
  imio/smartweb/core/tests/test_toolbar.py,sha256=dxwOGNOg2wPkAnPU3hqGCI6VL2D2nPOIOtbMorvjfps,3823
435
440
  imio/smartweb/core/tests/test_utils.py,sha256=CkRkK3SbT4oQx_-Nq2Z0AhmhzR4kk2BkIZqSbIiPU04,4125
436
- imio/smartweb/core/tests/test_vocabularies.py,sha256=E3qhSlh_mW8rxGhlW8Wo3gXwumCHChtZjmkfGlkdo_4,14368
441
+ imio/smartweb/core/tests/test_vocabularies.py,sha256=1oF4rFc9kd1baUMHBor5wX9_tR7fcziQ6rvcENjyNDU,16956
437
442
  imio/smartweb/core/tests/test_vocabulary.py,sha256=9S3BtVIJbN1o0q2qMcX8k0CdUwixmc3DBs_s5qFrJwA,1648
438
443
  imio/smartweb/core/tests/utils.py,sha256=hsDrWOxL0oNNyx92Hke9Kj9ByKzc2kZ19q9QPVsNud4,2688
439
444
  imio/smartweb/core/tests/resources/cirkwi_bad_widget_mock.html,sha256=13YeZ0mo8PoeHIHa64SLKuhNfGqBMT2uprmYDyQxE78,150
@@ -451,6 +456,9 @@ imio/smartweb/core/tests/resources/json_directory_entities_raw_mock.json,sha256=
451
456
  imio/smartweb/core/tests/resources/json_events_agendas_raw_mock.json,sha256=MPOml4kg2szqBFl8mh1RC5_df95-aZsyY3pdcy_S8_M,769
452
457
  imio/smartweb/core/tests/resources/json_events_entities_raw_mock.json,sha256=W6FkyvbiC2WXtrcDvqIptCEThsQ-05Sd9NeXlLdpcss,441
453
458
  imio/smartweb/core/tests/resources/json_events_types_raw_mock.json,sha256=Yaxw-mpSEkH5c4JKlhibIAko6UOexGZ-ydJyxXs-mQI,390
459
+ imio/smartweb/core/tests/resources/json_iadeliberations_institutions.json,sha256=koaFRWm7xMUFQ7XjFu0o2PqOdMXa4wIH8Ae2dChAbO4,2279
460
+ imio/smartweb/core/tests/resources/json_iadeliberations_publication.json,sha256=peL3-Tb3kWOZUNqCkYsvJD3710jMzPlb0pGj1gnAQN4,5136
461
+ imio/smartweb/core/tests/resources/json_iadeliberations_publications.json,sha256=JsY4rynmLwpnmOEvvqhyoSQ0USUvNv3wGRYOGEKRThY,17115
454
462
  imio/smartweb/core/tests/resources/json_news_entities_raw_mock.json,sha256=InbDt8kUmVBsfCTyfn5M6qqC1j8z5RB8Edg7hIWRv0g,726
455
463
  imio/smartweb/core/tests/resources/json_news_newsfolder_raw_mock.json,sha256=JpryCi1tpJPAoqnF9c2ZPtcQc4R_ottDRiyU-z2x3FQ,783
456
464
  imio/smartweb/core/tests/resources/json_no_contact_raw_mock.json,sha256=tfcIZuQi1Lz8HV8EV93Qp1pUr9KbKATxu4MHnpiZSrc,127
@@ -471,7 +479,7 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
471
479
  imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
472
480
  imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
473
481
  imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
474
- imio/smartweb/core/upgrades/configure.zcml,sha256=d0kYoIPxpRJV3S5d9xXjmqGzIm7iut9OLesMsakg9OA,28759
482
+ imio/smartweb/core/upgrades/configure.zcml,sha256=-aiWiYbSpgn9GtHhomD0MRh7AbSFS-JtK3eMGuSQYyg,30042
475
483
  imio/smartweb/core/upgrades/upgrades.py,sha256=SZHVeYODErjQZR_LzQ0cxBnJoqWRWsIiRpUhNTMiz7k,8295
476
484
  imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
477
485
  imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
@@ -595,6 +603,11 @@ imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.xml,s
595
603
  imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.cfg,sha256=Q164kppiNOFkWqotf7py4Zh_4MkPqlaAXSg2BYkv9uE,320
596
604
  imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.xml,sha256=okHtdO00hhQGzUFRmzFrg2EuQcPpAGE8jkhTjDxniHk,5197
597
605
  imio/smartweb/core/upgrades/profiles/1058_to_1059/registry/linkedin-icon.xml,sha256=yRqHetbTAolpNDMdGzY8j0UBicgf_bYz-XVCmiUWCEk,5512
606
+ imio/smartweb/core/upgrades/profiles/1059_to_1060/registry/iadeliberation.xml,sha256=NDTqM4kD3pGu8IlCX_7sWLtQQ75tnHzS06kgSS7C0nQ,249
607
+ imio/smartweb/core/upgrades/profiles/1060_to_1061/types.xml,sha256=J9Ol_US14WMtzJ3mOP-6KqFs05kV8Jm_JV45bSOzIy4,178
608
+ imio/smartweb/core/upgrades/profiles/1060_to_1061/workflows.xml,sha256=V6BtsGLA7R-PgfzfwB50vbA9Hexas_Gg8hZGJIKRMb0,171
609
+ imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.Publication.xml,sha256=qac_W2czX6n7zibt_jzopRWcuEIvQzEqm9x_HKMCthc,1259
610
+ imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.SectionFiles.xml,sha256=wF7MUhCzPt134TwwqKogRC-9iu_ugpOdri48b4AfAG4,312
598
611
  imio/smartweb/core/viewlets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
599
612
  imio/smartweb/core/viewlets/actions.py,sha256=QWj_pLNxH4223XPk4b4Dc79DiajF0HHfaXlUmXTwJ8k,661
600
613
  imio/smartweb/core/viewlets/arcgis_header.pt,sha256=iQc5ZG3g1Cmap963OG-wPotllr7oWmVSMoAnA7tctrQ,3428
@@ -667,28 +680,28 @@ imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.c
667
680
  imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css,sha256=9CwbA0J60QC8l_HQZ0u6abP3iN3usuD8CGijKBJumh8,24072
668
681
  imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css,sha256=4lpV-6NaisDZFzo7YchHTyOOp5FJxNNz2cblWJBaQC8,48102
669
682
  imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css,sha256=cmIujPCjesquXQEUFlVnQo1PkkBNk5Ed81I0xqbap_I,2727
670
- imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=RAupw7FVjxmYnxjiTeK8JcGHc2qmAzzWVuddpb88ZOM,4228
683
+ imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=M5rdXrMiPW5KmMloZKOcMP4--GyGrZ3XsYr3eTxOtVk,4426
671
684
  imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js,sha256=mb8qvqSSicnVlLJHxWAGgrTkNHv-_vbSP0fEfmm3VXo,415156
672
685
  imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=9CksAZD8HmkPS0n0IpNDiIs-Rz7g4WGlxIAiWXg1SPg,338
673
- imio/smartweb/core/webcomponents/build/js/324.smartweb-webcomponents-compiled.js,sha256=agmSm7DjMJV_OltHpxOlF409JGppnSCjWBwBZDv9dkI,166942
674
- imio/smartweb/core/webcomponents/build/js/324.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=-3_bgdYPth5WaLi7KThLMFaeIhyLEDdatZAaOJMVBvI,680
675
- imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=DMvI8ZQH-kJk8REon54eI53AGhiP67WelA7jTY1G0Og,54116
686
+ imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=LSaEasGnVsQN_jvJjuUnydk5LbDd4WSe3olb3HyhCQ8,55999
676
687
  imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=srGNtnoNHz0w5OlaCDZLtTP8yBsDypbLTNk4qjsLvTU,317
677
- imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=AmxCZL0jPGqHkrGVGj_sVqSqcQGL8auc0K8PvBj-wQI,38780
688
+ imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=4LzRoexS4CUeiQp97N_W7OrzgIJKmjxIkRarUYCRduY,40577
678
689
  imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js,sha256=C4DEpTuaRR0KAUgH9winSpJYpPwOHAOMUdreD7DaX6A,143081
679
690
  imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=eNJ8gc9n9IF8nW1d9sI9niuHstYzjNz5vqXx9UgWSPc,249
680
691
  imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js,sha256=FA5QfzUfmlsrCL5il1pWsT4gxkVTfYb_iyz7ccFlO8A,17404
681
692
  imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=R14i0Dp6JC2AOtJVaegrZVAe22i9niDnCBKa5vn7QVc,59
682
693
  imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js,sha256=ca082EaYXpsgjIeedTCxHiJ_-RO09R2WQ28L21QEMrk,153293
683
694
  imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
684
- imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=PsDvvkz3SG2j4MCRJZssmdGCME1FrHjNmvhmUcQAx1A,45350
685
- imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=WVkO-pJwzsvaPCEdpM8HCxys033UfvexwAHIZWtjZd8,15159
695
+ imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js,sha256=gckUhUY-I6BDU1bXCwf_QTQYepQYrk9jd3ILCp4f6vE,174992
696
+ imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=-3_bgdYPth5WaLi7KThLMFaeIhyLEDdatZAaOJMVBvI,680
697
+ imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js,sha256=jTvFhmHr3t5EN1jasvsPTqP06HWhQk5UJaZo8ulCYCU,47160
698
+ imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=RrMPAIBn91DeRGcWP6YGH9yX48eDaqnXBnWaAbw1NbM,15159
686
699
  imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js,sha256=YLKWqrbFtX1Q2I0gtWEbu7HTVAXe6kbOCWw6CeW8r7Y,299300
687
700
  imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=A-v1lwmuIX1DpNJ1MDzKDMWv7f_d6cjHlGOCEvthhdY,50
688
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=PujdynQc331cx8EvXcbkbGzGD0aifEZRUzxavWtWIKU,413853
701
+ imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=5c8fUfQ6RV0Got867_AU3WxfnGpzGcmtQHvRnoM7b9I,413903
689
702
  imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=FYZFcv_VsY7Ef-afd5tLGRLLk9j84PX0P_ciZvbFli0,968
690
703
  imio/smartweb/core/webcomponents/src/index.jsx,sha256=WV70VNETdsIMADJ5EqajwxQ6WacMbhw5Z_91fVDti_Y,757
691
- imio/smartweb/core/webcomponents/src/index.scss,sha256=Icln3zYEuHrORTeGQqx0aDH0jR_kxijXMMRD-b5mKjU,4923
704
+ imio/smartweb/core/webcomponents/src/index.scss,sha256=dZeq50JtAf3iJ_HGZrT7Vg8Ok2XPHAx58owPGNRfvBo,5673
692
705
  imio/smartweb/core/webcomponents/src/assets/close.svg,sha256=YRqTcPuokfqTclWe7mP06MOMzGAZxQikUO9XMeSwIg8,478
693
706
  imio/smartweb/core/webcomponents/src/assets/img-placeholder-bla.png,sha256=aC1DNJvkOZB5Bg2TWrzBSyg-RgzF9PRaRRx2mI6kChg,9538
694
707
  imio/smartweb/core/webcomponents/src/assets/location-active-bla.svg,sha256=4I_3G_3oLBPGayxnuutFmbHb9v5lwG9XWQoT1htvbTM,369
@@ -699,19 +712,19 @@ imio/smartweb/core/webcomponents/src/assets/pin-react-active.svg,sha256=XgE72Zg2
699
712
  imio/smartweb/core/webcomponents/src/assets/pin-react.svg,sha256=kXxN_F5nCL1SUuSvO7dsVz2BCk6lyembEe0ZcDUjEUQ,336
700
713
  imio/smartweb/core/webcomponents/src/assets/pin.svg,sha256=-6a-6Jyc3EJteH1X5eFtPUCCz4FQeWKkVhMKHDhmbzI,890
701
714
  imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
702
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=JZzN7b6yS9yxuQfhKnOD-GIHi8FBFPJJPGAup2aztGA,11042
715
+ imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=26OQ4Ejh7ozOfvuC3XmvzVHeOR81EeMp1rwPhsRWvTM,11456
703
716
  imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=_O6UeLtzaxTv8uC6RVgWtHQAAZfBJx9g4PrKV9KAUx4,9474
704
717
  imio/smartweb/core/webcomponents/src/components/Annuaire/index.js,sha256=A26LlWeszwIzqu15SiEZ_mcb4NSaChAbT7d4GWEyVlY,96
705
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=Ji7ODujFQuPGsOwErVWd5AfiDHy9xkJbU2imwLMN2Sw,5068
706
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=hg0471MgW8xJ1saJQWY9GqXzauGqoCqnCrpS9t3aNwg,35353
707
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=W_FFSlYmxQ595viM0oedhTuazpHhwn-8RiTr59iAU1g,2139
718
+ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=yBbE4fl6Q-DvGLIN1er7izF507SpYHB5_SCkXPHVYYY,6647
719
+ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=_dFUygCMyx4nBwQdywIrPZEMt7rY7pYXn8_2k2lQdxU,36648
720
+ imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=_UbuWGN_Goao7BXlW19rIuvoj_2X7JkXBN8KXqOvbS8,2309
708
721
  imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=yg7k4KgIOprikaOImjO-Mh7r83tbw0rgkc3YprQ72_4,13423
709
- imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=4E4_jCOjbeszd2vBPazbKHUxJ4KcYUjXX7B7vdimy0g,12046
722
+ imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=L3bThj_F-dmhSSyqtC3VHbggVM-bSY-gmVZmyRzAtgg,12271
710
723
  imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=CEy4vmYlE8n9_JASOBTl5rk6ZCIC7PbrGp7ZTgZL3n0,10012
711
724
  imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
712
- imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=-5wj3_jDXfWncQVaXRsBMD5rSwnGjOGY72l2n4j_dH8,2052
713
- imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=bpqDSU1ZL5UvDhbU023pagYe3_hhXOYGNlsQUuQoW0s,35412
714
- imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=irZmfWRS77uHPe4_R1GIpsridcR7Upu7S9oPAkZlO5s,2331
725
+ imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=CYb-6E5sfgIXFNc2-2dpajBsBggITh-pxqEkiPiJw0M,3586
726
+ imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=TCz64eM973E18ASAGi-wsIv9ewUbhFL9qFOuKN1Syj0,36707
727
+ imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=IE3u7O46ZF-wA0pu5WFT-lW84-l993mZVHei6JUmuBc,2414
715
728
  imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=Onfa6fL2f1vTt4sAsYNNWA1uHgMR7an10b3IaMpRL1k,15951
716
729
  imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=XKiN7Y8CFz48IluCEmyqTpSbBa6hvF4BjPcAZYKqKaQ,5949
717
730
  imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss,sha256=zccyw3yhc4k2GU_RYl7fJn7tZOz6DMDA2PGGK8SLmNQ,3233
@@ -721,13 +734,13 @@ imio/smartweb/core/webcomponents/src/components/Filters/PublicTargetData.jsx,sha
721
734
  imio/smartweb/core/webcomponents/src/components/Filters/SelectStyles.js,sha256=lXSYovMyRUC9TjLDEn03_rcXJhAB2sTqBdc0E7hadJE,1288
722
735
  imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.jsx,sha256=EznTS_9zVa9kzZ_XqFtKbJh5swZgnfkZfT9AnRfpEy4,5649
723
736
  imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.scss,sha256=fOA6Znq6BAl2spfGXefHwE3F0BPbL51RuQbPUC_HII4,1415
724
- imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=lRNtWLVsRLGyK1ruyp_qsW4l-bv3umz_hArKH0bRDWY,9802
737
+ imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=_-Wb2Sa-8WEdtJe_HR6Ew0GPveM-2PgPKpaKFk5WHto,10056
725
738
  imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=6N4xW_2IUlvGF6WBpoEad9OTHLrgDdyJKeFDSoc3mdc,4491
726
739
  imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
727
740
  imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx,sha256=_jPvqsdg6QHNBkC7erySX-s5sgBh35X8B3P2LgxcsBw,9598
728
- imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx,sha256=qbQoWnk5DeAluX-RViv3OEmU2WVQgB66o8SwsDoNDQQ,3379
729
- imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=TGjBLHxkZ-hRQxQrNSEVVUQO_grAelIfvcgqBSzWgmc,18175
730
- imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=3HzLVxiMRnzwqlRcd0dOSyFvYJMrnHLp4qja9Jm0Qqs,2065
741
+ imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx,sha256=3Zg328ZxgjtoKtYYxkmHZSafP11vzNPijACxj-z2LGI,3965
742
+ imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=GFYN17-cYULiaJQC4RGPoVOW-0trXvpeSEZs-0Wb180,19470
743
+ imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=aDgfW-TXeahzRMoubSNCR0mmKrzG2MJraJc2fKwO2SQ,3703
731
744
  imio/smartweb/core/webcomponents/src/components/Search/Search.jsx,sha256=mAXFJr2BmOjAe8-F9qeaWKvUhsOOBad-UKZ_QSwESmQ,2461
732
745
  imio/smartweb/core/webcomponents/src/components/Search/Search.scss,sha256=nnyNWve8dcce7q1G2jaOne3YbQXn5qbu0ai1-JBv0Fk,3033
733
746
  imio/smartweb/core/webcomponents/src/components/Search/index.js,sha256=_UM9GrZj8bAVS_Pw7yaGkRL0CrfjqO93a10PQh1a_xI,94
@@ -743,10 +756,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=cYuZykMIaLjr4KiLvmS4aY
743
756
  imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=xXWz0O-JBwSZrzz2XeQdN4nZEOjppU2sVFtlLQOitQ8,77
744
757
  imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=5YDHwdaRNWFWOgyNd7YejoAdcDvnvAENo3Xn0GDT8P8,8941
745
758
  imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
746
- imio.smartweb.core-1.2.65.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
747
- imio.smartweb.core-1.2.65.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
748
- imio.smartweb.core-1.2.65.dist-info/METADATA,sha256=-H4QgU_cI2SAIHZ3PU0EIqnUFusi9NnH3yXZn4vkVJM,55900
749
- imio.smartweb.core-1.2.65.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
750
- imio.smartweb.core-1.2.65.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
751
- imio.smartweb.core-1.2.65.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
752
- imio.smartweb.core-1.2.65.dist-info/RECORD,,
759
+ imio.smartweb.core-1.2.67.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
760
+ imio.smartweb.core-1.2.67.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
761
+ imio.smartweb.core-1.2.67.dist-info/METADATA,sha256=D3dDPftaFTZOCP5A-VqCVxhqCSn3E-lKe3_rj5vljKw,56440
762
+ imio.smartweb.core-1.2.67.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
763
+ imio.smartweb.core-1.2.67.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
764
+ imio.smartweb.core-1.2.67.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
765
+ imio.smartweb.core-1.2.67.dist-info/RECORD,,