imio.smartweb.core 1.2.37__py3-none-any.whl → 1.2.79__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 (222) hide show
  1. imio/smartweb/core/behaviors/categorization.py +24 -0
  2. imio/smartweb/core/behaviors/configure.zcml +7 -0
  3. imio/smartweb/core/browser/controlpanel.py +43 -0
  4. imio/smartweb/core/browser/faceted/block_view.pt +4 -4
  5. imio/smartweb/core/browser/faceted/summary_view.pt +4 -4
  6. imio/smartweb/core/browser/sitemap.py +10 -3
  7. imio/smartweb/core/browser/static/icons/action-delete.svg +3 -0
  8. imio/smartweb/core/browser/static/icons/action-engagement-2.svg +4 -0
  9. imio/smartweb/core/browser/static/icons/action-panneaux.svg +3 -0
  10. imio/smartweb/core/browser/static/icons/action-vote.svg +3 -0
  11. imio/smartweb/core/browser/static/icons/categorie-attention.svg +3 -0
  12. imio/smartweb/core/browser/static/icons/categorie-infos-travaux-2.svg +4 -0
  13. imio/smartweb/core/browser/static/icons/categorie-nature.svg +3 -0
  14. imio/smartweb/core/browser/static/icons/categorie-parcs-a-conteneurs.svg +4 -0
  15. imio/smartweb/core/browser/static/icons/categorie-plus.svg +3 -0
  16. imio/smartweb/core/browser/static/icons/categorie-primes-2.svg +5 -0
  17. imio/smartweb/core/browser/static/icons/categorie-sport-natation.svg +4 -0
  18. imio/smartweb/core/browser/static/icons/organisation-ecole-sac.svg +4 -0
  19. imio/smartweb/core/browser/static/icons/organisation-scout.svg +3 -0
  20. imio/smartweb/core/browser/static/icons/reseausocial-behance.svg +3 -0
  21. imio/smartweb/core/browser/static/icons/reseausocial-linkedin.svg +3 -0
  22. imio/smartweb/core/browser/static/smartweb-edit-compiled.css +1 -1
  23. imio/smartweb/core/browser/static/smartweb-view-compiled.css +1 -1
  24. imio/smartweb/core/browser/static/src/edit.less +42 -0
  25. imio/smartweb/core/browser/static/src/view.less +109 -56
  26. imio/smartweb/core/browser/vocabulary.py +8 -3
  27. imio/smartweb/core/contents/__init__.py +2 -0
  28. imio/smartweb/core/contents/configure.zcml +1 -0
  29. imio/smartweb/core/contents/folder/block_view.pt +8 -8
  30. imio/smartweb/core/contents/folder/summary_view.pt +4 -4
  31. imio/smartweb/core/contents/pages/cirkwi/content.py +5 -0
  32. imio/smartweb/core/contents/pages/cirkwi/view.py +2 -1
  33. imio/smartweb/core/contents/pages/configure.zcml +1 -0
  34. imio/smartweb/core/contents/pages/portal_page/view.py +3 -0
  35. imio/smartweb/core/contents/pages/views.py +47 -1
  36. imio/smartweb/core/contents/publication/__init__.py +0 -0
  37. imio/smartweb/core/contents/publication/configure.zcml +5 -0
  38. imio/smartweb/core/contents/publication/content.py +23 -0
  39. imio/smartweb/core/contents/rest/base.py +9 -7
  40. imio/smartweb/core/contents/rest/directory/endpoint.py +2 -2
  41. imio/smartweb/core/contents/rest/directory/view.pt +2 -1
  42. imio/smartweb/core/contents/rest/events/content.py +13 -0
  43. imio/smartweb/core/contents/rest/events/endpoint.py +5 -3
  44. imio/smartweb/core/contents/rest/events/view.pt +5 -1
  45. imio/smartweb/core/contents/rest/events/view.py +12 -0
  46. imio/smartweb/core/contents/rest/news/content.py +6 -0
  47. imio/smartweb/core/contents/rest/news/endpoint.py +4 -2
  48. imio/smartweb/core/contents/rest/news/view.pt +4 -1
  49. imio/smartweb/core/contents/rest/news/view.py +8 -0
  50. imio/smartweb/core/contents/rest/utils.py +0 -1
  51. imio/smartweb/core/contents/rest/view.py +4 -0
  52. imio/smartweb/core/contents/sections/common_templates/carousel.pt +5 -1
  53. imio/smartweb/core/contents/sections/common_templates/table.pt +18 -4
  54. imio/smartweb/core/contents/sections/configure.zcml +18 -0
  55. imio/smartweb/core/contents/sections/contact/content.py +2 -2
  56. imio/smartweb/core/contents/sections/contact/macros.pt +28 -3
  57. imio/smartweb/core/contents/sections/contact/utils.py +2 -0
  58. imio/smartweb/core/contents/sections/contact/view.py +28 -12
  59. imio/smartweb/core/contents/sections/events/content.py +12 -4
  60. imio/smartweb/core/contents/sections/events/view.py +20 -2
  61. imio/smartweb/core/contents/sections/external_content/view.pt +4 -4
  62. imio/smartweb/core/contents/sections/external_content/views.py +6 -4
  63. imio/smartweb/core/contents/sections/files/content.py +7 -1
  64. imio/smartweb/core/contents/sections/files/view.py +43 -12
  65. imio/smartweb/core/contents/sections/links/view.py +5 -0
  66. imio/smartweb/core/contents/sections/macros.pt +26 -0
  67. imio/smartweb/core/contents/sections/news/content.py +11 -3
  68. imio/smartweb/core/contents/sections/news/view.py +20 -2
  69. imio/smartweb/core/contents/sections/text/views.py +2 -0
  70. imio/smartweb/core/contents/sections/views.py +73 -10
  71. imio/smartweb/core/interfaces.py +4 -0
  72. imio/smartweb/core/profiles/default/metadata.xml +1 -1
  73. imio/smartweb/core/profiles/default/taxonomies/page_category.xml +16 -0
  74. imio/smartweb/core/profiles/default/taxonomies/procedure_category.xml +26 -0
  75. imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml +1 -0
  76. imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml +1 -0
  77. imio/smartweb/core/profiles/default/types/imio.smartweb.Publication.xml +38 -0
  78. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml +1 -0
  79. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml +2 -0
  80. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml +1 -0
  81. imio/smartweb/core/profiles/default/types.xml +1 -0
  82. imio/smartweb/core/profiles/icons/basic/registry.xml +120 -0
  83. imio/smartweb/core/rest/authentic_sources.py +17 -2
  84. imio/smartweb/core/subscribers.py +48 -0
  85. imio/smartweb/core/subscribers.zcml +12 -0
  86. imio/smartweb/core/tests/resources/json_iadeliberations_institutions.json +60 -0
  87. imio/smartweb/core/tests/resources/json_iadeliberations_publication.json +105 -0
  88. imio/smartweb/core/tests/resources/json_iadeliberations_publications.json +270 -0
  89. imio/smartweb/core/tests/resources/json_rest_events.json +6 -2
  90. imio/smartweb/core/tests/resources/json_rest_news.json +2 -2
  91. imio/smartweb/core/tests/resources/json_rest_specific_events.json +1 -1
  92. imio/smartweb/core/tests/test_htmx_in_sections.py +131 -0
  93. imio/smartweb/core/tests/test_iadeliberations.py +136 -0
  94. imio/smartweb/core/tests/test_icons.py +1 -1
  95. imio/smartweb/core/tests/test_rest.py +58 -17
  96. imio/smartweb/core/tests/test_section_contact.py +42 -10
  97. imio/smartweb/core/tests/test_section_events.py +28 -5
  98. imio/smartweb/core/tests/test_section_external_content.py +28 -2
  99. imio/smartweb/core/tests/test_section_news.py +30 -8
  100. imio/smartweb/core/tests/test_sections.py +17 -0
  101. imio/smartweb/core/tests/test_vocabularies.py +60 -3
  102. imio/smartweb/core/tests/test_vocabulary.py +43 -0
  103. imio/smartweb/core/upgrades/configure.zcml +108 -0
  104. imio/smartweb/core/upgrades/profiles/1055_to_1056/types/imio.smartweb.SectionFiles.xml +12 -0
  105. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.EventsView.xml +11 -0
  106. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.NewsView.xml +11 -0
  107. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionEvents.xml +11 -0
  108. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionNews.xml +11 -0
  109. imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.cfg +9 -0
  110. imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.xml +73 -0
  111. imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.cfg +9 -0
  112. imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.xml +118 -0
  113. imio/smartweb/core/upgrades/profiles/1058_to_1059/registry/linkedin-icon.xml +126 -0
  114. imio/smartweb/core/upgrades/profiles/1059_to_1060/registry/iadeliberation.xml +9 -0
  115. imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.Publication.xml +38 -0
  116. imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.SectionFiles.xml +11 -0
  117. imio/smartweb/core/upgrades/profiles/1060_to_1061/types.xml +4 -0
  118. imio/smartweb/core/upgrades/profiles/1060_to_1061/workflows.xml +6 -0
  119. imio/smartweb/core/utils.py +33 -2
  120. imio/smartweb/core/viewlets/configure.zcml +23 -1
  121. imio/smartweb/core/viewlets/footer.pt +5 -0
  122. imio/smartweb/core/viewlets/footer.py +5 -0
  123. imio/smartweb/core/viewlets/htmx.py +15 -0
  124. imio/smartweb/core/viewlets/htmx_js_header.pt +64 -0
  125. imio/smartweb/core/viewlets/ogptags.py +4 -3
  126. imio/smartweb/core/viewlets/social.py +23 -0
  127. imio/smartweb/core/vocabularies.py +65 -3
  128. imio/smartweb/core/vocabularies.zcml +18 -0
  129. imio/smartweb/core/webcomponents/build/1c1605a5fe9a2b10a88f.png +1 -0
  130. imio/smartweb/core/webcomponents/build/524db40e119aa11f4478.png +1 -0
  131. imio/smartweb/core/webcomponents/build/57d3b7cb1ab874660b39.svg +1 -0
  132. imio/smartweb/core/webcomponents/build/6cf03871df23ed2ee8b3.png +1 -0
  133. imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css +1 -1
  134. imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css +1 -1
  135. imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css +1 -0
  136. imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css +1 -1
  137. imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +1 -1
  138. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +1 -1
  139. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt +10 -8
  140. imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +2 -1
  141. imio/smartweb/core/webcomponents/build/js/{568.smartweb-webcomponents-compiled.js.LICENSE.txt → 373.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -4
  142. imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
  143. imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js +2 -0
  144. imio/smartweb/core/webcomponents/build/js/{674.smartweb-webcomponents-compiled.js.LICENSE.txt → 499.smartweb-webcomponents-compiled.js.LICENSE.txt} +1 -8
  145. imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js +1 -1
  146. imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js +2 -0
  147. imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js +2 -0
  148. imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js.LICENSE.txt +32 -0
  149. imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -0
  150. imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
  151. imio/smartweb/core/webcomponents/build/js/{568.smartweb-webcomponents-compiled.js → 963.smartweb-webcomponents-compiled.js} +2 -2
  152. imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt +3 -0
  153. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
  154. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt +11 -14
  155. imio/smartweb/core/webcomponents/package.json +42 -40
  156. imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx +146 -79
  157. imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +415 -351
  158. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +95 -62
  159. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +328 -168
  160. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx +21 -4
  161. imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx +213 -100
  162. imio/smartweb/core/webcomponents/src/components/Annuaire/index.js +1 -1
  163. imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx +76 -33
  164. imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx +604 -377
  165. imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx +29 -4
  166. imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +162 -88
  167. imio/smartweb/core/webcomponents/src/components/Events/Events.scss +496 -378
  168. imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx +259 -91
  169. imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx +62 -55
  170. imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss +68 -17
  171. imio/smartweb/core/webcomponents/src/components/Filters/IamData.jsx +42 -0
  172. imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss +229 -0
  173. imio/smartweb/core/webcomponents/src/components/Filters/PublicTargetData.jsx +94 -0
  174. imio/smartweb/core/webcomponents/src/components/Filters/SelectStyles.js +58 -0
  175. imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.jsx +149 -0
  176. imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.scss +70 -0
  177. imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx +139 -83
  178. imio/smartweb/core/webcomponents/src/components/News/News.jsx +133 -67
  179. imio/smartweb/core/webcomponents/src/components/News/News.scss +170 -127
  180. imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx +76 -44
  181. imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +261 -188
  182. imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx +48 -9
  183. imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx +21 -10
  184. imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx +21 -10
  185. imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx +8 -9
  186. imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx +23 -12
  187. imio/smartweb/core/webcomponents/src/components/Search/Search.jsx +7 -6
  188. imio/smartweb/core/webcomponents/src/components/Search/Search.scss +115 -96
  189. imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx +12 -3
  190. imio/smartweb/core/webcomponents/src/components/Search/index.js +1 -1
  191. imio/smartweb/core/webcomponents/src/hooks/ScrollContext.jsx +3 -0
  192. imio/smartweb/core/webcomponents/src/hooks/useAxios.js +3 -3
  193. imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js +1 -2
  194. imio/smartweb/core/webcomponents/src/index.scss +255 -211
  195. imio/smartweb/core/webcomponents/src/utils/Map.jsx +26 -19
  196. imio/smartweb/core/webcomponents/src/utils/Map.scss +2 -2
  197. imio/smartweb/core/webcomponents/src/utils/translation.js +129 -9
  198. imio.smartweb.core-1.2.79-py3.8-nspkg.pth +2 -0
  199. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/METADATA +413 -10
  200. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/RECORD +206 -160
  201. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/WHEEL +1 -1
  202. imio/smartweb/core/webcomponents/build/assets/location-bla.1423bcce16ddcb21141430cac1428dc1.svg +0 -1
  203. imio/smartweb/core/webcomponents/build/assets/next-react-white.819cb069ac8eec300a9db6a7707712d6.svg +0 -1
  204. imio/smartweb/core/webcomponents/build/assets/next-react.17bc43ff4a6a86f4520f5782f6a89a72.svg +0 -1
  205. imio/smartweb/core/webcomponents/build/assets/search.57bdbf5b191499cd77514097d1c4972c.svg +0 -1
  206. imio/smartweb/core/webcomponents/build/css/686.smartweb-webcomponents-compiled.css +0 -1
  207. imio/smartweb/core/webcomponents/build/js/209.smartweb-webcomponents-compiled.js +0 -2
  208. imio/smartweb/core/webcomponents/build/js/674.smartweb-webcomponents-compiled.js +0 -2
  209. imio/smartweb/core/webcomponents/build/js/686.smartweb-webcomponents-compiled.js +0 -1
  210. imio/smartweb/core/webcomponents/build/js/804.smartweb-webcomponents-compiled.js +0 -1
  211. imio/smartweb/core/webcomponents/src/assets/facebook-news.svg +0 -1
  212. imio/smartweb/core/webcomponents/src/assets/location-bla.svg +0 -1
  213. imio/smartweb/core/webcomponents/src/assets/next-react.svg +0 -1
  214. imio/smartweb/core/webcomponents/src/assets/search.svg +0 -1
  215. imio/smartweb/core/webcomponents/src/assets/skeleton.svg +0 -1
  216. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/download.svg +0 -1
  217. imio.smartweb.core-1.2.37-py3.10-nspkg.pth +0 -3
  218. /imio/smartweb/core/webcomponents/build/js/{209.smartweb-webcomponents-compiled.js.LICENSE.txt → 824.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  219. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/LICENSE.GPL +0 -0
  220. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/LICENSE.rst +0 -0
  221. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/namespace_packages.txt +0 -0
  222. {imio.smartweb.core-1.2.37.dist-info → imio.smartweb.core-1.2.79.dist-info}/top_level.txt +0 -0
@@ -4,6 +4,9 @@ from imio.smartweb.common.faceted.utils import configure_faceted
4
4
  from imio.smartweb.common.utils import is_log_active
5
5
  from imio.smartweb.common.utils import remove_cropping
6
6
  from imio.smartweb.core.behaviors.minisite import IImioSmartwebMinisite
7
+ from imio.smartweb.core.interfaces import IOdwbViewUtils
8
+ from imio.smartweb.core.utils import get_iadeliberation_institution_from_registry
9
+ from imio.smartweb.core.utils import get_iadeliberation_json
7
10
  from imio.smartweb.core.utils import safe_html
8
11
  from imio.smartweb.locales import SmartwebMessageFactory as _
9
12
  from plone import api
@@ -12,6 +15,8 @@ from plone.app.layout.navigation.interfaces import INavigationRoot
12
15
  from plone.namedfile.field import NamedBlobImage
13
16
  from zope.annotation.interfaces import IAnnotations
14
17
  from zope.component import getMultiAdapter
18
+ from zope.interface import alsoProvides
19
+ from zope.interface import noLongerProvides
15
20
  from zope.lifecycleevent import ObjectRemovedEvent
16
21
  from zope.lifecycleevent.interfaces import IAttributes
17
22
  from zope.globalrequest import getRequest
@@ -106,3 +111,46 @@ def modified_content(obj, event):
106
111
  class_name = d.interface.__identifier__.split(".")[-1]
107
112
  for field_name in d.attributes:
108
113
  check_image_field(obj, d.interface, class_name, field_name)
114
+
115
+
116
+ def added_publication(obj, event):
117
+ """save json attributes on object attributes"""
118
+ # query the deliberation API with the
119
+ # selected publication UID to retrieve all informations
120
+ iadeliberation_institution = get_iadeliberation_institution_from_registry()
121
+ url = f"{iadeliberation_institution}/publications/{obj.linked_publication}?fullobjects=y"
122
+ try:
123
+ json_publication = get_iadeliberation_json(url)
124
+ obj.title = json_publication.get("title")
125
+ obj.description = json_publication.get("description")
126
+ obj.publication_uid = json_publication.get("UID")
127
+ obj.publication_url = json_publication.get("@id")
128
+ obj.publication_datetime = json_publication.get("effective")
129
+ obj.publication_document_type = json_publication.get("document_type").get(
130
+ "title"
131
+ )
132
+ obj.publication_category = json_publication.get("category").get("title")
133
+ obj.publication_attached_file = json_publication.get("file")
134
+ except Exception:
135
+ logger.error(f"Error while trying to get publication data from {url}")
136
+
137
+
138
+ def added_external_content(obj, event):
139
+ parent = obj.aq_parent
140
+ if not IOdwbViewUtils.providedBy(parent):
141
+ alsoProvides(parent, IOdwbViewUtils)
142
+ parent.reindexObject()
143
+
144
+
145
+ def removed_external_content(obj, event):
146
+ parent = obj.aq_parent
147
+ sections_external_content = parent.listFolderContents(
148
+ contentFilter={
149
+ "portal_type": [
150
+ "imio.smartweb.SectionExternalContent",
151
+ ]
152
+ }
153
+ )
154
+ if IOdwbViewUtils.providedBy(parent) and len(sections_external_content) == 0:
155
+ noLongerProvides(parent, IOdwbViewUtils)
156
+ parent.reindexObject()
@@ -21,4 +21,16 @@
21
21
  zope.lifecycleevent.interfaces.IObjectModifiedEvent"
22
22
  handler=".subscribers.modified_content" />
23
23
 
24
+ <subscriber for="imio.smartweb.core.contents.IPublication
25
+ zope.lifecycleevent.interfaces.IObjectAddedEvent"
26
+ handler=".subscribers.added_publication" />
27
+
28
+ <subscriber for="imio.smartweb.core.contents.ISectionExternalContent
29
+ zope.lifecycleevent.interfaces.IObjectAddedEvent"
30
+ handler=".subscribers.added_external_content" />
31
+
32
+ <subscriber for="imio.smartweb.core.contents.ISectionExternalContent
33
+ zope.lifecycleevent.interfaces.IObjectRemovedEvent"
34
+ handler=".subscribers.removed_external_content" />
35
+
24
36
  </configure>
@@ -0,0 +1,60 @@
1
+ {
2
+ "@id": "https://conseil.staging.imio.be/@search?portal_type=Institution&metadata_fields=UID",
3
+ "batching": {
4
+ "@id": "https://conseil.staging.imio.be/@search?portal_type=Institution&metadata_fields=UID",
5
+ "first": "https://conseil.staging.imio.be/@search?b_start=0&portal_type=Institution&metadata_fields=UID",
6
+ "last": "https://conseil.staging.imio.be/@search?b_start=150&portal_type=Institution&metadata_fields=UID",
7
+ "next": "https://conseil.staging.imio.be/@search?b_start=25&portal_type=Institution&metadata_fields=UID"
8
+ },
9
+ "items": [
10
+ {
11
+ "@id": "https://conseil.staging.imio.be/quaregnon",
12
+ "@type": "Institution",
13
+ "UID": "8b7ee28aee6a4d17a796c198139bb477",
14
+ "description": "",
15
+ "review_state": "published",
16
+ "title": "Quaregnon"
17
+ },
18
+ {
19
+ "@id": "https://conseil.staging.imio.be/waremme",
20
+ "@type": "Institution",
21
+ "UID": "7a125baa06d844b4aaea97c73b9efddd",
22
+ "description": "",
23
+ "review_state": "published",
24
+ "title": "Waremme"
25
+ },
26
+ {
27
+ "@id": "https://conseil.staging.imio.be/jalhay",
28
+ "@type": "Institution",
29
+ "UID": "d04e1e724694450da535f57f0c0b0450",
30
+ "description": "",
31
+ "review_state": "published",
32
+ "title": "Jalhay"
33
+ },
34
+ {
35
+ "@id": "https://conseil.staging.imio.be/la-hulpe",
36
+ "@type": "Institution",
37
+ "UID": "970bb179557940d28a3751aa76e123c2",
38
+ "description": "",
39
+ "review_state": "published",
40
+ "title": "La Hulpe"
41
+ },
42
+ {
43
+ "@id": "https://conseil.staging.imio.be/ramillies",
44
+ "@type": "Institution",
45
+ "UID": "c85014aaec2d4b2a861911b8b6085b15",
46
+ "description": "",
47
+ "review_state": "published",
48
+ "title": "Ramillies"
49
+ },
50
+ {
51
+ "@id": "https://conseil.staging.imio.be/liege",
52
+ "@type": "Institution",
53
+ "UID": "970bb179557940d28a3751aa76edddd",
54
+ "description": "",
55
+ "review_state": "published",
56
+ "title": "Liège"
57
+ }
58
+ ],
59
+ "items_total": 5
60
+ }
@@ -0,0 +1,105 @@
1
+ {
2
+ "@components": {
3
+ "actions": {
4
+ "@id": "https://conseil.staging.imio.be/liege/publications/ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid/@actions"
5
+ },
6
+ "aliases": {
7
+ "@id": "https://conseil.staging.imio.be/liege/publications/ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid/@aliases"
8
+ },
9
+ "breadcrumbs": {
10
+ "@id": "https://conseil.staging.imio.be/liege/publications/ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid/@breadcrumbs"
11
+ },
12
+ "contextnavigation": {
13
+ "@id": "https://conseil.staging.imio.be/liege/publications/ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid/@contextnavigation"
14
+ },
15
+ "navigation": {
16
+ "@id": "https://conseil.staging.imio.be/liege/publications/ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid/@navigation"
17
+ },
18
+ "navroot": {
19
+ "@id": "https://conseil.staging.imio.be/liege/publications/ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid/@navroot"
20
+ },
21
+ "types": {
22
+ "@id": "https://conseil.staging.imio.be/liege/publications/ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid/@types"
23
+ },
24
+ "workflow": {
25
+ "@id": "https://conseil.staging.imio.be/liege/publications/ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid/@workflow"
26
+ }
27
+ },
28
+ "@id": "https://conseil.staging.imio.be/liege/publications/ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid",
29
+ "@type": "Publication",
30
+ "UID": "33befb1ecea143e4a4e8b2dd548e294f",
31
+ "allow_discussion": false,
32
+ "authority_date": null,
33
+ "category": {
34
+ "title": "Sécurité & Prévention",
35
+ "token": "securit\\xe9"
36
+ },
37
+ "consultation_text": {
38
+ "content-type": "text/html",
39
+ "data": "<p>Hôtel de Ville - Secrétariat du Collège et du Conseil</p>\n<p>place du Marché, 2</p>\n<p>4000 Liège</p>\n<p>du lundi au vendredi  (sauf jours fériés)</p>\n<p>de 9 à 12 heure et de 13.30 à 16.30 heures</p>",
40
+ "encoding": "utf-8"
41
+ },
42
+ "created": "2024-08-14T07:13:42+00:00",
43
+ "decision_date": "2022-12-12",
44
+ "description": "Adopté par M. le Bourgmestre en date 12 décembre 2022",
45
+ "document_type": {
46
+ "title": "Ordonnance de police administrative",
47
+ "token": "ordonnance-police-administrative"
48
+ },
49
+ "effective": "2024-08-14T09:14:31",
50
+ "entry_date": "2022-12-12",
51
+ "expires": null,
52
+ "file": {
53
+ "content-type": "application/pdf",
54
+ "download": "https://conseil.staging.imio.be/liege/publications/ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid/@@download/file",
55
+ "filename": "013400000123949.PDF",
56
+ "size": 120014
57
+ },
58
+ "id": "ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid",
59
+ "is_folderish": true,
60
+ "items": [],
61
+ "items_total": 0,
62
+ "layout": "view",
63
+ "legislative_authority": {
64
+ "title": "Bourgmestre",
65
+ "token": "bourgmestre"
66
+ },
67
+ "lock": {
68
+ "locked": false,
69
+ "stealable": true
70
+ },
71
+ "modified": "2024-08-14T07:14:31+00:00",
72
+ "next_item": {
73
+ "@id": "https://conseil.staging.imio.be/liege/publications/reglement-relatif-a-la-redevance-sur-le-stationnement",
74
+ "@type": "Publication",
75
+ "description": "Adopté par le Conseil communal en date du 19 décembre 2023",
76
+ "title": "Règlement relatif à la redevance sur le stationnement.",
77
+ "type_title": "Publication"
78
+ },
79
+ "parent": {
80
+ "@id": "https://conseil.staging.imio.be/liege/publications",
81
+ "@type": "Folder",
82
+ "description": "",
83
+ "image_field": null,
84
+ "image_scales": {},
85
+ "review_state": "published",
86
+ "title": "Publications",
87
+ "type_title": "Dossier"
88
+ },
89
+ "previous_item": {
90
+ "@id": "https://conseil.staging.imio.be/liege/publications/reglement-relatif-a-loctroi-dune-intervention-financiere-subvention-directe-operateur-pour-lannee-2024-en-faveur-des-commerces-de-detail-et-des-etablissements-horeca-situes-sur-le-territoire-de-la-ville-de-liege-dont-lactivite-economique-est-affectee-par",
91
+ "@type": "Publication",
92
+ "description": "Adopté par le Conseil communal en date du 24 juin 2024",
93
+ "title": "Règlement relatif à l'octroi d’une intervention financière (subvention directe opérateur), pour l'année 2024, en faveur des commerces de détail et des établissements HORECA, situés sur le territoire de la Ville de Liège, dont l’activité économique est affectée par les retards d’exécution du chantier du Tramway de Liège.",
94
+ "type_title": "Publication"
95
+ },
96
+ "relatedItems": [],
97
+ "review_state": "published",
98
+ "table_of_contents": false,
99
+ "text": null,
100
+ "title": "Ordonnance concernant des mesures spécifiques en cas de grand froid.",
101
+ "type_title": "Publication",
102
+ "version": "current",
103
+ "working_copy": null,
104
+ "working_copy_of": null
105
+ }
@@ -0,0 +1,270 @@
1
+ {
2
+ "@id": "https://conseil.staging.imio.be/@search?portal_type=Publication&review_state=published&metadata_fields=UID&metadata_fields=id",
3
+ "items": [
4
+ {
5
+ "@id": "https://conseil.staging.imio.be/belle-ville/publications/exemple-publication",
6
+ "@type": "Publication",
7
+ "UID": "5c642de5dddb4bcbae56163d4cc89079",
8
+ "description": "Ma publication, texte affiché dans le tableau de bord",
9
+ "id": "exemple-publication",
10
+ "image_field": null,
11
+ "image_scales": null,
12
+ "review_state": "published",
13
+ "title": "Exemple publication",
14
+ "type_title": "Publication"
15
+ },
16
+ {
17
+ "@id": "https://conseil.staging.imio.be/liege/publications/reglement-relatif-a-la-gestion-du-parc-sauvage-des-chats",
18
+ "@type": "Publication",
19
+ "UID": "8ea91c2b830b486fb4f78b6a91cee882",
20
+ "description": "Adopté par le Conseil communal en date du X",
21
+ "id": "reglement-relatif-a-la-gestion-du-parc-sauvage-des-chats",
22
+ "image_field": null,
23
+ "image_scales": null,
24
+ "review_state": "published",
25
+ "title": "Règlement relatif à la gestion du parc sauvage des chats",
26
+ "type_title": "Publication"
27
+ },
28
+ {
29
+ "@id": "https://conseil.staging.imio.be/belle-ville/publications/arrete-de-police",
30
+ "@type": "Publication",
31
+ "UID": "37202c2c2aaa42108080ca5a4531ad85",
32
+ "description": "blabla",
33
+ "id": "arrete-de-police",
34
+ "image_field": null,
35
+ "image_scales": null,
36
+ "review_state": "published",
37
+ "title": "arrêté de police",
38
+ "type_title": "Publication"
39
+ },
40
+ {
41
+ "@id": "https://conseil.staging.imio.be/belle-ville/publications/test",
42
+ "@type": "Publication",
43
+ "UID": "1f2929e9dda845c0948f507df8516e71",
44
+ "description": "OPT fermeture voirie",
45
+ "id": "test",
46
+ "image_field": null,
47
+ "image_scales": null,
48
+ "review_state": "published",
49
+ "title": "test",
50
+ "type_title": "Publication"
51
+ },
52
+ {
53
+ "@id": "https://conseil.staging.imio.be/belle-ville/publications/ordonnance-de-police-administrative-generale-de-la-commune-belleville",
54
+ "@type": "Publication",
55
+ "UID": "ef9f2b46b49346aa832194d1415bba27",
56
+ "description": "Adaptation de législations supérieures....",
57
+ "id": "ordonnance-de-police-administrative-generale-de-la-commune-belleville",
58
+ "image_field": null,
59
+ "image_scales": null,
60
+ "review_state": "published",
61
+ "title": "Ordonnance de police administrative générale de la commune BELLEVILLE",
62
+ "type_title": "Publication"
63
+ },
64
+ {
65
+ "@id": "https://conseil.staging.imio.be/belle-ville/publications/police-administrative-circulation-routiere-reglements-complementaires-modification-creation-dun-emplacement-pour-personnes-handicapees-globalisation-rue-de-la-nouvelle-montagne-approbation",
66
+ "@type": "Publication",
67
+ "UID": "eba7a072c3f34e4f9b3c5d946d2a3a3f",
68
+ "description": "Tout est dans le titre",
69
+ "id": "police-administrative-circulation-routiere-reglements-complementaires-modification-creation-dun-emplacement-pour-personnes-handicapees-globalisation-rue-de-la-nouvelle-montagne-approbation",
70
+ "image_field": null,
71
+ "image_scales": null,
72
+ "review_state": "published",
73
+ "title": "POLICE ADMINISTRATIVE - Circulation routière - Règlements complémentaires - Modification - Création d'un emplacement pour personnes handicapées - Globalisation - Rue de la Nouvelle Montagne - Approbation",
74
+ "type_title": "Publication"
75
+ },
76
+ {
77
+ "@id": "https://conseil.staging.imio.be/belle-ville/publications/test-oupeye-ordonnance-de-police",
78
+ "@type": "Publication",
79
+ "UID": "27176be24ee3454ca0be55764bf12ea5",
80
+ "description": "Test Oupeye Description de l'ordonnance: description",
81
+ "id": "test-oupeye-ordonnance-de-police",
82
+ "image_field": null,
83
+ "image_scales": null,
84
+ "review_state": "published",
85
+ "title": "Test Oupeye - Ordonnance de Police TITRE",
86
+ "type_title": "Publication"
87
+ },
88
+ {
89
+ "@id": "https://conseil.staging.imio.be/liege/publications/autorisation-de-deroger-temporairement-aux-normes-de-bruit-foire-du-midi-2023",
90
+ "@type": "Publication",
91
+ "UID": "a3a8c7922b834e54a166761aeb2cbc33",
92
+ "description": "Le Bourgmestre de Bruxelles a accordé une dérogation temporaire aux normes de bruit pour la Foire du Midi 2023, qui se tiendra en plein air sur le Boulevard du Midi du 15 juillet au 20 août 2023.",
93
+ "id": "autorisation-de-deroger-temporairement-aux-normes-de-bruit-foire-du-midi-2023",
94
+ "image_field": null,
95
+ "image_scales": null,
96
+ "review_state": "published",
97
+ "title": "Autorisation de déroger temporairement aux normes de bruit - Foire du Midi 2023",
98
+ "type_title": "Publication"
99
+ },
100
+ {
101
+ "@id": "https://conseil.staging.imio.be/liege/publications/reglement-relatif-a-loctroi-dune-intervention-financiere-specifique-subvention-directe-operateur-pour-lannee-2024-en-faveur-des-commerces-de-detail-et-des-etablissements-horeca-situes-dans-le-pole-de-sclessin-et-alentours",
102
+ "@type": "Publication",
103
+ "UID": "518a437453ce4c2d8d0f8d2d4a545a58",
104
+ "description": "",
105
+ "id": "reglement-relatif-a-loctroi-dune-intervention-financiere-specifique-subvention-directe-operateur-pour-lannee-2024-en-faveur-des-commerces-de-detail-et-des-etablissements-horeca-situes-dans-le-pole-de-sclessin-et-alentours",
106
+ "image_field": null,
107
+ "image_scales": null,
108
+ "review_state": "published",
109
+ "title": "Règlement relatif à l'octroi d’une intervention financière spécifique (subvention directe opérateur), pour l'année 2024, en faveur des commerces de détail et des établissements HORECA, situés dans le pôle de Sclessin et alentours",
110
+ "type_title": "Publication"
111
+ },
112
+ {
113
+ "@id": "https://conseil.staging.imio.be/liege/publications/reglement-complementaire-de-la-police-de-la-circulation-de-la-rue-des-grands-champs-a-4000-liege",
114
+ "@type": "Publication",
115
+ "UID": "966bc618828d45d3ac72da2b58de6a3c",
116
+ "description": "Adopté par le Conseil communal en date du 24/06/2024",
117
+ "id": "reglement-complementaire-de-la-police-de-la-circulation-de-la-rue-des-grands-champs-a-4000-liege",
118
+ "image_field": null,
119
+ "image_scales": null,
120
+ "review_state": "published",
121
+ "title": "Règlement complémentaire de la police de la circulation de la rue des Grands Champs à 4000 Liège",
122
+ "type_title": "Publication"
123
+ },
124
+ {
125
+ "@id": "https://conseil.staging.imio.be/belle-ville/publications/test-avis-de-publication-dun-reglement",
126
+ "@type": "Publication",
127
+ "UID": "27030f9a8e444948be5e5244c4eed345",
128
+ "description": "un peu de tout merci",
129
+ "id": "test-avis-de-publication-dun-reglement",
130
+ "image_field": null,
131
+ "image_scales": null,
132
+ "review_state": "published",
133
+ "title": "Test avis de publication d'un règlement",
134
+ "type_title": "Publication"
135
+ },
136
+ {
137
+ "@id": "https://conseil.staging.imio.be/belle-ville/publications/phase-de-test-op",
138
+ "@type": "Publication",
139
+ "UID": "f76bbd3504ae4743b5809219c37ede32",
140
+ "description": "",
141
+ "id": "phase-de-test-op",
142
+ "image_field": null,
143
+ "image_scales": null,
144
+ "review_state": "published",
145
+ "title": "Phase de test OP",
146
+ "type_title": "Publication"
147
+ },
148
+ {
149
+ "@id": "https://conseil.staging.imio.be/belle-ville/publications/elections-communales-et-provinciales-scrutins-du-13-octobre-2024-arret-du-registre-des-electeurs-avis",
150
+ "@type": "Publication",
151
+ "UID": "b88c062644fb4621b45518795dee09ab",
152
+ "description": "Arrêt par le Collège du 20 août 2024 en date du 1er août 2024- Avis aux électeurs pour réclamations et recours.",
153
+ "id": "elections-communales-et-provinciales-scrutins-du-13-octobre-2024-arret-du-registre-des-electeurs-avis",
154
+ "image_field": null,
155
+ "image_scales": null,
156
+ "review_state": "published",
157
+ "title": "Elections communales et provinciales- Scrutins du 13 octobre 2024- Arrêt du registre des électeurs- Avis",
158
+ "type_title": "Publication"
159
+ },
160
+ {
161
+ "@id": "https://conseil.staging.imio.be/belle-ville/publications/test-op-signee",
162
+ "@type": "Publication",
163
+ "UID": "3af4ff302bbf40839a4b453f3e5346ea",
164
+ "description": "",
165
+ "id": "test-op-signee",
166
+ "image_field": null,
167
+ "image_scales": null,
168
+ "review_state": "published",
169
+ "title": "Test OP Signée",
170
+ "type_title": "Publication"
171
+ },
172
+ {
173
+ "@id": "https://conseil.staging.imio.be/belle-ville/publications/test-decision-du-conseil-du-xxxx-reglement-xxxx",
174
+ "@type": "Publication",
175
+ "UID": "f52f850901504c28a40e646dc3d20eab",
176
+ "description": "Règlement relatif à XXXXXXXXXXXX",
177
+ "id": "test-decision-du-conseil-du-xxxx-reglement-xxxx",
178
+ "image_field": null,
179
+ "image_scales": null,
180
+ "review_state": "published",
181
+ "title": "TEST décision du Conseil du XXXX - Règlement XXXX",
182
+ "type_title": "Publication"
183
+ },
184
+ {
185
+ "@id": "https://conseil.staging.imio.be/charleroi/publications/circulation-routiere-reglement-complementaire-abrogation-de-stationnement-pour-personne-handicapee-rue-paul-pastur-ndeg18-a-ransart",
186
+ "@type": "Publication",
187
+ "UID": "50e6bd1e2a1e4edeaa3efbfeb573733e",
188
+ "description": "",
189
+ "id": "circulation-routiere-reglement-complementaire-abrogation-de-stationnement-pour-personne-handicapee-rue-paul-pastur-ndeg18-a-ransart",
190
+ "image_field": null,
191
+ "image_scales": null,
192
+ "review_state": "published",
193
+ "title": "Circulation routière - Règlement complémentaire - Abrogation de stationnement pour personne handicapée rue Paul Pastur n°18 à Ransart",
194
+ "type_title": "Publication"
195
+ },
196
+ {
197
+ "@id": "https://conseil.staging.imio.be/charleroi/publications/ri-dcs-pa-loi-du-02-10-2017-reglementant-la-securite-privee-et-particuliere-creation-dune-zone-vigilis-sur-le-territoire-de-la-ville-de-charleroi-sur-lesplanade-du-campus-u-charleroi-sise-boulevard-solvay-entre-la-rue-clement-lyon-et-la-rue-lebeau-a-6000",
198
+ "@type": "Publication",
199
+ "UID": "8933725e931a4ca993bbd3324b9c1e2a",
200
+ "description": "Application de l'article 115, 5° de la loi réglementant la sécurité privée et particulière du 02 octobre 2017. Création d'une zone VIGILIS sur l'esplanade du campus U-Charleroi sise boulevard Solvay entre la rue Clément Lyon et la rue Lebeau.",
201
+ "id": "ri-dcs-pa-loi-du-02-10-2017-reglementant-la-securite-privee-et-particuliere-creation-dune-zone-vigilis-sur-le-territoire-de-la-ville-de-charleroi-sur-lesplanade-du-campus-u-charleroi-sise-boulevard-solvay-entre-la-rue-clement-lyon-et-la-rue-lebeau-a-6000",
202
+ "image_field": null,
203
+ "image_scales": null,
204
+ "review_state": "published",
205
+ "title": "RI - DCS - PA - Loi du 02/10/2017 réglementant la sécurité privée et particulière - Création d'une zone VIGILIS sur le territoire de la Ville de Charleroi sur l'esplanade du campus U-Charleroi sise boulevard Solvay entre la rue Clément Lyon et la rue Lebeau à 6000 Charleroi - Application de l'article 115, 5° de la loi - Approbation",
206
+ "type_title": "Publication"
207
+ },
208
+ {
209
+ "@id": "https://conseil.staging.imio.be/liege/publications/modification-du-reglement-de-police-relatif-a-la-proprete-publique-et-a-la-lutte-contre-les-petites-incivilites-urbaines-qui-y-portent-atteinte-du-22-mai-2023",
210
+ "@type": "Publication",
211
+ "UID": "339d756c0b2e4ea585f9548b66943bd9",
212
+ "description": "Modification du règlement de police relatif à la propreté publique et à la lutte contre les petites incivilités urbaines qui y portent atteinte du 22 mai 2023",
213
+ "id": "modification-du-reglement-de-police-relatif-a-la-proprete-publique-et-a-la-lutte-contre-les-petites-incivilites-urbaines-qui-y-portent-atteinte-du-22-mai-2023",
214
+ "image_field": null,
215
+ "image_scales": null,
216
+ "review_state": "published",
217
+ "title": "Modification du règlement de police relatif à la propreté publique et à la lutte contre les petites incivilités urbaines qui y portent atteinte du 22 mai 2023",
218
+ "type_title": "Publication"
219
+ },
220
+ {
221
+ "@id": "https://conseil.staging.imio.be/liege/publications/ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid",
222
+ "@type": "Publication",
223
+ "UID": "33befb1ecea143e4a4e8b2dd548e294f",
224
+ "description": "Adopté par M. le Bourgmestre en date 12 décembre 2022",
225
+ "id": "ordonnance-concernant-des-mesures-specifiques-en-cas-de-grand-froid",
226
+ "image_field": null,
227
+ "image_scales": null,
228
+ "review_state": "published",
229
+ "title": "Ordonnance concernant des mesures spécifiques en cas de grand froid.",
230
+ "type_title": "Publication"
231
+ },
232
+ {
233
+ "@id": "https://conseil.staging.imio.be/liege/publications/autorisation-de-deroger-temporairement-aux-normes-de-bruit-fete-de-la-musique-2023",
234
+ "@type": "Publication",
235
+ "UID": "1eb1d97e162a4fe4be802ccd812fa180",
236
+ "description": "Le Bourgmestre de Bruxelles accorde une autorisation temporaire pour déroger aux normes de bruit établies par l'arrêté du Gouvernement de la Région de Bruxelles-Capitale du 21 novembre 2002, pour la Fête de la Musique 2023 qui se tiendra au Parc du Cinquantenaire les 23 et 24 juin 2023.",
237
+ "id": "autorisation-de-deroger-temporairement-aux-normes-de-bruit-fete-de-la-musique-2023",
238
+ "image_field": null,
239
+ "image_scales": null,
240
+ "review_state": "published",
241
+ "title": "Autorisation de déroger temporairement aux normes de bruit - Fête de la Musique 2023",
242
+ "type_title": "Publication"
243
+ },
244
+ {
245
+ "@id": "https://conseil.staging.imio.be/liege/publications/reglement-relatif-a-loctroi-dune-intervention-financiere-subvention-directe-operateur-pour-lannee-2024-en-faveur-des-commerces-de-detail-et-des-etablissements-horeca-situes-sur-le-territoire-de-la-ville-de-liege-dont-lactivite-economique-est-affectee-par",
246
+ "@type": "Publication",
247
+ "UID": "e07b7cf8dfe148969c4a291c4972750d",
248
+ "description": "Adopté par le Conseil communal en date du 24 juin 2024",
249
+ "id": "reglement-relatif-a-loctroi-dune-intervention-financiere-subvention-directe-operateur-pour-lannee-2024-en-faveur-des-commerces-de-detail-et-des-etablissements-horeca-situes-sur-le-territoire-de-la-ville-de-liege-dont-lactivite-economique-est-affectee-par",
250
+ "image_field": null,
251
+ "image_scales": null,
252
+ "review_state": "published",
253
+ "title": "Règlement relatif à l'octroi d’une intervention financière (subvention directe opérateur), pour l'année 2024, en faveur des commerces de détail et des établissements HORECA, situés sur le territoire de la Ville de Liège, dont l’activité économique est affectée par les retards d’exécution du chantier du Tramway de Liège.",
254
+ "type_title": "Publication"
255
+ },
256
+ {
257
+ "@id": "https://conseil.staging.imio.be/liege/publications/reglement-relatif-a-la-redevance-sur-le-stationnement",
258
+ "@type": "Publication",
259
+ "UID": "0744d361b4b54a71853cd265da739f96",
260
+ "description": "Adopté par le Conseil communal en date du 19 décembre 2023",
261
+ "id": "reglement-relatif-a-la-redevance-sur-le-stationnement",
262
+ "image_field": null,
263
+ "image_scales": null,
264
+ "review_state": "published",
265
+ "title": "Règlement relatif à la redevance sur le stationnement.",
266
+ "type_title": "Publication"
267
+ }
268
+ ],
269
+ "items_total": 22
270
+ }
@@ -12,7 +12,8 @@
12
12
  "@type": "imio.events.Event",
13
13
  "UID": "97902f2e26774a369035117d56381a2a",
14
14
  "breadcrumb": "Belleville » Accueil temps libre » Journée de l'ATL",
15
- "category_title": null,
15
+ "category": "press",
16
+ "category_title": "Presse",
16
17
  "description": "Description de mon événement",
17
18
  "end": "2023-10-31T10:00:00+00:00",
18
19
  "first_end": "2023-10-31T10:00:00+00:00",
@@ -646,19 +647,22 @@
646
647
  ],
647
648
  "items_total": 7,
648
649
  "image_field": null,
650
+ "local_category": "Local Category title",
649
651
  "modified": "2021-05-11T13:31:00",
650
652
  "open_end": false,
651
653
  "recurrence": null,
652
654
  "review_state": "published",
653
655
  "start": "2023-01-31T09:00:00+00:00",
654
656
  "title": "Journée de l'ATL",
657
+ "topics": ["education"],
655
658
  "whole_day": true
656
659
  },
657
660
  {
658
661
  "@id": "http://localhost:8080/Plone/belleville/communal/9ff5c526d28e473db0065a6845686cfe",
659
662
  "@type": "imio.events.Event",
660
663
  "UID": "9ff5c526d28e473db0065a6845686cfe",
661
- "category_title": null,
664
+ "category": "press",
665
+ "category_title": "Presse",
662
666
  "description": "une description",
663
667
  "end": "2023-04-01T20:02:00+00:00",
664
668
  "first_end": "2023-03-18T20:02:00+00:00",
@@ -7,7 +7,7 @@
7
7
  "UID": "aff08290e3f64cfa830417bc36d5614f",
8
8
  "breadcrumb": "belleville >> commune >> Première actualité",
9
9
  "category": null,
10
- "category_title": null,
10
+ "category_title": "Presse",
11
11
  "description": "Description",
12
12
  "effective": "2021-05-11T13:31:00",
13
13
  "has_leadimage": false,
@@ -641,7 +641,7 @@
641
641
  "modified": "2021-05-11T13:31:00",
642
642
  "review_state": "published",
643
643
  "title": "Première actualité",
644
- "topics": null
644
+ "topics": ["education"]
645
645
  },
646
646
  {
647
647
  "@id": "https://actualites.enwallonie.be/belleville/commune/a02e0afe2cbe4209970992d5d7323373",
@@ -1,5 +1,5 @@
1
1
  {
2
- "@id": "http://localhost:8080/Plone/@events?UID=1178188bddde4ced95a6cf8bf04c443c&portal_type=imio.events.Event&metadata_fields=category_title&metadata_fields=start&metadata_fields=end&metadata_fields=has_leadimage&metadata_fields=image_scales&metadata_fields=UID&event_dates.query=2021-11-15&event_dates.range=min&sort_limit=6",
2
+ "@id": "http://localhost:8080/Plone/@events?UID=1178188bddde4ced95a6cf8bf04c443c&portal_type=imio.events.Event&metadata_fields=category_title&metadata_fields=topics&metadata_fields=start&metadata_fields=end&metadata_fields=has_leadimage&metadata_fields=image_scales&metadata_fields=UID&event_dates.query=2021-11-15&event_dates.range=min&sort_limit=6",
3
3
  "items": [
4
4
  {
5
5
  "@id": "http://localhost:8080/Plone/belleville/communal/1178188bddde4ced95a6cf8bf04c443c",