imio.smartweb.core 1.3.1__py3-none-any.whl → 1.3.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- imio/smartweb/core/browser/sitemap.py +15 -11
- imio/smartweb/core/profiles/default/metadata.xml +1 -1
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionTimestampedPublications.xml +4 -0
- imio/smartweb/core/profiles/default/types.xml +1 -0
- imio/smartweb/core/profiles/default/workflows.xml +1 -0
- imio/smartweb/core/tests/test_sitemap.py +19 -0
- imio/smartweb/core/upgrades/configure.zcml +19 -0
- imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.SectionTimestampedPublications.xml +1 -5
- imio/smartweb/core/upgrades/profiles/1066_to_1067/types/imio.smartweb.SectionTimestampedPublications.xml +39 -0
- {imio.smartweb.core-1.3.1.dist-info → imio.smartweb.core-1.3.2.dist-info}/METADATA +11 -1
- {imio.smartweb.core-1.3.1.dist-info → imio.smartweb.core-1.3.2.dist-info}/RECORD +17 -16
- /imio.smartweb.core-1.3.1-py3.12-nspkg.pth → /imio.smartweb.core-1.3.2-py3.12-nspkg.pth +0 -0
- {imio.smartweb.core-1.3.1.dist-info → imio.smartweb.core-1.3.2.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.3.1.dist-info → imio.smartweb.core-1.3.2.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.3.1.dist-info → imio.smartweb.core-1.3.2.dist-info}/WHEEL +0 -0
- {imio.smartweb.core-1.3.1.dist-info → imio.smartweb.core-1.3.2.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.3.1.dist-info → imio.smartweb.core-1.3.2.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,5 @@
|
|
1
1
|
from Acquisition import aq_inner
|
2
2
|
from BTrees.OOBTree import OOBTree
|
3
|
-
from imio.smartweb.core.config import DIRECTORY_URL
|
4
|
-
from imio.smartweb.core.config import EVENTS_URL
|
5
|
-
from imio.smartweb.core.config import NEWS_URL
|
6
3
|
from imio.smartweb.core.contents.rest.directory.endpoint import DirectoryEndpointGet
|
7
4
|
from imio.smartweb.core.contents.rest.events.endpoint import EventsEndpointGet
|
8
5
|
from imio.smartweb.core.contents.rest.news.endpoint import NewsEndpointGet
|
@@ -10,6 +7,7 @@ from imio.smartweb.core.interfaces import IImioSmartwebCoreLayer
|
|
10
7
|
from plone.app.layout.navigation.navtree import buildFolderTree
|
11
8
|
from plone.app.layout.sitemap.sitemap import SiteMapView
|
12
9
|
from plone.base.interfaces import IPloneSiteRoot
|
10
|
+
from plone.memoize import ram
|
13
11
|
from Products.CMFPlone.browser.navigation import CatalogSiteMap as BaseCatalogSiteMap
|
14
12
|
from Products.CMFPlone.browser.navtree import (
|
15
13
|
SitemapNavtreeStrategy as BaseSitemapNavtreeStrategy,
|
@@ -25,6 +23,7 @@ from zope.interface import Interface
|
|
25
23
|
|
26
24
|
import logging
|
27
25
|
import Missing
|
26
|
+
import time
|
28
27
|
|
29
28
|
logger = logging.getLogger("imio.smartweb.core")
|
30
29
|
|
@@ -44,14 +43,18 @@ FRIENDLY_TYPES = [
|
|
44
43
|
]
|
45
44
|
|
46
45
|
|
46
|
+
def cache_key(method, obj, request):
|
47
|
+
"""We cache data from authentic sources for the sitemap (.xml.gz) for 2 hours."""
|
48
|
+
return f"sitemap_{obj.UID()}_{time.time() // 7200}"
|
49
|
+
|
50
|
+
|
51
|
+
@ram.cache(cache_key)
|
47
52
|
def get_endpoint_data(obj, request):
|
48
|
-
"""Retourne les données issues du bon endpoint pour un objet donné"""
|
49
53
|
endpoint_mapping = {
|
50
54
|
"imio.smartweb.DirectoryView": DirectoryEndpointGet,
|
51
55
|
"imio.smartweb.EventsView": EventsEndpointGet,
|
52
56
|
"imio.smartweb.NewsView": NewsEndpointGet,
|
53
57
|
}
|
54
|
-
|
55
58
|
endpoint_class = endpoint_mapping.get(obj.portal_type)
|
56
59
|
if not endpoint_class:
|
57
60
|
return {}
|
@@ -67,7 +70,7 @@ def get_endpoint_data(obj, request):
|
|
67
70
|
|
68
71
|
|
69
72
|
def format_sitemap_items(items, base_url):
|
70
|
-
"""
|
73
|
+
"""Format items for sitemap(.xml.gz)"""
|
71
74
|
formatted_items = []
|
72
75
|
for item in items:
|
73
76
|
item_id = normalizeString(item.get("title"))
|
@@ -77,14 +80,14 @@ def format_sitemap_items(items, base_url):
|
|
77
80
|
{
|
78
81
|
"loc": f"{base_url}/{item_id}?u={item_uid}",
|
79
82
|
"lastmod": lastmod,
|
80
|
-
"Title":
|
83
|
+
"Title": item.get("title"),
|
81
84
|
"Description": item.get("description", ""),
|
82
85
|
"getURL": f"{base_url}/{item_id}?u={item_uid}",
|
83
86
|
"getRemoteUrl": Missing.Value,
|
84
87
|
"currentItem": False,
|
85
88
|
"currentParent": False,
|
86
89
|
"normalized_review_state": "published",
|
87
|
-
"normalized_portal_type": "imio-smartweb-
|
90
|
+
"normalized_portal_type": "imio-smartweb-authsources-item",
|
88
91
|
}
|
89
92
|
)
|
90
93
|
return formatted_items
|
@@ -132,13 +135,14 @@ class CustomSiteMapView(SiteMapView):
|
|
132
135
|
)
|
133
136
|
yield {"loc": loc, "lastmod": modified[1]}
|
134
137
|
|
135
|
-
|
138
|
+
brains = catalog(
|
136
139
|
portal_type=[
|
137
140
|
"imio.smartweb.EventsView",
|
138
141
|
"imio.smartweb.NewsView",
|
139
142
|
"imio.smartweb.DirectoryView",
|
140
143
|
]
|
141
|
-
)
|
144
|
+
)
|
145
|
+
for brain in brains:
|
142
146
|
obj = brain.getObject()
|
143
147
|
data = get_endpoint_data(obj, obj.REQUEST)
|
144
148
|
yield from format_sitemap_items(data.get("items", {}), obj.absolute_url())
|
@@ -169,7 +173,7 @@ class CatalogSiteMap(BaseCatalogSiteMap):
|
|
169
173
|
|
170
174
|
|
171
175
|
class SitemapQueryBuilder(BaseSitemapQueryBuilder):
|
172
|
-
"""
|
176
|
+
"""Builds the request for the sitemap with custom content types."""
|
173
177
|
|
174
178
|
def __init__(self, context):
|
175
179
|
self.context = context
|
@@ -27,5 +27,6 @@
|
|
27
27
|
<object meta_type="Dexterity FTI" name="imio.smartweb.SectionSendinblue"/>
|
28
28
|
<object meta_type="Dexterity FTI" name="imio.smartweb.SectionSlide"/>
|
29
29
|
<object meta_type="Dexterity FTI" name="imio.smartweb.SectionText"/>
|
30
|
+
<object meta_type="Dexterity FTI" name="imio.smartweb.SectionTimestampedPublications"/>
|
30
31
|
<object meta_type="Dexterity FTI" name="imio.smartweb.SectionVideo"/>
|
31
32
|
</object>
|
@@ -19,6 +19,7 @@
|
|
19
19
|
<type type_id="imio.smartweb.SectionSlide"/>
|
20
20
|
<type type_id="imio.smartweb.SectionNews"/>
|
21
21
|
<type type_id="imio.smartweb.SectionText"/>
|
22
|
+
<type type_id="imio.smartweb.SectionTimestampedPublications"/>
|
22
23
|
<type type_id="imio.smartweb.SectionVideo"/>
|
23
24
|
</bindings>
|
24
25
|
</object>
|
@@ -5,8 +5,10 @@ from gzip import GzipFile
|
|
5
5
|
from io import BytesIO
|
6
6
|
from imio.smartweb.core.browser.sitemap import CatalogSiteMap
|
7
7
|
from imio.smartweb.core.browser.sitemap import get_endpoint_data
|
8
|
+
from imio.smartweb.core.browser.sitemap import cache_key
|
8
9
|
from imio.smartweb.core.testing import IMIO_SMARTWEB_CORE_FUNCTIONAL_TESTING
|
9
10
|
from imio.smartweb.core.testing import ImioSmartwebTestCase
|
11
|
+
from imio.smartweb.core.tests.utils import clear_cache
|
10
12
|
from imio.smartweb.core.tests.utils import get_json
|
11
13
|
from imio.smartweb.core.tests.utils import make_named_image
|
12
14
|
from plone import api
|
@@ -14,9 +16,11 @@ from plone.app.testing import setRoles
|
|
14
16
|
from plone.app.testing import TEST_USER_ID
|
15
17
|
from plone.app.textfield.value import RichTextValue
|
16
18
|
from plone.base.utils import safe_text
|
19
|
+
from plone.memoize.ram import choose_cache
|
17
20
|
from plone.namedfile.file import NamedBlobImage
|
18
21
|
from unittest.mock import patch
|
19
22
|
from unittest.mock import Mock
|
23
|
+
from zope.annotation import IAnnotations
|
20
24
|
from zope.component import getMultiAdapter
|
21
25
|
|
22
26
|
import requests_mock
|
@@ -123,6 +127,10 @@ class TestPage(ImioSmartwebTestCase):
|
|
123
127
|
"<loc>http://nohost/plone/folder/page1/gallery/image</loc>\n <lastmod >2024-02-02T10:00:00",
|
124
128
|
xml,
|
125
129
|
)
|
130
|
+
|
131
|
+
cache = choose_cache("imio.smartweb.core.browser.sitemap.get_endpoint_data")
|
132
|
+
cache.ramcache.invalidateAll()
|
133
|
+
|
126
134
|
with patch(
|
127
135
|
"imio.smartweb.core.contents.rest.news.endpoint.BaseNewsEndpoint.__call__",
|
128
136
|
return_value=self.json_rest_news,
|
@@ -132,6 +140,10 @@ class TestPage(ImioSmartwebTestCase):
|
|
132
140
|
"<loc>http://nohost/plone/news-view/ceci-est-une-deuxieme-actualite",
|
133
141
|
xml,
|
134
142
|
)
|
143
|
+
|
144
|
+
cache = choose_cache("imio.smartweb.core.browser.sitemap.get_endpoint_data")
|
145
|
+
cache.ramcache.invalidateAll()
|
146
|
+
|
135
147
|
with patch(
|
136
148
|
"imio.smartweb.core.contents.rest.directory.endpoint.BaseDirectoryEndpoint.__call__",
|
137
149
|
return_value=self.json_rest_directory,
|
@@ -141,6 +153,10 @@ class TestPage(ImioSmartwebTestCase):
|
|
141
153
|
"<loc>http://nohost/plone/directory-view/service-communication-de-ladministration-communale",
|
142
154
|
xml,
|
143
155
|
)
|
156
|
+
|
157
|
+
cache = choose_cache("imio.smartweb.core.browser.sitemap.get_endpoint_data")
|
158
|
+
cache.ramcache.invalidateAll()
|
159
|
+
|
144
160
|
with patch(
|
145
161
|
"imio.smartweb.core.contents.rest.events.endpoint.BaseEventsEndpoint.__call__",
|
146
162
|
return_value=self.json_rest_events,
|
@@ -185,6 +201,9 @@ class TestPage(ImioSmartwebTestCase):
|
|
185
201
|
][0]
|
186
202
|
self.assertEqual(len(directory_entry.get("children")), 0)
|
187
203
|
|
204
|
+
cache = choose_cache("imio.smartweb.core.browser.sitemap.get_endpoint_data")
|
205
|
+
cache.ramcache.invalidateAll()
|
206
|
+
|
188
207
|
# Populate directory view with 6 contacts
|
189
208
|
with patch(
|
190
209
|
"imio.smartweb.core.contents.rest.directory.endpoint.BaseDirectoryEndpoint.__call__",
|
@@ -291,6 +291,14 @@
|
|
291
291
|
provides="Products.GenericSetup.interfaces.EXTENSION"
|
292
292
|
/>
|
293
293
|
|
294
|
+
<genericsetup:registerProfile
|
295
|
+
name="upgrade_1066_to_1067"
|
296
|
+
title="Upgrade core from 1066 to 1067"
|
297
|
+
directory="profiles/1066_to_1067"
|
298
|
+
description="BLA BLA BLA"
|
299
|
+
provides="Products.GenericSetup.interfaces.EXTENSION"
|
300
|
+
/>
|
301
|
+
|
294
302
|
<genericsetup:upgradeStep
|
295
303
|
title="Configure first official release"
|
296
304
|
description="Run needed profiles steps and reindex catalog"
|
@@ -961,6 +969,17 @@
|
|
961
969
|
profile="imio.smartweb.core:default"
|
962
970
|
/>
|
963
971
|
|
972
|
+
<genericsetup:upgradeSteps
|
973
|
+
source="1066"
|
974
|
+
destination="1067"
|
975
|
+
profile="imio.smartweb.core:default">
|
976
|
+
<genericsetup:upgradeDepends
|
977
|
+
title="BLA BLA BLA"
|
978
|
+
import_profile="imio.smartweb.core.upgrades:upgrade_1066_to_1067"
|
979
|
+
/>
|
980
|
+
</genericsetup:upgradeSteps>
|
981
|
+
|
982
|
+
|
964
983
|
<!--genericsetup:upgradeStep
|
965
984
|
title="Check contact itinerary if address was checked in visible blocks"
|
966
985
|
description=""
|
@@ -16,11 +16,7 @@
|
|
16
16
|
|
17
17
|
<!-- Hierarchy control -->
|
18
18
|
<property name="global_allow">False</property>
|
19
|
-
|
20
|
-
<property name="allowed_content_types">
|
21
|
-
<element value="imio.smartweb.SectionTimestampedPublications" />
|
22
|
-
</property>
|
23
|
-
|
19
|
+
<property name="filter_content_types">True</property>
|
24
20
|
<!-- Schema, class and security -->
|
25
21
|
<!-- if we can add a page, we can add a page section -->
|
26
22
|
<property name="add_permission">imio.smartweb.core.AddPage</property>
|
@@ -0,0 +1,39 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<object xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
3
|
+
name="imio.smartweb.SectionTimestampedPublications"
|
4
|
+
meta_type="Dexterity FTI"
|
5
|
+
i18n:domain="imio.smartweb">
|
6
|
+
|
7
|
+
<!-- Basic properties -->
|
8
|
+
<property
|
9
|
+
i18n:translate=""
|
10
|
+
name="title">Timestamped publications section</property>
|
11
|
+
<property
|
12
|
+
i18n:translate=""
|
13
|
+
name="description">Timestamped publication section for a page</property>
|
14
|
+
|
15
|
+
<property name="icon_expr">string:newspaper</property>
|
16
|
+
|
17
|
+
<!-- Hierarchy control -->
|
18
|
+
<property name="global_allow">False</property>
|
19
|
+
<property name="filter_content_types">True</property>
|
20
|
+
<!-- Schema, class and security -->
|
21
|
+
<!-- if we can add a page, we can add a page section -->
|
22
|
+
<property name="add_permission">imio.smartweb.core.AddPage</property>
|
23
|
+
<property name="klass">imio.smartweb.core.contents.SectionTimestampedPublications</property>
|
24
|
+
<property name="schema">imio.smartweb.core.contents.ISectionTimestampedPublications</property>
|
25
|
+
|
26
|
+
<!-- Enabled behaviors -->
|
27
|
+
<property name="behaviors" purge="false">
|
28
|
+
<element value="plone.namefromtitle"/>
|
29
|
+
<element value="plone.locking"/>
|
30
|
+
<element value="plone.shortname"/>
|
31
|
+
<element value="imio.smartweb.category_display"/>
|
32
|
+
<element value="imio.smartweb.orientation"/>
|
33
|
+
</property>
|
34
|
+
|
35
|
+
<property name="default_view">table_view</property>
|
36
|
+
<property name="default_view_fallback">False</property>
|
37
|
+
<property name="immediate_view">view</property>
|
38
|
+
|
39
|
+
</object>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: imio.smartweb.core
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.2
|
4
4
|
Summary: Core product for iMio websites
|
5
5
|
Home-page: https://github.com/imio/imio.smartweb.core
|
6
6
|
Author: Christophe Boulanger
|
@@ -203,6 +203,16 @@ Changelog
|
|
203
203
|
=========
|
204
204
|
|
205
205
|
|
206
|
+
1.3.2 (2025-03-19)
|
207
|
+
------------------
|
208
|
+
|
209
|
+
- WEB-4134: Set default_view as table_view for section "Timestamped publications"
|
210
|
+
[boulch]
|
211
|
+
|
212
|
+
- WEB-4165: Refactor some code for sitemap (Title, normalized_portal_type, ...)
|
213
|
+
[boulch]
|
214
|
+
|
215
|
+
|
206
216
|
1.3.1 (2025-03-13)
|
207
217
|
------------------
|
208
218
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
imio.smartweb.core-1.3.
|
1
|
+
imio.smartweb.core-1.3.2-py3.12-nspkg.pth,sha256=XZ3YhlzwpUCC8tXtelHRqxVxo3NWomIiMsUfUshrbeE,1011
|
2
2
|
imio/smartweb/core/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
|
3
3
|
imio/smartweb/core/config.py,sha256=BUgfvh4hCaw0onCYAG4gQI1O4hZ-GzXWEltdHi4YLIs,337
|
4
4
|
imio/smartweb/core/configure.zcml,sha256=sCJwomh6ve6OPSDexKNacz2PUkqzI5EVn8SEMZo4Sfw,1630
|
@@ -32,7 +32,7 @@ imio/smartweb/core/browser/forms.py,sha256=_6Z0x7yVeA5JaW4IwpYkX7bTIbw0UskgvtGfN
|
|
32
32
|
imio/smartweb/core/browser/icons.py,sha256=LFBCYTfynp4qNX2OQuNmMTOUEcJv-oQ8Izu6opE3o7A,2065
|
33
33
|
imio/smartweb/core/browser/layout.py,sha256=wvo_Q2dYg1Yd8wOdYSfPg29NPESy9ndAGl6z3r5kxnY,2066
|
34
34
|
imio/smartweb/core/browser/redirect_to_main_react_view.py,sha256=vzJwAet0P2uoMhlOtNjMy02e4LQw9DsHb6mRgBXGOB8,1668
|
35
|
-
imio/smartweb/core/browser/sitemap.py,sha256=
|
35
|
+
imio/smartweb/core/browser/sitemap.py,sha256=Z9mrf1W_sytyZRbu1NvTRHrcKMR2nNZspjjdM8N-D1c,6827
|
36
36
|
imio/smartweb/core/browser/utils.py,sha256=UDICDU2oh0h6wR46w_FI9GdIUopWcu14SaAPp_QAREE,3334
|
37
37
|
imio/smartweb/core/browser/vocabulary.py,sha256=OBoU4mxGLKtzGD5mtsN-yV7yeMi4HdAQZVI4n1b9Myo,1312
|
38
38
|
imio/smartweb/core/browser/banner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -347,11 +347,11 @@ imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH
|
|
347
347
|
imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
|
348
348
|
imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
|
349
349
|
imio/smartweb/core/profiles/default/diff_tool.xml,sha256=66L2L7ZBGJajPDeHl16A3h6RUcj9l0C7qpwe8JSYe7o,212
|
350
|
-
imio/smartweb/core/profiles/default/metadata.xml,sha256=
|
350
|
+
imio/smartweb/core/profiles/default/metadata.xml,sha256=_DcZB2YVosMJPCuUK6t2c9n48Urq7qx9lwMCcm1gq1g,1218
|
351
351
|
imio/smartweb/core/profiles/default/repositorytool.xml,sha256=aTErs-VvEEV3dm9_TdgPZfx1Pb1f5Sw7ap7IgiJOK4w,227
|
352
352
|
imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
|
353
|
-
imio/smartweb/core/profiles/default/types.xml,sha256=
|
354
|
-
imio/smartweb/core/profiles/default/workflows.xml,sha256=
|
353
|
+
imio/smartweb/core/profiles/default/types.xml,sha256=oPZSjRtivll-J9qzhd4STvM7w1P6quyLp4ky6aH913w,2201
|
354
|
+
imio/smartweb/core/profiles/default/workflows.xml,sha256=NF1XsMgH7pFGdkVzDssgfutKXL2sRakMCSCH34nQ-Bs,1136
|
355
355
|
imio/smartweb/core/profiles/default/registry/bundles.xml,sha256=5C6nwniE04kgQMGSn1EtnA7kfkgMPbrESSrMXhNNVww,2562
|
356
356
|
imio/smartweb/core/profiles/default/registry/geolocation.xml,sha256=CzTg5DnZ-CjDIW-iuYmeL7EeNjHc63g_PgabttgMSsU,1251
|
357
357
|
imio/smartweb/core/profiles/default/registry/plone.xml,sha256=cvJq50ofQ0SIN2p1GibAbpZny-fjxK4iaNg0q8HBmPU,3186
|
@@ -391,7 +391,7 @@ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml,sh
|
|
391
391
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml,sha256=p0EQnnc9B28iMocTrKBdr_zzmDECQWcjDrJKH_hFYs4,1142
|
392
392
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml,sha256=JV0bfJDBTuD4x0zAG8p1cSMvTi-gp1TerX_tD6cnDH8,1173
|
393
393
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionText.xml,sha256=1rU_Z0h-ghzt_wcCvLlt2A5HsuZ5Ey_OvHaFRJwHB3E,1241
|
394
|
-
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionTimestampedPublications.xml,sha256=
|
394
|
+
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionTimestampedPublications.xml,sha256=FhZjkrdpAseJwzcSMLR76JzuB0wqI9lM7Z4o1sEDbQc,1479
|
395
395
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml,sha256=SizWFzAer6gHpUKaNfGcKZe246eVLnFcra50fff2qAc,1167
|
396
396
|
imio/smartweb/core/profiles/icons/basic/registry.xml,sha256=mSsx5FJZi9A6az0Hk1Otg3D2an5uUST8YnrZKrMiLvc,23211
|
397
397
|
imio/smartweb/core/profiles/icons/contenttypes/registry.xml,sha256=nYHOYa4R1KZZh75n9gaMhHaPXAaXjCKX2tW5t7afFhg,8766
|
@@ -457,7 +457,7 @@ imio/smartweb/core/tests/test_section_news.py,sha256=6S7-r6ZnpeN_JdLYLZMWbHKRzeu
|
|
457
457
|
imio/smartweb/core/tests/test_section_sendinblue.py,sha256=UmmKo33T9feelumxqeejM4HG4oLRPKJkbB8hkLO144E,2661
|
458
458
|
imio/smartweb/core/tests/test_sections.py,sha256=zc54ia3MUfQNhvUbWHMFi12rm4yWnFBgVQDrVLJgMWE,25315
|
459
459
|
imio/smartweb/core/tests/test_setup.py,sha256=JcbMnXTNCuB_8grFh5E1kZ0uALdATlKMbahAdGfToZI,2092
|
460
|
-
imio/smartweb/core/tests/test_sitemap.py,sha256=
|
460
|
+
imio/smartweb/core/tests/test_sitemap.py,sha256=Rv0WW9R1zxeFZlqZbV6vuU_dtv9qY7PmNeYWw7wh-A8,8901
|
461
461
|
imio/smartweb/core/tests/test_social.py,sha256=GVHkF4c8Ygnm09J1aGxhklbtd6b-1Fy8M7NnYmjRvfI,3046
|
462
462
|
imio/smartweb/core/tests/test_subsite.py,sha256=wiD8Ke4_-ArstSYNLCs8ArqOuDx2xxUR6Wac3GXfnbE,9016
|
463
463
|
imio/smartweb/core/tests/test_text.py,sha256=DtZNNGJ-MDYbJ-YQj2C0q2Hr7t4-sUbV6SWkE7tihBY,4652
|
@@ -508,7 +508,7 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
|
|
508
508
|
imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
|
509
509
|
imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
|
510
510
|
imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
511
|
-
imio/smartweb/core/upgrades/configure.zcml,sha256=
|
511
|
+
imio/smartweb/core/upgrades/configure.zcml,sha256=A8W6LcKkV7efl0nXkQ0UcWCM3aY8grQsYpdDW0hhRJQ,33556
|
512
512
|
imio/smartweb/core/upgrades/upgrades.py,sha256=dglP6cUcUufp7wCjdanKKcZoEI1bCV1FWI_M1eNAnz8,10418
|
513
513
|
imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
|
514
514
|
imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
|
@@ -642,12 +642,13 @@ imio/smartweb/core/upgrades/profiles/1061_to_1062/workflows.xml,sha256=agyIkvKVC
|
|
642
642
|
imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.Page.xml,sha256=N0nbLh52uUc7uzDEImsmigFdU0O6XMh_tjozjHyV1jI,323
|
643
643
|
imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.PortalPage.xml,sha256=N0nbLh52uUc7uzDEImsmigFdU0O6XMh_tjozjHyV1jI,323
|
644
644
|
imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.SectionFiles.xml,sha256=mHnNszcRlhohtz2GiA5b9sIws1Tj7JL_TDXEX2lFqGI,290
|
645
|
-
imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.SectionTimestampedPublications.xml,sha256=
|
645
|
+
imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.SectionTimestampedPublications.xml,sha256=gShZ1Ozg7asts4OUJwKh-pTG0WFkQEazCoeoKY86Y3o,1316
|
646
646
|
imio/smartweb/core/upgrades/profiles/1062_to_1063/registry.xml,sha256=ooVHJarZn3b-iBl7Umo8Gu0v5pw8G87X5_ssmeVRx8c,318
|
647
647
|
imio/smartweb/core/upgrades/profiles/1063_to_1064/types.xml,sha256=T3cECNFyCve4LevcNJkgZUESronzbdoKMzvkNRLdUBE,197
|
648
648
|
imio/smartweb/core/upgrades/profiles/1063_to_1064/types/Link.xml,sha256=19TjIa4m2ddfRUvB9un5ZRFBHrMa3Wq9gXID1mWPxq4,287
|
649
649
|
imio/smartweb/core/upgrades/profiles/1063_to_1064/types/imio.smartweb.BlockLink.xml,sha256=1r5sydZbHyom_VIrH_gT34FwwPUMyk87x2g3FAjNltE,293
|
650
650
|
imio/smartweb/core/upgrades/profiles/1063_to_1064/types/imio.smartweb.SectionSlide.xml,sha256=kViKVS5u-x54Au1ShmOs4gUCd0a2UOwyAv_JgThzdVQ,296
|
651
|
+
imio/smartweb/core/upgrades/profiles/1066_to_1067/types/imio.smartweb.SectionTimestampedPublications.xml,sha256=FhZjkrdpAseJwzcSMLR76JzuB0wqI9lM7Z4o1sEDbQc,1479
|
651
652
|
imio/smartweb/core/viewlets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
652
653
|
imio/smartweb/core/viewlets/actions.py,sha256=CUMkS3w_MXOxqOzqp7s3PFCUF-RCrCFsKw3oxv0C37E,1200
|
653
654
|
imio/smartweb/core/viewlets/arcgis_header.pt,sha256=iQc5ZG3g1Cmap963OG-wPotllr7oWmVSMoAnA7tctrQ,3428
|
@@ -809,10 +810,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=EpmA8-iqHIkWrjgjR9JKvZ
|
|
809
810
|
imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=DVQ6sUQOKFvLhbcamY6EmSrfWYq61gqaQUZ_YM1Le0Q,343
|
810
811
|
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=t10nXoXPYRXKbPo8Esu0bjLzPPbxk7PRIUIERMapIiI,10250
|
811
812
|
imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
|
812
|
-
imio.smartweb.core-1.3.
|
813
|
-
imio.smartweb.core-1.3.
|
814
|
-
imio.smartweb.core-1.3.
|
815
|
-
imio.smartweb.core-1.3.
|
816
|
-
imio.smartweb.core-1.3.
|
817
|
-
imio.smartweb.core-1.3.
|
818
|
-
imio.smartweb.core-1.3.
|
813
|
+
imio.smartweb.core-1.3.2.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
814
|
+
imio.smartweb.core-1.3.2.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
815
|
+
imio.smartweb.core-1.3.2.dist-info/METADATA,sha256=g9-rgg46GSFqYaskgLLAwW5vIZ711p0ivhrlP1jYo2w,62265
|
816
|
+
imio.smartweb.core-1.3.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
817
|
+
imio.smartweb.core-1.3.2.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
818
|
+
imio.smartweb.core-1.3.2.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
819
|
+
imio.smartweb.core-1.3.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{imio.smartweb.core-1.3.1.dist-info → imio.smartweb.core-1.3.2.dist-info}/namespace_packages.txt
RENAMED
File without changes
|
File without changes
|