imio.smartweb.core 1.1.27__py3-none-any.whl → 1.1.29__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 (27) hide show
  1. imio/smartweb/core/contents/rest/directory/content.py +7 -0
  2. imio/smartweb/core/contents/rest/directory/view.pt +2 -1
  3. imio/smartweb/core/contents/rest/directory/view.py +4 -0
  4. imio/smartweb/core/contents/rest/events/content.py +7 -0
  5. imio/smartweb/core/contents/rest/events/view.pt +2 -1
  6. imio/smartweb/core/contents/rest/events/view.py +4 -0
  7. imio/smartweb/core/contents/sections/external_content/view.pt +1 -1
  8. imio/smartweb/core/contents/sections/external_content/views.py +21 -3
  9. imio/smartweb/core/profiles/default/metadata.xml +1 -1
  10. imio/smartweb/core/profiles/default/types/imio.smartweb.Folder.xml +1 -0
  11. imio/smartweb/core/tests/test_rest.py +19 -0
  12. imio/smartweb/core/tests/test_section_external_content.py +16 -16
  13. imio/smartweb/core/tests/test_sections.py +11 -11
  14. imio/smartweb/core/upgrades/configure.zcml +18 -0
  15. imio/smartweb/core/upgrades/profiles/1046_to_1047/types/imio.smartweb.Folder.xml +22 -0
  16. imio/smartweb/core/utils.py +8 -2
  17. imio/smartweb/core/vocabularies.py +1 -1
  18. imio/smartweb/core/webcomponents/package.json +2 -0
  19. imio/smartweb/core/webcomponents/webpack.config.js +1 -1
  20. {imio.smartweb.core-1.1.27.dist-info → imio.smartweb.core-1.1.29.dist-info}/METADATA +22 -1
  21. {imio.smartweb.core-1.1.27.dist-info → imio.smartweb.core-1.1.29.dist-info}/RECORD +27 -26
  22. /imio.smartweb.core-1.1.27-py3.10-nspkg.pth → /imio.smartweb.core-1.1.29-py3.10-nspkg.pth +0 -0
  23. {imio.smartweb.core-1.1.27.dist-info → imio.smartweb.core-1.1.29.dist-info}/LICENSE.GPL +0 -0
  24. {imio.smartweb.core-1.1.27.dist-info → imio.smartweb.core-1.1.29.dist-info}/LICENSE.rst +0 -0
  25. {imio.smartweb.core-1.1.27.dist-info → imio.smartweb.core-1.1.29.dist-info}/WHEEL +0 -0
  26. {imio.smartweb.core-1.1.27.dist-info → imio.smartweb.core-1.1.29.dist-info}/namespace_packages.txt +0 -0
  27. {imio.smartweb.core-1.1.27.dist-info → imio.smartweb.core-1.1.29.dist-info}/top_level.txt +0 -0
@@ -25,6 +25,13 @@ class IDirectoryView(model.Schema):
25
25
  title=_("Number of items to display"), default=20, required=True
26
26
  )
27
27
 
28
+ display_map = schema.Bool(
29
+ title=_("Display map"),
30
+ description=_("If selected, map will be displayed"),
31
+ required=False,
32
+ default=True,
33
+ )
34
+
28
35
 
29
36
  @implementer(IDirectoryView)
30
37
  class DirectoryView(Container):
@@ -8,7 +8,8 @@
8
8
  query-filter-url view/local_filters_query_url;
9
9
  batch-size view/batch_size;
10
10
  propose-url view/propose_url;
11
- current-language view/get_current_language;"></smartweb-annuaire>
11
+ current-language view/get_current_language;
12
+ display_map view/display_map;"></smartweb-annuaire>
12
13
  </div>
13
14
  </metal:main>
14
15
  </body>
@@ -10,3 +10,7 @@ class DirectoryViewView(BaseRestView):
10
10
  @property
11
11
  def propose_url(self):
12
12
  return api.portal.get_registry_record("smartweb.propose_directory_url")
13
+
14
+ @property
15
+ def display_map(self):
16
+ return self.context.display_map
@@ -30,6 +30,13 @@ class IEventsView(model.Schema):
30
30
  title=_("Number of items to display"), default=20, required=True
31
31
  )
32
32
 
33
+ display_map = schema.Bool(
34
+ title=_("Display map"),
35
+ description=_("If selected, map will be displayed"),
36
+ required=False,
37
+ default=True,
38
+ )
39
+
33
40
 
34
41
  @implementer(IEventsView)
35
42
  class EventsView(Container):
@@ -9,7 +9,8 @@
9
9
  query-filter-url view/local_filters_query_url;
10
10
  batch-size view/batch_size;
11
11
  propose-url view/propose_url;
12
- current-language view/get_current_language;"></smartweb-events>
12
+ current-language view/get_current_language;
13
+ display_map view/display_map;"></smartweb-events>
13
14
  </div>
14
15
  </metal:main>
15
16
  </body>
@@ -10,3 +10,7 @@ class EventsViewView(BaseRestView):
10
10
  @property
11
11
  def propose_url(self):
12
12
  return api.portal.get_registry_record("smartweb.propose_events_url")
13
+
14
+ @property
15
+ def display_map(self):
16
+ return self.context.display_map
@@ -24,7 +24,7 @@
24
24
  <p tal:replace="structure context/@@description" />
25
25
 
26
26
  <div tal:define="collapse_klass python: 'collapse' if context.collapsible_section else ''"
27
- tal:attributes="class string:body-section ratio ratio-16x9 ${collapse_klass};
27
+ tal:attributes="class string:body-section ratio ${collapse_klass};
28
28
  id string:body-section-${context/id}"
29
29
  tal:content="structure view/get_embed_external_content" />
30
30
 
@@ -23,6 +23,7 @@ class ExternalContentView(SectionView):
23
23
  EllohaPlugin(),
24
24
  CognitoformPlugin(),
25
25
  ArcgisPlugin(),
26
+ GiveADayPlugin(),
26
27
  UnknowServicePlugin(),
27
28
  ]
28
29
  extra_params = self.context.external_content_params
@@ -44,6 +45,7 @@ class ExternalContentView(SectionView):
44
45
  "current_lang": current_lang,
45
46
  "extra_params": extra_params,
46
47
  },
48
+ "giveadayplugin": {},
47
49
  "unknowserviceplugin": {"width": width, "current_lang": current_lang},
48
50
  }
49
51
  embedder = Embedder(plugins=plugins, plugin_config=plugin_config)
@@ -63,11 +65,11 @@ class ExternalContentView(SectionView):
63
65
 
64
66
  class EaglebePlugin(Plugin):
65
67
  def __call__(self, parts, config={}):
66
- if "app.eaglebe.com" in parts.netloc:
67
- return f'<iframe class="eaglebe" src="{parts.geturl()}" scrolling="no" width="{config["width"]}">'
68
- #
69
68
  return None
70
69
 
70
+ # if "app.eaglebe.com" in parts.netloc:
71
+ # return f'<iframe class="eaglebe" src="{parts.geturl()}" scrolling="no" width="{config["width"]}">'
72
+
71
73
 
72
74
  class EllohaPlugin(Plugin):
73
75
  def __call__(self, parts, config={}):
@@ -193,6 +195,22 @@ class ArcgisPlugin(Plugin):
193
195
  return None
194
196
 
195
197
 
198
+ class GiveADayPlugin(Plugin):
199
+ def __call__(self, parts, config={}):
200
+ if "www.giveaday.be" in parts.netloc:
201
+ return (
202
+ '<div id="giveaday-widget"></div>'
203
+ "<script src=https://www.giveaday.be/assets/giveaday_v1.js></script>"
204
+ "<script>"
205
+ "function renderWidget() {"
206
+ 'giveADayWidget.initialize("giveaday-widget", 2924, "organization", "large", "fr","#34B78F");}'
207
+ "renderWidget();"
208
+ "</script>"
209
+ )
210
+ #
211
+ return None
212
+
213
+
196
214
  class UnknowServicePlugin(Plugin):
197
215
  def __call__(self, parts, config={}):
198
216
  current_lang = config["current_lang"]
@@ -1,6 +1,6 @@
1
1
  <?xml version='1.0' encoding='UTF-8'?>
2
2
  <metadata>
3
- <version>1046</version>
3
+ <version>1047</version>
4
4
  <dependencies>
5
5
  <dependency>profile-plone.app.dexterity:default</dependency>
6
6
  <dependency>profile-plone.app.imagecropping:default</dependency>
@@ -29,6 +29,7 @@
29
29
  <element value="imio.smartweb.Page" />
30
30
  <element value="imio.smartweb.PortalPage" />
31
31
  <element value="imio.smartweb.Procedure" />
32
+ <element value="collective.pivot.Family" />
32
33
  </property>
33
34
  <!-- Schema, class and security -->
34
35
  <property name="add_permission">imio.smartweb.core.AddFolder</property>
@@ -347,3 +347,22 @@ class SectionsFunctionalTest(ImioSmartwebTestCase):
347
347
  self.assertEqual(
348
348
  patch_selected_news_folders, response_selected_news_folders
349
349
  )
350
+
351
+ def test_display_map(self):
352
+ self.rest_directory = api.content.create(
353
+ container=self.portal,
354
+ type="imio.smartweb.DirectoryView",
355
+ title="directory view",
356
+ )
357
+ self.rest_directory.display_map = True
358
+ view = queryMultiAdapter((self.rest_directory, self.request), name="view")
359
+ self.assertIn('display_map="True"', view())
360
+
361
+ self.rest_events = api.content.create(
362
+ container=self.portal,
363
+ type="imio.smartweb.EventsView",
364
+ title="events view",
365
+ )
366
+ self.rest_events.display_map = True
367
+ view = queryMultiAdapter((self.rest_events, self.request), name="view")
368
+ self.assertIn('display_map="True"', view())
@@ -32,24 +32,24 @@ class TestSectionExternalContent(ImioSmartwebTestCase):
32
32
  '<p class="unknow_service">Unknow service</p>',
33
33
  )
34
34
 
35
- def test_eaglebe_plugin(self):
36
- sec = api.content.create(
37
- container=self.page, type="imio.smartweb.SectionExternalContent", id="sec"
38
- )
35
+ # def test_eaglebe_plugin(self):
36
+ # sec = api.content.create(
37
+ # container=self.page, type="imio.smartweb.SectionExternalContent", id="sec"
38
+ # )
39
39
 
40
- sec.external_content_url = ""
41
- section_view = queryMultiAdapter((sec, self.request), name="view")
42
- self.assertEqual(
43
- section_view.get_embed_external_content(),
44
- '<p class="unknow_service">Unknow service</p>',
45
- )
40
+ # sec.external_content_url = ""
41
+ # section_view = queryMultiAdapter((sec, self.request), name="view")
42
+ # self.assertEqual(
43
+ # section_view.get_embed_external_content(),
44
+ # '<p class="unknow_service">Unknow service</p>',
45
+ # )
46
46
 
47
- sec.external_content_url = "https://app.eaglebe.com/auth/start"
48
- section_view = queryMultiAdapter((sec, self.request), name="view")
49
- self.assertEqual(
50
- section_view.get_embed_external_content(),
51
- '<iframe class="eaglebe" src="https://app.eaglebe.com/auth/start" scrolling="no" width="100%">',
52
- )
47
+ # sec.external_content_url = "https://app.eaglebe.com/auth/start"
48
+ # section_view = queryMultiAdapter((sec, self.request), name="view")
49
+ # self.assertEqual(
50
+ # section_view.get_embed_external_content(),
51
+ # '<iframe class="eaglebe" src="https://app.eaglebe.com/auth/start" scrolling="no" width="100%">',
52
+ # )
53
53
 
54
54
  def test_elloha_plugin(self):
55
55
  sec = api.content.create(
@@ -125,17 +125,17 @@ class TestSections(ImioSmartwebTestCase):
125
125
  type="imio.smartweb.SectionExternalContent",
126
126
  title="Section External Content",
127
127
  )
128
- section.external_content_url = (
129
- "https://app.eaglebe.com/fr-be/map/la%20louvi%C3%A8re"
130
- )
131
- view = queryMultiAdapter((section, self.request), name="view")
132
- embedded_content = view.get_embed_external_content()
133
- self.assertIn("iframe", embedded_content)
134
- self.assertIn('class="eaglebe"', embedded_content)
135
- self.assertIn('scrolling="no"', embedded_content)
136
- self.assertIn(
137
- "https://app.eaglebe.com/fr-be/map/la%20louvi%C3%A8re", embedded_content
138
- )
128
+ # section.external_content_url = (
129
+ # "https://app.eaglebe.com/fr-be/map/la%20louvi%C3%A8re"
130
+ # )
131
+ # view = queryMultiAdapter((section, self.request), name="view")
132
+ # embedded_content = view.get_embed_external_content()
133
+ # self.assertIn("iframe", embedded_content)
134
+ # self.assertIn('class="eaglebe"', embedded_content)
135
+ # self.assertIn('scrolling="no"', embedded_content)
136
+ # self.assertIn(
137
+ # "https://app.eaglebe.com/fr-be/map/la%20louvi%C3%A8re", embedded_content
138
+ # )
139
139
 
140
140
  section.external_content_url = "http://www.perdu.com"
141
141
  view = queryMultiAdapter((section, self.request), name="view")
@@ -171,6 +171,14 @@
171
171
  provides="Products.GenericSetup.interfaces.EXTENSION"
172
172
  />
173
173
 
174
+ <genericsetup:registerProfile
175
+ name="upgrade_1046_to_1047"
176
+ title="Upgrade core from 1046 to 1047"
177
+ directory="profiles/1046_to_1047"
178
+ description="Allow collective.pivot.Family content type in imio.smartweb.Folder"
179
+ provides="Products.GenericSetup.interfaces.EXTENSION"
180
+ />
181
+
174
182
  <genericsetup:upgradeStep
175
183
  title="Configure first official release"
176
184
  description="Run needed profiles steps and reindex catalog"
@@ -650,4 +658,14 @@
650
658
  import_profile="imio.smartweb.core.upgrades:upgrade_1045_to_1046"
651
659
  />
652
660
  </genericsetup:upgradeSteps>
661
+
662
+ <genericsetup:upgradeSteps
663
+ source="1046"
664
+ destination="1047"
665
+ profile="imio.smartweb.core:default">
666
+ <genericsetup:upgradeDepends
667
+ title="Allow collective.pivot.Family content type in imio.smartweb.Folder"
668
+ import_profile="imio.smartweb.core.upgrades:upgrade_1046_to_1047"
669
+ />
670
+ </genericsetup:upgradeSteps>
653
671
  </configure>
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0"?>
2
+ <object xmlns:i18n="http://xml.zope.org/namespaces/i18n"
3
+ name="imio.smartweb.Folder"
4
+ meta_type="Dexterity FTI"
5
+ i18n:domain="imio.smartweb">
6
+
7
+ <property name="allowed_content_types">
8
+ <element value="Collection" />
9
+ <element value="Message" />
10
+ <element value="Link" />
11
+ <element value="imio.smartweb.CirkwiView" />
12
+ <element value="imio.smartweb.DirectoryView" />
13
+ <element value="imio.smartweb.EventsView" />
14
+ <element value="imio.smartweb.Folder" />
15
+ <element value="imio.smartweb.NewsView" />
16
+ <element value="imio.smartweb.Page" />
17
+ <element value="imio.smartweb.PortalPage" />
18
+ <element value="imio.smartweb.Procedure" />
19
+ <element value="collective.pivot.Family" />
20
+ </property>
21
+
22
+ </object>
@@ -16,9 +16,12 @@ from zope.component import queryMultiAdapter
16
16
 
17
17
  import hashlib
18
18
  import json
19
+ import logging
19
20
  import os
20
21
  import requests
21
22
 
23
+ logger = logging.getLogger("imio.smartweb.core")
24
+
22
25
 
23
26
  def get_category(context):
24
27
  if not base_hasattr(context, "category_name"):
@@ -52,12 +55,15 @@ def concat_voca_title(title1, title2):
52
55
  return "{0} - {1}".format(title1, title2)
53
56
 
54
57
 
55
- def get_json(url, auth=None):
58
+ def get_json(url, auth=None, timeout=5):
56
59
  headers = {"Accept": "application/json"}
57
60
  if auth is not None:
58
61
  headers["Authorization"] = auth
59
62
  try:
60
- response = requests.get(url, headers=headers, timeout=5)
63
+ response = requests.get(url, headers=headers, timeout=timeout)
64
+ except requests.exceptions.Timeout:
65
+ logger.warning(f"Timeout raised for requests : {url}")
66
+ return None
61
67
  except Exception:
62
68
  return None
63
69
  if response.status_code != 200:
@@ -185,7 +185,7 @@ class RemoteContactsVocabularyFactory:
185
185
  "metadata_fields=breadcrumb",
186
186
  ]
187
187
  url = "{}/@search?{}".format(DIRECTORY_URL, "&".join(params))
188
- json_contacts = get_json(url)
188
+ json_contacts = get_json(url, None, 8)
189
189
  if json_contacts is None or len(json_contacts.get("items", [])) == 0:
190
190
  return SimpleVocabulary([])
191
191
  return SimpleVocabulary(
@@ -20,6 +20,7 @@
20
20
  ],
21
21
  "devDependencies": {
22
22
  "@babel/core": "^7.14.6",
23
+ "@babel/plugin-proposal-async-generator-functions": "^7.20.7",
23
24
  "@babel/plugin-transform-react-jsx": "^7.14.5",
24
25
  "@babel/preset-env": "^7.14.7",
25
26
  "@fullhuman/postcss-purgecss": "^4.0.3",
@@ -27,6 +28,7 @@
27
28
  "autoprefixer": "^10.3.3",
28
29
  "babel-loader": "^8.2.2",
29
30
  "clean-webpack-plugin": "^4.0.0",
31
+ "core-js": "^3.33.0",
30
32
  "css-loader": "^5.2.6",
31
33
  "css-minimizer-webpack-plugin": "^3.0.2",
32
34
  "eslint": "^7.32.0",
@@ -12,7 +12,7 @@ module.exports = (env, argv) => {
12
12
  const mode = argv.mode ? argv.mode : "development";
13
13
  return {
14
14
  mode: mode,
15
- entry: ["@babel/polyfill", path.resolve(__dirname, "./src/index.jsx")],
15
+ entry: ["core-js/stable", path.resolve(__dirname, "./src/index.jsx")],
16
16
  output: {
17
17
  path: path.resolve(__dirname, "./build"),
18
18
  filename: "js/smartweb-webcomponents-compiled.js",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: imio.smartweb.core
3
- Version: 1.1.27
3
+ Version: 1.1.29
4
4
  Summary: Core product for iMio websites
5
5
  Home-page: https://github.com/imio/imio.smartweb.core
6
6
  Author: Christophe Boulanger
@@ -189,6 +189,27 @@ Changelog
189
189
  =========
190
190
 
191
191
 
192
+ 1.1.29 (2023-10-18)
193
+ -------------------
194
+
195
+ - SUP-32814 : Add new external content plugins : GiveADayPlugin
196
+ see : https://github.com/IMIO/imio.smartweb.core/commit/a4dfca2
197
+ [boulch]
198
+
199
+ - WEB-4000 : Add display_map Bool field on directory and events views
200
+ [boulch]
201
+
202
+
203
+ 1.1.28 (2023-10-13)
204
+ -------------------
205
+
206
+ - WEB-3803 : Add upgrade step : collective.pivot.Family content type can be add in an imio.smartweb.Folder
207
+ [boulch]
208
+
209
+ - WEB-3998 : Set requests timeout to 8'' when we populate RemoteContacts vocabulary
210
+ [boulch]
211
+
212
+
192
213
  1.1.27 (2023-10-11)
193
214
  -------------------
194
215
 
@@ -1,4 +1,4 @@
1
- imio.smartweb.core-1.1.27-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
1
+ imio.smartweb.core-1.1.29-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
2
2
  imio/smartweb/core/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
3
3
  imio/smartweb/core/config.py,sha256=BUgfvh4hCaw0onCYAG4gQI1O4hZ-GzXWEltdHi4YLIs,337
4
4
  imio/smartweb/core/configure.zcml,sha256=G_Txh8wh0Mt5g2nDrJUjec_qFd5l9A8ZEUFzv4cjUcA,1429
@@ -12,8 +12,8 @@ imio/smartweb/core/subscribers.py,sha256=p-pwenYgHF5oqCvZFTwIvOMpVefC459lU1DkYWN
12
12
  imio/smartweb/core/subscribers.zcml,sha256=UHeXa7eI_uem9-I1KR_oLLYTYRawpPCQ2hxJOwRr4Ew,821
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=BuOdPH97uZ4JUt2dGp6Y_XdfxR_6oRuc0HHmE8O2Hkw,4748
16
- imio/smartweb/core/vocabularies.py,sha256=05GHHccRLVrGTi9f8r4Ewjr9pKEJzJxayh6pSY-ugK4,19986
15
+ imio/smartweb/core/utils.py,sha256=9qrfIFF1sWkkgApfcjoyOGCj1eb3ytbr33Fcfnmck8s,4953
16
+ imio/smartweb/core/vocabularies.py,sha256=1JkFiSmIv7cRGt45GNKJvBkWjIxGMsakvb9ORFCpaTI,19995
17
17
  imio/smartweb/core/vocabularies.zcml,sha256=KcNfSo40KOajIyUlqu4hnNjMCptHywPf6K6xVvaIVLQ,5080
18
18
  imio/smartweb/core/behaviors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  imio/smartweb/core/behaviors/configure.zcml,sha256=_Z7t9D690r08OdwmxZxxLlBTeNai2I8sk9gagUauwZU,1459
@@ -193,16 +193,16 @@ imio/smartweb/core/contents/rest/configure.zcml,sha256=Cq0d5n2-XZZr7DD8BjQyjOFkp
193
193
  imio/smartweb/core/contents/rest/view.py,sha256=kaNmJZ7FbB-HE632bfITo-ZrjNGBqKhGuChmPoOmv6Y,706
194
194
  imio/smartweb/core/contents/rest/directory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
195
  imio/smartweb/core/contents/rest/directory/configure.zcml,sha256=_K34jECLk9RWscAyiRXwoJLLBIVj-EJRGFOEbUU5Ito,1035
196
- imio/smartweb/core/contents/rest/directory/content.py,sha256=c3XmsOXVp9Zx30DeljuCbkaSJVhdqBRb5M2FKYaaokE,923
196
+ imio/smartweb/core/contents/rest/directory/content.py,sha256=zjNHSJeVr5vijEJ3LSuL-9UjaU6Gm_Ztl4svkYpGAUw,1100
197
197
  imio/smartweb/core/contents/rest/directory/endpoint.py,sha256=DJf0fdu66VEt2gwO-l1Bqf_Y6RtXhs4SG7OvkbEGQN0,2784
198
- imio/smartweb/core/contents/rest/directory/view.pt,sha256=6J6LPZSQ4Aq4SQV2Bukvm-oNgljvAqpknaSLa_3m-hc,616
199
- imio/smartweb/core/contents/rest/directory/view.py,sha256=ZWNstnjoCWaadqo3V2m8-GOb4pyXEpBvWsD4R95lGlo,302
198
+ imio/smartweb/core/contents/rest/directory/view.pt,sha256=H3ApKuIpJkljCs7ol97p8FARTJTJiOPMYmhJCz-pfwA,685
199
+ imio/smartweb/core/contents/rest/directory/view.py,sha256=oW-RJvldZOHd4xHCPtwienk99rZPNV_q9bwUVVgYlJM,384
200
200
  imio/smartweb/core/contents/rest/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
201
  imio/smartweb/core/contents/rest/events/configure.zcml,sha256=ufUHdGMkGd57zgZ4_DxvoK4Zn7_AC_A3_TnLkmdYRhs,1017
202
- imio/smartweb/core/contents/rest/events/content.py,sha256=AUup2Qf47hP7_qB0WS3M7_dzmL1YpRWySz5MGLSSz50,1100
202
+ imio/smartweb/core/contents/rest/events/content.py,sha256=UF5o1KSlUhymQUK_jqX7VIoUZrAs5IkGTy_tPSXGveU,1277
203
203
  imio/smartweb/core/contents/rest/events/endpoint.py,sha256=s0PHrAxIv2thBTHsuHbjjSdwqnWOZbhZz8DNk-vqn10,2561
204
- imio/smartweb/core/contents/rest/events/view.pt,sha256=0nT6iPXHIYMEtTGCVbvFtIhs_wc8rpbbs4_bYnOFiuQ,617
205
- imio/smartweb/core/contents/rest/events/view.py,sha256=hiHjL93lRP_hb-xa2t9cpGGz67jo3Y5ssFpV-F2eXtM,293
204
+ imio/smartweb/core/contents/rest/events/view.pt,sha256=zOqZbykUq73cIp_IMg2jFprZ5EHSZ5ViK9P4TlUk3GU,686
205
+ imio/smartweb/core/contents/rest/events/view.py,sha256=cNEor3E5kVtqGURtMYS2JZETcpXuIx3PA-IVcr_ejuA,375
206
206
  imio/smartweb/core/contents/rest/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
207
  imio/smartweb/core/contents/rest/news/configure.zcml,sha256=f1kNWMjcHul5_dKv51KY_GQII-Cvx-uL7N9Z25zlN8c,1005
208
208
  imio/smartweb/core/contents/rest/news/content.py,sha256=i2duKDXViZwOnzS1h8vKkGxejlbRJ4zGtkUIsybtonc,753
@@ -240,9 +240,9 @@ imio/smartweb/core/contents/sections/events/view.py,sha256=nTwRUB4KRYHGejG0AVD7a
240
240
  imio/smartweb/core/contents/sections/external_content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
241
  imio/smartweb/core/contents/sections/external_content/configure.zcml,sha256=fv5_EgtBz4Ecnia8zgxwASnuxRmh6dXLJPncmR0BC-U,727
242
242
  imio/smartweb/core/contents/sections/external_content/content.py,sha256=apHtfPwxkHkLQJVFVXs4F8O0gE09uI49AFQ8xRFrXgo,1096
243
- imio/smartweb/core/contents/sections/external_content/view.pt,sha256=ejEDippSIyEZN4QbjnMgPUk89D6eGkf3DMpwqTlDHjk,1245
243
+ imio/smartweb/core/contents/sections/external_content/view.pt,sha256=_HwDoyytZrcq_IMXuRxakr54XgjXRNYScZumSA50FEA,1234
244
244
  imio/smartweb/core/contents/sections/external_content/view_arcgis.pt,sha256=mWxeEI6gWAIHixV0dIt6JnEPCEEYqsJklA3V9nGXFTw,4895
245
- imio/smartweb/core/contents/sections/external_content/views.py,sha256=MLKSEfndvQxZdbXu6P-3A2gA0d1pgWLDZeD5fH98SQw,8139
245
+ imio/smartweb/core/contents/sections/external_content/views.py,sha256=yeVUEifvoBGkjTLrpVz1PvNpsmiWjql9DvQnnJWR6zg,8764
246
246
  imio/smartweb/core/contents/sections/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
247
247
  imio/smartweb/core/contents/sections/files/configure.zcml,sha256=DyyHzDEKLWmOywbV08Zf7bvf0At5jyAeDfZ8PCK5Rog,501
248
248
  imio/smartweb/core/contents/sections/files/content.py,sha256=3WHAdqNxV_L30EdtCpfHjlnaKIjZunZFRLpwmREJFi0,868
@@ -307,7 +307,7 @@ imio/smartweb/core/profiles/default/actions.xml,sha256=GC6a6dN6eibpFJ5XEc5CC_hki
307
307
  imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH8EF-fc-aPua-oIdu0GuzTyk,179
308
308
  imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
309
309
  imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
310
- imio/smartweb/core/profiles/default/metadata.xml,sha256=GtJb7-Vtj6s6y6-G_i140IGQFZLUiBxIxQHfJKS2q_s,1218
310
+ imio/smartweb/core/profiles/default/metadata.xml,sha256=0HxBFZACd3zlHiKNcycGLV67CKG8OM28R92MFZD0jUA,1218
311
311
  imio/smartweb/core/profiles/default/repositorytool.xml,sha256=GXq_sozn7Ucy0810IS9T0dgl8M7FT0gUbVz7BeFcLpo,183
312
312
  imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
313
313
  imio/smartweb/core/profiles/default/types.xml,sha256=xkQyPtEccUnAHu5mL83r96dmtnCWNn17lVRJPP2jWMg,2040
@@ -324,7 +324,7 @@ imio/smartweb/core/profiles/default/types/imio.smartweb.BlockLink.xml,sha256=BfU
324
324
  imio/smartweb/core/profiles/default/types/imio.smartweb.CirkwiView.xml,sha256=IGoR-20sjdjjn_O9W3JXWSKoYtfBKPAdJBzVE4DqVjI,1474
325
325
  imio/smartweb/core/profiles/default/types/imio.smartweb.DirectoryView.xml,sha256=Jg774GALycOWGlC4ZHgk73PoyiKjBC2dz1izVTj_KeU,1508
326
326
  imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml,sha256=vN_uOX2wGSbQCYSA4GLxZ0WeABbKf2aJvzDt8EdQrMQ,1493
327
- imio/smartweb/core/profiles/default/types/imio.smartweb.Folder.xml,sha256=9OuUCpV-mFTb5ZCHeBmq0KC7vKBEGW920JvGwb5OEA0,2460
327
+ imio/smartweb/core/profiles/default/types/imio.smartweb.Folder.xml,sha256=kyGj8mAa0zER8GWVZUveqFiBJWnm3KuAw2_EO4HvX1A,2508
328
328
  imio/smartweb/core/profiles/default/types/imio.smartweb.Footer.xml,sha256=3wJF6Pcv_uKb-9uwbB3qOgVHH2E5kZQU20jCieph4Uk,1730
329
329
  imio/smartweb/core/profiles/default/types/imio.smartweb.HeroBanner.xml,sha256=K17YmXTHR23suOhGZqjNjI0DPBenrdAOcLCqN6VUBD8,1604
330
330
  imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml,sha256=uKu2nd8u5GnqZKkGwBfPdl8auLtHJ1UQmJZL6owuoFA,1476
@@ -380,15 +380,15 @@ imio/smartweb/core/tests/test_page.py,sha256=1dD9M_6nwS6M2OuyWmT5cPq5qnxnog3tcqF
380
380
  imio/smartweb/core/tests/test_plausibleview.py,sha256=G1ryfnz3TuQBG8VFO5KzEylT5DFABW58PQuuvPq_ccY,3229
381
381
  imio/smartweb/core/tests/test_portal_page.py,sha256=hIqg4eb91o8BsSj7eSKdvoxehzOXt8bzpg1o5ej__zg,7215
382
382
  imio/smartweb/core/tests/test_procedure.py,sha256=0w8phOwYfpp9vb3KDsnwjX8AhQXWdodA06W4koderQo,6474
383
- imio/smartweb/core/tests/test_rest.py,sha256=t43LJfl0W1suebEDtZ2LlBvOL-So32SPdRtoV3U0ahY,13858
383
+ imio/smartweb/core/tests/test_rest.py,sha256=JeHLX1mnUzJSvhpGJWDvN8y-YGy2im4k-EdRkMXJ8Ls,14599
384
384
  imio/smartweb/core/tests/test_robot.py,sha256=NQ7AkN4tEva3bgGjMxmyqY0zIo4pJPnPOwnD9hmrTVI,926
385
385
  imio/smartweb/core/tests/test_search.py,sha256=VryeRI4_5CvnStKOoNoG95M2WTy7Lyy_AhHIDG40M14,2182
386
386
  imio/smartweb/core/tests/test_section_contact.py,sha256=C1pSm49aKaOeCEEfeWkM5DEwP4gk02l0GQHp8yqDYpU,21264
387
387
  imio/smartweb/core/tests/test_section_events.py,sha256=H7vw84NAUgBr3Cnbb0ZMLdi1xvg8_mU2Y2E2JQEAV5c,5609
388
- imio/smartweb/core/tests/test_section_external_content.py,sha256=sWamDvmJIyFTM__u23isQglO0uaFXNHHLZxXm0yS9HQ,6840
388
+ imio/smartweb/core/tests/test_section_external_content.py,sha256=rKxVc03Z7atkkLEVG_kergdK5F3MN5h9PQtmOEd6Q04,6872
389
389
  imio/smartweb/core/tests/test_section_news.py,sha256=FhuerS1a4sppGwswUXaQ6hw_BOMjb79_pzrF5B5FciY,5760
390
390
  imio/smartweb/core/tests/test_section_sendinblue.py,sha256=UmmKo33T9feelumxqeejM4HG4oLRPKJkbB8hkLO144E,2661
391
- imio/smartweb/core/tests/test_sections.py,sha256=WZm0k2fyGAPNcnKUsjGjoHBsOBjcRPU5BuM3vszpxWI,23669
391
+ imio/smartweb/core/tests/test_sections.py,sha256=5FDV59KMsdWMIBtqE4_r9ujnwURfPP860kNSXmapNj8,23691
392
392
  imio/smartweb/core/tests/test_setup.py,sha256=JcbMnXTNCuB_8grFh5E1kZ0uALdATlKMbahAdGfToZI,2092
393
393
  imio/smartweb/core/tests/test_social.py,sha256=THsk3PrUrjV4nPK-DDRRBnItMBr3TVuXExSucd0n79k,3030
394
394
  imio/smartweb/core/tests/test_subsite.py,sha256=wiD8Ke4_-ArstSYNLCs8ArqOuDx2xxUR6Wac3GXfnbE,9016
@@ -432,7 +432,7 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
432
432
  imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
433
433
  imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
434
434
  imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
435
- imio/smartweb/core/upgrades/configure.zcml,sha256=Pt3C8tugKKfE6sAd6gYY3vTpUlFITIEVxKjFEUCJMjQ,21717
435
+ imio/smartweb/core/upgrades/configure.zcml,sha256=yBFr_ibfxzVa3VrPZ3tWS1Wee3oc3yGL9WCMbfJ2GVA,22376
436
436
  imio/smartweb/core/upgrades/upgrades.py,sha256=NnRSW7Q_cJulmCP8MApc4fZI0yXbN81mmxa1waBMNHM,6257
437
437
  imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
438
438
  imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
@@ -515,6 +515,7 @@ imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSel
515
515
  imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSendinblue.xml,sha256=Q5u3BHHwVUdZgjMibus2QeUEHSzSatCRlt1ChcC_PB4,402
516
516
  imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionVideo.xml,sha256=DKAu1exRRMoJeuQqRh9NcGJ0yLkNbky-uzqS9Ve9x9k,441
517
517
  imio/smartweb/core/upgrades/profiles/1045_to_1046/types/imio.smartweb.SectionExternalContent.xml,sha256=pU25viyx44Ey1WcVMMjuUUS_ZfzrpWz-eMLNJfNWFqM,490
518
+ imio/smartweb/core/upgrades/profiles/1046_to_1047/types/imio.smartweb.Folder.xml,sha256=2ogSyy9SginZJUSCq3Aq70tijV4QfT9wvWOx-zyzEKo,768
518
519
  imio/smartweb/core/viewlets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
519
520
  imio/smartweb/core/viewlets/actions.py,sha256=QWj_pLNxH4223XPk4b4Dc79DiajF0HHfaXlUmXTwJ8k,661
520
521
  imio/smartweb/core/viewlets/arcgis_header.pt,sha256=iQc5ZG3g1Cmap963OG-wPotllr7oWmVSMoAnA7tctrQ,3428
@@ -563,10 +564,10 @@ imio/smartweb/core/webcomponents/README.md,sha256=u-1KMiYzChIOe3BNY1paacCEVsxRit
563
564
  imio/smartweb/core/webcomponents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
564
565
  imio/smartweb/core/webcomponents/babel.config.json,sha256=GLMlFLD4qaaNVuRWogON3geyD75eqVm6cN4RAGwPt3g,194
565
566
  imio/smartweb/core/webcomponents/configure.zcml,sha256=WiA01XuVcc4VgxrvFCztR2nPMCBp2dGIgpIZv6WdJ7s,263
566
- imio/smartweb/core/webcomponents/package.json,sha256=vuogYPZAkVYqLYnhR38X7zjvbkYrga6V1h5KkjUKuM4,2531
567
+ imio/smartweb/core/webcomponents/package.json,sha256=6SWdLfc0-f7Mn-Ho06O4Kl79eAjOlJS-OmGTZKqsaLw,2624
567
568
  imio/smartweb/core/webcomponents/pnpm-lock.yaml,sha256=JG4ddKx_Cm56scBd2-mqDpbV3owMc5O9RfIExoujY4E,255013
568
569
  imio/smartweb/core/webcomponents/postcss.config.js,sha256=C6AOPegqTEkRboXRWl6obj0priHtdSRiApehW4TWp8E,101
569
- imio/smartweb/core/webcomponents/webpack.config.js,sha256=O-oBsN7TiJqxiJtyNz7he5YKWRGPauJ_XNUfl8g938Y,6853
570
+ imio/smartweb/core/webcomponents/webpack.config.js,sha256=ie90xYAH82rUaPv41_7v-eXTDADH55Z-V9v9gptDC6s,6852
570
571
  imio/smartweb/core/webcomponents/webpackPlonePlugin.js,sha256=TWpGoEYRBOKB7o0SJ1F7P0hLYflkNmbODG7ZCyrPjQw,2226
571
572
  imio/smartweb/core/webcomponents/build/assets/layers-2x.8f2c4d11474275fbc1614b9098334eae.png,sha256=Bm2sqFDY_77wB68AsG6sABVyje4nnFHzy2xxbffELt8,1259
572
573
  imio/smartweb/core/webcomponents/build/assets/layers.416d91365b44e4b4f4777663e6f009f3.png,sha256=Hbvp0CjikvNvy6j4s6KNXokydU_CIVuaxp5M3s9RB8Y,696
@@ -662,10 +663,10 @@ imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=MsRpT8p9bZTp2Hk2sc
662
663
  imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js,sha256=fGxgxCI22ERSlVLCYmD0-nztnGUIz-VkUNyLtj5HSuo,223
663
664
  imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=bsTZTvRlBaCImAchnuhZLtLQYC06bM539cPLoAgBMP0,2694
664
665
  imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
665
- imio.smartweb.core-1.1.27.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
666
- imio.smartweb.core-1.1.27.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
667
- imio.smartweb.core-1.1.27.dist-info/METADATA,sha256=1p59xH9iWQGvIfS3rX0dA4OA5yZHC0JtdKV82OkLYgM,41644
668
- imio.smartweb.core-1.1.27.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
669
- imio.smartweb.core-1.1.27.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
670
- imio.smartweb.core-1.1.27.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
671
- imio.smartweb.core-1.1.27.dist-info/RECORD,,
666
+ imio.smartweb.core-1.1.29.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
667
+ imio.smartweb.core-1.1.29.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
668
+ imio.smartweb.core-1.1.29.dist-info/METADATA,sha256=y_U4K6L9BiFZSbtkOfryhUw4zKIyQrdEVvDNp5zAkvQ,42167
669
+ imio.smartweb.core-1.1.29.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
670
+ imio.smartweb.core-1.1.29.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
671
+ imio.smartweb.core-1.1.29.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
672
+ imio.smartweb.core-1.1.29.dist-info/RECORD,,