imio.smartweb.core 1.2.66__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 (52) hide show
  1. imio/smartweb/core/browser/controlpanel.py +41 -0
  2. imio/smartweb/core/contents/__init__.py +2 -0
  3. imio/smartweb/core/contents/configure.zcml +1 -0
  4. imio/smartweb/core/contents/publication/__init__.py +0 -0
  5. imio/smartweb/core/contents/publication/configure.zcml +5 -0
  6. imio/smartweb/core/contents/publication/content.py +23 -0
  7. imio/smartweb/core/contents/sections/common_templates/table.pt +13 -3
  8. imio/smartweb/core/contents/sections/files/content.py +7 -1
  9. imio/smartweb/core/contents/sections/files/view.py +38 -11
  10. imio/smartweb/core/contents/sections/views.py +19 -6
  11. imio/smartweb/core/profiles/default/metadata.xml +1 -1
  12. imio/smartweb/core/profiles/default/types/imio.smartweb.Publication.xml +38 -0
  13. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml +1 -0
  14. imio/smartweb/core/profiles/default/types.xml +1 -0
  15. imio/smartweb/core/subscribers.py +24 -0
  16. imio/smartweb/core/subscribers.zcml +4 -0
  17. imio/smartweb/core/tests/resources/json_iadeliberations_institutions.json +60 -0
  18. imio/smartweb/core/tests/resources/json_iadeliberations_publication.json +105 -0
  19. imio/smartweb/core/tests/resources/json_iadeliberations_publications.json +270 -0
  20. imio/smartweb/core/tests/test_iadeliberations.py +136 -0
  21. imio/smartweb/core/tests/test_vocabularies.py +54 -0
  22. imio/smartweb/core/upgrades/configure.zcml +37 -1
  23. imio/smartweb/core/upgrades/profiles/1059_to_1060/registry/iadeliberation.xml +9 -0
  24. imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.Publication.xml +38 -0
  25. imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.SectionFiles.xml +11 -0
  26. imio/smartweb/core/upgrades/profiles/1060_to_1061/types.xml +4 -0
  27. imio/smartweb/core/upgrades/profiles/1060_to_1061/workflows.xml +6 -0
  28. imio/smartweb/core/utils.py +27 -0
  29. imio/smartweb/core/vocabularies.py +44 -0
  30. imio/smartweb/core/vocabularies.zcml +12 -0
  31. imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +1 -1
  32. imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
  33. imio/smartweb/core/webcomponents/build/js/{324.smartweb-webcomponents-compiled.js → 828.smartweb-webcomponents-compiled.js} +2 -2
  34. imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -1
  35. imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
  36. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
  37. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +14 -1
  38. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +14 -1
  39. imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx +14 -1
  40. imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx +14 -1
  41. imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +14 -1
  42. imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx +14 -1
  43. imio.smartweb.core-1.2.67-py3.10-nspkg.pth +3 -0
  44. {imio.smartweb.core-1.2.66.dist-info → imio.smartweb.core-1.2.67.dist-info}/METADATA +17 -3
  45. {imio.smartweb.core-1.2.66.dist-info → imio.smartweb.core-1.2.67.dist-info}/RECORD +51 -38
  46. {imio.smartweb.core-1.2.66.dist-info → imio.smartweb.core-1.2.67.dist-info}/WHEEL +1 -1
  47. imio.smartweb.core-1.2.66-py3.8-nspkg.pth +0 -2
  48. /imio/smartweb/core/webcomponents/build/js/{324.smartweb-webcomponents-compiled.js.LICENSE.txt → 828.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  49. {imio.smartweb.core-1.2.66.dist-info → imio.smartweb.core-1.2.67.dist-info}/LICENSE.GPL +0 -0
  50. {imio.smartweb.core-1.2.66.dist-info → imio.smartweb.core-1.2.67.dist-info}/LICENSE.rst +0 -0
  51. {imio.smartweb.core-1.2.66.dist-info → imio.smartweb.core-1.2.67.dist-info}/namespace_packages.txt +0 -0
  52. {imio.smartweb.core-1.2.66.dist-info → imio.smartweb.core-1.2.67.dist-info}/top_level.txt +0 -0
@@ -64,7 +64,20 @@ const ContactCard = ({ item, contextAuthenticatedUser }) => {
64
64
  title="Editer la fiche"
65
65
  className="edit-rest-elements"
66
66
  >
67
- <i class="bi bi-pencil-square"></i>
67
+ <svg
68
+ xmlns="http://www.w3.org/2000/svg"
69
+ width="16"
70
+ height="16"
71
+ fill="currentColor"
72
+ class="bi bi-pencil-square"
73
+ viewBox="0 0 16 16"
74
+ >
75
+ <path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z" />
76
+ <path
77
+ fill-rule="evenodd"
78
+ d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z"
79
+ />
80
+ </svg>
68
81
  </a>
69
82
  ) : (
70
83
  ""
@@ -111,7 +111,20 @@ const ContactContent = ({ queryUrl, onChange, contextAuthenticatedUser }) => {
111
111
  title="Editer la fiche"
112
112
  className="edit-rest-elements edit-rest-elements-content"
113
113
  >
114
- <i class="bi bi-pencil-square"></i>
114
+ <svg
115
+ xmlns="http://www.w3.org/2000/svg"
116
+ width="16"
117
+ height="16"
118
+ fill="currentColor"
119
+ class="bi bi-pencil-square"
120
+ viewBox="0 0 16 16"
121
+ >
122
+ <path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z" />
123
+ <path
124
+ fill-rule="evenodd"
125
+ d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z"
126
+ />
127
+ </svg>
115
128
  </a>
116
129
  ) : (
117
130
  ""
@@ -16,7 +16,20 @@ const ContactCard = ({ item, showCategoriesOrTopics, contextAuthenticatedUser })
16
16
  title="Editer la fiche"
17
17
  className="edit-rest-elements"
18
18
  >
19
- <i class="bi bi-pencil-square"></i>
19
+ <svg
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ width="16"
22
+ height="16"
23
+ fill="currentColor"
24
+ class="bi bi-pencil-square"
25
+ viewBox="0 0 16 16"
26
+ >
27
+ <path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z" />
28
+ <path
29
+ fill-rule="evenodd"
30
+ d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z"
31
+ />
32
+ </svg>
20
33
  </a>
21
34
  ) : (
22
35
  ""
@@ -134,7 +134,20 @@ const ContactContent = ({ queryUrl, onChange, onlyPastEvents, contextAuthenticat
134
134
  title="Editer la fiche"
135
135
  className="edit-rest-elements edit-rest-elements-content"
136
136
  >
137
- <i class="bi bi-pencil-square"></i>
137
+ <svg
138
+ xmlns="http://www.w3.org/2000/svg"
139
+ width="16"
140
+ height="16"
141
+ fill="currentColor"
142
+ class="bi bi-pencil-square"
143
+ viewBox="0 0 16 16"
144
+ >
145
+ <path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z" />
146
+ <path
147
+ fill-rule="evenodd"
148
+ d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z"
149
+ />
150
+ </svg>
138
151
  </a>
139
152
  ) : (
140
153
  ""
@@ -69,7 +69,20 @@ const ContactContent = ({ queryUrl, onChange, contextAuthenticatedUser }) => {
69
69
  title="Editer la fiche"
70
70
  className="edit-rest-elements edit-rest-elements-content"
71
71
  >
72
- <i class="bi bi-pencil-square"></i>
72
+ <svg
73
+ xmlns="http://www.w3.org/2000/svg"
74
+ width="16"
75
+ height="16"
76
+ fill="currentColor"
77
+ class="bi bi-pencil-square"
78
+ viewBox="0 0 16 16"
79
+ >
80
+ <path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z" />
81
+ <path
82
+ fill-rule="evenodd"
83
+ d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z"
84
+ />
85
+ </svg>
73
86
  </a>
74
87
  ) : (
75
88
  ""
@@ -26,7 +26,20 @@ const NewsList = ({ itemsArray, onChange, showCategoriesOrTopics, contextAuthent
26
26
  title="Editer la fiche"
27
27
  className="edit-rest-elements edit-rest-elements-news"
28
28
  >
29
- <i class="bi bi-pencil-square"></i>
29
+ <svg
30
+ xmlns="http://www.w3.org/2000/svg"
31
+ width="16"
32
+ height="16"
33
+ fill="currentColor"
34
+ class="bi bi-pencil-square"
35
+ viewBox="0 0 16 16"
36
+ >
37
+ <path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z" />
38
+ <path
39
+ fill-rule="evenodd"
40
+ d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z"
41
+ />
42
+ </svg>
30
43
  </a>
31
44
  ) : (
32
45
  ""
@@ -0,0 +1,3 @@
1
+ import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('imio',));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('imio', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('imio', [os.path.dirname(p)])));m = m or sys.modules.setdefault('imio', types.ModuleType('imio'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
2
+ import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('imio',));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('imio', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('imio', [os.path.dirname(p)])));m = m or sys.modules.setdefault('imio', types.ModuleType('imio'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
3
+ import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('imio', 'smartweb'));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('imio.smartweb', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('imio.smartweb', [os.path.dirname(p)])));m = m or sys.modules.setdefault('imio.smartweb', types.ModuleType('imio.smartweb'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p);m and setattr(sys.modules['imio'], 'smartweb', m)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: imio.smartweb.core
3
- Version: 1.2.66
3
+ Version: 1.2.67
4
4
  Summary: Core product for iMio websites
5
5
  Home-page: https://github.com/imio/imio.smartweb.core
6
6
  Author: Christophe Boulanger
@@ -28,7 +28,7 @@ License-File: LICENSE.rst
28
28
  Requires-Dist: setuptools
29
29
  Requires-Dist: z3c.jbot
30
30
  Requires-Dist: z3c.unconfigure
31
- Requires-Dist: plone.api >=1.8.4
31
+ Requires-Dist: plone.api (>=1.8.4)
32
32
  Requires-Dist: plone.gallery
33
33
  Requires-Dist: plone.restapi
34
34
  Requires-Dist: plone.app.dexterity
@@ -50,7 +50,7 @@ Requires-Dist: imio.smartweb.common
50
50
  Requires-Dist: imio.smartweb.locales
51
51
  Provides-Extra: test
52
52
  Requires-Dist: plone.app.testing ; extra == 'test'
53
- Requires-Dist: plone.testing >=5.0.0 ; extra == 'test'
53
+ Requires-Dist: plone.testing (>=5.0.0) ; extra == 'test'
54
54
  Requires-Dist: plone.app.contenttypes ; extra == 'test'
55
55
  Requires-Dist: plone.app.robotframework[debug] ; extra == 'test'
56
56
  Requires-Dist: plone.restapi[test] ; extra == 'test'
@@ -191,6 +191,19 @@ Changelog
191
191
  =========
192
192
 
193
193
 
194
+ 1.2.67 (2024-09-04)
195
+ -------------------
196
+
197
+ - WEB-4134 : Timestamping : code refactoring, fix view , improve some tests
198
+ [boulch]
199
+
200
+ - Fix: Replace i tag with svg icon in React view
201
+ [thomlamb]
202
+
203
+ - WEB-4134 : Manage timestamping in coordination with ia.deliberations' rest api
204
+ [boulch]
205
+
206
+
194
207
  1.2.66 (2024-08-27)
195
208
  -------------------
196
209
 
@@ -203,6 +216,7 @@ Changelog
203
216
  - WEB-4138 : Adding link on React elements to edit them
204
217
  [thomlamb]
205
218
 
219
+
206
220
  1.2.65 (2024-08-13)
207
221
  -------------------
208
222
 
@@ -1,4 +1,4 @@
1
- imio.smartweb.core-1.2.66-py3.8-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
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
@@ -157,8 +157,8 @@ imio/smartweb/core/browser/subsite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
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
@@ -206,6 +206,9 @@ 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
@@ -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
@@ -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
@@ -670,22 +683,22 @@ imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.c
670
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=LaMcEHi-WknabCXNllHxnoYcf8Qc8n1Eq65I-i4ZEQw,54857
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=tSN0UCLR8lJ0Y9N5eNhjHeCeaWBQArtF3tzhoAXdpkc,39435
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=SFoc5Kgqqd4_zLj-8zURWlmu9vsQAW5BQiFvBBtx3eI,46018
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
704
  imio/smartweb/core/webcomponents/src/index.scss,sha256=dZeq50JtAf3iJ_HGZrT7Vg8Ok2XPHAx58owPGNRfvBo,5673
@@ -702,15 +715,15 @@ imio/smartweb/core/webcomponents/src/assets/contentIcon/download.svg,sha256=t0yc
702
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=4FumV3AufO2z2gGBNrVwEorjej81hSo9xgMUYeQpnSY,5796
706
- imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx,sha256=Gfx8rpLlwDHlPfpKcjjaTXEcAY6Xbbzyzlltm8OGO5Q,35797
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
707
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
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=MhLHFY_zOHboQIF3FI9BOgSMSoRI_QpbJYToL-KGAmI,2735
713
- imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx,sha256=QUi5znNnj_JxMlzaxiRwSzkmRpB4ulSsf4jWZWp11hY,35856
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
714
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
@@ -726,8 +739,8 @@ imio/smartweb/core/webcomponents/src/components/News/News.scss,sha256=6N4xW_2IUl
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
741
  imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx,sha256=3Zg328ZxgjtoKtYYxkmHZSafP11vzNPijACxj-z2LGI,3965
729
- imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx,sha256=glo4-CGiEgoLvx1FNY6aiOO5fbk9ZmeXlO4SmnAtlwM,18619
730
- imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx,sha256=Rg93Zpu2xIpz91TFa0MYFFtyws2qtj23vgzwXpUWiMY,2696
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.66.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
747
- imio.smartweb.core-1.2.66.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
748
- imio.smartweb.core-1.2.66.dist-info/METADATA,sha256=YltnyQbo_S_CLodAyJh0R5XiAA4gngjRHjxBvevmy5k,56149
749
- imio.smartweb.core-1.2.66.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
750
- imio.smartweb.core-1.2.66.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
751
- imio.smartweb.core-1.2.66.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
752
- imio.smartweb.core-1.2.66.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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: bdist_wheel (0.40.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,2 +0,0 @@
1
- import sys, types, os;p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('imio',));importlib = __import__('importlib.util');__import__('importlib.machinery');m = sys.modules.setdefault('imio', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('imio', [os.path.dirname(p)])));m = m or sys.modules.setdefault('imio', types.ModuleType('imio'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
2
- import sys, types, os;p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('imio', 'smartweb'));importlib = __import__('importlib.util');__import__('importlib.machinery');m = sys.modules.setdefault('imio.smartweb', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('imio.smartweb', [os.path.dirname(p)])));m = m or sys.modules.setdefault('imio.smartweb', types.ModuleType('imio.smartweb'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p);m and setattr(sys.modules['imio'], 'smartweb', m)