imio.smartweb.core 1.2.44__py3-none-any.whl → 1.2.46__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.
- imio/smartweb/core/behaviors/categorization.py +24 -0
- imio/smartweb/core/behaviors/configure.zcml +7 -0
- imio/smartweb/core/browser/static/smartweb-edit-compiled.css +1 -1
- imio/smartweb/core/browser/static/src/edit.less +42 -0
- imio/smartweb/core/contents/pages/cirkwi/content.py +5 -0
- imio/smartweb/core/contents/pages/cirkwi/view.py +2 -1
- imio/smartweb/core/contents/rest/events/endpoint.py +1 -0
- imio/smartweb/core/contents/rest/events/view.pt +2 -1
- imio/smartweb/core/contents/rest/events/view.py +4 -0
- imio/smartweb/core/contents/rest/news/endpoint.py +1 -0
- imio/smartweb/core/contents/rest/news/view.pt +2 -1
- imio/smartweb/core/contents/rest/news/view.py +4 -0
- imio/smartweb/core/contents/sections/configure.zcml +1 -1
- imio/smartweb/core/contents/sections/events/view.py +11 -1
- imio/smartweb/core/contents/sections/macros.pt +3 -2
- imio/smartweb/core/contents/sections/news/view.py +11 -1
- imio/smartweb/core/contents/sections/views.py +4 -4
- imio/smartweb/core/profiles/default/metadata.xml +1 -1
- imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml +1 -0
- imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml +1 -0
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml +1 -0
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml +1 -0
- imio/smartweb/core/tests/resources/json_rest_events.json +2 -1
- imio/smartweb/core/tests/resources/json_rest_news.json +2 -2
- imio/smartweb/core/tests/resources/json_rest_specific_events.json +1 -1
- imio/smartweb/core/tests/test_htmx_in_sections.py +8 -1
- imio/smartweb/core/tests/test_rest.py +36 -0
- imio/smartweb/core/tests/test_section_events.py +27 -5
- imio/smartweb/core/tests/test_section_news.py +16 -3
- imio/smartweb/core/tests/test_vocabularies.py +3 -0
- imio/smartweb/core/upgrades/configure.zcml +18 -0
- imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.EventsView.xml +11 -0
- imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.NewsView.xml +11 -0
- imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionEvents.xml +11 -0
- imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionNews.xml +11 -0
- imio/smartweb/core/utils.py +0 -23
- imio/smartweb/core/vocabularies.py +17 -0
- imio/smartweb/core/vocabularies.zcml +6 -0
- imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/css/686.smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt +1 -1
- imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +2 -1
- imio/smartweb/core/webcomponents/build/js/{568.smartweb-webcomponents-compiled.js.LICENSE.txt → 373.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -4
- imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js +2 -0
- imio/smartweb/core/webcomponents/build/js/686.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/736.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/736.smartweb-webcomponents-compiled.js.LICENSE.txt +3 -3
- imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/{568.smartweb-webcomponents-compiled.js → 963.smartweb-webcomponents-compiled.js} +2 -2
- imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt +3 -0
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/package.json +1 -0
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +265 -161
- imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx +34 -21
- imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx +2 -2
- imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +2 -1
- imio/smartweb/core/webcomponents/src/components/Events/Events.scss +1 -0
- imio/smartweb/core/webcomponents/src/components/News/News.jsx +2 -1
- imio/smartweb/core/webcomponents/src/components/News/News.scss +9 -1
- imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx +22 -5
- imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx +2 -2
- imio/smartweb/core/webcomponents/src/utils/Map.jsx +1 -3
- imio/smartweb/core/webcomponents/src/utils/translation.js +49 -1
- imio.smartweb.core-1.2.46-py3.8-nspkg.pth +2 -0
- {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/METADATA +29 -3
- {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/RECORD +74 -70
- {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/WHEEL +1 -1
- imio/smartweb/core/webcomponents/build/assets/next-react-white.819cb069ac8eec300a9db6a7707712d6.svg +0 -1
- imio/smartweb/core/webcomponents/build/f79b479fdc5c0fe0d553.svg +0 -1
- imio/smartweb/core/webcomponents/build/js/496.smartweb-webcomponents-compiled.js +0 -2
- imio.smartweb.core-1.2.44-py3.10-nspkg.pth +0 -3
- /imio/smartweb/core/webcomponents/build/js/{496.smartweb-webcomponents-compiled.js.LICENSE.txt → 499.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
- {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.44.dist-info → imio.smartweb.core-1.2.46.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
imio.smartweb.core-1.2.
|
1
|
+
imio.smartweb.core-1.2.46-py3.8-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
|
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
|
@@ -12,11 +12,12 @@ imio/smartweb/core/subscribers.py,sha256=9I6fAJj1FhtkYQZ2Ug_3Bl-p_rn1Nf9_BBHo_iU
|
|
12
12
|
imio/smartweb/core/subscribers.zcml,sha256=48jHmwwnW37LFCN8HFlxdCe8CgNohYRY_pvbKYa2Gww,1016
|
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=
|
16
|
-
imio/smartweb/core/vocabularies.py,sha256=
|
17
|
-
imio/smartweb/core/vocabularies.zcml,sha256=
|
15
|
+
imio/smartweb/core/utils.py,sha256=2hE3RmiEV8dO5ZrevlvTmf8BhnmMZIV4QkYuceWWkDY,6577
|
16
|
+
imio/smartweb/core/vocabularies.py,sha256=8sT7a9b-DaY1IMSjnWr7vpcYfN0ut7KbdIMcLSvICgM,21041
|
17
|
+
imio/smartweb/core/vocabularies.zcml,sha256=65p7VkGWt7DECVNPNNORyp0ZdSjUPv6rKEJ3WhDv4UE,5460
|
18
18
|
imio/smartweb/core/behaviors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
-
imio/smartweb/core/behaviors/
|
19
|
+
imio/smartweb/core/behaviors/categorization.py,sha256=a5i8pYagdTcEG43A1NLs4SGF42PCAUFn8IRUq1pFqpM,828
|
20
|
+
imio/smartweb/core/behaviors/configure.zcml,sha256=4HimRN4xacRbUaCOiOiv0YgcWbsLMu7X4yGrdAeKaSE,1909
|
20
21
|
imio/smartweb/core/behaviors/listing.py,sha256=x1L58k4RpS5yB7-f36fEC6xwyg7Ci8LR-5wDh5wVD2c,760
|
21
22
|
imio/smartweb/core/behaviors/minisite.py,sha256=sDo74qYt8vWJjrfr2JQSTDXocUVwehGIKAc9nWlj-Fw,1865
|
22
23
|
imio/smartweb/core/behaviors/orientation.py,sha256=WrW9BeT9KICl4qmkGzplLepJ5J_rMkosgDvOFn534QA,557
|
@@ -74,7 +75,7 @@ imio/smartweb/core/browser/search/search.py,sha256=vc2FDwsCZSqLH3N0deR_r9aqsJB6I
|
|
74
75
|
imio/smartweb/core/browser/static/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
75
76
|
imio/smartweb/core/browser/static/Makefile,sha256=M6dYqYEKwHzwyCn3d8RWpbwVJmfLSr2D0Zvqyl7fqFM,350
|
76
77
|
imio/smartweb/core/browser/static/package.json,sha256=rJeZEnDqQvcPTakkRPOZCALk8HBKA-3BOb4Kjwi12vs,695
|
77
|
-
imio/smartweb/core/browser/static/smartweb-edit-compiled.css,sha256=
|
78
|
+
imio/smartweb/core/browser/static/smartweb-edit-compiled.css,sha256=3C1_U0jw_1cq97onQlsCWulezGUM4r__WmB1QqCdr8E,5120
|
78
79
|
imio/smartweb/core/browser/static/smartweb-edit-compiled.js,sha256=8apUM0A48d1cDvNbj3eL82sJzzbI3gDurkV48uGOOpg,1222
|
79
80
|
imio/smartweb/core/browser/static/smartweb-swiperconfig-compiled.js,sha256=N2b-d5pLMqI66U5ORf0E8UvjJqcnYpfe8QmHjf46Qzs,608
|
80
81
|
imio/smartweb/core/browser/static/smartweb-view-compiled.css,sha256=rcpadTevQ4zYZak9WIERRGRJNm0jWG9HJy-ReycSdLs,2702
|
@@ -133,7 +134,7 @@ imio/smartweb/core/browser/static/icons/vue-actualites.svg,sha256=M0LnT9Fp4uIQOG
|
|
133
134
|
imio/smartweb/core/browser/static/icons/vue-agenda.svg,sha256=ZaIUxfdRIYuNUwp2wKmdC1Q1g7uhjaGaxVXCooi-zkQ,336
|
134
135
|
imio/smartweb/core/browser/static/icons/vue-annuaire.svg,sha256=jCoOGU6nGabF_mGAF5hsge1OWZbRKRtYHfjmzEJhzS0,497
|
135
136
|
imio/smartweb/core/browser/static/src/edit.js,sha256=8o6qgeMJ_kDyq94HJ6xB_junqSY-ruH11uguxdkkST0,1978
|
136
|
-
imio/smartweb/core/browser/static/src/edit.less,sha256=
|
137
|
+
imio/smartweb/core/browser/static/src/edit.less,sha256=uiqNkhAIucG9q4Gz1PJyt2GkYsvcOgkWKhcTUj2BAJU,5408
|
137
138
|
imio/smartweb/core/browser/static/src/swiper-config.js,sha256=PK5Uw_vbHcXiyt3R8Gvdq2geNX6LEdQB2QTWTcKSqWg,1285
|
138
139
|
imio/smartweb/core/browser/static/src/view.js,sha256=c8J_VYwXuM_9u0c2OWs96yeTJTZOmKpgoCup5GLo5js,3268
|
139
140
|
imio/smartweb/core/browser/static/src/view.less,sha256=9rqoM0Azs8Cn4G4WSsWNBYLBydRzld0WuzWfHZTu5Is,2843
|
@@ -169,9 +170,9 @@ imio/smartweb/core/contents/pages/view_section.pt,sha256=_jYm5FqFVYr1Jia5r9qmqry
|
|
169
170
|
imio/smartweb/core/contents/pages/views.py,sha256=hHuK6_1JsmIJVWKRGXApcgVwl50k3jAFH2M2Z20BhTo,4938
|
170
171
|
imio/smartweb/core/contents/pages/cirkwi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
171
172
|
imio/smartweb/core/contents/pages/cirkwi/configure.zcml,sha256=f5kNhtZhY10aHetW5nZZZ00tbBQP1EiezVia5_JfJlg,378
|
172
|
-
imio/smartweb/core/contents/pages/cirkwi/content.py,sha256=
|
173
|
+
imio/smartweb/core/contents/pages/cirkwi/content.py,sha256=L8VtzTsdqM_1g13RWygd07Z9mtPiyg7PbjxXyDM6nSA,779
|
173
174
|
imio/smartweb/core/contents/pages/cirkwi/view.pt,sha256=_eQzK-Z_QjT0rAOAJ9fgz6j6z5d85-GAccy_-X1X36M,392
|
174
|
-
imio/smartweb/core/contents/pages/cirkwi/view.py,sha256=
|
175
|
+
imio/smartweb/core/contents/pages/cirkwi/view.py,sha256=OBCZzwK9qTRRohD-kAv_j2vZDuIVrTLVcMnsFSvglow,612
|
175
176
|
imio/smartweb/core/contents/pages/footer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
176
177
|
imio/smartweb/core/contents/pages/footer/configure.zcml,sha256=akQrJMGxkhUZa-jCpZDRaMdKKwC-aWJhFoYgefS08Fk,70
|
177
178
|
imio/smartweb/core/contents/pages/footer/content.py,sha256=mcef79jZRlHcIHJF4I93hYuLRg0_gDGsLcAv4srDMwo,1374
|
@@ -205,24 +206,24 @@ imio/smartweb/core/contents/rest/directory/view.py,sha256=rN4k7sqrd32TNMBBOc7RQe
|
|
205
206
|
imio/smartweb/core/contents/rest/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
206
207
|
imio/smartweb/core/contents/rest/events/configure.zcml,sha256=ufUHdGMkGd57zgZ4_DxvoK4Zn7_AC_A3_TnLkmdYRhs,1017
|
207
208
|
imio/smartweb/core/contents/rest/events/content.py,sha256=4T0dCsoQx6c1uxISEeqdUggI0q4YE80tQimhALwRmug,1665
|
208
|
-
imio/smartweb/core/contents/rest/events/endpoint.py,sha256=
|
209
|
-
imio/smartweb/core/contents/rest/events/view.pt,sha256=
|
210
|
-
imio/smartweb/core/contents/rest/events/view.py,sha256=
|
209
|
+
imio/smartweb/core/contents/rest/events/endpoint.py,sha256=EQtWYVngm9zwh1JOPfvxj7Q3IjxdFN4bIk7zhE2HabE,2687
|
210
|
+
imio/smartweb/core/contents/rest/events/view.pt,sha256=LNQHJvS4kxq6S1RU2sTU1gM0Jx5YXOcWXGzz6iFZWAc,1083
|
211
|
+
imio/smartweb/core/contents/rest/events/view.py,sha256=XCFmmC0t1J2HYGIX83bAWF1R1lP_z2qPq5aFmV85h8o,804
|
211
212
|
imio/smartweb/core/contents/rest/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
212
213
|
imio/smartweb/core/contents/rest/news/configure.zcml,sha256=f1kNWMjcHul5_dKv51KY_GQII-Cvx-uL7N9Z25zlN8c,1005
|
213
214
|
imio/smartweb/core/contents/rest/news/content.py,sha256=gSyOuVlvv90HIWhjdABE7g4mngVF6agqZdC6pBDCgJI,946
|
214
|
-
imio/smartweb/core/contents/rest/news/endpoint.py,sha256=
|
215
|
-
imio/smartweb/core/contents/rest/news/view.pt,sha256=
|
216
|
-
imio/smartweb/core/contents/rest/news/view.py,sha256=
|
215
|
+
imio/smartweb/core/contents/rest/news/endpoint.py,sha256=n07_nzeFbZFb835pBzFAeJJUsNdQbkWHNh4VLp6eUrA,2759
|
216
|
+
imio/smartweb/core/contents/rest/news/view.pt,sha256=E7SQFuw1rqUttoC1c1aMxJTp5gCpBwWm05iKGFQYFaI,963
|
217
|
+
imio/smartweb/core/contents/rest/news/view.py,sha256=JhPNp3LjvhS-X5HAsD84HKxnI6CaHTLajZkp1sBSsA4,632
|
217
218
|
imio/smartweb/core/contents/rest/search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
218
219
|
imio/smartweb/core/contents/rest/search/configure.zcml,sha256=BTFcBQ28NINyEfoVgYwJgf0JWvk99ewSKgOYx91lZy4,951
|
219
220
|
imio/smartweb/core/contents/rest/search/endpoint.py,sha256=i5LMM0R1Xvpy76JHO6pI98G41Xep15fPR9uv9rqropo,9797
|
220
221
|
imio/smartweb/core/contents/sections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
221
222
|
imio/smartweb/core/contents/sections/base.py,sha256=2e3lIG_RGGFAshBEkTNG97OReAnn9GLQk_O_Eqh7SRY,2486
|
222
|
-
imio/smartweb/core/contents/sections/configure.zcml,sha256=
|
223
|
-
imio/smartweb/core/contents/sections/macros.pt,sha256=
|
223
|
+
imio/smartweb/core/contents/sections/configure.zcml,sha256=fPfYvU7YvezfjKPRT_yPcZgjmyUX9VZFb-6jUJiERqM,2767
|
224
|
+
imio/smartweb/core/contents/sections/macros.pt,sha256=tvWBh40KuwWpOAu327NWZAwixvpWMMKdaOyIxMp0o-k,5579
|
224
225
|
imio/smartweb/core/contents/sections/subscriber.py,sha256=WM7nEZVPOkmyT1GfkWGDWwLhuhUYaTnlBr6BJVqUJMk,642
|
225
|
-
imio/smartweb/core/contents/sections/views.py,sha256=
|
226
|
+
imio/smartweb/core/contents/sections/views.py,sha256=2nSKABvrkAq62kyOqemb26WQtAYsOBDIMDPWL5O0o6Y,5085
|
226
227
|
imio/smartweb/core/contents/sections/collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
227
228
|
imio/smartweb/core/contents/sections/collection/configure.zcml,sha256=Ak4UbKFjogWZad6-5_y6oSx8tWXt3nN7bEdKXG7pQCI,920
|
228
229
|
imio/smartweb/core/contents/sections/collection/content.py,sha256=DMmU9rIaRlbRjIaot5RHXu59vJmAbun0FCmyahWhBCM,2379
|
@@ -241,7 +242,7 @@ imio/smartweb/core/contents/sections/events/__init__.py,sha256=47DEQpj8HBSa-_TIm
|
|
241
242
|
imio/smartweb/core/contents/sections/events/configure.zcml,sha256=FCDIf6w-2qCPqq0QUodw8-xyAopq7l6O8zoU_uMHNwg,1117
|
242
243
|
imio/smartweb/core/contents/sections/events/content.py,sha256=i7OBUYmSrEQUBbnPK187l7cdygKGoiCgXN1WK7AYeHo,3177
|
243
244
|
imio/smartweb/core/contents/sections/events/macros.pt,sha256=llSq-xstFiOXctseKDwvhVCM7A1_Z1Jq-_cUgNiBe10,1522
|
244
|
-
imio/smartweb/core/contents/sections/events/view.py,sha256=
|
245
|
+
imio/smartweb/core/contents/sections/events/view.py,sha256=iEctcjaNiB_olSPsZyY4hlyqlNNZGrldGz5XU7LpZJ0,4452
|
245
246
|
imio/smartweb/core/contents/sections/external_content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
246
247
|
imio/smartweb/core/contents/sections/external_content/configure.zcml,sha256=6ZvD4hJiXMZM2-mz9D7ipZcphS5HKJFREG9XUzF_6ms,1651
|
247
248
|
imio/smartweb/core/contents/sections/external_content/content.py,sha256=apHtfPwxkHkLQJVFVXs4F8O0gE09uI49AFQ8xRFrXgo,1096
|
@@ -276,7 +277,7 @@ imio/smartweb/core/contents/sections/map/views.py,sha256=3Z5oFis2NIByJCHh8bjAlLu
|
|
276
277
|
imio/smartweb/core/contents/sections/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
277
278
|
imio/smartweb/core/contents/sections/news/configure.zcml,sha256=8MOIEeI7Zr_wbNVgiMa_21Ohgv_bkpEi_7gJu6NK380,880
|
278
279
|
imio/smartweb/core/contents/sections/news/content.py,sha256=xqVlWUD4aX4CPLX72ilKaBW65XrE37dZqCtq4p2rZwQ,3192
|
279
|
-
imio/smartweb/core/contents/sections/news/view.py,sha256=
|
280
|
+
imio/smartweb/core/contents/sections/news/view.py,sha256=E9tdEp6BFGkbSaGcym0oJ5cnNcbLJeMFmWU5EqvlrYg,4079
|
280
281
|
imio/smartweb/core/contents/sections/postit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
281
282
|
imio/smartweb/core/contents/sections/postit/configure.zcml,sha256=Q0Szs1pmrNP2OiRROpeSQPKLV3tCpyjqZa9vwNFTK9Q,504
|
282
283
|
imio/smartweb/core/contents/sections/postit/content.py,sha256=--bqQPsjpKuqMzOb21eOERjp2a2QehGTAsBvZ3FnQMA,2239
|
@@ -316,7 +317,7 @@ imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH
|
|
316
317
|
imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
|
317
318
|
imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
|
318
319
|
imio/smartweb/core/profiles/default/diff_tool.xml,sha256=66L2L7ZBGJajPDeHl16A3h6RUcj9l0C7qpwe8JSYe7o,212
|
319
|
-
imio/smartweb/core/profiles/default/metadata.xml,sha256=
|
320
|
+
imio/smartweb/core/profiles/default/metadata.xml,sha256=AcNLoEyLneTQMJV_1w5O7mYSPpaqHwFVHq_R0MkiPLc,1218
|
320
321
|
imio/smartweb/core/profiles/default/repositorytool.xml,sha256=aTErs-VvEEV3dm9_TdgPZfx1Pb1f5Sw7ap7IgiJOK4w,227
|
321
322
|
imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
|
322
323
|
imio/smartweb/core/profiles/default/types.xml,sha256=xkQyPtEccUnAHu5mL83r96dmtnCWNn17lVRJPP2jWMg,2040
|
@@ -335,24 +336,24 @@ imio/smartweb/core/profiles/default/types/Image.xml,sha256=fJmD5pnkIG_FPoM4HCAr-
|
|
335
336
|
imio/smartweb/core/profiles/default/types/imio.smartweb.BlockLink.xml,sha256=d9QbSRcub-2BPmXIyeTlMY31ZV490N2fLVJiOzpvqcM,1526
|
336
337
|
imio/smartweb/core/profiles/default/types/imio.smartweb.CirkwiView.xml,sha256=no9uRz1RgpIIWIslYX5CZ3zXh26R3EWVZRgcEc4h1vE,1507
|
337
338
|
imio/smartweb/core/profiles/default/types/imio.smartweb.DirectoryView.xml,sha256=6QHlBk3fdynpJRvsI4IXxQhoEtzrwzTSyxfvwn9ZMJk,1593
|
338
|
-
imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml,sha256=
|
339
|
+
imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml,sha256=7dgM9eTj_oFUvbclAL0hAEpSiX6JB14Zz6JNcaaoURQ,1632
|
339
340
|
imio/smartweb/core/profiles/default/types/imio.smartweb.Folder.xml,sha256=YqbwiJET7INeT2z3y4loPhyZz2H1AUwfln3INiSMcVE,2593
|
340
341
|
imio/smartweb/core/profiles/default/types/imio.smartweb.Footer.xml,sha256=3wJF6Pcv_uKb-9uwbB3qOgVHH2E5kZQU20jCieph4Uk,1730
|
341
342
|
imio/smartweb/core/profiles/default/types/imio.smartweb.HeroBanner.xml,sha256=K17YmXTHR23suOhGZqjNjI0DPBenrdAOcLCqN6VUBD8,1604
|
342
|
-
imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml,sha256=
|
343
|
+
imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml,sha256=xMyV4duPxaS-mh2VC4nqRlaElr_GZqmVnP5SPk2cIjo,1615
|
343
344
|
imio/smartweb/core/profiles/default/types/imio.smartweb.Page.xml,sha256=5nHWF7MTLqr4-WyrTu5RgmSKCb0ODJ0--jdIMTrIQF0,2519
|
344
345
|
imio/smartweb/core/profiles/default/types/imio.smartweb.PortalPage.xml,sha256=-5C8Wvx4IqmH2vZ5Bmyj1Zr4YTaGvY4vWc4sO5vPkJ4,2695
|
345
346
|
imio/smartweb/core/profiles/default/types/imio.smartweb.Procedure.xml,sha256=V5EZwu3d6X2rVMdQjuWp3c-IRSVV1XUCWo-Hu-c4wBs,2516
|
346
347
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionCollection.xml,sha256=8hDn-vrtm3YuZ_U4ntgwAYMxCjayDr1Eh46KZBeAGLM,1506
|
347
348
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionContact.xml,sha256=gh4Aal-ZNoV-_t1TiNIdyYsyZaYGQ56fRk9Ata37on0,1183
|
348
|
-
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml,sha256=
|
349
|
+
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml,sha256=9VKQdMuMLbAooXdI4ZSOujT9pp0kHqj7-vaaeIDLW-s,1538
|
349
350
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionExternalContent.xml,sha256=C1BFq3Kn52p4xLfYgiJg9B1AOimq5lPd-3IyNUtjtZI,1284
|
350
351
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml,sha256=h7GNc8Kt4nNp-8yK9JMYohjqnU_CEQ6eWzGcoY7S4Us,1539
|
351
352
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionGallery.xml,sha256=8CPXF2CBF-9cz13jowiU0eUqLxzph6ic4Ly6GzVD0NQ,1349
|
352
353
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml,sha256=qIaImpJ6b70saTXNs-X5EgU8jqx6FGyR3Kguyt7Tc3A,1191
|
353
354
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionLinks.xml,sha256=Ee5OyXdJNjGNhdyAvm6TkxiWVzIi2WtTgUkaqvyhsOQ,1595
|
354
355
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionMap.xml,sha256=J9PJ9E0dA0hb0HR8yq7QBR90cd5z1mdX9XwG2JP4hog,1142
|
355
|
-
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml,sha256=
|
356
|
+
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml,sha256=DX4YFXOoNBjYxb8f1fZZyL6gx3qZd5CCBoSY5VwiMU0,1532
|
356
357
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionPostit.xml,sha256=IOGPNTzu3zmEx4khYpluI7cVmBDpmu4uy7piSDRucF0,1129
|
357
358
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml,sha256=7qlJZjMKQW-9QAS99NgN0MAH_lUvmjcjpD7ni1Cy9kg,1506
|
358
359
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml,sha256=p0EQnnc9B28iMocTrKBdr_zzmDECQWcjDrJKH_hFYs4,1142
|
@@ -388,7 +389,7 @@ imio/smartweb/core/tests/test_faceted.py,sha256=4wCfxDsU_zQ2G9xAy0g2jcuYl4HBALHs
|
|
388
389
|
imio/smartweb/core/tests/test_folder.py,sha256=JjV5Hvo6IMEFHo2kowbqhLxcXy11zHRTKL9jYJrRHV0,13527
|
389
390
|
imio/smartweb/core/tests/test_footer.py,sha256=5FYaKDRrY10_rXvetVmbo6-uOZSRQuOkaO_fvuv94N4,10970
|
390
391
|
imio/smartweb/core/tests/test_herobanner.py,sha256=oCbnS288FcJqbhWDmqdWcAXi4S7qdnf2MvBtxrLVd_I,5940
|
391
|
-
imio/smartweb/core/tests/test_htmx_in_sections.py,sha256=
|
392
|
+
imio/smartweb/core/tests/test_htmx_in_sections.py,sha256=wMzFdI7V1G6NpYkQY7lD0GSPmNOVSH1p34nlXvpz3kw,5370
|
392
393
|
imio/smartweb/core/tests/test_icons.py,sha256=sP1lIVnImCREersIZp1_QfD1LLyLFyr_mSMpt-ybgfY,2788
|
393
394
|
imio/smartweb/core/tests/test_indexes.py,sha256=DtRgpdkZ2PKu8y8OrARY1Gk3JU-siWlkDf98A_ZvzFI,10784
|
394
395
|
imio/smartweb/core/tests/test_instance_behaviors.py,sha256=YMLtXkhxrLlD0nh0wx1-kX2hawQiOGvJqYXh_s53GPI,4274
|
@@ -401,13 +402,13 @@ imio/smartweb/core/tests/test_plausibleview.py,sha256=G1ryfnz3TuQBG8VFO5KzEylT5D
|
|
401
402
|
imio/smartweb/core/tests/test_portal_page.py,sha256=hIqg4eb91o8BsSj7eSKdvoxehzOXt8bzpg1o5ej__zg,7215
|
402
403
|
imio/smartweb/core/tests/test_procedure.py,sha256=0w8phOwYfpp9vb3KDsnwjX8AhQXWdodA06W4koderQo,6474
|
403
404
|
imio/smartweb/core/tests/test_redirect_to_main_react_view.py,sha256=k4gU6xBIA5m8Vrb27rt8nWCs8ix2Lf9j49WnIXl4eO0,2990
|
404
|
-
imio/smartweb/core/tests/test_rest.py,sha256=
|
405
|
+
imio/smartweb/core/tests/test_rest.py,sha256=rUsOoWPqYItEzOV1FOBZ99MAnwu8gOmG7I03I3qQAMc,27035
|
405
406
|
imio/smartweb/core/tests/test_robot.py,sha256=NQ7AkN4tEva3bgGjMxmyqY0zIo4pJPnPOwnD9hmrTVI,926
|
406
407
|
imio/smartweb/core/tests/test_search.py,sha256=VryeRI4_5CvnStKOoNoG95M2WTy7Lyy_AhHIDG40M14,2182
|
407
408
|
imio/smartweb/core/tests/test_section_contact.py,sha256=vwCcls19KSiciaAXYG7C3SwOMWao8VGcnLvsU8ikxB0,23166
|
408
|
-
imio/smartweb/core/tests/test_section_events.py,sha256=
|
409
|
+
imio/smartweb/core/tests/test_section_events.py,sha256=Vx8NXQJL_-vub9jtrWfO4KfSUrjUYMlsYGkWyEysFns,8175
|
409
410
|
imio/smartweb/core/tests/test_section_external_content.py,sha256=a8OzZ2eDGgTYbVYi5F0necgUjQZz38NZEC1kthlFzLU,6660
|
410
|
-
imio/smartweb/core/tests/test_section_news.py,sha256=
|
411
|
+
imio/smartweb/core/tests/test_section_news.py,sha256=rXlEAnRF5qsiZu0z-OyDqaaTZE5OFxPQvYN5VHTdJl8,7878
|
411
412
|
imio/smartweb/core/tests/test_section_sendinblue.py,sha256=UmmKo33T9feelumxqeejM4HG4oLRPKJkbB8hkLO144E,2661
|
412
413
|
imio/smartweb/core/tests/test_sections.py,sha256=7OSR69aS9dD5_ymlae9bMN9wFZaNP2Gpx-lLKBfsmsc,24008
|
413
414
|
imio/smartweb/core/tests/test_setup.py,sha256=JcbMnXTNCuB_8grFh5E1kZ0uALdATlKMbahAdGfToZI,2092
|
@@ -417,7 +418,7 @@ imio/smartweb/core/tests/test_subsite.py,sha256=wiD8Ke4_-ArstSYNLCs8ArqOuDx2xxUR
|
|
417
418
|
imio/smartweb/core/tests/test_text.py,sha256=DtZNNGJ-MDYbJ-YQj2C0q2Hr7t4-sUbV6SWkE7tihBY,4652
|
418
419
|
imio/smartweb/core/tests/test_toolbar.py,sha256=dxwOGNOg2wPkAnPU3hqGCI6VL2D2nPOIOtbMorvjfps,3823
|
419
420
|
imio/smartweb/core/tests/test_utils.py,sha256=CkRkK3SbT4oQx_-Nq2Z0AhmhzR4kk2BkIZqSbIiPU04,4125
|
420
|
-
imio/smartweb/core/tests/test_vocabularies.py,sha256=
|
421
|
+
imio/smartweb/core/tests/test_vocabularies.py,sha256=dZTToi6p5-g7MbXjc_Jjj3jTulQBj0e0X0ub3wllL0o,14356
|
421
422
|
imio/smartweb/core/tests/utils.py,sha256=hsDrWOxL0oNNyx92Hke9Kj9ByKzc2kZ19q9QPVsNud4,2688
|
422
423
|
imio/smartweb/core/tests/resources/cirkwi_bad_widget_mock.html,sha256=13YeZ0mo8PoeHIHa64SLKuhNfGqBMT2uprmYDyQxE78,150
|
423
424
|
imio/smartweb/core/tests/resources/cirkwi_good_widget_mock.html,sha256=vBgQwBKNGcGRrOHfXYZO_gmAGL1oKPDIUOnDfXEHCR4,333252
|
@@ -440,10 +441,10 @@ imio/smartweb/core/tests/resources/json_no_contact_raw_mock.json,sha256=tfcIZuQi
|
|
440
441
|
imio/smartweb/core/tests/resources/json_no_newsfolder_raw_mock.json,sha256=qC4sfb5JCGTtZpM6a0t0_k1IADu_oyOazK7fow1gMCU,168
|
441
442
|
imio/smartweb/core/tests/resources/json_procedures_raw_mock.json,sha256=eMrKdEMFtSzpRmAF-PT-YMEXAoi3H0GozMli6znQGuU,3217
|
442
443
|
imio/smartweb/core/tests/resources/json_rest_directory.json,sha256=38tLQnhYtSq5f29a76Cp961D5JRROxyhdBQC5D1Zlf4,42421
|
443
|
-
imio/smartweb/core/tests/resources/json_rest_events.json,sha256=
|
444
|
+
imio/smartweb/core/tests/resources/json_rest_events.json,sha256=Uk29-iTD-xbe3_sfJjt-_p95gWfwH0YAdOax8n9VqCU,46406
|
444
445
|
imio/smartweb/core/tests/resources/json_rest_events_with_breadcrumbs.json,sha256=PaHVrvIu9YB5WCLHhScrIforWDMxgLd6gIpy3lyVVyI,5002
|
445
|
-
imio/smartweb/core/tests/resources/json_rest_news.json,sha256=
|
446
|
-
imio/smartweb/core/tests/resources/json_rest_specific_events.json,sha256=
|
446
|
+
imio/smartweb/core/tests/resources/json_rest_news.json,sha256=1cIh3oxmRJ0Mxj-XseDpc9l96xTi1Rgo0nxmXP5UJJA,45979
|
447
|
+
imio/smartweb/core/tests/resources/json_rest_specific_events.json,sha256=MRpWMGNHriCq-3cYMpUAAaxdfbCd2F6meT_WERMLCCw,1130
|
447
448
|
imio/smartweb/core/tests/resources/json_rest_specific_news.json,sha256=o0tjB3tU5TaicLafYP8EpE5FJDBVgniEwnpG9ixMix0,2064
|
448
449
|
imio/smartweb/core/tests/resources/json_search_one_news_entity.json,sha256=A3jCiokMLEZMnE4ipI39mnWMaFBZsHGpiVYcVS70OXA,369
|
449
450
|
imio/smartweb/core/tests/resources/json_used_iam_vocabularies_jobseeker_tourist.json,sha256=YszwY2xjmOWakE0HHkOElwmLsCfFQ0PilszxrglZ7v4,205
|
@@ -454,7 +455,7 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
|
|
454
455
|
imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
|
455
456
|
imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
|
456
457
|
imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
457
|
-
imio/smartweb/core/upgrades/configure.zcml,sha256=
|
458
|
+
imio/smartweb/core/upgrades/configure.zcml,sha256=AMjEQDBqsaC-0CGTn0rpjvjRa1blLmPZjuBz6PFjxTU,27505
|
458
459
|
imio/smartweb/core/upgrades/upgrades.py,sha256=SZHVeYODErjQZR_LzQ0cxBnJoqWRWsIiRpUhNTMiz7k,8295
|
459
460
|
imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
|
460
461
|
imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
|
@@ -569,6 +570,10 @@ imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Page.xml,s
|
|
569
570
|
imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.PortalPage.xml,sha256=h9d7ik0t38bivtJ4iVbO4UJ-hpURQ1jLiTP2Jp3KVqk,313
|
570
571
|
imio/smartweb/core/upgrades/profiles/1054_to_1055/types/imio.smartweb.Procedure.xml,sha256=lLd6CWzYpZZoHP_bktcV7m5i1BebkPXF4u7fo7oJhxY,312
|
571
572
|
imio/smartweb/core/upgrades/profiles/1055_to_1056/types/imio.smartweb.SectionFiles.xml,sha256=oTc9d6l88GaP311Vs6l0tD8PQ1cwBuWyKt2ekUzkBEU,327
|
573
|
+
imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.EventsView.xml,sha256=JDQg8aqGh4i45Y7og0EDTntvFn5OUc8Cg8HEbVpJi4E,302
|
574
|
+
imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.NewsView.xml,sha256=-NDk8X-QskdvTDldVfoXSIJkt2qEvcJSmN3tBW8NTs8,300
|
575
|
+
imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionEvents.xml,sha256=9cd5zF8L3WL6TYE0ex3ZlYH4ONbP0M-jFJ74IP8akKE,305
|
576
|
+
imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionNews.xml,sha256=XsqAUoZdtKibYQjXeWRqH5xp3mpf_qQGE_KfvcYfBg8,303
|
572
577
|
imio/smartweb/core/viewlets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
573
578
|
imio/smartweb/core/viewlets/actions.py,sha256=QWj_pLNxH4223XPk4b4Dc79DiajF0HHfaXlUmXTwJ8k,661
|
574
579
|
imio/smartweb/core/viewlets/arcgis_header.pt,sha256=iQc5ZG3g1Cmap963OG-wPotllr7oWmVSMoAnA7tctrQ,3428
|
@@ -623,7 +628,7 @@ imio/smartweb/core/webcomponents/README.md,sha256=u-1KMiYzChIOe3BNY1paacCEVsxRit
|
|
623
628
|
imio/smartweb/core/webcomponents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
624
629
|
imio/smartweb/core/webcomponents/babel.config.json,sha256=GLMlFLD4qaaNVuRWogON3geyD75eqVm6cN4RAGwPt3g,194
|
625
630
|
imio/smartweb/core/webcomponents/configure.zcml,sha256=WiA01XuVcc4VgxrvFCztR2nPMCBp2dGIgpIZv6WdJ7s,263
|
626
|
-
imio/smartweb/core/webcomponents/package.json,sha256=
|
631
|
+
imio/smartweb/core/webcomponents/package.json,sha256=hkiIPQirq7L74Vm8gu-nee2dZEexkaa4t23aaNIJj4o,2648
|
627
632
|
imio/smartweb/core/webcomponents/postcss.config.js,sha256=C6AOPegqTEkRboXRWl6obj0priHtdSRiApehW4TWp8E,101
|
628
633
|
imio/smartweb/core/webcomponents/webpack.config.js,sha256=ie90xYAH82rUaPv41_7v-eXTDADH55Z-V9v9gptDC6s,6852
|
629
634
|
imio/smartweb/core/webcomponents/webpackPlonePlugin.js,sha256=TWpGoEYRBOKB7o0SJ1F7P0hLYflkNmbODG7ZCyrPjQw,2226
|
@@ -634,39 +639,38 @@ imio/smartweb/core/webcomponents/build/524db40e119aa11f4478.png,sha256=JK-ueaiNf
|
|
634
639
|
imio/smartweb/core/webcomponents/build/57d3b7cb1ab874660b39.svg,sha256=-1fU9xu8fp0ZFdlbbxPCbHcvWe7omZGAqB5OVr9Yo1s,96
|
635
640
|
imio/smartweb/core/webcomponents/build/6cf03871df23ed2ee8b3.png,sha256=Mue1OF4liw_owHzSf2VG7a-K_yKaOLZmdDlw0wLZhtg,99
|
636
641
|
imio/smartweb/core/webcomponents/build/a38272f263f8328349f2.svg,sha256=JeWqYQXcdN-CD5QObZ0N7x_8BBbcwpcuy11hPGhjwpc,98
|
637
|
-
imio/smartweb/core/webcomponents/build/f79b479fdc5c0fe0d553.svg,sha256=NEDd-lITDNIM7_3A9MB-3Kw2au_9V0cGHcqTCtoOD1A,104
|
638
642
|
imio/smartweb/core/webcomponents/build/assets/layers-2x.8f2c4d11474275fbc1614b9098334eae.png,sha256=Bm2sqFDY_77wB68AsG6sABVyje4nnFHzy2xxbffELt8,1259
|
639
643
|
imio/smartweb/core/webcomponents/build/assets/layers.416d91365b44e4b4f4777663e6f009f3.png,sha256=Hbvp0CjikvNvy6j4s6KNXokydU_CIVuaxp5M3s9RB8Y,696
|
640
644
|
imio/smartweb/core/webcomponents/build/assets/location-bla.1423bcce16ddcb21141430cac1428dc1.svg,sha256=mtr6d8H-n35MSio-pKxEMZoybUpQL6-1MVu4i5dX52g,348
|
641
645
|
imio/smartweb/core/webcomponents/build/assets/marker-icon.2b3e1faf89f94a4835397e7a43b4f77d.png,sha256=V0w6XMqF9BFAhbaEFZbWLwDXyJLHsD8oy_owHesdxDc,1466
|
642
|
-
imio/smartweb/core/webcomponents/build/assets/next-react-white.819cb069ac8eec300a9db6a7707712d6.svg,sha256=qs4ObGT7DOCS5wOj78P856Fh1ej1FVwJgvD1XiGBaMA,628
|
643
646
|
imio/smartweb/core/webcomponents/build/assets/next-react.17bc43ff4a6a86f4520f5782f6a89a72.svg,sha256=mclkssHy8TQDpSI4A8rYyoOdfoTSGnQqeFU2UuEzjFY,628
|
644
647
|
imio/smartweb/core/webcomponents/build/assets/oeil-big.f32cd1df1274a9593de0c4bd8e344216.svg,sha256=xVSktVFHmBKwOQJL8yM4LmPmoNChGoz6RBS7d5QZuUQ,433
|
645
648
|
imio/smartweb/core/webcomponents/build/assets/pin-react-active.07d154037a15be5525b823fdc626cf29.svg,sha256=XgE72Zg25rWhDFtpgRTh6pSWc0utqIobzbez4RYC3kA,330
|
646
649
|
imio/smartweb/core/webcomponents/build/assets/pin-react.fda934b5daf26dd4da2a71a7e7e44431.svg,sha256=kXxN_F5nCL1SUuSvO7dsVz2BCk6lyembEe0ZcDUjEUQ,336
|
647
650
|
imio/smartweb/core/webcomponents/build/assets/search.57bdbf5b191499cd77514097d1c4972c.svg,sha256=VYkbBVirrqBaye-75ns8tcpEqjqpOiXd2CbIqo-M384,426
|
648
|
-
imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css,sha256=
|
651
|
+
imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css,sha256=dsT23RfagbH3XdVh_6uysBXCtuVqOMdtYFXqoNPtGKw,4247
|
649
652
|
imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css,sha256=42VU0g4kl-Dx5y9CPJKx0arZeCWEM0fJW8_SnlC-Q7o,20090
|
650
|
-
imio/smartweb/core/webcomponents/build/css/686.smartweb-webcomponents-compiled.css,sha256=
|
653
|
+
imio/smartweb/core/webcomponents/build/css/686.smartweb-webcomponents-compiled.css,sha256=7CWdl4lcgSewHy2Miax3WPp1NA1jvI07WvKeh1wba3g,42334
|
651
654
|
imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css,sha256=Q5v2A5cZtQ-ZhJOwFeXm7dx7-K8KFIdTr3x4nN-b0R0,2345
|
652
655
|
imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css,sha256=voEpOqKb-f1n1Q5QpTt8nZ9L_Cj_xOc2k6OODJ-KrU4,4524
|
653
|
-
imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js,sha256=
|
654
|
-
imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=
|
655
|
-
imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=
|
656
|
-
imio/smartweb/core/webcomponents/build/js/
|
657
|
-
imio/smartweb/core/webcomponents/build/js/
|
658
|
-
imio/smartweb/core/webcomponents/build/js/
|
659
|
-
imio/smartweb/core/webcomponents/build/js/
|
660
|
-
imio/smartweb/core/webcomponents/build/js/
|
661
|
-
imio/smartweb/core/webcomponents/build/js/
|
662
|
-
imio/smartweb/core/webcomponents/build/js/736.smartweb-webcomponents-compiled.js,sha256=
|
663
|
-
imio/smartweb/core/webcomponents/build/js/736.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=1ah8XiE97o7QfInHez17tYgglgD2E1oRYjoZPKWoorw,680
|
656
|
+
imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js,sha256=TNd52U4GxBlJyeNo94BJQDkp-tqfnB5XNjenDrB01JA,413914
|
657
|
+
imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=QAeU4Rw9Rrv8hnkJvvMeGdkO2ZE20WLcwCpju_UuPQ0,238
|
658
|
+
imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js,sha256=wGr1jFDT4s8BqeXMYkUA9wF4OXh1lpwMOA0jbus4gSk,50069
|
659
|
+
imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=srGNtnoNHz0w5OlaCDZLtTP8yBsDypbLTNk4qjsLvTU,317
|
660
|
+
imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js,sha256=pCFtK4n_IUGl_-Uy3mSJNXppaz-Z_WbtzjVVZIpS4gc,34622
|
661
|
+
imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js,sha256=C4DEpTuaRR0KAUgH9winSpJYpPwOHAOMUdreD7DaX6A,143081
|
662
|
+
imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=eNJ8gc9n9IF8nW1d9sI9niuHstYzjNz5vqXx9UgWSPc,249
|
663
|
+
imio/smartweb/core/webcomponents/build/js/686.smartweb-webcomponents-compiled.js,sha256=PWcABievAoZROc9NMi63apCVjS35VfCptlCZdc0yx1s,36980
|
664
|
+
imio/smartweb/core/webcomponents/build/js/736.smartweb-webcomponents-compiled.js,sha256=bRK4jMPWSISWjriyP_fbFYDpm8tLxN87ar3VKMQ1LuU,167237
|
665
|
+
imio/smartweb/core/webcomponents/build/js/736.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=emtcG6R5b1kJIgNa9COZegA9yGI3O2NkfUemRx5RFs4,680
|
664
666
|
imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js,sha256=FA5QfzUfmlsrCL5il1pWsT4gxkVTfYb_iyz7ccFlO8A,17404
|
665
667
|
imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=R14i0Dp6JC2AOtJVaegrZVAe22i9niDnCBKa5vn7QVc,59
|
666
668
|
imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js,sha256=ca082EaYXpsgjIeedTCxHiJ_-RO09R2WQ28L21QEMrk,153293
|
667
669
|
imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=6nkPO-SYLDPJB1DAWWJjhWo2H2X_Y2llNxj5PCmmUgw,153
|
668
|
-
imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=
|
669
|
-
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=
|
670
|
+
imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js,sha256=1DgLAgFnJKltECvvLaP10hvk5Wg4VIOXBmBfdr4RPcQ,14434
|
671
|
+
imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js,sha256=YLKWqrbFtX1Q2I0gtWEbu7HTVAXe6kbOCWw6CeW8r7Y,299300
|
672
|
+
imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=A-v1lwmuIX1DpNJ1MDzKDMWv7f_d6cjHlGOCEvthhdY,50
|
673
|
+
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js,sha256=OQwkQtw89FG_f6OhznX6cSTVFzhRcYUVkdQVvUbdC_E,413821
|
670
674
|
imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt,sha256=FYZFcv_VsY7Ef-afd5tLGRLLk9j84PX0P_ciZvbFli0,968
|
671
675
|
imio/smartweb/core/webcomponents/src/index.jsx,sha256=AhOVnjiDRWe1vrbFfe_xQaPriClGB694ptzSgoFjTnA,752
|
672
676
|
imio/smartweb/core/webcomponents/src/index.scss,sha256=hEU2ikD2gMq2dTduluMQ8IsAXtcMJf3kRUbyT3P5I94,5766
|
@@ -689,26 +693,26 @@ imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx,sha256=VAK
|
|
689
693
|
imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss,sha256=B9pqeBQyzSBqTuxVe1PtUqmueMn9P1-s0rtoVi1jA1Y,8996
|
690
694
|
imio/smartweb/core/webcomponents/src/components/Annuaire/index.js,sha256=A26LlWeszwIzqu15SiEZ_mcb4NSaChAbT7d4GWEyVlY,96
|
691
695
|
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx,sha256=y1GX404CtQo_J8k8GdfAs_hE6TKqj5rUfhp2AV-ke5E,4875
|
692
|
-
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=
|
696
|
+
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=9Gnb1PHuO-nDCBl14Ap-hdfJmmgUdb50jkdeFbFQr_I,35228
|
693
697
|
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/download.svg,sha256=t0ycTc4BFYUP3A-_qhDXMC12Hb0Lg3gpk8ffQ_yT8ic,348
|
694
698
|
imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx,sha256=Be3IsMzR3Sy1IIyfGCky-iV61kolTQsWxMEOWzPPqQQ,1620
|
695
699
|
imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx,sha256=v5io5Le70Qs2j8mZQuvm-DsIfpyVDnP8nztsvpQ-bq8,7724
|
696
|
-
imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=
|
697
|
-
imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=
|
700
|
+
imio/smartweb/core/webcomponents/src/components/Events/Events.jsx,sha256=9joMZNZzZp3XZ5CUDQdCkFR4b4PEcpSjN4bCccOj0uo,9250
|
701
|
+
imio/smartweb/core/webcomponents/src/components/Events/Events.scss,sha256=bfqaJoo7aqjV84HOzsjRpi5whLDzlNew9y2h6oA2Xgc,8876
|
698
702
|
imio/smartweb/core/webcomponents/src/components/Events/index.js,sha256=DLQwtbr22jrwjTGSiJRiMbcqJNdngRYwW_MP0mwGJUo,95
|
699
|
-
imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=
|
703
|
+
imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx,sha256=uD_s0It7TgM-iN7gflct88ESj_TT2Uoxu7uv4oqzLWw,2037
|
700
704
|
imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=1_sNZLy3285Y_15E9SfVR77Z3_9hI8NZ7qjWEItK8ww,16391
|
701
|
-
imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=
|
705
|
+
imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx,sha256=gaY7zQK3SxBK0hc0o9o-Npxyt--cXb34xdtx284emfA,1660
|
702
706
|
imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx,sha256=__am1guM0amlVQnAiJ3xQkp7LQ-0_JiVMM-NIOqKh3E,7552
|
703
707
|
imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx,sha256=yWZdgoOlXLrhQsprCsaV1O795L7ClrBVk7vAjycgZnA,5631
|
704
708
|
imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss,sha256=9gQ-SR8xzL3aYMP9mSwNKHtzBxWvvXnmPmIoMD9Mkjo,1577
|
705
|
-
imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=
|
706
|
-
imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=
|
709
|
+
imio/smartweb/core/webcomponents/src/components/News/News.jsx,sha256=qXGuP6X6rKM6B4bj6cPmh4oA9__TRywnxqrylhGBckY,7212
|
710
|
+
imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=3kwzJlpNaAHHsRu4Hlkdr3M5LmNZmF8kdp9qeC4kXHY,3884
|
707
711
|
imio/smartweb/core/webcomponents/src/components/News/index.js,sha256=-I1awA2Z7q9UPwBtrr0Ab3TlFRTpDODf2hIJ2r5tGlA,93
|
708
712
|
imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx,sha256=VxXd4yayo-ziaXc_89qXrd1QsGQc7zG_Fuxz3YdWe-A,6225
|
709
|
-
imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx,sha256=
|
713
|
+
imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx,sha256=tTwsY6St164TFos4n-OblgchaBPuFrlwZ2S5ROskBqc,3387
|
710
714
|
imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=8BwB01RMw-G0l4um6oXhmXJjBtb3M5f68LIM2tsZCRo,11638
|
711
|
-
imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=
|
715
|
+
imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=j0Ji-nr4-hI51QFXSzEOX20vUsk1BI215z88aHGNQ9k,1480
|
712
716
|
imio/smartweb/core/webcomponents/src/components/Search/Search.jsx,sha256=ro32NI4tvTq7G1UZgN7RBmE6uLOAY0iVrXbDHRZq07o,2468
|
713
717
|
imio/smartweb/core/webcomponents/src/components/Search/Search.scss,sha256=42xusDRymmcs0FAU-oUIu4EebsZ65yN5GkayQW5jc4E,2571
|
714
718
|
imio/smartweb/core/webcomponents/src/components/Search/index.js,sha256=_UM9GrZj8bAVS_Pw7yaGkRL0CrfjqO93a10PQh1a_xI,94
|
@@ -719,14 +723,14 @@ imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx
|
|
719
723
|
imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx,sha256=qZhQxiF0wK_OYACFFcJKo9ZMSzV5JHjuQqyCZnLx00M,1995
|
720
724
|
imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=Iz72CNBW85km1ejPm056ewMBgjClzpNmjh9hVPE7Hek,1156
|
721
725
|
imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js,sha256=3OhVCCDmzRQCxs-x14UhwiCaqn2aqpwxL4sypt1nlEo,165
|
722
|
-
imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=
|
726
|
+
imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=V2Kw-NHUpo1MmshmWEkzOkBhIGpRLb8z2rv7-O7dBkw,5064
|
723
727
|
imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=xXWz0O-JBwSZrzz2XeQdN4nZEOjppU2sVFtlLQOitQ8,77
|
724
|
-
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=
|
728
|
+
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=F2bevalU4KiqA7JOtoxbU3HJzFH5hGshUcAHFvqxsmg,7540
|
725
729
|
imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
|
726
|
-
imio.smartweb.core-1.2.
|
727
|
-
imio.smartweb.core-1.2.
|
728
|
-
imio.smartweb.core-1.2.
|
729
|
-
imio.smartweb.core-1.2.
|
730
|
-
imio.smartweb.core-1.2.
|
731
|
-
imio.smartweb.core-1.2.
|
732
|
-
imio.smartweb.core-1.2.
|
730
|
+
imio.smartweb.core-1.2.46.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
731
|
+
imio.smartweb.core-1.2.46.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
732
|
+
imio.smartweb.core-1.2.46.dist-info/METADATA,sha256=LAlMBJehcQLlwHrM3VPCSohoE8_F90MtZ1Ywpv8Kesc,52525
|
733
|
+
imio.smartweb.core-1.2.46.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
734
|
+
imio.smartweb.core-1.2.46.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
735
|
+
imio.smartweb.core-1.2.46.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
736
|
+
imio.smartweb.core-1.2.46.dist-info/RECORD,,
|
imio/smartweb/core/webcomponents/build/assets/next-react-white.819cb069ac8eec300a9db6a7707712d6.svg
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20.44 10"><g id="Calque_2" data-name="Calque 2"><g id="Calque_1-2" data-name="Calque 1"><g id="ui-arrow-right"><g id="arrow"><line id="Ligne_7" data-name="Ligne 7" x1="1" y1="5" x2="19.44" y2="5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-width:2px"/><line id="Ligne_8" data-name="Ligne 8" x1="14.83" y1="1" x2="19.44" y2="5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-width:2px"/><line id="Ligne_9" data-name="Ligne 9" x1="14.83" y1="9" x2="19.44" y2="5" style="fill:none;stroke:#fff;stroke-linecap:round;stroke-width:2px"/></g></g></g></g></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
export default __webpack_public_path__ + "assets/next-react-white.819cb069ac8eec300a9db6a7707712d6.svg";
|