imio.smartweb.core 1.2.33__py3-none-any.whl → 1.2.34__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 (25) hide show
  1. imio/smartweb/core/browser/sitemap.py +0 -2
  2. imio/smartweb/core/browser/utils.py +1 -2
  3. imio/smartweb/core/contents/sections/contact/utils.py +0 -4
  4. imio/smartweb/core/contents/sections/macros.pt +13 -9
  5. imio/smartweb/core/profiles/default/diff_tool.xml +8 -0
  6. imio/smartweb/core/profiles/default/metadata.xml +1 -1
  7. imio/smartweb/core/profiles/default/repositorytool.xml +1 -0
  8. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml +0 -1
  9. imio/smartweb/core/profiles/validation/contentrules.xml +102 -0
  10. imio/smartweb/core/profiles.zcml +8 -0
  11. imio/smartweb/core/tests/test_sections.py +18 -0
  12. imio/smartweb/core/tests/test_sitemap.py +1 -1
  13. imio/smartweb/core/upgrades/configure.zcml +18 -0
  14. imio/smartweb/core/upgrades/profiles/1052_to_1053/diff_tool.xml +8 -0
  15. imio/smartweb/core/upgrades/profiles/1052_to_1053/repositorytool.xml +9 -0
  16. imio/smartweb/core/upgrades/profiles/1052_to_1053/types/imio.smartweb.SectionHTML.xml +14 -0
  17. imio/smartweb/core/viewlets/ogptags.py +1 -2
  18. {imio.smartweb.core-1.2.33.dist-info → imio.smartweb.core-1.2.34.dist-info}/METADATA +11 -1
  19. {imio.smartweb.core-1.2.33.dist-info → imio.smartweb.core-1.2.34.dist-info}/RECORD +25 -20
  20. /imio.smartweb.core-1.2.33-py3.10-nspkg.pth → /imio.smartweb.core-1.2.34-py3.10-nspkg.pth +0 -0
  21. {imio.smartweb.core-1.2.33.dist-info → imio.smartweb.core-1.2.34.dist-info}/LICENSE.GPL +0 -0
  22. {imio.smartweb.core-1.2.33.dist-info → imio.smartweb.core-1.2.34.dist-info}/LICENSE.rst +0 -0
  23. {imio.smartweb.core-1.2.33.dist-info → imio.smartweb.core-1.2.34.dist-info}/WHEEL +0 -0
  24. {imio.smartweb.core-1.2.33.dist-info → imio.smartweb.core-1.2.34.dist-info}/namespace_packages.txt +0 -0
  25. {imio.smartweb.core-1.2.33.dist-info → imio.smartweb.core-1.2.34.dist-info}/top_level.txt +0 -0
@@ -11,8 +11,6 @@ from Products.CMFCore.utils import getToolByName
11
11
  from Products.CMFPlone.utils import normalizeString
12
12
  from zope.component import getUtility
13
13
 
14
- import re
15
-
16
14
 
17
15
  class CustomSiteMapView(SiteMapView):
18
16
 
@@ -1,5 +1,4 @@
1
1
  # -*- coding: utf-8 -*-
2
- from Products.Five.browser import BrowserView
3
2
  from imio.smartweb.core.contents import IPages
4
3
  from imio.smartweb.core.contents.pages.procedure.utils import sign_url
5
4
  from imio.smartweb.core.utils import get_plausible_vars
@@ -7,12 +6,12 @@ from imio.smartweb.locales import SmartwebMessageFactory as _
7
6
  from plone import api
8
7
  from plone.api.portal import get_registry_record
9
8
  from plone.formwidget.geolocation.vocabularies import _ as _geo
9
+ from Products.Five.browser import BrowserView
10
10
  from zope.component import getMultiAdapter
11
11
  from zope.i18n import translate
12
12
 
13
13
  import json
14
14
  import requests
15
- import os
16
15
 
17
16
 
18
17
  class UtilsView(BrowserView):
@@ -1,8 +1,5 @@
1
1
  # -*- coding: utf-8 -*-
2
2
 
3
- from datetime import date, datetime
4
- from datetime import timedelta
5
- from decimal import Decimal
6
3
  from imio.smartweb.common.contact_utils import ContactProperties as ContactSchedule
7
4
  from imio.smartweb.common.utils import rich_description
8
5
  from imio.smartweb.core.utils import batch_results
@@ -11,7 +8,6 @@ from imio.smartweb.core.utils import hash_md5
11
8
  from imio.smartweb.locales import SmartwebMessageFactory as _
12
9
  from plone import api
13
10
  from zope.i18n import translate
14
- from zope.i18nmessageid import MessageFactory
15
11
 
16
12
  import json
17
13
 
@@ -56,15 +56,19 @@
56
56
  <tal:dates define="modified context/ModificationDate">
57
57
  <span class="documentModified"
58
58
  tal:condition="modified">
59
- <span i18n:translate="">
60
- Modified
61
- </span>
62
- <span class="pat-display-time"
63
- data-pat-display-time="from-now: true"
64
- tal:attributes="datetime modified"
65
- tal:content="modified">
66
- Modified
67
- </span>
59
+ <a class="documentModified"
60
+ tal:attributes="href string:${context/absolute_url}/@@historyview"
61
+ tal:omit-tag="python:context.portal_type != 'imio.smartweb.SectionText'">
62
+ <span i18n:translate="">
63
+ Modified
64
+ </span>
65
+ <span class="pat-display-time"
66
+ data-pat-display-time="from-now: true"
67
+ tal:attributes="datetime modified"
68
+ tal:content="modified">
69
+ Modified
70
+ </span>
71
+ </a>
68
72
  </span>
69
73
  </tal:dates>
70
74
 
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <object>
3
+ <difftypes>
4
+ <type portal_type="imio.smartweb.SectionText">
5
+ <field name="any" difftype="Compound Diff for Dexterity types"/>
6
+ </type>
7
+ </difftypes>
8
+ </object>
@@ -1,6 +1,6 @@
1
1
  <?xml version='1.0' encoding='UTF-8'?>
2
2
  <metadata>
3
- <version>1052</version>
3
+ <version>1053</version>
4
4
  <dependencies>
5
5
  <dependency>profile-plone.app.dexterity:default</dependency>
6
6
  <dependency>profile-plone.app.imagecropping:default</dependency>
@@ -2,6 +2,7 @@
2
2
  <repositorytool>
3
3
  <policymap>
4
4
  <type name="imio.smartweb.SectionText">
5
+ <policy name="at_edit_autoversion" />
5
6
  <policy name="version_on_revert"/>
6
7
  </type>
7
8
  </policymap>
@@ -32,7 +32,6 @@
32
32
  <element value="plone.namefromtitle"/>
33
33
  <element value="plone.locking"/>
34
34
  <element value="plone.shortname"/>
35
- <element value="plone.versioning" />
36
35
  </property>
37
36
 
38
37
  </object>
@@ -0,0 +1,102 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <contentrules>
3
+ <rule name="rule-1" title="Notification de contenu à valider"
4
+ cascading="False" description="" enabled="True"
5
+ event="Products.CMFCore.interfaces.IActionSucceededEvent"
6
+ stop-after="False">
7
+ <conditions>
8
+ <condition type="plone.conditions.PortalType">
9
+ <property name="check_types">
10
+ <element>imio.smartweb.Page</element>
11
+ <element>imio.smartweb.PortalPage</element>
12
+ <element>imio.smartweb.Procedure</element>
13
+ </property>
14
+ </condition>
15
+ <condition type="plone.conditions.WorkflowState">
16
+ <property name="wf_states">
17
+ <element>pending</element>
18
+ </property>
19
+ </condition>
20
+ </conditions>
21
+ <actions>
22
+ <action type="plone.actions.Mail">
23
+ <property name="subject">Nouveau contenu sur le site</property>
24
+ <property name="source"/>
25
+ <property name="recipients">${reviewer_emails}</property>
26
+ <property name="exclude_actor">False</property>
27
+ <property name="message">Un nouveau contenu a été soumis à validation. Cliquez sur le lien pour aller le valider ou le refuser : ${absolute_url}</property>
28
+ </action>
29
+ <action type="plone.actions.Logger">
30
+ <property name="targetLogger">imio.smartweb.core</property>
31
+ <property name="loggingLevel">20</property>
32
+ <property
33
+ name="message">Content to review notification sent for &amp;c.</property>
34
+ </action>
35
+ </actions>
36
+ </rule>
37
+ <rule name="rule-2" title="Notification de modification de section de contenu publié"
38
+ cascading="False" description="" enabled="True"
39
+ event="zope.lifecycleevent.interfaces.IObjectModifiedEvent"
40
+ stop-after="False">
41
+ <conditions>
42
+ <condition type="plone.conditions.PortalType">
43
+ <property name="check_types">
44
+ <element>imio.smartweb.SectionText</element>
45
+ </property>
46
+ </condition>
47
+ <condition type="plone.conditions.TalesExpression">
48
+ <property
49
+ name="tales_expression">python: hasattr(here, &quot;aq_parent&quot;) and portal.portal_workflow.getInfoFor(here.aq_parent, &quot;review_state&quot;, &quot;&quot;) == &quot;published&quot;</property>
50
+ </condition>
51
+ </conditions>
52
+ <actions>
53
+ <action type="plone.actions.Mail">
54
+ <property name="subject">Contenu publié modifié sur le site</property>
55
+ <property name="source"/>
56
+ <property name="recipients">${reviewer_emails}</property>
57
+ <property name="exclude_actor">False</property>
58
+ <property name="message">Une section texte d&#x27;un contenu déjà publié a été modifiée. Cliquez sur le lien pour consulter la modification effectuée : ${absolute_url}/@@historyview</property>
59
+ </action>
60
+ <action type="plone.actions.Logger">
61
+ <property name="targetLogger">imio.smartweb.core</property>
62
+ <property name="loggingLevel">20</property>
63
+ <property
64
+ name="message">Published content change notification sent for &amp;c (user: &amp;u).</property>
65
+ </action>
66
+ </actions>
67
+ </rule>
68
+ <rule name="rule-3" title="Notification d'ajout de section à un contenu publié"
69
+ cascading="False" description="" enabled="True"
70
+ event="zope.lifecycleevent.interfaces.IObjectAddedEvent"
71
+ stop-after="False">
72
+ <conditions>
73
+ <condition type="plone.conditions.PortalType">
74
+ <property name="check_types">
75
+ <element>imio.smartweb.SectionText</element>
76
+ </property>
77
+ </condition>
78
+ <condition type="plone.conditions.TalesExpression">
79
+ <property
80
+ name="tales_expression">python: hasattr(here, &quot;aq_parent&quot;) and portal.portal_workflow.getInfoFor(here.aq_parent, &quot;review_state&quot;, &quot;&quot;) == &quot;published&quot;</property>
81
+ </condition>
82
+ </conditions>
83
+ <actions>
84
+ <action type="plone.actions.Mail">
85
+ <property name="subject">Contenu publié modifié sur le site</property>
86
+ <property name="source"/>
87
+ <property name="recipients">${reviewer_emails}</property>
88
+ <property name="exclude_actor">False</property>
89
+ <property name="message">Une section texte a été ajoutée à un contenu déjà publié. Cliquez sur le lien pour consulter la section texte ajoutée : ${absolute_url}</property>
90
+ </action>
91
+ <action type="plone.actions.Logger">
92
+ <property name="targetLogger">imio.smartweb.core</property>
93
+ <property name="loggingLevel">20</property>
94
+ <property
95
+ name="message">Published content add notification sent for &amp;c (user: &amp;u).</property>
96
+ </action>
97
+ </actions>
98
+ </rule>
99
+ <assignment name="rule-1" bubbles="True" enabled="True" location=""/>
100
+ <assignment name="rule-2" bubbles="True" enabled="True" location=""/>
101
+ <assignment name="rule-3" bubbles="True" enabled="True" location=""/>
102
+ </contentrules>
@@ -45,6 +45,14 @@
45
45
  provides="Products.GenericSetup.interfaces.EXTENSION"
46
46
  />
47
47
 
48
+ <genericsetup:registerProfile
49
+ name="validation"
50
+ title="imio.smartweb.core validation"
51
+ directory="profiles/validation"
52
+ description="Installs smartweb validation content rules"
53
+ provides="Products.GenericSetup.interfaces.EXTENSION"
54
+ />
55
+
48
56
  <genericsetup:registerProfile
49
57
  name="last-compilation"
50
58
  title="imio.smartweb.core last compilation dates"
@@ -588,3 +588,21 @@ class TestSections(ImioSmartwebTestCase):
588
588
  self.assertEqual(
589
589
  view.get_class(section), "sectiontext my-css col-sm-3 with-background"
590
590
  )
591
+
592
+ def test_sections_history(self):
593
+ api.content.transition(self.page, "publish")
594
+ section_types = get_sections_types()
595
+ page_view = queryMultiAdapter((self.page, self.request), name="full_view")()
596
+ count_historyview_link = page_view.count("@@historyview")
597
+ self.assertEqual(count_historyview_link, 1)
598
+ for section_type in section_types:
599
+ api.content.create(
600
+ container=self.page,
601
+ type=section_type,
602
+ title="Title of my {}".format(section_type),
603
+ )
604
+ page_view = queryMultiAdapter((self.page, self.request), name="full_view")()
605
+ section_text = api.content.find(portal_type="imio.smartweb.SectionText")[0]
606
+ self.assertIn(f"{section_text.getURL()}/@@historyview", page_view)
607
+ # One more history view link on SectionText
608
+ self.assertEqual(page_view.count("@@historyview"), count_historyview_link + 1)
@@ -131,7 +131,7 @@ class TestPage(ImioSmartwebTestCase):
131
131
  self.json_news = get_json("resources/json_rest_news.json")
132
132
  self.json_events = get_json("resources/json_rest_events.json")
133
133
 
134
- contact_search_url = f"http://localhost:8080/Plone/@search?selected_entities=396907b3b1b04a97896b12cc792c77f8&portal_type=imio.directory.Contact&fullobjects=0&sort_on=sortable_title"
134
+ contact_search_url = "http://localhost:8080/Plone/@search?selected_entities=396907b3b1b04a97896b12cc792c77f8&portal_type=imio.directory.Contact&fullobjects=0&sort_on=sortable_title"
135
135
  news_search_url = f"http://localhost:8080/Plone/@search?selected_news_folders={self.rest_news.selected_news_folder}&portal_type=imio.news.NewsItem&fullobjects=0&sort_on=sortable_title"
136
136
  events_search_url = f"http://localhost:8080/Plone/@events?selected_agendas={self.rest_agenda.selected_agenda}&portal_type=imio.events.Event&fullobjects=0&sort_on=sortable_title"
137
137
 
@@ -195,6 +195,14 @@
195
195
  provides="Products.GenericSetup.interfaces.EXTENSION"
196
196
  />
197
197
 
198
+ <genericsetup:registerProfile
199
+ name="upgrade_1052_to_1053"
200
+ title="Upgrade core from 1052 to 1053"
201
+ directory="profiles/1052_to_1053"
202
+ description="Fix versioning on imio.smartweb.SectionText"
203
+ provides="Products.GenericSetup.interfaces.EXTENSION"
204
+ />
205
+
198
206
  <genericsetup:upgradeStep
199
207
  title="Configure first official release"
200
208
  description="Run needed profiles steps and reindex catalog"
@@ -729,4 +737,14 @@
729
737
  />
730
738
  </genericsetup:upgradeSteps>
731
739
 
740
+ <genericsetup:upgradeSteps
741
+ source="1052"
742
+ destination="1053"
743
+ profile="imio.smartweb.core:default">
744
+ <genericsetup:upgradeDepends
745
+ title="Fix versioning on imio.smartweb.SectionText"
746
+ import_profile="imio.smartweb.core.upgrades:upgrade_1052_to_1053"
747
+ />
748
+ </genericsetup:upgradeSteps>
749
+
732
750
  </configure>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <object>
3
+ <difftypes>
4
+ <type portal_type="imio.smartweb.SectionText">
5
+ <field name="any" difftype="Compound Diff for Dexterity types"/>
6
+ </type>
7
+ </difftypes>
8
+ </object>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <repositorytool>
3
+ <policymap purge="false">
4
+ <type name="imio.smartweb.SectionText">
5
+ <policy name="at_edit_autoversion" />
6
+ <policy name="version_on_revert" />
7
+ </type>
8
+ </policymap>
9
+ </repositorytool>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0"?>
2
+ <object xmlns:i18n="http://xml.zope.org/namespaces/i18n"
3
+ name="imio.smartweb.SectionHTML"
4
+ meta_type="Dexterity FTI"
5
+ i18n:domain="imio.smartweb">
6
+
7
+ <!-- Enabled behaviors -->
8
+ <property name="behaviors" purge="true">
9
+ <element value="plone.namefromtitle"/>
10
+ <element value="plone.locking"/>
11
+ <element value="plone.shortname"/>
12
+ </property>
13
+
14
+ </object>
@@ -7,7 +7,6 @@ from imio.smartweb.core.contents import IDirectoryView
7
7
  from imio.smartweb.core.contents import IEventsView
8
8
  from imio.smartweb.core.contents import INewsView
9
9
  from imio.smartweb.core.utils import get_json
10
- from imio.smartweb.core.utils import get_scale_url
11
10
  from imio.smartweb.core.utils import get_wca_token
12
11
  from imio.smartweb.core.utils import hash_md5
13
12
  from plone import api
@@ -117,7 +116,7 @@ class OgpTagsViewlet(HeaderViewlet):
117
116
  return ""
118
117
  try:
119
118
  url = f'{self.request.ACTUAL_URL}?u={self.request.form["u"]}'
120
- except:
119
+ except Exception:
121
120
  url = self.request.URL
122
121
  return url
123
122
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: imio.smartweb.core
3
- Version: 1.2.33
3
+ Version: 1.2.34
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,16 @@ Changelog
189
189
  =========
190
190
 
191
191
 
192
+ 1.2.34 (2024-02-19)
193
+ -------------------
194
+
195
+ - MWEBRCHA-13 : Add content rules to notify reviewers (Install via `validation` profile)
196
+ [laulaz]
197
+
198
+ - MWEBRCHA-13 : Fix plone versioning (Work on SectionText / Remove from SectionHTML)
199
+ [boulch]
200
+
201
+
192
202
  1.2.33 (2024-02-09)
193
203
  -------------------
194
204
 
@@ -1,4 +1,4 @@
1
- imio.smartweb.core-1.2.33-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
1
+ imio.smartweb.core-1.2.34-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
@@ -6,7 +6,7 @@ imio/smartweb/core/indexers.py,sha256=Lv1lHWFzM71ju822N8y7w61GDOyi6qmUbveZNI1tCz
6
6
  imio/smartweb/core/indexers.zcml,sha256=XHvKTkNcF5mkX-dVwRbjNsrBwIwwqa2Cm81PoXBqtow,968
7
7
  imio/smartweb/core/interfaces.py,sha256=3YzYMwCJUTs8NFMmg5eP6fVaA2zqcnD0g7nM5IB1CtM,1017
8
8
  imio/smartweb/core/permissions.zcml,sha256=ZyBEARyO8NAq7tKFTb3G1FqEWERT1mQQ6vCVzji1ci8,1777
9
- imio/smartweb/core/profiles.zcml,sha256=ck-C0RgJLnxFB0BSJfZ3C6Exn2-vQXK_bhi84RVD_Io,2028
9
+ imio/smartweb/core/profiles.zcml,sha256=H9crlNrI8zLxgmkpbkhkD3Ti5LRF8Zutk3AJXNBpvw0,2299
10
10
  imio/smartweb/core/setuphandlers.py,sha256=k1K8-ezP2gELwCNM5An2bBwQJjAKeS0rYtr2-q_InK8,932
11
11
  imio/smartweb/core/subscribers.py,sha256=9I6fAJj1FhtkYQZ2Ug_3Bl-p_rn1Nf9_BBHo_iU6QxI,3940
12
12
  imio/smartweb/core/subscribers.zcml,sha256=48jHmwwnW37LFCN8HFlxdCe8CgNohYRY_pvbKYa2Gww,1016
@@ -29,8 +29,8 @@ imio/smartweb/core/browser/forms.py,sha256=_6Z0x7yVeA5JaW4IwpYkX7bTIbw0UskgvtGfN
29
29
  imio/smartweb/core/browser/icons.py,sha256=LFBCYTfynp4qNX2OQuNmMTOUEcJv-oQ8Izu6opE3o7A,2065
30
30
  imio/smartweb/core/browser/layout.py,sha256=wvo_Q2dYg1Yd8wOdYSfPg29NPESy9ndAGl6z3r5kxnY,2066
31
31
  imio/smartweb/core/browser/redirect_to_main_react_view.py,sha256=vzJwAet0P2uoMhlOtNjMy02e4LQw9DsHb6mRgBXGOB8,1668
32
- imio/smartweb/core/browser/sitemap.py,sha256=216EPo3ATlHPMWW4tyjfaP-ov9tzKMuHDYNyCQ5jOcA,5596
33
- imio/smartweb/core/browser/utils.py,sha256=h4odo_1nXQCBqnp2JjHTW7nbcSZ15hvScmYQNOH1YkA,3228
32
+ imio/smartweb/core/browser/sitemap.py,sha256=Yjgf3d5rgYLv9so9DTSxZgYHPg7Ueb2LA9OAeiAaxe4,5585
33
+ imio/smartweb/core/browser/utils.py,sha256=ccA2DVA994S3t92_fQeMSFIGfAblE9C1vw78ZFUAJiU,3218
34
34
  imio/smartweb/core/browser/vocabulary.py,sha256=CHQeWZwvjDeoPLZS6C89ucfGGGnxBbAYpVu31_n7TSA,1142
35
35
  imio/smartweb/core/browser/banner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
36
  imio/smartweb/core/browser/banner/configure.zcml,sha256=Z2M7gkRDdmV4zRekUhyuJ-_jvbIbhgTj2Zq674iKvUE,389
@@ -219,7 +219,7 @@ imio/smartweb/core/contents/rest/search/endpoint.py,sha256=i5LMM0R1Xvpy76JHO6pI9
219
219
  imio/smartweb/core/contents/sections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
220
  imio/smartweb/core/contents/sections/base.py,sha256=2e3lIG_RGGFAshBEkTNG97OReAnn9GLQk_O_Eqh7SRY,2486
221
221
  imio/smartweb/core/contents/sections/configure.zcml,sha256=aEbAu9MikK-sCVzST8Nn-bMbv7clnHfnoumlBW197Wk,2242
222
- imio/smartweb/core/contents/sections/macros.pt,sha256=zfbNvH5fFj6j3M3v1Ys7UYcXpQnS-alw0L3w_8ScU20,4092
222
+ imio/smartweb/core/contents/sections/macros.pt,sha256=dJryNJTUmPRz1fLw3ORt3OSNPr6xedMmvJfFIvG16jU,4338
223
223
  imio/smartweb/core/contents/sections/subscriber.py,sha256=WM7nEZVPOkmyT1GfkWGDWwLhuhUYaTnlBr6BJVqUJMk,642
224
224
  imio/smartweb/core/contents/sections/views.py,sha256=3cjeRFip7hsjJ47Lt8DwPGWTtvllUOL5yeKGI87Oc7M,3570
225
225
  imio/smartweb/core/contents/sections/collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -233,7 +233,7 @@ imio/smartweb/core/contents/sections/contact/configure.zcml,sha256=WjyGXO7alNf4y
233
233
  imio/smartweb/core/contents/sections/contact/content.py,sha256=SSeWBuqs1iDIhaGODI_gCsw4Q6ANBq6m7exZv1lPl_k,2669
234
234
  imio/smartweb/core/contents/sections/contact/forms.py,sha256=VlN_jse8tYxE9RCro2RgHlZRDDIyZA8Bjr-dNePZYwU,1387
235
235
  imio/smartweb/core/contents/sections/contact/macros.pt,sha256=ynqVHvtvvcNyAIGj5K07SO9jyRN0R3KbFBBn4t1qMaE,9523
236
- imio/smartweb/core/contents/sections/contact/utils.py,sha256=-DRERss0te9ozVhg3i2FveSuA3eT1WdJn1KicLIVJrI,5270
236
+ imio/smartweb/core/contents/sections/contact/utils.py,sha256=OsrEgrf0DuCHa_RlEP4gwHxSzOGqBMDZMDViO19w-Lc,5129
237
237
  imio/smartweb/core/contents/sections/contact/view.pt,sha256=CyNoSxzf9kNQdjN2iCp77zpFeXfC1KGgQlx_UeTSQ6M,1170
238
238
  imio/smartweb/core/contents/sections/contact/view.py,sha256=5l5FQLxz-UfFZrttqNsWetuCg-4yT-wIzukIK-QLF6s,1422
239
239
  imio/smartweb/core/contents/sections/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -311,8 +311,9 @@ imio/smartweb/core/profiles/default/actions.xml,sha256=wzlfN9gHt6tRgwpIVjA2D1jyy
311
311
  imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH8EF-fc-aPua-oIdu0GuzTyk,179
312
312
  imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
313
313
  imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
314
- imio/smartweb/core/profiles/default/metadata.xml,sha256=Y3Vu6fAHTcMxwfdJYl6x63AjIRmrqblSUF1oMYd8bbc,1218
315
- imio/smartweb/core/profiles/default/repositorytool.xml,sha256=GXq_sozn7Ucy0810IS9T0dgl8M7FT0gUbVz7BeFcLpo,183
314
+ imio/smartweb/core/profiles/default/diff_tool.xml,sha256=66L2L7ZBGJajPDeHl16A3h6RUcj9l0C7qpwe8JSYe7o,212
315
+ imio/smartweb/core/profiles/default/metadata.xml,sha256=4dQfLTE-Y6MV3AZoT0yc1ET7xTh4ZWkZiqB9KEMFgb4,1218
316
+ imio/smartweb/core/profiles/default/repositorytool.xml,sha256=aTErs-VvEEV3dm9_TdgPZfx1Pb1f5Sw7ap7IgiJOK4w,227
316
317
  imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
317
318
  imio/smartweb/core/profiles/default/types.xml,sha256=xkQyPtEccUnAHu5mL83r96dmtnCWNn17lVRJPP2jWMg,2040
318
319
  imio/smartweb/core/profiles/default/workflows.xml,sha256=VrFAw9s1UtWFSHuBA0VBE-WnRdZG9I_XIhJIEXwzdkw,1069
@@ -341,7 +342,7 @@ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml,sha256
341
342
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionExternalContent.xml,sha256=C1BFq3Kn52p4xLfYgiJg9B1AOimq5lPd-3IyNUtjtZI,1284
342
343
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml,sha256=XTprZ_LTzgFabYRu-w99u30HHs3tgIgUsCSOSL1S3UA,1490
343
344
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionGallery.xml,sha256=8CPXF2CBF-9cz13jowiU0eUqLxzph6ic4Ly6GzVD0NQ,1349
344
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml,sha256=TIRqfDunNo2WIbPbQXSZQuM8LJbLvgJeXc_Dhe937cs,1232
345
+ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml,sha256=qIaImpJ6b70saTXNs-X5EgU8jqx6FGyR3Kguyt7Tc3A,1191
345
346
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionLinks.xml,sha256=Ee5OyXdJNjGNhdyAvm6TkxiWVzIi2WtTgUkaqvyhsOQ,1595
346
347
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionMap.xml,sha256=J9PJ9E0dA0hb0HR8yq7QBR90cd5z1mdX9XwG2JP4hog,1142
347
348
  imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml,sha256=aDJyNXxdFIf1JLIm-RcTcXmzEh_2TQiNZ--1K9qmEzo,1478
@@ -364,6 +365,7 @@ imio/smartweb/core/profiles/testing/types/imio.smartweb.DirectoryView.xml,sha256
364
365
  imio/smartweb/core/profiles/testing/types/imio.smartweb.EventsView.xml,sha256=NvYNq4jDq7wfvkBjH3WzPQHAvXudovjCrVdnYsbTndM,290
365
366
  imio/smartweb/core/profiles/testing/types/imio.smartweb.NewsView.xml,sha256=6RpfvqRI-hrmjPKmKzzHXwXwGRBEUyiQOpQxqqbDDDk,288
366
367
  imio/smartweb/core/profiles/uninstall/browserlayer.xml,sha256=K8KnZFW9E6Hwi61Z6XZlXOjUpAKzJR6HjmjoOjFEWrk,128
368
+ imio/smartweb/core/profiles/validation/contentrules.xml,sha256=QyX3E0ihDOMhaJPrKPRqRiCUvPoghs3fwYOj_eNtbqw,4626
367
369
  imio/smartweb/core/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
368
370
  imio/smartweb/core/rest/authentic_sources.py,sha256=5GmzB3GL5vhQNhqgZGmbsQSgXeETdoJiw74sSRVEtyg,4305
369
371
  imio/smartweb/core/rest/configure.zcml,sha256=3tEU99M_deyoRN0YeIVQmPk7NL88gjYtXZOT8QmSbN4,2891
@@ -399,9 +401,9 @@ imio/smartweb/core/tests/test_section_events.py,sha256=CPp0gBjRf3dpzHfhgF9gF2d_Q
399
401
  imio/smartweb/core/tests/test_section_external_content.py,sha256=rKxVc03Z7atkkLEVG_kergdK5F3MN5h9PQtmOEd6Q04,6872
400
402
  imio/smartweb/core/tests/test_section_news.py,sha256=nuRmRQldHrYfvYUB6bsSz7IwMeNbx2wiY9TBKI7j8DI,6804
401
403
  imio/smartweb/core/tests/test_section_sendinblue.py,sha256=UmmKo33T9feelumxqeejM4HG4oLRPKJkbB8hkLO144E,2661
402
- imio/smartweb/core/tests/test_sections.py,sha256=K8xv5vLCqCEm5zJQZPa42UN7PFemLv7mA0GrRW9hb0g,23691
404
+ imio/smartweb/core/tests/test_sections.py,sha256=UJwRt8hOe8ODFSTE-rNMQC3ocfHlf8L0ljGfDzFX868,24635
403
405
  imio/smartweb/core/tests/test_setup.py,sha256=JcbMnXTNCuB_8grFh5E1kZ0uALdATlKMbahAdGfToZI,2092
404
- imio/smartweb/core/tests/test_sitemap.py,sha256=cH3x2B1eCOTmEM3YxMZVuXmZGtM5IUOQ4w-0WNhUPws,6298
406
+ imio/smartweb/core/tests/test_sitemap.py,sha256=x7uiNp53mOPrbPN_-Kf6yyb5owTcrghxzdEOJF1N4vo,6297
405
407
  imio/smartweb/core/tests/test_social.py,sha256=GVHkF4c8Ygnm09J1aGxhklbtd6b-1Fy8M7NnYmjRvfI,3046
406
408
  imio/smartweb/core/tests/test_subsite.py,sha256=wiD8Ke4_-ArstSYNLCs8ArqOuDx2xxUR6Wac3GXfnbE,9016
407
409
  imio/smartweb/core/tests/test_text.py,sha256=DtZNNGJ-MDYbJ-YQj2C0q2Hr7t4-sUbV6SWkE7tihBY,4652
@@ -444,7 +446,7 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
444
446
  imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
445
447
  imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
446
448
  imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
447
- imio/smartweb/core/upgrades/configure.zcml,sha256=H3daUNGkJUbgTkaPipSci2h6RKNp10D4_QfPEKr16Nw,24385
449
+ imio/smartweb/core/upgrades/configure.zcml,sha256=TWrOCyW6bCxKg3kKu0jF2ZM3bOQ02xz1syTQSGKQIgE,24998
448
450
  imio/smartweb/core/upgrades/upgrades.py,sha256=SZHVeYODErjQZR_LzQ0cxBnJoqWRWsIiRpUhNTMiz7k,8295
449
451
  imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
450
452
  imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
@@ -542,6 +544,9 @@ imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionLin
542
544
  imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionNews.xml,sha256=w1N5DtS2SClNMwpcoafH4_OW1KcMgRGKuwYnjKDKUI8,445
543
545
  imio/smartweb/core/upgrades/profiles/1047_to_1048/types/imio.smartweb.SectionSelections.xml,sha256=ZOmofiYNFz6gHv0j6OF3_Q783wq0eUrg7SP97YjcNnI,451
544
546
  imio/smartweb/core/upgrades/profiles/1051_to_1052/actions.xml,sha256=f2y6T7OsV3aV_0lwX34cDnwzeJ0WV2jAZZQ2vzM3o4o,882
547
+ imio/smartweb/core/upgrades/profiles/1052_to_1053/diff_tool.xml,sha256=66L2L7ZBGJajPDeHl16A3h6RUcj9l0C7qpwe8JSYe7o,212
548
+ imio/smartweb/core/upgrades/profiles/1052_to_1053/repositorytool.xml,sha256=SjVwwdG_EBF11CqDuhaFKxXOvrPYud2p05r9EYNcr9U,259
549
+ imio/smartweb/core/upgrades/profiles/1052_to_1053/types/imio.smartweb.SectionHTML.xml,sha256=9oXUFVCoP5eyZe8qlYLJLvfiUejMG1Z8EfuQkpfVE0Y,396
545
550
  imio/smartweb/core/viewlets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
546
551
  imio/smartweb/core/viewlets/actions.py,sha256=QWj_pLNxH4223XPk4b4Dc79DiajF0HHfaXlUmXTwJ8k,661
547
552
  imio/smartweb/core/viewlets/arcgis_header.pt,sha256=iQc5ZG3g1Cmap963OG-wPotllr7oWmVSMoAnA7tctrQ,3428
@@ -575,7 +580,7 @@ imio/smartweb/core/viewlets/navigation.py,sha256=-woNkfk67arOSfTKekPEUS7Mcheunve
575
580
  imio/smartweb/core/viewlets/offcanvas.pt,sha256=VfHFI9WoDqcm5nfJ-OTHACnJn0F5PfEE4FXZFzPM3JQ,613
576
581
  imio/smartweb/core/viewlets/offcanvas.py,sha256=3VE2WJcvSKp3oAKYwGuwaHYMoK_83KMksMFDa75u52Y,129
577
582
  imio/smartweb/core/viewlets/ogp_tag_header.pt,sha256=XRWkdZS2oI7W0X1oJSskpXS9dMmxSxSx_7XWb-Q2aBk,1007
578
- imio/smartweb/core/viewlets/ogptags.py,sha256=ciYZyiMTYon12eg-yk_2WZw4DsHhMTNIEFaHobDRU2c,4679
583
+ imio/smartweb/core/viewlets/ogptags.py,sha256=V8iLXV3gXQZpTdbtefDmySitWpXznHKZmQcwmaxAxr4,4638
579
584
  imio/smartweb/core/viewlets/procedure.pt,sha256=gLwNuikgXsWMnBybKdFeKfkfDKnI3SlrU3y2z8sVt5k,602
580
585
  imio/smartweb/core/viewlets/procedure.py,sha256=7nqBU_Sl5tcQaV_UNM-2BPLc8vogCzTO6kQlu4hwofI,633
581
586
  imio/smartweb/core/viewlets/searchbox.pt,sha256=Wv0DbGTKif1z_SDl9-FQKIAPJcfFAHHO1qOtR-LtnR4,403
@@ -687,10 +692,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=ulMbtvMcmV0Af4lhYtkkSh
687
692
  imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=Ht5NXE7K1HohmDv4BOaE4Z0mhnqtKqYbBuEiP371Uho,73
688
693
  imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=cA8wez62WjG0pz0PvXS8ufOMqOvFmIXtb4NYYHN86Lw,6636
689
694
  imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
690
- imio.smartweb.core-1.2.33.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
691
- imio.smartweb.core-1.2.33.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
692
- imio.smartweb.core-1.2.33.dist-info/METADATA,sha256=y34bFfam2YhkxgPnl2w8v2FPzTV1KayJIlMteJ0rFRI,49669
693
- imio.smartweb.core-1.2.33.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
694
- imio.smartweb.core-1.2.33.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
695
- imio.smartweb.core-1.2.33.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
696
- imio.smartweb.core-1.2.33.dist-info/RECORD,,
695
+ imio.smartweb.core-1.2.34.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
696
+ imio.smartweb.core-1.2.34.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
697
+ imio.smartweb.core-1.2.34.dist-info/METADATA,sha256=CNwLxg-TZt374DADBsqgtRUUtdnGRS0Q-s7-fErcoAg,49909
698
+ imio.smartweb.core-1.2.34.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
699
+ imio.smartweb.core-1.2.34.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
700
+ imio.smartweb.core-1.2.34.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
701
+ imio.smartweb.core-1.2.34.dist-info/RECORD,,